From 9ff4cc5c02505ae04338a7467333358d4a06efc1 Mon Sep 17 00:00:00 2001 From: Avi Vajpeyi Date: Tue, 3 Oct 2023 21:04:08 +1300 Subject: [PATCH] Refactor exofop data (#271) * remove paper * remove studies dir * remove slurm job generator (moved to https://github.com/tess-atlas/tess_atlas_slurm_utils) * move webbuilder to https://github.com/tess-atlas/tess_atlas_webbuilder * remove slurm job test * remove unused installs * remove slurm cli * remove_webpage_cli * remove missig cli entrypoints * add summary cli tool * Change web data url * Remove unused run_menu_page * Remove outdated docs * change version string format * refactor EXOFOP innterface * refactor EXOFOP innterface * run tests --- .gitignore | 2 +- CHANGELOG.md | 7 + README.md | 84 +- setup.py | 11 +- src/tess_atlas/api/download_analysed_toi.py | 2 +- src/tess_atlas/cli/download_toi_cli.py | 2 +- src/tess_atlas/cli/tess_atlas_summary_cli.py | 47 + src/tess_atlas/cli/update_tic_cache_cli.py | 2 +- src/tess_atlas/data/analysis_summary.py | 22 +- .../data/exofop/cached_tic_database.csv | 6688 ----------------- src/tess_atlas/data/exofop/constants.py | 4 +- src/tess_atlas/data/exofop/exofop_database.py | 165 +- src/tess_atlas/data/exofop/plotting.py | 65 - .../data/lightcurve_data/lightcurve_data.py | 2 +- .../controllers/menu_notebook_controller.py | 11 - .../toi_notebook_core.py | 2 +- .../templates/catalog_page.py | 6 +- .../templates/demo_page.py | 6 +- .../templates/toi_template.py | 4 +- tests/test_exofop_interface.py | 31 - tests/test_toi_notebook.py | 2 +- tests/test_webbuild.py | 22 - 22 files changed, 125 insertions(+), 7062 deletions(-) create mode 100644 src/tess_atlas/cli/tess_atlas_summary_cli.py delete mode 100644 src/tess_atlas/data/exofop/cached_tic_database.csv delete mode 100644 src/tess_atlas/data/exofop/plotting.py delete mode 100644 tests/test_webbuild.py diff --git a/.gitignore b/.gitignore index 06de2a40..c45a41af 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .pytest_cache tmp +*.csv test_jobgen *.tar.gz .virtual_documents @@ -8,7 +9,6 @@ test_jobgen *.log out_*/ cached* -!src/tess_atlas/data/exofop/cached_tic_database.csv build docs/notebooks/*/*.html __pycache__ diff --git a/CHANGELOG.md b/CHANGELOG.md index b4a34e85..30ba0045 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # All notable changes will be documented in this file +# v1.0.0 : 2023-09-27 +- Refactor into [paper], [slurm], [webpage], [pipeline] repositories + # v0.2.1 : 2020-09-18 - Remove unused files - Refactor code into ./tess_atlas/ @@ -15,3 +18,7 @@ [exoplanet-docs]: https://github.com/exoplanet-dev/case-studies/blob/main/docs/notebooks/quick-tess.ipynb +[paper]: https://github.com/tess-atlas/tess_atlas_paper +[slurm]: https://github.com/tess-atlas/tess_atlas_slurm_utils +[webpage]: https://github.com/tess-atlas/tess_atlas_webbbuilder +[pipeline]: https://github.com/tess-atlas/tess_atlas_pipeline diff --git a/README.md b/README.md index 612527b3..e12a134e 100644 --- a/README.md +++ b/README.md @@ -1,30 +1,28 @@ -[![](https://img.shields.io/badge/Paper-Download-orange)](https://nightly.link/dfm/tess-atlas/workflows/build_paper/paper/main.pdf.zip) - - -\n - +# TESS-Atlas

- +
TESS Atlas

+The python package used to run the analyses in the TESS-Atlas catalog. + ## Installation instructions -To install the necessary packages, run +To install the package: ```bash +python -m pip install tess-atlas +``` +or +```bash +git clone git@github.com:tess-atlas/tess-atlas.git +cd tess-atlas python -m pip install -e . ``` -## Instructions to update TESS Atlas -1. Create and analyse some TOIs with the following: `make run` -2. Commit the completed TOIs to a branch and make a PR to main -3. Once PR to main completed, run `make website` to convert the notebooks to HTML and upload to the gh-pages branch and deploy to github-pages - ## How to use -### Running analyses -#### Local Run +### Analyse a TOI To run the analysis for one TOI, you can run ```bash run_toi @@ -35,69 +33,15 @@ To only setup the notebook + data needed for the analysis for one TOI, you can r ```bash run_toi --setup ``` -where an example ` = 724` - -To run all the notebooks (in batches of 8), you can run -```bash -run_tois -``` - -#### Slurm Run - -To make the slurm files needed to analyse a CSV of TOIs you can run: -```bash -make_slurm_job --toi_csv toi_ids.csv --module_loads "git/2.18.0 gcc/9.2.0 openmpi/4.0.2 python/3.8.5" -``` -Or, if you want to make the slurm job for just one TOI: -```bash -make_slurm_job --toi_number 174 --module_loads 'git/2.18.0 gcc/9.2.0 openmpi/4.0.2 python/3.8.5' -``` ### Downloading results -You can download completed analyses with +You can __download completed analyses with ```bash download_toi 103 --outdir analysed_tois ``` -## Running tests! -Use the following to run tests (skipping slow tests) -```bash -python -m pip install -e ".[test]" -pytest tests/ -``` -The following only runs the slow ones -```bash -pytest -vv -k "slow" tests/test_template_notebook.py -``` - -## Building + deploying the catalog -### Building website -Once all your analyses are complete, you can package all the runs into a website: -```bash -make_webpages --webdir webpages --notebooks {notebook_dir} --add-api -``` -Using `add-api` will copy over the data files in addition to making the webpages (but can be a bit slow!) -When this completes, you should have a zipped file with the webpages+data: `tess_atlas_pages.tar.gz` - -### Deploy website + api data -We are storing the website data on a Nectar project. -Assuming you are a part of the project, the steps to deploy are -1. ssh into Nectar -2. Delete old pages -3. scp `tess_atlas_pages.tar.gz` into Nectar's webdir. -4. untar webpages -```bash -ssh -i ~/.ssh/nectarkey.pem ec2-user@136.186.108.96 -cd /mnt/storage/ -mv _build trash -scp avajpeyi@ozstar.swin.edu.au:/fred/oz200/avajpeyi/projects/atlas_runs/tess_atlas_pages.tar.gz . -tar -xvzf tess_atlas_pages.tar.gz -rm -rf trash -``` - - ## Publishing `tess_atlas` to pypi To publish to pypi, you will need admin access to this repo. Then, publishing just requires you to change the version number `tag` a commit. -The `pypi_release` github action will (hopefully) take care of the rest. +The `pypi_release` Github action will (hopefully) take care of the rest. diff --git a/setup.py b/setup.py index 19db1b18..b3840c24 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,8 @@ "Programming Language :: Python :: 3", ] INSTALL_REQUIRES = [ + "ploomber-engine>=0.0.30", + "ploomber-core==0.2.12", # https://github.com/ploomber/core/issues/74 "exoplanet>=0.5.1", "pymc3>=3.9", "pymc3-ext>=0.1.0", @@ -51,10 +53,6 @@ "flake8", "black<=21.9b0", "isort", - "pympler", - "psutil", - "ploomber-engine>=0.0.30", - "ploomber-core==0.2.12", # https://github.com/ploomber/core/issues/74 "pretty-jupyter", "interruptingcow", ] @@ -88,9 +86,7 @@ def get_cli_entry_point(cmd, pkg=NAME): setup( name=NAME, use_scm_version={ - "write_to": os.path.join( - "src", NAME, "{0}_version.py".format(NAME) - ), + "write_to": os.path.join("src", NAME, f"{NAME}_version.py"), "write_to_template": '__version__ = "{version}"\n', }, author=find_meta("author"), @@ -124,6 +120,7 @@ def get_cli_entry_point(cmd, pkg=NAME): get_cli_entry_point("download_toi"), get_cli_entry_point("update_tic_cache"), get_cli_entry_point("plot_run_stats"), + get_cli_entry_point("tess_atlas_summary"), ] }, ) diff --git a/src/tess_atlas/api/download_analysed_toi.py b/src/tess_atlas/api/download_analysed_toi.py index f3a47092..63f843ce 100644 --- a/src/tess_atlas/api/download_analysed_toi.py +++ b/src/tess_atlas/api/download_analysed_toi.py @@ -8,7 +8,7 @@ logger = logging.getLogger(LOGGER_NAME) COMMAND = "wget -np -r {url}" -ROOT = f"{__website__}/_sources/content/toi_notebooks" +ROOT = f"{__website__}/toi_data" NOTEBOOK = f"{ROOT}/toi_{{TOI}}.ipynb" FILES = f"{ROOT}/toi_{{TOI}}_files/" diff --git a/src/tess_atlas/cli/download_toi_cli.py b/src/tess_atlas/cli/download_toi_cli.py index 8cb34311..7c062043 100644 --- a/src/tess_atlas/cli/download_toi_cli.py +++ b/src/tess_atlas/cli/download_toi_cli.py @@ -15,7 +15,7 @@ def __get_cli_args(): parser.add_argument( "toi_number", type=int, - help="The TOI number to download data for (e.g. 103)", + help="The TOI number to __download data for (e.g. 103)", ) args = parser.parse_args() return args.toi_number diff --git a/src/tess_atlas/cli/tess_atlas_summary_cli.py b/src/tess_atlas/cli/tess_atlas_summary_cli.py new file mode 100644 index 00000000..d5748a5b --- /dev/null +++ b/src/tess_atlas/cli/tess_atlas_summary_cli.py @@ -0,0 +1,47 @@ +import argparse + +from tess_atlas.data.analysis_summary import AnalysisSummary + +PROG = "tess_atlas_summary" + + +def __get_cli_args(): + parser = argparse.ArgumentParser( + prog=PROG, + description=""" + Gets the latest TESS-Atlas catalog summary (a CSV with all the TOIs and their analysis status). + If catalog_dir is provided, it builds a new summary file. + """, + usage=f"{PROG} --catalog_dir ", + ) + parser.add_argument( + "--catalog_dir", + type=str, + help="The directory with all analyses that you want to summarise " + "(directory with the toi_*.ipynb and toi_*_files/)." + "If not provided, the latest summary file will be downloaded from the TESS-Atlas website.", + default=None, + ) + parser.add_argument( + "--outdir", + type=str, + help="The directory to save the analysis summary to", + default=".", + ) + parser.add_argument( + "--n_threads", + type=int, + help="The number of threads to use when summarising all the TOIs.", + default=1, + ) + return parser.parse_args() + + +def main(): + args = __get_cli_args() + AnalysisSummary.load( + notebook_dir=args.catalog_dir, + outdir=args.outdir, + clean=True, + n_threads=args.n_threads, + ).save(args.outdir) diff --git a/src/tess_atlas/cli/update_tic_cache_cli.py b/src/tess_atlas/cli/update_tic_cache_cli.py index 47ab94c6..f9031ca2 100644 --- a/src/tess_atlas/cli/update_tic_cache_cli.py +++ b/src/tess_atlas/cli/update_tic_cache_cli.py @@ -62,6 +62,6 @@ def main(): logger.info(f"To run job:\n>>> sbatch {fn}") else: logger.info(f"UPDATING TIC CACHE... clean={args.clean}") - db = ExofopDatabase(update=True, clean=args.clean) + db = ExofopDatabase(clean=args.clean) db.plot() logger.info("UPDATE COMPLETE!!") diff --git a/src/tess_atlas/data/analysis_summary.py b/src/tess_atlas/data/analysis_summary.py index cfe21188..7ad6a6b7 100644 --- a/src/tess_atlas/data/analysis_summary.py +++ b/src/tess_atlas/data/analysis_summary.py @@ -39,14 +39,23 @@ def __repr__(self): @classmethod def load( - cls, notebook_dir: str, n_threads=1, clean=True + cls, notebook_dir: str = None, outdir=None, n_threads=1, clean=True ) -> "AnalysisSummary": - fname = AnalysisSummary.fname(notebook_dir) + if notebook_dir is None: + # __download and return loaded summary + raise NotImplementedError( + "Downloading summary not implemented yet" + ) + + if outdir is None: + outdir = notebook_dir if notebook_dir else "." + + fname = AnalysisSummary.fname(outdir) if os.path.exists(fname) and not clean: analysis_summary = cls.from_csv(fname) else: analysis_summary = cls.from_dir(notebook_dir, n_threads=n_threads) - analysis_summary.save(notebook_dir) + analysis_summary.save(outdir) return analysis_summary @classmethod @@ -111,11 +120,8 @@ def save(self, notebook_dir: str): @staticmethod def fname(notebook_dir: str) -> str: # make sure notebook dir does not have a file extension - my_dir, fname = os.path.splitext(notebook_dir) - if fname: - raise ValueError( - "notebook_dir should not have a file extension: {notebook_dir}" - ) + if not os.path.isdir(notebook_dir): + raise ValueError("notebook_dir should be a dir: {notebook_dir}") return os.path.join(notebook_dir, "analysis_summary.csv") diff --git a/src/tess_atlas/data/exofop/cached_tic_database.csv b/src/tess_atlas/data/exofop/cached_tic_database.csv deleted file mode 100644 index b8197173..00000000 --- a/src/tess_atlas/data/exofop/cached_tic_database.csv +++ /dev/null @@ -1,6688 +0,0 @@ -TIC ID,TOI,Previous CTOI,Master,SG1A,SG1B,SG2,SG3,SG4,SG5,ESM,TSM,Predicted Mass (M_Earth),Time Series Observations,Spectroscopy Observations,Imaging Observations,TESS Disposition,TFOPWG Disposition,TESS Mag,TESS Mag err,Planet Name,Pipeline Signal ID,Source,Detection,RA,Dec,PM RA (mas/yr),PM RA err (mas/yr),PM Dec (mas/yr),PM Dec err (mas/yr),Epoch (BJD),Epoch (BJD) err,Period (days),Period (days) err,Duration (hours),Duration (hours) err,Depth (mmag),Depth (mmag) err,Depth (ppm),Depth (ppm) err,Planet Radius (R_Earth),Planet Radius (R_Earth) err,Planet Insolation (Earth Flux),Planet Equil Temp (K),Planet SNR,Stellar Distance (pc),Stellar Distance (pc) err,Stellar Eff Temp (K),Stellar Eff Temp (K) err,Stellar log(g) (cm/s^2),Stellar log(g) (cm/s^2) err,Stellar Radius (R_Sun),Stellar Radius (R_Sun) err,Stellar Metallicity,Stellar Metallicity err,Stellar Mass (M_Sun),Stellar Mass (M_Sun) err,Sectors,Date TOI Alerted (UTC),Date TOI Updated (UTC),Date Modified,Comments,TOI int,planet count,Multiplanet System,Single Transit,Lightcurve Availible -231663901,101.01,,5,5,5,5,5,5,5,87.6,211.2,116.12,0,1,3,KP,KP,12.4069,0.006,,1,spoc,UNKNOWN,21:14:56.88,-55:52:18.71,12.641,0.044,-16.011,0.041,2459036.904104,0.0003926639,1.43036914033977,9.228199e-07,1.64387283171534,0.018756187,20.994855,0.2144,19151.2162143199,197.45049,13.2504933448192,0.66068995,1281.24179196536,1525.90509667994,109.60649,375.31,4.411,5600.0,,4.48851,,0.890774011611938,0.0438467,,,1.05,0.129454,"1,27",2018-09-05,2021-10-07,2022-12-14 12:09:24,WASP-46 b,101,1,False,False,True -149603524,102.01,,5,5,5,5,5,5,5,139.2,182.4,317.0,1,2,1,KP,KP,9.7109,0.006,,1,qlp-s62-ffi,SPOC,05:48:33.56,-63:59:17.98,-15.641,0.037,26.046,0.037,2460011.43897,0.0001873,4.4119378,1e-06,3.728,0.081,16.650848,0.078223,15219.0,72.043,15.569,0.696432,782.274,1473.0,634.0,175.631,0.588,6280.0,,4.32092,,1.21,0.05,0.24,0.05,1.28,0.190812,"1,2,3,4,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,36,37,38,39,61,62",2019-05-07,2023-04-04,2023-04-07 12:13:06,WASP 62 b,102,1,False,False,True -336732616,103.01,,5,5,5,5,5,5,5,47.7,136.4,116.75,0,0,7,KP,KP,11.5232,0.008,,1,spoc,UNKNOWN,20:49:49.8,-24:25:43.3,10.426,0.07,15.62,0.051,2458327.25256,0.000586,3.547854,0.000149,3.494333,0.049205,11.377523,0.133944,10424.3718,123.359314,14.581841,0.196435,1212.004376,1504.858953,59.5,411.211,7.752,6351.0,,4.22896,,1.4,,,,1.27,0.196969,1,2018-09-05,2020-10-27,2022-12-14 12:09:24,HATS-3 b,103,1,False,False,True -231670397,104.01,,5,5,5,5,5,5,5,52.4,122.6,121.75,1,0,3,KP,KP,9.8638,0.006,,1,spoc,UNKNOWN,21:19:47.93,-58:08:56.16,10.552,0.045,-10.658,0.043,2459038.863566,0.0009549599,4.08729939632711,4.1056146e-06,5.5861130474761,0.050875474,3.885379,0.03875,3572.17124985973,35.689426,13.6237731764604,0.65182334,2242.36054008399,1755.07673832663,48.678577,316.678,2.9655,6036.0,,3.93359,,2.21866989135742,0.102573,,,1.16,0.166129,"1,27",2018-09-05,2021-12-01,2022-12-14 12:09:24,WASP-73 b,104,1,False,False,True -144065872,105.01,,5,5,5,5,5,5,5,187.2,431.1,122.95,1,3,2,KP,KP,9.4995,0.006,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,22:29:49.88,-48:00:11.16,91.976,0.052,-6.861,0.069,2459084.58501,0.00011,2.18466694872065,4.851188e-07,2.86528001574358,0.009074817,12.786825,0.037924,11708.0228548887,34.928566,13.702852670325,0.66197515,1362.1381428406,1549.44098010565,349.33414,137.544,0.7905,5630.0,,4.37759,,1.23824000358582,0.0596985,,,1.03,0.127209,"1,28",2018-09-05,2021-12-08,2022-12-14 12:09:24,WASP-95; epoch kept from qlp-s28-tois,105,1,False,False,True -38846515,106.01,,5,5,5,5,5,5,5,90.5,110.9,317.0,1,0,3,KP,KP,10.3157,0.006,,1,qlp-s63-ffi,SPOC,04:35:50.36,-64:01:37.34,10.845,0.035,-0.499,0.052,2460036.374335,0.0002612,2.8493822,8e-07,3.643,0.746,8.772262,0.193144,8047.0,177.876,16.5843,0.770559,2657.93,2000.0,505.0,364.411,2.729,6900.0,,4.438,,1.77,0.08,,,1.44,0.243534,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63",2019-05-07,2023-05-11,2023-06-16 12:14:51,WASP-100 b,106,1,False,False,True -92352620,107.01,,5,5,5,5,5,5,5,166.0,236.6,317.0,0,1,3,KP,KP,9.6433,0.006,,1,spoc,UNKNOWN,20:55:07.98,-34:08:08.7,26.376,0.078,-44.947,0.059,2459039.335846,0.00038635198,3.95020094278708,1.600228e-06,4.56436423242551,0.018132707,14.00227,0.064564,12813.762930751,59.46348,19.7058959371285,0.8632607,1364.08984021221,1549.99569924754,201.10165,211.211,2.4835,6153.0,,4.18077,,1.71036005020142,0.074613,0.22,0.1,1.14,0.150731,"1,27",2018-09-05,2021-10-07,2022-12-14 12:09:24,WASP-94 A b,107,1,False,False,True -289793076,108.01,,5,5,5,5,5,5,5,39.1,115.6,99.64,0,0,4,KP,KP,13.163,0.01,,1,spoc,SPOC,21:07:50.76,-26:05:48.19,3.479,0.063,-10.313,0.038,2458328.08383,0.0004391314,3.0440540665342,4.25771e-06,2.59845748018295,0.061165422,24.414911,0.532696,22236.0165376302,490.51093,12.1086799407213,0.2679916,315.987132647374,1075.31845422327,34.314007,421.855,8.339,5523.0,,4.52192,,0.809867978096008,,,,0.95,,"1,28",2018-09-05,2021-10-20,2022-12-14 12:09:24,HATS-13 b,108,1,False,False,True -29344935,109.01,,5,5,5,5,5,5,5,32.5,84.5,98.43,0,0,5,KP,KP,13.2366,0.007,,1,spoc,UNKNOWN,20:52:51.71,-25:41:14.55,1.053,0.052,-9.881,0.029,2458326.127889,0.00053233746,2.766747877062,4.5420184e-06,2.59980826976837,0.082150556,16.248311,0.353657,14853.8243821185,325.67685,12.0222506977152,0.39210835,505.886965355293,1209.57589092691,29.239107,513.011,9.1275,5346.0,,4.48823,,0.98486602306366,,,,0.93,,"1,28",2018-09-05,2021-12-02,2022-12-14 12:09:24,HATS-14 b,109,1,False,False,True -281459670,110.01,,5,5,5,5,5,5,5,66.2,71.2,317.0,0,0,1,KP,KP,11.6714,0.006,,1,spoc,UNKNOWN,00:22:28.45,-59:56:33.32,-22.309,0.036,-4.893,0.034,2458328.040318,0.000219277,3.17434739143305,2.150323e-06,2.65151241654757,0.031354535,16.579229,0.180485,15154.0381610053,166.21867,14.4066832991886,0.80587804,718.910615137806,1320.65224399378,74.55683,342.14,2.912,5943.0,,4.42524,,1.1570600271225,0.0633669,-0.1,0.1,1.03,0.12909,"1,2,28,29",2018-11-14,2021-12-03,2022-12-14 12:09:24,HATS-30 b,110,1,False,False,True -355703913,111.01,,5,5,5,5,5,5,5,43.1,108.0,105.79,1,0,1,KP,KP,13.183,0.006,,1,spoc,UNKNOWN,00:03:05.88,-62:28:09.54,2.894,0.024,4.911,0.025,2458326.10505,0.00046457388,2.10616073391332,3.7834607e-06,1.46734449692103,0.05736947,13.047378,0.650214,11945.1621708564,598.69,12.5432421341813,1.6839882,691.841119162531,1308.0409554393,33.85563,508.842,3.896,5380.0,,4.4337,,0.940697014331818,,0.245387,0.0875268,0.95,,"1,2,28",2018-10-22,2021-12-02,2022-12-14 12:09:24,HATS-34 b,111,1,False,False,True -388104525,112.01,,5,5,5,5,5,5,5,77.0,179.0,125.23,1,1,3,KP,KP,11.6035,0.006,,1,spoc,UNKNOWN,03:43:44.07,-65:11:37.61,21.126,0.032,16.543,0.043,2459307.332998,0.00045685822,2.49979959810286,4.4218152e-07,2.865171019079,0.009780298,15.991971,0.041631,14621.2059647249,38.342907,13.8516092815726,0.7051293,907.86241957557,1399.98943838575,375.26334,302.448,2.004,5650.0,,4.28867,,1.13732004165649,0.0577764,,,1.0,0.121147,"1,2,3,4,7,11,27,28,29,30,31,34,37",2019-05-07,2021-12-02,2022-12-14 12:09:24,WASP-119 b,112,1,False,False,True -97409519,113.01,,5,5,5,5,5,5,5,57.3,67.8,317.0,0,1,1,KP,KP,12.1893,0.006,,1,spoc,SPOC,22:10:51.44,-30:44:58.99,-0.71,0.052,-14.516,0.049,2458327.053085,0.000623,3.372877,0.000147,2.63426,0.043644,18.796923,0.230641,17163.60419,212.40587,14.201803,0.154789,615.165921,1270.187448,81.3,448.637,7.508,6050.0,,4.45061,,1.02,,,,1.17,0.16258,1,2018-09-05,2020-10-27,2022-12-14 12:09:24,WASP-124,113,1,False,False,True -25155310,114.01,,5,5,5,5,5,5,5,53.5,161.8,77.37,0,1,3,KP,KP,10.6103,0.006,,1,spoc,UNKNOWN,04:13:29.93,-69:13:35.73,63.134,0.045,53.433,0.039,2459363.488348,0.00052907853,3.28878776139412,5.280507e-07,3.41636017649114,0.010019712,7.610576,0.016621,6985.08917611636,15.308442,10.4354627296321,0.51484174,759.337989193928,1338.83954502472,430.25754,216.526,0.932,5800.0,,4.28004,,1.24175000190735,0.0610804,0.20683,0.0458093,1.01,0.123355,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,36,37,38,39",2019-05-07,2021-12-02,2022-12-14 12:09:24,WASP-126 b,114,1,False,False,True -281541555,115.01,,5,5,5,5,5,5,5,20.3,76.9,76.81,0,0,0,KP,KP,13.0417,0.006,,1,spoc,UNKNOWN,00:26:48.63,-56:18:57.97,21.46,0.027,7.316,0.024,2458329.902014,0.0007677445,4.74237847689397,7.232835e-06,2.5318097944897,0.08469697,13.397881,0.327952,12264.0798734605,302.0094,10.3896303272875,0.25180125,209.76945749602,970.633582799196,34.751255,453.808,3.894,5377.0,185.0,4.42476,2.00401,0.877584993839264,,,,0.96,,"1,2,28,29",2018-10-22,2021-10-07,2022-12-14 12:09:24,HATS-46 b,115,1,False,False,True -238176110,116.01,,5,5,5,5,5,5,5,98.8,251.1,94.86,1,0,3,KP,KP,11.0443,0.006,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,23:51:23.14,-70:09:10.3,96.185,0.041,-1.747,0.038,2459037.52846,0.00025644005,2.79857944060727,6.3140624e-07,2.34014356801535,0.013552006,18.286614,0.068604,16701.550251274,63.18423,11.7640752431413,0.72200364,332.556366832873,1089.14591337783,275.6213,149.942,0.5175,4920.0,,4.49371,,0.906655013561249,0.0553769,0.32,0.08,0.81,0.0958693,"1,27,28",2018-09-05,2021-12-09,2022-12-14 12:09:24,WASP-91 b,116,1,False,False,True -322307342,117.01,,5,5,5,5,5,5,5,39.9,44.1,317.0,0,0,1,KP,KP,11.7806,0.006,,1,spoc-s01-s36-b0A-CPKP,QLP,01:00:01.46,-58:54:17.01,22.522,0.049,7.594,0.041,2459063.655791,0.001190335,3.58629619986471,0.00015300933,3.37109429721186,0.07846477,6.238423,0.124633,5729.32468580858,114.78426,16.4747610755407,0.9191712,1787.59559368927,1658.39152023611,32.356964,603.955,10.2025,5704.8,124.8,3.84,0.08,2.00441002845764,0.105699,-0.25,0.0707107,1.02,0.124059,"1,2,28,29",2018-09-05,2022-10-17,2022-12-14 12:09:24,HATS-68 b,117,1,False,False,True -266980320,118.01,,2,5,5,4,4,2,4,17.8,115.8,20.4,5,5,5,CP,CP,9.179,0.006,,1,spoc,UNKNOWN,23:18:14.22,-56:54:14.35,313.918,0.039,-20.177,0.043,2459083.50855,0.00123,6.03445687781177,9.8619e-06,2.2074495679722,0.07949392,1.71179,0.05081,1575.3742210936,46.79648,4.76439594576057,0.2857246,224.023747780315,957.0,29.534899,94.1719,0.2512,5586.0,187.0,4.36763,0.270247,1.05167996883392,0.0549497,,,0.97,0.120939,"1,28",2018-09-05,2021-10-07,2022-12-14 12:09:24,HD 219666 b,118,1,False,False,True -278683844,119.01,,1,5,5,5,3,1,4,4.3,57.7,4.59,4,45,1,PC,PC,9.2789,0.006,,1,qlp-s63-ffi,SPOC/QLP,06:36:57.22,-58:00:58.15,51.497,0.042,-205.6,0.049,2460034.277401,0.001196,5.5411098,5.9e-06,2.387,0.238,0.68097,0.013791,627.0,12.7021,1.98262,0.121339,99.1051,879.0,49.0,66.6187,0.1003,5332.0,184.0,4.56429,0.272717,0.82,0.05,,,0.86,0.102503,"1,2,3,4,5,6,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63",2019-05-07,2023-05-11,2023-06-16 12:14:51,Potential multi; slight depth aperture correlation with no offset,119,1,True,False,True -278683844,119.02,,4,5,5,5,3,4,4,1.9,38.9,3.65,4,45,1,PC,PC,9.2789,0.006,,2,qlp-s63-ffi,SPOC/QLP,06:36:57.22,-58:00:58.15,51.497,0.042,-205.6,0.049,2460038.721177,0.0021308,10.6917268,2.12e-05,2.974,0.422,0.563643,0.019218,519.0,17.7002,1.73115,0.111513,42.2657,710.0,34.0,66.6187,0.1003,5332.0,184.0,4.56429,0.272717,0.82,0.05,,,0.86,0.102503,"1,2,3,4,5,6,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63",2019-05-17,2023-05-11,2023-06-16 12:14:51,outer candidate in potential multi; variable host,119,2,True,False,True -394137592,120.01,,3,5,5,3,4,4,4,79.7,229.1,90.88,0,1,4,CP,CP,7.1062,0.006,,1,sector-01-spoc-alerts,SPOC,00:17:47.32,-66:21:32.14,64.763,0.049,-5.056,0.041,2458332.082805,0.000707,11.535076,0.001035,8.555958,0.069027,2.597913,0.031416,2389.90616,28.935114,12.215808,1.480912,,,32.9,79.5702,0.17345,5479.3,57.0,3.77,0.08,2.48771,0.298399,-0.02,0.09,0.96,0.124471,1,2018-09-05,2021-12-07,2022-12-14 12:09:24,HD 1397 b ,120,1,False,False,True -207081058,121.01,,5,5,5,5,3,5,5,60.6,114.4,317.0,1,1,1,PC,APC,9.9358,0.006,,1,qlp,UNKNOWN,22:07:28.2,-41:48:55.84,49.561,0.042,-9.678,0.057,2459074.32911,0.01323,14.76367,0.00027,6.143,0.188,15.89148,0.001088,14530.0,1.00224,15.9573,0.764266,234.125,1089.0,119.0,182.169,1.0865,6053.0,193.0,4.3135,0.321619,1.23,0.06,,,1.14,0.149653,"1,28",2018-09-05,2020-10-27,2022-12-14 12:09:24,low-mass EB; initially thought to be a warm Jupiter candidate with a possible secondary,121,1,False,False,True -231702397,122.01,,2,5,5,2,4,3,4,3.4,69.3,7.82,11,1,3,CP,CP,13.084,0.007,,1,spoc,UNKNOWN,22:11:47.58,-58:56:45.91,138.138,0.089,-235.81,0.076,2458329.120248,0.0009877153,5.07802548638435,1.3443171e-05,1.24141580272646,0.2258655,6.676477,0.506467,6130.39472316019,466.36487,2.70904209639004,0.5059658,8.17432899325454,431.253643983621,11.881052,62.118,0.2158,3318.0,64.0,4.9581,0.407256,0.334125012159348,0.0100409,,,0.315858,0.0202514,"1,27,28",2018-09-05,2021-12-01,2022-12-14 12:09:24,TOI-122 b,122,1,False,False,True -290131778,123.01,,3,5,5,5,4,5,3,194.3,218.6,317.0,3,21,14,CP,CP,7.87598,0.011,,1,spoc,SPOC/QLP,21:18:47.9,-26:36:58.95,23.236,0.157,-57.557,0.152,2458325.374915,0.00016357683,3.30887730524169,1.385715e-06,5.66213297216762,0.019520499,4.338637,0.021309,3988.05858053433,19.626034,17.2150015234235,0.871801,4557.49824591218,2095.56616207841,185.80734,161.498,2.4235,6188.0,194.0,4.27166,2.00586,2.62391996383667,0.132412,,,1.263,0.201024,"1,28",2018-09-05,2021-10-20,2022-12-14 12:09:24,HD 202772 A b,123,1,False,False,True -29831208,124.01,,5,5,5,5,3,5,5,60.6,53.8,317.0,2,1,1,PC,APC,11.1311,0.006,,1,qlp-s39-tois,UNKNOWN,04:26:19.83,-67:48:22.87,7.888,0.108,32.653,0.115,2459384.316075,0.0004793,1.8428078,1.4e-06,1.449,0.149,2.119253,0.005817,1950.0,5.35727,21.2705,,1687.83,1785.0,66.0,809.252,43.8985,5080.0,181.0,4.48159,2.00353,4.09,,,,,,"1,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,33,34,35,36,37,38,39",2018-12-04,2023-01-24,2023-01-26 12:09:41,former FP revived as TFOP APC,124,1,False,False,True -52368076,125.01,,1,5,5,5,4,1,2,8.4,75.9,10.99,15,6,5,CP,CP,10.1985,0.006,,1,spoc,UNKNOWN,01:34:22.42,-66:40:34.86,-119.8,0.066,-122.953,0.08,2458327.445438,0.0017872135,4.65179058475914,2.239795e-05,3.32318411557989,0.16150504,1.078006,0.054492,992.387849564357,50.188103,3.3100151828778,0.227317,180.896545100788,935.356821082475,17.69346,111.059,0.442,5154.0,182.0,4.47072,0.28501,0.852266013622284,0.0497186,,,0.91,0.110203,"1,2,28",2018-10-19,2021-12-02,2022-12-14 12:09:24,TOI-125 b / TOI 125.01,125,1,True,False,True -52368076,125.02,,2,5,5,5,4,4,2,4.0,52.2,9.04,15,6,5,CP,CP,10.1985,0.006,,2,spoc-s01-s36-b0A-CPKP,SPOC,01:34:22.42,-66:40:34.86,-119.8,0.066,-122.953,0.08,2458334.446433,0.0016598101,9.15466210597647,4.3547956e-05,3.0736779855931,0.2111102,1.049855,0.057579,966.485069273326,53.030373,2.95230981567709,0.30252436,73.3501017210813,746.397076482901,14.45497,111.059,0.442,5154.0,182.0,4.47072,0.28501,0.852266013622284,0.0497186,,,0.91,0.110203,"1,2,28",2018-10-19,2021-12-09,2022-12-14 12:09:24,TOI-125 c / TOI-125.02,125,2,True,False,True -52368076,125.03,,1,5,5,5,4,4,1,1.9,38.9,8.65,15,6,5,CP,CP,10.1985,0.006,,3,spoc-s01-s36-b0A-CPKP,SPOC,01:34:22.42,-66:40:34.86,-119.8,0.066,-122.953,0.08,2458342.850757,0.0024966004,19.9812508989029,0.000113433714,3.0623184102098,0.32725707,1.077791,0.083534,992.189433832835,76.93508,2.87617041435472,0.5839863,25.9075840257071,575.408772086897,9.00047,111.059,0.442,5154.0,182.0,4.47072,0.28501,0.852266013622284,0.0497186,,,0.91,0.110203,"1,2,28",2018-10-19,2021-12-09,2022-12-14 12:09:24,period is likely correct but possibly two independent single transits,125,3,True,False,True -70440470,126.01,,5,5,5,5,5,5,5,41.8,111.5,124.3,0,0,1,KP,KP,12.7923,0.006,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,22:37:57.43,-35:09:15.13,-9.326,0.041,-50.142,0.045,2458326.731096,0.00042044988,3.0353977118465,3.6765503e-06,2.79646779523604,0.059945308,17.566776,0.292171,16049.4120426902,269.06363,13.7911582641848,0.73552907,726.756927372002,1324.2410444956,41.57743,573.027,11.688,5751.0,189.0,4.35036,,1.07223999500275,0.053588,,,1.09,0.142327,"1,28",2018-11-07,2021-12-08,2022-12-14 12:09:24,WASP-12 b,126,1,False,False,True -234523599,127.01,,5,5,5,5,4,5,5,34.9,146.7,76.0,3,0,0,CP,CP,14.1266,0.007,,1,spoc-s01-s36-b0A-CPKP,SPOC,01:02:12.45,-61:45:22.08,78.858,0.087,-27.095,0.064,2458325.650603,0.00024310609,3.79551778380905,2.2713773e-06,2.01981348473053,0.031575486,58.298733,0.608638,52278.9940978848,560.4189,10.3261619477101,0.33078393,18.0832335970318,525.943113131369,75.709694,140.225,0.86,3424.0,,4.438,,0.445371985435486,0.01356,,,0.44159,0.0205201,"1,2,28,29",2018-11-14,2021-12-09,2022-12-14 12:09:24,HATS-71 b,127,1,False,False,True -391949880,128.01,,1,5,5,1,4,4,4,6.9,82.2,5.31,4,10,4,PC,PC,7.9849,0.006,,1,qlp-s61-ffi,SPOC/QLP,05:18:05.03,-80:57:51.78,-49.146,0.042,45.307,0.046,2459978.249191,0.0021196,4.9404783,9.6e-06,1.933,0.25,0.439812,0.013551,405.0,12.4807,2.16127,0.104793,168.312,1003.0,32.0,68.4727,0.119,6086.0,193.0,4.26269,0.26143,1.13,0.05,,,1.13,0.151237,"1,8,11,12,13,27,28,31,38,39,61",2018-09-05,2023-03-23,2023-03-24 12:12:10,variable host; two stars in pixel,128,1,False,False,True -201248411,129.01,,3,5,5,3,4,4,4,108.7,330.7,29.49,12,1,1,CP,CP,9.9005,0.006,,1,spoc,UNKNOWN,00:00:44.55,-54:49:50.96,-202.815,0.031,-71.518,0.029,2458326.102581,4.9897226e-05,0.980980683503152,1.171651e-06,0.54050355175474,0.026238935,6.728913,0.065402,6178.39242097547,60.235405,5.91629233324987,0.7808294,719.56290446087,1320.95170904155,167.35898,61.7856,0.0805,4486.0,175.0,4.49914,0.338797,0.764401018619537,0.0628191,,,0.7,0.0867846,"1,2,28,29",2018-10-22,2021-12-02,2022-12-14 12:09:24,TOI 129.01 / HIP 65 A b,129,1,False,False,True -263003176,130.01,,3,5,5,5,4,3,4,4.4,74.2,5.98,2,9,5,CP,CP,7.4371,0.006,,1,spoc-s01-s39-b0A-CP,UNKNOWN,00:50:11.23,-83:44:37.56,139.424,0.056,30.476,0.042,2459368.982611,0.003498,14.3392064970895,2.9987496e-05,4.58682043435081,0.25388035,0.432861,0.013842,398.599932994999,12.749212,2.31449213240619,0.5374176,118.753936356857,841.941182690591,28.940071,57.5846,0.0945,6295.7,56.481,4.438,,1.13742005825043,0.0451659,,,1.23,0.18151,"1,12,13,27,39",2018-09-05,2022-03-30,2022-12-14 12:09:24,HD 5278 b,130,1,False,False,True -235037761,131.01,,5,5,5,5,3,5,5,75.4,266.3,64.05,6,1,9,PC,APC,9.8567,0.006,,1,qlp-s28-ffi,UNKNOWN,23:35:18.89,-64:33:42.9,192.826,1.943,-31.069,1.785,2459081.19532,0.00044,6.24072,0.0,1.307,0.143,9.454377,0.012063,8670.0,11.1106,9.30528,1.9711,20.558,593.0,14.0,,,4174.0,172.0,4.34197,0.433401,0.9,0.19,,,,,"1,28",2018-09-05,2021-12-07,2022-12-14 12:09:24,V shaped; TFOP APC; previously retired as BEB due to chromaticity,131,1,False,False,True -89020549,132.01,,2,5,5,2,4,4,4,10.5,67.8,12.19,12,2,6,CP,CP,10.8061,0.006,,1,spoc,UNKNOWN,22:33:35.92,-43:26:12.74,35.553,0.043,-53.055,0.054,2458326.902893,0.0008217284,2.10968488254532,6.6356783e-06,2.12108283908954,0.2234417,1.436908,0.062857,1322.56571889796,57.89131,3.51757478561794,0.9270777,644.212013209031,1284.92256023279,18.639763,163.678,0.987,5673.0,188.0,4.55383,0.4189,0.940805971622467,0.0527538,,,0.91,0.113124,"1,28",2018-09-05,2021-12-01,2022-12-14 12:09:24,TOI-132 b / TOI-132.01,132,1,False,False,True -219338557,133.01,,2,4,4,2,3,4,4,3.7,61.0,5.5,9,8,1,PC,PC,9.9762,0.006,,1,spoc,SPOC,23:37:35.37,-58:57:18.28,196.638,0.043,-102.545,0.044,2458327.283567,0.0014428071,8.19922718924325,3.3172197e-05,2.2298894243387,0.27246556,1.103077,0.075356,1015.45581923937,69.40332,2.20435020720377,0.64090836,26.2366325220058,577.227180108517,11.5512295,48.6326,0.06345,4028.0,170.0,4.55902,0.201108,0.650533020496368,0.0558995,,,0.67,0.0852257,"1,28",2018-09-05,2021-07-01,2022-12-14 12:09:24,TFOP work in progress.,133,1,False,False,True -234994474,134.01,,1,5,5,5,4,1,4,16.0,129.2,3.68,7,5,7,CP,CP,9.22978,0.007,,1,spoc,UNKNOWN,23:20:06.86,-60:03:56.63,-319.961,0.102,-127.781,0.115,2458326.033161,0.00065292715,1.40152451566955,5.9932813e-06,1.32199295587295,0.108556986,0.672414,0.04136,619.124015084521,38.093296,1.73956492902606,0.13575211,149.373865333401,891.637661967117,15.280327,25.1496,0.0239,3794.0,69.0,4.67812,0.063226,0.597006976604462,0.01815,,,0.58564,0.0205272,"1,28",2018-09-05,2021-10-07,2022-12-14 12:09:24,L 168-9 b,134,1,False,False,True -267263253,135.01,,5,5,5,5,4,5,5,144.8,202.1,317.0,2,1,3,PC,CP,9.2205,0.006,,1,qlp,UNKNOWN,00:29:18.94,-76:18:14.52,-2.97,0.037,6.961,0.031,2459039.738438,0.00026854113,4.12691,0.0,4.429,0.017,11.998293,4.4e-05,10990.0,0.0408554,16.98,0.693566,1451.24,1719.0,294.0,196.852,0.774,6888.0,204.0,4.23416,0.355654,1.59,0.06,,,1.46,0.249445,"1,27,28",2018-09-05,2020-10-26,2022-12-14 12:09:24,HD 2685b,135,1,False,False,True -410153553,136.01,,1,5,5,5,4,1,4,38.2,326.7,2.92,9,1,5,PC,CP,11.9238,0.008,,1,spoc,UNKNOWN,22:41:59.09,-69:10:19.59,334.357,0.083,-726.974,0.086,2459036.323679,0.00038085453,0.462884405273262,1.5224909e-05,0.558821920788134,0.08828183,4.885837,0.188836,4489.91192153051,173.90933,1.35432368024304,0.18157507,64.7181040420166,723.396154940473,25.038494,14.8846,0.0113,3043.0,63.0,5.09707,0.426694,0.188624,0.00571031,,,0.157909,0.0200668,"1,27",2018-09-05,2020-10-27,2022-12-14 12:09:24,Level 1 target. Potential short period small planet around an M dwarf.,136,1,False,False,True -176957796,137.01,,5,5,5,5,5,5,5,2.3,33.5,3.59,2,3,3,IS,FA,10.702,0.006,,1,qlp-s31-tois,UNKNOWN,06:45:11.4,-66:14:17.98,18.528,0.048,-67.531,0.041,2459199.440315,0.7578715,4.8173797,0.0057592,1.323,1.857,1.956086,0.090132,1800.0,83.0109,1.71137,0.714717,33.919,672.0,1000.0,88.8838,0.19925,4651.0,175.0,4.56937,0.2,0.69,0.07,,,0.74,0.0949972,"1,2,3,4,5,7,8,9,10,11,12,13,27,28,29,30,31",2018-09-05,2021-12-07,2022-12-14 12:09:24,TFOP FA,137,1,False,False,True -277683130,138.01,,5,5,5,5,3,5,5,47.6,202.1,60.17,2,1,6,EB,APC,9.5739,0.006,,1,spoc-s01-s36-b0A,UNKNOWN,21:55:42.24,-61:40:23.73,-23.8,2.0,2.8,1.9,2458328.058264,0.0005228397,6.19826411331066,5.99643e-06,2.20922588749741,0.04601082,4.072902,0.108462,3744.25438261768,99.89238,8.99968387805369,0.9793425,236.048650737224,999.701008325028,63.2879,128.488,,5722.0,189.0,4.35582,2.00367,1.11118996143341,,,,,,"1,27,28",2018-09-05,2021-12-07,2022-12-14 12:09:24,TFOP APC; previously retired as FP after SB2 confirmed by CHIRON,138,1,False,False,True -62483237,139.01,,1,4,4,5,4,3,1,6.7,100.8,9.72,7,9,7,PC,PC,9.3636,0.006,,1,spoc,UNKNOWN,22:25:36.58,-34:54:34.97,26.43,0.071,-30.255,0.08,2458334.891916,0.0020608278,11.0708037285261,4.5374956e-05,2.51608329699429,0.17354466,1.402853,0.106577,1291.24053388794,98.15653,3.07940622229035,0.30939794,22.4220519021504,554.994383283977,13.696319,42.4061,0.0763,4356.0,173.0,4.53491,0.3608,0.700726985931396,0.0575277,,,0.69,0.0852195,"1,28",2018-09-05,2021-07-06,2023-06-13 00:00:00,potential L1 planet,139,1,False,False,True -140068425,140.01,,3,5,5,3,4,4,4,57.3,129.5,108.61,10,1,6,PC,APC,9.7828,0.006,,1,spoc,SPOC,22:01:12.43,-49:03:36.28,32.489,0.077,-15.438,0.075,2459061.991988,0.0018030562,2.28126419667409,0.000309919,1.16019326329961,0.15420127,1.223947,0.15391,1126.66194875397,141.74628,12.73871943027,22.251356,5760.97209843584,2221.99814750314,9.151047,337.105,5.7035,6174.0,194.0,4.27404,2.00568,2.35511,0.11186,,,1.2,0.177569,"1,28",2018-09-05,2020-10-27,2022-12-14 12:09:24,very likely EB; events synchronized with modulations; potential secondary at 0.5 phase,140,1,False,False,True -403224672,141.01,,1,5,5,5,4,1,2,11.7,118.4,3.24,12,14,13,CP,CP,7.384,0.006,,1,spoc,UNKNOWN,22:35:56.09,-59:51:53.38,-108.388,0.05,-84.419,0.064,2459062.557243,0.0015281278,1.00822655753975,3.73102e-06,1.50247746880882,0.105271004,0.212839,0.010415,196.012796708041,9.59233,1.61327414966498,0.7878952,3253.81208958178,1926.27313030184,23.816507,48.0883,0.0989,5795.29,44.5804,4.438,,1.13187003135681,0.0489196,,,1.04,0.129204,"1,27,28",2018-09-05,2021-10-07,2022-12-14 12:09:24,HD 213885 b,141,1,False,False,True -425934411,142.01,,3,5,5,3,1,4,4,92.3,144.2,107.96,9,0,0,PC,PC,14.7109,0.007,,1,spoc,SPOC,00:18:25.41,-62:50:52.35,6.11,0.068,5.18,0.059,2458325.486194,0.00034600016,0.853353552145166,3.000903e-06,1.10148781529648,0.053431965,28.03227,1.307248,25488.2232644957,1203.2957,12.6939269896351,5.380599,262.102476437116,1026.21304414348,29.692818,320.237,4.469,3658.0,162.0,4.438,,0.608075976371765,0.0190377,,,0.594628,0.0208477,"1,2,28,29",2018-11-14,2018-11-14,2022-12-14 12:09:24,V-shaped; slight odd-even depending on detrending,142,1,False,False,True -25375553,143.01,,5,5,5,5,5,5,5,127.3,148.0,317.0,2,3,8,KP,KP,9.77486,0.006,,1,spoc,UNKNOWN,21:55:04.26,-22:36:45.36,12.885,0.101,-4.311,0.105,2458325.582463,0.00015197185,2.31096889835692,1.0088291e-06,3.43038207029443,0.018429179,7.440388,0.037297,6829.42364951378,34.351486,17.3042800039326,0.83617586,4324.03545359106,2068.197748977,189.12912,298.109,6.691,6371.0,197.0,3.94807,0.439603,1.95411002635956,0.0941057,,,1.336,0.218944,"1,28",2018-09-05,2021-12-02,2022-12-14 12:09:24,WASP-111 b,143,1,False,False,True -261136679,144.01,,1,5,5,5,4,1,1,17.1,202.3,4.65,0,14,4,CP,CP,5.1054,0.006,,1,qlp-s62-ffi,SPOC,05:37:11.83,-80:27:52.57,311.187,0.127,1048.84,0.136,2460011.550653,0.0028276,6.267832,2.29e-05,2.789,0.237,0.348577,0.008096,321.0,7.45646,1.99779,0.0837751,203.434,1052.0,53.0,18.2702,0.0226,5950.0,,4.438,,1.15,0.05,0.0887839,0.00649598,1.1,0.140389,"1,4,8,11,12,13,27,28,31,34,38,39,61,62",2019-05-07,2023-04-04,2023-04-07 12:13:06,pi Men c,144,1,False,False,True -265612438,145.01,,3,4,4,3,3,4,4,14.1,46.3,58.95,10,1,3,PC,PC,11.6789,0.006,,1,qlp-s28-tois,QLP,22:12:41.93,-55:58:43.69,-5.816,0.065,-4.917,0.063,2459060.6424,0.00377,5.13002,3e-05,4.78,0.69,3.671647,0.002188,3376.0,2.01525,8.86428,0.524885,842.866,1501.0,22.0,438.421,8.695,5430.7,64.5,4.4,2.0,1.58,0.08,,,0.97,0.117664,"1,27,28",2018-09-05,2021-12-07,2022-12-14 12:09:24,Some confusion about whether source is this star or the close pair of equal brightness stars to the NE (260985864)- but difference image seems to indicate source is more likely to be this star.,145,1,False,False,False -355636844,146.01,,5,5,5,5,5,5,5,14.4,27.2,119.48,3,0,5,EB,FP,10.7124,0.006,,1,qlp,QLP,23:53:12.49,-56:00:47.71,65.392,1.57,-27.177,1.636,2459080.90325,0.00446,6.30556,4e-05,2.946,0.394,0.934135,0.00134,860.0,1.23429,,,,,17.0,739.632,639.884,,,,,,,,,,,"1,2,28",2018-09-05,2022-10-17,2022-12-14 12:09:24,Signal coming from a faint star to the SE. At least for the brighter of those it could be a planet. TFOP FP.,146,1,False,False,True -220435095,147.01,,5,5,5,5,5,5,5,507.0,2062.9,317.0,6,0,1,EB,FP,11.8999,0.006,,1,qlp-s27-ffi,QLP,04:54:33.95,-57:30:48.43,5.001,0.053,22.236,0.054,2459062.589561,0.0012446381,3.42317,1e-05,2.441,0.115,8.93974,0.214013,8200.0,197.094,68.4147,5.7918,1298.52,1672.0,124.0,820.079,16.5695,5620.9,134.5,3.6,0.08,2.61,0.16,-0.773322,0.1,1.0,0.124679,"1,2,3,4,5,6,7,8,9,10,11,12,13,27",2018-09-05,2022-07-11,2022-12-14 12:09:24,transit is V-shaped; the minimum planet radius is large (26 Re); the light curve shows a slightly eccentric secondary eclipse; TFOP FP,147,1,False,False,True -393940766,148.01,,3,4,4,3,4,3,5,13.0,60.0,43.22,11,2,1,PC,CP,11.7835,0.006,,1,qlp-s28-tois,QLP,22:33:16.99,-38:09:35.38,22.348,0.07,-25.839,0.072,2458327.32937,0.00191,4.86709,2e-05,3.103,0.389,4.580598,0.003424,4210.0,3.15395,7.42915,0.444077,435.152,1272.0,14.0,395.257,9.729,5814.3,793.8,4.34,2.0,1.15,0.06,,,1.13,0.153555,"1,28",2018-09-05,2022-10-17,2022-12-14 12:09:24,Planet candidate around 393940766 to the NW.,148,1,False,False,True -260985861,149.01,,3,5,5,3,3,4,4,107.0,127.1,317.0,4,1,1,PC,PC,10.8727,0.01,,1,spoc-s01-s39-b0A-PC,QLP,05:06:32.44,-80:46:04.83,-7.91,0.16,22.707,0.195,2459362.786679,0.0009484082,3.33993499913191,2.7625022e-06,4.28444483925858,0.036682174,9.752209,0.1051,8941.89768922674,96.79566,,,522.442709948076,1219.35290686722,56.495327,380.81,9.2885,5095.6,1212.6,,,,,,,,,"11,12,13,27,28,38,39",2018-09-05,2022-10-17,2022-12-14 12:09:24,Source is apparently 260985864 which may be a planet depending on the host star size. SG1 should clear the neighbor. No stellar radius.,149,1,False,False,True -271893367,150.01,,3,5,5,3,4,4,4,40.6,104.4,125.8,4,2,3,CP,CP,10.9031,0.006,,1,spoc-s01-s39-b0A-CP,QLP,07:31:51.7,-73:36:21.73,-15.215,0.029,27.144,0.033,2459363.044953,0.0011139336,5.85740753759727,3.0940705e-06,5.85480292934519,0.02472023,7.069098,0.029277,6489.73023457872,26.96511,13.8892761532574,0.61632216,750.922027314322,1335.1143400762,157.52177,336.267,1.916,5982.9,108.8,4.03,0.08,1.6798700094223,0.0741256,0.211186,0.046085,1.1,0.141051,"9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,39",2018-09-05,2022-10-17,2022-12-14 12:09:24,TOI 150 b,150,1,False,False,True -382302241,151.01,,5,5,5,5,5,5,5,14.3,90.2,12.01,2,1,1,EB,FP,11.0264,0.006,,1,sector-01-qlp-alerts,QLP,05:33:23.79,-58:44:42.33,28.992,0.046,25.403,0.06,2458326.05013,0.002,1.59782,6e-05,1.49,0.296,1.862211,0.004951,1713.69,4.56,3.59995,0.207255,955.676,1548.0,32.0,137.504,0.4555,5037.6,64.8,4.72,0.2,0.79,0.02,0.102405,0.1,0.87,0.107354,1,2018-09-05,2021-12-07,2022-12-14 12:09:24,Large with possible synchronization; SG1 confirms NEB ,151,1,False,False,True -403287048,152.01,,5,5,5,5,5,5,5,14.1,68.2,52.8,2,1,1,EB,FP,11.3569,0.006,,1,sector-01-qlp-alerts,QLP,22:09:25.8,-62:20:04.03,-34.716,0.036,-109.526,0.047,2458327.92337,0.00494,7.00776,0.00315,2.68,0.824,3.988702,0.019543,3666.99,18.0,8.1288,0.625284,302.511,1161.0,16.0,376.849,4.5095,6347.0,102.6,4.23,0.45,1.22,0.04,,,1.26,0.191402,1,2018-09-05,2021-12-07,2022-12-14 12:09:24,retired as NEB,152,1,False,False,False -231081369,153.01,,5,5,5,5,3,5,5,20.3,68.4,104.03,5,1,2,PC,APC,11.7349,0.006,,1,qlp-s38-tois,QLP,04:32:17.71,-66:54:58.68,12.131,2.933,15.615,2.933,2459352.490536,0.0005234,7.6316384,6.4e-06,2.054,0.175,4.984094,0.007179,4580.0,6.61239,12.4425,,212.617,,45.0,436.225,,6338.3,291.5,4.16,0.2,1.49,,-0.26861,0.1,,,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,30,31,32,33,34,35,36,37,38",2018-09-05,2022-10-17,2022-12-14 12:09:24,,153,1,False,False,True -389525208,154.01,,5,5,5,5,5,5,5,44.5,50.0,317.0,1,1,3,EB,FP,10.0704,0.006,,1,qlp-s27-ffi,QLP,20:53:02.75,-38:35:41.72,-5.023,0.069,-10.868,0.059,2458329.36085,0.00093,6.74657,1e-05,1.803,0.19,3.229435,0.002949,2970.0,2.71583,16.2785,0.919926,80.0277,833.0,31.0,402.734,8.073,5910.7,162.8,3.59,0.54,2.57,0.13,,,1.17,0.165402,"1,27",2018-09-05,2021-12-07,2022-12-14 12:09:24,TFOP FP,154,1,False,False,True -129637892,155.01,,3,4,3,3,4,4,4,13.6,72.1,26.98,4,8,4,PC,PC,9.0284,0.006,,1,qlp-s28-tois,UNKNOWN,21:24:27.6,-37:51:00.65,7.193,0.049,-6.279,0.051,2459084.27118,0.00172,5.45001,2e-05,4.353,0.421,1.021072,0.000428,940.0,0.39418,5.61464,0.27429,882.006,1518.0,23.0,187.131,1.351,6220.5,151.8,3.99,0.36,1.79,0.08,,,1.35,0.213853,"1,28",2018-09-05,2022-10-03,2022-12-14 12:09:24,,155,1,False,False,True -220518305,156.01,,5,5,5,5,5,5,5,22.2,109.0,80.03,1,0,1,EB,FP,10.294,0.006,,1,qlp-s30-ffi,QLP,02:45:52.22,-64:19:14.47,29.82,0.042,4.632,0.046,2459128.64364,0.00145,14.152,3e-05,3.599,0.23,4.133657,0.100766,3800.0,92.805,10.6751,1.45569,288.531,1148.0,39.0,234.138,1.3405,5823.9,138.2,4.6,0.16,1.28,0.06,0.19,0.12,1.21,0.177327,"1,3,28,29,30",2018-09-05,2021-12-07,2022-12-14 12:09:24,EB confirmed with CHIRON RVs ,156,1,False,False,True -140691463,157.01,,3,5,5,3,4,4,4,66.1,148.4,112.45,8,1,1,CP,CP,12.0166,0.006,,1,qlp,UNKNOWN,04:54:48.35,-76:40:50.18,11.712,0.035,-18.922,0.05,2459385.493775,0.0001529,2.0845398,5e-07,1.714,0.026,14.119119,0.001506,12920.0,1.3868,13.0435,0.69784,400.351,1246.0,402.0,355.683,2.826,5638.0,133.9,4.35,0.08,1.11,0.06,,,1.0,0.132466,"1,2,3,4,5,6,7,8,9,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2018-09-05,2021-11-09,2022-12-14 12:09:24,TOI-157b (Nielsen+2020),157,1,False,False,True -403136413,158.01,,5,5,5,5,5,5,5,32.6,73.4,110.14,3,0,1,EB,FP,11.2314,0.006,,1,sector-01-qlp-alerts,QLP,22:14:18.89,-55:22:44.33,-8.312,0.043,4.153,0.053,2458326.37811,0.00219,2.51266,0.00045,2.411,0.173,3.033449,0.002942,2790.01,2.71,13.3617,0.731867,793.471,1478.0,22.0,601.367,11.559,5988.0,137.8,4.08,0.16,2.3,0.1,-0.03,0.12,1.15,0.158958,1,2018-09-05,2021-12-07,2022-12-14 12:09:24,retired as NPC,158,1,False,False,True -394657039,159.01,,3,5,5,3,3,4,4,90.2,121.3,317.0,6,3,2,PC,PC,10.5132,0.006,,1,qlp-s39-tois,QLP,03:27:07.74,-78:32:59.39,11.616,0.057,1.959,0.043,2459382.232709,0.0004284,3.7628372,3.2e-06,3.956,0.019,12.404555,0.000206,11360.0,0.18932,17.3305867366452,0.7854587,1797.82720739528,1660.75946671256,297.0,347.593,2.519,6979.2,136.5,4.22,0.09,1.58746004104614,0.0717136,0.17,0.12,1.53,0.269377,"1,2,12,13,28,32,39",2018-09-05,2022-10-17,2022-12-14 12:09:24,low amplitude pulsations ~ 1 day potentially phased with planet period,159,1,False,False,True -253917293,160.01,,5,5,5,5,5,5,5,17.8,71.9,48.6,2,2,3,EB,FP,11.2901,0.007,,1,sector-01-qlp-alerts,QLP,22:30:00.2,-31:55:27.68,28.377,0.077,-27.285,0.059,2458327.37627,0.00284,4.608,0.001,3.383,0.758,3.494326,0.008664,3213.22,7.98,7.99698,0.539026,724.001,1445.0,25.0,341.854,4.498,5935.0,141.5,4.29,0.65,1.28,0.06,,,1.12,0.145936,1,2018-09-05,2021-12-07,2022-12-14 12:09:24,Source is star to the WSW (253917292). Retired as NEB.,160,1,False,False,False -348770361,161.01,,3,4,4,3,3,4,4,9.7,52.9,19.52,9,0,3,PC,PC,11.4964,0.006,,1,qlp-s39-tois,QLP,03:06:44.77,-82:18:58.93,14.9,2.9,4.7,2.8,2459388.787312,0.0011539,2.7684331,5.5e-06,4.223,0.117,3.517067,0.058942,3234.09711123576,54.28633,4.61938,,1330.16,,45.0,333.651,,5388.0,,,,0.98,,,,,,"1,12,13,27,28,39",2018-09-05,2022-10-17,2022-12-14 12:09:24,,161,1,False,False,True -99493790,162.01,,5,5,5,5,3,5,5,55.7,84.8,317.0,2,3,7,PC,APC,11.6834,0.007,,1,qlp-toi-update-03-29-22,QLP,21:10:33.58,-23:18:20.94,50.863,0.096,-19.94,0.061,2459078.393053,0.0003954,7.764691,6.8e-06,3.185,0.056,26.965206,0.002985,24530.0,2.74943,15.6068,0.898621,86.3134,849.0,36.0,274.733,5.45,5404.7,43.0,4.4,2.0,0.99,0.06,,,0.971,0.125327,"1,28",2018-09-05,2022-03-29,2022-12-14 12:09:24,previously retired as EB; now APC,162,1,False,False,False -179317684,163.01,,3,5,5,3,4,4,4,48.7,54.8,317.0,4,0,3,CP,CP,10.8719,0.006,,1,spoc-s01-s39-b0A-CP,QLP,05:19:04.38,-71:53:43.9,7.14,0.067,16.374,0.078,2459365.506797,0.00066446123,4.2311153018502,1.1674022e-06,4.32788352417627,0.015291518,7.889641,0.028033,7240.29024349957,25.818834,14.5356227248902,0.6842795,1489.11354523796,1584.35209728178,210.4154,411.719,8.01,6671.0,130.6,4.14,0.09,1.66401994228363,0.0781055,,,1.41,0.244606,"9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2018-09-05,2022-10-17,2022-12-14 12:09:24,TOI-163 b,163,1,False,False,True -79395355,164.01,,5,5,5,5,5,5,5,13.6,63.1,52.86,1,0,3,EB,FP,11.407,0.006,,1,sector-01-qlp-alerts,QLP,21:20:13.03,-51:18:35.9,18.03,0.053,-14.704,0.064,2458328.33733,0.00377,7.31898,0.00224,3.771,0.886,4.143792,0.011075,3809.3,10.2,8.79673,0.51237,468.718,1296.0,17.0,360.131,4.613,5926.0,79.5,4.27,2.01,1.3,0.03,,,1.15,0.154532,1,2018-09-05,2021-12-07,2022-12-14 12:09:24,Potential blend with 79395356 to NE; retired as NPC,164,1,False,False,False -350743714,165.01,,5,5,5,5,3,5,5,66.0,218.1,118.14,1,3,2,KP,APC,9.6686,0.007,,1,qlp-s62-ffi,QLP,05:55:32.69,-57:17:26.68,2.812,0.056,-39.619,0.049,2460001.885839,0.0002422,7.7576416,1.8e-06,3.248,0.221,8.322498,0.064923,7636.0,59.7946,12.92,0.992628,291.465,1151.0,345.0,210.311,1.1585,6038.0,54.0,3.96,0.11,1.41,0.11,,,,,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62",2018-11-30,2023-04-12,2023-04-25 12:12:35,EBLM J0555-57; 85 Mjup,165,1,False,False,True -147203645,166.01,,3,4,4,3,3,4,4,34.8,139.0,56.15,12,0,4,PC,PC,10.7258,0.006,,1,qlp-s28-tois,QLP,21:32:47.06,-44:01:04.93,29.817,0.047,-58.517,0.051,2458326.38833,0.00063,5.06114,1e-05,1.338,0.075,3.174987,0.006234,2920.0,5.74188,8.62227,0.532919,108.947,900.0,28.0,172.157,0.9805,5254.0,152.9,4.45,0.36,1.0,0.05,,,0.94,0.118538,"1,28",2018-09-05,2022-10-17,2022-12-14 12:09:24,,166,1,False,False,True -149990841,167.01,,3,4,3,5,3,4,4,25.0,94.3,59.25,5,1,5,PC,PC,11.6349,0.006,,1,qlp-s39-tois,QLP,06:02:39,-64:49:10.14,-3.606,2.124,14.96,2.074,2459387.893848,0.0003729,4.4531846,2.7e-06,1.687,0.13,6.435737,0.001116,5910.0,1.0276,,,184.842,1027.0,88.0,310.951,158.505,5766.0,158.9,,,,,,,,,"1,2,4,5,7,8,9,11,12,27,28,29,31,32,34,35,36,37",2018-09-05,2022-10-17,2022-12-14 12:09:24,no stellar radius; Gaia DR2 Teff + plx indicate sun-like star,167,1,False,False,True -369457671,168.01,,1,4,4,1,3,3,4,10.3,68.3,11.46,16,2,3,PC,PC,11.5147,0.006,,1,qlp-s27-ffi,QLP,20:46:34.46,-37:54:15.83,14.801,0.076,-11.655,0.048,2458326.4928,0.00197,2.31446,1e-05,1.347,0.367,1.292795,0.004951,1190.0,4.56033,3.40668,0.294554,176.692,1015.0,10.0,130.977,0.8125,4801.5,126.2,,,0.73,0.05,,,0.74,0.0916005,"1,27",2018-09-05,2021-12-07,2022-12-14 12:09:24,,168,1,False,False,True -183120439,169.01,,3,5,5,3,4,4,4,39.7,105.1,85.34,6,1,2,CP,CP,11.788,0.006,,1,spoc-s01-s36-b0A-CPKP,QLP,01:07:06.89,-75:11:56.2,20.225,0.05,-15.607,0.048,2459062.718052,0.0012657759,2.25544592236528,4.458845e-06,1.66786040481136,0.04603705,5.751925,0.15637,5283.71039006994,144.01193,11.0535292842194,0.5730389,1472.00952174388,1579.78288467845,34.75056,407.84,4.1945,5817.0,126.7,4.23,0.07,1.29660999774933,0.0621181,,,1.05,0.12634,"13,27,28",2018-09-05,2022-10-17,2022-12-14 12:09:24,TOI 169 b,169,1,False,False,True -394698182,170.01,,3,5,5,3,3,4,4,46.4,121.1,126.76,8,5,1,PC,PC,11.9692,0.006,,1,qlp-s39-tois,QLP,03:39:57.5,-83:05:18.66,29.232,0.057,14.991,0.061,2459387.008657,0.0003683,3.7115129,2.2e-06,2.685,0.064,13.415381,0.001041,12280.0,0.958993,13.941,0.66669,399.006,1245.0,156.0,428.915,5.21,5973.0,131.5,4.31,0.08,1.22,0.06,,,1.1,0.144306,"12,13,27,28,39",2018-09-05,2022-10-17,2022-12-14 12:09:24,,170,1,False,False,True -309257814,171.01,,3,5,5,3,3,4,4,131.6,233.5,120.61,22,2,3,PC,PC,11.6626,0.006,,1,qlp-s38-tois,QLP,08:17:04.66,-63:12:48.25,-13.511,0.045,19.48,0.037,2459359.397767,0.0002857,1.2386034,6e-07,1.651,0.027,14.537179,0.000398,13300.0,0.366555,13.5831,0.802239,757.302,1461.0,69.0,256.345,1.463,5237.0,183.0,4.2427,0.42297,1.11,0.07,,,0.88,0.109325,"1,8,9,10,11,28,31,35,36,37,38",2019-06-11,2022-10-17,2022-12-14 12:09:24,,171,1,True,False,True -309257814,171.02,,5,5,5,5,5,5,5,61.5,143.6,75.4,22,2,3,PC,FP,11.6626,0.006,,2,spoc,SPOC,08:17:04.66,-63:12:48.25,-13.511,0.045,19.48,0.037,2459144.738743,0.0015336432,1.81357672556142,0.00019187533,0.838218775453242,0.23335735,8.501737,0.869669,7799.81161219279,800.6742,10.2776167623595,2.846093,1028.13979768643,1444.21812846947,7.7045045,256.345,1.463,5237.0,183.0,4.2427,0.42297,1.10723,0.0651181,,,0.88,0.109325,"10,31",2019-06-11,2021-01-14,2022-12-14 12:09:24,Likely EB and possibly double the period,171,2,True,False,True -29857954,172.01,,4,5,5,5,4,5,4,15.7,55.7,69.55,3,28,12,CP,CP,10.7379,0.006,,1,qlp-s28-tois,QLP,21:06:31.65,-26:41:34.32,-4.711,0.094,-54.25,0.069,2458326.92242,0.00173,9.47686,4e-05,4.392,0.243,3.240324,0.001167,2980.0,1.07525,9.80856,0.54867,161.969,993.0,14.0,342.831,7.221,5801.8,235.6,4.32,2.0,1.79,0.09,,,1.031,0.12794,"1,28",2018-09-05,2022-10-17,2022-12-14 12:09:24,TOI-172 b,172,1,False,False,True -270341214,173.01,,3,4,4,3,3,4,4,26.4,160.9,100.06,22,22,3,PC,PC,8.8784,0.006,,1,qlp,UNKNOWN,02:13:50.12,-80:34:57.76,22.849,0.057,19.459,0.05,2459345.034078,0.0005342,29.7536112,2.62e-05,8.017,0.049,7.113107,5.5e-05,6530.0,0.0508971,12.1499,0.506421,89.3437,856.0,233.0,152.023,0.6405,6409.0,197.0,4.20097,0.320295,1.47,0.06,,,1.41,0.233008,"1,13,27,28,39",2018-08-30,2021-08-26,2022-12-14 12:09:24,,173,1,False,False,True -425997655,174.01,,1,5,5,1,4,4,4,2.8,75.4,5.64,17,14,3,CP,CP,8.7513,0.006,,1,spoc,UNKNOWN,03:41:50.17,-62:46:02.16,-102.571,0.05,-43.917,0.059,2458325.328637,0.0014199052,17.6671330924959,4.6798472e-05,2.95806882868466,0.122183874,0.802543,0.03106,738.896229863582,28.607325,2.23545605243103,0.16114731,15.3721782870706,505.014215083123,23.998466,39.0341,0.04005,4813.0,111.0,4.38,0.21,0.691374003887177,0.0423719,-0.19,0.08,0.78,0.0888069,"1,2,3,4,11,29,30,31,34",2019-05-07,2021-09-07,2022-12-14 12:09:24,HD 23472 b; multi,174,1,True,False,True -425997655,174.02,,4,5,5,5,4,4,4,0.8,43.6,3.46,17,14,3,CP,CP,8.7513,0.006,,2,spoc,UNKNOWN,03:41:50.17,-62:46:02.16,-102.571,0.05,-43.917,0.059,2458340.303767,0.0013975578,29.7976204948474,9.466238e-05,2.8877904644222,0.28286564,0.653276,0.036551,601.508566229395,33.66421,1.677122004116,0.9720113,7.65681359358732,424.259687883884,16.614653,39.0341,0.04005,4813.0,111.0,4.38,0.21,0.691374003887177,0.0423719,-0.19,0.08,0.78,0.0888069,"1,2,3,4,11,29,30,31,34",2019-05-17,2021-09-07,2022-12-14 12:09:24,HD 23472 c; multi,174,2,True,False,True -425997655,174.03,,2,5,5,2,4,4,4,1.2,6.1,1.74,17,14,3,PC,CP,8.7513,0.006,,3,spoc,UNKNOWN,03:41:50.17,-62:46:02.16,-102.571,0.05,-43.917,0.059,2458335.74586,0.0020284504,12.1622171719925,4.916313e-05,2.74263721168058,0.27684563,0.314906,0.027326,289.997034623129,25.168226,1.17666551797215,0.9759817,25.2894770233744,571.945584680866,11.010078,39.0341,0.04005,4813.0,111.0,4.38,0.21,0.691374003887177,0.0423719,-0.19,0.08,0.78,0.0888069,"1,2,3,4,11,29,30,31,34",2019-05-17,2021-09-07,2022-12-14 12:09:24,TOI 174.03; multi,174,3,True,False,True -425997655,174.04,,2,5,5,2,4,4,4,1.5,11.0,0.45,17,14,3,PC,CP,8.7513,0.006,,4,spoc,UNKNOWN,03:41:50.17,-62:46:02.16,-102.571,0.05,-43.917,0.059,2458326.028202,0.0018362998,3.97666394851563,2.1937693e-05,2.127742224209,0.15977617,0.147199,0.015096,135.566248187729,13.903932,0.807109651533313,0.76925755,112.270329600069,830.206250848435,9.593883,39.0341,0.04005,4813.0,111.0,4.38,0.21,0.691374003887177,0.0423719,-0.19,0.08,0.78,0.0888069,"1,2,3,4,11,29,30,31,34",2019-05-17,2021-09-07,2022-12-14 12:09:24,TOI 174.04; multi,174,4,True,False,True -425997655,174.05,TIC 425997655.05,1,5,5,1,4,4,4,1.1,8.1,0.74,17,14,3,PC,CP,8.7513,0.006,,5,spoc,SPOC,03:41:50.17,-62:46:02.16,-102.571,0.05,-43.917,0.059,2458330.837511,0.0027113813,7.90767225069933,5.7179892e-05,2.94315386873247,0.31656086,0.171012,0.02024,157.495771308736,18.641155,0.927519513217299,0.5251598,44.8978253286067,660.200845331632,7.2740426,39.0341,0.04005,4813.0,111.0,4.38,0.21,0.691374003887177,0.0423719,-0.19,0.08,0.78,0.0888069,"1,2,3,4,11,29,30,31,34",2021-10-21,2021-10-21,2022-12-14 12:09:24,near 2:1 resonance with .04; multi; two CPs and three PCs including this one,174,5,True,False,True -307210830,175.01,,1,5,5,1,4,2,4,8.0,29.3,2.5,20,4,4,CP,CP,9.41242,0.007,,1,qlp-s63-ffi,QLP,08:18:07.89,-68:18:52.08,94.768,0.054,-340.47,0.052,2460039.150624,0.0003728,3.6906795,1.3e-06,1.107,0.081,1.800557,0.04718,1657.0,43.4539,1.36751,0.0448017,8.77401,479.0,80.0,10.6194,0.0032,3469.0,68.0,4.9401,0.058929,0.31,0.01,,,0.292836,0.0201481,"2,5,8,9,10,11,12,28,29,32,35,36,37,38,39,61,62,63",2019-05-07,2023-05-11,2023-05-11 00:00:00,L 98-59 c; TOI 175.01,175,1,True,False,True -307210830,175.02,,4,5,5,5,4,4,4,16.5,441.8,9.75,20,4,4,CP,CP,9.41242,0.007,,2,qlp-s63-ffi,SPOC,08:18:07.89,-68:18:52.08,94.768,0.054,-340.47,0.052,2460039.154503,0.0004444,7.4507305,3.2e-06,0.475,0.12,1.675497,4.72609,1542.0,4343.43,3.04528,0.856434,1.96064,329.0,40.0,10.6194,0.0032,3469.0,68.0,4.9401,0.058929,0.31,0.01,,,0.292836,0.0201481,"2,5,8,9,10,11,12,28,29,32,35,36,37,38,39,61,62,63",2019-05-07,2023-05-11,2023-06-16 12:14:51,L 98-59 d/TOI 175.02,175,2,True,False,True -307210830,175.03,,4,5,5,5,4,4,4,7.4,32.8,1.07,20,4,4,CP,CP,9.41242,0.007,,3,qlp-s63-ffi,QLP,08:18:07.89,-68:18:52.08,94.768,0.054,-340.47,0.052,2460035.728304,0.0006774,2.2531134,1.5e-06,0.909,0.272,0.723341,0.119307,666.0,109.88,1.01428,0.0713486,82.284,839.0,40.0,10.6194,0.0032,3469.0,68.0,4.9401,0.058929,0.31,0.01,,,0.292836,0.0201481,"2,5,8,9,10,11,12,28,29,32,35,36,37,38,39,61,62,63",2019-05-07,2023-05-11,2023-06-16 12:14:51,L 98-59 b / TOI 175.03,175,3,True,False,True -272086159,176.01,,5,5,5,5,5,5,5,9.9,284.2,103.66,3,1,1,PC,FP,13.4004,0.007,,1,spoc,UNKNOWN,07:40:00.83,-72:12:20.44,15.438,0.073,478.653,0.106,2458363.043768,0.00044,16.155373,0.000103,1.556705,0.037499,80.224553,1.764459,71225.723174,1623.8068,10.424281,7.728964,1.84600864691493,297.288549682656,49.630848,65.9528,0.20035,3270.0,63.0,4.98242,0.409627,0.271,0.047,,,0.302101,0.0202307,"2,3,4,5,6",2019-05-07,2019-05-07,2022-12-14 12:09:24,,176,1,False,False,True -262530407,177.01,,1,5,5,1,4,4,4,14.2,146.9,5.18,8,5,3,PC,CP,9.49275,0.007,,1,spoc,UNKNOWN,01:21:45.22,-46:42:53,-111.206,0.058,-79.827,0.068,2458356.153228,0.00033012137,2.85310081080326,4.9320583e-06,1.2586624185854,0.11815041,1.724695,0.060011,1587.24215084687,55.270573,2.12661501434877,0.39055997,42.2348017946711,650.185626870479,26.2589,22.4751,0.02605,3703.0,66.0,4.76229,0.061557,0.517786026000977,0.0155797,,,0.515356,0.0204259,"2,3,29",2018-12-20,2021-07-15,2022-12-14 12:09:24,possible L1 planet,177,1,False,False,True -251848941,178.01,,1,5,5,1,4,4,4,6.4,76.0,8.86,23,7,6,CP,CP,10.42,0.006,,1,spoc,UNKNOWN,00:29:12.48,-30:27:14.82,149.953,0.073,-87.253,0.042,2458360.242425,0.0014761891,6.55767001743942,2.6644977e-05,2.4207396146827,0.19155839,1.674585,0.11266,1541.16109328129,103.758224,2.91610436700991,0.37984014,38.1036430520296,633.66741437364,10.174463,62.699,0.20675,4111.0,171.0,4.55528,0.449348,0.660806000232697,0.0596206,,,0.68,0.0803989,"2,29",2018-11-03,2021-10-07,2022-12-14 12:09:24,TOI-178 d / TOI 178.01; part of a multi (trojan planet) system,178,1,True,False,True -251848941,178.02,,4,5,5,5,4,4,4,2.7,66.6,12.29,23,7,6,CP,CP,10.42,0.006,,2,spoc,SPOC,00:29:12.48,-30:27:14.82,149.953,0.073,-87.253,0.042,2458354.55219,0.004083,20.708504,0.003165,2.236524,0.274134,1.800631,0.484506,1657.067907,446.14713,3.751004,1.518233,19.4977724575681,535.939786629264,9.537692,62.699,0.20675,4111.0,171.0,4.55528,0.449348,0.701202,0.152166,,,0.68,0.0803989,2,2018-11-03,2021-10-21,2022-12-14 12:09:24,TOI-178 g / TOI 178.02; half period of TOI-178 g in report but updated to match confirmed planet period,178,2,True,False,True -251848941,178.03,,4,5,5,5,4,4,4,2.3,43.1,5.16,23,7,6,CP,CP,10.42,0.006,,3,spoc,SPOC,00:29:12.48,-30:27:14.82,149.953,0.073,-87.253,0.042,2458362.949038,0.002371278,9.96199731632015,5.3713633e-05,2.67721404815628,0.46270448,1.155231,0.121607,1063.44119428827,111.99794,2.12260721829043,1.7485949,21.8191260778243,551.225230214805,9.095952,62.699,0.20675,4111.0,171.0,4.55528,0.449348,0.660806000232697,0.0596206,,,0.68,0.0803989,"2,29",2018-11-03,2021-10-21,2022-12-14 12:09:24,TOI-178 e / TOI-178.03,178,3,True,False,True -251848941,178.04,,5,5,5,5,5,5,5,3.1,40.4,2.91,23,7,6,CP,KP,10.42,0.006,,4,spoc,SPOC,00:29:12.48,-30:27:14.82,149.953,0.073,-87.253,0.042,2458356.107512,0.0021821528,3.23842531547921,2.430697e-05,1.99410554881088,0.3307548,0.578589,0.075049,532.75806233683,69.12007,1.51483691446968,1.6900105,97.6159378723196,801.677938560369,7.2096095,62.699,0.20675,4111.0,171.0,4.55528,0.449348,0.660806000232697,0.0596206,,,0.68,0.0803989,"2,29",2021-11-18,2021-11-18,2022-12-14 12:09:24,TOI-178 c / TOI-178.04,178,4,True,False,True -207141131,179.01,,1,5,5,1,4,4,4,16.6,161.5,7.65,10,9,8,PC,CP,8.1796,0.006,,1,spoc,UNKNOWN,02:57:02.88,-56:11:30.73,-36.676,0.042,50.599,0.045,2458354.588198,0.000321959,4.13743791667062,4.197856e-06,1.84549372649326,0.11862802,1.222723,0.035281,1125.53546451849,32.49457,2.67576585302806,0.70166904,168.336175366267,918.679686423559,31.719687,38.5653,0.0366,5058.0,181.0,4.51761,0.282094,0.802632987499237,0.0479623,,,0.85,0.103514,"2,3,29,30",2018-12-20,2021-07-13,2022-12-14 12:09:24,,179,1,False,False,True -51912829,180.01,,5,5,5,5,3,5,5,76.6,188.4,72.6,4,6,2,EB,APC,9.5183,0.006,,1,spoc-s01-s36-b0A,UNKNOWN,00:57:11.67,-67:29:46.28,22.671,0.055,16.495,0.042,2458325.896392,9.1541515e-05,0.83541169422675,1.2118837e-06,1.03851746954716,0.03870001,2.46238,0.03065,2265.36566185635,28.229282,10.0508253337846,0.81025904,17113.2477990297,2917.11035773535,63.1018,264.72,2.1895,6082.0,193.0,3.77654,0.33082,2.07012009620667,0.0942464,,,1.21,0.180064,"1,2,28,29",2018-11-03,2021-12-06,2022-12-14 12:09:24,TFOP APC; retired as BEB; clear secondary,180,1,False,False,True -76923707,181.01,,2,5,5,4,4,2,4,38.5,171.5,39.81,9,5,3,PC,PC,10.4654,0.006,,1,spoc,UNKNOWN,23:28:41.41,-34:29:29.08,111.364,0.075,-2.588,0.094,2458358.118263,0.00022718913,4.53205017292082,2.9879789e-06,2.37544250794518,0.04223273,8.583563,0.101625,7874.58527881097,93.59567,7.05907990793646,0.52485925,123.902399451402,850.921856176236,86.568436,96.2338,0.57475,4983.0,180.0,4.61445,0.318565,0.805572986602783,0.0550251,,,0.76,0.0936053,"2,29",2018-11-03,2021-07-28,2022-12-14 12:09:24,TOI 181; under investigation by TFOP,181,1,False,False,True -76989773,182.01,,5,5,5,5,3,5,5,199.1,521.6,87.43,9,4,1,PC,APC,9.683,0.006,,1,qlp,UNKNOWN,23:33:10.56,-35:27:50.37,-107.298,0.451,-66.417,0.536,2458355.08255,0.00013,1.76918,3e-05,1.768,0.055,10.440533,0.02968,9570.0,27.3356,11.6236,0.680425,1670.21,1780.0,256.0,107.399,2.936,5569.0,187.0,4.32065,0.291747,0.96,0.03,,,,,"2,29",2018-11-03,2020-11-06,2022-12-14 12:09:24,v-shaped; two stars in PSF,182,1,False,False,True -183979262,183.01,,5,5,5,5,5,5,5,415.3,826.6,317.0,4,0,3,EB,FP,8.3291,0.006,,1,spoc-s28-b0A,UNKNOWN,01:26:36.07,-72:44:55.95,76.603,0.135,20.878,0.093,2459063.727306,0.00022652207,3.43075648471031,6.386977e-05,3.14433875572444,0.0143825235,10.543911,0.061193,9664.2985633534,56.35966,29.7749124123889,1.3656207,4956.24601414159,2139.97137156033,160.65495,213.024,2.7315,6270.0,196.0,3.61332,0.359293,2.72192,0.124462,,,1.34,0.220925,"1,2,27,28",2018-11-03,2021-12-06,2022-12-14 12:09:24,TFOP FP; retired as EB,183,1,False,False,True -300871545,184.01,,5,5,5,5,5,5,5,223.8,463.7,317.0,4,5,1,EB,FP,10.0433,0.006,,1,qlp,UNKNOWN,07:50:37.78,-70:32:00.46,-14.67,0.041,33.139,0.042,2459165.546503,0.00018,4.817069,1.6e-06,3.073,0.157,26.987467,0.04445,24550.0,40.939,24.7178,1.46023,804.82,1483.0,469.0,247.441,1.4185,6380.0,197.0,4.24852,0.353278,1.45,0.06,,,1.41,0.252208,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31",2018-10-19,2021-12-06,2022-12-14 12:09:24,1000 ppm secondary; TFOP FP; retired as EB,184,1,False,False,True -100100827,185.01,,4,5,5,5,5,4,5,330.4,723.4,129.66,2,5,1,KP,KP,8.8287,0.006,,1,qlp,UNKNOWN,01:37:25.07,-45:40:40.06,25.243,0.03,20.597,0.034,2459140.570626,4.71e-05,0.9414523,1e-07,2.048,0.128,11.753511,1.2e-05,10767.0,0.0108803,15.4874,0.787181,4845.66,2324.0,284.0,123.483,0.37,6400.0,,4.36583,,1.35,0.07,0.1,0.1,1.2,0.174553,"2,3,29,30",2018-12-20,2020-12-21,2022-12-14 12:09:24,WASP-18 b,185,1,False,False,True -279741379,186.01,,3,5,5,3,4,4,4,4.1,176.6,8.59,1,13,3,CP,CP,6.9934,0.006,,1,qlp-s61-ffi,SPOC,03:27:00.05,-63:30:00.6,355.084,0.045,-247.46,0.049,2459205.035045,0.000645,35.6134189,4.44e-05,3.125,0.435,1.662448,0.041399,1530.0,38.1295,2.8824,0.262723,3.36964,377.0,26.0,16.32,0.0071,4628.53,91.9226,4.32239,0.236802,0.71,0.06,0.00265487,0.0526804,0.73,0.0877794,"1,2,3,4,28,29,30,34,61",2018-12-04,2023-04-04,2023-04-07 12:13:06,GJ 143 b / TOI 186.02,186,1,True,False,True -279741379,186.02,,1,5,5,1,4,4,4,2.8,16.4,0.97,1,13,3,CP,CP,6.9934,0.006,,2,spoc,SPOC,03:27:00.05,-63:30:00.6,355.084,0.045,-247.46,0.049,2458332.283431,0.0013213124,7.78972447879921,2.524693e-05,2.49300705682846,0.11318054,0.222854,0.017975,205.234862115585,16.555597,1.00046577829146,0.5505675,42.6328168005757,651.712058226191,10.309259,16.32,0.0071,4628.53,91.9226,4.32239,0.236802,0.705464005470276,0.0635578,0.00265487,0.0526804,0.73,0.0877794,"1,2,3,4,28,29,30,34",2020-07-09,2021-10-07,2022-12-14 12:09:24,HD 21749 c / TOI 186.02,186,2,True,False,True -260304296,187.01,,5,5,5,5,3,5,5,554.0,655.2,317.0,5,1,1,PC,APC,9.109901,0.006,,1,spoc-s61-b0A,SPOC/QLP,06:18:27.73,-57:00:48.6,-8.683,0.053,6.389,0.044,2459962.995091,0.0002759067,0.51258067835787,1.0913071e-05,1.64307746680151,0.022573534,6.196784,0.071417,5691.19211094587,65.77529,19.2342562746972,4.468955,22324.2050264343,3117.55231614544,37.666416,184.529,0.7205,6725.0,201.0,4.19532,0.344818,1.55194997787476,0.0616282,,,1.45,0.24382,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,31,32,61",2018-10-19,2023-04-04,2023-04-07 12:13:06,v-shaped; very likely EB; TFOP APC previously retired as BEB due to chromaticity,187,1,False,False,True -280830734,188.01,,5,5,5,5,3,5,5,10.3,67.0,11.75,1,4,1,PC,APC,9.4668,0.006,,1,spoc,UNKNOWN,02:58:13.34,-70:45:38.83,33.499,0.048,38.324,0.045,2458325.778896,0.0005876337,1.16194613992278,6.377508e-06,0.940378692589237,0.13933818,0.351964,0.026149,324.118039449741,24.08406,3.44326902783916,0.4942112,7309.53524947081,2358.26274794879,13.7793255,210.812,1.107,6340.3,204.0,4.18,0.27,1.66088998317719,0.114533,-0.46,0.19,1.26,0.204058,"1,2,27,28,29",2018-11-03,2021-10-14,2022-12-14 12:09:24,Odd-even; see notes: Retired as a CPC. NRES spectra show this to be an SB2. Master Disp: APC Phot Disp: CPC Spec Disp: SM,188,1,False,False,True -278866211,189.01,,5,5,5,5,3,5,5,65.3,227.7,58.17,4,0,1,PC,APC,10.2638,0.006,,1,qlp-s62-ffi,SPOC,06:43:13.87,-55:14:39.76,-11.0,0.049,41.214,0.056,2460012.396882,0.0005714,2.19406,1.2e-06,1.506,0.235,7.019124,0.430147,6444.0,396.102,8.81525,0.492295,1313.07,1677.0,42.0,181.879,0.811,6054.0,193.0,4.39416,0.333298,1.04,0.05,,,1.21,0.182247,"1,2,3,5,6,8,9,11,12,13,28,29,30,32,33,34,35,36,38,39,61,62",2018-10-19,2023-04-04,2023-04-07 12:13:06,TFOP APC/BEB; v-shaped,189,1,False,False,True -166739520,190.01,,3,5,5,3,5,4,5,49.4,193.1,94.92,2,4,3,KP,KP,9.6411,0.006,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,02:27:06.19,-50:17:03.93,59.958,0.038,24.743,0.036,2459139.178447,0.0002471,10.0205997788334,4.6462865e-06,5.75916940180131,0.02481623,8.959603,0.039675,8218.14428647495,36.541595,11.7679183139727,0.5424184,211.791653405817,972.964421730922,216.54204,157.963,0.634,6038.0,,4.35513,,1.27526998519897,0.0584674,-0.36,0.09,1.1,0.135624,"2,3,29,30",2018-12-20,2021-12-09,2022-12-14 12:09:24,WASP-117 b,190,1,False,False,True -183532609,191.01,,3,5,5,3,5,4,5,111.4,416.3,108.7,1,1,5,KP,KP,9.1468,0.006,,1,spoc,UNKNOWN,23:59:36.21,-35:01:52.81,109.747,0.06,7.614,0.06,2458358.92039,0.00017,8.15845452720902,0.00024581153,4.42695489554957,0.026576595,16.068966,0.167641,14691.0822531122,154.39099,12.745237105956,0.74736714,138.817226162184,875.448474115731,66.91027,89.9606,0.3633,5600.0,,4.50501,,0.996641,0.0580502,0.24,0.1,0.99,0.124742,"2,29",2018-11-03,2020-11-06,2022-12-14 12:09:24,WASP-8,191,1,False,False,True -183537452,192.01,,3,5,5,3,5,4,5,50.7,263.9,37.23,1,1,2,KP,KP,10.2499,0.006,,1,spoc,UNKNOWN,23:51:31.01,-39:54:25.64,-56.853,0.041,-88.865,0.048,2459089.961932,0.00027864237,3.92271521338284,1.373883e-06,2.61059327831785,0.020824494,12.458091,0.064221,11408.7467870051,59.14753,6.78569574598283,0.44896454,121.772299822126,847.240829294475,202.84079,87.5953,0.3106,4800.0,,4.53527,,0.635603010654449,0.041613,0.17,0.05,0.88,0.111364,"2,29",2018-11-03,2021-12-02,2022-12-14 12:09:24,WASP-29 b,192,1,False,False,True -183985250,193.01,,1,5,5,1,4,4,4,59.0,242.5,18.6,12,9,2,CP,CP,9.1031,0.006,,1,spoc,UNKNOWN,23:54:40.53,-37:37:41.61,247.615,0.076,-69.801,0.062,2458354.212468,0.00014622588,0.79206923985255,2.4293756e-06,0.733476558409986,0.027522655,1.6611,0.035197,1528.75946529197,32.417496,4.51111642982885,0.11486752,2681.59359079081,1835.3461676381,42.514362,80.4373,0.3162,5422.0,185.0,4.42223,0.273742,0.980172991752625,,,,0.93,,"2,29",2018-11-03,2021-12-02,2022-12-14 12:09:24,LTT 9779 b,193,1,False,False,True -211438925,194.01,,3,5,5,3,5,4,5,91.6,116.5,317.0,1,1,1,KP,KP,10.248,0.006,,1,spoc,UNKNOWN,00:20:38.53,-23:56:08.84,-1.4,1.9,-18.3,1.9,2458356.56518,0.00020920642,4.8996421874255,2.3958178e-06,3.34753586960128,0.023263603,11.197673,0.067297,10260.436547272,61.98125,16.2403328395152,0.086546086,410.15834892136,1147.77731933719,144.4055,211.877,,5940.0,,4.23158,,1.50370001792908,,0.04,0.1,,,"2,29",2018-11-03,2021-10-07,2022-12-14 12:09:24,WASP-20 b,194,1,False,False,True -230982885,195.01,,3,5,5,3,5,4,5,163.9,385.9,117.38,1,0,1,KP,KP,9.9696,0.006,,1,spoc,UNKNOWN,01:38:25.23,-55:46:19.2,96.163,0.039,20.946,0.035,2458355.490424,6.195358e-05,2.072759475881,4.503637e-07,2.58986626683628,0.009328421,14.772808,0.040841,13514.1123366022,37.615154,13.3344441569271,0.6327768,1176.48153059605,1493.70910398266,354.0005,151.068,0.509,5640.0,,4.43703,,1.12804996967316,0.053397,,,1.01,0.127695,"2,29",2018-11-03,2021-12-02,2022-12-14 12:09:24,WASP-97 b,195,1,False,False,True -234519192,196.01,,3,5,5,3,3,4,4,63.0,144.2,93.5,3,8,1,PC,PC,8.0674,0.006,,1,spoc,QLP,00:58:12.41,-64:45:41.55,-0.261,0.051,15.617,0.045,2458354.312708,0.0008175625,1.16301607791836,4.4499434e-06,1.93580751161068,0.08206973,0.476323,0.053866,438.61318164565,49.611492,11.6644896281261,2.5122225,49142.2008338392,3797.37424182718,20.465973,292.32,2.5715,6495.0,198.0,3.32048,0.371256,4.05956983566284,0.175,,,1.4,0.241305,"2,28,29",2018-11-03,2021-07-01,2022-12-14 12:09:24,V-shaped; TFOP work in progress. Fast rotator.,196,1,False,False,True -441462736,197.01,,4,5,5,5,4,5,4,28.5,92.4,53.04,3,40,3,CP,CP,7.3566,0.006,,1,spoc,UNKNOWN,23:32:07.96,-21:48:04.32,-96.775,0.101,51.24,0.091,2458357.014054,0.0022052974,14.278121996244,0.003338778,8.69727177107409,0.21654366,0.899282,0.048272,827.926442565635,44.459335,8.35660775348319,0.8052116,91.6541814065455,789.146837277359,14.3883705,95.5483,0.7309,5105.0,181.0,3.39182,0.291381,2.90323996543884,,,,,,"2,29",2018-10-22,2021-12-02,2022-12-14 12:09:24,HD 221416 b; evolved star,197,1,False,False,True -12421862,198.01,,1,4,1,4,4,1,4,1.7,9.5,2.79,15,7,8,PC,PC,9.92801,0.007,,1,spoc,QLP,00:09:05.16,-27:07:18.28,692.255,0.105,90.142,0.066,2458356.3672,0.001527935,10.2150167926657,5.243623e-05,1.96830655357312,0.38846454,1.079877,0.094225,994.108904500983,86.780266,1.47777541287631,0.58433956,7.41950339524889,420.933469551773,11.117827,23.7262,0.02655,3763.0,65.0,4.83739,0.119367,0.447335988283157,0.0133167,,,0.4437,0.0202915,"2,29",2018-11-03,2021-07-15,2022-12-14 12:09:24,period updated to half alerted period (~10.2 days) from spoc-s01-s36 multisector,198,1,False,False,True -309792357,199.01,,1,4,1,3,3,4,4,2.9,101.5,72.13,12,2,1,PC,PC,10.0391,0.006,,1,qlp-s62-ffi,SPOC,05:20:25.41,-59:53:43.56,45.702,0.037,58.455,0.038,2460038.970389,0.0036584,104.872393,0.0004828,6.285,0.747,13.440663,0.441145,12303.0,406.227,10.0307,0.614204,2.33549,344.0,192.0,102.27,0.1905,5350.0,184.0,4.52347,0.275691,0.88,0.05,,,0.88,0.106682,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,29,30,31,32,33,34,35,36,37,39,61,62,63",2018-12-04,2023-05-11,2023-05-11 00:00:00,correct period is 104.871 days,199,1,False,False,True -410214986,200.01,,3,5,5,3,4,4,4,59.3,356.8,34.57,9,59,5,CP,CP,7.8541,0.006,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,23:39:39.71,-69:11:45.75,79.464,0.074,-67.44,0.045,2459040.333471,0.00066599186,8.13822434277847,6.450328e-06,3.29256462919912,0.038983803,4.581986,0.125922,4211.27241779598,115.97137,6.49557696471008,0.49724367,115.827515235742,836.705617019718,36.39291,44.0622,0.0692,5414.0,161.0,4.438,,0.951985001564026,0.0705779,,,0.94,0.124858,"1,27,28",2018-11-09,2021-12-09,2022-12-14 12:09:24,DS Tuc A b; epoch from qlp-s28-tois,200,1,False,False,True -350618622,201.01,,3,5,5,3,4,4,4,19.0,172.1,97.32,8,3,1,CP,CP,8.5822,0.006,,1,qlp-s64-ffi,SPOC,05:49:36.43,-54:54:37.52,7.731,0.052,66.448,0.058,2459965.395231,0.0026652,52.9780564,0.0001945,4.802,0.334,7.345914,0.179407,6743.0,165.226,11.6494,0.576214,19.4336,584.0,271.0,113.825,0.346,6461.8,83.0,4.35,0.16,1.33,0.06,0.18,0.12,1.31,0.212157,"1,2,3,4,5,6,7,8,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,64,65",2019-05-07,2023-07-06,2023-07-06 00:00:00,TOI 201 b,201,1,True,False,True -350618622,201.02,,2,4,4,2,3,4,4,1.2,3.3,2.21,8,3,1,PC,PC,8.5822,0.006,,2,qlp-s61-ffi,SPOC,05:49:36.43,-54:54:37.52,7.731,0.052,66.448,0.058,2459976.734425,0.0077312,5.8492655,4.79e-05,3.237,1.375,0.122695,0.01226,113.0,11.292,1.28883,0.112167,1526.89,1741.0,13.0,113.825,0.346,6461.8,83.0,4.35,0.16,1.33,0.06,0.18,0.12,1.31,0.212157,"1,2,3,4,5,6,7,8,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61",2020-03-11,2023-04-04,2023-04-07 12:13:06,TOI 201.02; interior to TOI-201 b,201,2,True,False,True -355509914,202.01,,3,4,4,3,1,4,4,20.6,50.7,67.5,5,0,0,PC,PC,14.6723,0.006,,1,spoc,SPOC,01:02:06.01,-59:05:15.81,17.866,0.055,7.733,0.05,2458326.110605,0.0008869128,1.73867356638476,7.017419e-06,1.29881378588748,0.19920821,14.917639,1.117213,13645.694673106,1028.4617,9.62985236284059,1.7555727,418.920171370759,1153.858537255,14.560348,627.339,11.7195,4746.0,178.0,4.52746,0.265458,0.820258021354675,,,,0.73,,"1,2,28,29",2018-11-14,2021-07-06,2022-12-14 12:09:24,,202,1,False,False,True -259962054,203.01,,5,5,5,5,5,5,5,0.0,6.5,0.29,2,1,3,V,FA,12.2423,0.007,,1,qlp-s28-tois,UNKNOWN,02:52:04.34,-67:41:13.26,-55.699,0.098,149.273,0.09,2459106.86029,0.03502,51.94509,0.00219,8.094,3.492,2.754747,0.027905,2534.0,25.7015,0.705818,0.131354,4.34593,402.0,8.0,24.7894,0.0285,3203.0,63.0,5.01682,0.423075,0.23,0.01,,,0.202161,0.0200851,"1,2,3,27,28,29,30",2018-10-22,2022-10-03,2022-12-14 12:09:24,M dwarf; first transit is on/near momentum dump; the transit duration is a bit long for the reported period;,203,1,False,False,True -281781375,204.01,,1,4,1,2,3,4,4,0.9,28.4,6.87,3,4,1,PC,PC,9.2182,0.006,,1,spoc,UNKNOWN,00:51:54.24,-59:20:37.13,88.887,0.042,-148.96,0.042,2458328.03641,0.0042115836,43.8279601161708,0.0061455555,4.28189272086418,0.79843336,0.621697,0.068879,572.440297770624,63.437958,2.51059944411027,1.9257842,15.657818687129,507.344041891591,9.244702,95.3428,0.21455,5605.0,187.0,4.39973,0.270707,1.03654003143311,0.0544523,,,0.98,0.121443,"1,2,28,29",2018-11-14,2021-07-13,2022-12-14 12:09:24,Only two events; first event is on/near momentum dump.,204,1,False,False,True -281575427,205.01,,1,5,5,1,3,4,4,4.6,43.6,8.95,5,11,1,PC,PC,9.4525,0.006,,1,spoc,UNKNOWN,00:31:54.11,-56:57:54.29,31.34,0.049,4.687,0.039,2458326.331428,0.0022334878,4.25298788154454,2.4323292e-05,3.109,0.442,0.330564,0.024007,304.414502932373,22.111341,2.9336559183942,0.24987929,951.551962909896,1416.53685043042,11.492883,177.759,0.9185,6222.5,83.0,4.06,0.16,1.45381999015808,0.0723015,0.13,0.12,1.2,0.176842,"1,2,28,29",2018-11-14,2021-07-01,2022-12-14 12:09:24,TFOP work in progress.,205,1,False,False,True -55650590,206.01,,1,5,5,1,4,4,4,8.4,11.2,2.77,7,0,3,PC,CP,12.4312,0.008,,1,spoc,UNKNOWN,04:54:57.17,-62:31:18.75,105.973,0.074,111.015,0.083,2458325.543666,0.00029881854,0.736309522366449,4.9150412e-06,0.689438495654518,0.06280853,1.383503,0.082078,1273.44213786043,75.5935,1.47069577071824,0.105002075,117.758955583244,840.172061798258,26.83226,47.7465,0.10975,3358.0,,4.438,,0.351675987243652,0.0105659,,,0.336144,0.0202765,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-05-17,2021-11-09,2022-12-14 12:09:24,potential L1 planet; 2 stars in pixel; slight depth aperture in QLP,206,1,False,False,True -260271203,207.01,,5,5,5,5,5,5,5,74.9,184.5,317.0,3,1,1,PC,FP,13.4734,0.006,,1,spoc,UNKNOWN,06:16:52.34,-58:13:47.27,0.243,0.031,2.663,0.032,2458414.835781,0.00103,5.649621,0.000499,4.153365,0.074243,52.76822,0.818382,47439.1858,753.47375,27.681535,27.683432,405.088154157189,1144.21367902083,71.43821,969.506,15.7155,5963.0,190.0,4.31132,,1.21025,1.21025,,,1.18,,4,2019-01-31,2019-01-31,2022-12-14 12:09:24,follow-up in progress,207,1,False,False,True -314865962,208.01,,1,4,1,2,3,4,4,0.7,17.4,4.8,3,4,3,PC,PC,10.3539,0.006,,1,qlp-s63-ffi,SPOC,03:33:07.58,-72:44:38.58,18.57,0.05,44.709,0.045,2459998.274147,0.0086607,22.464083,0.0001866,5.216,0.708,0.587542,0.034102,541.0,31.409,2.03786,0.139215,38.457,693.0,14.0,148.372,0.539,5493.0,186.0,4.43001,0.290559,0.98,0.05,,,0.98,0.12389,"1,2,3,6,9,13,27,28,29,30,33,36,39,62,63",2019-05-17,2023-05-10,2023-06-16 12:14:51,weak transit shape,208,1,False,False,True -52204645,209.01,,1,4,4,1,3,4,4,5.2,52.6,7.67,10,3,3,PC,PC,10.8545,0.006,,1,spoc,SPOC,01:17:34.6,-66:54:11.04,-12.619,0.058,-138.402,0.033,2458325.88429,0.0013492622,4.37944252465364,1.6852964e-05,1.74944702459615,0.18729724,1.050093,0.076035,966.703612998907,70.028534,2.67863565882339,0.33260825,120.935486271172,845.781513418925,13.631696,113.387,0.2725,4892.0,179.0,4.50955,2.00346,0.742779016494751,0.0504774,,,0.81,0.102194,"1,2,28,29",2018-11-14,2021-07-07,2022-12-14 12:09:24,faint neighbors,209,1,False,False,True -141608198,210.01,,1,5,5,1,3,4,4,1.3,55.6,5.28,3,0,1,PC,PC,12.5395,0.008,,1,spoc-s01-s39-b0A-PC,SPOC,05:55:50.84,-73:59:07.04,80.456,0.078,-139.153,0.114,2459338.99312,0.004372806,9.01054136695366,9.414113e-06,1.84432641885461,0.11363892,4.488002,0.11121,4125.07129998765,102.422775,2.15136821632899,0.2008962,3.35682045785421,345.224674327974,37.48086,42.8091,0.09895,3275.0,,4.438,,0.330146014690399,0.00996591,,,0.311261,0.0202744,"1,2,3,4,5,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,37,38,39",2019-05-07,2022-03-21,2022-12-14 12:09:24,,210,1,False,False,True -300293197,211.01,,5,5,5,5,3,5,5,22.6,126.7,30.9,3,2,2,EB,APC,9.4906,0.006,,1,spoc,UNKNOWN,07:21:07.13,-68:34:42.12,5.8,1.6,9.3,1.6,2459175.996679,0.0015858867,6.56271654557829,0.00085051206,1.82230884729989,0.10879399,2.199406,0.288742,2023.67725185531,265.90558,6.08144040957154,0.7570405,239.626529931552,1003.46787660259,19.276176,121.321,,5873.97,102.627,4.35182,0.109989,1.08871,,-0.560044,0.0457657,,,"1,2,3,4,5,6,7,8,9,10,11,12,13,28,29,32",2018-12-04,2021-02-02,2022-12-14 12:09:24,TFOPWG FP Retired as BEB due to simultaneous B & Z chromaticity,211,1,False,False,True -206609630,212.01,,3,5,5,3,4,4,4,189.0,529.1,18.41,14,0,9,PC,APC,12.5595,0.008,,1,spoc,UNKNOWN,01:30:12.01,-59:34:59.69,-116.97,2.0,-16.69,2.0,2458325.489663,5.2379335e-05,0.335272350659441,9.664593e-07,0.718628379230175,0.0076445313,20.807279,0.244812,18981.7461867867,225.45465,4.4688,0.776006,11198.4790201491,2823.7,114.26064,,,3332.0,63.0,4.94964,0.399131,0.3,0.05,,,,,"1,2,28,29",2018-10-22,2021-07-07,2022-12-14 12:09:24,V-shaped; possible EB; Possible M dwarf; Gaia give this source duplication flag; no radius/parallax available,212,1,False,False,True -234345288,213.01,,1,4,1,1,3,4,4,1.5,51.0,6.61,6,4,3,PC,PC,9.7806,0.006,,1,spoc,UNKNOWN,02:35:32.95,-71:37:27.29,50.866,0.044,-19.872,0.036,2458343.335721,0.0015435006,23.5199156406372,9.151489e-05,3.46100519807899,0.29532334,1.499205,0.072655,1379.86565825777,66.91541,2.45537293828629,0.86638814,8.47706792446775,435.19226261011,16.351109,54.3256,0.0575,4566.4,64.0,4.93,0.12,0.67206197977066,0.0515351,-0.08,0.08,0.72,0.0812661,"1,2,13,27,29",2018-11-14,2021-07-07,2022-12-14 12:09:24,outer candidate to TOI 213.01; near 3:1 resonance,213,1,True,False,True -234345288,213.02,,1,4,1,1,3,4,4,1.2,4.6,1.99,6,4,3,PC,PC,9.7806,0.006,,2,spoc,SPOC,02:35:32.95,-71:37:27.29,50.866,0.044,-19.872,0.036,2458328.444889,0.0026610137,7.75653131511068,4.979646e-05,2.42291456452764,0.34226787,0.343407,0.04138,316.239302005689,38.111996,1.22067151885698,1.1213404,37.2051684985677,629.89849181322,8.299505,54.3256,0.0575,4566.4,64.0,4.93,0.12,0.67206197977066,0.0515351,-0.08,0.08,0.72,0.0812661,"1,2,13,27,29",2021-07-01,2021-07-01,2022-12-14 12:09:24,Possible multi with a 3:1 MMR.,213,2,True,False,True -167415965,214.01,,1,5,5,1,3,4,4,1.7,53.3,3.01,3,10,3,PC,PC,8.0089,0.006,,1,qlp-s63-ffi,QLP,06:37:50.1,-70:55:52.78,-149.853,0.043,298.759,0.058,2460006.520816,0.0033001,18.5537756,5.95e-05,3.456,0.328,0.487605,0.016089,449.0,14.8183,1.5494,0.102959,21.1263,597.0,36.0,38.96,0.03765,5346.2,141.5,4.6,0.09,0.8,0.05,-0.36,0.00894427,0.92,0.122582,"1,2,3,4,5,6,7,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,62,63",2019-05-07,2023-05-11,2023-06-16 12:14:51,L1 candidate; possible multi,214,1,True,False,True -167415965,214.02,,1,4,1,2,3,4,4,0.8,9.7,0.38,3,10,3,PC,PC,8.0089,0.006,,2,qlp-s63-ffi,SPOC,06:37:50.1,-70:55:52.78,-149.853,0.043,298.759,0.058,2460038.97275,0.0064341,9.6960161,6.05e-05,2.717,0.878,0.135726,0.011073,125.0,10.1988,0.773179,0.0699091,65.3892,792.0,11.0,38.96,0.03765,5346.2,141.5,4.6,0.09,0.8,0.05,-0.36,0.00894427,0.92,0.122582,"1,2,3,4,5,6,7,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,62,63",2020-03-11,2023-05-11,2023-06-16 12:14:51,inner candidate in possible multi,214,2,True,False,True -231912935,215.01,,1,4,1,2,3,4,4,1.7,33.0,12.17,4,4,1,PC,PC,10.5011,0.006,,1,spoc,SPOC,00:29:16.32,-63:47:26.24,-12.474,0.042,-5.862,0.039,2458334.39996,0.0040778467,26.2851255450337,0.00020986007,3.15738903198196,0.36397785,1.078861,0.112934,993.173979778303,104.010254,3.51598243328362,0.37681097,29.1145095134106,592.443745686453,9.491671,166.485,0.6845,5821.0,190.0,4.44094,0.328731,0.964450001716614,0.0476683,,,1.02,0.127333,"1,2,28,29",2018-11-14,2021-07-13,2022-12-14 12:09:24,weak signal,215,1,False,False,True -55652896,216.01,,1,4,3,1,4,4,4,3.5,55.9,42.19,27,8,4,CP,CP,11.5748,0.006,,1,spoc-s01-s39-b0A-CP,UNKNOWN,04:55:55.2,-63:15:37.19,-22.699,0.045,-56.352,0.054,2458331.263986,0.0012559753,34.5547864378476,6.754315e-05,5.77166895048593,0.09008846,7.774159,0.11265,7134.69163456042,103.74933,7.30400237631379,0.48746565,9.56339340122547,448.510644803058,115.85556,177.945,0.879,5025.77,125.0,4.66348,0.2,0.801735997200012,0.0521859,0.316325,0.1,0.84,0.100203,"1,2,3,4,5,6,7,8,9,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-05-07,2022-03-30,2022-12-14 12:09:24,TOI-216.01/TOI-216 c; clear TTVs in spoc-s1-s39 multisector,216,1,True,False,True -55652896,216.02,,1,4,3,1,4,4,4,6.0,60.2,34.46,27,8,4,CP,CP,11.5748,0.006,,2,spoc-s01-s39-b0A-CP,SPOC,04:55:55.2,-63:15:37.19,-22.699,0.045,-56.352,0.054,2459340.904719,0.0015490873,17.3890453870803,4.7948437e-05,2.65165405135838,0.1328006,3.231344,0.176876,2971.75322676983,162.89523,6.48401246350199,3.0092702,23.8921546707283,563.875959308602,30.600433,177.945,0.879,5025.77,125.0,4.66348,0.2,0.801735997200012,0.0521859,0.316325,0.1,0.84,0.100203,"1,2,3,4,5,6,7,8,9,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-05-07,2022-03-30,2022-12-14 12:09:24,TOI-216.02 / TOI-216b. Apparent TTVs. Possible additional single around 2046P,216,2,True,False,True -260043723,217.01,,5,5,5,5,5,5,5,36.0,155.7,35.75,3,5,1,EB,FP,8.735,0.006,,1,qlp-s39-ffi,UNKNOWN,06:06:26.09,-58:57:13.33,17.646,0.073,-11.08,0.075,2459387.91658,0.0042727,3.138604,4.24e-05,3.327,0.157,0.347491,0.043228,320.0,39.8133,6.6202,1.11377,20492.9,3333.0,61.0,142.018,0.679,6278.0,196.0,4.08153,0.29837,1.55,0.07,,,1.26,0.202301,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2018-10-22,2022-10-03,2022-12-14 12:09:24,TFOP FP; retired as NEB,217,1,False,False,True -32090583,218.01,,1,4,4,1,3,4,4,1.0,18.3,0.05,9,0,2,PC,PC,13.3292,0.008,,1,spoc-s01-s39-b0A-PC,UNKNOWN,03:53:41.28,-68:44:19.06,139.087,0.075,190.94,0.101,2458325.540192,0.0030016976,0.438446154103891,6.5694076e-05,0.528132706867941,0.7551207,0.22027,0.182363,202.855512256981,167.94867,0.438952249641439,1.8726066,155.72872381371,900.97332011923,19.743402,52.3428,0.13665,3146.0,,4.438,,0.284538000822067,0.0085297,,,0.259077,0.0201625,"1,2,3,4,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,36,37,38,39",2019-06-06,2022-03-21,2023-03-27 00:00:00,Bad transit shape; likely SV,218,1,False,False,True -260609205,219.01,,5,5,5,5,3,5,5,43.6,74.0,317.0,1,3,1,PC,APC,12.7222,0.006,,1,qlp-s35-tois,SPOC,06:29:48.94,-57:15:17.34,-4.207,0.041,5.827,0.04,2459966.224637,0.0012173376,4.4617589,6.3e-06,4.639,0.062,13.338437,0.0008,12210.0,0.736596,24.4069,1.25432,945.631,1544.0,42.0,1131.15,26.02,6354.0,191.0,4.24472,,2.24,0.11,-0.194636,0.1,1.19,0.164174,"1,2,3,4,5,6,7,8,9,10,11,12,13,28,29,30,31,32,33,34,35,61",2018-10-22,2023-07-12,2023-07-12 00:00:00,TFOP APC; HATS and Feros notes this is a SB1; clear secondary in SPOC s61,219,1,False,False,True -150098860,220.01,,1,5,5,1,4,4,4,3.8,52.6,8.0,9,6,3,CP,CP,9.6878,0.006,,1,qlp-s63-ffi,QLP,06:07:11.93,-61:59:49.96,-17.815,0.046,-68.361,0.042,2460025.758937,0.001743,10.6952968,1.74e-05,1.886,0.453,0.948262,0.036781,873.0,33.8763,2.74102,0.154194,23.0412,610.0,28.0,90.7402,0.1712,5272.71,45.6,3.98846,0.066564,0.88,0.05,-0.100718,0.0668965,0.9,0.113456,"1,2,4,5,6,7,8,9,10,11,12,27,28,29,30,31,32,34,35,36,37,38,39,61,62,63",2019-05-07,2023-05-11,2023-06-16 12:14:51,TOI 220 b (Hoyer et al 2021),220,1,False,False,True -316937670,221.01,,5,5,5,5,5,5,5,6.7,8.9,2.12,13,0,1,EB,FP,12.1535,0.007,,1,spoc-s01s02,SPOC,23:45:58.19,-56:20:38.57,269.66,0.042,145.156,0.039,2458325.342966,0.001421,0.62425,3.3e-05,0.774288,0.553938,1.036352,0.153526,954.060325,141.39258,1.671618,2.989466,353.894098980242,1106.21127282771,7.4479375,50.1632,0.08,3765.0,73.0,4.75169,0.35062,0.525,0.079,,,0.385618,0.0202788,"1,2",2018-11-14,2022-10-03,2022-12-14 12:09:24,TFOP FP; event is on event is on the dT= 0.24 fainter neighbor ~8,221,1,False,False,True -144440290,222.01,,5,5,5,5,5,5,5,,,56.57,0,1,1,EB,FP,8.7635,0.006,,1,spoc-s02,SPOC,23:56:39,-44:43:09.85,161.769,0.049,-75.541,0.055,2458376.544,0.0,0.0,0.0,0.68,,6.020784,,5530.0,,8.85869,,86.1510668051854,777.024861283674,20.308218,84.0311,0.32705,5709.0,80.0,4.438,,1.0929,0.107376,,,1.02,0.128162,2,2018-11-16,2022-10-03,2022-12-14 12:09:24,SB1 / EBLM (Lendl et al. 2020),222,1,False,True,True -326453034,223.01,,5,5,5,5,5,5,5,11.8,34.4,76.37,6,2,3,IS,FA,10.2733,0.007,,1,spoc,SPOC,22:38:42.62,-25:37:54.66,-20.712,0.076,-26.846,0.074,2458355.95751,0.002649,14.445918,0.003833,1.533311,0.535725,1.3839,0.175393,1273.806981,161.52963,3.290507,4.043106,37.109941637127,629.495047091996,7.6791534,365.053,7.9035,5063.0,181.0,4.48439,2.00352,0.87237,0.87237,,,,,2,2018-11-29,2021-08-03,2022-12-14 12:09:24,TFOP FA;,223,1,False,False,True -70797900,224.01,,5,5,5,5,3,5,5,0.0,100.9,317.0,1,1,3,PC,APC,11.1427,0.006,,1,spoc,SPOC,00:07:54.71,-29:58:46.57,115.36,2.0,-142.31,2.0,2458365.843684,9.620293e-05,705.584465845,4.2444844e-06,1.91892122277687,0.008591645,115.848195,0.662714,101204.845993947,610.19586,17.1795470139265,2.6196158,16.7207290419558,515.743249046554,261.3266,64.77016,,3689.0,66.0,4.78104,0.354228,0.486999988555908,0.074,,,0.522,0.095,"2,29",2018-11-16,2018-11-16,2022-12-14 12:09:24,actual period likely shorter than 705.58 days; previous single now duotransit,224,1,False,False,True -47525799,225.01,,3,5,5,3,3,4,4,,,26.24,1,3,3,PC,PC,11.0316,0.006,,1,spoc-s01s36-review-singles,SPOC,22:55:31.29,-24:24:35.04,141.693,0.067,-18.585,0.06,2458355.118626,0.0034238277,0.0,0.0,4.81205289402037,0.2515047,4.46567,0.26575,4104.58734736124,244.73444,5.52373670754544,0.45416924,3.10638553968698,338.597376287709,22.755503,115.742,0.5165,4658.0,177.0,4.53096,0.422031,0.710767984390259,0.048314,,,0.796,0.098603,"2,29",2018-11-16,2022-10-03,2022-12-14 12:09:24,single transit (no period); centroid information is hard to interpret; still single as of spoc-s01-s36,225,1,False,True,True -47484268,226.01,,5,5,5,5,5,5,5,,,21.42,1,0,3,EB,FP,12.4253,0.008,,1,spoc-s02,SPOC,22:51:52.13,-24:47:16.01,158.71,0.114,-71.085,0.094,2458358.500535,0.002621,0.0,0.0,2.67,,14.647222,,13400.0,,4.214299,,1.30250490343895,272.467427452943,16.452566,51.3563,0.20135,3396.0,64.0,4.91468,0.392296,0.334,0.056,,,0.378406,0.0202633,2,2018-11-16,2022-10-03,2022-12-14 12:09:24,The second event is not real. Single transit (no period). Retired as TFOP FP/NEB,226,1,False,True,True -2760710,227.01,,3,5,5,3,3,4,4,,,19.13,0,2,2,PC,PC,13.8409,0.008,,1,spoc-s02,SPOC,23:46:06.57,-16:41:29.27,-76.094,0.107,-49.799,0.1,2458364.102069,0.002061,0.0,0.0,1.51,,33.518483,,30400.0,,2.432614,,0.290998187392869,187.323524526732,11.973635,52.3436,0.23985,2808.0,80.0,5.20628,0.340459,0.128,0.019,,,0.211546,0.0201846,2,2018-11-16,2022-10-03,2022-12-14 12:09:24,The second event is not real. single transit (no period).,227,1,False,True,True -77044471,228.01,,4,5,5,5,5,4,5,32.1,79.0,123.63,0,0,0,KP,KP,13.2576,0.007,,1,qlp-s29-tois,UNKNOWN,23:54:14.12,-30:00:46.94,20.321,0.048,-2.07,0.033,2459089.518331,0.0017880236,2.68650414920873,5.3006534e-06,2.55247723890796,0.08744798,13.382865,0.369645,12250.4189723593,340.39734,13.7470239341699,0.3625193,994.810565295241,1432.36878094116,28.169575,757.044,13.4985,5738.0,,4.23836,,1.18273997306824,,,,1.06,,"2,29",2018-11-29,2021-12-08,2022-12-14 12:09:24,HATS-16 b; epoch kept from qlp-s29-tois,228,1,False,False,True -120610833,229.01,,5,5,5,5,5,5,5,62.6,190.8,83.66,1,0,1,KP,KP,11.5005,0.006,,1,spoc,UNKNOWN,00:20:57.06,-35:59:54.47,52.895,0.049,-46.888,0.036,2458354.773243,0.0002791632,3.12607775197458,2.3116334e-06,1.71853668165123,0.027001472,12.430641,0.23468,11383.7527081096,216.12529,10.9257114861701,0.7295448,328.156453467404,1085.52539260986,70.762856,211.196,1.7515,5100.0,,4.4651,,0.874705970287323,0.0567763,0.43,0.06,0.91,0.110215,"2,29",2018-11-29,2021-12-01,2022-12-14 12:09:24,WASP-45 b,229,1,False,False,True -160074939,230.01,,1,4,1,5,5,5,5,4.6,53.1,12.82,1,7,3,V,FA,8.7435,0.006,,1,spoc-s02,SPOC,23:05:16.6,-36:56:44.3,14.666,0.048,-24.892,0.072,2458366.329788,0.002965,13.340145,0.004364,4.611198,0.546755,0.640658,0.085844,589.893526,79.06242,3.929267,1.571116,268.218640827511,1032.14803222167,7.7575736,140.941,0.852,6467.0,198.0,4.16063,0.321775,1.57943,0.198661,,,1.36,0.22926,2,2018-11-29,2023-05-25,2023-05-25 00:00:00,The transit signal maybe caused by scattered light.,230,1,False,False,True -204376737,231.01,,4,5,5,5,5,4,5,87.6,258.4,108.44,1,0,2,KP,KP,11.4779,0.007,,1,spoc,UNKNOWN,23:12:37.71,-22:40:26.85,-23.305,0.065,-36.895,0.064,2458357.394514,0.000118928445,3.36100112740939,1.0768011e-06,2.57646496039929,0.01659431,26.422029,0.134052,24041.8651592398,123.458565,12.7273456479534,0.63978773,273.027309499187,1036.74338242009,213.4312,197.119,1.6195,5375.0,,4.49371,,0.817704975605011,0.0408442,-0.143,0.0284605,0.93,0.118851,"2,29",2018-11-29,2021-12-02,2022-12-14 12:09:24,WASP-6 b,231,1,False,False,True -402026209,232.01,,4,5,5,5,5,4,5,154.3,140.1,317.0,1,1,7,KP,KP,11.8295,0.006,,1,spoc,UNKNOWN,23:34:15.1,-42:03:42.41,9.874,0.053,-87.518,0.048,2459109.94701,9e-05,1.33823071236889,3.2158715e-07,2.15338979191893,0.008862076,29.962116,0.099151,27218.8341043264,91.3169,14.8378200324278,0.9224437,1188.62261907467,1497.54798524974,321.36127,267.206,3.7205,5436.0,,4.46024,,0.894973993301392,0.0555528,-0.01,0.1,0.97,0.122722,"2,28,29",2018-11-29,2021-10-07,2022-12-14 12:09:24,WASP-4 b,232,1,False,False,True -415969908,233.01,,2,4,2,4,4,3,4,1.5,63.1,4.74,35,3,6,PC,PC,11.3018,0.007,,1,spoc-s01-s46-b0A,SPOC,22:54:50.07,-18:54:44.8,-317.835,0.074,-143.221,0.065,2458365.260992,0.0014199405,11.6700392254215,2.6190877e-05,2.08890538930429,0.1892955,3.113199,0.17891,2863.25555434405,164.76889,2.01782598685838,0.7119288,4.02103459882977,361.163790221074,15.251277,33.773,0.04565,3644.0,64.0,4.79912,0.357198,0.380272001028061,0.0114291,,,0.36905,0.0203196,"2,29,42",2018-11-29,2022-07-15,2022-12-14 12:09:24,possible multi,233,1,True,False,True -415969908,233.02,TIC 415969908.02,1,4,1,1,4,4,4,2.0,59.6,3.56,35,3,6,PC,PC,11.3018,0.007,,2,spoc-s01-s46-b0A,SPOC,22:54:50.07,-18:54:44.8,-317.835,0.074,-143.221,0.065,2458359.46257,0.0012376771,7.20153266144016,1.8911096e-05,1.41935829298927,0.47855252,2.159558,0.193972,1987.04990888636,178.6387,1.70560024252293,1.2801327,7.65362246534047,424.215476323063,10.754923,33.773,0.04565,3644.0,64.0,4.79912,0.357198,0.380272001028061,0.0114291,,,0.36905,0.0203196,"2,29,42",2022-04-20,2022-04-20,2022-12-14 12:09:24,potential multi,233,2,True,False,True -12423815,234.01,,3,4,4,3,3,4,4,36.4,102.8,86.71,3,1,2,PC,PC,14.6253,0.007,,1,spoc,SPOC,00:10:16.52,-26:16:56.67,23.082,0.111,-2.757,0.069,2458356.088013,0.0006289749,2.83928091754337,4.772701e-06,1.56589586790732,0.07390611,39.748882,1.561143,35948.0283280034,1436.8329,11.1582056506017,0.5014495,45.559433449559,662.619676730517,24.523106,249.345,4.101,3642.0,,4.438,,0.549329996109009,0.0174061,,,0.544652,0.0210075,"2,29",2018-11-29,2021-07-06,2022-12-14 12:09:24,check to update; Confirmed planet by HATS team (not yet published),234,1,False,False,True -280095254,235.01,,3,4,4,3,3,4,4,34.3,171.6,31.3,4,4,4,PC,PC,9.4688,0.006,,1,spoc,UNKNOWN,03:04:47.5,-73:23:46.95,114.75,2.0,46.76,2.0,2458357.283082,0.00056169875,10.0902672980076,1.0172752e-05,1.74992803180124,0.048236486,2.728554,0.07267,2509.93628327125,66.92947,,,94.864136622736,795.967369287909,53.317165,104.301,,5454.42,77.327,3.44247,0.146076,,,-1.12905,0.130671,,,"2,6,13,27,28,29,36",2019-05-17,2021-07-28,2022-12-14 12:09:24,two close by stars (<1arcsec) not accounted for by TIC - may be uncorrected dilution and therefore uncertain radius; v-shaped; TFOP work in progress; likely EB,235,1,False,False,True -9727392,236.01,,5,5,5,5,5,5,5,133.5,275.1,317.0,0,1,3,EB,FP,11.2932,0.006,,1,spoc-s02,SPOC,23:53:46.74,-10:53:05.85,0.799,0.084,3.355,0.068,2458355.325711,0.000357,4.534451,0.000118,4.936391,0.025827,25.902599,0.157343,23574.842911,144.90733,23.183789,5.063646,1003.70325925464,1435.55912201186,162.49565,502.927,18.046,6421.5,83.0,4.19,0.16,1.47459,0.322004,-0.31,0.12,1.29,0.198874,2,2018-11-29,2022-10-20,2022-12-14 12:09:24,1700 ppm secondary. Likely EB.,236,1,False,False,True -305048087,237.01,,1,5,5,1,4,4,4,1.4,69.8,3.61,10,1,2,PC,CP,13.4102,0.007,,1,spoc,SPOC,23:32:58.45,-29:24:59.35,151.047,0.108,-333.194,0.156,2458355.24981,0.00261,5.433729,0.001053,1.172585,0.472631,7.113879,0.916284,6530.706532,843.5729,1.741587,0.971689,3.32400753936527,344.377881135219,7.68747,38.0749,0.22785,3139.0,98.0,5.04944,0.547167,0.214,0.049,,,0.180288,0.0201408,2,2018-11-29,2018-11-29,2022-12-14 12:09:24,low MES.,237,1,False,False,True -9006668,238.01,,1,4,2,1,4,4,4,8.0,68.9,4.13,8,9,9,PC,PC,9.926601,0.006,,1,spoc,UNKNOWN,23:16:55.46,-18:36:23.93,-53.238,0.077,-0.195,0.059,2458354.664553,0.0015411166,1.2730996065354,1.0932307e-05,1.62415594445128,0.19636361,0.411252,0.048716,378.70512860284,44.86818,1.86158215275625,0.20814928,713.966492152135,1318.37575296421,8.505641,80.5407,0.26635,5024.0,181.0,4.5685,0.30183,0.766027987003326,0.0475477,,,0.84,0.0992503,"2,29",2018-11-29,2021-07-28,2022-12-14 12:09:24,centroid offset not significant,238,1,False,False,True -9725627,239.01,,5,5,5,5,5,5,5,26.5,94.1,68.47,0,0,7,KP,KP,10.9774,0.008,,1,spoc-s01-s46-b0A,SPOC,23:53:38.03,-10:07:05.22,-19.202,0.117,-8.172,0.07,2459450.197241,0.0014059193,4.15678635840569,3.727563e-06,3.96180750541522,0.0588192,5.107662,0.076475,4693.2823970492,70.4338,9.71086576867958,0.5563425,941.607956758979,1412.82144865472,43.394855,353.539,9.056,6362.5,83.0,4.59,0.16,1.38830995559692,0.0749473,-0.2,0.12,1.27,0.186767,"2,29,42",2018-11-29,2022-07-15,2022-12-14 12:09:24,WASP-30b - BD,239,1,False,False,True -101948569,240.01,,1,4,1,2,3,4,4,1.9,43.8,9.18,4,5,1,PC,PC,10.7011,0.006,,1,spoc,SPOC,00:59:01.18,-44:09:39.13,27.398,0.03,-10.245,0.032,2458360.114089,0.0030517092,19.4711017873161,0.0044128117,3.50040125797784,0.4148826,1.941071,0.179588,1786.1954226752,165.39256,2.97884504544049,1.0954148,9.98919924550161,453.421822777999,9.959292,74.881,0.1538,4333.0,173.0,4.5109,0.370952,0.702944993972778,0.0597739,,,0.67,0.0824049,"2,29",2018-11-29,2021-07-28,2022-12-14 12:09:24,some odd-even; low SNR; even transits look worse than odd,240,1,False,False,True -77031414,241.01,,5,5,5,5,5,5,5,129.9,295.7,112.14,1,1,1,KP,KP,10.9571,0.006,,1,spoc-s01-s36-b0A-CPKP,SPOC,23:36:40.49,-34:36:40.7,87.963,0.061,-8.556,0.057,2458355.195919,9.496182e-05,1.38665190413455,7.216439e-07,2.30067513238714,0.014922514,15.579144,0.121831,14246.466553054,112.20379,12.9811618638901,0.63853365,1879.9347661511,1679.40500999249,131.61345,232.98,1.7765,6286.0,196.0,4.438,,1.0766099691391,0.052402,,,1.03,0.12256,"2,29",2018-11-29,2021-12-08,2022-12-14 12:09:24,WASP 173 b,241,1,False,False,True -120585579,242.01,,5,5,5,5,5,5,5,48.4,84.3,317.0,0,0,1,EB,FP,12.5766,0.006,,1,spoc-s02,SPOC,00:17:48.34,-38:06:39.08,-8.185,0.091,-9.526,0.065,2458357.778211,0.000677,6.340315,0.000367,4.249306,0.056679,27.945906,0.288178,25410.703288,265.38632,20.517917,20.518948,400.720106190663,1141.11662586698,95.53354,577.489,27.3855,6083.0,192.0,4.28983,,1.2666,1.2666,,,1.19,0.160559,2,2018-11-29,2022-10-20,2022-12-14 12:09:24,The detected secondary could have a wrong; depth estimation because of the low points near 1380.,242,1,False,False,True -149010208,243.01,,5,5,5,5,3,5,5,100.8,180.2,317.0,2,1,1,PC,APC,11.681,0.007,,1,spoc-s01-s36-b0A-PC,SPOC,00:13:34.59,-31:20:03.85,2.688,0.059,-1.754,0.045,2458356.617596,0.0003380704,3.43730925605269,2.7909628e-06,4.31147545730356,0.033629403,16.429243,0.150642,15017.9801246727,138.73639,25.6681050394777,1.351701,2497.48501889288,1802.99894465001,58.722694,709.175,18.6355,6046.0,193.0,4.29639,2.00435,1.94931995868683,0.10201,,,1.31,0.222319,"2,29",2018-11-29,2022-10-03,2022-12-14 12:09:24,Gaia radius is 1.8 Rsun. Planet radius is big.,243,1,False,False,True -118327550,244.01,,2,5,5,4,4,2,4,1.6,8.9,2.28,8,4,5,PC,CP,10.3475,0.007,,1,spoc,UNKNOWN,00:42:16.74,-36:43:04.71,-155.186,0.103,45.445,0.081,2458357.364692,0.0012410536,7.39719354357727,2.3816929e-05,1.15217793451971,0.5290699,1.103947,0.125993,1016.25594732196,116.03725,1.31223429419861,1.8106523,6.67442161411801,409.942701542905,10.986659,22.0337,0.03335,3342.0,,4.438,,0.407103002071381,0.0124724,,,0.399476,0.0205326,"2,29",2018-11-29,2021-07-01,2023-03-27 12:03:11,TFOP work in progress.,244,1,False,False,True -154618248,245.01,,3,4,3,3,3,4,4,18.9,119.0,27.77,5,3,4,PC,PC,8.5509,0.006,,1,spoc,UNKNOWN,23:03:07,-33:30:01.7,53.271,0.088,-18.971,0.122,2458361.550729,0.00088670454,8.77092124006292,1.7856904e-05,1.23510764223796,0.09242495,1.495106,0.19756,1376.09571288407,181.94266,5.54104,0.65622,191.892451389206,949.257904687472,17.161491,127.272,0.9345,6208.0,117.0,4.438,,1.42,0.07,,,,,"2,28",2018-11-29,2021-07-01,2022-12-14 12:09:24,TFOP work in progress.,245,1,False,False,True -158623531,246.01,,4,5,5,5,5,4,5,35.7,148.2,81.8,0,0,1,KP,KP,11.2794,0.006,,1,spoc,UNKNOWN,01:36:40.29,-50:39:33.51,-35.371,3.695,-31.725,3.695,2458355.73229,0.0002496624,7.8728936787037,4.848225e-06,3.75995783296396,0.030950211,16.012035,0.102778,14639.415532122,94.65733,15.0953,1.11573,166.536785617513,916.214781466181,157.15222,169.272,,5070.0,,4.47933,,1.26,0.09,,,,,"2,3,29",2018-12-20,2021-12-02,2022-12-14 12:09:24,WASP-105 b; all parameters from spoc-s1-s36 except except for radii from qlp-s29-tois since SPOC is assuming solar radius,246,1,False,False,True -160148385,247.01,,4,5,5,5,5,4,5,60.5,64.1,317.0,1,0,1,KP,KP,11.9116,0.006,,1,spoc,UNKNOWN,00:04:11.18,-47:21:38.29,25.582,0.039,2.334,0.038,2458354.319792,0.0002775186,3.42525674668285,2.4013782e-06,2.45116086829096,0.03278867,15.533698,0.158218,14205.204450143,145.71358,14.3600669627011,0.7693034,546.485446512837,1233.14571952012,94.73143,352.464,4.6845,5540.0,,4.42136,,1.11654996871948,0.0589196,,,0.98,0.116436,"2,29",2018-11-29,2021-12-02,2022-12-14 12:09:24,WASP-96 b,247,1,False,False,True -201793781,248.01,,1,5,5,1,3,4,4,5.6,66.1,6.26,2,28,3,PC,PC,8.4642,0.006,,1,spoc,UNKNOWN,02:18:44.23,-54:51:35.01,93.532,0.04,12.894,0.038,2458354.835618,0.0010367857,5.99111235118194,1.8413186e-05,3.44002696687109,0.2164409,0.457473,0.030839,421.259142682479,28.403217,2.37801125225179,0.56381166,283.685628169502,1046.71653117859,11.9239,75.9529,0.1409,5711.7,57.0,3.84,0.08,1.12147998809814,0.0520603,0.0,0.09,1.02,0.118562,"2,3,29,30",2018-12-20,2021-07-06,2022-12-14 12:09:24,potential L1 planet; somewhat crowded field,248,1,False,False,True -179985715,249.01,,2,4,4,2,3,4,4,2.8,42.4,5.84,9,3,1,PC,PC,11.2738,0.006,,1,spoc,SPOC,00:56:19.21,-38:56:57.24,-71.222,0.041,-122.939,0.041,2458359.538521,0.0021145511,6.61538351980285,4.3962515e-05,2.1901479879703,0.52218086,1.480292,0.155289,1362.4702841294,143.01657,2.28335626569915,1.3846837,25.0074750873177,570.344438145279,8.731829,70.6272,0.15645,4157.0,171.0,4.59257,0.222882,0.603417992591858,0.0595176,,,0.63,0.0814233,"2,29",2018-11-29,2021-07-15,2022-12-14 12:09:24,,249,1,False,False,True -184240683,250.01,,4,5,5,5,5,4,5,89.2,209.6,111.68,1,1,2,KP,KP,11.5464,0.006,,1,spoc,UNKNOWN,23:57:23.77,-41:16:37.99,7.33,0.04,-15.944,0.046,2458355.508072,0.00012210994,1.62842955686443,7.9758746e-07,2.36710023181211,0.019325325,15.057833,0.093755,13773.0480998861,86.34749,12.9494133536311,0.651739,1559.4752297133,1602.74477520444,154.49292,309.137,3.3775,5700.0,,4.39502,,1.09409999847412,0.0543568,0.154118,0.0514496,1.02,0.126024,"2,29",2018-11-29,2021-12-02,2022-12-14 12:09:24,WASP-5 b,250,1,False,False,True -224225541,251.01,,3,5,5,4,4,3,4,8.1,82.3,9.45,8,11,1,CP,CP,9.3258,0.006,,1,spoc,UNKNOWN,23:32:14.9,-37:15:21.11,44.639,0.074,1.902,0.07,2458357.305957,0.0010117872,4.93770131753953,1.5296933e-05,2.23466924635814,0.18689607,0.949585,0.0874,874.217693080613,80.49533,3.02891797151811,0.46953663,277.747772179629,1041.19577129964,7.3401165,99.523,0.4355,5862.0,190.0,4.51783,0.262166,0.955756008625031,0.0449473,,,1.04,0.129506,"2,29",2018-11-29,2021-12-02,2022-12-14 12:09:24,TOI-251 b / TOI-251.01,251,1,False,False,True -237924601,252.01,,3,5,5,3,3,4,4,78.9,195.5,56.77,10,1,4,PC,APC,11.7497,0.006,,1,spoc-s01-s39-b0A-APC,SPOC,03:50:12.88,-63:03:14.11,-7.2,6.1,-27.8,5.5,2460041.401591,0.0005574491,1.00218525235705,5.262833e-06,0.500192406308654,0.042944584,2.521831,0.144503,2319.99723240392,133.08377,5.01556265747247,0.29608813,1409.40208337102,1562.71030793178,21.775879,190.596,,5071.0,181.0,4.48308,2.00352,0.874822020530701,,,,,,"2,3,11,28,29,30,31,34,38,61,62,64",2018-12-04,2023-07-12,2023-07-12 00:00:00,TFOP APC; synchronized to variability,252,1,False,False,True -322063810,253.01,,2,5,5,2,3,4,4,4.0,8.7,2.35,6,6,1,PC,PC,9.3626,0.006,,1,spoc,SPOC,00:57:16.44,-51:35:06.9,102.655,0.049,-141.13,0.041,2458355.619074,0.0022949048,3.51049380470679,2.5115593e-05,2.16610512131418,0.31682944,0.338761,0.038878,311.961680093115,35.807217,1.33539315374004,0.2585738,64.7079451841403,723.367765236155,8.983308,30.8431,0.0281,4020.0,170.0,4.438,,0.639370977878571,0.0657085,,,0.63,0.0800887,"2,29",2018-11-29,2021-07-13,2022-12-14 12:09:24,visual binary,253,1,False,False,True -49687222,254.01,,5,5,5,5,5,5,5,2.5,42.8,10.84,3,5,11,IS,FA,9.8343,0.006,,1,spoc-s02,SPOC,23:26:49.29,-11:43:32.06,-27.594,2.012,-46.011,1.058,2458360.073308,0.002667,20.186539,0.003807,1.866565,0.909295,1.092846,0.156001,1006.041833,143.67206,3.283981,4.520391,55.7433173940076,696.89596869513,8.4469795,133.3143,,6101.0,193.0,4.48196,0.402847,1.01859,0.192495,,,,,2,2018-11-29,2022-10-03,2022-12-14 12:09:24,not seen in K2; TFOP FA,254,1,False,False,True -204317710,255.01,,4,5,5,5,5,4,5,23.4,65.1,99.04,0,0,0,KP,KP,13.7426,0.007,,1,spoc-s01-s36-b0A-CPKP,SPOC,23:04:18.02,-21:16:19.26,-1.425,0.048,-20.118,0.048,2459090.083321,0.0019281021,2.81264847067326,6.8668787e-06,2.87375221777979,0.11531863,15.301175,0.458911,13994.0625365298,422.5832,12.0658006208754,0.4648629,614.593408355969,1269.89181526436,24.578865,745.116,17.117,5700.0,,4.39704,,1.00957000255585,,,,1.01,,"2,29",2018-11-29,2021-12-09,2022-12-14 12:09:24,HATS-32 b,255,1,False,False,True -92226327,256.01,,5,5,5,5,5,5,5,0.2,112.8,4.06,0,0,4,KP,KP,11.2991,0.007,,1,spoc,SPOC,00:44:59.67,-15:16:26.79,317.585,0.121,-596.617,0.085,2458399.928643,0.0011207586,24.73734116,0.0001405365,2.06905097692685,0.12742876,7.146432,0.321877,6560.492087026,296.41574,1.84394530919894,0.114572965,0.143917610380433,157.089889569672,19.97876,14.9861,0.01525,3131.0,,5.05701,,0.215534999966621,0.00655817,,,0.184589,0.0201091,"3,30",2018-11-30,2018-11-30,2022-12-14 12:09:24,LHS-1140 b,256,1,True,False,True -92226327,256.02,,5,5,5,5,5,5,5,5.0,170.7,3.08,0,0,4,KP,KP,11.2991,0.007,,2,spoc,UNKNOWN,00:44:59.67,-15:16:26.79,317.585,0.121,-596.617,0.085,2459141.100488,0.0017719,3.77794175247263,8.518055e-06,1.47593251726274,0.09515379,3.773458,0.467445,3469.45073899104,430.44,1.56599371757261,0.20743896,5.71741815401029,394.384409708834,17.645792,14.9861,0.01525,3131.0,,5.05701,,0.215534999966621,0.00655817,,,0.184589,0.0201091,"3,30",2018-11-30,2021-12-01,2022-12-14 12:09:24,LHS-1140c,256,2,True,False,True -200723869,257.01,,3,4,4,3,4,4,4,21.2,143.5,33.51,4,7,3,CP,CP,7.0286,0.006,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,03:10:04.14,-50:49:56.15,97.912,0.052,27.911,0.082,2459121.270086,0.0011318153,18.3877080853847,2.926592e-05,6.40515299694267,0.077006675,1.293913,0.027337,1191.02831919559,25.177616,6.37909615920243,0.29591537,211.284487534801,972.381421789103,39.21195,76.9028,0.1948,6382.7,111.3,4.05,0.08,1.76557004451752,0.072387,,,1.28,0.189889,"3,4,30",2019-01-16,2021-12-09,2022-12-14 12:09:24,HD 1991 b/ TOI-257 b,257,1,False,False,True -350445771,258.01,,5,5,5,5,5,5,5,28.7,78.5,96.56,7,1,1,EB,FP,11.0932,0.006,,1,qlp,UNKNOWN,05:41:52.18,-56:44:25.64,-7.586,0.055,19.147,0.05,2459385.936089,0.0006026,3.1901603,2.9e-06,1.315,0.138,2.913679,0.00113,2680.0,1.04088,11.8895,0.646273,448.476,1282.0,42.0,530.555,6.4035,6474.57,100.19,4.26363,0.184454,1.99,0.1,-0.169551,0.1,1.32,0.215025,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,30,31,32,33,34,35,36,37,38",2018-12-04,2021-08-20,2022-12-14 12:09:24,secondary; retired as EB,258,1,False,False,True -12862099,259.01,,5,5,5,5,5,5,5,56.1,147.1,108.09,0,0,2,KP,KP,12.3993,0.007,,1,spoc-s03-b02,SPOC,00:15:36.79,-11:56:17.75,15.281,0.079,-30.047,0.044,2458386.578118,0.000681041,2.42382258353343,0.00013650567,2.24840146327738,0.05427328,17.696733,0.327315,16167.1783696915,301.42267,12.2562719025404,0.24819414,549.914051953433,1235.07534965484,36.095585,364.512,5.573,5410.0,,4.47919,,0.93,,,,0.96,0.119596,3,2018-11-30,2021-12-07,2022-12-14 12:09:24,WASP-44 b,259,1,False,False,True -37749396,260.01,,2,5,5,2,4,4,4,2.5,74.8,3.47,3,19,13,PC,PC,8.4991,0.006,,1,spoc-s01-s46-b0A,SPOC,00:19:05.52,-09:57:58.14,-36.593,0.126,-301.435,0.062,2458392.293751,0.0013673841,13.4758499012287,3.631852e-05,1.87997045056941,0.35223475,0.762472,0.068607,702.016183559352,63.18738,1.68017177928045,1.1102436,10.1837498710228,455.613601356792,8.959461,20.1852,0.02315,4111.0,171.0,4.6461,0.439409,0.618173003196716,0.0598643,,,0.63,0.0813985,"3,42",2018-11-30,2022-07-15,2022-12-14 12:09:24,,260,1,False,False,True -63898957,261.01,,2,5,5,2,4,3,4,8.5,72.0,9.53,1,7,5,PC,PC,9.03971,0.006,,1,spoc,UNKNOWN,01:00:52.35,-24:25:26.38,108.36,0.088,-11.198,0.061,2458383.915624,0.0017622397,3.3639253966859,1.5642261e-05,3.34304953141334,0.19369616,0.458344,0.031576,422.061076119246,29.08252,3.04498626581081,0.21149072,874.795566692029,1387.06365753573,11.843994,114.495,0.5545,5890.3,57.0,3.92,0.08,1.28017997741699,0.0545025,-0.35,0.09,1.069,0.134583,"3,30",2018-11-30,2021-09-07,2022-12-14 12:09:24,TOI 261.01; active TFOP PC,261,1,True,False,True -63898957,261.02,,2,5,5,2,4,3,4,4.8,52.8,10.31,1,7,5,CP,CP,9.03971,0.006,,2,spoc,SPOC,01:00:52.35,-24:25:26.38,108.36,0.088,-11.198,0.061,2458389.727185,0.0030371838,13.0393586213526,0.0043164864,4.92183246929998,0.53144544,0.679449,0.063009,625.599568734536,58.03166,3.34822227417903,1.2696187,243.526094627269,1007.52568294318,10.275119,114.495,0.5545,5890.3,57.0,3.92,0.08,1.31383,0.136209,-0.35,0.09,1.069,0.134583,3,2018-11-30,2021-09-08,2022-12-14 12:09:24,ambiguous period; many transits; period validated as 13.04 days (S Giacalone 2020); validated planet,261,2,True,False,True -70513361,262.01,,2,4,4,4,4,2,4,4.2,77.7,4.93,4,15,4,PC,CP,8.1345,0.006,,1,spoc,UNKNOWN,02:10:08.32,-31:04:14.26,240.041,0.147,-175.854,0.133,2459136.576258,0.0031097,11.1452784382067,3.700101e-05,1.39477054541305,0.33500788,0.614998,0.051285,566.273645051019,47.23385,2.0671455889201,2.1233275,56.9132657725449,700.524173297762,12.805194,43.932,0.1171,5302.58,20.9902,4.53515,0.037074,0.848675012588501,0.0516382,0.263727,0.0236433,0.91,0.12055,"3,30",2018-11-30,2021-12-01,2022-12-14 12:09:24,validated planet,262,1,False,False,True -120916706,263.01,,2,5,5,2,4,4,4,75.9,135.5,68.18,12,1,4,PC,CP,15.6198,0.01,,1,spoc,SPOC,02:28:25.99,-25:05:50.38,30.333,0.181,10.142,0.179,2459116.147851,0.0010802787,0.55680952996049,8.874052e-06,0.971206600267024,0.08280766,50.151357,3.66998,45140.5350425324,3374.4705,9.68702286423537,0.67014873,235.692762815896,999.323985577048,15.559053,277.404,7.881,3116.0,101.0,5.06043,0.562987,0.439738005399704,0.0167967,,,0.435505,0.0232738,"3,30",2018-11-30,2021-12-01,2022-12-14 12:09:24,verified planet candidate,263,1,False,False,True -122612091,264.01,,5,5,5,5,5,5,5,79.1,83.3,317.0,0,1,3,KP,KP,10.4614,0.008,,1,qlp,UNKNOWN,02:44:09.62,-30:10:08.68,7.447,0.064,-7.817,0.088,2459168.12645,0.00034,2.21674,0.0,3.604,0.2,4.984094,0.000422,4580.0,0.38871,18.2508,0.896431,2007.96,1864.0,111.0,434.754,8.379,6250.0,,3.98811,,2.66,0.13,-0.361602,0.0668965,1.03,0.131393,"3,4,30,31",2019-06-06,2020-12-22,2022-12-14 12:09:24,WASP-72b,264,1,False,False,True -159951311,265.01,,5,5,5,5,5,5,5,28.2,118.6,64.13,0,1,3,KP,KP,11.7276,0.006,,1,spoc,UNKNOWN,03:18:14.92,-41:18:07.28,-16.0,0.035,24.512,0.055,2459169.574874,0.0003467,5.92426613248315,3.5635082e-06,2.88944488847245,0.036212273,12.883844,0.11154,11796.3303623979,102.72714,9.34404416250912,0.61892897,120.707617105674,845.382821807732,94.41432,212.472,1.104,5310.0,,4.59604,,0.846670985221863,0.0549573,,,0.87,0.106212,"3,4,30,31",2019-06-06,2021-10-20,2022-12-14 12:09:24,WASP-139 b,265,1,False,False,True -164767175,266.01,,1,4,1,4,4,3,4,2.8,45.2,6.17,1,18,6,PC,PC,9.45661,0.006,,1,spoc,SPOC,01:44:50.22,-18:24:04.98,-87.067,0.071,-110.708,0.053,2458382.33384,0.0020467802,10.7510106578568,5.1448347e-05,2.94342403333374,0.6060479,0.693022,0.067092,638.092856572126,61.79254,2.35818268521362,1.7880001,90.8412637790967,787.391172247156,11.408802,101.694,0.419,5784.0,55.0,4.438,,0.918917000293732,0.0420301,,,1.037,0.130053,"3,30",2018-11-30,2021-07-28,2023-03-02 00:00:00,TFOP work in progress.,266,1,True,False,True -164767175,266.02,,3,5,5,4,4,3,4,2.3,36.6,3.68,1,18,6,PC,PC,9.45661,0.006,,2,spoc,UNKNOWN,01:44:50.22,-18:24:04.98,-87.067,0.071,-110.708,0.053,2458392.104974,0.004409,6.19132,0.003482,3.4164,1.161866,0.374905,0.068174,345.240264,62.78886,1.759371,2.874777,219.127827884996,981.282679002903,8.478584,101.694,0.419,5784.0,55.0,4.438,,0.929557,0.09191,,,1.037,0.130053,3,2018-11-30,2018-11-30,2022-12-14 12:09:24,period ambiguous for .01 and .02; unclear which transits are attributed to which candidates; will not be observed again in nominal mission,266,2,True,False,True -166836920,267.01,,5,5,5,5,5,5,5,80.1,226.5,108.11,0,3,3,KP,KP,8.93,0.006,,1,spoc,UNKNOWN,02:39:35.44,-50:00:29.5,-1.868,0.048,-39.856,0.05,2459135.796019,0.000239,5.75258217063909,2.4888675e-06,5.40133554116319,0.024056496,5.739538,0.033197,5272.36177891655,30.575548,12.7042648295231,0.58607066,828.826288762909,1368.47109607155,157.6959,158.66,0.8045,6180.0,,4.11766,,1.70927000045776,0.0782412,,,1.14,0.1599,"3,29,30",2018-11-30,2021-10-20,2022-12-14 12:09:24,WASP-99 b,267,1,False,False,True -219253008,268.01,,3,4,3,3,3,4,4,19.2,64.5,45.89,3,0,1,PC,PC,10.0733,0.015,,1,spoc,UNKNOWN,04:23:39.73,-53:51:03.97,-21.39,0.036,1.649,0.043,2458385.127279,0.00043496213,5.06617500732187,4.6319838e-06,6.29924087517537,0.0527337,1.466734,0.000933,1350.0,0.859562,7.69012,0.42506,311.339719822195,1071.34261958635,62.274124,320.497,2.111,5868.0,190.0,3.57327,0.343686,2.17,0.449728,,,,,"3,4,5,30,31,32",2019-05-17,2021-07-28,2022-12-14 12:09:24,TICID 219253008 is a phantom from split (TICID 685340264 and 685340263),268,1,False,False,True -220479565,269.01,,3,5,5,3,4,4,4,7.4,88.7,8.86,6,1,1,CP,CP,12.2958,0.007,,1,spoc,UNKNOWN,05:03:23.11,-54:10:39.8,26.472,0.043,-120.75,0.043,2458381.844983,0.00027585324,3.69772375245249,3.2849766e-06,0.91881296852475,0.062615156,5.101882,0.146553,4687.98391013463,134.97098,2.91688795976772,0.19028631,19.1943738524078,533.84261216823,36.271687,57.0225,0.07565,3607.0,,4.438,,0.39792400598526,0.011947,,,0.389135,0.0203323,"3,4,5,6,10,13,30,31,32,33,36",2019-05-17,2021-07-15,2022-12-14 12:09:24,TOI-269 b,269,1,False,False,True -259377017,270.01,,1,4,1,1,4,4,4,7.9,154.2,6.39,48,4,4,CP,CP,10.4981,0.007,,1,spoc,UNKNOWN,04:33:39.86,-51:57:26.62,82.944,0.05,-269.755,0.051,2459198.961454,0.0005277,5.66056931603069,3.858381e-06,1.66317040312773,0.052896116,4.194807,0.071767,3856.10608521182,66.09782,2.40708723087558,0.11973171,9.94074078795448,452.870922604814,51.1377,22.4793,0.01355,3551.0,74.0,4.83982,0.382963,0.374357998371124,0.0114957,,,0.362274,0.020491,"3,4,5,30,32",2019-05-17,2021-10-14,2022-12-14 12:09:24,TOI-270 c / TOI 270.01,270,1,True,False,True -259377017,270.02,,1,4,1,1,4,4,4,2.7,112.1,5.72,48,4,4,CP,CP,10.4981,0.007,,2,spoc,SPOC,04:33:39.86,-51:57:26.62,82.944,0.05,-269.755,0.051,2458389.679336,0.0005849191,11.3795653396307,1.514839e-05,2.23503053745909,0.07614999,3.42225,0.082712,3147.0461739044,76.177734,2.25394644828569,0.10260336,3.91800213353912,358.827662999979,39.073574,22.4793,0.01355,3551.0,74.0,4.83982,0.382963,0.374357998371124,0.0114957,,,0.362274,0.020491,"3,4,5,30,32",2019-05-17,2021-10-14,2022-12-14 12:09:24,TOI-270 d / TOI-270.02,270,2,True,False,True -259377017,270.03,,1,5,5,1,4,4,4,3.4,11.8,1.78,48,4,4,CP,CP,10.4981,0.007,,3,spoc,SPOC,04:33:39.86,-51:57:26.62,82.944,0.05,-269.755,0.051,2458383.733214,0.00070846354,3.36013770677629,8.606677e-06,1.41324497169953,0.30529118,1.056891,0.063829,972.958936281263,58.786633,1.18437182711947,0.737667,19.9261226089862,538.859382548355,18.003332,22.4793,0.01355,3551.0,74.0,4.83982,0.382963,0.374357998371124,0.0114957,,,0.362274,0.020491,"3,4,5,30,32",2019-05-17,2021-10-14,2022-12-14 12:09:24,TOI-270 b / TOI 270.03,270,3,True,False,True -259511357,271.01,,1,5,5,1,4,4,4,10.5,88.0,8.3,2,14,8,PC,APC,8.4332,0.007,,1,spoc,QLP,04:43:06.12,-50:13:10.12,49.228,0.104,49.976,0.142,2458382.231038,0.00043049912,2.47597330640382,4.5919132e-06,1.04669227403454,0.1277531,0.419989,0.018652,386.749347170756,17.178905,2.80626383475263,0.77688307,1571.15560947401,1605.73749906517,24.114555,100.245,0.62765,6025.0,192.0,4.33135,0.387055,1.33011996746063,,,,1.15,,"3,4,5,30,31,32",2019-05-17,2021-07-13,2022-12-14 12:09:24,follow up in progress,271,1,False,False,True -268766053,272.01,,5,5,5,5,5,5,5,76.0,201.0,104.2,0,1,8,KP,KP,11.7617,0.006,,1,spoc,UNKNOWN,02:07:38.2,-20:39:42.63,-9.079,0.057,8.19,0.058,2459140.875701,0.0002718,3.30984575478706,1.5323723e-06,2.26765357766264,0.0243205,21.003286,0.161703,19158.8321816564,148.92244,12.4316228067176,0.7775041,241.665558730679,1005.59577446218,107.77688,201.338,1.371,4953.0,,4.55653,,0.858618974685669,0.053191,,,0.818,0.0960988,"3,30",2018-11-30,2021-10-14,2022-12-14 12:09:24,WASP-53 b,272,1,False,False,True -279740441,273.01,,5,5,5,5,5,5,5,87.4,216.7,35.09,1,0,2,EB,FP,11.481,0.006,,1,spoc,SPOC,03:26:01.07,-64:32:53.19,-21.479,0.045,109.97,0.043,2458386.095087,0.001412562,0.741859449402693,8.905399e-05,1.50269578059472,0.1196039,3.244273,0.188664,2983.62573173008,173.75093,6.02383473018806,7.4662147,740.864333841521,1330.62114789211,16.765955,106.16,0.2315,4304.6,64.0,4.57,0.12,0.66174,0.0974527,-0.15,0.08,0.67,0.077692,3,2018-11-30,2021-12-06,2022-12-14 12:09:24,NEB on 279740439 (SG1) ,273,1,False,False,True -281979481,274.01,,5,5,5,5,5,5,5,21.0,119.2,8.64,3,5,1,PC,FP,10.4929,0.006,,1,spoc,SPOC,08:42:01.29,-75:48:06.73,38.707,0.038,-81.363,0.04,2459362.157241,0.0020349107,0.541794727227269,5.064377e-06,1.17163794656513,0.07248259,0.584201,0.063982,537.924490177422,58.928013,2.87387334111877,1.4076043,2690.41531237904,1836.85375787312,24.296259,113.378,0.261,5181.0,182.0,4.54631,0.289574,0.807298004627228,0.0471181,,,0.87,0.111103,"3,10,11,12,13,33,37,38,39",2018-11-30,2021-10-26,2022-12-14 12:09:24,TFOP FP; retired as NEB. Centroid offset onto another star a pixel away. V-shaped. Offset also apparent in SPOC multisector and s38.,274,1,False,False,True -373844472,275.01,,5,5,5,5,3,5,5,116.0,283.6,56.61,9,1,1,PC,APC,11.0611,0.006,,1,qlp-s39-tois,UNKNOWN,05:26:04,-67:13:57.98,-18.728,0.125,52.948,0.135,2459385.393265,9.59e-05,0.9195617,1e-07,1.153,0.074,10.013089,0.002123,9180.0,1.95528,8.69931,0.465182,2224.03,1913.0,412.0,144.866,1.3165,5616.0,187.0,4.3762,2.00392,0.82,0.04,,,1.0,0.136248,"1,3,4,5,6,7,8,9,10,11,13,27,28,30,31,33,34,35,36,37,38",2018-12-04,2023-01-24,2023-01-26 12:09:41,TFOP APC,275,1,False,False,True -382188882,276.01,,5,5,5,5,5,5,5,50.9,141.3,125.74,0,1,1,EB,FP,10.6559,0.006,,1,qlp-s36-ffi,UNKNOWN,05:25:24.74,-55:01:11.73,13.499,0.041,-5.494,0.042,2459328.579795,0.0003574,4.8000876,5.6e-06,1.825,0.078,5.649644,0.004984,5190.0,4.59086,13.8776,0.748578,545.223,1346.0,168.0,352.383,2.361,6366.0,197.0,4.16217,0.47536,1.58,0.07,,,1.3,0.211301,"1,3,4,6,7,9,10,11,13,27,28,30,31,32,33,34,36",2018-11-30,2022-10-03,2022-12-14 12:09:24,TFOP FP/SB1,276,1,False,False,True -439456714,277.01,,4,5,5,4,4,4,4,14.9,106.2,16.84,3,2,7,PC,CP,11.7315,0.007,,1,spoc,UNKNOWN,01:16:18.41,-20:57:11.8,-115.432,0.067,-249.177,0.049,2458385.036312,0.0007959427,3.99344182704717,8.306464e-06,1.96930647255073,0.11264866,6.317673,0.278102,5801.89571586399,256.10855,4.25566447395257,0.24329622,28.2359720540293,587.922979637705,20.975157,64.6692,0.13825,3748.0,64.0,4.7573,0.343554,0.523113012313843,0.015618,,,0.520428,0.020342,"3,30",2018-11-30,2021-07-13,2023-03-03 12:02:49,,277,1,False,False,True -244161191,278.01,,4,4,4,5,4,5,5,50.9,233.0,6.94,1,1,8,PC,,13.1672,0.008,,1,spoc,UNKNOWN,00:19:32.05,-05:54:41.62,108.144,0.343,-68.177,0.182,2458381.775526,0.00031334546,0.298730995689558,5.818342e-06,0.621620456830077,0.105019316,7.195188,0.487349,6605.10293074771,448.7647,2.52686218838342,0.42984232,188.331332004364,944.822863442918,15.121655,44.397,0.2863,2955.0,95.0,5.13527,0.496238,0.300639003515244,0.00921362,,,0.277347,0.0203038,"3,30",2018-12-11,2021-11-15,2022-12-14 12:09:24,likely SV,278,1,False,False,True -122613513,279.01,,1,4,1,2,3,4,4,1.3,27.9,4.1,3,5,3,PC,PC,10.5012,0.006,,1,qlp,UNKNOWN,02:44:45.23,-32:12:39.75,-8.908,0.031,-31.477,0.058,2459168.429762,0.0059896,11.4707838,0.0001502,3.698,0.538,1.711383,0.001796,1575.0,1.65379,1.86599,0.183555,30.2417,653.0,12.0,74.3761,0.20465,4140.0,171.0,4.46332,0.440143,0.73,0.06,,,0.69,0.0772495,"3,4,30",2019-05-17,2020-12-22,2022-12-14 12:09:24,,279,1,False,False,True -42054565,280.01,,1,4,1,1,3,4,4,2.9,48.2,6.59,5,3,3,PC,PC,9.9955,0.006,,1,spoc,UNKNOWN,01:36:40.41,-36:24:50.44,-55.923,0.038,-81.779,0.038,2458383.488609,0.0018661625,10.1843061384695,4.0706487e-05,1.72931305064769,0.3837901,0.91239,0.09639,839.989691481368,88.77408,2.44970612157016,0.95337695,59.4579709817458,708.226659560833,7.5270567,99.66,0.29915,5454.0,185.0,4.59104,0.274395,0.782680988311768,0.0388894,,,0.95,0.120982,"3,30",2018-12-11,2020-12-22,2023-01-27 00:00:00,low SNR; possible instrument systematic; source is possibly 42054566 which is 4.24 as away,280,1,False,False,True -38696105,281.01,,3,5,5,3,3,4,4,5.2,32.7,17.03,1,2,3,PC,PC,10.5041,0.006,,1,qlp-s39-tois,UNKNOWN,04:24:32.7,-60:07:47.75,-7.002,0.047,10.401,0.046,2459385.65795,0.0019299,5.5765284,1.7e-05,2.28,0.552,0.619046,0.002601,570.0,2.39578,4.28325,0.3145,779.716,1472.0,26.0,283.856,1.9105,6002.18,42.1958,4.12354,0.117071,1.52,0.06,0.257514,0.0465553,1.11,0.14062,"1,2,3,4,5,6,8,9,11,12,28,29,30,31,32,34,35,36",2018-11-30,2022-03-21,2022-12-14 12:09:24,potential L1 candidate,281,1,False,False,True -29781292,282.01,,2,5,5,2,4,4,4,0.3,11.8,3.71,6,16,4,CP,CP,8.9387,0.006,,1,qlp-s63-ffi,SPOC,04:20:57.19,-68:06:09.68,22.028,0.039,-10.401,0.043,2460017.317805,0.0192046,56.0019997,0.0010646,6.814,2.274,0.211739,0.017497,195.0,16.1151,1.74497,0.136659,22.8804,609.0,42.32609,139.611,0.428,6321.0,196.0,4.22436,0.295755,1.41,0.06,,,1.24,0.199013,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,33,34,35,36,37,38,39,61,62,63",2019-05-07,2023-05-05,2023-06-16 12:14:51,HD 28109 c,282,1,True,False,True -29781292,282.02,,5,5,5,5,5,5,5,0.7,17.2,4.72,6,16,4,IS,FA,8.9387,0.006,,2,qlp,QLP,04:20:57.19,-68:06:09.68,22.028,0.039,-10.401,0.043,2459044.82593,0.05923,31.32312,0.00354,1.541,0.807,0.418089,0.036875,385.0,33.9627,2.00987,0.90968,15.1394,549.0,7.0,139.611,0.428,6321.0,196.0,4.22436,0.295755,1.41,0.06,,,1.24,0.199013,27,2018-12-20,2021-08-17,2022-12-14 12:09:24,TFOP FA; mismatched transits and noise,282,2,True,False,True -29781292,282.03,,1,5,5,1,4,4,4,0.6,21.2,9.31,6,16,4,PC,CP,8.9387,0.006,,3,spoc-s01-s39-b0A-PC,SPOC,04:20:57.19,-68:06:09.68,22.028,0.039,-10.401,0.043,2458355.656767,0.0031082255,84.2590926198253,0.00046228472,10.00649665647,0.3937829,0.471876,0.025105,434.519372257429,23.121988,3.00167316261785,0.47330934,17.3749262519309,520.715483987027,15.961518,139.611,0.428,6321.0,196.0,4.22436,0.295755,1.41189002990723,0.0640704,,,1.24,0.199013,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,33,34,35,36,37,38,39",2019-06-06,2022-03-21,2023-03-03 12:03:00,potential long-period small planet; potential multi,282,3,True,False,True -29781292,282.04,,1,5,5,1,4,4,4,1.1,21.3,5.43,6,16,4,CP,CP,8.9387,0.006,,4,qlp-s63-ffi,SPOC,04:20:57.19,-68:06:09.68,22.028,0.039,-10.401,0.043,2460038.750201,0.0054108,22.8909432,0.0001349,2.223,0.883,0.27907,0.028969,257.0,26.681,2.18399,0.177567,16.2325,559.0,11.0,139.611,0.428,6321.0,196.0,4.22436,0.295755,1.41,0.06,,,1.24,0.199013,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,33,34,35,36,37,38,39,61,62,63",2021-10-21,2023-05-11,2023-06-16 12:14:51,HD 28109 b; multi,282,4,True,False,True -382626661,283.01,,1,4,1,2,3,4,4,1.3,32.6,4.55,2,6,5,PC,PC,9.6768,0.006,,1,qlp-s61-ffi,SPOC,07:54:16.63,-65:26:29.34,-30.77,0.091,15.842,0.099,2459954.289561,0.0042098,17.6175468,6.43e-05,3.716,0.296,0.743984,0.028252,685.0,26.0205,1.96821,0.128081,24.3053,618.0,34.0,82.7013,0.2112,5250.0,183.0,4.64176,0.275934,0.81,0.05,,,0.9,0.108163,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61",2019-05-07,2023-04-04,2023-04-07 12:13:06,,283,1,False,False,True -277103955,284.01,,5,5,5,5,5,5,5,3.2,9.3,0.95,5,2,1,EB,FP,9.2927,0.006,,1,spoc-s01s06-b0A,UNKNOWN,05:37:01.05,-66:47:27.07,-16.639,0.075,133.172,0.067,2458326.417294,0.0019591413,1.30913582680968,3.437363e-05,3.11224097529371,0.19669132,0.178217,0.012439,164.130746661793,11.456682,0.979824310276164,0.7482437,666.002236864519,1295.65290024353,13.120161,52.1472,0.0699,4779.8,128.6,4.57,0.32,0.772044,0.114019,,,0.74,0.0862959,"1,3,4,5,6",2019-01-16,2021-12-07,2022-12-14 12:09:24,retired as NEB,284,1,False,False,True -220459976,285.01,,3,5,5,3,3,4,4,0.5,23.2,10.21,0,0,3,PC,PC,12.1677,0.007,,1,spoc,SPOC,04:58:47.32,-56:23:37.73,3.592,0.031,56.433,0.032,2458361.663925,0.004797,32.332528,0.006676,3.459632,0.786024,2.636658,0.313268,2425.505189,288.4887,3.028709,1.59527,2.75641635639541,328.629052109456,7.5875335,115.801,0.2095,3891.0,169.0,4.64044,0.274298,0.615038,0.073716,,,0.622424,0.020193,"2,3",2018-12-20,2018-12-20,2022-12-14 12:09:24,possible single transit,285,1,False,False,True -150030205,286.01,,2,5,5,2,3,4,4,2.9,7.1,2.68,3,8,3,PC,PC,9.1059,0.006,,1,qlp-s63-ffi,SPOC,06:03:56.23,-60:39:58.81,76.064,0.048,-3.482,0.04,2460033.25284,0.0021532,4.5117313,1.01e-05,1.704,0.545,0.342061,0.021528,315.0,19.8282,1.43823,0.100252,105.042,891.0,25.0,59.2293,0.07465,5245.0,183.0,4.57666,0.27213,0.79,0.05,,,0.86,0.105052,"1,2,3,4,5,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63",2019-05-07,2023-05-11,2023-06-16 12:14:51,potential L1 planet; candidate .01,286,1,True,False,True -150030205,286.02,TIC 150030205.02,1,4,4,1,3,4,4,0.5,29.0,3.67,3,8,3,PC,PC,9.1059,0.006,,2,qlp-s63-ffi,SPOC,06:03:56.23,-60:39:58.81,76.064,0.048,-3.482,0.04,2459997.573861,0.0034834,39.3617061,0.0001434,4.337,0.826,0.603837,0.025634,556.0,23.6094,1.72925,0.115093,6.89049,451.0,25.0,59.2293,0.07465,5245.0,183.0,4.57666,0.27213,0.79,0.05,,,0.86,0.105052,"1,2,3,4,5,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63",2020-03-11,2023-05-11,2023-06-16 12:14:51,potential multi,286,2,True,False,True -2758565,287.01,,3,4,4,3,4,4,4,94.5,140.3,317.0,6,0,6,PC,PC,12.3611,0.007,,1,spoc,UNKNOWN,23:45:07.93,-17:26:57.35,-19.326,0.097,-17.214,0.092,2458356.03117,0.00123,3.78181200049672,0.00025488582,2.0119422347121,0.08415607,17.003621,0.679838,15538.919537751,625.9581,20.4146503012008,9.500769,601.485521724129,1263.06599816893,25.152006,486.856,17.7495,5807.0,121.5,4.32,0.08,1.17009,0.0698894,,,1.04,0.133031,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,synchronized with stellar rotation,287,1,False,False,True -47316976,288.01,,3,5,5,3,3,4,4,0.3,22.8,60.07,0,3,5,PC,PC,8.97174,0.006,,1,spoc,UNKNOWN,22:41:13.85,-28:01:57.57,-7.696,0.084,1.997,0.07,2458364.463521,0.002631068,711.744652213274,0.0037701607,6.79419298550109,0.21331383,1.664765,0.057521,1532.13036449968,52.977196,8.99064142713383,0.4742807,2.23973975674766,312.010449623247,28.216206,215.387,2.3205,6530.0,126.1,3.96,0.09,2.02086997032166,0.0946229,,,1.346,0.21544,"2,28",2018-09-28,2020-05-20,2022-12-14 12:09:24,companion likely a star not planet (see observing notes),288,1,False,False,True -201292545,289.01,,3,5,5,3,3,4,4,,,317.0,0,1,1,PC,PC,11.4483,0.006,,1,qlp,QLP,00:11:36.17,-56:35:58.84,23.601,0.036,-10.128,0.037,2458326.64586,0.00307,0.0,0.0,6.463,0.651,6.009866,0.064934,5520.0,59.805,16.0647,1.65918,,,33.0,454.65,5.4435,5728.0,130.4,3.99,0.08,1.69,0.09,,,1.02,0.122646,"1,2",2018-10-03,2020-05-20,2022-12-14 12:09:24,single event; no period,289,1,False,True,True -201233610,290.01,,5,5,5,5,5,5,5,48.0,190.8,317.0,0,0,3,EB,FP,12.9528,0.006,,1,qlp,SPOC,23:58:03.98,-49:18:03.02,14.378,0.017,-2.645,0.021,2459097.43463,0.00158,21.05271,8e-05,4.91,0.252,23.531352,1.935768,21440.0,1781.32,36.6999,8.26001,80.9224,835.0,51.0,933.836,15.682,5736.0,134.5,3.97,0.08,1.73,0.09,,,1.02,0.12361,"2,28,29",2018-10-03,2020-11-13,2022-12-14 12:09:24,retired as EB due to size,290,1,False,False,True -49710555,291.01,,5,5,5,5,5,5,5,29.5,54.8,317.0,5,1,15,EB,FP,12.3035,0.007,,1,qlp-s29-tois,QLP,23:28:39.48,-10:51:34.63,26.857,0.105,-7.918,0.056,2459109.092,0.00271,12.08837,6e-05,3.106,0.332,6.523116,1.808311,5990.0,1664.13,18.1866,6.07947,200.957,1048.0,16.0,551.16,13.313,5920.0,125.6,4.22,0.08,1.34,0.07,,,1.08,0.139419,"2,29",2018-12-20,2022-10-20,2022-12-14 12:09:24,,291,1,False,False,True -180285396,292.01,,3,4,3,3,3,4,4,10.6,55.4,66.22,5,0,2,PC,PC,13.2806,0.006,,1,spoc,UNKNOWN,00:58:51.41,-36:41:18.51,52.079,0.03,-24.513,0.029,2458363.14559,0.00247,10.3692425648657,0.0012921003,2.50760274050533,0.22943409,16.518186,0.900466,15098.6658780889,829.0158,9.52242455334696,1.1775675,32.4162546319613,608.569886113227,16.22712,295.784,1.894,4463.0,122.0,4.49,,0.789514,,,,0.7,,"2,3,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,V-shaped3,292,1,False,False,True -355637190,293.01,,5,5,5,5,3,5,5,45.7,128.7,49.86,7,1,1,PC,APC,11.024,0.006,,1,qlp-toi-update-03-29-22,QLP,23:52:37.09,-54:28:08.18,10.067,0.052,-18.873,0.061,2459109.911388,0.0004196,0.8054361,6e-07,1.06,0.171,3.240324,0.004024,2980.0,3.70654,8.06243,0.509925,2752.55,2017.0,98.0,336.367,4.922,5905.0,456.4,4.13,0.69,1.4,0.07,,,1.11,0.140841,"1,2,28,29",2018-12-20,2022-03-29,2022-12-14 12:09:24,V-shaped; TFOP APC: previously retired as BEB due to chromaticity; some odd-even,293,1,False,False,False -188570092,294.01,,4,5,5,4,4,4,4,33.5,147.7,65.69,1,3,8,CP,CP,11.3875,0.006,,1,qlp-s42-tois,QLP,22:36:06.2,-17:00:01.1,-108.621,0.09,-84.412,0.078,2459457.973621,0.0006235,7.327945,5.6e-06,2.896,0.118,14.988425,0.002425,13710.0,2.23389,9.49027,0.754797,39.3409,697.0,92.0,127.589,0.6115,4521.0,122.6,4.5,0.1,0.79,0.06,,,0.711,0.0828359,"2,42",2018-12-20,2022-09-20,2022-12-14 12:09:24,HATS-72 b,294,1,False,False,True -327952677,295.01,,4,5,5,5,5,4,5,45.5,113.0,127.5,0,2,3,PC,KP,12.141,0.007,,1,spoc,UNKNOWN,23:56:22.05,-13:16:17.9,17.966,0.076,-10.457,0.078,2458356.40432,0.00113,3.39710906033268,0.0003054934,2.37703933371829,0.07758161,10.770156,0.294652,9870.6425555933,271.34814,13.9990068106494,0.79734784,840.334678084522,1373.19692124538,32.08208,488.387,13.5285,5864.0,119.7,4.26,0.08,1.27071,0.0667387,,,1.06,0.134787,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,WASP-146 b,295,1,False,False,True -382463648,296.01,,3,4,4,3,1,4,4,3.6,31.4,59.86,7,0,0,PC,PC,13.1066,0.006,,1,qlp,QLP,23:32:25.23,-45:54:34.45,44.379,0.024,-14.217,0.027,2458355.52978,0.00317,25.2584,0.00019,3.48,0.235,10.23227,0.009312,9380.0,8.57642,9.01035,,9.35124,487.0,16.0,471.798,4.7615,5290.0,122.0,4.45,,0.95,,,,0.91,,"2,28,29",2018-12-20,2020-10-27,2022-12-14 12:09:24,The period could be either 12.635 or 25.27,296,1,False,False,True -115242351,297.01,,3,4,4,3,3,4,4,13.7,46.2,65.87,5,0,1,PC,PC,13.1099,0.006,,1,qlp,QLP,00:24:42.47,-36:06:52.05,12.564,0.037,-10.881,0.026,2458358.77289,0.0076,5.67116,0.00336,1.783,0.722,6.359287,0.516404,5840.0,475.513,9.45482,,81.6876,837.0,9.0,461.513,5.2545,4871.0,122.0,4.26,,1.09,,,,0.79,,2,2018-12-20,2020-05-20,2022-12-14 12:09:24,,297,1,False,False,True -206686292,298.01,,3,5,5,3,3,4,4,126.5,209.1,317.0,9,0,3,PC,APC,12.7602,0.006,,1,spoc,UNKNOWN,22:56:14.57,-34:21:39.98,6.425,0.047,1.438,0.041,2459062.561106,0.001244178,1.32886045197006,0.0001320532,1.67483744185352,0.113110304,10.419158,0.479957,9550.50099439019,441.95895,26.5229153328835,34.92325,6093.49534015434,2253.39004002114,16.722557,957.936,23.873,6273.0,134.7,4.08,0.08,1.67606,0.0840226,,,1.22,0.176795,28,2018-12-20,2020-05-20,2022-12-14 12:09:24,large; V-shaped; RAVE RV error ~8 km/s,298,1,False,False,True -156075294,299.01,,3,4,3,3,3,4,4,13.3,52.5,58.48,7,1,1,PC,PC,12.3012,0.006,,1,spoc,UNKNOWN,00:42:22.71,-48:17:37.04,-2.594,0.025,-12.394,0.031,2458354.69581,0.0036,5.72161990878124,0.0013569265,3.63540660621562,0.26220992,5.903253,0.503661,5422.342805493,463.78128,8.85116733128664,1.0970538,310.563663622327,1070.67437817438,12.404438,447.784,4.533,5541.0,129.6,4.28,0.08,1.19313,0.0641608,,,0.98,0.128263,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,,299,1,False,False,True -166697854,300.01,,5,5,5,5,5,5,5,13.4,48.2,43.24,1,0,1,EB,FP,10.8387,0.006,,1,qlp-s01s02,QLP,02:22:56.98,-53:04:12.7,13.052,0.039,7.754,0.035,2458354.42965,0.00237,2.75753,0.00046,1.376,0.164,1.163936,0.002355,1071.45,2.16867,6.99891,1.46553,197.323,1044.0,17.0,397.391,3.767,5776.5,94.0,2.99,0.25,1.94,0.4,-1.09,0.18,1.04,0.126398,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,TFOP FP; retired as NEB,300,1,False,False,False -144301052,301.01,,3,4,3,3,3,4,4,7.8,30.5,41.18,1,0,1,PC,PC,12.0684,0.006,,1,qlp,QLP,23:37:11.38,-42:00:37.16,-15.825,0.043,-14.399,0.051,2459109.48007,0.00338,3.74405,2e-05,2.919,0.396,1.901703,0.00365,1750.0,3.36199,7.18171,0.501239,613.134,1386.0,11.0,667.745,17.0205,6048.0,127.9,4.03,0.08,1.7,0.09,,,1.13,0.147652,"2,29",2018-12-20,2020-05-20,2022-12-14 12:09:24,,301,1,False,False,True -229111835,302.01,,3,4,3,3,3,4,4,14.5,68.2,51.26,6,0,1,PC,PC,12.9317,0.006,,1,qlp,QLP,01:09:55.51,-52:14:22.15,70.771,0.02,-3.161,0.023,2458356.68237,0.00169,6.70145,0.00101,1.579,0.172,11.943404,0.019304,10940.0,17.7796,8.15246,0.860646,10.4754,501.0,21.0,195.124,0.5595,4130.0,128.0,4.51,0.11,0.74,0.07,,,0.65,0.0800351,2,2018-12-20,2020-05-20,2022-12-14 12:09:24,,302,1,False,False,False -145750719,303.01,,5,5,5,5,5,5,5,22.2,62.5,77.95,0,1,3,KP,KP,12.0213,0.007,,1,qlp-s42-tois,QLP,22:45:27.37,-14:59:30.39,3.481,0.067,-2.787,0.052,2459468.532701,0.0015061,3.5608112,7.9e-06,3.389,0.198,5.322274,0.001242,4890.0,1.14394,10.4972,0.594881,621.482,1390.0,23.0,486.474,8.44,5659.0,126.3,4.1,0.08,1.47,0.08,,,1.0,0.127729,"2,29,42",2018-12-20,2022-10-20,2022-12-14 12:09:24,HATS-60 b,303,1,False,False,True -262530873,304.01,,5,5,5,5,5,5,5,107.6,203.6,317.0,3,0,1,EB,FP,12.5145,0.006,,1,qlp,QLP,01:21:58.57,-44:25:00.29,-4.318,0.027,-1.929,0.029,2458356.28606,0.00539,2.24172,0.00091,3.989,0.304,26.041777,0.031227,23700.0,28.7603,28.4732,1.79744,2815.2,2029.0,16.0,964.641,21.025,6292.0,132.5,3.98,0.09,1.88,0.09,,,1.23,0.176806,"2,3,29",2018-12-20,2020-11-17,2022-12-14 12:09:24,TFOP FP; retired as EB,304,1,False,False,True -102030574,305.01,,3,4,4,3,3,4,4,49.8,106.5,317.0,6,0,1,PC,PC,12.3294,0.006,,1,qlp,SPOC,01:03:22.73,-44:42:20.98,5.301,0.025,-10.528,0.028,2458364.10083,0.00074,9.94915,1e-05,3.968,0.241,25.174691,0.006747,22920.0,6.21401,24.5989,1.30824,110.866,903.0,89.0,689.883,10.2805,5852.0,135.0,4.03,0.08,1.65,0.08,,,1.06,0.128405,"2,29",2018-12-20,2020-11-17,2022-12-14 12:09:24,likely EB;,305,1,False,False,True -114749636,306.01,,3,5,5,3,5,4,5,26.8,84.4,89.22,0,1,3,PC,KP,11.7607,0.006,,1,qlp-s29-tois,QLP,23:56:45.96,-22:09:11.63,-5.295,0.078,-6.964,0.055,2459112.51218,0.00093,4.60273,1e-05,4.023,0.152,7.779964,0.001184,7140.0,1.09065,11.339,0.569524,591.945,1374.0,37.0,436.098,9.1615,5909.0,118.5,4.21,0.07,1.34,0.06,,,1.07,0.135664,"2,29",2018-12-20,2022-10-20,2022-12-14 12:09:24,WASP-147 b,306,1,False,False,True -9100874,307.01,,3,4,4,3,3,4,4,59.1,116.3,317.0,4,0,4,PC,PC,13.1198,0.007,,1,qlp,UNKNOWN,23:22:18.84,-22:40:38.67,16.957,0.056,-7.23,0.05,2459091.687188,0.002230855,6.16679,2e-05,2.163,0.171,8.523829,3.527352,7820.0,3243.54,24.0503,,254.527,1112.0,12.0,738.175,15.427,5747.0,123.0,4.24,,1.28,,,,1.03,,"2,29",2018-12-20,2020-11-17,2022-12-14 12:09:24,odd-even difference; radius is 24 Re so it may be too big.,307,1,False,False,True -281710229,308.01,,5,5,5,5,3,5,5,,,131.13,5,0,1,PC,APC,11.7628,0.006,,1,qlp-toi-update-03-29-22,QLP,00:45:56.33,-55:55:21.58,10.655,3.447,-11.213,3.447,2459108.717597,0.0004382,8.3092965,7e-06,2.201,0.116,18.627251,0.403414,17010.0,371.489,14.2736,2.39114,52.7075,750.0,99.0,,,4801.3,259.3,,,0.85,0.09,,,,,"2,28,29",2018-12-20,2022-03-29,2022-12-14 12:09:24,v-shaped; TFOP; previously retired as BEB due to chromaticity,308,1,False,False,False -228507250,309.01,,3,4,4,3,4,4,4,28.6,99.0,96.28,4,0,7,PC,PC,12.4154,0.006,,1,qlp,UNKNOWN,23:52:09.5,-15:48:03.78,-3.629,2.154,-51.381,2.154,2458360.01144,0.00171,6.15736,1e-05,2.155,0.281,14.141118,0.010949,12940.0,10.0845,,,67.2884,797.0,48.0,345.288,,5329.0,255.4,,,,,,,,,"2,29",2018-12-20,2020-11-19,2022-12-14 12:09:24,No stellar radius; observing notes indicate companion 0.326 arcsec away,309,1,False,False,True -175477257,310.01,,3,4,4,3,3,4,4,24.7,72.3,97.8,4,0,3,PC,PC,12.4191,0.006,,1,qlp,SPOC,23:24:25.4,-36:58:33.59,-2.02,0.072,-1.992,0.069,2458356.58788,0.00149,4.26956,1e-05,3.575,0.14,8.348756,0.001915,7660.0,1.76364,11.9375,0.65607,497.177,1315.0,32.0,557.751,14.742,5798.0,127.0,4.22,0.08,1.3,0.07,,,1.04,0.129723,"2,29",2018-12-20,2020-11-19,2022-12-14 12:09:24,TOI 310; under investigation by TFOP,310,1,False,False,True -434105231,311.01,,5,5,5,5,4,5,5,173.2,92.8,317.0,6,0,4,PC,APC,12.9517,0.006,,1,qlp-s42-tois,QLP,23:37:20.59,-13:27:20.86,52.969,0.052,-30.645,0.043,2459469.021432,0.0003545,0.7962992,4e-07,0.997,0.116,25.452527,0.030523,23170.0,28.1127,14.8058,1.64619,278.056,1137.0,91.0,232.861,1.881,4062.7,135.5,4.61,0.23,0.95,0.1,,,0.63,0.0779767,"2,29,42",2018-12-20,2022-03-29,2022-12-14 12:09:24,maybe EB; V-shaped; some odd-even; chromaticity; TFOP APC,311,1,False,False,True -180145006,312.01,,3,5,5,3,3,4,4,22.5,68.6,75.49,9,0,1,PC,APC,12.2607,0.006,,1,spoc,UNKNOWN,00:58:05.6,-37:56:33.21,7.102,0.05,-6.082,0.043,2458357.54604,0.00258,3.54137869125894,0.00062835315,2.27372228765673,0.16132383,5.259175,0.327561,4832.16666344428,301.6489,10.2854318598024,0.7395744,765.893449976395,1341.71982975517,12.083102,506.715,9.7745,5755.0,126.7,4.23,0.08,1.28259,0.0676131,,,1.03,0.132742,"2,3,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,,312,1,False,False,True -9102327,313.01,,5,5,5,5,5,5,5,12.5,52.2,34.73,2,1,7,EB,FP,11.3018,0.006,,1,qlp-s01s02,QLP,23:23:07.15,-19:25:10.74,-1.191,0.073,5.003,0.057,2458354.54332,0.00351,3.2615,0.00086,2.233,0.211,1.795424,0.003107,1652.28,2.86135,5.07097,0.314799,403.299,1248.0,16.0,304.942,3.442,5963.0,143.3,3.41,0.25,1.13,0.05,-1.3,0.18,0.929,0.11553,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,target star is two stars in Gaia; TFOP FP; retired as NEB,313,1,False,False,False -316769613,314.01,,1,4,1,3,4,4,4,2.1,30.9,7.51,3,2,4,PC,PC,11.1741,0.006,,1,qlp,QLP,23:38:40.39,-32:51:38.68,3.648,0.084,-29.532,0.073,2458355.59503,0.00519,10.18108,0.00011,3.674,0.646,1.292795,0.003893,1190.0,3.58558,2.66019,0.238474,57.0026,765.0,10.0,131.567,0.9315,4822.0,121.8,4.55,0.09,0.78,0.05,,,0.78,0.091789,"2,29",2018-12-20,2020-11-17,2022-12-14 12:09:24,TOI 314. TFOP investigation in progress.,314,1,False,False,True -66356824,315.01,,5,5,5,5,5,5,5,23.3,66.4,86.63,3,0,3,EB,FP,12.4245,0.006,,1,qlp-s29-tois,QLP,00:48:18.3,-32:07:10.06,-7.27,0.063,-26.111,0.043,2459109.39216,0.00204,3.55562,1e-05,1.838,0.38,2.837476,0.223628,2610.0,205.948,11.1675,2.19728,691.805,1428.0,14.0,551.619,12.738,5671.0,127.5,4.19,0.08,1.34,0.07,,,1.01,0.126219,"2,3,29",2018-12-20,2022-10-20,2022-12-14 12:09:24,odd-even; TFOP FP; retired as EB,315,1,False,False,True -8988289,316.01,,5,5,5,5,4,5,5,90.7,328.9,317.0,5,0,3,PC,APC,13.1186,0.006,,1,qlp-s01s02,QLP,23:39:02.2,-09:52:55.28,-30.127,0.104,16.057,0.088,2458365.98759,9e-05,13.32379,0.0,2.561,,109.240405,0.000816,95718.1,0.751665,28.7396,1.39025,12.7172,526.0,48.0,275.027,4.646,4312.0,103.3,4.59,0.22,0.84,0.04,,,0.66,,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,V-shaped; TFOP APC; previously BEB due to chromaticity,316,1,False,False,True -402319411,317.01,,3,4,4,3,4,4,4,54.3,59.0,317.0,4,0,4,PC,PC,12.9238,0.008,,1,spoc-s01-s46-b0A,UNKNOWN,23:34:09.66,-14:51:36.14,51.309,0.059,-20.838,0.037,2459449.442335,0.001379938,3.32628348850358,7.957189e-06,2.94801179986569,0.053143386,27.914629,0.47628,25382.6279206543,438.57346,15.1371973575872,0.8798925,371.947647837047,1120.05720406676,39.734394,446.344,5.5945,5391.0,127.5,4.46,0.08,0.947584986686707,0.052789,,,0.94,0.121342,"2,29,42",2018-12-20,2022-07-15,2022-12-14 12:09:24,,317,1,False,False,True -206352378,318.01,,3,4,4,3,1,4,4,37.8,107.9,96.62,4,0,0,PC,PC,13.2316,0.006,,1,spoc,UNKNOWN,23:40:03.78,-53:02:20.46,35.059,0.029,0.073,0.034,2458327.33174,0.00117,3.74624334761492,0.00037575577,2.15123147298782,0.09149556,21.302207,0.714458,19428.8372991987,657.82324,11.8924474159607,0.38978806,142.432268201934,881.093195244164,23.549446,319.923,2.5615,4696.0,122.0,4.53,,0.775888,,,,0.75,,"1,2,28",2018-12-20,2020-10-01,2022-12-14 12:09:24,V-shaped; need to check if it is on target.,318,1,False,False,True -389753172,319.01,,5,5,5,5,3,5,5,302.4,195.3,317.0,4,0,4,PC,APC,12.7464,0.006,,1,qlp-toi-update-03-29-22,QLP,23:25:09.78,-47:56:44.14,-32.589,0.043,-8.129,0.093,2459086.530897,0.0002584,0.7135373,3e-07,0.892,0.038,20.318489,2.061924,18540.0,1897.3,16.1586,3.83695,667.233,1415.0,146.0,182.561,1.815,4349.7,128.9,4.58,0.22,0.74,0.07,,,0.65,0.0819712,"1,2,28",2018-12-20,2022-03-29,2022-12-14 12:09:24,There is a potential odd even; TFOP APC: previously retired as BEB due to chromaticity,319,1,False,False,False -188593930,320.01,,5,5,5,5,5,5,5,15.0,70.5,24.74,5,2,3,EB,FP,12.3574,0.007,,1,qlp-s01s02,QLP,23:02:05.43,-16:21:38.52,-28.458,0.068,-176.929,0.056,2458354.27607,0.00343,1.46503,0.00029,1.145,0.252,3.438668,0.010086,3162.12,9.28965,5.43222,0.825769,601.367,1379.0,15.0,379.256,5.205,5912.5,441.0,4.36,,0.88,0.12,,,1.11,0.137905,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,TFOP FP; retired as NEB,320,1,False,False,True -175476629,321.01,,5,5,5,5,5,5,5,22.5,78.0,34.69,1,0,3,EB,FP,12.8509,0.006,,1,qlp-s01s02,QLP,23:23:54.7,-38:13:32.84,25.692,0.047,-13.893,0.058,2458354.27156,0.00674,1.14057,0.00053,2.188,0.24,5.45213,0.91602,5009.01,843.33,6.52263,2.67802,13201.6,2986.0,16.0,380.053,6.5265,5349.5,38.6,4.44,2.0,0.84,0.01,,,0.93,0.11685,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,TFOP FP; retired as NEB,321,1,False,False,False -198077394,322.01,,3,4,3,3,3,4,4,40.2,43.2,317.0,1,7,2,PC,PC,10.7074,0.006,,1,spoc,UNKNOWN,04:15:18.05,-56:15:13.23,7.012,1.094,15.022,1.094,2459177.739827,0.0014294166,3.99056878677406,5.1962495e-05,3.62536332721091,0.05627554,3.637148,0.065428,3344.33208445162,60.25947,17.0856829354382,0.29093587,862.357433749061,1382.106716341,41.92037,277.798,,5868.2,,,,2.76442003250122,,0.07,0.1,,,"2,3,4,5,12,29,30,31,32",2018-09-28,2021-10-04,2022-12-14 12:09:24,,322,1,False,False,True -251852984,323.01,,3,4,3,3,4,4,4,10.9,44.6,28.88,3,0,3,PC,PC,13.3547,0.006,,1,spoc,UNKNOWN,00:32:48.66,-32:03:33.9,-15.897,0.035,-24.559,0.025,2458355.57459,0.00404,2.77239154333576,0.0005796898,1.82233689252042,0.45648584,6.405178,0.546583,5882.01943541182,503.295,5.84382528104057,2.9952977,193.935173364126,951.774128044412,9.44852,315.141,2.503,4558.0,122.0,4.52,,0.775641,,,,0.72,,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,,323,1,False,False,True -156002449,324.01,,3,4,4,3,1,4,4,42.2,75.8,317.0,3,0,0,PC,PC,13.4081,0.006,,1,spoc,UNKNOWN,00:33:55.68,-50:43:45.96,14.855,0.025,-34.13,0.027,2458357.7274,0.00166,5.28502063602228,0.000723285,4.74107098171423,0.107340716,29.266996,0.739797,26595.8319489519,681.14636,21.1077461215517,0.40959266,523.256020147337,1219.82718553968,24.069998,944.552,18.162,6113.0,122.0,4.29,,1.27295,,,,1.15,,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,Big;,324,1,False,False,True -66413476,325.01,,3,4,3,3,3,4,4,14.4,61.5,30.0,4,0,3,PC,PC,12.004,0.006,,1,qlp,UNKNOWN,00:55:30.5,-33:30:44.3,15.485,0.05,-28.463,0.044,2458357.72126,0.00274,4.36907,1e-05,1.308,0.323,4.318952,0.009435,3970.0,8.69028,5.94716,0.577653,26.8795,634.0,20.0,180.753,1.393,4391.0,122.6,4.36,0.1,0.9,0.08,,,0.69,0.0809133,"2,3,29",2018-12-20,2020-11-17,2022-12-14 12:09:24,There might be some odd even difference.,325,1,False,False,True -144336525,326.01,,5,5,5,5,3,5,5,145.4,113.4,317.0,10,3,1,PC,APC,11.7549,0.006,,1,qlp,QLP,23:44:27.56,-46:51:59.76,-14.323,0.041,-4.79,0.047,2458354.25954,0.00091,0.24733,1e-05,0.499,0.063,7.020577,0.823572,6445.33,758.25,11.0751,3.83251,22981.4,3430.0,36.0,462.239,6.762,6316.0,152.4,3.75,0.12,1.25,0.06,-0.4,0.1,0.94,0.11908,2,2018-12-20,2018-12-20,2022-12-14 12:09:24,really short period.,326,1,False,False,True -206669860,327.01,,3,4,3,3,3,4,4,27.2,54.7,317.0,6,0,3,PC,PC,13.4573,0.006,,1,spoc,UNKNOWN,22:54:31.92,-34:30:09.81,-5.904,0.043,2.902,0.036,2458362.96027,0.00415,10.05525597142,0.0064994176,3.37097624302584,0.45458156,14.056322,1.857608,12862.9072379921,1709.4576,20.9848966877373,30.75577,223.393928885386,986.024238963719,10.837878,958.071,21.836,5960.0,123.0,4.23,,1.31971,,,,1.09,,"2,28",2018-12-20,2020-10-02,2022-12-14 12:09:24,two events; odd even?,327,1,False,False,True -139357541,328.01,,3,4,4,3,3,4,4,32.9,39.4,317.0,3,0,1,PC,PC,12.7703,0.006,,1,qlp,QLP,23:17:57.06,-43:55:31.9,12.568,0.045,2.348,0.05,2458355.80666,0.00294,4.47894,0.00109,1.311,0.229,7.003825,1.398819,6430.0,1287.53,14.7425,4.81127,286.906,1146.0,16.0,659.967,14.1285,6074.0,133.7,4.33,0.08,1.2,0.06,,,1.14,0.152888,2,2018-12-20,2020-05-20,2022-12-14 12:09:24,V-shaped,328,1,False,False,True -169765334,329.01,,4,4,4,4,4,4,4,7.4,36.3,24.89,2,11,8,PC,PC,10.6929,0.007,,1,spoc-s01-s46-b0A,QLP,23:25:17.06,-15:38:04.67,52.133,0.117,5.002,0.082,2459090.796111,0.004066609,5.70433014101753,9.24906e-05,4.31935618004511,0.4035651,0.988508,0.090293,910.034925398469,83.159584,5.35484938970965,0.6973525,576.868959678982,1249.9396429209,8.949549,284.388,4.186,5560.5,123.1,4.01,0.08,1.61147999763489,0.0831859,-0.11,0.1,0.98,0.124394,"2,29,42",2018-12-20,2022-07-15,2022-12-14 12:09:24,,329,1,False,False,True -27966179,330.01,,3,4,3,3,4,4,4,29.5,104.2,61.58,6,0,4,PC,PC,12.8696,0.006,,1,spoc,UNKNOWN,23:55:00.4,-22:32:20.07,25.159,0.045,-36.495,0.036,2458355.6917,0.00101,4.27955476986651,0.00037567076,2.40356401793183,0.102531314,19.158436,0.528512,17490.8003521387,486.6591,9.12358671628699,0.9445165,74.8929519268729,750.291431537242,25.184095,200.326,1.5575,4314.0,123.7,4.57,0.1,0.703041,0.061892,,,0.674,0.0770132,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,check to update the parameters; TOI 330; under investigation by TFOP,330,1,False,False,True -262531275,331.01,,3,4,4,3,3,4,4,9.3,26.7,55.52,2,0,3,PC,PC,13.0261,0.006,,1,qlp,QLP,01:21:40.62,-42:28:54.42,-6.279,0.022,-14.514,0.023,2459141.054998,0.0070202,2.4843369,2.34e-05,1.154,0.295,4.842308,0.019457,4450.0,17.9205,8.59746,,160.141,991.0,12.0,939.136,17.157,5608.0,122.0,3.94,,1.76,,,,0.99,,"2,3,29,30",2018-12-20,2020-12-22,2022-12-14 12:09:24,possible centroid offset; the fainter star to the north has a smaller radius than the target.,331,1,False,False,True -139285832,332.01,,3,4,4,3,4,4,4,11.2,61.4,10.81,7,2,4,PC,PC,11.5273,0.006,,1,qlp,UNKNOWN,23:12:14.15,-44:52:35.35,35.906,0.058,-37.39,0.096,2459062.446886,0.0019729566,0.77685,3e-05,1.43,0.442,0.901535,0.008155,830.0,7.51073,3.28324,0.350139,4180.32,2240.0,15.0,222.852,3.6895,5190.0,133.3,4.42,0.09,0.96,0.06,,,0.88,0.11214,"1,2,28",2018-12-20,2020-11-20,2022-12-14 12:09:24,,332,1,False,False,True -224245334,333.01,,1,4,1,3,4,4,4,4.8,37.2,15.0,8,1,2,PC,PC,11.5166,0.006,,1,qlp,QLP,23:33:25.8,-41:10:17.47,16.701,0.042,1.791,0.05,2458355.55844,0.00559,3.79069,0.00166,2.661,0.472,1.303666,0.005193,1200.0,4.78334,3.9785,0.330637,583.33,1369.0,9.0,352.269,4.7305,6150.0,129.2,4.4,0.08,1.13,0.05,,,1.17,0.159892,2,2018-12-20,2020-05-20,2022-12-14 12:09:24,,333,1,False,False,True -233964642,334.01,,5,5,5,5,3,5,5,87.2,206.8,317.0,1,1,1,PC,APC,9.5498,0.006,,1,spoc-s01-s36-b0A,UNKNOWN,02:25:59.69,-63:38:51.39,-3.306,0.038,-13.937,0.037,2459077.920129,0.00037180504,17.915885404407,0.00021041239,2.0198567360394,0.03846166,9.739683,0.178036,8930.46370754564,163.96385,21.0377150212888,4.4509873,160.019060588177,907.115689736464,74.738754,199.657,0.8155,6090.2,99.1,4.11,0.31,1.56516003608704,0.0696483,,,1.18,0.166641,"2,28,29,30",2018-09-29,2021-12-07,2022-12-14 12:09:24,v-shaped; source is possibly 233964643; TFOP APC; formerly SB1 Per Avi from NRES,334,1,False,False,True -41865539,335.01,,5,5,5,5,5,5,5,26.8,92.4,44.25,3,0,1,EB,FP,12.3571,0.006,,1,qlp-s01s02,QLP,01:25:17.34,-39:56:52.34,-13.501,0.023,-13.674,0.027,2458354.86627,0.00394,1.26092,0.0004,2.718,0.72,5.252382,0.030173,4825.94,27.7901,8.46782,0.678134,5014.81,2344.0,12.0,472.613,4.7065,5875.0,75.2,4.36,,1.11,0.03,-0.28,0.12,1.2,0.171697,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,TFOP FP; retired as NEB,335,1,False,False,False -55452495,336.01,,5,5,5,5,5,5,5,51.3,145.5,317.0,1,0,1,EB,FP,9.9524,0.006,,1,qlp-s36-ffi,UNKNOWN,04:42:40.87,-64:53:06.75,-11.324,0.069,-2.566,0.08,2459328.954596,0.0003343,17.7075811,1.14e-05,1.878,0.067,5.005909,0.044526,4600.0,41.0094,26.2792,2.19335,107.347,896.0,105.0,600.497,14.7285,7859.0,158.5,4.12,1.52,2.8,0.1,,,1.88,0.301251,"1,2,3,4,5,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36",2018-10-01,2022-07-11,2022-12-14 12:09:24,TFOPWG FP Retired as NEB,336,1,False,False,True -155986102,337.01,,5,5,5,5,5,5,5,99.8,192.2,317.0,2,0,3,EB,FP,12.0235,0.006,,1,qlp-s01s02,QLP,00:29:19.22,-50:08:24.19,27.779,1.146,18.042,1.146,2458360.61731,0.00148,6.87168,0.00112,3.16,0.165,43.472209,3.633278,39248.4,3340.78,28.967,8.47293,380.128,1230.0,26.0,292.682,,5446.0,57.0,4.43,2.0,1.33,0.03,,,,,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,TFOP FP: retired as eccentric EB,337,1,False,False,False -116156517,338.01,,3,5,5,3,5,4,5,31.6,91.8,131.15,0,0,1,KP,KP,11.3151,0.006,,1,qlp-s29-tois,QLP,00:30:50.29,-40:34:24.46,38.231,0.03,-9.135,0.039,2459108.86073,0.00095,5.36777,1e-05,4.271,0.164,7.24426,0.001001,6650.0,0.921726,14.2607,0.695606,747.132,1456.0,18.0,542.251,9.952,6561.0,138.0,4.1,0.09,1.72,0.08,,,1.36,0.223669,"2,29",2018-12-20,2022-10-20,2022-12-14 12:09:24,WASP-190 b,338,1,False,False,True -69838258,339.01,,5,5,5,5,5,5,5,51.6,90.7,317.0,1,0,1,EB,FP,12.0885,0.011,,1,qlp-s01s02,QLP,22:31:41.19,-21:56:44.53,-3.88,0.084,-5.173,0.064,2458354.57336,0.00139,6.73069,0.00072,3.503,0.193,16.102705,0.007949,14721.7,7.32169,22.1494,0.857494,457.721,1288.0,61.0,650.653,17.711,6048.2,96.2,4.28,,1.66,0.05,,,1.23,0.180575,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,WASP confirms NEB; TFOP FP,339,1,False,False,False -80439101,340.01,,3,4,3,3,3,3,3,82.3,198.4,317.0,2,0,1,PC,PC,12.6435,0.006,,1,qlp,QLP,00:46:59.36,-44:22:11.82,2.997,1.061,-4.86,1.061,2458361.05759,0.00237,7.42229,0.00093,6.432,0.37,49.911991,0.466839,44930.0,429.882,,,766.624,1465.0,57.0,497.551,,5829.0,242.2,,,,,,,,,2,2018-12-20,2020-05-20,2022-12-14 12:09:24,V-shaped; likely EB; period could be twice the reported.,340,1,False,False,True -33911302,341.01,,3,4,4,3,4,4,4,45.6,95.5,92.26,5,0,4,PC,PC,13.3302,0.007,,1,qlp,QLP,23:43:22.8,-23:59:52.88,15.483,0.097,-22.345,0.062,2458355.75117,0.00169,1.81383,0.00024,1.113,0.123,14.394141,0.020436,13170.0,18.8225,11.581,,120.54,923.0,22.0,415.551,8.7935,4775.0,125.0,4.38,,0.94,,,,0.77,,2,2018-12-20,2020-05-20,2022-12-14 12:09:24,,341,1,False,False,False -415969574,342.01,,5,5,5,5,5,5,5,11.5,51.4,82.69,2,0,1,EB,FP,12.8691,0.008,,1,qlp-s01s02,QLP,22:48:40.9,-18:31:13.68,19.229,2.15,-3.888,2.149,2458362.57199,0.00281,10.45776,0.00388,3.148,0.289,9.567455,0.013427,8773.24,12.3668,,,65.5508,792.0,21.0,508.84,,5800.0,200.4,4.38,,,,,,,,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,TFOP FP; retired as SEB2,342,1,False,False,True -66497310,343.01,,3,4,3,3,4,4,4,10.7,43.3,28.39,6,2,5,PC,PC,12.4115,0.007,,1,qlp-s29-tois,QLP,23:44:10.89,-18:53:22.29,10.887,0.079,-3.309,0.075,2459112.51263,0.0031,1.75807,1e-05,1.292,0.319,2.137746,0.012429,1967.0,11.4476,5.77485,0.545185,507.461,1322.0,1000.0,519.27,14.05,5885.0,121.6,4.31,0.08,1.2,0.06,,,1.07,0.134429,"2,29",2018-12-20,2022-10-20,2022-12-14 12:09:24,,343,1,False,False,True -13023378,344.01,,3,4,3,3,3,4,4,18.0,78.3,65.16,4,3,5,PC,PC,11.9221,0.007,,1,spoc,UNKNOWN,23:08:12.9,-28:00:28.17,31.013,0.07,2.948,0.077,2458358.25733,0.00177,6.06685333340284,0.00067980116,3.08241414502157,0.121974826,7.944468,0.250754,7290.42076245326,230.9261,9.43237428972711,0.6147582,316.791198722007,1076.00187070422,23.049313,404.201,8.737001,6149.0,126.6,4.44,0.08,1.0794,0.0536482,,,1.17,0.163908,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,TOI 344,344,1,False,False,True -308208458,345.01,,1,4,1,3,1,4,4,7.4,39.6,67.3,7,0,0,PC,PC,13.5263,0.006,,1,spoc,UNKNOWN,00:22:47.27,-34:23:31.78,-1.764,0.045,-6.28,0.026,2458362.15706,0.00301,11.2187717934563,0.004739248,3.26914367965273,0.38343504,12.486542,0.967587,11434.6520657709,890.78394,9.61301471151015,1.4001429,57.972233745698,703.760290485508,11.78544,516.33,7.709,5136.0,122.0,4.47,,0.903365,,,,0.87,,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,possible odd even;,345,1,False,False,True -118327533,346.01,,3,4,4,3,3,4,4,83.4,230.7,317.0,12,0,1,PC,PC,12.7291,0.006,,1,qlp,QLP,00:41:22.68,-37:20:34.87,4.562,0.041,-4.618,0.032,2458354.79225,0.00155,8.28154,0.00099,2.317,0.157,15.318724,2.810491,14010.0,2585.21,30.0184,7.70669,184.89,1027.0,18.0,745.217,16.5315,6177.0,125.1,4.25,0.08,1.35,0.06,,,1.18,0.160467,2,2018-12-20,2020-05-20,2023-02-22 00:00:00,the period is twice as reported; V-shaped.,346,1,False,False,True -224271611,347.01,,1,4,1,3,3,4,4,38.5,108.5,99.94,5,1,1,PC,PC,11.2043,0.006,,1,qlp,QLP,23:37:57.56,-36:34:17.88,-6.342,0.086,-12.054,0.06,2458355.18601,0.00428,4.04003,1e-05,0.196,0.08,0.903709,0.125113,832.0,115.227,12.106,1.88226,1.86549,325.0,1000.0,344.084,5.0925,5692.2,130.0,4.1,0.08,1.48,0.08,-0.46,0.1,1.01,0.12444,"2,29",2018-12-20,2020-11-17,2022-12-14 12:09:24,,347,1,False,False,True -70785910,348.01,,3,4,4,3,4,4,4,16.9,53.9,30.91,8,1,3,PC,PC,12.2494,0.006,,1,qlp,UNKNOWN,00:06:20.06,-30:20:11.01,-5.809,0.082,-26.065,0.062,2459112.36055,0.00243,0.49346,0.0,1.79,0.466,1.80382,0.084043,1660.0,77.4038,6.07416,1.50402,19124.6,3276.0,27.0,607.923,22.4195,5879.0,124.1,4.11,0.08,1.51,0.09,,,1.07,0.131183,"2,29",2018-12-20,2020-05-20,2022-12-14 12:09:24,a/Rs < 2; odd-even; may be stellar variability,348,1,False,False,True -382474101,349.01,,5,5,5,5,5,5,5,122.6,306.2,131.37,0,1,0,PC,FP,10.179,0.04,,1,qlp-toi-update-03-29-22,QLP,00:49:05.83,-52:02:47.5,-7.4,2.0,-5.2,2.0,2459107.753084,0.0002037,2.6520851,1.3e-06,3.56,0.049,11.877542,0.000235,10880.0,0.216525,,,,,193.0,216.661,,6054.0,193.0,4.29,2.0,,,,,,,"2,29",2018-12-20,2022-03-29,2022-12-14 12:09:24,400 ppm secondary; synchronized; likely EB; TFOP APC,349,1,False,False,True -199731190,350.01,,5,5,5,5,3,5,5,30.0,107.8,55.08,5,0,1,PC,APC,12.3856,0.006,,1,qlp-toi-update-03-29-22,QLP,01:25:10.09,-47:15:46.19,11.019,0.025,26.953,0.028,2459109.819661,0.0015289,2.5130547,6.2e-06,1.796,0.216,5.496859,0.59271,5050.0,545.757,8.55709,2.22347,1258.82,1659.0,32.0,341.681,2.2095,5635.0,280.6,4.41,2.0,0.85,0.04,,,1.0,0.121412,"2,3,29",2018-12-20,2022-03-29,2022-12-14 12:09:24,TFOP APC: previously retired as BEB to chromaticity; odd-even,350,1,False,False,True -228381868,351.01,,3,5,5,3,5,4,5,19.1,49.9,115.44,0,1,1,PC,KP,12.0719,0.007,,1,spoc,UNKNOWN,23:50:19.36,-17:04:39.34,28.016,0.077,-3.212,0.072,2458356.67382,0.00242,6.93030367727826,0.001148127,4.11595789665725,0.20288052,5.965901,0.272656,5479.72878434781,251.09369,13.2037039624884,1.379518,545.158725435009,1232.39659985336,14.615005,602.236,27.416,5570.3,131.6,3.93,0.09,1.77738,0.128781,0.22,0.1,0.98,0.1238,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,star is evolved,351,1,False,False,True -47423120,352.01,,5,5,5,5,4,5,5,99.6,263.3,317.0,3,2,5,PC,APC,11.014,0.007,,1,qlp-s01s02,QLP,22:48:16.21,-24:50:19.26,9.592,0.222,-20.271,0.111,2458356.83006,0.0002,11.6235,0.00022,2.783,0.142,49.660444,0.021681,44708.7,19.9684,20.7208,1.02159,31.7369,661.0,230.0,183.391,2.38,5518.0,125.0,4.34,2.0,0.89,0.04,,,1.0,0.126548,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,The period could be half; TFOP APC: previously retired as SB1 due to CHIRON RVs,352,1,False,False,False -100099031,353.01,,3,4,4,3,3,4,4,154.6,248.5,317.0,12,0,2,PC,PC,13.4735,0.006,,1,spoc,UNKNOWN,01:37:05.37,-46:56:43.23,-0.214,0.022,-1.979,0.025,2459088.398145,0.0016571997,1.29794344397235,6.727932e-05,2.42519259050173,0.12685962,11.565922,0.562175,10596.0695936946,517.648,39.1529227509787,22.587591,1915.91219014114,1687.38292368422,20.798897,1367.8,33.885,4965.0,122.0,,,2.63993000984192,,,,,,"2,3,29,30",2018-12-20,2021-10-04,2022-12-14 12:09:24,Too large radius for a planet; 4 sigma odd-even in multisector report,353,1,False,False,True -100097716,354.01,,3,5,5,3,3,4,4,202.6,332.3,317.0,3,0,5,PC,APC,11.3534,0.006,,1,qlp-s30-tois,QLP,01:36:11.49,-42:18:13.34,24.819,0.076,14.274,0.082,2459140.430589,0.0003533,3.0002084,2.2e-06,1.7,0.075,9.317482,1.606786,8545.0,1478.81,25.2021,6.12219,777.419,1471.0,21.0,366.824,8.772,5767.0,121.0,4.15,0.08,1.41,0.07,,,1.03,0.129583,"2,3,29,30",2018-12-20,2022-10-20,2022-12-14 12:09:24,Two stars in the same pixel; possible synchronized spot rotation; Large radius; V shaped,354,1,False,False,True -183593642,355.01,,3,4,4,3,3,4,4,14.2,63.7,19.26,5,1,3,PC,PC,10.9767,0.006,,1,spoc,UNKNOWN,01:11:33.17,-36:42:32.83,35.519,0.087,-4.763,0.082,2459088.426719,0.000861738,1.03733669426054,3.1091786e-05,0.844118310685471,0.2519084,1.226587,0.080555,1129.09022461973,74.19124,4.60481417073014,2.789955,4759.48748938522,2118.40892250233,13.802426,313.032,5.496,6049.0,134.5,4.25,0.08,1.31649994850159,0.0655226,,,1.13,0.150143,"2,3,29,30",2018-12-20,2021-10-04,2022-12-14 12:09:24,,355,1,False,False,True -369336146,356.01,,3,4,3,3,3,4,4,9.5,30.0,77.71,1,0,1,PC,PC,13.0524,0.006,,1,qlp,QLP,00:24:16.81,-37:13:19.32,19.981,0.036,8.935,0.026,2458358.03764,0.00596,5.76946,5e-05,3.566,0.685,4.166353,0.009604,3830.0,8.8459,10.469,,269.636,1128.0,9.0,835.557,18.0745,5499.0,122.0,4.01,,1.6,,,,0.96,,"2,29",2018-12-20,2020-11-17,2022-12-14 12:09:24,Odd-even. TOI 356. TFOP investigation in progress.,356,1,False,False,True -220016044,357.01,,5,5,5,5,5,5,5,14.8,51.1,35.65,1,1,1,PC,FP,10.3987,0.006,,1,spoc,UNKNOWN,02:09:17.25,-48:29:05.07,13.651,0.039,-3.888,0.044,2459088.390424,0.00117792,0.939966443907959,4.034052e-05,1.12249199834294,0.2695821,0.638532,0.048507,587.936424492942,44.67597,6.6149455860135,2.76346,22464.7891995886,3122.44887680852,11.185909,480.322,7.123,6300.3,140.1,3.72,0.09,2.54649996757507,0.137786,-0.22,0.12,1.24,0.183218,"2,3,29,30",2018-12-20,2021-09-29,2023-05-19 12:02:39,weak signal; Event on TIC 220016046 in spoc multisector,357,1,False,False,True -321982642,358.01,,3,4,4,3,3,4,4,30.0,48.6,317.0,3,0,1,PC,PC,12.8895,0.006,,1,spoc,UNKNOWN,00:12:14.69,-47:21:19.52,36.832,0.022,-1.015,0.026,2458356.32633,0.00147,9.10408665970085,0.0011821483,1.8450607780648,0.09494752,17.411953,1.248923,15909.0934490164,1149.6396,17.6003853935775,1.3817391,164.938585737707,914.008671747845,16.757868,579.028,7.531,5467.0,130.0,4.26,0.09,1.20905,0.0658944,,,0.96,0.126567,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,odd/even not reliable,358,1,False,False,True -80432617,359.01,,3,4,4,3,3,4,4,4.2,19.0,56.08,0,0,1,PC,PC,12.3409,0.006,,1,qlp,QLP,00:46:41.56,-42:21:42.45,12.734,0.036,-9.143,0.046,2458360.67423,0.01071,16.45209,0.0,6.461,2.104,3.610641,0.019078,3320.0,17.571,8.62362,1.00106,,,10.0,715.834,19.724,5573.0,130.8,3.89,0.08,1.85,0.11,,,0.98,0.124983,2,2018-12-20,2020-08-03,2022-12-14 12:09:24,two events (near 1360 and 1377); wrong period in report,359,1,False,False,True -13023738,360.01,,5,5,5,5,5,5,5,58.4,108.4,317.0,3,0,5,PC,FP,12.2524,0.007,,1,qlp,QLP,23:08:20.37,-29:35:25.61,15.536,0.084,-29.348,0.079,2459104.87232,0.00351,8.0635,6e-05,3.396,0.371,5.63873,1.830432,5180.0,1684.47,24.3071,7.87344,621.088,1390.0,22.0,646.707,25.1075,5657.0,118.0,3.97,0.08,1.71,0.1,,,1.0,0.125809,"2,29",2018-12-20,2020-05-20,2022-12-14 12:09:24,Centroid shift. Potential secondary at 0.4 phase (eccentric). Very large/inflated planet radius for period.,360,1,False,False,True -144276942,361.01,,5,5,5,5,4,5,5,50.0,139.2,37.69,8,0,2,PC,APC,11.9699,0.006,,1,spoc,QLP,23:35:36.88,-44:48:31.71,-65.393,0.044,3.159,0.055,2459062.236399,0.0014173058,1.53516515472807,7.3934236e-05,0.949262763183595,0.122602664,3.237744,0.271163,2977.63064947235,249.71916,6.83507859388203,14.089044,277.515114291955,1040.97766105361,11.533315,123.083,0.617,4215.0,87.4,4.59,0.22,0.744572997093201,0.0762965,,,0.64,0.0780613,"28,29",2018-12-20,2021-11-12,2022-12-14 12:09:24,TFOP APC; formerly retired as BEB,361,1,False,False,True -305048116,362.01,,3,4,4,3,4,4,4,7.5,40.1,39.94,8,1,2,PC,PC,12.5633,0.008,,1,qlp,UNKNOWN,23:32:57.21,-28:19:11.33,39.257,0.063,-8.084,0.093,2458357.85959,0.0039,7.11686,4e-05,2.09,0.358,4.951373,0.010874,4550.0,10.0153,7.04524,0.576666,68.1786,800.0,12.0,451.998,17.8955,5692.0,127.9,4.41,0.08,1.03,0.07,,,1.01,0.127536,"2,29",2018-12-20,2020-11-17,2022-12-14 12:09:24,the super bright star to the southwest is TIC 304698788; does not have a signal.,362,1,False,False,True -262530780,363.01,,3,5,5,3,3,4,4,20.1,71.3,104.8,9,0,1,PC,APC,12.9465,0.006,,1,qlp,QLP,01:22:11.34,-44:51:43.73,-3.498,0.021,-43.896,0.024,2458361.87743,0.00184,8.22388,2e-05,1.834,0.267,17.721918,0.01711,16190.0,15.759,12.4698,0.873927,24.2523,618.0,16.0,440.102,3.36,5177.0,130.0,4.39,0.09,0.99,0.06,,,0.88,0.111392,"2,3,29",2018-12-20,2020-11-19,2022-12-14 12:09:24,,363,1,False,False,True -47425697,364.01,,2,5,5,5,4,2,4,10.7,67.3,10.03,4,6,9,PC,PC,10.4913,0.007,,1,qlp,QLP,22:49:01.48,-24:57:33.46,13.7,2.8,-11.7,2.5,2458354.46949,0.00517,0.49393,0.00018,0.89,0.395,0.488691,0.010861,450.0,10.0033,3.13247,,4398.92,,10.0,265.729,,6219.7,,,,1.33,,0.12,0.12,,,2,2018-12-20,2020-05-20,2022-12-14 12:09:24,a little v-shaped; possible EB,364,1,False,False,True -118586896,365.01,,3,5,5,3,3,4,4,71.3,250.1,317.0,2,0,1,PC,APC,13.2642,0.006,,1,qlp-s29-tois,QLP,00:43:41.37,-38:02:35.57,12.306,0.036,-10.616,0.029,2459104.69905,0.00107,12.11028,3e-05,3.335,0.125,38.749226,1.575743,35060.0,1450.26,34.1747,,89.3226,856.0,47.0,821.517,20.972,5808.0,122.0,4.23,,1.29,,,,1.04,,"2,29",2018-12-20,2022-07-11,2022-12-14 12:09:24,likely EB; V-shaped,365,1,False,False,True -251878904,366.01,,3,4,3,3,3,4,4,28.4,61.5,102.06,3,0,2,PC,PC,13.5477,0.006,,1,spoc,UNKNOWN,00:38:46.1,-34:12:53.67,17.581,0.036,-0.825,0.029,2458354.48285,0.00494,1.70257772693735,0.00035627253,1.89733787778424,0.21431707,8.110004,0.724398,7441.76193786515,666.9729,12.2814977052924,0.9881254,1762.7023914461,1652.58763136019,9.595992,841.958,19.0435,5504.0,122.0,4.21,,1.27966,,,,0.97,,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,too faint,366,1,False,False,True -9033144,367.01,,5,5,5,5,5,5,5,204.9,312.7,317.0,1,0,3,PC,FP,9.74346,0.007,,1,qlp,QLP,23:18:25.5,-19:49:25.83,18.43,0.089,16.943,0.072,2458354.28941,0.00056,4.71502,1e-05,3.277,0.118,5.104081,0.714803,4690.0,658.141,18.6907,3.49592,1876.46,1833.0,47.0,157.667,1.3435,5756.9,195.2,3.9,0.12,1.2,0.06,-0.21,0.1,1.09,0.135574,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,likely EB,367,1,False,False,True -77031413,368.01,,5,5,5,5,5,5,5,185.3,175.7,317.0,0,0,1,EB,FP,11.4996,0.006,,1,qlp-s29-tois,QLP,23:36:40.95,-34:36:42.81,87.467,0.062,-8.832,0.064,2459110.92156,0.00018,1.38665,0.0,2.238,0.027,27.132175,0.000251,24680.0,0.231424,15.5656,0.813864,1237.91,1652.0,129.0,233.586,2.2405,5444.0,126.2,4.48,0.08,0.93,0.05,,,0.95,0.119644,"2,29",2018-12-20,2022-10-20,2022-12-14 12:09:24,two stars in the same pixel; retired as FP,368,1,False,False,True -175482273,369.01,,3,4,3,3,3,4,4,,,79.07,3,1,1,PC,PC,9.1692,0.008,,1,spoc,UNKNOWN,23:24:55.06,-38:09:38.85,43.25,2.0,-2.91,2.0,2458354.3448,0.0006,5.46368219788658,0.00037895291,3.1597147165334,0.055150364,3.483842,0.05778,3203.59452811547,53.21558,6.22541716175897,0.095247,271.045449056704,1034.85685184285,56.939404,126.36,,,,,,1.0,,,,,,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,PC (star radius 1.70); Simbad says it's a known double. Gaia did not have a second star at the same coordinate.,369,1,False,False,True -251855940,370.01,,3,4,4,3,3,4,4,44.6,65.8,317.0,10,0,2,PC,PC,13.5134,0.006,,1,spoc,UNKNOWN,00:34:38.32,-32:09:59.68,1.397,0.041,-11.595,0.028,2458354.28979,0.00112,4.0462924075272,0.00036544813,3.03692930578635,0.08738186,30.558742,0.769396,27753.2428971136,708.3886,18.26697501939,0.38204366,446.101720579682,1172.13659223701,30.055717,748.227,16.246,5805.0,123.0,4.41,,1.05486,,,,1.04,,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,VPC; TOI 370; under investigation by TFOP,370,1,False,False,True -156016136,371.01,,3,4,4,3,4,4,4,12.4,55.2,37.73,3,0,4,PC,PC,12.6635,0.006,,1,qlp,UNKNOWN,00:35:41.74,-50:19:01.08,12.081,0.018,2.615,0.019,2459088.520886,0.0020962579,3.48139,1e-05,2.277,0.584,4.809591,0.012239,4420.0,11.2721,6.83771,0.506376,416.738,1258.0,16.0,383.318,2.2245,5389.0,132.7,4.49,0.08,0.91,0.05,,,0.94,0.119654,"2,29",2018-12-20,2020-11-19,2022-12-14 12:09:24,TOI 371.01,371,1,False,False,True -441075486,372.01,,5,5,5,5,4,5,5,189.0,189.2,317.0,1,2,6,PC,APC,12.0312,0.006,,1,qlp-toi-update-03-29-22,QLP,23:59:02.18,-15:36:43.28,11.936,1.138,-3.979,1.028,2459112.07285,0.0002789,1.1202752,6e-07,2.095,0.056,19.135451,0.466985,17470.0,430.017,17.524,,4430.07,,185.0,340.037,,5769.7,78.5,4.42,2.0,0.99,,,,,,"2,29",2018-12-20,2022-03-29,2022-12-14 12:09:24,likely EB; V-shaped; TFOP APC; previously BEB due to chromaticity,372,1,False,False,False -9032368,373.01,,5,5,5,5,5,5,5,20.5,61.7,63.43,3,0,2,PC,FP,13.2889,0.007,,1,qlp,QLP,23:43:36.46,-11:16:10.45,11.261,0.078,-17.047,0.047,2458355.67942,0.00364,1.632,0.00042,1.466,0.341,5.988031,0.023294,5500.0,21.4543,9.24379,,806.657,1484.0,13.0,741.257,20.804,5997.0,122.0,4.39,,1.11,,,,1.11,,2,2018-12-20,2020-05-20,2022-12-14 12:09:24,target is likely 9032367 (still possible to be a planet);,373,1,False,False,True -183675732,374.01,,3,4,4,3,3,4,4,15.4,49.6,91.04,3,0,1,PC,PC,12.9998,0.006,,1,spoc,UNKNOWN,23:52:54.59,-41:42:01.68,1.938,0.025,2.955,0.029,2458356.62212,0.00294,5.48118606328139,0.0013942897,3.78147273835373,0.26953018,8.597579,0.505905,7887.39275938704,465.84674,11.4828496840762,1.1581366,419.479768392089,1154.24367781949,15.598361,702.626,11.2775,5719.0,130.0,4.23,0.08,1.28194,0.0657236,,,1.02,0.125591,"2,29",2018-12-20,2020-11-06,2022-12-14 12:09:24,,374,1,False,False,True -280097543,375.01,,1,4,1,3,3,4,4,,,98.55,4,4,1,PC,PC,10.4471,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,03:08:35.98,-77:22:59.98,-4.791,0.039,-4.28,0.039,2459369.308889,0.008619997,9.45464472147352,5.5229375e-05,10.1275917543749,0.24739194,1.478535,0.043139,1360.85440576425,39.73127,12.0307813643838,0.9502455,161.291021120705,908.912963006096,25.83482,396.213,3.3565,5001.6,76.0,,,3.27393007278442,,0.0,0.1,,,"1,2,13,27,28,29,39",2018-12-20,2022-03-21,2022-12-14 12:09:24,evolved host star,375,1,False,False,True -144301273,376.01,,3,4,4,3,3,4,4,45.5,115.3,106.48,3,0,1,PC,PC,12.4502,0.006,,1,spoc,UNKNOWN,23:37:46.98,-42:57:58.99,35.442,0.031,-2.415,0.031,2459062.451186,0.0009085171,2.75099153912624,8.1251324e-05,2.00121686635945,0.052657925,11.553855,0.273241,10585.0733958571,251.63293,12.5905340815013,0.77890444,587.646920867933,1255.73750589453,32.584106,398.356,4.1875,5317.0,134.8,4.34,0.09,1.07114005088806,0.0627538,,,0.92,0.117593,"2,28,29",2018-12-20,2021-10-04,2022-12-14 12:09:24,,376,1,False,False,True -139285736,377.01,,5,5,5,5,5,5,5,184.5,160.3,317.0,2,0,1,EB,FP,11.9969,0.006,,1,qlp-s01s02,QLP,23:12:09.55,-45:01:01.54,-7.696,0.055,9.169,0.084,2458326.05107,0.0011,1.55028,5e-05,1.571,0.085,25.852515,2.45295,23529.8,2256.7,14.723,4.58264,1769.75,1806.0,49.0,244.271,4.032,5039.5,80.5,,,0.87,0.03,,,0.77,0.0923334,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,possible centroid offset; TFOP FP; retired as NPC,377,1,False,False,False -20892672,378.01,,5,5,5,5,5,5,5,16.6,54.1,66.94,5,0,6,EB,FP,13.105,0.006,,1,qlp-s01s02,QLP,00:05:35.76,-19:29:22.24,,,,,2458356.50088,0.00214,3.10926,0.00045,2.506,0.221,5.932179,0.004848,5448.84,4.46476,9.58224,9.58616,532.263,1338.0,32.0,629.792,,5894.0,190.0,4.32,,1.18,1.18,,,,,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,2 stars in same pixel with dmag 1; TFOP FP retired as NEB,378,1,False,False,False -220396259,379.01,,5,5,5,5,5,5,5,7.9,48.9,9.61,1,0,5,EB,FP,9.9124,0.006,,1,qlp-s12-ffi,UNKNOWN,04:35:33.97,-56:08:19.86,-1.949,0.04,-34.477,0.042,2458354.70968,0.00121,0.91677,1e-05,1.337,0.359,0.3,0.000954,276.272,0.879078,3.12766,0.205199,4151.31,2236.0,26.0,231.803,1.051,5825.0,97.8,4.04,0.12,1.71,0.06,-0.28,0.1,1.07,0.134417,"2,29",2018-10-01,2021-12-07,2022-12-14 12:09:24,NEB 45,379,1,False,False,True -100014359,380.01,,3,4,4,3,3,4,4,,,112.14,7,0,2,PC,PC,13.5029,0.006,,1,spoc,SPOC,01:33:07.34,-47:52:55.5,13.038,3.086,-6.011,3.086,2459088.505634,0.00046442237,0.504539765243224,7.881176e-06,1.65139948886547,0.038734835,21.42291,0.471623,19537.8424052688,434.2866,18.3768140709137,3.3280954,6493.74891225542,2289.51568220242,27.54942,,,5227.0,166.8,,,1.0,,,,,,"29,30",2018-12-20,2021-10-04,2023-07-03 00:00:00,no stellar parameters; Gaia radius is .7 Rsun; planet radius likely smaller (~12 Rearth); v-shaped,380,1,False,False,True -207084429,381.01,,5,5,5,5,5,5,5,12.9,98.0,10.97,0,6,1,EB,FP,7.1995,0.006,,1,qlp-s29-ffi,UNKNOWN,01:31:01.81,-51:12:56.64,135.947,0.045,-69.874,0.037,2458356.07068,0.00362,4.89577,4e-05,2.478,0.141,0.390935,0.000237,360.0,0.218278,3.30734,0.167954,240.778,1097.0,21.0,75.5476,0.1708,5883.0,52.4,,,1.77,0.08,,,1.13,0.144918,"2,29",2018-12-20,2021-12-06,2022-12-14 12:09:24,TFOP FP; retired as NEB,381,1,False,False,True -229091748,382.01,,5,5,5,5,5,5,5,28.0,87.0,36.52,2,0,1,EB,FP,12.7226,0.006,,1,qlp-s01s02,QLP,00:15:11.48,-46:16:20.74,18.813,0.021,0.176,0.027,2458354.59152,0.00135,0.4568,4e-05,0.548,0.067,3.72906,0.010422,3428.7,9.59936,6.64264,0.384265,1132.97,1616.0,17.0,506.62,5.226,5777.0,66.7,4.35,,1.03,0.02,,,1.03,0.1291,2,2018-12-20,2021-12-06,2022-12-14 12:09:24,TFOP FP; retired as NEB,382,1,False,False,True -167418898,383.01,,5,5,5,5,5,5,5,53.1,78.7,317.0,2,4,2,PC,FP,10.2401,0.006,,1,qlp,UNKNOWN,06:38:26.3,-67:39:23.02,7.85,2.0,-51.7,2.0,2458335.77147,0.00084,10.98036,6e-05,1.838,0.108,2.859248,0.828295,2630.0,762.597,14.3833,,150.042,,46.0,204.207,,5951.0,,,,1.27,,-0.409232,0.0467469,,,"1,2,3,4,5,6,7,8,9,11,12,13",2019-01-16,2020-05-20,2022-12-14 12:09:24,likely large planet on 167418903; this TIC ID is for a NPC (nearby Planet Candidate),383,1,False,False,True -155995204,384.01,,5,5,5,5,5,5,5,55.4,158.2,317.0,6,1,0,EB,FP,13.5281,0.006,,1,qlp-s01s02,QLP,00:30:38.05,-52:02:57.59,2.344,0.021,10.402,0.023,2458357.58381,0.00235,9.30734,0.00218,4.683,0.274,47.464238,1.570013,42774.4,1444.99,30.7623,5.66372,304.138,1163.0,26.0,958.366,15.7885,5819.0,31.3,4.34,,1.35,0.01,,,1.06,,2,2018-12-20,2021-12-07,2022-12-14 12:09:24,big; TFOP FP; retired as EB,384,1,False,False,True -300810086,385.01,,5,5,5,5,5,5,5,42.2,76.5,50.99,3,14,3,EB,FP,9.0567,0.006,,1,spoc,UNKNOWN,07:47:15.23,-69:01:49.39,-56.531,0.16,72.945,0.166,2459174.431448,0.0009961904,0.668071979530202,4.7882862e-05,0.855690726531346,0.17391123,0.502865,0.043733,463.048552717101,40.278515,8.16489682308946,10.1040745,6871.83166505792,2322.13720986717,12.130832,262.782,6.5695,5159.0,122.0,,,3.77481,,,,,,"1,2,3,4,5,6,7,8,9,10,11,12,13,28,29,30,31,32,33,34",2018-10-01,2021-03-22,2022-12-14 12:09:24,TFOP FP; retired as EB,385,1,False,False,True -238059180,386.01,,3,5,5,3,3,4,4,14.2,57.4,70.41,1,3,1,PC,PC,10.0139,0.006,,1,qlp-s62-ffi,QLP,06:56:33.21,-53:32:43.62,-3.617,0.06,10.127,0.066,2460012.501425,0.0010589,5.1119789,4.7e-06,1.326,0.261,1.104756,0.069,1017.0,63.5493,9.86297,0.440523,392.193,1239.0,32.0,627.07,12.1405,8562.0,152.5,3.91,0.07,2.67,0.09,,,2.13,0.322479,"2,6,7,8,9,12,29,32,33,34,35,39,61,62",2018-10-01,2023-04-04,2023-04-07 12:13:06,v-shaped; two stars about 1'' separation in same pixel; slight depth aperture correlation,386,1,False,False,True -92359850,387.01,,5,5,5,5,5,5,5,57.2,180.7,85.3,0,1,2,EB,FP,9.65521,0.006,,1,qlp,UNKNOWN,03:28:54.15,-19:58:47.31,10.261,0.064,-9.189,0.075,2459167.71222,0.00046,4.155,0.0,2.807,0.298,5.333184,0.002728,4900.0,2.51246,11.0678,0.561924,534.715,1339.0,103.0,218.294,1.9165,6270.0,314.4,4.14,0.4,1.57,0.07,,,1.256,0.186696,"4,31",2019-01-16,2020-12-22,2022-12-14 12:09:24,NEB; HATSouth observations show the event is on the neighbor 92359852,387,1,False,False,True -422655579,388.01,,5,5,5,5,5,5,5,65.7,60.8,317.0,0,0,4,KP,KP,10.1638,0.007,,1,spoc-s01-s46-b0A,UNKNOWN,01:57:03.23,00:45:31.77,23.305,0.096,-7.093,0.086,2459475.891563,0.0008301618,2.90368434195469,1.7246509e-06,5.01534360178435,0.036443934,4.963391,0.05045,4561.01845367787,46.464947,14.6935147524716,0.72139883,3384.60535979197,1945.34556421047,56.24318,362.715,6.8525,6059.0,,3.92334,,2.14324998855591,0.102739,0.37,0.04,1.18,0.162525,"4,42,43",2019-02-08,2022-07-15,2022-12-14 12:09:24,WASP-71 b,388,1,False,False,True -271900960,389.01,,5,5,5,5,5,5,5,25.8,167.9,43.64,1,6,1,EB,FP,8.2606,0.006,,1,qlp-s04-b01,QLP,07:31:46.06,-75:31:39.19,-0.316,0.058,-28.206,0.06,2458330.37074,0.00386,13.45913,0.00113,3.428,0.388,2.804079,0.305607,2579.32,281.435,7.68909,2.55479,897.182,1524.0,13.0,104.344,0.3575,6457.7,115.5,4.43,0.33,1.38,0.05,,,1.46,0.243115,4,2019-01-24,2021-12-07,2022-12-14 12:09:24,TFOP FP; retired as NEB,389,1,False,False,True -250386181,390.01,,5,5,5,5,5,5,5,87.7,291.9,59.14,6,6,6,EB,FP,9.89377,0.006,,1,spoc-s04-b03,UNKNOWN,02:00:27.48,-04:59:08.47,26.427,0.072,-27.85,0.065,2458412.374564,0.000777,1.470258,7.9e-05,1.37737,0.065475,2.811902,0.105994,2586.506638,97.61957,8.656736,6.542141,3333.40856700071,1937.9469590127,26.752861,167.306,1.287,6321.46,53.5103,4.1984,0.096,1.05111,0.116039,-0.4916,0.072,1.247,0.186197,4,2019-02-08,2021-12-07,2022-12-14 12:09:24,TFOP FP; NEB 6,390,1,False,False,True -382391899,391.01,,5,5,5,5,5,5,5,142.5,347.1,114.5,0,0,3,KP,KP,11.0529,0.006,,1,spoc,UNKNOWN,02:54:45.14,-10:53:52.89,3.281,0.072,8.963,0.078,2459169.669461,0.0001318,1.95509315621449,5.389738e-07,1.78762000693986,0.010682647,21.530495,0.112812,19634.9908668172,103.89829,13.1406833635526,0.62092483,690.33980817746,1307.33075758228,217.93053,184.848,1.86,5400.0,,4.53926,,0.873417973518372,0.0410955,0.13,0.03,0.969,0.121331,"4,31",2019-02-08,2021-12-02,2022-12-14 12:09:24,WASP-50b,391,1,False,False,True -328350926,392.01,,5,5,5,5,3,5,5,1456.0,1830.8,317.0,3,3,1,PC,APC,8.300901,0.006,,1,qlp,UNKNOWN,03:07:43.61,00:51:39.32,0.495,0.092,-94.736,0.088,2459169.813944,9.13e-05,0.8490649,2e-07,1.357,0.027,3.098766,1.501841,2850.0,1382.29,24.3308,6.02564,5604.16,2410.0,67.0,87.4715,0.3638,5624.7,74.5,,,1.44,0.08,,,0.99,0.119487,"4,31",2019-01-24,2021-01-28,2022-12-14 12:09:24,same pixel as 328350925 and 328350924,392,1,False,False,True -29960109,393.01,,5,5,5,5,5,5,5,5.5,67.8,3.55,2,4,8,PC,FP,11.2003,0.007,,1,qlp,UNKNOWN,02:49:00.02,-14:32:15.53,174.42,0.061,45.414,0.065,2458411.66942,0.00298,2.49221,0.00061,1.605,0.221,1.60808,0.004038,1480.0,3.7192,1.71311,0.10767,43.3259,714.0,12.0,37.8932,0.0513,3450.0,157.0,4.78,0.01,0.45,0.01,,,0.443322,0.0202933,4,2019-01-16,2020-05-20,2022-12-14 12:09:24,may be on 29960110,393,1,False,False,True -9858404,394.01,,5,5,5,5,3,5,5,65.8,223.4,28.51,2,4,3,EB,APC,8.00006,0.006,,1,qlp,QLP,03:13:59.87,-08:34:25.86,-9.321,0.111,-76.262,0.123,2458411.26947,0.00101,0.39149,2e-05,0.746,0.167,0.627956,0.003215,578.202,2.96102,5.95564,0.485043,13030.0,2976.0,35.0,142.401,1.523,6216.1,120.4,3.73,0.43,2.25,0.09,,,1.254,0.193135,"4,31",2019-01-24,2021-01-10,2022-12-14 12:09:24,v-shaped; some odd-even,394,1,False,False,True -38541473,395.01,,5,5,5,5,3,5,5,184.5,408.3,317.0,0,1,1,EB,APC,10.7706,0.007,,1,spoc-s01-s36-b0A,UNKNOWN,03:45:13.12,-10:58:24.43,17.911,0.083,-17.679,0.068,2458415.515103,0.0003181695,6.06134411974424,3.8455055e-06,2.57968294197407,0.03387716,16.791048,0.20298,15346.1553013579,186.93407,27.9104500327566,5.303542,618.188095867385,1271.74461987666,110.04631,321.882,5.521,5949.2,147.6,,,1.53715002536774,0.0856533,-0.232902,0.0124134,1.13,0.146773,"4,31",2019-01-16,2021-12-07,2022-12-14 12:09:24,large; CORALIE spectra indicate EBLM,395,1,False,False,True -178155732,396.01,,1,4,1,5,4,4,4,15.0,175.3,6.32,7,12,5,CP,CP,5.9053,0.006,,1,spoc,UNKNOWN,02:51:56.39,-30:48:50.62,123.229,0.07,105.788,0.151,2459120.537697,0.0019433465,5.9739124488142,1.8663182e-05,3.12354641906766,0.12901346,0.25253,0.011664,232.562102714304,10.742767,2.39177346900107,0.123329535,488.008922617661,1198.74467287986,15.300015,31.964,0.0721,6308.31,52.7451,4.438,,1.28450000286102,0.0539246,,,1.24,0.18028,"4,30,31",2019-02-08,2021-12-02,2022-12-14 12:09:24,HR 858 c / TOI 396.01,396,1,True,False,True -178155732,396.02,,1,4,1,1,4,4,4,11.1,141.3,3.82,7,12,5,PC,CP,5.9053,0.006,,2,qlp,SPOC,02:51:56.39,-30:48:50.62,123.229,0.07,105.788,0.151,2459169.27128,0.00163,3.58529,1e-05,2.495,0.372,0.19545,0.000178,180.0,0.16408,1.77141,0.0938401,646.628,1404.0,19.0,31.964,0.0721,6308.31,52.7451,4.438,,1.28,0.05,,,1.24,0.18028,"3,4,30,31",2019-02-08,2020-12-22,2022-12-14 12:09:24,confirmed planet - Vanderburg 2019; HR 858 b; QLP S30 SNR < 9 but forced to 1000 to generate report,396,2,True,False,True -178155732,396.03,,1,4,1,1,4,4,4,7.5,118.0,4.97,7,12,5,CP,CP,5.9053,0.006,,3,spoc,SPOC,02:51:56.39,-30:48:50.62,123.229,0.07,105.788,0.151,2459117.261055,0.0023453424,11.2304604770758,4.5497905e-05,3.60099783661596,0.2030101,0.22654,0.016847,208.629137029025,15.516351,2.07546645705082,0.20931257,210.33400054343,971.285980313235,11.041638,31.964,0.0721,6308.31,52.7451,4.438,,1.28450000286102,0.0539246,,,1.24,0.18028,"4,30,31",2020-06-24,2021-12-02,2022-12-14 12:09:24,HR 858 d,396,3,True,False,True -219379012,397.01,,5,5,5,5,5,5,5,13.2,83.4,13.52,3,0,1,EB,FP,10.231,0.006,,1,qlp-s31-ffi,UNKNOWN,05:07:20.07,-48:06:57.2,-29.75,0.044,9.784,0.049,2459168.724537,0.0028251,1.5464949,6.4e-06,1.101,0.234,1.010204,0.002075,930.0,1.91113,3.7295,0.273399,438.793,1275.0,21.0,167.009,0.6115,5973.5,185.9,3.89,0.12,1.14,0.06,-0.880207,0.0951969,1.0,0.123438,"4,5,6,31",2019-01-16,2021-12-07,2022-12-14 12:09:24,close companion star 219379014; TFOP FP; retired as NEB,397,1,False,False,True -1129033,398.01,,5,5,5,5,5,5,5,332.9,769.9,113.76,1,0,4,KP,KP,9.62713,0.007,,1,spoc,UNKNOWN,02:28:37.33,-07:03:38.4,93.889,0.129,-1.567,0.207,2459168.520849,5.56e-05,1.36002827981971,2.0811382e-07,2.16527507554805,0.0051234406,21.300942,0.050612,19427.6944703414,46.61427,13.0911812605723,0.60228205,1343.15682727954,1544.01469919902,482.2753,105.166,1.1955,5500.0,,4.48298,,0.933974981307983,0.0429146,0.07,0.03,0.991,0.120696,"4,31",2019-02-08,2021-12-02,2022-12-14 12:09:24,WASP-77 A b,398,1,False,False,True -219388773,399.01,,5,5,5,5,5,5,5,12.4,77.8,9.03,3,0,1,PC,FP,10.6793,0.006,,1,spoc,UNKNOWN,05:08:11.42,-50:51:32.06,-0.317,0.055,-27.908,0.071,2458412.386626,0.003344,1.571151,0.000355,1.335381,0.194366,0.858541,0.116499,790.433214,107.293594,3.541384,0.532752,715.677233282965,1319.16478715241,7.349477,106.507,0.4305,4752.8,64.0,4.37,0.12,0.982066,0.103283,0.08,0.08,0.76,0.0878652,4,2019-01-31,2019-01-31,2022-12-14 12:09:24,follow-up in progress,399,1,False,False,True -35857242,400.01,,5,5,5,5,5,5,5,52.8,57.7,317.0,0,1,3,KP,KP,11.3161,0.008,,1,qlp,UNKNOWN,02:46:33.4,-00:27:50.85,11.247,0.07,-34.464,0.067,2459169.279248,0.0005966,3.6344447,4.2e-06,3.871,0.143,10.06788,0.000923,9230.0,0.849809,14.25,0.706771,1133.73,1616.0,94.0,414.234,7.513,6272.0,,4.25771,,1.42,0.07,,,1.25,0.187365,"4,31",2019-02-08,2021-02-01,2022-12-14 12:09:24,WASP-138b,400,1,False,False,True -259701242,401.01,,5,5,5,5,5,5,5,3.6,8.5,2.21,1,6,1,EB,FP,8.235,0.006,,1,qlp-s30-ffi,QLP,04:57:51.95,-53:49:04.61,25.215,0.037,-14.105,0.047,2459139.77292,0.00474,2.48548,2e-05,2.621,0.265,0.173732,0.000238,160.0,0.219406,1.28248,0.0791035,1105.11,1606.0,13.0,64.4827,0.0832,5928.0,85.6,4.48,0.25,0.96,0.05,,,1.1,0.147843,"3,4,5,6,13,30",2019-01-24,2021-12-07,2022-12-14 12:09:24,may be on 259701232,401,1,False,False,True -120896927,402.01,,4,5,5,5,4,4,4,5.5,76.9,3.63,0,12,5,CP,CP,8.3157,0.006,,1,spoc,UNKNOWN,02:27:28.29,-27:38:10.02,-73.59,0.057,-211.614,0.082,2459139.126535,0.0027008,4.75597367928781,1.8542138e-05,2.54696956691237,0.21605152,0.432894,0.022571,398.631011309688,20.788399,1.72541702287518,0.6993496,161.731433422237,909.532785507036,17.72927,44.8155,0.07055,5175.2,23.6172,4.37657,0.066896,0.841841995716095,0.0418417,0.06,0.0212132,0.88,0.110587,"3,4,30",2019-01-31,2021-12-01,2022-12-14 12:09:24,HD 15337 b,402,1,True,False,True -120896927,402.02,,1,5,5,1,4,4,4,3.1,68.5,5.47,0,12,5,CP,CP,8.3157,0.006,,2,spoc,UNKNOWN,02:27:28.29,-27:38:10.02,-73.59,0.057,-211.614,0.082,2459118.955569,0.0036838,17.1807213590134,4.5769633e-05,2.10048133540109,0.3203745,0.738702,0.043232,680.138590384889,39.817078,2.19540343915282,1.6291252,29.1782002006862,592.767486624572,15.360436,44.8155,0.07055,5175.2,23.6172,4.37657,0.066896,0.841841995716095,0.0418417,0.06,0.0212132,0.88,0.110587,"3,4,30",2019-01-31,2021-12-01,2022-12-14 12:09:24,HD 15337 c,402,2,True,False,True -257567854,403.01,,5,5,5,5,5,5,5,58.1,168.0,110.08,0,1,5,KP,KP,11.185,0.007,,1,spoc,UNKNOWN,03:31:16.33,-23:49:11.25,1.771,0.071,-26.516,0.059,2458411.901592,0.000546,3.532822,0.000138,3.44312,0.046901,12.320677,0.149719,11283.619423,137.88638,13.474905,0.184494,837.703371573046,1372.12069748536,88.35828,317.652,5.5425,6153.0,,4.34152,,1.25,,0.26,0.03,1.17,0.16388,4,2019-02-08,2019-02-08,2022-12-14 12:09:24,WASP-22b,403,1,False,False,True -166833457,404.01,,5,5,5,5,5,5,5,69.5,216.7,107.4,0,0,3,KP,KP,12.3943,0.006,,1,spoc,UNKNOWN,03:53:42.96,-34:19:41.78,33.627,0.03,-12.405,0.038,2459168.63923,0.0003113,2.96264019750485,1.4873655e-06,1.90967240797901,0.022899967,29.849943,0.285557,27118.3262164584,262.97327,12.6548900442134,0.6409269,269.882847633268,1033.74535362996,110.936714,281.742,1.6215,5473.0,,4.60845,,0.718635022640228,0.0359297,,,0.97,0.123407,"4,31",2019-02-08,2021-12-02,2022-12-14 12:09:24,WASP-98 b,404,1,False,False,True -176984236,405.01,,5,5,5,5,5,5,5,34.2,124.7,44.56,2,0,2,EB,FP,10.5683,0.006,,1,qlp-s32-ffi,UNKNOWN,06:47:38.28,-66:19:41.94,-4.0,2.5,1.8,2.3,2459199.325641,0.0003474,1.7560902,1.1e-06,1.763,0.26,1.792944,0.001181,1650.0,1.08733,7.52118,,1923.34,,84.0,266.9,,6249.0,338.7,4.28,2.01,1.29,,,,,,"1,2,3,4,5,7,8,9,10,11,12,13,27,28,29,30,31,32",2019-01-16,2021-12-07,2022-12-14 12:09:24,NEB on 176984248; TFOP FP retired as NEB,405,1,False,False,True -153065527,406.01,,1,4,1,1,3,4,4,1.0,57.6,4.51,13,2,3,PC,PC,11.2828,0.007,,1,spoc,UNKNOWN,03:17:03.03,-42:14:38.94,41.675,0.055,-412.827,0.074,2458388.56746,0.0011397607,13.1757294345325,3.133705e-05,2.15702723128186,0.26255363,2.69526,0.139984,2479.34771378052,128.92201,1.96023728527943,0.4459335,2.64531736479386,325.266394205256,16.977493,31.0597,0.03405,3349.0,63.0,4.94138,0.395255,0.388608992099762,0.0116001,,,0.378565,0.0202713,"3,4,30,31",2019-05-17,2021-07-06,2023-02-11 00:00:00,TOI406,406,1,True,False,True -153065527,406.02,TIC 153065527.02,1,4,1,1,3,4,4,1.1,6.2,2.16,13,2,3,PC,PC,11.2828,0.007,,2,spoc,SPOC,03:17:03.03,-42:14:38.94,41.675,0.055,-412.827,0.074,2458385.38837,0.0015644332,6.61491101611225,3.1293035e-05,0.965460471736427,0.8199179,1.152112,0.218753,1060.57158192671,201.45874,1.27315538404388,3.2967181,6.62946778932835,409.250685729343,7.381627,31.0597,0.03405,3349.0,63.0,4.94138,0.395255,0.388608992099762,0.0116001,,,0.378565,0.0202713,"3,4,30,31",2021-07-19,2021-07-19,2022-12-14 12:09:24,potential multi,406,2,True,False,True -349518800,407.01,,5,5,5,5,3,5,5,24.7,51.8,120.83,0,0,1,PC,APC,12.7862,0.006,,1,qlp-s39-tois,UNKNOWN,07:24:50.81,-62:05:32.75,-10.142,0.025,13.241,0.027,2459387.742195,0.0005629,2.1654694,2.1e-06,3.408,0.055,5.431386,0.00022,4990.0,0.202474,13.5615,0.637742,2503.96,1970.0,78.0,959.461,11.809,5830.0,333.4,4.26,,1.86,0.09,,,1.24,0.185627,"1,3,4,5,6,7,8,9,10,11,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-01-16,2023-01-24,2023-01-26 12:09:41,former TFOP FP revived as TFOP APC,407,1,False,False,True -176778112,408.01,,5,5,5,5,5,5,5,12.4,92.6,7.84,2,2,1,EB,FP,9.6114,0.006,,1,qlp,UNKNOWN,03:11:18.66,-35:37:41.05,-46.296,0.031,-1.595,0.039,2459169.52007,0.00144,1.33679,0.0,1.488,0.296,0.760281,0.001607,700.0,1.48052,2.70732,0.190993,1038.31,1581.0,23.0,109.991,0.3125,5600.0,187.0,4.43748,0.269206,0.98,0.05,,,1.0,0.121046,"4,31",2019-02-08,2020-12-22,2022-12-14 12:09:24,TFOP NEB,408,1,False,False,True -167754523,409.01,,5,5,5,5,5,5,5,1.4,6.0,1.34,1,10,1,PC,FP,9.1536,0.006,,1,qlp,UNKNOWN,06:56:43.6,-60:41:16.63,3.117,0.044,-224.185,0.038,2459193.22371,0.0031063,6.7992776,4.02e-05,1.58,0.398,0.228029,0.000739,210.0,0.680695,1.09621,0.100217,30.7937,656.0,10.0,53.3027,0.0604,4913.8,71.5,4.54,0.16,0.73,0.05,-0.09,0.06,0.82,0.0959432,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32",2019-01-16,2021-02-11,2022-12-14 12:09:24,centroid offset on 167754526,409,1,False,False,True -206466531,410.01,,5,5,5,5,5,5,5,51.0,172.7,48.08,3,0,1,EB,FP,10.0081,0.006,,1,qlp-s30-ffi,QLP,03:47:15.6,-52:59:06.75,-26.194,0.038,-12.788,0.045,2459139.77204,0.00268,1.42744,1e-05,1.973,0.098,0.488691,0.198297,450.0,182.622,7.86301,2.00946,28512.6,3620.0,17.0,223.145,1.186,6000.2,130.8,4.36,0.11,1.33,0.05,-0.16,0.1,1.27,0.189232,"3,4,30",2019-01-24,2021-12-07,2022-12-14 12:09:24,Retired as FP by TFOP,410,1,False,False,True -100990000,411.01,,1,5,5,1,4,4,4,5.1,75.8,5.94,6,8,5,PC,CP,7.757,0.006,,1,spoc,UNKNOWN,03:39:16.69,-42:45:46.9,-51.664,0.044,-110.627,0.062,2458386.189174,0.001208453,9.57307063556275,2.7522863e-05,3.79496772778676,0.16408458,0.402676,0.021333,370.809114135794,19.648224,2.30530583129007,0.24545431,186.024825037477,941.916654084731,15.221101,62.7792,0.11585,6101.0,193.0,4.38774,0.262054,1.11671996116638,0.0480905,,,1.17,0.162261,"3,4,30,31",2019-05-07,2021-07-06,2023-03-03 12:02:43,multi-planet system; candidate 411.01,411,1,True,False,True -100990000,411.02,,1,5,5,1,4,4,4,3.9,60.2,3.02,6,8,5,PC,CP,7.757,0.006,,2,spoc,SPOC,03:39:16.69,-42:45:46.9,-51.664,0.044,-110.627,0.062,2458385.72367,0.0020451215,4.04041303554557,2.2564871e-05,3.5274466075187,0.22391456,0.1557,0.013228,143.394395972975,12.183512,1.54737473957286,0.14544313,587.586177953902,1255.70505438771,10.687032,62.7792,0.11585,6101.0,193.0,4.38774,0.262054,1.11671996116638,0.0480905,,,1.17,0.162261,"3,4,30,31",2019-05-17,2021-07-15,2023-03-03 12:02:43,potential L1 and multi,411,2,True,False,True -7624182,412.01,,5,5,5,5,5,5,5,165.4,308.4,317.0,2,10,1,PC,FP,8.7929,0.006,,1,qlp,UNKNOWN,04:17:14.76,-38:50:39.02,11.45,0.057,-0.54,0.076,2459169.731701,0.0009921,1.1097378,2.3e-06,1.737,0.062,0.738552,0.329937,680.0,303.837,21.4253,6.03316,123100.0,5218.0,38.0,460.728,7.059,8666.0,229.0,3.80083,0.468308,3.13,0.1,,,2.26,0.316889,"4,5,31",2019-01-31,2019-01-31,2022-12-14 12:09:24,,412,1,False,False,True -170634116,413.01,,5,5,5,5,5,5,5,138.5,196.5,317.0,0,3,3,KP,KP,9.6757,0.007,,1,spoc,UNKNOWN,04:25:29.02,-30:36:01.57,-0.369,0.047,2.623,0.06,2459174.669346,0.00026264053,3.66239178108442,6.944911e-07,3.76696919080192,0.008935738,13.386425,0.036697,12253.6582522942,33.79843,17.2805567237876,0.84741235,1645.98869579669,1624.52523376758,356.4687,246.69,1.807,6600.0,,4.20892,,1.48531997203827,0.0727839,0.19,0.1,1.54,0.26965,"4,5,31,32",2019-06-06,2021-12-02,2022-12-14 12:09:24,WASP-79 b,413,1,False,False,True -325680697,414.01,,5,5,5,5,5,5,5,796.9,1315.6,317.0,4,2,2,EB,FP,9.15779,0.006,,1,qlp-s31-ffi,UNKNOWN,02:27:24.86,-12:02:20.15,48.163,0.066,3.015,0.062,2459168.84301,0.00023,1.82488,0.0,1.757,0.077,3.207655,0.417678,2950.0,384.622,24.8366,2.8968,3161.32,2088.0,72.0,115.124,0.5345,5773.74,76.0,3.51,0.12,1.23,0.06,0.0,0.1,1.035,0.124826,"4,31",2019-02-08,2021-12-07,2022-12-14 12:09:24,TFOP FP; SG1 finds NEB in 4,414,1,False,False,True -152476657,415.01,,5,5,5,5,5,5,5,52.6,142.4,121.6,0,1,3,KP,KP,10.5831,0.006,,1,spoc,UNKNOWN,04:10:27.86,-45:53:53.68,2.379,0.035,-6.511,0.045,2459166.483051,0.0005569,3.61126205809684,2.1989042e-06,3.53774472234664,0.028853392,6.189033,0.053553,5684.09441443234,49.322964,13.6137403331809,0.59679073,1818.54888832378,1665.52438177992,80.28465,381.174,3.2035,6450.0,,4.03776,,1.6844300031662,0.07301,,,1.36,0.222003,"4,5,30,31",2019-06-06,2021-12-02,2022-12-14 12:09:24,WASP-120 b,415,1,False,False,True -49899799,416.01,,4,4,4,5,5,5,5,178.4,263.6,317.0,1,2,1,EB,FP,8.28222,0.006,,1,qlp,UNKNOWN,03:15:25.05,-02:10:31.13,29.757,0.089,-6.859,0.08,2459163.41477,0.00108,7.0114,1e-05,4.8,1.184,9.782996,0.013983,8970.0,12.8786,18.1417,1.08769,753.673,1459.0,179.0,131.962,0.76,6084.8,35.2,4.01,0.31,1.82,0.08,,,1.263,0.203713,"4,31",2019-01-16,2021-01-10,2022-12-14 12:09:24,tropical Jupiter,416,1,False,False,True -339733013,417.01,,5,5,5,5,5,5,5,5.0,42.5,12.0,0,3,1,EB,FP,10.0793,0.006,,1,qlp-s13-ffi,QLP,07:23:24.43,-58:41:48.26,-32.194,0.039,6.38,0.033,2458328.37843,0.00342,5.62162,7e-05,2.675,0.589,0.63,0.002069,580.083,1.90541,3.35879,0.28553,334.683,1191.0,26.0,186.807,0.679,5834.2,179.5,4.24,0.11,1.27,0.08,0.0378755,0.0458934,1.07,0.1341,"1,2,3,4,5,6,7,8,9,10,11",2019-01-16,2021-12-07,2022-12-14 12:09:24,may be on 339733023; TOFP FP; retired as NEB,417,1,False,False,True -178284730,418.01,,5,5,5,5,5,5,5,208.5,515.8,118.92,0,1,3,KP,KP,10.3074,0.006,,1,spoc,UNKNOWN,04:01:32.53,-20:27:03.6,-18.665,0.051,20.276,0.052,2459146.100495,0.00017722276,2.23598645523921,5.0749037e-07,1.52543315659562,0.0064514917,20.891691,0.139168,19058.013742325,128.17053,13.4367443037989,0.7075624,491.325955048548,1200.77649014481,236.86826,117.598,0.5975,5260.0,,4.51363,,0.844379007816315,0.0442312,,,0.924,0.108329,"4,5,31",2019-06-06,2021-12-02,2022-12-14 12:09:24,WASP 140 b; this planet contaminates 178284729 in spoc-s01s06-b02,418,1,False,False,True -279251651,419.01,,5,5,5,5,5,5,5,13.9,13.6,2.68,4,0,1,EB,FP,10.5886,0.007,,1,spoc-s13-b02,UNKNOWN,06:56:36.95,-59:10:52.71,-150.879,0.05,454.289,0.06,2458654.122394,0.0011611341,0.403842579347559,3.153845e-05,1.05922177213852,0.33206382,0.691436,0.05267,636.633796277764,48.509575,1.44239297224947,1.3622795,710.634979024335,1316.83510199281,12.129184,42.76,0.04985,4119.1,188.7,4.73,0.07,0.555,0.018,,,0.549943,0.0202648,"1,2,3,4,5,6,7,8,9,10,11,12,13,27",2019-01-16,2021-12-07,2022-12-14 12:09:24,Rstar 0.55; may be on 279251647; retired as NEB,419,1,False,False,True -408159788,420.01,,5,5,5,5,5,5,5,22.3,117.7,21.14,2,3,3,EB,FP,10.6152,0.006,,1,qlp-s32-ffi,QLP,05:13:47.45,07:03:21.03,43.091,0.064,-51.312,0.053,2459199.050071,0.0057717,2.300698,2.43e-05,3.451,0.253,0.847205,0.336115,780.0,309.525,4.87824,1.65997,17366.7,3198.0,21.0,145.407,0.877,5747.3,518.8,4.57,0.31,0.85,0.04,,,0.982,0.129021,"5,32",2019-02-08,2021-12-07,2022-12-14 12:09:24,SG1 check if it is on target. Retired as NEB.,420,1,False,False,True -94986319,421.01,,1,4,1,5,4,4,4,10.0,110.8,20.6,2,11,4,CP,CP,9.2711,0.006,,1,spoc,QLP,05:27:24.79,-14:16:36.27,-35.687,0.046,50.45,0.064,2459195.308114,0.0007124,16.067522015214,1.7260583e-05,2.61823824440113,0.06979756,3.185496,0.05156,2929.65014692961,47.487232,4.79096166986825,0.34581897,36.1060604449033,625.193963074304,55.85984,74.7969,0.2035,5718.0,189.0,4.35658,2.00367,0.860123991966248,0.0494975,,,0.92,0.115758,"5,6,32",2019-05-17,2021-12-02,2023-04-06 00:00:00,TOI-421 c / TOI-421.01,421,1,True,False,True -94986319,421.02,,5,5,5,5,4,5,5,4.0,54.1,4.38,2,11,4,CP,CP,9.2711,0.006,,2,spoc,SPOC,05:27:24.79,-14:16:36.27,-35.687,0.046,50.45,0.064,2458441.280669,0.0015487107,5.19768583560535,2.9365994e-05,1.88107373114126,0.3464259,0.475046,0.041737,437.437604397436,38.440166,1.92573458587637,0.9877214,162.591788611879,910.739979794873,11.869352,74.7969,0.2035,5718.0,189.0,4.35658,2.00367,0.860123991966248,0.0494975,,,0.92,0.115758,"5,6,32",2021-10-21,2021-10-21,2022-12-14 12:09:24,TOI-421 b / TOI-421.02,421,2,True,False,True -117979455,422.01,,3,5,5,3,3,4,4,42.3,177.3,18.49,5,12,5,PC,PC,8.96,0.006,,1,spoc,UNKNOWN,04:47:12.67,-17:15:12.12,-79.995,0.04,-68.198,0.05,2458438.292151,0.00062892644,0.633337173732163,1.7965727e-05,0.621708929896425,0.34140152,1.155599,0.151871,1063.78000269606,139.86835,4.49570885771404,6.578065,9433.55118343649,2513.55592300963,9.687072,124.504,0.5945,5999.0,127.0,4.22,0.08,1.34654998779297,0.0635125,,,1.106,0.148953,"5,32",2019-02-08,2021-07-15,2022-12-14 12:09:24,ephemeris match to TIC 117979850 / TOI 428,422,1,False,False,True -43647325,423.01,,5,5,5,5,5,5,5,130.5,147.2,317.0,0,1,1,KP,KP,10.4408,0.006,,1,spoc,UNKNOWN,05:04:19.65,-06:13:47.21,20.664,0.064,10.822,0.056,2459176.768453,0.0001970491,3.16156970080926,6.725267e-07,3.1425792336791,0.0110490145,19.148968,0.04788,17482.2328085071,44.09823,14.8619546366271,0.7204642,758.102617452784,1338.29467087477,426.45526,202.218,1.6835,6072.0,125.1,4.41,0.08,1.09774005413055,0.0531332,-0.05,0.05,1.135,0.154188,"5,32",2019-02-08,2021-12-02,2022-12-14 12:09:24,WASP-35 b,423,1,False,False,True -117979694,424.01,,5,5,5,5,5,5,5,9.2,73.6,5.16,3,3,5,PC,FP,10.5094,0.006,,1,qlp,QLP,04:47:41.11,-17:44:42.02,-13.762,0.036,19.567,0.044,2458438.72101,0.00317,0.99114,0.00024,1.623,0.244,0.825473,0.001623,760.0,1.49485,2.1212,0.163748,1463.2,1723.0,16.0,103.69,0.3405,5059.0,122.9,4.61,0.09,0.75,0.05,,,0.845,0.107965,5,2019-02-08,2020-05-20,2022-12-14 12:09:24,centroid offset; significant odd-even,424,1,False,False,True -169532369,425.01,,5,5,5,5,5,5,5,39.5,48.1,317.0,0,1,1,EB,FP,11.5781,0.01,,1,qlp-s05-b01,UNKNOWN,05:12:23.73,-13:36:20.29,0.246,0.042,-4.76,0.047,2458440.31143,0.00126,3.60364,0.00032,3.728,0.47,6.841366,0.003365,6281.32,3.09946,14.1007,0.723462,2312.7,1931.0,68.0,631.385,11.4895,6896.7,160.0,4.17,1.78,1.62,0.07,-0.150289,0.0656894,1.47,0.236059,5,2019-02-08,2021-12-07,2022-12-14 12:09:24,retired as SB1,425,1,False,False,True -189013224,426.01,,1,4,1,4,3,1,4,7.9,68.7,5.32,4,27,3,PC,PC,9.59689,0.006,,1,spoc,UNKNOWN,05:16:24.53,-15:30:36.87,5.456,0.052,-25.589,0.062,2458438.524066,0.0011066938,1.32050371000698,1.2123584e-05,2.01555193258731,0.4714316,0.509823,0.074305,469.453748148441,68.43551,2.16117345058722,2.4197206,1677.15719472071,1632.16173531093,7.5729556,113.59,0.425,5731.0,123.9,4.46,0.07,0.989260017871857,0.046402,,,1.023,0.124767,"5,32",2019-02-08,2021-07-01,2022-12-14 12:09:24,out-of-transit is not flat; possibly stellar variability; two stars in the same pixel; target could also be on 189013222; need SG1,426,1,False,False,True -70914192,427.01,,5,5,5,5,4,5,5,411.3,307.3,317.0,5,1,4,EB,APC,10.361,0.006,,1,qlp,UNKNOWN,04:18:37.7,-17:25:11.4,5.773,0.038,4.441,0.038,2459199.009699,0.0001889,0.6090253,2e-07,1.099,0.037,6.643273,1.838154,6100.0,1691.57,15.1945,4.672,8004.34,2635.0,170.0,151.054,0.634,5271.7,43.7,4.34,0.36,1.02,0.05,,,0.952,0.124891,"5,32",2019-02-08,2021-02-01,2022-12-14 12:09:24,V-shaped; depth is actually 5ppt; there is a dmag 4 neighbor at 2.5,427,1,False,False,True -117979850,428.01,,5,5,5,5,3,5,5,67.9,199.7,32.34,0,5,5,EB,APC,7.82829,0.006,,1,qlp,QLP,04:47:14.38,-17:14:55.01,-85.471,0.047,-66.476,0.061,2459198.925652,0.0010028,0.6333315,1.5e-06,0.404,0.149,0.347491,0.005306,320.0,4.88666,6.24344,0.649832,451.285,1284.0,19.0,121.888,0.663,5713.0,70.2,3.67,0.27,2.35,0.12,,,1.042,0.126237,"5,32",2019-02-08,2019-02-08,2022-12-14 12:09:24,Significant odd-even. TFOP APC; retired as SB2,428,1,False,False,True -259592689,429.01,,3,5,5,3,4,4,4,,,75.99,24,1,4,PC,PC,10.1672,0.006,,1,qlp,UNKNOWN,04:51:54.55,-53:49:46.65,49.861,0.044,223.713,0.054,2459129.91623,0.0041,0.0,0.0,10.283,0.241,9.802717,0.001905,8988.0,1.75446,10.2814,0.597895,139.877,958.0,47.0,120.218,0.3105,5216.0,125.5,4.43,0.08,0.95,0.05,,,0.89,0.11059,"3,4,5,6,30",2019-01-31,2020-11-23,2022-12-14 12:09:24,TOI 429; single transit with unknown period,429,1,False,True,True -459942762,430.01,,5,5,5,5,5,5,5,22.3,185.0,5.68,2,1,3,EB,FP,8.2482,0.006,,1,qlp-s05-b01,UNKNOWN,04:01:06.83,04:32:27.13,40.555,0.081,-62.99,0.064,2458438.83761,0.00172,0.58644,6e-05,1.441,0.157,0.481393,0.000644,443.281,0.593425,2.31276,0.103777,6607.5,2511.0,34.0,66.5727,0.19755,5997.7,78.3,,,1.0,0.03,-0.45,0.011,1.13,0.152785,5,2019-02-08,2021-12-07,2022-12-14 12:09:24,Retired as NEB,430,1,False,False,True -31374837,431.01,,1,4,1,4,4,2,4,10.8,169.7,10.82,13,12,5,PC,CP,8.1705,0.006,,1,spoc,UNKNOWN,05:33:04.62,-26:43:25.93,16.804,0.039,150.766,0.048,2458440.630295,0.0004820865,12.4610086397464,1.3197421e-05,3.31957772886794,0.09169284,2.258662,0.048018,2078.14259812213,44.225582,3.28094917884097,0.32790983,28.3587887704514,588.561254900068,45.231777,32.5686,0.03115,4891.0,111.8,4.62,0.08,0.726631999015808,0.042995,0.02,0.08,0.8,0.0890284,"5,6,32",2019-02-08,2021-07-15,2022-12-14 12:09:24,potential multi,431,1,True,False,True -31374837,431.02,,1,5,5,1,4,4,4,21.0,26.2,2.78,13,12,5,PC,CP,8.1705,0.006,,2,spoc,SPOC,05:33:04.62,-26:43:25.93,16.804,0.039,150.766,0.048,2458438.375965,0.0003433467,0.490058941306193,5.511132e-06,1.01233275631189,0.08059802,0.316039,0.012101,291.039972203679,11.14497,1.47415294335489,0.1615313,2120.44746625803,1730.71926889427,28.3464,32.5686,0.03115,4891.0,111.8,4.62,0.08,0.726631999015808,0.042995,0.02,0.08,0.8,0.0890284,"5,6,32",2019-06-06,2021-07-06,2022-12-14 12:09:24,L1 candidate,431,2,True,False,True -38686737,432.01,,5,5,5,5,5,5,5,78.0,116.4,317.0,0,0,3,PC,FP,12.6038,0.006,,1,qlp,UNKNOWN,03:51:27.76,-10:36:50.68,-3.356,0.051,-2.798,0.043,2458439.97961,0.00087,2.24704,0.00014,2.713,0.065,20.706187,0.003998,18890.4,3.68202,18.1799,0.656011,1793.26,1812.0,67.0,746.646,22.949,6846.0,114.5,4.23,,1.2,0.04,,,1.42,0.24065,5,2019-02-08,2019-02-08,2022-12-14 12:09:24,,432,1,False,False,True -188989177,433.01,,5,5,5,5,5,5,5,636.3,2424.7,317.0,7,6,3,EB,FP,9.1414,0.008,,1,qlp-tois-update,QLP,05:15:06.82,-15:06:01.67,-2.243,0.061,-1.801,0.068,2458438.29916,0.00045,1.17409,4e-05,1.701,0.047,4.002879,0.765285,3680.0,704.605,49.6799,10.8637,34547.8,3798.0,101.0,547.126,12.5735,8242.0,134.5,3.61,0.07,3.67,0.13,,,2.02,0.299772,5,2019-02-08,2022-07-11,2022-12-14 12:09:24,secondary eclipse; two stars in the same pixel; depth is 3.6 ppt; TFOP FP,433,1,False,False,True -78055054,434.01,,5,5,5,5,5,5,5,45.1,125.4,125.96,0,0,1,KP,KP,12.8461,0.007,,1,spoc,UNKNOWN,05:22:09.18,-30:58:14.94,8.704,0.025,4.327,0.025,2459198.519993,0.0015459,4.388851647462,3.271517e-06,3.01840154570759,0.036128573,27.448983,0.242366,24964.5478229721,223.20244,13.8994523390267,0.8251116,192.232821550463,949.678562683531,89.87043,362.273,2.2455,5175.0,182.0,4.46488,2.00365,0.877856016159058,0.0512412,,,0.87,0.103076,"5,6,32",2019-06-06,2021-12-02,2022-12-14 12:09:24,HATS-43 b,434,1,False,False,True -44647437,435.01,,1,4,1,1,3,4,4,12.0,57.0,24.4,4,0,3,PC,PC,12.9383,0.006,,1,spoc,UNKNOWN,03:57:38.54,-25:11:23.78,15.304,0.027,9.061,0.031,2458411.844766,0.0017278813,3.35290698241063,1.420936e-05,2.39067309996364,0.15382452,4.575361,0.326239,4205.19610156964,300.4317,5.29331964085053,0.60129565,76.2487269399235,753.664221864143,16.897882,165.285,0.549,3978.0,165.0,4.438,,0.672832012176514,0.0658292,,,0.632,0.0821204,"4,5,31",2019-06-06,2021-02-01,2022-12-14 12:09:24,,435,1,False,False,True -44745077,436.01,,5,5,5,5,5,5,5,12.5,92.8,10.49,2,0,2,EB,FP,13.0734,0.007,,1,qlp-s05-b01,UNKNOWN,04:06:33.48,-25:05:38.82,-88.788,0.05,-87.994,0.067,2458411.70271,0.00319,1.8756,0.00017,0.989,0.279,6.169603,0.04227,5666.3,38.9309,,,40.3912972778434,642.971465953058,16.0,77.5383,0.23055,3549.7,274.0,4.87,0.41,,,,,0.383047,0.0202469,"4,5",2019-01-31,2021-12-07,2022-12-14 12:09:24,v-shaped due to short transit duration; retired as NEB,436,1,False,False,True -32499655,437.01,,5,5,5,5,5,5,5,33.1,84.6,97.14,0,0,0,KP,KP,13.5452,0.008,,1,spoc,UNKNOWN,05:37:18.42,-27:58:21.27,-2.16,0.026,0.255,0.029,2459197.575826,0.0012827,2.74390294216269,4.252865e-06,1.50316800755108,0.059521034,15.145192,0.584995,13852.3979584906,538.65515,11.9292388216708,0.3915262,306.417042669444,1067.08245369836,32.695362,446.035,3.2185,4860.0,171.0,4.438,,0.885702013969421,,,,0.79,,"5,6,32,33",2019-06-06,2021-12-02,2022-12-14 12:09:24,HATS-44 b,437,1,False,False,True -468880077,438.01,,1,4,1,5,4,2,4,6.3,75.7,6.96,4,10,12,PC,PC,9.4464,0.006,,1,qlp-s44-ffi,UNKNOWN,03:46:01.13,09:59:25.08,101.802,0.088,-18.128,0.059,2459522.143859,0.0015315,5.8123478,1.64e-05,1.918,0.409,0.934135,0.001278,860.0,1.17747,2.53963,0.19773,140.061,958.0,21.0,72.4646,0.2504,5210.8,145.0,4.58,0.1,0.8,0.05,0.149,0.02,0.89,0.113957,"5,42,43,44",2019-02-08,2022-01-10,2022-12-14 12:09:24,potential L1 planet,438,1,False,False,True -13021029,439.01,,5,5,5,5,5,5,5,42.4,49.8,317.0,0,0,1,KP,KP,11.7231,0.007,,1,spoc,UNKNOWN,05:01:11.92,-26:03:14.92,0.495,0.029,3.169,0.043,2459175.599762,0.0007667311,3.85588998096666,3.3092304e-06,3.9555399273548,0.048744615,10.635245,0.114485,9747.60355971291,105.43871,14.5222913112495,0.5979688,1062.02980352618,1455.97502595386,63.59266,488.66,5.497,6244.5,102.1,4.21,0.08,1.43255996704102,0.0567035,-0.123681,0.0694451,1.21,0.170876,"5,32",2019-02-08,2021-12-02,2022-12-14 12:09:24,WASP-61 b,439,1,False,False,True -143350972,440.01,,5,5,5,5,5,5,5,13.0,131.1,3.69,1,1,3,EB,FP,7.6818,0.006,,1,qlp-s05-b01,UNKNOWN,05:28:59.04,-17:25:46.43,-84.343,0.067,-75.221,0.074,2458439.13519,0.00219,1.0817,0.00014,1.588,0.222,0.370878,0.000538,341.533,0.495141,2.07554,0.083749,2462.70097492362,1796.68801226589,26.0,49.3375,0.09575,5759.2,38.2,4.45,0.01,1.02,0.01,0.0595743,0.00469596,1.03,0.126964,5,2019-01-31,2021-12-07,2022-12-14 12:09:24,two stars in the same pixel;,440,1,False,False,True -316916655,441.01,,5,5,5,5,5,5,5,43.2,177.2,49.83,4,1,1,EB,FP,9.19901,0.006,,1,qlp-s05-b01,QLP,04:57:53.47,-13:42:13.35,-10.626,0.042,-2.252,0.047,2458440.19448,0.00099,2.87436,0.00021,1.901,0.412,2.707301,0.006914,2490.41,6.36835,7.91346,0.685174,2011.82,1865.0,65.0,183.952,0.919,6805.0,242.2,4.26,0.34,1.44,0.1,,,1.472,0.250955,5,2019-02-08,2021-12-07,2022-12-14 12:09:24,SG1 check if the target is 316916663; possible odd-even; retired as NEB,441,1,False,False,True -70899085,442.01,,1,5,5,5,4,1,4,27.3,155.2,21.79,10,8,9,CP,CP,10.7329,0.007,,1,spoc,UNKNOWN,04:16:45.65,-12:05:05.51,49.766,0.044,-197.253,0.034,2459196.115341,0.0005086,4.0520368,4.4e-06,1.56051278519465,0.04151744,6.001573,0.122538,5512.40331926394,112.85521,4.95231335387889,0.17886217,38.5441194159536,635.490820419911,44.85534,52.616,0.11525,3779.0,157.0,4.64,0.01,0.60775101184845,0.018173,,,0.594367,0.0203488,"5,32",2019-02-08,2021-12-02,2022-12-14 12:09:24,LP 714-47 b,442,1,False,False,True -117979897,443.01,,5,5,5,5,5,5,5,37.9,99.6,118.1,0,1,3,KP,KP,12.0682,0.006,,1,spoc,UNKNOWN,04:47:17.86,-17:06:54.62,7.532,0.034,-1.95,0.044,2459174.840517,0.000974875,3.3106692005591,3.4830468e-06,3.70338667821136,0.054132555,10.023756,0.119761,9189.73425227065,110.29803,13.3820130017706,0.6670257,1061.55424247344,1455.81200762038,47.82397,516.543,8.5035,6030.0,121.9,4.22,0.08,1.35143005847931,0.0649749,,,1.118,0.139958,"5,32",2019-02-08,2021-12-02,2022-12-14 12:09:24,WASP-141 b,443,1,False,False,True -179034327,444.01,,1,4,1,1,4,4,4,4.8,90.2,10.91,4,5,6,PC,PC,9.0567,0.006,,1,spoc,QLP,04:16:44.16,-26:45:59.07,-25.83,0.035,-116.428,0.045,2458417.605025,0.002078826,17.9635082681689,9.304675e-05,4.42979578733271,0.17718041,1.37644,0.110336,1266.94519003137,101.6182,3.29701974012549,0.26150832,23.4693523131703,561.364604400831,9.843916,57.3973,0.0827,5229.0,183.0,4.55429,0.424663,0.794471025466919,0.0482412,,,0.85,0.102469,"4,5,31,32",2019-05-17,2021-07-14,2022-12-14 12:09:24,,444,1,False,False,True -14091704,445.01,,4,4,4,5,3,5,5,203.9,446.3,111.46,8,2,1,PC,PC,9.1577,0.006,,1,qlp-s32-tois,UNKNOWN,05:09:17.66,-36:35:27.72,21.66,0.059,-15.71,0.077,2459199.549231,0.0002767,0.7649571,4e-07,1.094,0.065,2.064861,0.535115,1900.0,492.738,12.9538,4.0656,12939.9,2971.0,45.0,176.617,1.117,6307.9,124.2,3.97,0.11,1.65,0.07,-0.38,0.1,1.21,0.178101,"5,6,32",2019-01-31,2021-12-07,2022-12-14 12:09:24,,445,1,False,False,True -1449640,446.01,,5,5,5,5,3,5,5,77.4,128.6,317.0,0,0,1,EB,APC,11.921,0.006,,1,spoc-s01-s36-b0A,UNKNOWN,05:00:41.18,-35:12:09.63,-6.448,0.034,-14.791,0.04,2458440.43161,0.000290145,3.50180229367037,2.3510488e-06,3.91795601972475,0.034941863,17.728751,0.133298,16196.1912060109,122.76418,22.1035260370339,1.061221,1744.66083891672,1648.34267609991,121.03982,674.155,10.14,6383.9,54.6,4.03,0.18,1.66888999938965,0.0794196,,,1.29,0.203082,"5,32",2019-02-08,2021-12-07,2022-12-14 12:09:24,TFOP APC; retired as SB1,446,1,False,False,True -14091633,447.01,,5,5,5,5,4,5,5,376.3,807.8,317.0,0,1,2,EB,APC,8.8695,0.006,,1,spoc,UNKNOWN,05:09:02.44,-36:27:52.12,-7.173,0.046,18.997,0.063,2459176.31925,0.00021190608,5.52927430958881,9.0661684e-05,2.54293496529758,0.016636947,19.626706,0.149805,17914.457667339,137.96593,23.5458512394811,1.9288946,549.296949818627,1234.7287097683,142.40086,126.177,0.447,6350.0,95.4,4.34,0.3,1.26396,0.0558895,,,1.3,0.197661,"5,6,32",2019-01-31,2021-02-02,2022-12-14 12:09:24,big;,447,1,False,False,True -1528696,448.01,,3,5,5,3,4,4,4,47.9,116.3,53.39,4,1,0,KP,CP,13.1686,0.006,,1,spoc,UNKNOWN,05:03:10.89,-30:23:58.06,-9.339,0.025,-21.995,0.026,2458438.402842,0.00021536286,0.882062425827087,5.160957e-06,0.575967222552898,0.10460989,12.838931,0.536144,11755.4509288482,493.6848,8.38889407545133,2.225674,983.424595742885,1428.25257606549,28.6565,308.262,1.4125,4669.0,122.0,4.52,,0.782887995243073,,,,0.74,,"5,32",2019-02-08,2020-05-20,2022-12-14 12:09:24,NGTS-6 b,448,1,False,False,True -139528693,449.01,,5,5,5,5,5,5,5,59.9,72.1,317.0,0,0,3,KP,KP,11.8282,0.007,,1,spoc,UNKNOWN,04:15:01.5,-22:06:59,-0.463,0.042,6.424,0.044,2459175.58961,0.0008627053,2.17517287669693,1.8662555e-06,4.79188062209236,0.0435919,8.480762,0.074804,7780.64351961097,68.89435,18.7874019308221,0.94767016,4812.62382367205,2124.29696543166,44.623333,754.258,16.7375,6291.0,130.1,3.9,0.09,2.06259989738464,0.102535,-0.07,0.05,1.23,0.179638,"5,31,32",2019-02-08,2021-12-02,2022-12-14 12:09:24,WASP-78 b,449,1,False,False,True -77951245,450.01,,5,5,5,5,3,5,5,34.1,391.9,128.11,5,2,1,PC,APC,12.4258,0.008,,1,spoc,UNKNOWN,05:16:01.22,-31:24:45.7,34.246,0.08,-0.735,0.089,2459182.487384,0.0004358942,10.7148661287126,0.0005978869,2.11215841924487,0.046092685,62.944931,1.278024,56325.9173744949,1176.411,14.0375539943001,5.989421,3.15415015220196,339.89152868788,72.45309,53.5063,0.13255,3054.0,,4.438,,0.422267,0.0127167,,,0.416374,0.0203872,"5,6,32",2019-05-17,2021-02-02,2022-12-14 12:09:24,TFOP APC; retired as SB2,450,1,False,False,True -257605131,451.01,,1,5,5,1,4,4,4,4.0,58.3,14.68,16,3,3,CP,CP,10.2666,0.006,,1,spoc,UNKNOWN,04:11:51.93,-37:56:23.03,-11.167,0.039,12.375,0.054,2458416.634939,0.0012756921,16.3648730373237,4.921217e-05,4.04783015228481,0.20240912,2.255346,0.143861,2075.09441176443,132.4925,3.92483215869815,0.5098805,38.2371999320861,634.221952100063,14.497905,123.739,0.385,5481.0,127.6,4.56,0.08,0.856226027011871,0.0441055,,,0.96,0.124766,"4,5,31",2019-01-31,2021-07-01,2022-12-14 12:09:24,TOI-451 d / TOI-451.01,451,1,True,False,True -257605131,451.02,TIC 257605131.02,5,5,5,5,4,5,5,4.7,47.1,4.4,16,3,3,CP,CP,10.2666,0.006,,2,spoc,SPOC,04:11:51.93,-37:56:23.03,-11.167,0.039,12.375,0.054,2458410.999327,0.0012462778,1.85866242291198,1.3506013e-05,2.05257967846067,0.42424858,0.540471,0.057933,497.668349663653,53.357212,1.93236572012875,1.8722088,695.187963124427,1309.62003531108,10.002181,123.739,0.385,5481.0,127.6,4.56,0.08,0.856226027011871,0.0441055,,,0.96,0.124766,"4,5,31",2021-07-28,2021-07-28,2022-12-14 12:09:24,TOI-451 b,451,2,True,False,True -257605131,451.03,TIC 257605131.03,5,5,5,5,4,5,5,3.2,43.3,7.89,16,3,3,CP,CP,10.2666,0.006,,3,spoc,SPOC,04:11:51.93,-37:56:23.03,-11.167,0.039,12.375,0.054,2458411.806253,0.0020315396,9.19107915062941,9.691549e-05,3.05567704479118,0.38808247,1.021996,0.123078,940.850021878492,113.352394,2.72510061348243,0.87950623,82.5177911310157,768.699587625849,9.849737,123.739,0.385,5481.0,127.6,4.56,0.08,0.856226027011871,0.0441055,,,0.96,0.124766,"4,5,31",2021-07-28,2021-07-28,2022-12-14 12:09:24,TOI-451 c,451,3,True,False,True -139733308,452.01,,5,5,5,5,5,5,5,34.5,124.5,74.68,0,0,3,KP,KP,11.9012,0.006,,1,spoc,UNKNOWN,04:28:53.48,-21:28:55.4,-0.026,0.036,-22.048,0.04,2459174.695544,0.0006472899,4.76339524215734,3.422334e-06,3.00782717530846,0.044342354,14.383831,0.139671,13160.6298310052,128.63376,10.2196832998594,0.59249717,183.239451886663,938.370822748209,81.83613,246.384,1.7305,5258.0,123.0,4.51,0.08,0.875509977340698,0.049196,,,0.9,0.11273,"5,32",2019-02-08,2021-12-02,2022-12-14 12:09:24,HATS-5 b,452,1,False,False,True -452808876,453.01,,5,5,5,5,5,5,5,141.7,172.8,317.0,0,0,1,KP,KP,9.538961,0.006,,1,qlp,UNKNOWN,04:50:38.54,01:53:37.81,-16.151,0.064,-18.866,0.044,2458438.96587,0.0004,2.70582,8e-05,4.968,0.031,8.173711,0.000117,7500.0,0.107904,18.4904,0.986603,3557.29,2151.0,205.0,275.664,3.0885,6441.6,145.8,3.91,0.09,2.1,0.11,0.152,0.014,1.304,0.209204,5,2019-02-08,2020-05-20,2022-12-14 12:09:24,WASP-82b,453,1,False,False,True -153077621,454.01,,1,5,5,1,3,4,4,44.0,458.7,64.47,4,2,5,PC,APC,9.441,0.037,,1,spoc,UNKNOWN,03:18:38.38,-42:38:32.38,-50.736,0.042,6.323,0.055,2458396.13818,0.000862134,18.0826084178302,2.7851647e-05,2.38679870818681,0.07725563,8.723868,0.271629,8002.78556563341,250.14842,3.91171599888518,1.7889186,11.0589984696525,465.102526920963,37.224327,78.7806,0.16345,3321.0,117.0,4.95373,0.559906,0.296000003814697,0.07,,,0.287,0.086,"3,4,30,31",2019-05-17,2021-09-08,2022-12-14 12:09:24,There are three TICs associated with this star within 3 arcseconds (TIC 153077619 (bright neighbor) and TICs 153077621 and 651051509 which are the same star.). TIC153077619 is brighter (Tmag=8.3) and is more likely the target. It is a sunlike star - given the V-shape and the depth this signal is likely a FP. Retired as APC/BEB?/SB1 by TFOP,454,1,False,False,True -98796344,455.01,,4,5,5,4,4,4,4,7.9,43.0,2.68,33,13,7,CP,CP,8.84294,0.008,,1,spoc,UNKNOWN,03:01:50.99,-16:35:40.18,-369.196,0.14,-268.51,0.147,2459168.295274,0.0007279,5.35877595248221,7.548971e-06,1.369776439469,0.14748554,2.94464,0.144175,2708.4393715462,132.78087,1.44541540651259,0.29846486,6.27955370949943,403.740154057577,20.253843,6.86929,0.003805,3562.0,83.0,4.97389,0.060229,0.275952994823456,0.00828276,,,0.249439,0.0201557,"4,31",2019-02-08,2021-12-02,2022-12-14 12:09:24,LTT 1445 A b,455,1,False,False,True -77228304,456.01,,5,5,5,5,5,5,5,62.2,449.4,5.26,1,1,0,PC,FP,15.7298,0.016,,1,spoc,SPOC,04:36:27.98,-41:14:46.3,63.868,0.228,10.099,0.249,2458410.95064,0.001209,0.336826,1.7e-05,0.883311,0.114655,19.999154,2.391011,18251.292089,2199.7795,15.240658,1.416672,11129.6464735411,2619.63082398971,10.402103,39.4781,0.1915,5780.0,,4.438,,1.0,,,,0.114299,0.0200335,"4,5",2019-06-06,2019-06-06,2022-12-14 12:09:24,,456,1,False,False,True -89256802,457.01,,2,4,4,2,3,4,4,58.0,145.7,46.35,6,0,6,PC,PC,13.741,0.011,,1,spoc,UNKNOWN,03:54:54.09,-26:25:24.28,95.26,2.0,61.41,2.0,2458411.560535,0.0005024646,1.17598344924082,4.5913566e-06,0.992833798368707,0.07082115,16.27879,1.356334,14881.4796122671,1248.4495,7.7193558593084,2.4524143,82.5004619784127,768.659226748961,19.41962,,,3054.0,97.0,5.08962,0.539242,0.512880980968475,0.0158325,,,0.51064,0.0207094,"4,31",2019-02-08,2021-07-15,2022-12-14 12:09:24,v-shaped,457,1,False,False,True -64071894,458.01,,1,4,1,4,4,4,4,2.9,54.2,8.75,6,8,5,PC,PC,9.6438,0.006,,1,spoc,UNKNOWN,02:36:32.71,-22:14:41.98,111.699,0.066,27.448,0.084,2458414.165631,0.001458666,17.5288346530473,5.2483167e-05,2.1115133195407,0.28851956,1.229214,0.121383,1131.50756807923,111.79175,2.8950077883642,1.0380855,25.4510625725321,572.857006509915,7.41838,76.6986,0.21015,5164.0,182.0,4.5371,0.278842,0.829518973827362,0.0527035,,,0.84,0.0998406,"4,30,31",2019-02-08,2021-07-15,2022-12-14 12:09:24,two stars in same pixel,458,1,False,False,True -38603673,459.01,,5,5,5,5,3,5,5,26.3,93.4,62.16,0,2,1,PC,APC,9.5473,0.006,,1,qlp-s62-ffi,SPOC,04:17:39.61,-61:23:31.24,10.212,0.038,21.583,0.042,2459383.023694,0.0005911,4.4291275,3.5e-06,0.645,0.092,0.967822,0.493219,891.0,454.168,9.15246,1.35911,176.726,1015.0,35.0,286.94,1.764,6559.17,40.1349,3.95184,0.110061,2.08,0.09,-0.276187,0.0457659,1.36,0.223449,"1,2,3,4,5,7,8,9,11,12,27,28,29,31,32,34,35,36,37,38,39,61,62",2019-01-31,2023-04-04,2023-04-07 12:13:06,TFOP APC/SB1; synchronized to variability,459,1,False,False,True -9804616,460.01,,5,5,5,5,5,5,5,241.2,123.0,317.0,4,0,6,EB,FP,14.1118,0.009,,1,spoc-s04-b03,SPOC,03:10:34.44,-09:16:36.52,83.543,0.211,-7.547,0.235,2458411.065871,0.00047881476,0.516834685451029,1.6358525e-05,0.936413,0.044024,36.647959,1.465748,33190.706911,1349.0933,6.597837,3.470252,118.667638516686,841.788182469652,25.98026,210.988,7.761,3274.0,101.0,4.9794,0.522163,0.273,0.06,,,0.591222,0.0236486,4,2019-02-08,2021-12-07,2022-12-14 12:09:24,Retired as SEB2 ,460,1,False,False,True -4646810,461.01,,1,5,5,4,4,1,4,3.0,61.1,4.28,11,17,7,PC,CP,8.8723,0.006,,1,spoc,SPOC,02:33:05.1,-10:21:07.84,-173.029,0.077,-92.131,0.069,2458416.351956,0.0015891608,10.9245477964911,3.9742914e-05,1.87164767616822,0.36133847,0.709801,0.067749,653.537141010675,62.396942,1.90150181418974,1.9580723,35.2426680036293,621.422457696108,10.592442,45.5621,0.08815,4884.0,96.0,4.49,0.18,0.74413001537323,0.0558769,-0.01,0.06,0.8,0.0944292,"4,31",2019-02-08,2019-02-08,2023-06-08 12:02:54,previously two single transits; now have a period for one of the singles. Other potential single transit at TBJD ~1430.8,461,1,False,False,True -420049884,462.01,,1,4,1,4,4,4,4,8.1,42.9,19.9,5,10,9,PC,PC,10.6573,0.006,,1,spoc,UNKNOWN,02:25:06.35,01:19:24.78,26.47,2.0,-29.74,2.0,2458414.818405,0.003567317,4.10750115993065,3.0084107e-05,3.51801558810901,0.33078033,0.993153,0.078914,914.309902602994,72.67992,4.69367695501041,0.30192345,445.43437957119,1171.69798487046,12.255402,205.366,,5205.0,183.0,4.45924,2.00371,1.30054998397827,,0.199,0.018,,,"4,31",2019-02-08,2019-02-08,2022-12-14 12:09:24,two nearby fainter stars; Stellar companion < 0.2¿¿¿ on ExoFOP,462,1,False,False,True -176831592,463.01,,5,5,5,5,5,5,5,507.5,934.3,317.0,4,1,4,EB,FP,9.1013,0.006,,1,qlp,UNKNOWN,03:15:49.74,-32:48:08.63,59.356,0.033,10.852,0.038,2459169.21814,0.00034,2.53405,0.0,1.944,0.081,4.427963,1.223847,4070.0,1126.57,26.5362,6.2141,3632.83,2162.0,55.0,187.812,0.942,6497.8,83.0,4.17,0.16,1.65,0.07,0.1,0.12,1.33,0.204241,31,2019-02-08,2020-12-28,2022-12-14 12:09:24,clear odd-even; some synchronization; retired as a TFOP EB,463,1,False,False,True -398733009,464.01,,5,5,5,5,5,5,5,17.8,177.7,16.17,5,0,6,PC,FP,15.61,0.0,,1,spoc,SPOC,02:08:40.75,-09:02:45.76,11.782,0.104,-9.057,0.091,2459116.382318,0.0013453984,0.818567173097829,7.746806e-05,0.98096869860241,0.0874979,49.6644,4.265546,44712.1811610994,3921.006,4.15526032524568,2.4100754,151050.066919513,5028.0545420691,10.488189,2220.36,309.14,31000.0,,5.59998,,0.18,0.104,,,0.47,0.03,30,2019-02-08,2019-02-08,2022-12-14 12:09:24,hot subdwarf star; deep secondary,464,1,False,False,True -270380593,465.01,,5,5,5,5,5,5,5,27.2,125.1,31.15,0,5,3,KP,KP,10.7307,0.006,,1,spoc-s01-s46-b0A,UNKNOWN,02:11:07.7,02:25:05.5,74.19,0.089,40.056,0.08,2459449.900242,0.0005927469,3.83616190510764,1.8262515e-06,2.38463368420771,0.0485834,5.768146,0.066723,5298.57124821292,61.451927,6.11008882177932,0.45849642,190.71356630764,947.796599986247,67.33148,122.066,0.6445,4910.0,,4.60108,,0.847379982471466,0.0548341,,,0.811,0.10253,"4,31,42,43",2019-02-08,2022-07-15,2022-12-14 12:09:24,WASP-156 b,465,1,False,False,True -4616072,466.01,,5,5,5,5,5,5,5,25.0,76.2,125.97,0,0,1,KP,KP,12.8893,0.011,,1,spoc,UNKNOWN,06:47:58.62,-21:54:38.56,-3.181,0.017,3.683,0.03,2459201.891355,0.0012581479,4.18761538150302,7.0024894e-06,3.00702168838434,0.076937735,11.906285,0.231688,10906.185708004,213.36957,13.9002368777624,0.6506094,811.350417127502,1361.19976520082,38.59756,772.11,11.145,6675.0,195.0,4.20094,,1.23732995986938,0.0545729,,,1.38,0.23449,"6,7,33",2019-02-22,2021-10-07,2022-12-14 12:09:24,HATS-45 b,466,1,False,False,True -20178111,467.01,,5,5,5,5,5,5,5,19.7,108.1,16.62,1,1,1,EB,FP,10.2767,0.006,,1,qlp-s32-ffi,UNKNOWN,05:59:35.38,-40:23:44.68,-14.62,0.037,5.776,0.043,2459198.7024,0.0013381,1.734422,0.000265,2.32,1.258,1.336278,0.168381,1230.0,155.073,4.24151,1.2984,4861.83,2326.0,31.0,151.504,0.5135,5890.0,191.0,4.48757,0.273706,0.94,0.05,,,1.06,0.134696,"6,32",2019-02-27,2021-12-07,2022-12-14 12:09:24,TFOP FP; retired as NEB,467,1,False,False,True -33521996,468.01,,5,5,5,5,5,5,5,53.0,155.6,91.33,0,0,2,KP,KP,13.3383,0.007,,1,spoc,SPOC,05:52:35.23,-19:01:53.86,-2.533,0.042,7.349,0.061,2459220.820401,0.000571,3.32527029011256,1.825392e-06,2.05381439558946,0.030129604,38.391224,0.394307,34741.7763036531,363.10464,11.5039006236455,0.3623092,47.3314939955201,668.971017514846,94.981865,169.318,1.058,3724.0,,4.68255,,0.596800982952118,0.0179141,,,0.585471,0.0203909,"6,32,33",2019-02-27,2021-10-07,2022-12-14 12:09:24,HATS-6 b,468,1,False,False,True -33692729,469.01,,1,4,1,1,4,4,4,7.0,86.4,12.37,5,17,3,PC,CP,8.7615,0.006,,1,spoc,UNKNOWN,06:12:13.88,-14:38:57.54,-79.262,0.077,162.701,0.077,2458474.569581,0.0012097756,13.6308024056266,3.529175e-05,4.34265642388421,0.1637294,1.280951,0.04287,1179.10333388499,39.483753,3.54939623522081,0.38449073,60.1603117135399,710.308920793774,25.067589,68.192,0.17675,6114.0,194.0,4.5101,0.263951,1.00528001785278,0.0565427,,,0.91,0.118028,"6,33",2019-02-27,2021-10-07,2022-12-14 12:09:24,validated planet,469,1,False,False,True -37770169,470.01,,4,4,4,4,4,4,4,6.3,61.1,19.32,6,3,4,PC,PC,10.6995,0.006,,1,spoc,UNKNOWN,06:16:02.38,-25:01:53.08,52.515,0.028,-67.02,0.039,2458474.494915,0.0016063525,12.1914558295666,4.0807266e-05,3.31881271330776,0.18263032,2.853867,0.113457,2625.05707367915,104.49199,4.61313189636544,0.42131928,44.7551380811734,659.675682273464,23.24246,130.46,0.3995,5418.0,185.0,4.57259,0.29621,0.840970993041992,0.0507437,,,0.862,0.109459,"6,33",2019-02-27,2021-07-13,2022-12-14 12:09:24,very weak odd-even,470,1,False,False,True -47911178,471.01,,5,5,5,5,5,5,5,134.9,170.8,317.0,0,3,1,KP,KP,9.79059,0.006,,1,spoc,UNKNOWN,06:33:24.26,-23:29:09.91,-2.569,0.027,24.992,0.043,2459223.302264,0.0001318,3.58570760706554,9.806579e-07,2.70720654082059,0.013635359,12.902492,0.058014,11813.3029259648,53.431217,15.8525901176334,0.73871547,1089.17098631036,1465.18939149256,231.19725,201.224,1.1455,6400.0,,4.34435,,1.34555995464325,0.0625502,,,1.277,0.202523,"6,33",2019-02-27,2021-10-07,2022-12-14 12:09:24,WASP-101 b,471,1,False,False,True -52280468,472.01,,5,5,5,5,3,5,5,1853.8,1718.8,317.0,7,0,1,PC,APC,12.3123,0.007,,1,qlp-s33-tois,UNKNOWN,06:39:28.09,-33:32:24.8,45.069,3.739,18.418,3.739,2459226.783631,0.001587,0.5682596,1.2e-06,0.755,,47.198401,0.000913,42540.0,0.841172,24.8489,0.784699,138.045,954.0,136.0,,,3294.0,,4.438,,0.5,0.02,,,0.500534,0.0209425,"6,7,33",2019-02-22,2022-07-11,2022-12-14 12:09:24,no GAIA radius with Teff 3869K; large planet around an M star if real,472,1,False,False,True -52640302,473.01,,5,5,5,5,5,5,5,97.9,87.2,317.0,0,0,1,KP,KP,12.0506,0.007,,1,spoc,UNKNOWN,06:44:27.58,-32:51:30.2,-19.389,0.034,-1.123,0.04,2459229.48943,0.0005577108,1.57328484098308,1.0491766e-06,2.42852845218543,0.023683269,18.479024,0.171574,16875.790984932,158.01283,14.72475239213,0.77020836,1563.63736591232,1603.81311149181,75.57263,369.926,3.0025,5400.0,,4.38782,,1.09538996219635,0.0565955,,,1.0,0.122754,"6,7,33,34",2019-02-22,2021-10-07,2022-12-14 12:09:24,WASP-64 b,473,1,False,False,True -59843967,474.01,,5,5,5,5,5,5,5,48.9,121.3,111.07,0,0,3,KP,KP,12.7632,0.007,,1,spoc,UNKNOWN,06:16:26.9,-22:32:48.78,0.266,0.015,2.484,0.026,2459226.05544,0.0006162,2.51672571567235,2.3404966e-06,2.5896099209247,0.045473907,17.960925,0.225938,16406.5457432305,208.0753,12.9083147881226,0.75047064,558.828014864987,1240.05027221043,46.15443,416.459,2.7085,5403.0,,4.50146,,0.982638001441956,0.0551458,,,0.91,0.114406,"6,33",2019-02-27,2021-10-07,2022-12-14 12:09:24,HATS-4 b,474,1,False,False,True -100608026,475.01,,1,4,1,4,3,2,4,2.8,46.8,6.1,5,5,1,PC,PC,10.8835,0.006,,1,spoc,UNKNOWN,05:46:59.6,-32:31:57.15,61.463,0.034,127.149,0.036,2458442.486555,0.0013021544,8.26176630022218,2.2897199e-05,2.56633071449768,0.328758,1.541026,0.080926,1418.33089847495,74.53241,2.34145360027592,0.9299485,18.8227715581806,531.239846372898,17.709795,58.7502,0.0718,4105.0,171.0,4.60015,0.224825,0.619400024414062,0.0644472,,,0.62,0.0790156,"5,6,32,33",2019-05-17,2021-07-28,2022-12-14 12:09:24,,475,1,False,False,True -156987351,476.01,,3,4,4,3,4,4,4,101.6,121.6,317.0,8,1,3,PC,PC,8.8742,0.006,,1,qlp-s61-ffi,SPOC/QLP,06:38:19.54,-47:36:49.92,-0.399,0.06,-1.49,0.062,2459982.990599,0.001004,3.0629874,4.3e-06,3.284,0.156,6.708819,0.157487,6160.0,145.04,14.75,0.5761,2303.34,1930.0,44.0,244.897,1.922,7691.0,215.0,4.11671,0.365191,2.05,0.07,,,1.71,0.285295,"6,7,8,33,34,61",2019-02-22,2023-04-04,2023-04-07 12:13:06,pulsating host,476,1,False,False,True -170102285,477.01,,5,5,5,5,5,5,5,82.4,210.0,109.35,0,0,1,KP,KP,11.7583,0.006,,1,spoc,UNKNOWN,06:44:30.6,-42:45:44.03,-9.014,0.042,-87.771,0.048,2459230.32355,0.00033898305,2.9444283642951,1.2359362e-06,2.43018977960937,0.020691892,22.466329,0.161333,20479.6383719338,148.58255,12.7904876273106,0.849383,317.431275955975,1076.54497534209,128.88583,207.49,1.0265,5150.0,,4.55754,,0.887269973754883,0.0584598,0.05,0.06,0.84,0.100206,"6,34",2019-02-27,2021-10-07,2022-12-14 12:09:24,WASP-23 b,477,1,False,False,True -172464366,478.01,,5,5,5,5,5,5,5,130.0,175.0,317.0,0,1,1,PC,FP,11.0913,0.006,,1,spoc,UNKNOWN,06:40:38.13,-27:34:16.54,12.581,0.05,33.688,0.073,2458470.046418,0.000448,2.921685,0.000125,3.17791,0.030233,19.237612,0.246999,17562.44572,227.46902,19.091127,3.182325,1458.39969265747,1576.11858679214,79.50801,344.517,4.1875,6332.0,196.0,4.26074,0.377655,1.37266,0.22851,,,1.117,0.145182,6,2019-02-22,2019-02-22,2022-12-14 12:09:24,centroid shift because of nearby bright star; some phase variation (non-synchronized) and possible secondary; DR2 RVs show 6.4 km/s scatter.,478,1,False,False,True -306362738,479.01,,5,5,5,5,5,5,5,100.9,267.2,107.82,0,0,1,KP,KP,10.8164,0.006,,1,spoc,UNKNOWN,06:04:21.53,-16:57:55.4,54.769,0.05,-19.061,0.056,2459221.888774,0.0002154,2.78173786418568,9.603064e-07,2.15082366775751,0.016458897,13.996365,0.087064,12808.394080069,80.18528,12.6841023389051,0.60692525,615.470882221054,1270.34483866454,168.56888,194.553,1.196,5600.0,,4.4291,,1.02094995975494,0.0485654,,,0.989,0.123626,"6,33",2019-02-27,2021-10-07,2022-12-14 12:09:24,WASP-49 b,479,1,False,False,True -317548889,480.01,,1,4,1,4,4,3,4,10.8,110.9,8.34,1,20,3,PC,PC,6.7799,0.006,,1,spoc,UNKNOWN,05:53:30.83,-16:15:55.43,-43.419,0.077,-90.042,0.084,2458469.562003,0.0009415649,6.86595824422574,1.7074713e-05,3.45576104475193,0.24825074,0.362712,0.020215,334.014558870257,18.618645,2.81449145017817,0.841036,531.520984790177,1224.61578594826,16.847942,54.5306,0.12465,6212.63,49.0057,4.438,,1.50004005432129,0.0580779,,,1.2,0.163384,"6,33",2019-02-27,2021-07-15,2022-12-14 12:09:24,,480,1,False,False,True -339672028,481.01,,3,5,5,3,4,4,4,42.1,137.9,99.07,2,3,3,CP,CP,9.3935,0.006,,1,qlp-s63-ffi,SPOC/QLP,07:22:03.04,-57:23:05.99,25.676,0.061,-25.387,0.077,2460019.990169,0.0003345,10.3311544,3.8e-06,5.561,0.048,5.171716,0.02572,4752.0,23.6891,12.0808,0.597534,208.172,1058.0,316.0,179.366,1.0125,5760.0,189.0,3.97699,0.288134,1.73,0.09,,,1.04,0.129043,"3,6,7,9,10,13,27,30,33,34,35,36,37,61,62,63",2019-02-22,2023-05-11,2023-06-16 12:14:51,TOI-481 b,481,1,False,False,True -365639282,482.01,,5,5,5,5,5,5,5,14.3,115.2,77.8,2,1,7,EB,FP,13.084,0.007,,1,spoc-s06-b01,UNKNOWN,05:25:35.76,08:26:25.8,90.8,2.0,-86.37,2.0,2458472.41279,0.004222,10.8717,0.00594,2.943958,0.429073,15.972321,1.904575,14603.37238,1752.6406,9.098964,23.361732,4.58694029854532,373.250605964648,11.663487,173.8201,,3692.0,65.0,4.78092,0.353337,0.488,0.074,,,0.555463,0.0211008,6,2019-02-27,2021-12-07,2022-12-14 12:09:24,TFOP FP; retired as NEB,482,1,False,False,True -393414358,483.01,,5,5,5,5,5,5,5,68.3,66.3,317.0,0,0,1,KP,KP,10.439,0.006,,1,spoc,UNKNOWN,06:17:20.73,-38:19:24.18,-17.558,0.039,-27.297,0.043,2458469.697072,0.00023070979,4.37808065212245,2.2370962e-06,5.39009777089364,0.029562065,7.708223,0.036056,7074.39313879733,33.208263,15.1767345885551,0.8269774,1103.2707505918,1469.90841336922,197.32759,290.684,2.021,5570.0,,4.01069,,1.79224002361298,0.0968467,0.28,0.05,1.02,0.128764,"6,7,32,33",2019-02-22,2021-10-07,2022-12-14 12:09:24,WASP-63 b,483,1,False,False,True -427348923,484.01,,5,5,5,5,5,5,5,33.5,113.3,59.82,0,1,4,EB,FP,11.6888,0.006,,1,qlp,UNKNOWN,05:34:07.65,-00:12:27.94,-25.016,0.076,20.026,0.061,2459196.648037,0.0010212,4.728681,9.4e-06,4.533,0.191,10.901047,0.003485,9990.0,3.20954,8.96336,0.808714,222.388,1075.0,86.0,149.953,0.952,4425.0,90.0,4.57,0.13,0.9,0.08,0.034,0.051,0.692,0.0808524,"6,32",2019-02-27,2021-02-01,2022-12-14 12:09:24,could be on 427348561 which is 3x as large (2 Rsun) and 33% fainter; depth in 561 is 14.4 ppt so Rp=26 Re assuming Gaia lower percentile R* = 1.99.,484,1,False,False,True -427352241,485.01,,5,5,5,5,5,5,5,39.9,111.9,52.47,1,3,1,EB,FP,9.9955,0.031,,1,qlp,UNKNOWN,05:34:29.52,-04:24:54.16,-13.311,0.082,-30.295,0.071,2459198.437811,0.0009288,1.2667147,2.6e-06,1.712,0.475,2.032227,0.013403,1870.0,12.3444,8.31491,0.803332,3265.32,2105.0,49.0,282.205,3.579,6084.0,193.0,4.28965,2.00468,1.87,0.08,,,1.42,0.258561,"6,32",2019-02-22,2021-02-01,2022-12-14 12:09:24,2 stars in same pixel; dmag 0.4,485,1,False,False,True -260708537,486.01,,2,4,4,2,3,4,4,2.5,28.2,0.18,9,3,3,PC,PC,9.36854,0.007,,1,qlp-s63-ffi,QLP,06:33:49.17,-58:31:30.11,-404.351,0.069,795.85,0.068,2460036.789256,0.0022866,1.7447021,3.4e-06,0.987,0.58,0.182419,0.034848,168.0,32.0958,0.633718,0.0589259,135.269,950.0,16.0,15.2142,0.00715,3445.0,87.0,4.85243,0.061474,0.43,0.01,,,0.421238,0.0203412,"1,2,3,4,5,6,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63",2019-05-07,2023-05-10,2023-06-16 12:14:51,high proper motion star,486,1,False,False,True -31852980,487.01,,1,4,1,1,3,4,4,1.5,30.7,7.91,2,4,4,PC,PC,9.8542,0.007,,1,qlp-s63-ffi,SPOC,03:30:09.73,-70:23:58.5,,,,,2460034.166645,0.0057998,24.332320764456,9.876011e-05,5.223,0.714,0.560384,0.027661,516.0,25.4766,2.727569,2.738268,32.6779,666.0,12.0,,,5450.0,185.0,4.40968,2.00408,1.0083,1.0083,,,,,"1,2,3,6,10,13,28,29,30,33,36,37,61,63",2019-05-07,2023-05-05,2023-05-05 00:00:00,TOI 487.01; possible multi; visual binary; R* and Rp kept from TIC 7 in Y1,487,1,True,False,True -31852980,487.02,,1,4,1,1,3,4,4,2.6,34.9,5.59,2,4,4,PC,PC,9.8542,0.007,,2,qlp-s63-ffi,SPOC,03:30:09.73,-70:23:58.5,,,,,2460032.464835,0.0042894,7.4144729,2.85e-05,3.433,1.16,0.444157,0.028103,409.0,25.8832,,,220.138,1073.0,14.0,,,5450.0,185.0,4.40968,2.00408,,,,,,,"1,2,3,6,10,13,28,29,30,33,36,37,61,63",2019-05-07,2023-05-11,2023-06-16 12:14:51,possible multi; no stellar radius; some odd even; visual binary,487,2,True,False,True -452866790,488.01,,1,5,5,1,4,4,4,5.8,13.8,1.47,19,3,13,CP,CP,11.1972,0.007,,1,spoc,SPOC,08:02:22.47,03:20:13.79,-403.168,0.086,-381.015,0.048,2459228.978094,0.0021590327,1.197995927968,8.598732e-06,1.01344934412474,0.47586006,1.057228,0.117395,973.268913552216,108.11865,1.12172615223801,1.5192634,58.2604592216592,704.633400519367,14.037585,27.3644,0.0376,3332.0,63.0,4.91528,0.142281,0.354528993368149,0.0107089,,,0.33944,0.0203209,"7,34",2019-03-14,2021-12-01,2022-12-14 12:09:24,GJ 3473 b,488,1,False,False,True -455096220,489.01,,5,5,5,5,5,5,5,38.0,103.6,116.63,0,0,1,KP,KP,11.8997,0.006,,1,spoc,UNKNOWN,08:13:00.17,04:47:13.3,-9.57,0.081,-7.348,0.052,2459250.846246,0.0007946,3.64666120530808,4.0383798e-06,3.9225178129503,0.059136398,9.809919,0.127797,8994.57366424846,117.6988,13.2844134097076,0.6727048,999.66875050179,1434.11434074802,50.01656,506.965,12.872,6096.0,,4.21513,,1.35671997070312,0.0661156,0.12,0.03,1.18,0.165146,"7,34",2019-03-14,2021-12-01,2022-12-14 12:09:24,HAT-P-35,489,1,False,False,True -455135327,490.01,,5,5,5,5,5,5,5,146.7,170.9,317.0,0,0,1,KP,KP,9.93908,0.006,,1,qlp-s61-ffi,QLP,08:15:47.96,05:50:12.72,-17.516,0.081,23.782,0.058,2459987.155178,0.0001973,2.8106006,8e-07,1.956,0.107,13.081265,0.283058,11976.0,260.672,15.6823,0.818348,813.66,1487.0,195.0,213.985,2.195,6304.0,,4.35913,,1.34,0.07,0.12,0.03,1.254,0.181435,"7,34,61",2019-03-14,2023-04-04,2023-04-07 12:13:06,HAT-P-30 b,490,1,False,False,True -468987719,491.01,,5,5,5,5,5,5,5,42.6,45.2,317.0,0,2,1,KP,KP,12.7656,0.007,,1,qlp-s46-ffi,UNKNOWN,08:35:42.17,10:12:23.71,-9.051,0.046,-13.686,0.032,2459573.337904,0.0005219,3.3326807,1.4e-06,3.136,0.021,18.660387,0.00039,17040.0,0.359409,14.4817,0.644502,524.345,1333.0,40.0,528.825,7.483,5645.0,,4.37683,,1.11,0.05,0.171049,0.0320279,1.01,0.119386,"7,34,44,45,46",2019-03-14,2022-01-24,2022-12-14 12:09:24,HAT-P-43 b,491,1,False,False,True -17746821,492.01,,5,5,5,5,5,5,5,43.3,105.5,126.54,0,0,2,KP,KP,11.3155,0.006,,1,qlp-s46-tois,UNKNOWN,07:52:15.23,12:08:21.65,6.736,0.094,-12.125,0.049,2459573.381409,0.0005194,3.1220237,3.4e-06,3.41,0.088,7.134965,0.000987,6550.0,0.909271,13.9405,0.883956,1198.68,1639.0,82.0,515.458,16.1965,6280.0,,4.08133,,1.73,0.11,-0.134,0.01,1.25,0.185737,"7,34,44,45,46",2019-03-14,2022-03-10,2022-12-14 12:09:24,HAT-P-50b,492,1,False,False,True -19025965,493.01,,1,4,1,4,4,4,4,7.7,51.0,16.14,12,4,6,PC,PC,11.4479,0.006,,1,qlp-s46-tois,UNKNOWN,07:58:30.65,12:52:59.74,-49.092,0.071,-45.465,0.044,2459575.213744,0.0018824,5.9444406,2.18e-05,2.095,0.376,2.706855,0.003998,2490.0,3.68262,4.14165,0.378142,29.7313,650.0,22.0,107.355,0.467,4383.0,174.0,4.56546,0.238209,0.81,0.07,0.132533,0.0300129,0.648,0.0829328,"7,34,44,45,46",2019-03-14,2022-03-10,2022-12-14 12:09:24,,493,1,False,False,True -19519368,494.01,,1,4,1,4,4,2,4,6.6,59.3,4.5,1,3,6,PC,PC,10.0854,0.006,,1,qlp-s61-ffi,SPOC,08:18:46.9,-06:47:09.32,-109.727,0.067,-16.829,0.052,2459987.549589,0.0020649,1.7018818,4.1e-06,1.551,0.247,0.619046,0.047954,570.0,44.1664,1.96356,0.149804,400.827,1246.0,13.0,89.9559,0.375,4985.0,114.0,4.67,0.16,0.8,0.05,0.124,0.07,0.83,0.0998259,"7,34,61",2019-03-14,2023-04-04,2023-04-07 12:13:06,possible odd-even,494,1,False,False,True -22529346,495.01,,5,5,5,5,5,5,5,324.7,479.1,317.0,0,1,3,KP,KP,10.056,0.006,,1,qlp-s61-ffi,SPOC,07:10:24.06,-39:05:50.17,-3.848,0.04,25.607,0.042,2459986.21062,0.0001842,1.2749246,3e-07,2.783,0.038,20.494396,0.094326,18699.0,86.8734,22.0328,0.876995,6216.41,2473.0,502.0,269.898,1.571,6459.0,,4.24006,,1.52,0.06,,,1.45,0.25252,"7,33,34,61",2019-03-14,2023-04-04,2023-04-07 12:13:06,WASP-121 b,495,1,False,False,True -88977253,496.01,,5,5,5,5,4,5,5,129.0,277.1,317.0,0,1,2,PC,APC,12.33,0.007,,1,spoc-s07-b01,SPOC,08:12:23.44,-05:46:07.17,-1.076,0.078,0.83,0.052,2458492.708311,0.000567,2.767691,0.000112,1.876437,0.042975,24.919436,0.612722,22690.263354,564.17865,28.980984,14.55595,2360.1000392691,1777.67494987544,68.14428,791.384,29.483,6717.03,158.02,4.2,0.05,1.54739,0.746179,-0.068,0.034,1.46,0.250324,7,2019-03-14,2021-12-07,2022-12-14 12:09:24,TFOP APC; previously retired as EBLM per Coal and SWASP team (dRV=65 km/s; 14 RVs) ,496,1,False,False,True -108645766,497.01,,5,5,5,5,5,5,5,13.2,141.8,14.24,1,0,2,EB,FP,13.2312,0.007,,1,spoc-s07-b01,SPOC,07:29:47.14,-28:29:02.1,207.907,0.067,-171.569,0.09,2458492.914449,0.006628,2.974175,0.001636,3.031634,0.343247,12.785984,1.833569,11707.257241,1687.3541,3.756355,0.897648,13.8678401334875,492.177726931967,7.1741686,56.336,0.1543,3333.0,102.0,4.94824,0.506965,0.302,0.065,,,0.288049,0.0201765,7,2019-03-14,2021-12-07,2022-12-14 12:09:24,TFOP FP; retired as NEB,497,1,False,False,True -121338379,498.01,,5,5,5,5,4,5,5,32.6,175.4,14.73,12,4,4,PC,APC,9.58094,0.006,,1,spoc-s01-s36-b0A-PC,SPOC,08:36:21.79,-03:51:36.73,-22.854,0.066,4.87,0.058,2459228.765582,0.00033687268,0.275047829249589,1.2331428e-05,0.525139325455354,0.091785796,0.763601,0.043872,703.055422506139,40.40676,4.05879975802536,0.447492,34263.9733582478,3469.99764856994,21.02685,188.364,1.443,6218.0,195.0,4.26662,2.00625,1.3227299451828,0.0560176,-0.01,0.052,1.351,0.223492,"7,34,61",2019-03-14,2023-07-12,2023-07-12 00:00:00,TFOP APC/BEB; ~3 sigma odd-even; possible secondary in multisector; multiple stars in pixel,498,1,False,False,True -123702439,499.01,,1,4,1,1,3,4,4,6.8,63.0,16.04,5,3,1,PC,PC,10.1374,0.006,,1,qlp-s61-ffi,SPOC,07:42:33.29,-43:33:12.58,-25.701,0.046,80.905,0.054,2459984.936468,0.0025761,8.5334865,2.27e-05,2.369,0.654,1.908229,0.155081,1756.0,142.825,4.14687,0.268207,130.53,941.0,25.0,158.659,0.7455,5997.0,192.0,4.45722,0.328186,0.97,0.04,,,1.21,0.180551,"7,8,34,35,61",2019-03-08,2023-04-04,2023-04-07 12:13:06,v-shaped; possible secondary; possible centroid offset towards TIC 769340768,499,1,False,False,True -134200185,500.01,,1,5,5,1,4,4,4,9.5,11.8,2.23,4,4,3,PC,CP,9.4022,0.006,,1,spoc,UNKNOWN,07:06:14.18,-47:35:16.14,135.798,0.04,-146.251,0.037,2458468.392881,0.00063279044,0.548155112002868,9.834667e-06,0.982485105738945,0.16401854,0.224368,0.018061,206.629101969336,16.63428,1.29516399703341,0.32781905,1463.12335687381,1577.39327665954,17.150047,47.3924,0.0473,4590.0,176.0,4.50961,0.324858,0.751824975013733,0.0631583,,,0.7,0.0800304,"6,7,8,33,34,35",2019-03-08,2021-07-15,2022-12-14 12:09:24,Crowded.,500,1,False,False,True -134537478,501.01,,4,4,4,5,5,5,5,174.8,175.4,317.0,1,0,1,KP,KP,10.3887,0.006,,1,qlp-s34-tois,SPOC,07:13:12.34,-42:24:35.14,-11.287,0.041,-1.855,0.042,2459987.847958,0.0015644,1.7100122,8e-07,1.79,0.112,13.855164,0.002567,12680.0,2.36465,17.2191,0.87616,826.113,1493.0,352.0,250.121,1.539,5720.0,,4.16816,,1.51,0.07,,,1.06,0.139498,"7,33,34,61",2019-03-14,2023-04-04,2023-04-04 00:00:00,KELT-14 b,501,1,False,False,True -172193428,502.01,,3,4,3,4,4,3,4,47.0,158.3,58.29,2,4,3,PC,PC,10.3773,0.006,,1,spoc,UNKNOWN,06:34:07.67,-28:24:15,-12.389,0.068,16.52,0.084,2458493.778447,0.0006970577,2.94126939125399,5.1281495e-06,1.62232594784039,0.08625242,2.632157,0.152507,2421.36967534003,140.45448,8.83355657020136,4.6483674,990.292179508738,1430.73956438911,28.649582,215.387,2.802,5642.0,188.0,4.16735,0.325713,1.21355998516083,0.0591206,,,1.107,0.145453,"6,7,33",2019-03-08,2021-07-15,2022-12-14 12:09:24,odd-even; V-shaped; possible EB,502,1,False,False,True -186812530,503.01,,4,5,5,4,4,4,5,58.8,224.5,92.78,5,48,5,CP,CP,9.19813,0.006,,1,qlp-s46-tois,UNKNOWN,08:17:16.89,12:36:04.76,-9.336,0.095,-9.945,0.053,2459573.196069,0.00022,3.6773551,1.9e-06,1.485,0.179,4.26445,0.002004,3920.0,1.84551,11.5816,0.456453,1053.63,1587.0,156.0,255.416,3.8885,7887.0,218.0,4.28126,0.47567,1.68,0.06,,,1.835,0.280385,"7,34,44,45,46",2019-03-14,2022-03-11,2022-12-14 12:09:24,confirmed brown dwarf,503,1,False,False,True -219164808,504.01,,5,5,5,5,5,5,5,285.0,564.0,317.0,3,1,3,EB,FP,9.6646,0.006,,1,qlp,UNKNOWN,06:03:05.78,-52:05:03.52,-8.962,0.062,11.404,0.065,2459358.890413,0.0002168,1.6773063,8e-07,2.352,0.028,4.25355,0.081742,3910.0,75.2842,29.2836,2.71543,15535.1,3110.0,277.0,425.719,5.639,6915.0,204.0,4.17618,1.79143,2.56,0.1,,,1.62,0.275107,"1,4,5,7,8,11,28,31,32,33,34,38",2019-03-08,2021-02-18,2022-12-14 12:09:24,TFOP FP; retired as EB,504,1,False,False,True -268644785,505.01,,5,5,5,5,5,5,5,84.4,96.4,317.0,0,0,1,KP,KP,10.6815,0.006,,1,spoc,UNKNOWN,07:49:39.59,-52:07:13.61,-4.516,0.041,-2.283,0.039,2459299.865444,0.0011183,3.32946492386429,8.828302e-07,4.01231078871438,0.015445955,11.574609,0.038815,10603.986390495,35.749672,16.0269618715281,0.6831824,1612.76181200945,1616.26402855007,289.72116,324.683,2.4605,6003.0,,4.16979,,1.5223799943924,0.0646733,,,1.33,0.225109,"7,9,34,35,36",2019-03-08,2021-12-01,2022-12-14 12:09:24,KELT-15 b,505,1,False,False,True -274138511,506.01,,5,5,5,5,5,5,5,10.5,39.2,23.11,1,1,5,EB,FP,10.4215,0.006,,1,spoc-s07-b01,SPOC,07:46:44.88,06:26:44.05,-7.001,0.067,-30.304,0.037,2458492.500001,0.003381,2.774207,0.000722,2.393565,0.531679,0.7531,0.072173,693.389889,66.471954,2.582442,3.122172,444.231027999463,1170.9058394241,9.472691,267.292,2.665,5280.0,183.0,4.44454,2.00384,0.945062,0.945062,,,0.9,0.111488,7,2019-03-14,2021-12-07,2022-12-14 12:09:24,Retired as NEB,506,1,False,False,True -348538431,507.01,,3,4,4,3,4,4,4,417.3,317.3,317.0,12,1,5,PC,PC,13.2304,0.007,,1,spoc,SPOC,08:06:31.1,-15:45:52.88,47.801,0.077,-15.298,0.058,2458492.096172,8.3921295e-05,0.89946770091991,7.0715475e-07,1.20666675437893,0.013302475,65.758698,0.701757,58768.353615353,646.13336,17.1200078310835,3.774096,133.466766825742,866.881327294308,137.94376,110.884,0.6935,3338.0,64.0,4.9469,0.402157,0.505078017711639,0.0152355,,,0.503052,0.0204518,"7,34",2019-03-14,2021-07-06,2022-12-14 12:09:24,V-shaped; large planet; likely EB,507,1,False,False,True -425206121,508.01,,5,5,5,5,5,5,5,120.5,208.9,317.0,0,0,1,KP,KP,9.654,0.006,,1,qlp,UNKNOWN,07:26:02.29,07:36:56.79,-2.85,0.09,-1.371,0.08,2459222.78972,0.0001826,4.6117328,1.9e-06,4.065,0.151,12.986764,0.000234,11890.0,0.215946,18.7958,0.671401,1460.67,1722.0,226.0,300.276,4.614,7346.0,210.0,4.14208,1.62475,1.67,0.06,0.453561,0.00937043,1.7,0.275479,"7,33",2019-03-14,2021-02-19,2022-12-14 12:09:24,KELT-19A,508,1,False,False,True -453211454,509.01,,2,5,5,2,4,2,4,8.6,109.8,7.94,4,25,9,CP,CP,7.9259,0.006,,1,qlp-s46-tois,UNKNOWN,07:51:41.91,09:23:06.87,-78.797,0.079,-188.706,0.043,2459563.388598,0.001391,9.0588586,2.5e-05,3.316,0.406,0.847205,0.000539,780.0,0.496718,2.72745,0.143904,108.556,899.0,32.0,48.9739,0.1055,5560.26,43.3509,4.438,,0.96,0.04,,,0.98,0.128967,"7,34,46",2019-03-15,2022-03-11,2022-12-14 12:09:24,HD 63935 b / TOI 509.01,509,1,True,False,True -453211454,509.02,,1,5,5,1,4,4,4,5.0,94.5,9.3,4,25,9,CP,CP,7.9259,0.006,,2,spoc-s01-s36-b0A-PC,SPOC,07:51:41.91,09:23:06.87,-78.797,0.079,-188.706,0.043,2459231.828048,0.001389024,21.4016544070564,0.00012053438,5.38474589616623,0.32298875,1.043627,0.036955,960.753987733744,34.036156,3.00104262363052,0.6084392,35.2811723896033,621.592122015791,24.131968,48.9739,0.1055,5560.26,43.3509,4.438,,0.962324023246765,0.0434171,,,0.98,0.128967,"7,34",2021-03-11,2022-02-07,2022-12-14 12:09:24,HD 63935 c / TOI 509.02,509,2,True,False,True -238086647,510.01,,1,5,5,1,3,4,4,16.1,112.9,8.44,3,4,3,PC,APC,8.4633,0.006,,1,qlp-s62-ffi,SPOC/QLP,06:59:50.16,-49:30:26.93,103.222,0.045,-69.867,0.047,2460011.316365,0.0017275,1.3523942,1.5e-06,0.512,0.097,0.402883,0.090388,371.0,83.2468,2.82883,0.327242,252.046,1110.0,18.0,93.0994,0.1949,5915.0,191.0,4.1283,0.268589,1.29,0.06,,,1.07,0.133902,"6,7,8,33,34,35,61,62",2019-03-18,2023-04-04,2023-04-07 12:13:06,TFOP RV0/APC; variable host; offset not consistent with nearby stars,510,1,False,False,True -440777904,511.01,,5,5,5,5,5,5,5,73.3,94.3,317.0,0,0,3,KP,KP,11.3072,0.007,,1,qlp-s46-tois,UNKNOWN,07:15:18.03,14:15:45.38,8.152,0.077,-1.716,0.063,2459572.084574,0.0002352,3.3552499,1.6e-06,3.547,0.028,13.448358,0.000188,12310.0,0.173614,16.4831,0.818767,1047.12,1584.0,207.0,415.344,6.5355,6373.0,,4.27283,,1.42,0.07,-0.21,0.08,1.25,0.197415,"7,33,44,45,46",2019-03-22,2022-03-10,2022-12-14 12:09:24,HAT-P-24 b,511,1,False,False,True -119292328,512.01,,1,4,4,1,3,4,4,2.2,39.6,2.94,1,3,1,PC,PC,8.9767,0.006,,1,spoc,UNKNOWN,06:26:35.21,-38:36:25.95,3.004,0.042,-109.019,0.044,2458471.218204,0.0021185945,7.18873321303685,4.510526e-05,2.95057521365425,0.4082451,0.309759,0.026225,285.257998998963,24.15356,1.52545822694883,1.1745087,112.461901743896,830.560179450256,10.797672,67.3975,0.11655,5581.0,187.0,4.52166,0.26533,0.882674992084503,0.048995,,,0.92,0.118252,"6,7,33",2019-03-18,2021-07-15,2023-07-12 00:00:00,first candidate in potential multi,512,1,True,False,True -119292328,512.02,,1,4,4,1,3,4,4,1.2,33.5,3.71,1,3,1,PC,APC,8.9767,0.006,,2,qlp,QLP,06:26:35.21,-38:36:25.95,3.004,0.042,-109.019,0.044,2459201.06601,0.0091323,20.2749388,0.0004533,5.788,0.9,0.445243,0.001949,410.0,1.79518,1.74398,0.162156,56.5944,764.0,9.0,67.3975,0.11655,5581.0,187.0,4.52166,0.26533,0.88,0.05,,,0.92,0.118252,"6,7,33",2021-03-29,2021-03-29,2023-07-12 12:03:06,potential multi,512,2,True,False,True -431999925,513.01,,5,5,5,5,5,5,5,18.2,70.7,27.51,1,0,2,PC,FP,14.7095,0.007,,1,spoc,SPOC,08:03:09.59,-20:00:36.33,64.87,2.0,-60.53,2.0,2458492.93007,0.008993,1.445433,0.000968,3.684343,0.720241,18.213453,2.373195,16635.28994,2183.4067,3.493627,0.975823,29.2577267084475,593.170978124137,7.890174,190.2254,,3266.0,101.0,4.98546,0.527945,0.269,0.06,,,0.432904,0.027888,7,2019-03-22,2019-03-22,2022-12-14 12:09:24,likely on TIC 431999916 which has lower end Gaia Rstar=2.8 Rsun and is 0.9 brighter than the target in T-band; still possibly planetary,513,1,False,False,True -366576758,514.01,,5,5,5,5,5,5,5,9.5,46.3,86.76,0,1,6,KP,KP,13.6674,0.008,,1,spoc-s01-s46-b0A,SPOC,08:31:31.9,11:55:20.12,-13.149,0.061,-2.452,0.037,2459532.414255,0.0036327892,11.390955594329,2.610058e-05,3.79136030331111,0.1938624,18.129051,0.571662,16558.8432191793,526.3812,11.1621830613777,0.64199126,46.9022128539075,667.448994111466,29.865011,475.758,8.116,5027.0,,4.51935,,0.875935971736908,,,,0.81,,"7,44,45,46",2019-03-22,2022-07-15,2022-12-14 12:09:24,K2-114 b,514,1,False,False,True -366622912,515.01,,4,4,4,4,4,4,4,33.2,94.0,97.73,13,2,7,PC,PC,13.7988,0.007,,1,spoc-s01-s46-b0A,SPOC,08:32:16.1,11:37:50.56,-9.569,0.06,-2.149,0.04,2459552.347291,0.0017526764,3.11489170144463,2.1308392e-06,2.36263211087018,0.050176285,28.139032,0.446142,25584.0432269237,410.8274,11.9721077960683,0.23636968,198.092302339249,956.834111040804,52.26891,442.813,6.8055,4973.0,172.0,4.438,,0.749559998512268,,,,0.82,,"7,34,44,45,46",2019-03-22,2022-07-15,2022-12-14 12:09:24,K2-371 b,515,1,False,False,True -318937509,516.01,,5,5,5,5,4,5,5,99.8,194.7,78.11,8,2,7,EB,APC,14.114,0.009,,1,spoc,SPOC,07:29:31.57,02:50:52.63,18.804,0.151,-38.756,0.11,2458492.649974,0.000949,1.04855,7.3e-05,1.062799,0.058793,38.282322,2.288797,34644.953978,2105.8394,4.183797,0.977004,26.9192494498263,580.945626121946,20.462208,150.5,2.0185,3109.0,98.0,5.06577,0.548895,0.202,0.046,,,0.504545,0.0208618,7,2019-03-22,2021-02-09,2022-12-14 12:09:24,v-shaped; TFOP APC/retired as SB2,516,1,False,False,True -308307606,517.01,,5,5,5,5,5,5,5,6.6,46.5,65.29,0,0,0,PC,FP,13.2361,0.006,,1,spoc,SPOC,08:00:47.98,-60:51:56.28,-5.8,0.03,11.426,0.032,2458496.577842,0.003205,15.00263,0.004596,2.451605,0.266214,11.498214,1.116977,10534.36713,1028.2451,11.937991,11.974361,64.2176222109756,721.993528410163,11.168397,416.217,2.6445,5522.0,180.0,4.39493,,1.03562,1.03562,,,0.94,,7,2019-03-18,2019-03-18,2022-12-14 12:09:24,9.9 day eccentric system with separations between events of ~4.72; 5.16; 4.72; 5.16 days,517,1,False,False,True -264979636,518.01,,1,4,1,4,4,2,4,2.4,36.8,10.85,4,3,9,PC,PC,10.1432,0.006,,1,spoc,SPOC,07:42:52.03,08:52:00.86,-11.23,0.079,-13.192,0.058,2458495.790236,0.003243,17.87897,0.004585,2.124101,0.809095,1.061067,0.148371,976.801579,136.64546,3.618524,4.193206,63.765593417662,720.719630057148,7.363369,159.814,1.219,5596.0,187.0,4.32233,0.294962,1.13674,0.151592,,,1.069,0.135756,7,2019-03-22,2019-03-22,2022-12-14 12:09:24,low MES; possible centroid offset; GAIA Rstar=1.06Rsun,518,1,False,False,True -218795833,519.01,,3,5,5,3,4,4,4,150.0,331.3,100.44,7,1,5,PC,CP,14.4347,0.007,,1,spoc,SPOC,08:18:25.62,-19:39:46.05,-41.992,0.095,29.095,0.073,2458491.871966,0.00015082695,1.26524451871225,1.0045775e-06,1.31787147352587,0.018965987,124.588734,1.641006,108411.400805035,1510.2803,12.1663930103749,0.3946811,53.9858959974975,691.337043411558,95.899445,115.557,0.9295,3225.0,100.0,5.00457,0.531516,0.355309009552002,0.0109591,,,0.34034,0.0204828,"7,34",2019-03-22,2021-07-01,2022-12-14 12:09:24,TOI519b,519,1,False,False,True -148479278,520.01,,1,5,5,1,3,4,4,2.7,5.0,2.82,4,2,1,PC,PC,9.3777,0.006,,1,spoc,UNKNOWN,06:50:37.91,-37:57:36.7,-12.079,0.048,9.031,0.058,2458468.652117,0.0018405851,0.523613019461587,1.24087155e-05,2.30045209602337,0.28488445,0.090039,0.011319,82.9259400556256,10.425028,1.48616445816792,0.66198206,26568.3567101947,3256.19888272925,9.067369,222.315,1.5185,7450.0,211.0,4.33986,0.416811,1.52948999404907,0.054392,,,1.66,0.273303,"6,7,33,34",2019-03-18,2019-03-18,2022-12-14 12:09:24,,520,1,False,False,True -27649847,521.01,,2,4,2,2,4,4,4,7.1,63.8,4.65,11,2,11,PC,PC,12.4029,0.007,,1,qlp-s46-tois,UNKNOWN,08:13:22.62,12:13:19.59,90.409,0.092,80.695,0.05,2459575.796634,0.0016697,1.5428518,5.8e-06,1.146,0.186,2.271563,0.005328,2090.0,4.90728,1.99486,0.118323,58.3426,769.0,19.0,60.9425,0.22385,3439.0,69.0,4.97486,0.436074,0.42,0.01,,,0.413895,0.0202719,"7,34,44,45,46",2019-03-22,2022-03-10,2022-12-14 12:09:24,potential L1 planet,521,1,False,False,True -19451711,522.01,,4,5,5,5,4,5,4,4.7,9.5,2.4,2,3,4,PC,PC,7.3645,0.006,,1,spoc,SPOC,08:18:24.64,-07:34:16.46,-32.971,0.066,9.711,0.059,2458491.691303,0.0016779383,0.39785338001402,2.2399503e-05,1.59018036128905,0.1579109,0.049609,0.008337,45.6908928144459,7.678275,1.35423981940631,0.5357627,58134.0918710092,3960.29440959839,8.069812,111.179,0.5865,7381.0,80.0,4.438,,1.86219000816345,0.0693166,,,1.681,0.27498,"7,34",2019-03-22,2021-07-28,2022-12-14 12:09:24,V-shaped and short period; GAIA Rp=1.6 Rsun; not good for follow-up; bad transit shape; likely SV,522,1,False,False,True -93125144,523.01,,5,5,5,5,5,5,5,31.9,183.0,42.24,4,5,7,PC,FA,9.6833,0.006,,1,spoc,SPOC,05:39:23.17,-19:33:30.02,20.435,0.116,-56.395,0.185,2458472.959693,0.001169,9.91102,0.001685,2.981681,0.100397,6.582247,0.619925,6044.13412,570.8092,7.705774,1.300738,63.4418378596689,719.803059840604,15.278281,77.8471,0.5851,4692.0,177.0,4.29723,0.337979,0.941705,0.147578,,,0.79,,6,2019-03-28,2019-03-28,2022-12-14 12:09:24,Transits could be the result of detrending residuals from stellar variability,523,1,False,False,True -365690646,524.01,,5,5,5,5,5,5,5,5.4,40.3,26.9,6,1,6,PC,FA,10.094,0.006,,1,spoc,SPOC,05:26:10.38,06:54:44.31,-7.797,0.087,-9.559,0.07,2458471.143375,0.002412,12.983175,0.003306,1.527578,0.761684,1.283009,0.175077,1180.996904,161.23894,5.933251,6.288821,397.468687367061,1138.79481132182,7.579506,293.27,3.5595,6962.64,13.5697,4.14716,0.016843,1.67983,0.066178,-0.187102,0.0106535,1.511,0.262355,6,2019-03-28,2019-03-28,2022-12-14 12:09:24,Potentially instrument noise,524,1,False,False,True -71512186,525.01,,1,4,1,5,4,5,5,5.9,49.5,18.1,0,8,4,PC,PC,8.7784,0.006,,1,spoc,UNKNOWN,06:00:40.79,-08:28:06.03,6.818,0.058,-55.906,0.058,2458471.007595,0.004675218,14.8608018601838,0.0037224332,6.19326248603688,0.47353947,0.604492,0.05169,556.602721207399,47.607258,4.44040925511459,0.3455103,239.047559474458,1002.86119774843,10.55869,152.042,0.802,7064.0,206.0,4.22374,0.333564,1.62231004238129,0.0737638,,,1.284,0.209165,"6,33",2019-03-28,2021-07-28,2022-12-14 12:09:24,centroid offset; possibly marginal,525,1,False,False,True -200593988,526.01,,5,5,5,5,5,5,5,14.2,134.9,34.1,1,1,14,PC,FP,12.3069,0.007,,1,spoc,SPOC,05:41:20.58,11:11:40.01,83.783,0.1,-29.865,0.076,2458470.849292,0.004324,7.699087,0.003345,4.380607,0.39642,8.80014,0.679566,8072.469566,625.70715,6.21451,8.41901,8.72130455600845,438.293583500218,16.209078,70.9325,0.2068,3617.0,67.0,4.81052,0.362772,0.45,0.07,,,0.464152,0.0203707,6,2019-03-28,2019-03-28,2022-12-14 12:09:24,possibly marginal,526,1,False,False,True -148228019,527.01,,3,5,5,3,4,4,4,131.9,357.3,317.0,6,2,6,PC,APC,8.2488,0.006,,1,spoc,UNKNOWN,06:44:45.3,-36:39:26.48,-3.7,1.3,-11.9,1.3,2458470.73838,0.0002492554,18.0892102901344,8.414962e-06,2.56072349649049,0.024751946,6.017199,0.04313,5526.71587656677,39.722977,22.2024282952952,4.0171475,221.700610516326,984.150396614134,162.58812,163.677,,7403.0,211.0,4.13809,1.60578,1.83685994148254,,,,,,"6,7,33,34",2019-02-26,2021-07-28,2022-12-14 12:09:24,planet radius greater than 20 Re which is large for orbital period; v-shaped,527,1,False,False,True -403693875,528.01,,5,5,5,5,5,5,5,31.9,103.2,66.74,1,0,3,PC,FP,13.3675,0.006,,1,spoc,SPOC,07:00:01.48,11:02:35.69,-9.928,0.054,-46.202,0.044,2458469.705671,0.002002,3.524465,0.000652,3.103957,0.160922,23.956142,1.091452,21822.783693,1004.7591,9.045877,1.545847,53.1308723661231,688.583300895633,17.919674,192.351,1.24,3965.0,147.0,4.68568,0.375183,0.613,0.1,,,0.628,,6,2019-03-28,2019-03-28,2022-12-14 12:09:24,,528,1,False,False,True -438490744,529.01,,5,5,5,5,5,5,5,132.5,534.5,71.06,0,0,4,PC,FP,14.1396,0.008,,1,spoc,SPOC,06:41:01.43,16:35:19.66,-2.492,0.138,-189.117,0.117,2458468.4958,0.002003,1.665878,0.000283,4.956738,0.144742,97.211686,2.826642,85643.986097,2600.0479,6.98229,5.428897,10.9121138539285,463.550412338525,19.085302,63.0507,0.44045,3021.0,97.0,5.10725,0.532457,0.172,0.038,,,0.214929,0.020177,6,2019-03-28,2019-03-28,2022-12-14 12:09:24,,529,1,False,False,True -387690507,530.01,,3,5,5,3,4,4,4,15.4,92.2,53.89,3,1,8,CP,CP,13.5287,0.008,,1,spoc-s01-s46-b0A,SPOC,06:53:39.08,12:52:53.68,13.682,0.083,-62.577,0.073,2459530.543507,0.0023640802,6.38758416675606,7.486328e-06,2.50853041835926,0.09716106,26.069931,0.678951,23725.3164803129,625.14154,8.43478894603122,0.3639357,14.2590141162604,495.612355052907,35.809254,148.762,1.101,3688.0,69.0,4.78199,0.354944,0.544768989086151,0.0163464,,,0.540526,0.0203953,"6,33,44,45",2019-03-28,2022-07-15,2022-12-14 12:09:24,TOI-530 b; now CP (Gan et al. 2021),530,1,False,False,True -302895996,531.01,,5,5,5,5,5,5,5,17.7,89.0,7.63,1,0,4,PC,FP,13.8097,0.01,,1,spoc,SPOC,05:32:27.94,15:33:21.18,-48.4,2.0,-52.05,2.0,2458468.847149,0.002165,0.567995,0.000108,1.408867,0.400217,5.669893,0.543539,5208.552517,500.4922,2.671369,1.172365,185.074234562457,940.711038241991,9.056893,167.3049,,3462.0,103.0,4.88307,0.464398,0.368,0.073,,,0.377,0.091,6,2019-03-28,2019-03-28,2022-12-14 12:09:24,,531,1,False,False,True -144700903,532.01,,3,5,5,3,4,4,4,23.5,89.9,28.29,2,2,12,PC,CP,12.6785,0.007,,1,spoc,UNKNOWN,05:40:19.21,11:33:45.49,23.368,0.061,-38.099,0.047,2458470.576303,0.001184,2.326811,0.000249,1.669099,0.169089,9.359158,0.399661,8583.056608,368.0338,5.611109,1.093347,89.3264410642955,784.087909875487,20.497864,135.047,0.548,3946.0,69.0,4.69039,0.330439,0.606,0.086,,,0.606938,0.0203687,6,2019-03-28,2019-03-28,2022-12-14 12:09:24,,532,1,False,False,True -309791156,533.01,,1,4,1,3,3,4,4,2.6,38.5,14.7,7,1,3,PC,PC,10.9621,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,05:20:13.17,-62:38:46.27,16.155,0.04,-30.681,0.042,2458332.699002,0.0014831679,19.5715087749633,4.5425095e-05,4.28892132753467,0.12573741,1.875768,0.042593,1726.15462335102,39.228462,3.92758935816097,0.3386282,20.1363146846781,540.27484444775,39.079964,123.391,0.303,4666.1,64.0,4.23,0.12,0.885680019855499,0.0625528,0.23,0.08,0.74,0.0867574,"1,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,35,36,37,38,39",2019-05-07,2022-03-22,2022-12-14 12:09:24,,533,1,False,False,True -281909674,534.01,,5,5,5,5,5,5,5,12.7,37.0,105.64,0,0,2,KP,KP,14.4266,0.009,,1,spoc-s01-s36-b0A-CPKP,SPOC,06:50:53.07,-05:05:11.24,1.637,0.062,-3.257,0.07,2458470.81672,0.0027570077,4.03504443843292,2.7805856e-05,2.85261627639377,0.4046506,12.943331,1.205381,11850.4722606186,1109.5808,12.5330606167803,1.699505,546.533887079342,1233.17304517543,10.193945,1148.93,59.135,5945.0,,4.46721,,1.13706994056702,,,,1.08,,"6,33",2019-03-28,2021-12-09,2022-12-14 12:09:24,CoRoT-13 b,534,1,False,False,True -280210963,535.01,,5,5,5,5,5,5,5,31.5,37.4,317.0,0,0,4,KP,KP,14.7971,0.014,,1,spoc-s01-s36-b0A-CPKP,SPOC,06:43:03.76,-01:17:47.2,1.694,0.066,-3.475,0.068,2459203.486894,0.0037613336,2.82803914988691,1.2955105e-05,2.62159430961908,0.23963626,31.796317,1.950937,28860.8258277955,1795.2656,17.7603706515225,1.2277269,661.133437816771,1293.27841819271,15.43402,1126.37,55.745,5675.0,,4.37342,,1.03673994541168,,0.17,0.14,1.02,,"6,33",2019-03-28,2021-12-09,2022-12-14 12:09:24,CoRoT-12 b,535,1,False,False,True -234825296,536.01,,5,5,5,5,5,5,5,13.8,18.4,317.0,0,0,2,KP,KP,13.8786,0.026,,1,spoc-s01-s36-b0A-CPKP,SPOC,06:30:52.9,00:13:36.82,-0.262,0.06,-2.803,0.05,2458473.382195,0.0038659277,9.24323029360052,6.372752e-05,2.40458722408885,0.28772488,11.877516,1.228208,10879.9770333065,1130.5815,15.3965056571708,1.3283917,180.870439059803,935.323072807897,9.560191,844.061,23.527,5880.0,,4.47813,,1.29981005191803,,,,0.94,,"6,33",2019-03-28,2021-12-08,2022-12-14 12:09:24,CoRoT-20b; two planets in system,536,1,False,False,True -234112540,537.01,,5,5,5,5,5,5,5,35.8,51.4,317.0,0,0,0,KP,KP,13.4831,0.015,,1,spoc,UNKNOWN,06:45:06.54,00:48:54.78,-3.071,0.048,-8.278,0.044,2459205.316448,0.0028052048,4.03790124330741,1.44367195e-05,2.9331124453731,0.1603818,16.676984,1.303307,15242.7058564524,1199.67,18.3826740466459,2.504766,786.294909590384,1350.56694310731,21.654839,882.472,25.62,6100.0,,4.28733,,1.27298998832703,,0.04,0.05,1.21,,"6,33",2019-03-28,2021-12-03,2022-12-14 12:09:24,CoRoT-5b,537,1,False,False,True -237751146,538.01,,5,5,5,5,5,5,5,14.7,68.6,18.51,8,2,7,PC,FP,14.1477,0.008,,1,spoc,SPOC,06:57:19.68,04:01:43.31,52.075,0.114,-61.646,0.093,2459203.397714,0.0028717723,1.66976904090466,0.0003431061,2.01053480287211,0.30597737,11.64217,1.02344,10665.5505700439,942.1793,4.49856014834914,0.7500977,49.2213076887974,675.550837117717,10.02832,133.21,1.5015,3411.0,102.0,4.90948,0.480684,0.433512,0.0135164,,,0.428732,0.0207529,33,2019-03-28,2019-03-28,2022-12-14 12:09:24,,538,1,False,False,True -238004786,539.01,,1,4,1,1,3,4,4,7.8,58.4,2.94,9,2,1,PC,PC,10.5958,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,06:50:16.41,-53:00:19.81,-4.115,0.053,33.079,0.047,2458354.106654,0.0005355956,0.309601708987367,4.8825e-06,0.984342189174257,0.14211257,0.269566,0.017438,248.248568152562,16.060976,1.52321310662299,0.28179055,4942.48096365875,2138.48397854496,20.831806,108.368,0.2835,4836.0,178.0,4.44968,0.343852,0.813125014305115,0.0531332,,,0.8,0.0982225,"2,6,8,9,12,29,32,33,34,35,39",2019-02-26,2022-03-21,2022-12-14 12:09:24,a/Rs ~2; possibly evaporating,539,1,False,False,True -200322593,540.01,,3,5,5,3,4,4,4,7.0,33.9,0.86,12,0,5,CP,CP,11.5045,0.007,,1,spoc,UNKNOWN,05:05:14.33,-47:56:15.14,-66.085,0.082,25.077,0.093,2459175.141647,0.0009524355,1.23915336351242,4.8953157e-06,0.488774921389765,0.11378676,2.520376,0.144121,2318.65944094854,132.73195,0.965470636275173,0.41618714,21.6623126090071,550.232139495195,17.89114,14.0022,0.00885,3042.0,,4.438,,0.197117000818253,0.00592568,,,0.166161,0.0200639,"4,5,6,31,32",2019-05-07,2021-12-01,2022-12-14 12:09:24,TOI-540 b,540,1,False,False,True -143271144,541.01,,3,5,5,3,3,4,4,48.6,46.4,317.0,3,0,2,PC,APC,14.7117,0.007,,1,spoc,SPOC,06:02:54.6,-30:49:58.46,-1.274,0.046,5.684,0.051,2459202.495892,0.0037944105,1.35340841811146,0.00035527605,1.84663324094016,0.20727846,19.799875,2.896193,18071.082170373,2663.9375,18.1129716145638,2.2638414,1620.91952659164,1618.30402048619,9.121672,1105.38,38.44,4978.0,180.0,4.438,,1.16766,,,,0.86,,"6,32,33",2019-03-28,2021-02-18,2022-12-14 12:09:24,low SNR,541,1,False,False,True -49771092,542.01,,3,4,3,3,3,4,4,22.1,50.0,92.03,3,0,2,PC,PC,14.8067,0.007,,1,spoc,SPOC,06:24:15.9,-28:08:04.92,-0.677,0.036,-5.072,0.042,2458469.057251,0.0012168203,1.631828231988,9.231044e-06,1.2668494477595,0.23543322,15.381954,1.521606,14067.419379422,1400.469,11.5558042584062,1.9382849,806.9778488133,1359.36208647729,10.451094,939.127,22.5235,5084.0,181.0,4.48093,2.00353,0.942521989345551,,,,0.85,,"6,33",2019-03-28,2021-07-28,2022-12-14 12:09:24,,542,1,False,False,True -53593457,543.01,,5,5,5,5,5,5,5,61.5,165.8,30.91,2,0,2,PC,FP,15.0404,0.008,,1,spoc,SPOC,06:41:13.46,-03:55:32.99,19.57,2.0,-65.14,2.0,2458468.332102,0.003362,0.530893,0.000146,1.910177,0.234509,36.943228,3.325312,33453.597195,3058.0403,3.747202,0.900232,61.4271910807255,714.019238752096,9.624941,,,3085.0,99.0,5.0795,0.549539,0.193,0.044,,,0.291869,0.0259467,6,2019-03-28,2019-03-28,2022-12-14 12:09:24,possible secondary,543,1,False,False,True -50618703,544.01,,4,5,5,4,4,4,4,15.6,114.8,5.32,3,6,8,PC,CP,9.6504,0.006,,1,spoc,QLP,05:29:09.62,-00:20:34.43,34.297,0.063,-78.131,0.058,2458469.756983,0.00048231464,1.54835416755448,4.2331544e-06,1.20309254441597,0.14919817,1.006304,0.051374,926.411103200282,47.315773,2.16017406801005,0.64126754,240.195034516511,1004.06251991383,20.608194,41.1166,0.0734,4665.0,177.0,4.67631,0.316736,0.663414001464844,0.0607689,,,0.66,0.0812266,"6,32",2019-03-28,2021-07-14,2023-03-17 12:03:18,L1 planet candidate,544,1,False,False,True -37168957,545.01,,5,5,5,5,5,5,5,42.1,40.3,317.0,0,0,2,KP,KP,14.2465,0.019,,1,spoc,SPOC,06:32:41.38,-00:01:53.78,2.335,0.068,-3.26,0.066,2459203.608483,0.0013672399,1.90008624738961,3.933117e-06,2.30582320966246,0.096987754,28.287198,0.916312,25717.008585778,843.5981,15.0496207773255,0.5327904,823.700878259345,1366.35053703611,28.292719,764.889,26.699,5440.0,,4.41615,,0.934028029441833,,,,0.97,,"6,33",2019-03-28,2021-12-02,2022-12-14 12:09:24,CoRoT-18 b,545,1,False,False,True -36440357,546.01,,5,5,5,5,5,5,5,14.7,56.1,118.92,0,0,0,KP,KP,13.1573,0.013,,1,spoc,UNKNOWN,06:48:46.71,-00:40:22.03,-3.659,0.049,-3.898,0.044,2459211.46641,0.0041813,9.20164964153958,3.1409043e-05,4.43173329634051,0.18872592,15.101072,0.457213,13812.3233628416,421.02008,13.4373959285322,0.48492947,203.951675432255,963.832505486393,24.720894,726.412,14.8815,6190.0,,4.36651,,1.12270998954773,,,,1.21,,"6,33",2019-03-28,2021-12-02,2022-12-14 12:09:24,CoRoT-4 b,546,1,False,False,True -36352297,547.01,,5,5,5,5,5,5,5,74.3,89.2,317.0,0,0,3,KP,KP,13.0501,0.017,,1,qlp,UNKNOWN,06:48:19.17,-03:06:07.7,-6.015,0.047,0.547,0.041,2459211.478874,0.0011653,1.5089635,8.9e-06,2.373,0.245,14.361134,0.011247,13140.0,10.3586,20.5944,,2852.63,2036.0,33.0,787.909,23.491,5950.0,,4.32551,,1.29,,0.0656466,0.0300576,1.26,,"6,33",2019-03-28,2021-02-19,2022-12-14 12:09:24,CoRoT-1 b,547,1,False,False,True -42821097,548.01,,5,5,5,5,5,5,5,19.5,41.2,119.77,0,0,2,KP,KP,13.1861,0.035,,1,spoc,UNKNOWN,06:28:08.06,-00:10:14.63,4.799,0.052,-6.013,0.049,2459205.242785,0.0041271336,3.89712026061546,1.8891296e-05,4.82588820686225,0.24742348,6.875702,0.304019,6312.74627708141,279.97253,13.4932227493111,0.7149572,1103.80901054494,1470.08766404789,16.031055,790.663,25.904,6090.0,,4.08625,,1.63950002193451,,,,1.03,,"6,33",2019-03-28,2021-12-02,2022-12-14 12:09:24,CoRoT-19b,548,1,False,False,True -32830028,549.01,,5,5,5,5,5,5,5,55.2,178.0,18.05,3,0,2,PC,FP,14.2321,0.008,,1,spoc,SPOC,05:47:00.52,-24:50:33.51,2.448,0.073,-98.536,0.088,2458468.344415,0.000477,0.516278,2.1e-05,0.565611,0.106334,22.255273,1.121868,20289.210823,1032.7452,2.442348,0.6369,50.4166360929242,679.615407056527,18.210543,80.6542,0.3604,3009.0,97.0,5.10976,0.525773,0.169,0.037,,,0.284217,0.0202917,6,2019-03-28,2019-03-28,2022-12-14 12:09:24,marginal signal,549,1,False,False,True -311183180,550.01,,5,5,5,5,5,5,5,272.4,933.0,317.0,0,1,3,EB,FP,9.1073,0.007,,1,qlp-s31-ffi,UNKNOWN,03:40:07.67,05:52:28.63,108.12,2.0,9.3,2.0,2459168.32491,0.00012,13.24981,0.0,3.299,0.014,29.996901,0.445266,27250.0,410.021,20.6343,,47.2877,,52.0,62.0121,,5076.0,8.0,4.71,0.01,0.69,,0.089,0.026,,,"5,31",2019-04-03,2021-12-07,2022-12-14 12:09:24,TFOP EB primary,550,1,True,False,True -311183180,550.02,,5,5,5,5,5,5,5,249.5,589.2,317.0,0,1,3,PC,FP,9.1073,0.007,,2,spoc,SPOC,03:40:07.67,05:52:28.63,108.12,2.0,9.3,2.0,2458447.398548,0.000442,10.043245,0.00061,3.099789,0.039044,23.479457,0.254876,21393.227138,234.72195,16.682435,6.3188,36.1287428451476,625.292129143932,85.7181,62.0121,,5076.0,8.0,4.71,0.01,0.670549,0.02346,0.089,0.026,,,5,2019-04-03,2020-06-29,2022-12-14 12:09:24,Gaia DR2 R = 1 R_Sun; likely grazing eccentric binary with nearly equal brightness stars; TFOP EB secondary,550,2,True,False,True -192826603,551.01,,5,5,5,5,5,5,5,43.3,125.5,79.63,0,1,0,KP,KP,13.9143,0.007,,1,spoc,SPOC,05:30:51.41,-36:37:51.53,-31.902,0.037,-41.026,0.042,2459203.149174,0.0012524436,2.64730512494267,3.0234894e-06,1.21128096242306,0.054065313,23.451338,1.074933,21367.8824901043,989.5596,10.6134480795676,3.2976332,70.1195731005699,738.039431089912,35.281853,218.121,1.037,3916.0,,4.71907,,0.567866027355194,0.0171805,,,0.561044,0.0204813,"5,6,32,33",2019-06-06,2021-12-02,2022-12-14 12:09:24,NGTS-1 b,551,1,False,False,True -44737596,552.01,,3,5,5,3,4,4,4,36.2,107.8,67.92,4,0,5,PC,CP,13.8231,0.007,,1,spoc,UNKNOWN,04:03:47.85,-25:24:32.12,12.872,0.038,-1.753,0.048,2458413.060435,0.00035394172,2.78865403242748,3.1284835e-06,1.89001860895223,0.051824372,28.981573,0.523575,26339.9057953059,482.11438,9.66512601302999,0.3510175,51.9487661838846,684.720860065235,43.573982,194.964,1.118,3654.0,162.0,4.438,,0.587105989456177,0.0175241,,,0.577439,0.0203329,"4,5,31",2019-05-17,2021-07-06,2022-12-14 12:09:24,,552,1,False,False,True -161477033,553.01,,5,5,5,5,5,5,5,2.1,37.3,7.21,4,4,3,PC,FA,10.0614,0.006,,1,spoc,SPOC,04:53:02.71,-45:32:25.46,50.694,0.039,67.504,0.041,2458443.221518,0.003863,14.058151,0.005392,3.514627,0.849132,0.932632,0.118849,858.616845,109.45815,2.467289,2.266664,41.3300315604013,646.675166834976,8.819479,108.159,0.235,5465.0,186.0,4.57025,0.276352,0.839854,0.102877,,,0.91,0.110815,5,2019-02-26,2019-02-26,2022-12-14 12:09:24,Period could be half because of a data gap; based on multi-sector data there are likely transits from two separate planets combined to make this 14-day false target,553,1,True,False,True -161477033,553.02,,1,4,1,1,3,4,4,1.9,33.7,5.87,4,4,3,PC,PC,10.0614,0.006,,2,spoc,SPOC,04:53:02.71,-45:32:25.46,50.694,0.039,67.504,0.041,2458419.367318,0.0023606499,11.9234819437747,6.0462007e-05,3.24105920756604,0.6502982,0.739424,0.075612,680.803264298586,69.63903,2.29040531538316,2.1272416,55.1644235178957,695.07956488496,10.592394,108.159,0.235,5465.0,186.0,4.57025,0.276352,0.879477024078369,0.0489146,,,0.91,0.110815,"4,5,31,32",2019-06-06,2021-09-07,2022-12-14 12:09:24,TOI 553.02; active TFOP PC; potential multi,553,2,True,False,True -161477033,553.03,,1,4,1,1,3,4,4,0.8,27.8,7.82,4,4,3,PC,PC,10.0614,0.006,,3,spoc,QLP,04:53:02.71,-45:32:25.46,50.694,0.039,67.504,0.041,2458416.404536,0.0028265305,40.8905116602099,0.00021856556,4.44027909514634,0.46333358,1.026723,0.074629,945.199396465454,68.73379,2.7104156534688,1.0398625,10.6667755153517,460.92263756344,12.289158,108.159,0.235,5465.0,186.0,4.57025,0.276352,0.879477024078369,0.0489146,,,0.91,0.110815,"4,5,31,32",2019-06-06,2021-09-07,2022-12-14 12:09:24,period updated to 40.89 days with spoc multisector; period could be half; potential multi,553,3,True,False,True -407966340,554.01,,1,4,4,1,4,4,4,13.4,146.8,8.62,4,67,13,PC,PC,6.4386,0.006,,1,spoc-s01-s46-b0A,UNKNOWN,04:02:59.6,09:12:27.96,89.567,0.113,-165.762,0.056,2459514.088252,0.0016701,7.04916929989306,1.2880369e-05,3.60843547808196,0.11117984,0.320587,0.011247,295.2279961647,10.358532,2.87034038232491,0.13607544,489.633885522111,1199.74131861165,22.976685,45.6181,0.12505,6337.87,44.6906,4.438,,1.42717003822327,0.0557185,,,1.25,0.182089,"5,32,43,44",2019-04-03,2022-07-15,2022-12-14 12:09:24,potential multi,554,1,True,False,True -407966340,554.02,,1,4,1,1,4,4,4,4.5,10.4,2.27,4,67,13,PC,PC,6.4386,0.006,,2,spoc-s01-s46-b0A,SPOC,04:02:59.6,09:12:27.96,89.567,0.113,-165.762,0.056,2458438.477114,0.0014566532,3.04402807681572,1.3552124e-05,1.35104331662672,0.14575341,0.078619,0.010977,72.408504888685,10.109918,1.30892446526205,0.58891624,1500.1125656589,1587.26964840134,8.315638,45.6181,0.12505,6337.87,44.6906,4.438,,1.42717003822327,0.0557185,,,1.25,0.182089,"5,32,43,44",2022-04-20,2022-04-20,2022-12-14 12:09:24,potential L1 planet; low SNR; interior to .01,554,2,True,False,True -170849515,555.01,,3,4,4,3,4,4,4,40.1,85.9,94.77,5,1,2,PC,CP,14.857,0.007,,1,spoc,UNKNOWN,04:41:21.54,-32:19:13.5,-5.429,0.057,-38.609,0.09,2458438.147508,0.0005850338,1.94163656751314,3.2642804e-06,1.93213583652636,0.08019122,36.372215,1.086852,32945.1347849357,1000.52655,11.7569043885576,0.5201643,127.674273537036,857.325217693673,29.584158,385.689,5.7415,3837.0,133.0,4.72608,0.400388,0.633668005466461,0.0202681,,,0.614735,0.0210845,"5,31,32",2019-04-03,2021-07-06,2022-12-14 12:09:24,,555,1,False,False,True -59003115,556.01,,5,5,5,5,5,5,5,3.9,37.4,4.98,1,3,7,EB,FP,11.3075,0.006,,1,spoc-s05-b02_old,SPOC,03:48:54.13,13:28:59.3,55.603,0.079,-91.719,0.058,2458439.0759,0.00574,2.294185,0.000938,2.750763,0.652343,0.757535,0.102336,697.472004,94.25027,1.95611,1.294193,304.478913971646,1065.39107683538,7.231075,146.905,1.0675,5062.0,19.0,4.62,0.03,0.707445,0.034104,-0.371,0.022,0.844,0.0984221,5,2019-04-03,2021-12-07,2022-12-14 12:09:24,validated planet K2-78b later found to be EB; retired as NEB,556,1,False,False,True -55488511,557.01,,1,4,1,1,4,4,4,4.6,48.3,5.72,15,3,17,PC,PC,11.6434,0.007,,1,spoc,UNKNOWN,03:56:04.28,-10:16:19.23,147.059,0.052,4.973,0.044,2458439.549649,0.0013834393,3.34490399270253,1.7267552e-05,1.34083490517831,0.41858247,1.520547,0.163634,1399.49505682989,150.70146,2.25405324900739,1.2301857,48.9314538419313,674.554089377276,9.153862,75.9623,0.2536,3883.0,65.0,4.71022,0.33376,0.573952972888947,0.017047,,,0.566298,0.0202826,"5,31",2019-04-03,2021-07-13,2022-12-14 12:09:24,Low SNR; no GAIA radius,557,1,False,False,True -207110080,558.01,,3,5,5,3,4,4,4,19.4,68.8,120.33,6,1,5,CP,CP,10.9923,0.006,,1,spoc,UNKNOWN,02:49:09.96,-58:01:28.86,1.071,0.042,3.859,0.042,2459133.407241,0.0009731,14.5728985428105,0.0008190047,2.56234973603778,0.09951017,4.858052,0.168123,4464.43598911239,154.8349,13.5300683128701,0.6676787,248.855373926926,1012.99314265918,31.568552,402.63,3.8195,6025.8,107.0,4.0,0.07,1.76094996929169,0.0741809,-0.62,0.12,1.12,0.143013,"2,3,29,30",2019-04-04,2021-10-07,2022-12-14 12:09:24,TOI-558 b / TOI 558.01,558,1,False,False,True -209459275,559.01,,3,5,5,3,4,4,4,47.3,165.1,101.3,8,12,3,PC,CP,10.5704,0.006,,1,qlp,UNKNOWN,03:07:16.47,-31:09:46.78,-23.136,0.031,-69.698,0.04,2459166.185995,0.0003819,6.9839072,6.1e-06,5.076,0.065,10.96685,0.000317,10050.0,0.292261,12.2398,0.562704,404.915,1249.0,170.0,233.266,1.5315,5972.0,124.7,4.31,0.08,1.21,0.06,,,1.1,0.146335,"4,31",2019-04-04,2021-01-29,2022-12-14 12:09:24,possible tropical Jupiter; third of four transits visible in raw data,559,1,False,False,True -101011575,560.01,,4,5,5,4,4,4,4,12.1,159.8,7.39,25,11,11,CP,CP,8.5925,0.006,,1,qlp-s61-ffi,SPOC,08:38:45.19,-13:15:23.5,-63.858,0.051,38.374,0.041,2459982.845399,0.0009785,6.3980642,6.5e-06,2.004,0.137,1.79947,0.057878,1656.0,53.3061,2.62025,0.21636,33.7178,671.0,33.0,31.5666,0.03205,4695.0,92.0,4.5,0.2,0.63,0.05,-0.21,0.06,0.75,0.0893632,"8,34,61",2019-04-05,2023-03-10,2023-03-24 12:12:10,HD 73583 b,560,1,True,False,True -101011575,560.02,TIC 101011575.02,1,4,1,2,4,4,4,2.3,78.3,4.66,25,11,11,CP,CP,8.5925,0.006,,2,qlp-s61-ffi,SPOC,08:38:45.19,-13:15:23.5,-63.858,0.051,38.374,0.041,2459987.337647,0.0014936,18.8792871,5.9e-05,3.262,0.262,1.302579,0.041311,1199.0,38.0485,1.99787,0.167093,10.5814,502.0,24.0,31.5666,0.03205,4695.0,92.0,4.5,0.2,0.63,0.05,-0.21,0.06,0.75,0.0893632,"8,34,61",2021-07-19,2023-04-04,2023-04-07 12:13:06,HD 73583 c,560,2,True,False,True -377064495,561.01,,4,5,5,4,4,4,4,4.1,60.7,7.98,33,23,7,CP,CP,9.5273,0.006,,1,qlp-s46-tois,UNKNOWN,09:52:44.44,06:12:57.97,-108.432,0.088,-61.511,0.094,2459561.825742,0.002596,10.7787735,4.9e-05,3.487,0.466,0.999337,0.00122,920.0,1.12339,2.73993,0.177022,73.3548,815.0,21.0,85.799,0.496,5391.0,185.0,4.52526,0.28868,0.84,0.05,,,0.95,0.117329,"8,35,45,46",2019-04-13,2022-03-11,2022-12-14 12:09:24,TOI-561 c / TOI-561.01,561,1,True,False,True -377064495,561.02,,4,5,5,4,4,4,4,7.8,11.2,2.59,33,23,7,CP,CP,9.5273,0.006,,2,spoc,UNKNOWN,09:52:44.44,06:12:57.97,-108.432,0.088,-61.511,0.094,2459279.794767,0.0017336,0.446569431850719,1.2095989e-05,1.35296329126998,0.21141112,0.268341,0.026566,247.120503700732,24.46771,1.3708403269559,1.1212907,4383.42054422045,2075.26247999352,13.173787,85.799,0.496,5391.0,185.0,4.52526,0.28868,0.840575993061066,0.0452261,,,0.95,0.117329,"8,35",2019-04-13,2021-10-14,2022-12-14 12:09:24,TOI-561 b / TOI-561.02,561,2,True,False,True -377064495,561.03,,4,5,5,4,4,4,4,1.8,38.6,5.3,33,23,7,CP,CP,9.5273,0.006,,3,spoc,UNKNOWN,09:52:44.44,06:12:57.97,-108.432,0.088,-61.511,0.094,2458521.854471,0.005777774,16.3573852639539,0.00020039742,3.87104984295125,0.5965353,0.547173,0.083208,503.838443568009,76.634636,2.15624235991267,0.41169757,36.0340672119057,624.882080330294,8.985823,85.799,0.496,5391.0,185.0,4.52526,0.28868,0.840575993061066,0.0452261,,,0.95,0.117329,"8,35",2019-04-13,2021-10-14,2022-12-14 12:09:24,TOI-561 f / TOI-561.03; clean transit affected by heavy gapping from candidate .02 at 0.4 days,561,3,True,False,True -413248763,562.01,,1,5,5,4,4,1,4,7.5,26.6,2.16,9,10,9,CP,CP,8.74094,0.007,,1,qlp-s62-ffi,SPOC,09:36:01.79,-21:39:54.23,138.694,0.1,-990.311,0.083,2460011.629018,0.0008558,3.9306027,3e-06,1.196,0.275,1.138448,0.059668,1048.0,54.9547,1.26995,0.0506095,16.4901,561.0,29.0,9.44181,0.00511,3505.0,90.0,4.90573,0.061793,0.36,0.01,,,0.34592,0.0201631,"8,35,62",2019-04-13,2023-04-12,2023-04-25 12:12:35,GJ 357 b,562,1,False,False,True -405454160,563.01,,3,5,5,3,4,4,4,0.0,21.7,35.2,0,5,3,PC,PC,10.4397,0.006,,1,spoc,SPOC,09:32:58.36,-17:20:36.51,-37.7,2.3,11.6,2.4,2458524.13957,0.0021035525,731.9380939054,0.00020327617,3.74064861947659,0.167364,3.578038,0.156094,3290.07055221807,143.75801,6.56568924118916,0.22051704,10.8794710958087,463.203353825937,16.722286,157.152,,5383.0,185.0,4.42352,2.00402,0.983025014400482,,,,,,"8,35",2019-04-05,2019-04-05,2022-12-14 12:09:24,,563,1,False,False,True -1003831,564.01,,4,5,5,4,4,4,4,51.4,159.0,48.99,4,3,5,CP,CP,10.6701,0.006,,1,spoc,UNKNOWN,08:41:10.84,-16:02:10.78,-2.508,0.05,-11.025,0.042,2459251.31215,0.0004672,1.65114705921844,2.8547995e-06,0.941802126340914,0.03494119,3.616509,0.262293,3325.3864464462,241.55185,7.97537699174337,0.6733267,1452.3811554146,1574.4899790993,27.689663,199.581,1.2615,5752.0,189.0,4.47122,0.584777,1.12196004390717,0.0548141,,,0.977,0.122464,"8,34",2019-04-05,2021-12-02,2022-12-14 12:09:24,TOI-564 b / TOI-564.01,564,1,False,False,True -1103432,565.01,,5,5,5,5,3,5,5,63.3,111.3,317.0,0,0,1,PC,APC,12.8283,0.006,,1,spoc-s61-b0A,SPOC,08:42:19.55,-17:11:21.93,-3.973,0.035,2.483,0.028,2459966.215011,0.0012706091,3.72716413173295,0.00041878098,3.92297202207269,0.09262551,19.142864,0.42067,17476.7084817377,387.37643,25.3271046405359,1.4254278,1675.56626690844,1631.7745361118,29.889038,988.801,26.3325,6231.0,191.0,4.26445,,1.82228004932404,0.0976309,-0.169824,0.0765314,1.13,0.148133,"8,61",2019-04-05,2023-06-15,2023-06-16 12:14:51,possible synchronization; TFOP SB1/APC; very large,565,1,False,False,True -1133072,566.01,,5,5,5,5,5,5,5,12.9,69.9,6.84,4,1,1,EB,FP,12.625,0.007,,1,spoc-s08-b01,SPOC,08:44:20.67,-28:04:36.37,48.691,0.055,-45.743,0.054,2458517.531592,0.002755,0.846542,0.000179,2.408837,0.443968,2.74448,0.256708,2524.567663,236.40909,1.642414,0.666679,85.2240732043123,774.926158667517,9.50554,83.5896,0.28795,3380.0,101.0,4.92521,0.490647,0.325,0.068,,,0.493652,0.0203747,8,2019-04-13,2021-12-07,2022-12-14 12:09:24,Retired as NEB,566,1,False,False,True -13349647,567.01,,5,5,5,5,5,5,5,87.7,212.0,123.73,0,0,1,KP,KP,12.212,0.007,,1,spoc,UNKNOWN,08:46:19.29,-08:01:37.15,-4.077,0.053,-8.71,0.041,2459250.291252,0.0002557,1.5373644915352,7.959881e-07,1.85960043927657,0.017994814,19.578774,0.159537,17871.1005591136,146.92798,13.7535210546129,0.64088625,1422.60733742166,1566.35793190299,129.6764,386.346,5.192,5959.0,,4.4894,,0.95958799123764,0.0442739,-0.01,0.05,1.08,0.136954,"8,34",2019-04-05,2021-12-02,2022-12-14 12:09:24,WASP-36 b,567,1,False,False,True -37575651,568.01,,1,4,1,4,4,5,5,6.1,103.9,7.63,5,6,7,PC,PC,8.2866,0.006,,1,spoc,UNKNOWN,09:01:21.72,-28:19:28.52,-0.4,1.8,-2.2,1.5,2458521.909289,0.0024491788,9.59719766745206,5.524042e-05,2.94391524711799,0.30437973,0.652269,0.073474,600.581348652505,67.67008,,,127.8880916404,857.683936478966,9.811782,305.676,,5780.0,,4.438,,,,,,,,"8,35",2019-04-05,2021-07-06,2022-12-14 12:09:24,phase shift in odd & even events; GAIA Teff=9422K; likely large stellar radius; possibly double the period; SPOC is assuming solar radius,568,1,False,False,True -123482865,569.01,,3,5,5,3,4,4,5,32.1,125.3,53.68,1,12,1,CP,CP,9.4727,0.006,,1,qlp,UNKNOWN,07:40:24.67,-42:09:16.79,6.317,0.053,-3.068,0.048,2459270.500253,0.0007099,6.5562078,1.47e-05,2.314,0.169,3.229435,0.001086,2970.0,1.00054,8.40415,0.433515,99.2324,879.0,52.0,156.226,0.753,6845.0,203.0,4.36113,0.340345,1.47,0.07,,,1.04,0.135072,"7,8,34,35",2019-04-05,2021-06-11,2022-12-14 12:09:24,crowded field; confirmed BD,569,1,False,False,True -126733133,570.01,,3,4,3,3,3,4,4,23.3,99.5,23.56,3,3,3,PC,PC,10.027,0.006,,1,qlp-s63-ffi,SPOC/QLP,09:07:49.33,-51:52:01.97,50.235,0.05,-23.799,0.046,2460037.566059,0.0007531,1.4687087,1.4e-06,0.87,0.303,1.602643,0.174608,1475.0,160.807,5.20197,0.389608,745.344,1455.0,34.0,193.468,1.0575,5973.0,192.0,4.27298,0.291496,1.31,0.06,,,1.27,0.201112,"8,9,35,36,62,63",2019-04-05,2023-05-11,2023-06-16 12:14:51,V-shaped; crowded field,570,1,False,False,True -270468559,571.01,,5,5,5,5,5,5,5,36.2,100.1,111.7,0,0,3,KP,KP,11.5598,0.006,,1,qlp-s46-tois,SPOC,09:01:22.65,06:05:49.5,-2.911,0.075,-33.389,0.046,2459577.802736,0.0003968,4.6418368,4e-06,3.721,0.084,8.677041,0.000469,7960.0,0.431926,12.9164,0.640675,469.054,1296.0,91.0,405.238,7.6375,5743.0,,4.14093,,1.41,0.07,,,1.059,0.126594,"8,34,44,45,46",2019-04-05,2022-03-10,2022-12-14 12:09:24,HAT-P-42 b,571,1,False,False,True -289535142,572.01,,5,5,5,5,3,5,5,47.6,55.1,317.0,0,1,1,EB,APC,12.54,0.007,,1,spoc,SPOC,08:46:05.98,-13:12:10.33,-10.323,0.062,3.985,0.05,2459229.624094,0.0007146148,2.3382708901841,0.000119223914,2.89594801264094,0.060481384,16.071908,0.258537,14693.7520628063,238.09267,14.5827994411632,0.78906804,1647.34315020769,1624.85932881876,39.667545,660.815,18.8375,6621.0,196.0,4.20742,,1.17441,0.0603869,,,1.41,0.242801,"8,34",2019-04-13,2021-03-24,2022-12-14 12:09:24,TFOP APC; retired as SB1,572,1,False,False,True -296780789,573.01,,3,5,5,3,4,4,4,122.2,943.9,317.0,6,2,8,PC,APC,12.519,0.04,,1,spoc,UNKNOWN,09:29:23.26,-14:30:42.16,-51.465,0.099,-92.298,0.09,2459257.811328,5.11e-05,13.5773455996364,3.6755616e-06,1.70495565268736,0.033960704,185.130279,2.292529,156766.429462918,2109.2693,19.8544114912053,45.91828,18.9098239852935,531.853009647005,207.37064,88.3935,0.41535,3404.0,67.0,4.91079,0.395467,0.337999999523163,0.057,,,0.339,0.07,"8,35",2019-04-13,2021-10-14,2022-12-14 12:09:24,A HIRES spectrum shows a clear SB2. Retired as APC/VPC/SM; V-shaped; Too deep transit. Too large planet candidate. Likely EB. Same target as TIC 876200724,573,1,False,False,True -315002523,574.01,,5,5,5,5,5,5,5,36.2,39.0,317.0,0,0,1,KP,KP,12.4257,0.007,,1,spoc,UNKNOWN,09:39:42.45,-28:35:08.16,-2.206,0.057,-4.094,0.066,2459278.171365,0.00184,3.30239073049626,7.1701274e-06,5.08305693672226,0.08757149,8.430489,0.158202,7734.69906299731,145.69862,17.0999544643031,0.95015645,2236.58197638422,1753.94493568906,32.831486,861.843,24.5325,6071.0,,3.93311,,1.91031002998352,0.0994273,,,1.16,0.158521,"8,9,35",2019-04-05,2021-12-02,2022-12-14 12:09:24,HATS-26 b,574,1,False,False,True -386435344,575.01,,5,5,5,5,5,5,5,66.5,130.1,317.0,1,5,3,PC,FP,8.77728,0.006,,1,spoc,SPOC,08:31:58.87,-16:53:06.43,12.89,0.055,-46.863,0.05,2459230.890563,0.0013376618,19.3721050588841,0.0019469516,3.085914879874,0.12530565,3.501232,0.124858,3219.55946447088,114.99179,17.4598300586011,11.617007,233.133540495191,996.600129707222,36.139015,181.987,1.266,6529.0,199.0,4.00314,0.334497,1.88186,0.0818217,,,1.323,0.207821,34,2019-04-13,2021-03-18,2022-12-14 12:09:24,,575,1,False,False,True -408310006,576.01,,3,5,5,3,4,4,4,40.2,188.9,42.34,0,8,3,CP,CP,8.86849,0.006,,1,qlp-s62-ffi,SPOC,09:39:30.03,-20:58:56.71,-55.082,0.072,10.927,0.069,2460010.494875,0.0004136,5.4435354,3e-06,3.5,0.198,3.500622,0.046618,3219.0,42.9356,7.30242,0.327956,402.866,1248.0,106.0,114.173,0.5885,6313.0,196.0,4.32632,0.289026,1.25,0.06,,,1.141,0.147016,"8,35,62",2019-04-05,2023-04-12,2023-04-25 12:12:35,WASP-166 b,576,1,False,False,True -410094645,577.01,,5,5,5,5,3,5,5,79.9,126.9,317.0,0,0,1,PC,APC,12.4167,0.007,,1,qlp,UNKNOWN,08:53:02.14,-22:11:53.32,-0.871,0.053,0.084,0.042,2459277.162004,0.0007394,3.329754,4e-06,2.862,0.119,23.464782,0.004905,21380.0,4.51773,22.3335,1.22637,694.276,1430.0,61.0,680.747,18.115,7341.0,189.0,4.14244,,1.5,0.08,,,1.27,0.194752,"8,35",2019-04-13,2021-06-11,2022-12-14 12:09:24,large possible hot Jupiter; GAIA Rstar=1.54 so the planet may be potentially smaller than 29 REarth,577,1,False,False,True -423275733,578.01,,5,5,5,5,5,5,5,56.7,62.6,317.0,0,1,2,KP,KP,12.3368,0.007,,1,spoc,UNKNOWN,09:22:01.52,-23:56:45.97,-15.834,0.061,15.197,0.089,2459278.251179,0.0010015,2.05286837159852,3.121559e-06,2.62011277245046,0.05907136,9.796231,0.20239,8982.08035620182,186.39113,17.626740467862,1.0658941,3140.92377397598,1909.34363932609,32.10086,730.933,23.4385,6010.0,,4.13259,,1.70948004722595,0.0996984,,,1.1,0.137248,"8,35",2019-04-05,2021-12-02,2022-12-14 12:09:24,WASP-142 b,578,1,False,False,True -238061845,579.01,,3,4,3,3,3,4,4,,,128.37,0,0,1,PC,PC,9.6668,0.006,,1,qlp-s62-ffi,QLP,06:56:29.1,-50:09:28.48,-8.9,1.8,4.5,1.6,2460012.883867,0.0009861,1.6843068,2.6e-06,1.567,0.097,0.990643,0.035452,912.0,32.652,14.0651,0.480679,368.424,1220.0,36.0,,,4959.7,59.4,,,4.94,0.12,-0.54,0.09,,,"6,8,33,34,35,61,62",2019-04-13,2023-04-12,2023-04-25 12:12:35,host is evolved star; multi year spoc shows no centroid offset but hint of odd-even,579,1,False,False,True -81419525,580.01,,3,4,3,3,3,4,4,178.2,309.8,317.0,3,3,1,PC,PC,9.5518,0.006,,1,qlp-s62-ffi,QLP,08:12:25.99,-46:06:32.9,-5.99,0.084,9.892,0.076,2460012.427542,0.0009107,1.5498373,2.7e-06,2.729,0.203,3.909165,0.972117,3594.0,894.952,13.3884,1.09966,159308.0,5565.0,63.0,346.494,5.813,11159.0,371.3,4.51,0.07,1.58,0.05,,,2.92,0.381981,"8,9,34,35,61,62",2019-04-13,2023-06-28,2023-06-28 00:00:00,variable host; possible secondary not at half phase; multiple stars in pixel; v-shaped,580,1,False,False,True -180987952,581.01,,1,4,1,3,3,4,4,16.4,110.0,30.38,1,3,1,PC,PC,9.5287,0.006,,1,qlp-s62-ffi,QLP,08:41:02.75,-41:26:34.06,-11.579,0.071,7.155,0.066,2460013.350692,0.0010101,1.3891689,1.9e-06,1.675,0.441,0.755935,0.14717,696.0,135.539,6.01556,0.499738,84020.4,4743.0,33.0,434.207,7.5125,10585.0,259.9,4.35,0.07,1.84,0.06,,,2.74,0.358083,"8,9,35,61,62",2019-04-13,2023-04-12,2023-05-30 00:00:00,slightly v-shaped,581,1,False,False,True -287474726,582.01,,5,5,5,5,5,5,5,33.5,60.8,317.0,0,3,1,EB,FP,9.3994,0.007,,1,spoc,UNKNOWN,08:28:30.73,-28:21:33.31,-7.079,0.071,2.863,0.068,2459230.051423,0.004799821,3.74420073543415,0.0012046172,3.50047618655898,0.3500947,0.872482,0.119201,803.26278168871,109.78208,18.1173790236534,20.382994,38392.1562997512,3570.09995695323,12.870724,900.651,38.0205,9988.0,138.2,3.59,0.07,4.23822,0.207362,,,2.56,0.33044,"8,34",2019-04-13,2021-03-24,2022-12-14 12:09:24,TFOP FP; retired as NEB,582,1,False,False,True -131743355,583.01,,3,4,3,3,3,4,4,33.2,161.8,87.66,2,3,1,PC,PC,9.3761,0.006,,1,qlp-s62-ffi,SPOC,07:53:54.33,-39:59:34.8,-11.411,0.061,4.057,0.059,2460002.878449,0.0003038,6.5604227,2.2e-06,1.028,0.048,4.40507,0.132301,4049.0,121.846,11.1988,0.364253,227.331,1081.0,69.0,354.432,4.2155,10902.0,307.7,4.42,0.07,1.72,0.05,,,2.84,0.392078,"7,8,34,35,61,62",2019-04-13,2023-03-28,2023-03-31 12:12:24,v-shaped,583,1,False,False,True -74482749,584.01,,5,5,5,5,5,5,5,280.7,605.1,317.0,9,1,3,PC,FP,9.1103,0.006,,1,spoc,UNKNOWN,09:10:04.4,-43:55:29.85,-12.929,0.053,5.373,0.051,2459281.764753,0.0004857199,1.26021513444316,1.7670287e-05,1.78291623837347,0.029233422,4.037441,0.063911,3711.71525794031,58.862053,28.2499512267064,7.20672,60333.0433838478,3997.22465805771,60.634705,436.431,5.9645,9255.0,179.5,3.88,0.07,2.90988993644714,0.0878742,,,2.35,0.334105,"8,9,35,36",2019-04-13,2021-10-05,2022-12-14 12:09:24,possibly too large; potential odd-even; possible synchronization,584,1,False,False,True -190990336,585.01,,5,5,5,5,4,5,5,176.8,272.6,317.0,3,5,4,PC,APC,8.9544,0.006,,1,qlp-s62-ffi,SPOC/QLP,08:57:29.52,-39:46:42.32,-15.209,0.041,0.244,0.05,2460009.617078,0.0049417,5.547255,5.3e-05,4.835,0.041,12.634106,0.000353,11569.0,0.324936,19.6103,0.897919,1064.82617264386,1456.93249194089,212.0,157.612,0.811,6118.1,137.4,4.29,0.33,1.66,0.08,,,1.34,0.205928,"8,9,35,62",2019-04-01,2023-04-12,2023-04-12 00:00:00,~500 ppm secondary; TFOP SB1/APC,585,1,False,False,True -131979339,586.01,,5,5,5,5,5,5,5,121.6,452.9,317.0,4,0,3,EB,FP,8.2268,0.006,,1,qlp-s61-ffi,QLP,07:55:39.28,-37:51:27.77,3.033,0.062,-2.667,0.069,2459986.476263,0.0013302,22.6384642,0.0001137,4.988,0.495,5.422657,3.199837,4982.0,2942.82,28.0326,4.27381,636.099,1399.0,93.0,253.02,2.461,9511.0,179.3,4.05,0.07,2.42,0.07,,,2.42,0.336257,"7,8,34,35,61",2019-04-13,2023-05-23,2023-05-23 00:00:00,likely too large for insolation,586,1,False,False,True -294090620,587.01,,3,4,3,5,4,5,5,89.8,173.4,317.0,1,10,3,PC,PC,7.81307,0.006,,1,spoc-s01-s36-b0A-PC,QLP,08:41:35.02,-22:11:39.47,-25.241,0.1,6.479,0.077,2459968.122746,0.00031873866,8.0442389870715,8.488774e-05,5.32893063058348,0.018301446,5.374107,0.028256,4937.5053629838,26.024817,15.1761031101682,0.4352956,3094.07800647441,1902.18417482126,183.05827,210.139,3.344,9333.0,286.1,,,2.04114007949829,0.0581056,,,2.523,0.328354,"8,34,35,61",2019-04-13,2023-07-12,2023-07-12 00:00:00,low-mass stellar companion from RVs; was FP now PC (for period refinement),587,1,False,False,True -130415266,588.01,,3,4,4,3,3,4,4,63.2,205.7,317.0,4,40,3,PC,PC,7.3123,0.006,,1,qlp-s08-ffi,QLP,06:58:59.97,-47:01:24.12,-9.505,0.073,-4.467,0.071,2459981.725943,0.0002446,39.4718663,9.5e-06,6.147,0.06,7.626879,,7000.0,,,,2101.55,1886.0,28.0,154.186,0.9875,10416.0,237.2,4.35,0.06,,,,,2.69,0.347174,"6,8,33,34,35,61",2019-04-01,2023-07-07,2023-07-07 00:00:00,likely too large; possible secondary not at half phase,588,1,False,False,True -412961700,589.01,,5,5,5,5,5,5,5,,,317.0,0,1,1,PC,FP,6.725,0.007,,1,spoc,UNKNOWN,08:28:53.43,-20:57:01.66,-0.602,0.095,-15.152,0.106,2459230.345915,0.0011714778,2.5185745020757,0.00024262918,2.19207199266993,0.08816436,0.673707,0.042887,620.314462165927,39.5,21.1995259499436,8.536414,30101.8562118309,3359.44912662929,23.27506,390.393,9.291,10817.0,134.0,,,5.78884,,,,,,"8,34",2019-04-13,2021-03-23,2022-12-14 12:09:24,possible odd-even; active TFOPWG PC,589,1,False,False,True -270841724,590.01,,5,5,5,5,5,5,5,,,317.0,0,0,1,PC,FP,10.441,0.045,,1,qlp,QLP,08:48:16.49,-47:06:53.13,,,,,2458522.02359,0.00103,18.90372,0.00081,9.067,0.168,26.675855,0.004002,24270.0,3.68583,,,,,128.0,,,,,,,,,,,,,8,2019-04-13,2020-07-09,2022-12-14 12:09:24,possible EB but could be PC at half or quarter the period; likely offset and could be on 270841758 which is brighter in the optical; host is likely a giant,590,1,False,False,True -146261607,591.01,,5,5,5,5,5,5,5,392.1,3618.5,317.0,0,0,1,EB,FP,10.1749,0.006,,1,qlp,QLP,08:14:19.66,-34:49:09.56,-5.871,0.107,4.795,0.094,2459262.045754,0.0002316,8.4915117,3.3e-06,6.035,0.063,45.045983,0.001088,40640.0,1.00177,87.0155,8.87517,2278.83,1924.0,230.0,1219.08,119.46,9365.0,407.8,4.08,1.27,4.18,0.43,,,2.38,0.319348,"7,8,34",2019-04-01,2021-03-30,2022-12-14 12:09:24,8.5 day signal is EB,591,1,False,False,False -196286587,592.01,,5,5,5,5,5,5,5,11.4,51.1,53.26,5,6,3,PC,FP,10.1985,0.006,,1,qlp-s61-ffi,UNKNOWN,08:22:13.72,-25:04:10.09,4.836,0.043,-7.165,0.04,2459974.937344,0.0021416,10.4137962,2.37e-05,3.482,0.209,2.117077,0.067299,1948.0,61.983,8.3814,0.406739,131.058,942.0,25.0,358.441,3.8825,6439.3,182.5,4.12,0.6,1.97,0.09,,,1.3,0.202781,"7,8,34,61",2019-04-13,2023-03-23,2023-03-24 12:12:10,possible BD; centroid offset to the NW,592,1,False,False,True -128463355,593.01,,5,5,5,5,5,5,5,176.0,575.4,317.0,2,0,4,EB,FP,10.1078,0.006,,1,qlp,UNKNOWN,07:52:14.3,-29:42:50.66,2.801,0.046,-9.729,0.055,2458493.08509,0.00148,13.9086,0.0,2.987,0.146,5.180444,1.508125,4760.0,1388.07,37.5946,9.55057,,,33.0,382.898,4.7545,6333.0,128.0,3.81,0.08,2.29,0.1,,,1.252,0.190589,"7,8,34",2019-04-01,2021-03-18,2022-12-14 12:09:24,TFOP FP; retired as EB,593,1,False,False,True -146406806,594.01,,1,4,1,3,3,4,4,,,68.25,5,0,1,PC,PC,10.3979,0.009,,1,spoc,UNKNOWN,08:14:56.04,-31:36:29.92,-4.026,0.094,1.425,0.102,2459237.953827,0.0014953221,13.9496585824079,0.0008494172,4.54156908145876,0.11044461,8.613325,0.276716,7901.78119145564,254.83273,,,77.6732103119681,757.159827134595,38.394302,992.63,67.2745,,,,,,,,,,,"7,8,34,35",2019-04-13,2021-10-05,2022-12-14 12:09:24,V shaped; two stars in the same pixel; likely EB; no stellar radius but J-K and parallax suggest likely A star (Rs>2.5 Rsun) therefore the planet radius is likely stellar at this period,594,1,False,False,True -287329267,595.01,,5,5,5,5,5,5,5,6.4,25.2,37.61,0,1,1,EB,FP,9.9959,0.006,,1,qlp,QLP,07:19:08.05,-59:18:07.35,-4.84,0.041,7.583,0.043,2458331.94733,0.00515,7.64348,6e-05,2.772,0.454,0.608183,0.000868,560.0,0.799349,6.82171,0.406298,170.804,1007.0,19.0,432.642,3.8765,6258.1,103.6,3.59,0.08,2.94,0.12,-0.335808,0.0458287,1.22,0.176936,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29",2019-04-01,2020-11-13,2022-12-14 12:09:24,TFOP FP; Retired as NEB,595,1,False,False,True -144956678,596.01,,5,5,5,5,5,5,5,22.7,58.0,52.53,1,2,1,EB,FP,9.9071,0.006,,1,spoc,UNKNOWN,08:08:16.47,-35:33:33.96,-1.863,0.038,13.133,0.042,2459228.947101,0.002083376,1.51360034493789,0.00021917185,2.44006945226305,0.2813182,0.809326,0.055962,745.139340540576,51.541286,8.30901932857473,2.3770592,14144.8668844288,2781.43852554686,11.865457,388.682,3.7825,6017.0,129.7,3.55,0.08,2.93328,0.134,,,1.11,0.151452,"7,8,34",2019-04-13,2021-04-07,2022-12-14 12:09:24,TFOP FP; retired as NEB,596,1,False,False,True -146208651,597.01,,5,5,5,5,5,5,5,17.0,44.8,52.6,1,4,1,PC,FP,9.796,0.006,,1,qlp,QLP,08:53:49.91,-48:48:45.65,41.829,0.048,-20.217,0.047,2458519.22343,0.00508,6.5224,0.00248,2.63,0.484,0.917372,0.002255,844.574,2.07697,8.46817,0.49569,71.5773,810.0,11.0,253.619,1.8255,4951.7,77.1,3.55,0.4,2.65,0.08,,,,,8,2019-04-01,2019-04-01,2022-12-14 12:09:24,two stars on the same pixel,597,1,False,False,False -81429971,598.01,,5,5,5,5,5,5,5,,,317.0,2,0,1,PC,FP,10.1356,0.008,,1,spoc,UNKNOWN,08:12:42.77,-42:56:06.03,1.084,0.047,-0.74,0.054,2459231.2947,0.0042205853,3.04269197265814,0.0010069472,4.98228445207274,0.27327356,1.782394,0.111531,1640.29837710846,102.71818,6.15864172658704,4.467705,14343.8465404935,2791.16915507358,15.972255,869.555,23.0415,8000.0,174.4,,,1.0,,,,,,"7,8,34,35",2019-04-13,2020-05-20,2022-12-14 12:09:24,,598,1,False,False,True -145982812,599.01,,5,5,5,5,5,5,5,110.6,136.9,317.0,2,0,1,PC,FP,10.4708,0.008,,1,qlp,QLP,08:52:34.85,-50:00:31.67,-9.31,0.05,8.328,0.053,2458518.4693,0.0032,0.82967,0.00021,1.755,0.05,5.163589,0.514168,4744.55,473.454,20.1053,6.45846,65023.4,4448.0,34.0,618.602,11.4245,6991.1,203.7,3.83,0.67,2.65,0.15,,,2.56,0.315785,8,2019-04-13,2019-04-13,2022-12-14 12:09:24,,599,1,False,False,True -134396419,600.01,,5,5,5,5,5,5,5,,,16.34,1,1,1,EB,FP,10.2681,0.008,,1,qlp,UNKNOWN,08:09:05.5,-37:03:42.7,-3.067,0.069,4.052,0.064,2458491.92094,0.00466,4.36539,0.00099,2.427,0.702,1.597206,0.004911,1470.0,4.5236,,,2596.31,1988.0,22.0,829.726,29.905,9156.5,482.7,,,,,,,,,"7,8,34",2019-04-13,2021-03-23,2022-12-14 12:09:24,R=9 Re using the TIC Rstar,600,1,False,False,True -141363913,601.01,,3,4,3,3,3,4,4,26.8,58.3,88.99,2,2,1,PC,PC,9.9223,0.01,,1,qlp-s62-ffi,QLP,08:37:50.96,-43:02:31.26,-11.443,0.302,-1.004,0.284,2460009.873434,0.0017853,3.477756,1.45e-05,1.999,0.172,1.278664,0.097825,1177.0,90.0963,11.3342,1.04544,379.541,1229.0,27.0,409.766,28.715,6221.0,132.6,3.53,0.1,3.1,0.26,,,1.2,0.178038,"8,9,35,61,62",2019-04-13,2023-04-12,2023-04-25 12:12:35,evolved host,601,1,False,False,True -175176327,602.01,,5,5,5,5,3,5,5,77.6,235.5,317.0,2,3,1,EB,APC,10.0465,0.007,,1,spoc,SPOC,07:43:18.08,-36:29:48.17,-4.472,0.067,10.547,0.069,2459235.384299,0.0012230756,11.1002045842408,0.0016901845,2.06907776419703,0.11958692,5.431234,0.250126,4989.86037107289,230.34804,28.1216204381513,28.544558,3860.98970743677,2010.45524906202,27.122019,613.411,15.5475,10633.0,303.4,4.08,0.07,2.5065,0.0785578,,,2.75,0.382124,"7,8,34",2019-04-13,2021-03-23,2022-12-14 12:09:24,TFOP APC; retired as SB1,602,1,False,False,True -262746281,603.01,,4,4,4,4,4,4,4,12.0,63.9,48.18,4,20,7,PC,PC,9.74179,0.006,,1,qlp-s61-ffi,QLP,09:24:25.89,05:45:57.8,-20.471,0.059,-43.611,0.053,2459979.978617,0.0016224,16.1798045,3.09e-05,6.495,0.24,2.444571,0.049191,2249.0,45.3053,7.89958,0.412377,131.122,942.0,35.0,205.924,1.5805,5900.8,129.6,4.04,0.08,1.63,0.08,0.176,0.012,1.072,0.136382,"8,35,45,46,61",2019-04-13,2023-04-04,2023-04-07 12:13:06,actual period is 16.18 d,603,1,False,False,True -145027461,604.01,,5,5,5,5,5,5,5,,,317.0,0,0,1,PC,FP,10.4029,0.01,,1,qlp,QLP,08:09:01.79,-30:47:16.58,-4.594,0.063,2.858,0.064,2458492.72655,0.00301,1.07242,0.00013,1.996,0.216,0.686608,0.000801,632.189,0.737297,22.0397,0.897804,1909.78,1841.0,20.0,1006.54,42.769,5001.6,55.5,,,7.97,0.18,,,,,"7,8",2019-04-01,2020-07-09,2022-12-14 12:09:24,TFOP NEB; possible offset to north,604,1,False,False,True -181304295,605.01,,3,4,4,3,4,4,4,57.6,82.6,317.0,3,0,4,PC,PC,10.4349,0.008,,1,qlp-s62-ffi,QLP,08:43:40.7,-36:39:25.19,-8.3,1.9,10.4,1.8,2460010.074425,0.0005919,3.3840629,3e-06,1.578,0.284,7.024588,0.305013,6449.0,280.888,16.52,,1009.39,,48.0,508.905,,8265.0,,,,2.12,,,,,,"8,35,61,62",2019-04-13,2023-04-13,2023-04-25 12:12:35,V-shaped transit; slight depth-aperture correlation,605,1,False,False,True -122262940,606.01,,5,5,5,5,5,5,5,277.6,540.5,317.0,1,0,1,EB,FP,10.2688,0.006,,1,qlp-s62-ffi,QLP,08:52:57.27,-57:56:26.24,-19.274,0.099,-1.704,0.08,2460010.482867,0.0010274,2.0034063,2.1e-06,2.661,0.562,3.667289,5.509594,3372.0,5061.67,30.4003,5.37651,15162.9,3091.0,57.0,431.861,8.0455,6514.0,298.8,4.03,0.56,2.27,0.1,,,1.44,0.249468,"8,9,10,35,36,37,62",2019-04-01,2023-04-12,2023-04-25 12:12:35,TFOP NEB/FP,606,1,False,False,False -153651591,607.01,,5,5,5,5,5,5,5,17.8,67.1,85.01,2,4,1,PC,FP,10.5259,0.011,,1,spoc,UNKNOWN,08:04:02.22,-26:09:56.44,-4.369,0.049,6.26,0.052,2459230.769216,0.0017509076,2.14563244308398,0.00030249744,2.16800959448492,0.32216987,1.563146,0.110939,1438.67469530242,102.17381,11.0288578407982,2.7573917,28811.4006978736,3322.85081009386,11.071719,921.917,30.9445,9389.0,182.7,3.92,0.07,2.80165,0.117136,,,2.39,0.312146,34,2019-04-13,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as NEB,607,1,False,False,True -186547153,608.01,,5,5,5,5,3,5,5,71.8,177.7,130.93,0,1,1,PC,APC,10.1978,0.006,,1,qlp-s62-ffi,QLP,08:51:21.32,-34:25:54.68,-5.3,1.9,2.4,1.9,2460011.845422,0.0006897,1.1908287,1.7e-06,1.834,0.215,2.217164,1.193228,2040.0,1098.4,14.221,,52597.1,,49.0,500.647,,7471.9,126.4,4.09,1.38,2.14,,,,,,"8,35,61,62",2019-04-13,2023-04-12,2023-04-25 12:12:35,TFOP APC/SB2,608,1,False,False,True -134404603,609.01,,5,5,5,5,3,5,5,268.8,443.8,317.0,5,1,1,PC,APC,9.836,0.006,,1,qlp-s62-ffi,QLP,08:09:21.55,-39:09:52.52,-81.983,0.05,76.617,0.04,2460007.604027,0.0007388,4.9699991,2.6e-06,1.363,0.215,13.768292,3.248971,12601.0,2987.94,21.4073,1.5824,112.974,908.0,82.0,144.623,0.608,5759.0,128.2,4.3,0.08,1.19,0.06,,,1.03,0.125347,"7,8,34,35,61,62",2019-04-13,2023-04-12,2023-04-25 12:12:35,TFOP APC/SB2,609,1,False,False,True -80275202,610.01,,5,5,5,5,5,5,5,71.8,113.1,317.0,1,0,1,EB,FP,10.4989,0.006,,1,qlp-s61-ffi,QLP,08:06:06.29,-44:22:30.31,-5.607,0.048,7.389,0.047,2459983.317258,0.0023802,3.6649528,9.2e-06,3.245,0.964,4.204501,5.983501,3865.0,5495.85,16.4945,5.27668,13611.8,3009.0,31.0,437.969,5.9295,7889.0,115.2,4.53,0.59,1.61,0.05,,,2.07,0.306847,"7,8,34,35,61",2019-04-13,2023-03-08,2023-03-24 12:12:10,need to check 80275180; TFOP FP/NEB,610,1,False,False,True -154459165,611.01,,1,4,1,4,3,4,4,28.8,141.8,24.32,3,3,1,PC,PC,10.4259,0.006,,1,qlp-s61-ffi,QLP,08:08:08.24,-28:03:58.28,-32.66,0.055,-22.308,0.049,2459983.664716,0.0038393,3.1471655,1.14e-05,3.402,1.09,1.564587,2.641582,1440.0,2430.03,5.30134,1.75312,3942.66,2207.0,22.0,97.3234,0.34625,4869.0,119.8,4.54,0.09,0.79,0.05,,,0.79,0.0944886,"7,8,34,61",2019-04-01,2023-03-23,2023-03-24 12:12:10,possible offset towards 154459164,611,1,False,False,True -284738182,612.01,,3,4,4,3,3,4,4,22.8,96.4,26.7,9,3,2,PC,PC,10.1939,0.006,,1,qlp-s61-ffi,QLP,07:23:31.64,-37:50:07.69,-12.75,0.04,10.632,0.041,2459987.158093,0.0009029,0.9136081,1.1e-06,1.099,0.303,1.486304,0.093413,1368.0,86.0333,5.5813,0.306716,5597.87,2409.0,25.0,292.623,2.2515,7126.0,139.0,4.29,0.08,1.5,0.06,,,1.59,0.258631,"7,8,33,34,61",2019-04-13,2023-04-04,2023-04-07 12:13:06,centroid offset not on a particular star; v-shaped,612,1,False,False,True -77527511,613.01,,3,4,3,4,4,4,4,68.6,127.4,62.89,13,14,5,PC,PC,9.94921,0.006,,1,qlp,UNKNOWN,09:29:03.12,-05:22:32.41,9.214,0.072,-40.581,0.075,2459279.650943,0.0005113,0.7784962,7e-07,0.856,0.082,1.814695,0.000926,1670.0,0.852676,9.22083,,529.373,1336.0,43.0,221.016,2.4325,4949.2,37.7,,,2.19,,-0.350552,0.0597927,,,"8,35",2019-04-13,2021-06-11,2022-12-14 12:09:24,V-shaped; odd-even; likely EB. TFOP work in progress.,613,1,False,False,True -118021229,614.01,,5,5,5,5,5,5,5,31.1,84.5,34.66,3,5,1,PC,FP,9.947331,0.006,,1,qlp,QLP,08:33:54.02,-20:56:26.33,-50.781,0.042,-7.647,0.043,2458518.2814,0.00274,0.88501,0.00021,1.622,0.202,0.890972,0.001912,820.279,1.76139,6.77007,0.340373,2010.85,1865.0,22.0,255.901,1.636,5362.0,52.1,3.75,0.59,2.15,0.04,,,0.962,0.127279,8,2019-04-13,2019-04-13,2022-12-14 12:09:24,,614,1,False,False,True -190496853,615.01,,3,5,5,3,4,4,4,94.7,155.2,317.0,8,10,3,CP,CP,10.3015,0.006,,1,qlp-s62-ffi,QLP,08:53:38.09,-40:32:37.32,-17.354,0.05,25.519,0.053,2460010.013606,0.0004211,4.6616079,5.5e-06,4.007,0.044,13.076869,0.150166,11972.0,138.298,19.1536,0.670447,1329.63,1682.0,191.0,360.408,3.951,7437.0,135.9,4.21,0.08,1.7,0.06,,,1.7,0.271171,"8,9,35,62",2019-04-13,2023-04-12,2023-04-25 12:12:35,TOI 615 b (Asaridi 2023 et al),615,1,False,False,True -145879095,616.01,,3,4,3,3,3,4,4,,,317.0,4,0,1,PC,PC,9.9794,0.01,,1,qlp-s63-ffi,QLP,08:51:29.75,-51:19:41.6,-0.759,0.051,2.831,0.045,2460035.229242,0.000513,2.8056739,1.6e-06,2.299,0.275,3.643322,0.098201,3350.0,90.4424,,,,,64.0,862.802,21.11,,,,,,,,,,,"8,9,35,36,62,63",2019-04-01,2023-05-11,2023-05-11 00:00:00,transiting object might be too big; no stellar radius; Gaia Rs = 4.24 Rsun would make Rp ~ 20 Re,616,1,False,False,True -141227133,617.01,,5,5,5,5,5,5,5,,,317.0,1,1,3,PC,FP,10.251,0.013,,1,qlp,QLP,08:37:15.69,-47:23:00.56,-2.535,0.099,3.338,0.094,2458518.70004,0.00114,2.42232,0.00022,2.873,0.212,6.202601,0.01117,5696.52,10.2883,,,197.858,1044.0,63.0,6149.76,1865.84,2838.0,162.0,,,,,,,,,8,2019-04-13,2020-07-09,2022-12-14 12:09:24,TFOP NEB; centroid offset,617,1,False,False,True -173640199,618.01,,1,4,1,3,3,4,4,16.9,82.6,48.04,7,1,1,PC,PC,10.1277,0.006,,1,qlp-s61-ffi,QLP,07:30:16.96,-39:20:22.67,-1.404,0.067,-16.956,0.097,2459972.603908,0.0012838,7.7614672,1e-05,4.156,0.294,3.381901,0.069918,3110.0,64.3952,7.85756,0.371844,405.393,1250.0,33.0,234.072,1.903,6515.0,134.8,4.25,0.09,1.43,0.07,,,1.34,0.212088,"7,8,34,61",2019-04-13,2023-04-04,2023-04-07 12:13:06,,618,1,False,False,True -267527924,619.01,,5,5,5,5,5,5,5,,,14.37,2,0,1,EB,FP,10.1853,0.006,,1,qlp-s62-ffi,QLP,07:36:12.18,-48:03:48.55,-1.2,2.1,5.2,2.0,2460011.60482,0.0020928,1.8080364,3.9e-06,2.892,0.581,1.373239,1.157577,1264.0,1065.6,,,12760.9,2960.0,38.0,,,5354.5,17.2,,,,,,,,,"7,8,34,35,62",2019-04-13,2023-04-12,2023-04-25 12:12:35,TFOP NEB/FP,619,1,False,False,True -296739893,620.01,,1,5,5,1,4,4,4,11.2,126.9,9.24,8,4,9,CP,CP,10.2139,0.007,,1,qlp-s62-ffi,QLP,09:28:41.63,-12:10:01.79,35.872,0.105,-389.854,0.082,2460006.851294,0.0008304,5.0987802,7.1e-06,0.905,0.074,2.450012,0.168972,2254.0,155.617,3.00392,0.130467,3.59572,383.0,16.0,33.0231,0.05845,3633.0,70.0,4.80423,0.365746,0.55,0.02,,,0.542958,0.0204441,"8,35,62",2019-04-13,2023-04-12,2023-04-25 12:12:35,TOI-620 b,620,1,False,False,True -30828562,621.01,,5,5,5,5,3,5,5,204.8,333.5,317.0,0,0,3,PC,APC,8.1327,0.006,,1,spoc,UNKNOWN,08:58:52.4,-43:27:10.06,-29.488,0.058,20.116,0.06,2458520.110439,0.000227,3.112361,5.2e-05,2.437419,0.014018,6.908981,0.06335,6343.20305,58.34585,18.92299,2.560921,5401.1187413958,2186.45569181606,187.64789,184.125,1.1845,7850.0,217.0,4.08695,0.341185,2.04956,0.277062,,,2.09,0.311349,8,2019-04-10,2019-04-10,2022-12-14 12:09:24,possible hot Jupiter,621,1,False,False,True -83092282,622.01,,3,5,5,3,4,4,4,55.6,236.5,64.82,2,6,1,PC,CP,8.5615,0.006,,1,qlp-s62-ffi,SPOC,08:21:13.21,-46:29:03.47,-4.633,0.052,-17.577,0.053,2460006.078147,0.0002526,6.4025281,2.1e-06,3.66,0.089,4.517361,0.031983,4152.0,29.457,9.42196,0.39016,429.189,1268.0,196.0,123.297,0.469,7056.0,206.0,4.33435,0.325246,1.41,0.06,,,1.42,0.235839,"8,9,34,35,61,62",2019-04-10,2023-04-04,2023-04-07 12:13:06,,622,1,False,False,True -101395259,623.01,,5,5,5,5,5,5,5,45.5,152.9,117.45,0,1,1,EB,FP,10.1913,0.008,,1,qlp-s62-ffi,UNKNOWN,09:54:52.87,-23:19:55.62,-20.119,0.097,7.542,0.104,2460008.580379,0.0006886,7.574675,4.7e-06,2.729,0.275,7.326238,0.236521,6725.0,217.82,13.3524,0.67103,327.9,1185.0,86.0,275.377,7.6635,6422.0,197.0,4.20608,0.594182,1.49,0.07,,,1.34,0.212773,"8,9,35,62",2019-04-10,2023-03-29,2023-03-31 12:12:24,retired as TFOP FP/SB1,623,1,False,False,True -399870368,624.01,,5,5,5,5,4,5,5,157.8,285.7,317.0,0,1,1,PC,CP,9.3371,0.01,,1,qlp,UNKNOWN,04:58:12.56,09:59:52.73,-2.657,0.096,-4.996,0.065,2459197.007544,0.0002534,2.7443212,1.5e-06,3.421,0.124,11.241074,0.000536,10300.0,0.49385,20.2676,0.693272,5626.34,2412.0,170.0,330.739,6.685,8730.0,152.7,4.19,0.07,1.97,0.07,,,2.19,0.314869,"5,32",2019-04-23,2021-02-01,2022-12-14 12:09:24,HAT-P-70 b. Rstar = 2.11 Rsun in TIC. Rp = 23 Re.,624,1,False,False,True -379929661,625.01,,5,5,5,5,4,5,5,88.4,150.8,317.0,0,1,1,CP,CP,9.6129,0.006,,1,qlp-s61-ffi,QLP,08:42:01.35,03:42:38.04,-2.856,0.074,0.984,0.051,2459979.75103,0.0007969,4.786958,5.6e-06,4.936,0.075,9.147755,0.100218,8390.0,92.2995,18.0112,0.675597,2320.18,1933.0,96.0,341.263,5.0425,7668.6,138.4,4.13,0.08,1.91,0.07,0.176,0.02,1.796,0.293388,"7,34,61",2019-04-23,2023-03-28,2023-03-31 12:12:24,HAT-P-69 b,625,1,False,False,True -65412605,626.01,,3,5,5,3,4,4,4,86.7,160.9,317.0,1,27,5,CP,CP,9.50712,0.006,,1,qlp-s61-ffi,SPOC/QLP,07:12:29.55,-24:57:12.82,-2.276,0.06,0.338,0.075,2459980.873931,0.0003002,4.4010465,1.4e-06,4.757,0.04,7.520825,0.0447,6903.0,41.169,19.7441,0.66082,3731.9,2177.0,261.0,437.215,8.357,8489.0,178.9,4.03,0.08,2.32,0.08,,,2.11,0.345411,"7,33,34,61",2019-04-23,2023-03-28,2023-03-31 12:12:24,KELT-25 b (Rodriguez Martinez et al; arxiv:1912.01017.pdf),626,1,False,False,True -365781372,627.01,,5,5,5,5,5,5,5,136.7,229.8,317.0,0,0,1,PC,FP,10.0267,0.013,,1,qlp,QLP,05:27:41.66,07:55:06.69,-2.362,0.125,-7.589,0.099,2458469.22408,0.00062,1.13889,6e-05,2.154,0.248,5.844139,0.00098,5368.19,0.902334,22.4869,1.44558,16504.7,3157.0,87.0,629.834,29.16,7852.8,250.7,4.08,1.28,2.79,0.18,,,2.42,0.341473,6,2019-04-23,2019-04-23,2022-12-14 12:09:24,check nearby bright stars; might be synchronized,627,1,False,False,True -281408474,628.01,,4,5,5,4,4,4,4,89.4,247.6,100.48,6,12,5,PC,CP,9.65646,0.007,,1,qlp,QLP,06:37:03.13,01:46:03.18,-1.437,0.117,-1.082,0.087,2458469.2352,0.00043,3.4076,0.00014,3.69,0.056,8.173711,0.000265,7500.0,0.244342,12.1343,0.579782,1052.9,1586.0,170.0,178.68,2.991,6174.0,156.8,4.23,0.08,1.38,0.07,,,1.179,0.161577,6,2019-04-23,2020-05-20,2022-12-14 12:09:24,hot Jupiter; may be on 281408443 (R=1.06 Rsun),628,1,False,False,False -293853437,629.01,,4,5,5,4,4,4,5,33.3,143.6,104.84,0,33,5,PC,CP,8.69437,0.006,,1,spoc,UNKNOWN,06:23:18.7,00:53:00.05,6.476,0.105,-3.898,0.099,2459204.254985,0.00080251024,8.71796076042,0.00061450567,6.33417711885856,0.06861301,2.736939,0.044209,2517.63924081903,40.716873,12.4769155481559,0.50502205,2974.90553058314,1883.59723534872,33.24419,333.379,8.0155,9165.0,230.7,4.05,0.07,2.38236,0.09,,,2.321,0.329025,"6,33",2019-04-23,2021-02-18,2022-12-14 12:09:24,brown dwarf companion with a mass of roughly 55 Mjup,629,1,False,False,True -123898871,630.01,,5,5,5,5,3,5,5,125.0,219.8,317.0,0,0,1,EB,APC,9.84786,0.006,,1,spoc,UNKNOWN,06:03:39.84,-19:02:27.02,-4.403,0.202,6.224,0.229,2459201.815341,0.00037622446,4.90939433593789,0.00012077004,4.12697597184014,0.022911498,14.038659,0.232075,12846.8487139354,213.72575,20.0869582496483,0.98250514,1605.57968725634,1614.46158538802,50.338337,309.705,10.4445,7210.5,161.0,4.11,0.5,1.69733,0.0815279,,,1.629,0.274452,33,2019-04-23,2021-02-18,2022-12-14 12:09:24,,630,1,False,False,True -97158538,631.01,,5,5,5,5,5,5,5,17.8,80.9,29.67,2,1,3,EB,FP,8.783341,0.006,,1,spoc,UNKNOWN,07:03:46.91,-30:43:34.89,-12.978,0.039,22.818,0.053,2459229.708439,0.001046011,2.59507471269952,0.00020455132,0.792127360412531,0.2731439,0.722527,0.048998,665.250277447965,45.128178,5.9382554925551,6.0433493,5582.81003994666,2204.61603704423,11.98571,233.697,1.524,6852.0,125.0,3.91,0.09,2.24201,0.0953369,,,1.483,0.25686,"7,33,34",2019-04-23,2021-03-11,2022-12-14 12:09:24,synchronized; TFOP FP retired as EB,631,1,False,False,True -349790953,632.01,,5,5,5,5,5,5,5,2176.8,13769.6,317.0,0,0,1,EB,FP,10.3357,0.006,,1,qlp,UNKNOWN,07:33:49.15,-61:17:32.83,-2.417,0.085,6.778,0.06,2459387.579573,0.0002494,1.5521101,7e-07,2.699,0.034,5.911612,0.271178,5430.0,249.733,208.489,,5297.55,2376.0,263.0,1278.41,54.865,4997.1,86.0,2.36,0.17,12.23,,-0.53,0.09,,,"1,3,4,5,6,7,8,9,10,11,13,27,28,29,30,31,32,33,34,35,36,37,38",2019-04-11,2021-08-20,2022-12-14 12:09:24,Secondary; too large to be a planet,632,1,False,False,True -348755723,633.01,,5,5,5,5,5,5,5,6.8,62.2,20.97,1,0,3,PC,FP,13.9036,0.007,,1,spoc,SPOC,08:56:21.14,-12:56:05.54,30.243,0.102,2.488,0.143,2458517.809802,0.002628,4.503645,0.000869,1.973292,0.304933,13.685524,1.211043,12525.725237,1114.7897,11.197034,1.881909,35.7949976881918,623.843040097551,9.939798,116.496,0.8835,3267.0,,4.438,,1.0,,,,0.427418,0.0204592,8,2019-04-23,2020-05-29,2022-12-14 12:09:24,Follow-up (Will Waalkes and Zach Berta-Thompson) ruled out a transit on TOI 633 but confirmed a 9.6 ppt event on 348755728; GAIA stellar parameters: Teff = 3414 K; R = 0.567 R_solar,633,1,False,False,True -344926234,634.01,,5,5,5,5,5,5,5,8.6,85.8,3.07,0,3,1,PC,FA,9.1299,0.006,,1,spoc,SPOC,10:06:13.81,03:56:47.38,20.649,0.284,-18.065,0.478,2458517.428167,0.001804,0.49359,7.2e-05,1.545897,0.336383,0.267886,0.029709,246.702105,27.362505,1.733849,1.121573,7238.7191072054,2352.53005598165,7.43477,92.8368,0.7164,5872.0,191.0,4.43995,0.313994,1.02918,0.149487,0.005,0.027,1.09,0.139553,8,2019-04-23,2019-04-23,2022-12-14 12:09:24,Diff Image Quality flagged as unreliable,634,1,False,False,True -286132427,635.01,,5,5,5,5,5,5,5,11.3,17.6,2.74,0,3,3,PC,FA,8.1075,0.006,,1,spoc,SPOC,09:46:53.89,-04:17:53.66,-45.703,0.083,-40.413,0.087,2458517.43594,0.001801,0.493379,7.7e-05,1.5,0.283602,0.211024,0.024663,194.341058,22.715282,1.503946,0.944963,7066.34328226383,2338.39800841017,8.047397,58.7453,0.24805,5914.0,191.0,4.46485,0.254775,1.00635,0.112958,0.106,0.017,1.05,0.13495,8,2019-04-23,2019-04-23,2022-12-14 12:09:24,could be on TIC 286132422,635,1,False,False,True -146463781,636.01,,5,5,5,5,5,5,5,106.6,215.6,47.31,1,0,0,PC,FP,14.7034,0.007,,1,spoc,SPOC,08:15:32.5,-31:33:23.48,-28.848,0.073,69.089,0.081,2458517.476816,0.002485,0.417921,7.9e-05,1.843947,0.247587,46.183846,3.920988,41644.893112,3604.8499,5.657227,1.322447,159.379863446366,906.20845979845,9.291737,158.67,1.342,3278.0,100.0,4.97806,0.517731,0.275,0.06,,,0.368528,0.0204606,8,2019-04-11,2019-04-11,2022-12-14 12:09:24,crowded field; likely EB off target to SSE; but check if nearby PC.,636,1,False,False,True -133334108,637.01,,1,4,1,1,3,4,4,9.8,90.2,6.86,1,5,3,PC,PC,8.9454,0.6,,1,qlp-s62-ffi,SPOC,08:03:08.98,-38:44:31.23,9.999,0.046,-103.899,0.056,2460008.594941,0.0035325,2.8579169,1.24e-05,3.818,1.204,0.574506,0.913345,529.0,840.868,,,643.09729920595,1284.36635688342,30.0,64.5529,0.1326,5637.0,188.0,4.52053,0.258867,,,,,,,"7,8,34,35,61,62",2019-04-11,2023-04-04,2023-04-07 12:13:06,v-shaped; no stellar parameters but possible G/K dwarf host; possible offset to E,637,1,False,False,True -78154865,638.01,,5,5,5,5,5,5,5,11.1,99.3,4.14,0,4,1,PC,FA,8.9225,0.006,,1,spoc,SPOC,09:51:28.17,-04:07:23.96,-2.379,0.072,14.086,0.073,2458517.42793,0.001407,0.493826,5.5e-05,1.162615,0.459021,0.33725,0.048427,310.570859,44.601707,1.940277,4.062545,8648.33920298238,2459.53455395743,8.201568,96.6355,0.50395,6030.0,192.0,4.41585,0.275802,1.08524,0.131985,,,1.12,0.141539,8,2019-04-23,2019-04-23,2022-12-14 12:09:24,PC; TIC 78154863 in same pixel,638,1,False,False,True -82362447,639.01,,5,5,5,5,5,5,5,94.3,145.3,317.0,1,0,0,PC,FP,15.2474,0.008,,1,spoc,SPOC,08:17:00.03,-47:39:07.03,96.758,0.109,-102.395,0.128,2458517.560677,0.005268,2.819817,0.001165,6.611278,0.349024,220.283783,14.845177,183631.033642,13579.864,22.75573,21.919445,31.8484579920228,605.887303767899,12.677918,160.84,1.525,3601.0,119.0,4.81887,0.453432,0.441,0.086,,,0.271062,0.0207766,8,2019-04-23,2019-04-23,2022-12-14 12:09:24,Crowded field; likely EB off target to SSE; but check if nearby PC (not a cut and paste error; same comment as line 104).,639,1,False,False,True -147977348,640.01,,3,5,5,3,4,4,4,96.7,141.8,317.0,6,16,1,PC,CP,10.0367,0.006,,1,spoc,UNKNOWN,06:38:56.3,-36:38:46.07,-3.872,0.04,4.927,0.045,2459205.304175,0.0006027428,5.00377538208305,0.0001086091,3.65279019697498,0.03267667,7.512198,0.071895,6895.10867831669,66.21541,19.9303659091885,0.91401005,1720.77248997069,1642.67108721449,129.08768,341.997,2.8165,6442.0,136.5,3.91,0.09,2.08785009384155,0.0947261,,,1.3,0.209691,"6,7,33,34",2019-05-06,2021-09-29,2022-12-14 12:09:24,SG1 should clear neighbor. Large PC.,640,1,False,False,True -49079670,641.01,,4,5,5,4,4,4,4,11.8,83.0,10.51,2,13,6,PC,APC,9.90377,0.006,,1,spoc,UNKNOWN,06:44:17.21,-23:49:09.07,-31.405,0.031,23.686,0.049,2459202.816297,0.0017492252,1.89349418940123,0.00022661965,1.24813192019499,0.33278808,0.934099,0.071041,859.967258980773,65.42911,3.22364293672944,1.9193082,1103.9907946356,1470.14818675701,11.378626,134.043,0.547,5646.0,129.7,4.4,0.07,1.04432,0.0527638,,,1.002,0.121427,33,2019-05-06,2020-05-20,2022-12-14 12:09:24,,641,1,False,False,True -79292541,642.01,,3,4,3,3,3,4,4,42.8,138.4,104.8,1,1,1,PC,PC,9.4247,0.015,,1,spoc,UNKNOWN,06:56:13.39,-20:03:08.99,-9.759,0.088,4.756,0.121,2459202.167074,0.0010240735,2.27850940823965,0.00016047091,2.03710508949746,0.06321215,1.823928,0.053322,1678.48952994816,49.109764,12.4741390075208,0.5844304,17338.2105076327,2926.65019860997,27.114067,472.224,15.4545,8550.0,199.1,3.93,0.08,2.62521,0.112613,,,2.13,0.32076,33,2019-05-06,2020-05-20,2022-12-14 12:09:24,,642,1,False,False,True -432008938,643.01,,5,5,5,5,5,5,5,9.7,143.4,51.79,0,0,2,PC,FP,13.7006,0.007,,1,spoc,SPOC,08:02:46.54,-23:41:48.22,100.619,0.058,-195.052,0.06,2458522.349321,0.003658,9.653456,0.002539,4.00937,0.258226,47.820639,4.558786,43088.5649,4189.9946,7.281973,1.406418,3.12657022024288,339.146075830893,13.058762,87.7731,0.34095,3359.0,69.0,4.93457,0.410313,0.315,0.055,,,0.341657,0.0202832,8,2019-04-11,2019-04-11,2022-12-14 12:09:24,period might be double; crowded field,643,1,False,False,True -63303499,644.01,,5,5,5,5,5,5,5,4.8,41.5,6.13,0,2,1,PC,FP,10.194,0.006,,1,spoc,UNKNOWN,06:59:41.44,-24:53:01.96,-11.529,0.033,27.957,0.049,2459202.295987,0.0030478325,1.92713275821747,0.00020987987,4.55300766211301,0.3852849,0.636317,0.037772,585.897862795726,34.789112,2.3659,0.51685,1087.61164311029,1464.66468949553,11.259578,203.532,1.1425,5952.0,664.1,,,1.25,0.27,,,,,"6,7,33,34",2019-05-06,2021-09-29,2023-02-01 12:02:40,possible NEB to E; TIC 63303496; centroid offset in consecutive sectors,644,1,False,False,True -157568289,645.01,,5,5,5,5,5,5,5,55.3,107.7,120.72,1,0,1,PC,FP,10.4091,0.006,,1,qlp,QLP,07:07:04.18,-36:46:14.88,0.934,0.046,8.274,0.058,2458468.73679,0.00085,1.84051,6e-05,4.642,0.055,2.802446,0.000165,2577.82,0.152151,13.9166,1.05797,4390.21,2267.0,113.0,414.522,5.2525,5710.5,216.5,3.6,0.45,2.49,0.19,,,1.28,0.20692,"6,7",2019-05-06,2019-05-06,2022-12-14 12:09:24,Either diluted or blended PC: matches 17000 ppm deep eclipse on 157568287 of dT=1.8 mag; need SG1 to check on which target,645,1,False,False,True -238197709,646.01,,5,5,5,5,5,5,5,59.6,112.7,317.0,9,0,3,EB,FP,10.3001,0.006,,1,spoc,QLP,03:49:03.79,-72:56:50.27,19.539,0.045,25.393,0.039,2459184.759271,0.0015802899,13.725252177625,0.0021086705,3.16941565471253,0.15170136,5.383122,0.225062,4945.76793423077,207.26817,20.3352568132764,14.115476,312.446065432009,1072.29310786434,31.775454,316.643,2.1045,6104.0,126.8,3.96,0.08,1.86397,0.0808844,,,1.15,0.148423,"2,3,5,6,9,10,12,13,27,28,29,30,32",2019-08-15,2021-02-02,2022-12-14 12:09:24,4-sigma odd-even; TFOP FP. Retire.,646,1,False,False,True -92992033,647.01,,3,4,3,3,3,4,4,,,116.5,0,3,7,PC,PC,10.2339,0.007,,1,qlp,QLP,05:35:49.32,-18:38:58.53,0.273,0.051,9.298,0.073,2458470.60184,0.01,4.90765,0.00501,3.753,0.689,0.879803,0.00208,810.0,1.91617,13.2707,,260.337,1119.0,13.0,553.626,10.6785,4900.0,122.0,,,5.01,,,,,,6,2019-05-06,2020-05-20,2022-12-14 12:09:24,v-shaped; evolved star,647,1,False,False,True -78672342,648.01,,5,5,5,5,5,5,5,17.2,45.4,81.0,0,0,1,PC,FP,10.1347,0.016,,1,qlp,QLP,06:52:00.66,-18:57:15.95,-10.688,0.05,2.799,0.055,2458471.30172,0.00691,2.97638,0.00175,3.212,0.957,0.864418,0.003636,795.842,3.34883,11.0372,1.52854,2695.88,2007.0,14.0,637.257,13.704,6492.5,372.3,3.57,0.63,3.56,0.44,,,1.46,0.253325,6,2019-05-06,2019-05-06,2022-12-14 12:09:24,possible odd-even; GAIA DR2 Teff = 4060 K and Rad = 10.8 Rsun,648,1,False,False,False -35582553,649.01,,3,4,3,3,4,4,4,126.0,127.0,317.0,3,3,7,PC,PC,10.0461,0.006,,1,spoc,UNKNOWN,06:48:53.44,-13:31:38.17,-6.243,0.07,4.382,0.091,2459202.578306,0.0010312136,0.93584982597009,6.834183e-05,1.63008409081372,0.07896778,2.108223,0.090846,1939.86140965398,83.66902,17.3496655356321,12.272534,24855.2646173672,3202.3909321225,20.03594,430.622,7.2705,6779.0,147.4,3.83,0.09,2.43259,0.112802,,,1.454,0.264152,33,2019-05-06,2021-03-01,2022-12-14 12:09:24,,649,1,False,False,True -349373192,650.01,,5,5,5,5,5,5,5,4.6,38.9,11.72,0,0,1,PC,FP,9.7839,0.006,,1,qlp,QLP,07:21:02.65,-60:09:19.71,-1.667,0.077,12.491,0.075,2458326.31528,0.00441,0.76983,3e-05,2.774,0.185,0.17394,0.000207,160.192,0.191012,,,49237.6,4149.0,32.0,402.762,5.5185,8658.0,230.9,3.92,0.11,,,-0.458135,0.0457707,1.8,0.282418,"4,5,6",2019-03-21,2019-03-21,2022-12-14 12:09:24,likely NEB on TIC 349411363 130,650,1,False,False,True -72090501,651.01,,3,4,3,3,3,4,4,307.2,1089.5,83.23,1,1,5,PC,PC,9.0185,0.6,,1,qlp,QLP,06:08:25.36,-11:08:50.4,6.801,0.357,-15.818,0.31,2459226.896187,0.0010135,1.0697877,2.2e-06,1.979,0.083,4.340753,1.472051,3990.0,1354.89,,,63832.9,4428.0,31.0,74.834,1.0759,8576.7,231.6,,,,,,,,,"6,33",2019-05-06,2021-02-19,2022-12-14 12:09:24,maybe odd-even; two stars on the same TESS pixel,651,1,False,False,True -22221375,652.01,,1,5,5,1,4,4,4,10.5,122.6,5.22,1,12,9,CP,CP,7.3635,0.006,,1,qlp-s62-ffi,SPOC/QLP,09:56:29.64,-24:05:57.07,-177.111,0.095,46.867,0.085,2460013.591733,0.0012798,3.9846589,6.2e-06,2.146,0.528,0.48326,0.02424,445.0,22.3254,2.12827,0.10949,647.901,1405.0,25.0,45.683,0.10505,5903.0,,4.44653,,1.03,0.04,0.0169231,0.016641,1.09,0.13291,"9,35,62",2019-05-07,2023-04-12,2023-04-25 12:12:35,HD 86226 c,652,1,False,False,True -33153766,653.01,,5,5,5,5,5,5,5,376.7,364.4,317.0,1,3,1,EB,FP,8.5234,0.006,,1,qlp-s09-ffi,UNKNOWN,09:39:05.67,-45:25:34.27,-19.613,0.049,5.576,0.045,2458544.60377,0.00086,0.68831,4e-05,1.365,0.041,4.33382,0.256305,3983.64,236.038,21.715,5.31915,21261.5,3364.0,23.0,213.947,1.306,6054.0,193.0,3.47323,0.304437,3.13,0.09,,,1.08,0.135507,9,2019-05-07,2021-12-07,2022-12-14 12:09:24,TFOP FP; retired as NEB,653,1,False,False,True -35009898,654.01,,1,4,4,1,4,4,4,10.3,81.9,6.18,11,5,16,PC,PC,12.2255,0.007,,1,qlp-s46-tois,UNKNOWN,10:58:53.89,-05:32:51.16,99.174,0.097,-266.107,0.069,2459576.067923,0.0011757,1.5275657,4e-06,1.12,0.143,3.076989,0.005208,2830.0,4.79704,2.37126,0.125097,53.3454,752.0,24.0,57.7553,0.18245,3433.0,86.0,4.89676,0.432223,0.43,0.01,,,0.422643,0.0203147,"9,36,45,46",2019-05-07,2022-03-10,2022-12-14 12:09:24,check neighbor TIC 35009899 (Tmag ~ 16.2),654,1,False,False,True -35516889,655.01,,5,5,5,5,5,5,5,225.2,191.5,317.0,0,0,1,KP,KP,11.6044,0.006,,1,spoc,UNKNOWN,09:53:40.02,-45:39:32.79,-35.407,0.041,17.288,0.04,2459304.062715,0.0001451,0.7888392476341,4.881454e-07,1.59671071367818,0.009605379,24.632464,0.126853,22431.9151625166,116.82918,16.1247128871715,0.7670051,3170.98712287778,1913.89615157227,211.58167,268.325,1.709,5568.0,,4.39267,,1.0280499458313,0.0486734,0.21,0.1,0.97,0.127479,"9,36",2019-05-07,2021-10-07,2022-12-14 12:09:24,WASP-19 b,655,1,False,False,True -36734222,656.01,,5,5,5,5,5,5,5,374.5,565.2,114.79,0,0,3,KP,KP,11.1184,0.006,,1,spoc,UNKNOWN,10:19:37.96,-09:48:23.2,-42.044,0.069,-38.193,0.066,2459279.797452,6.74e-05,0.813473629336666,2.942888e-07,1.23067646131709,0.0048376364,29.292899,0.09197,26619.0549693058,84.70349,13.1601532588839,1.2992077,680.894869889261,1302.83604375452,358.0055,86.7467,0.3269,4400.0,,4.64555,,0.757649004459381,0.0747613,,,0.65,0.082049,"9,35",2019-05-07,2021-10-07,2022-12-14 12:09:24,WASP-43 b,656,1,False,False,True -48103627,657.01,,5,5,5,5,4,5,5,27.2,79.4,113.28,0,0,1,CP,CP,12.4399,0.006,,1,spoc,UNKNOWN,09:49:37.61,-33:13:06.61,-8.463,0.042,0.734,0.057,2459283.031579,0.001460856,4.56966980334873,5.9327713e-06,3.95361707366471,0.07687171,10.75967,0.184047,9861.07939196415,169.49892,13.0582927544622,0.6644163,616.12217995248,1270.68077843543,42.40866,562.256,9.6955,6122.0,188.0,4.283,,1.28305995464325,0.0608568,,,1.11,0.143814,"9,35,36",2019-05-07,2021-10-07,2022-12-14 12:09:24,HATS-19 b,657,1,False,False,True -48476907,658.01,,3,4,3,3,3,4,4,22.3,111.5,40.77,1,1,3,PC,PC,9.5359,0.006,,1,qlp-s63-ffi,SPOC/QLP,10:00:36.64,-34:40:54.71,-50.825,0.164,19.857,0.224,2460030.273032,0.0008584,4.7192734,7.3e-06,1.301,0.37,1.691809,0.172038,1557.0,158.44,7.15211,0.49726,156.343,985.0,29.0,212.005,5.3535,6521.0,199.0,4.22041,2.01084,1.6,0.08,,,1.31,0.203754,"9,35,36,62,63",2019-05-07,2023-05-11,2023-06-16 12:14:51,also alerted as TOI 659 on TIC 48476908,658,1,False,False,True -48476908,659.01,,3,4,3,3,3,4,4,48.8,175.8,68.54,0,1,4,PC,PC,10.245,0.006,,1,qlp-s63-ffi,SPOC,10:00:36.93,-34:40:53.21,-52.296,0.056,25.232,0.088,2460030.273214,0.0008429,4.7192771,5.9e-06,1.594,0.445,3.105299,1.618225,2856.0,1489.33,9.68968,1.93768,515.984,1327.0,28.0,245.318,2.5865,5990.0,192.0,4.00966,0.748527,1.42,0.07,,,1.2,0.169116,"9,35,36,62,63",2019-05-07,2023-05-11,2023-06-16 12:14:51,two stars of similar brightness in the same pixel; match to TOI 658,659,1,False,False,True -53189332,660.01,,5,5,5,5,5,5,5,25.3,94.2,99.31,0,1,2,KP,KP,10.99,0.006,,1,qlp-s46-tois,UNKNOWN,11:05:43.11,-05:04:46.15,-24.818,0.077,-13.294,0.06,2459575.806751,0.0007093,9.2896818,1.33e-05,5.272,0.092,7.375428,0.000439,6770.0,0.404464,12.124,0.542696,315.859,1174.0,101.0,352.181,6.2825,6055.0,,4.22795,,1.42,0.06,,,1.24,0.190383,"9,36,45,46",2019-05-07,2022-03-10,2022-12-14 12:09:24,WASP-106 b,660,1,False,False,True -53735810,661.01,,5,5,5,5,5,5,5,37.6,112.7,111.12,0,0,1,KP,KP,11.248,0.006,,1,spoc,UNKNOWN,10:32:54.01,-34:59:23.67,11.492,0.083,-13.533,0.084,2459283.745637,0.000913295,4.08605693465708,4.004147e-06,4.47363944454147,0.055040374,7.769529,0.091461,7130.45776294005,84.23555,12.9107217961641,0.66500527,1434.77041472333,1569.69528147267,47.927032,500.258,13.1685,6580.0,,4.0663,,1.47740995883942,0.0742387,0.05,0.05,1.56,0.245319,"9,36",2019-05-07,2021-10-07,2022-12-14 12:09:24,WASP-66 b,661,1,False,False,True -54085154,662.01,,5,5,5,5,5,5,5,13.0,116.0,5.71,2,6,1,EB,FP,8.2046,0.006,,1,qlp-s09-ffi,UNKNOWN,10:40:43.23,-31:55:38.04,-2.069,0.05,-15.577,0.058,2458544.29067,0.00422,1.0016,0.00028,1.238,0.326,0.324443,0.001858,298.778,1.7113,2.39729,0.269908,2192.47,1906.0,14.0,87.2682,0.28245,6380.0,80.0,4.438,,1.26,0.11,,,1.27,0.192852,9,2019-05-07,2021-12-07,2022-12-14 12:09:24,TFOP FP; retired as NEB,662,1,False,False,True -54962195,663.01,,3,4,4,4,4,3,4,6.3,60.6,5.86,29,3,9,PC,PC,11.7602,0.007,,1,spoc,UNKNOWN,10:40:15.8,-08:30:39.9,-142.182,0.075,-82.962,0.062,2458544.388969,0.0010090554,2.59890522847326,9.9969975e-06,1.59079924745746,0.37942126,2.128781,0.170075,1958.75929884354,156.63235,2.28800991437594,1.1988912,48.461479402516,672.92849150831,12.716892,64.2308,0.1799,3719.0,64.0,4.76941,0.347691,0.512360990047455,0.0152398,,,0.510139,0.0203013,"9,35",2019-05-07,2021-07-14,2022-12-14 12:09:24,potential multi,663,1,True,False,True -54962195,663.02,,3,4,4,4,4,3,4,4.1,53.4,6.43,29,3,9,PC,PC,11.7602,0.007,,2,spoc,UNKNOWN,10:40:15.8,-08:30:39.9,-142.182,0.075,-82.962,0.062,2458543.404532,0.001673269,4.6955673072555,2.2319795e-05,1.93845129583399,0.34720367,2.188203,0.209565,2013.37993839706,192.99779,2.41507913157991,0.6120697,22.0224938847338,552.505205428222,10.363942,64.2308,0.1799,3719.0,64.0,4.76941,0.347691,0.512360990047455,0.0152398,,,0.510139,0.0203013,"9,35",2019-05-07,2021-07-08,2022-12-14 12:09:24,low SNR,663,2,True,False,True -54962195,663.03,,1,4,1,1,4,4,4,1.7,35.2,4.47,29,3,9,PC,PC,11.7602,0.007,,3,spoc,SPOC,10:40:15.8,-08:30:39.9,-142.182,0.075,-82.962,0.062,2458547.110793,0.0024951026,7.10274666146155,4.7118785e-05,2.14993803516237,0.8560137,1.554602,0.206421,1430.81709174585,190.1031,1.94990224504174,2.0255024,12.6828101671238,481.308600987307,7.4076014,64.2308,0.1799,3719.0,64.0,4.76941,0.347691,0.512360990047455,0.0152398,,,0.510139,0.0203013,"9,35",2021-07-08,2021-07-08,2022-12-14 12:09:24,candidate 3 in multi-planet system; low SNR,663,3,True,False,True -55092869,664.01,,5,5,5,5,5,5,5,123.6,246.1,121.01,0,11,5,KP,KP,7.3212,0.006,,1,spoc-s62-b0A,SPOC,10:46:49.66,-09:23:57.71,-79.091,0.09,-78.576,0.067,2459988.88442,0.0009165268,4.73592318960559,0.00029657118,7.08196116482889,0.050132286,2.542375,0.0312,2338.87455589106,28.736029,13.5752589192415,0.21154155,468.255987860357,1186.42580599896,79.11996,99.1596,0.52105,5370.0,,3.72765,,2.78714990615845,,0.27,0.1,,,"9,62",2019-05-07,2023-04-13,2023-04-25 12:12:35,KELT 11 b,664,1,False,False,True -73723286,665.01,,5,5,5,5,5,5,5,149.2,320.8,317.0,0,3,1,PC,FP,9.1116,0.006,,1,spoc,UNKNOWN,10:22:32.91,-40:30:58.85,38.971,0.041,-42.676,0.05,2458547.303252,0.000369,14.065993,0.000506,3.442418,0.023263,18.340078,0.188188,16749.968493,173.31256,20.710905,2.806728,67.283,797.0,109.28948,131.018,0.577,6157.0,194.0,4.20407,0.308573,1.41729,0.191856,,,1.01,0.13158,9,2019-05-06,2020-09-30,2022-12-14 12:09:24,period in qlp = 14.05864 was slightly off,665,1,False,False,True -82128636,666.01,,3,5,5,3,3,4,4,59.6,70.2,317.0,4,1,1,PC,APC,8.8252,0.008,,1,spoc,UNKNOWN,08:16:26.48,-46:25:47.35,-15.594,0.447,14.876,0.397,2458521.505574,0.000810529,7.47606872878451,1.2735065e-05,1.62314524006892,0.082194306,1.650748,0.082261,1519.23948468472,75.76197,14.5444224683799,10.05097,1663.75040413061,1628.89013483633,21.090237,237.035,14.643,6680.0,201.0,4.20036,1.91341,2.33510994911194,0.169547,,,1.59,0.27764,"8,9,34,35",2019-05-06,2021-09-08,2022-12-14 12:09:24,v-shaped; TFOP APC/VPC?/SM,666,1,False,False,True -101955023,667.01,,5,5,5,5,5,5,5,10.2,28.3,1.95,1,1,2,KP,KP,10.8372,0.007,,1,spoc,UNKNOWN,10:14:50.18,-47:09:17.77,-1053.98,0.074,414.3,0.083,2459280.989404,0.0008845008,1.6289321997705,3.783475e-06,0.809275952968085,0.09636562,2.73093,0.105684,2512.11924470605,97.33358,1.21456642396614,0.15818869,20.9593188562353,545.712674611976,25.76042,12.613,0.007,3202.0,,4.86375,,0.226407006382942,0.00697427,,,0.195794,0.0201573,"9,10,36",2019-05-07,2021-10-07,2022-12-14 12:09:24,GJ 1132 b,667,1,False,False,True -102195674,668.01,,5,5,5,5,3,5,5,130.9,229.4,317.0,0,1,1,EB,APC,11.3425,0.006,,1,spoc,UNKNOWN,10:16:46.02,-42:33:32.66,-20.767,0.038,-3.744,0.041,2459283.065609,0.00054231315,4.37873023118368,0.00018216146,3.8275040128084,0.03273729,33.293732,0.369287,30199.2684096967,340.06842,21.6962409691396,1.0139132,644.369225373621,1285.00094551944,89.1589,344.134,3.2735,6159.0,194.0,4.37691,0.403057,1.22606003284454,0.0565628,,,1.19,0.168746,"9,36",2019-05-07,2021-05-20,2022-12-14 12:09:24,TFOP APC/SB1; retired as EB,668,1,False,False,True -124573851,669.01,,2,4,2,4,4,4,4,4.4,44.2,6.89,4,17,6,PC,PC,10.1755,0.006,,1,qlp-s62-ffi,SPOC,10:35:36.17,-05:10:52.94,9.845,0.064,72.079,0.059,2460013.733784,0.0038883,3.9451359,1.77e-05,2.424,0.389,0.913488,0.056356,841.0,51.9043,2.51666,0.161931,286.87,1146.0,15.0,142.867,0.8505,5581.9,76.0,4.13,0.12,0.99,0.04,-0.006,0.016,0.996,0.127635,"9,35,62",2019-05-06,2023-04-12,2023-04-25 12:12:35,,669,1,False,False,True -147660201,670.01,,5,5,5,5,5,5,5,54.9,150.2,32.88,4,1,1,EB,FP,11.1557,0.006,,1,spoc-s09-b01,UNKNOWN,10:55:38.18,-42:50:57.41,-55.007,0.059,18.019,0.062,2458543.348205,0.002717,0.579398,0.000108,1.64214,0.200189,1.438551,0.141322,1324.07712,130.15393,5.759676,9.940321,4535.91808479042,2093.08107182218,11.090368,191.494,1.5515,5688.0,188.0,4.48774,0.314376,0.950534,0.137621,,,0.88,0.105132,9,2019-05-07,2021-12-07,2022-12-14 12:09:24,TFOP FP; retired as NEB,670,1,False,False,True -151681127,671.01,,5,5,5,5,3,5,5,129.4,360.6,317.0,0,0,1,PC,APC,9.1379,0.006,,1,qlp-s63-ffi,SPOC/QLP,11:07:33.34,-40:12:24.9,-22.398,0.049,9.419,0.054,2460021.290156,0.0002552,10.1970284,3.4e-06,4.694,0.24,17.634737,0.321622,16111.0,296.181,23.8452,0.726641,869.85,1512.0,242.0,279.74,2.9965,7949.0,219.0,4.21106,0.450146,1.82,0.05,,,2.13,0.299991,"9,36,63",2019-05-06,2023-05-11,2023-06-16 12:14:51,TFOP SB1/APC; likely too large to be planetary,671,1,False,False,True -151825527,672.01,,3,4,4,3,4,4,4,22.9,132.3,22.85,8,1,4,PC,PC,11.6739,0.007,,1,spoc,UNKNOWN,11:11:57.81,-39:19:41.21,85.141,0.046,-74.728,0.038,2458546.479982,0.00025414512,3.6335735388124,3.272654e-06,1.78090766973933,0.053174198,9.442953,0.154976,8659.56899295867,142.72823,5.09241464006768,0.23408793,33.4742849468177,613.475999331427,51.374588,66.9071,0.15285,3765.0,65.0,4.75169,0.342271,0.544067978858948,0.016274,,,0.539888,0.0203613,"9,10,36",2019-05-07,2021-07-15,2022-12-14 12:09:24,,672,1,False,False,True -151959065,673.01,,5,5,5,5,5,5,5,44.0,96.4,317.0,0,0,1,PC,FP,11.955,0.006,,1,spoc,UNKNOWN,11:15:59.62,-36:27:33.86,-16.179,0.041,-0.612,0.037,2458551.637263,0.001167,10.541282,0.001645,6.241204,0.110813,20.455355,0.340958,18663.713048,313.98477,17.800047,17.802114,83.7485376596315,771.549968199122,43.950787,677.796,15.1375,6114.0,194.0,4.28439,2.00499,1.2818,1.2818,,,1.4,0.24639,9,2019-05-06,2019-05-06,2022-12-14 12:09:24,GAIA DR2 R = 1.7 Rsolar; transiting object might be slightly bigger,673,1,False,False,True -158588995,674.01,,3,5,5,3,4,4,4,47.3,227.5,22.58,7,1,9,CP,CP,11.8764,0.007,,1,spoc,UNKNOWN,10:58:20.77,-36:51:29.19,-163.27,0.057,-3.766,0.068,2459301.778142,0.0003876,1.97716366554401,1.0931819e-06,1.03750275293007,0.02577849,15.270352,0.152979,13966.0705473853,140.88937,5.05748313177328,0.18755627,40.7228286380786,644.28680007957,96.410286,46.0851,0.1156,3467.0,64.0,4.87946,0.378912,0.421943992376328,0.0125279,,,0.416017,0.0202508,"9,10,36",2019-05-07,2021-10-07,2022-12-14 12:09:24,TOI-674 b,674,1,False,False,True -169226822,675.01,,5,5,5,5,5,5,5,142.2,154.7,317.0,0,2,5,KP,KP,9.62959,0.006,,1,qlp-s62-ffi,SPOC/QLP,10:42:14.1,-03:50:06,19.224,0.081,17.026,0.067,2460010.43825,0.0007304,4.1779929,2.4e-06,4.144,0.035,13.705617,0.483987,12544.0,445.669,15.3075,0.746125,663.252,1413.0,305.0,159.507,1.2005,5620.0,,4.18582,,1.35,0.06,-0.193,0.014,1.05,0.130177,"9,35,46,62",2019-05-06,2023-04-12,2023-04-25 12:12:35,WASP-127 b,675,1,False,False,True -219187649,676.01,,3,5,5,3,4,4,4,32.3,70.0,110.87,1,0,9,PC,PC,13.4629,0.007,,1,spoc,UNKNOWN,11:24:49.43,-18:37:02.2,-20.877,0.049,9.135,0.028,2458544.343207,0.001876,2.150451,0.000289,1.573366,0.122278,9.048811,0.62776,8299.629504,578.0216,10.472779,10.489842,759.992848721814,1339.12810836643,14.74846,758.199,16.9815,5430.0,185.0,4.41381,2.00406,1.00073,1.00073,,,0.96,,9,2019-05-07,2019-05-07,2022-12-14 12:09:24,,676,1,False,False,True -280206394,677.01,,3,5,5,3,4,4,4,63.3,250.0,112.5,7,3,3,CP,CP,9.271401,0.006,,1,qlp-s63-ffi,SPOC/QLP,09:36:28.65,-50:27:47.14,-24.817,0.051,42.417,0.05,2460030.705344,0.0002656,11.2365977,5.2e-06,2.292,0.071,10.269536,0.168996,9414.0,155.639,13.0203,0.601669,37.6345,690.0,198.0,141.812,0.6195,6446.0,198.0,4.37882,0.315236,1.29,0.06,,,1.18,0.165057,"9,10,35,36,62,63",2019-05-06,2023-05-11,2023-06-16 12:14:51,TOI-677 b / TOI-677.01,677,1,False,False,True -294395926,678.01,,1,4,1,2,3,4,4,2.3,27.5,10.47,1,3,5,PC,PC,10.9162,0.006,,1,spoc,UNKNOWN,07:17:19.38,-55:35:52.54,-31.454,0.044,71.617,0.06,2459297.450326,0.004053,11.3298682579611,5.036406e-05,4.24107862987163,0.30161136,0.929912,0.050218,856.113768773249,46.25164,3.2180275357584,0.5738858,100.705665889329,807.947657137425,14.629203,205.847,1.1015,5624.0,187.0,4.39124,0.357916,1.057000041008,0.0536432,,,0.99,0.124922,"3,6,7,8,9,13,30,33,34,35,36",2019-05-06,2021-11-10,2022-12-14 12:09:24,crowded field; epoch from qlp-s36-tois; all other parameters from spoc-s01-s36 multisector,678,1,False,False,True -308050066,679.01,,5,5,5,5,4,5,5,51.2,88.5,317.0,0,1,6,PC,APC,9.99028,0.006,,1,qlp-s62-ffi,QLP,10:21:44.64,-17:13:27.71,-4.257,0.081,6.445,0.07,2460004.893282,0.0004537,11.1755425,5.7e-06,5.482,0.155,8.581828,0.084588,7873.0,77.9054,17.5706,0.834302,294.91,1154.0,121.0,320.671,4.835,6655.0,83.0,3.9,0.16,1.91,0.09,-0.27,0.12,1.402,0.233681,"9,35,62",2019-05-06,2023-04-12,2023-04-25 12:12:35,TFOP APC/SB1,679,1,False,False,True -335499997,680.01,,4,5,5,4,4,4,4,40.6,148.3,21.23,9,5,11,PC,APC,8.98207,0.006,,1,spoc,QLP,11:56:39.26,-12:22:39.07,-57.328,0.101,-6.649,0.049,2459281.007126,0.00035724352,0.433569047470839,4.5587435e-06,0.977822749298817,0.09263339,0.805853,0.028749,741.943079089652,26.478586,4.87602129572987,1.5310265,26682.4947351151,3259.69043161762,30.875286,163.41,1.5935,5967.0,192.0,3.9495,0.351821,1.76279997825623,0.0837786,,,1.102,0.148313,"9,36",2019-05-06,2021-10-14,2022-12-14 12:09:24,v-shaped; Retired as APC/BEB/V0,680,1,False,False,True -410450228,681.01,,3,4,4,3,3,4,4,35.2,78.0,317.0,7,3,1,PC,PC,10.6845,0.006,,1,spoc-s01-s39-b0A-PC,SPOC/QLP,07:51:34.79,-60:24:44.6,-4.18,0.049,11.242,0.061,2460045.433204,0.001270033,15.7784931341825,2.4735744e-05,3.38574056241309,0.057214625,7.414375,0.145735,6805.62755796185,134.21829,18.2872401266448,2.2080905,342.245945890863,1096.99419056812,80.43115,421.349,4.588,7447.0,41.0,3.79,0.17,1.68980002403259,0.060696,-0.122325,0.0513331,1.65,0.261066,"8,9,27,31,34,35,36,37,61,62,63,64",2019-05-06,2023-07-12,2023-07-12 00:00:00,Likely EB; likely too large to be a planet at this irradiation,681,1,False,False,True -429304876,682.01,,4,4,4,4,4,4,4,10.2,86.0,13.63,9,41,6,CP,CP,9.2231,0.006,,1,qlp-s63-ffi,SPOC/QLP,11:11:32.5,-22:04:22.01,-91.427,0.055,-53.36,0.051,2460037.259934,0.0016046,6.8392388,1.27e-05,4.176,0.77,1.317797,0.045834,1213.0,42.2136,3.74186,0.251835,234.46,1090.0,35.0,83.1548,0.30135,5085.0,76.0,3.92,0.12,1.08,0.07,0.27,0.1,0.85,0.100848,"9,36,63",2019-05-06,2023-05-10,2023-06-16 12:14:51,statistically validated by Giacalone et al 2020,682,1,False,False,True -437248515,683.01,,5,5,5,5,5,5,5,82.6,110.5,317.0,0,0,1,KP,KP,11.4553,0.008,,1,qlp,UNKNOWN,11:17:45.33,-19:03:17.2,-28.708,0.081,0.99,0.054,2459303.595258,0.0003068,3.4058883,2e-06,2.364,0.126,18.16345,0.00241,16590.0,2.22011,16.8846,0.746487,485.219,1307.0,134.0,383.829,6.334,6302.0,,4.30907,,1.27,0.05,-0.08,0.1,1.2,0.166911,"9,36",2019-05-07,2021-11-10,2022-12-14 12:09:24,WASP-31 b,683,1,False,False,True -462162948,684.01,,1,4,1,3,3,4,4,6.7,47.5,57.68,5,8,2,PC,PC,9.8532,0.147,,1,qlp-s63-ffi,SPOC/QLP,10:01:44.07,-59:51:00.1,-8.933,0.243,3.14,0.229,2460015.416494,0.0025447,19.8507621,5.36e-05,2.249,0.71,1.919105,0.127327,1766.0,117.266,8.778562,6.315287,48.5274863869263,673.157515217857,18.0,2228.79,928.525,9488.0,242.0,4.07548,1.24613,2.35947,1.45549,,,,,"9,10,36,37,63",2019-05-06,2023-05-05,2023-05-05 00:00:00,no stellar radius; Gaia DR2 Teff ~9500 K; slight depth aperture correlation,684,1,False,False,True -281731203,685.01,,5,5,5,5,5,5,5,22.8,81.5,75.59,0,2,8,KP,KP,9.9623,0.007,,1,qlp-s46-tois,UNKNOWN,10:52:07.75,00:29:35.4,-23.664,0.075,-44.171,0.068,2459570.425772,0.0008416,11.6334541,6.2e-06,5.081,0.188,3.784952,0.000218,3480.0,0.200411,10.264,0.549285,126.951,935.0,100.0,213.283,1.958,5287.7,128.3,3.88,0.45,1.73,0.09,,,0.96,0.119201,"9,35,45,46",2019-05-07,2022-03-11,2022-12-14 12:09:24,K2-261 b,685,1,False,False,True -339857675,686.01,,3,4,3,3,3,4,4,4.0,33.7,10.04,0,1,1,PC,PC,9.9362,0.006,,1,spoc,UNKNOWN,07:26:24.26,-54:27:07.44,-3.067,0.04,25.498,0.045,2458492.219912,0.0013282662,3.51377669195457,1.5685058e-05,1.68848335866764,0.28678173,0.35806,0.032992,329.730991366451,30.386244,3.1403258128698,0.9420801,1686.82650234756,1634.50914020404,10.798298,255.337,1.3065,6279.8,127.2,4.26,0.36,1.59007000923157,0.0682663,,,1.37,0.223169,"7,8,9,34,35,36",2019-04-30,2021-07-28,2022-12-14 12:09:24,,686,1,False,False,True -74534430,687.01,,1,4,1,1,3,4,4,0.6,42.3,5.54,9,6,3,PC,PC,9.8445,0.006,,1,spoc-s01-s36-b0A-PC,QLP,09:10:41.48,-45:05:55.84,241.16,0.054,-308.694,0.062,2459977.554802,0.0064164,36.299512914018,0.00018691302,4.43339226285823,0.36538026,1.436562,0.105343,1322.24727455405,97.02001,2.21150069063929,0.7431631,3.16978196008611,340.311869583281,13.075341,42.4467,0.05995,4253.9,63.6,4.57,0.23,0.617519021034241,0.0562111,,,0.66,0.0842374,"8,9,35,36,62,63",2019-04-30,2023-05-05,2023-05-05 00:00:00,,687,1,False,False,True -339636032,688.01,,5,5,5,5,5,5,5,5.0,42.3,11.88,1,2,3,EB,FP,8.5885,0.006,,1,qlp-s61-ffi,QLP,07:20:46.63,-55:22:46.31,-40.087,0.044,41.156,0.038,2459986.414867,0.0033922,6.8787507,2.23e-05,2.599,0.548,0.389849,0.024619,359.0,22.6747,3.45801,0.216133,266.78,1125.0,24.0,176.054,0.717,6636.0,132.3,3.99,0.09,1.98,0.09,,,1.39,0.234376,"3,6,7,8,9,13,30,33,34,35,36,61",2019-04-30,2023-03-08,2023-03-24 12:12:10,TFOP FP/NEB,688,1,False,False,True -445822015,689.01,,5,5,5,5,5,5,5,85.1,256.4,47.58,4,0,1,PC,FP,10.7014,0.006,,1,qlp,QLP,09:48:01.34,-48:19:14.7,-18.317,0.046,27.152,0.044,2458545.05695,0.00336,1.66402,0.00044,3.397,0.124,8.681911,0.522073,7964.45,480.731,7.65443,1.88798,8754.73,2694.0,18.0,108.513,0.329,4841.3,52.9,4.71,0.28,0.78,0.02,,,0.79,0.0900772,9,2019-05-07,2019-05-07,2022-12-14 12:09:24,,689,1,False,False,True -101497191,690.01,,5,5,5,5,5,5,5,74.4,596.7,317.0,0,0,2,PC,FP,10.298,0.006,,1,qlp,QLP,09:56:54.19,-33:47:57.83,-16.532,1.444,-19.248,1.526,2458547.35119,0.0022,3.64376,0.00067,3.38,0.344,3.951564,0.020944,3632.91,19.2898,,,2107.88,1887.0,29.0,3500.23,1245.96,5463.2,49.4,4.39,2.0,,,,,,,9,2019-05-07,2019-05-07,2022-12-14 12:09:24,need SG1 to check 101497184; assuming R ~ 1.0 R_solar (TIC) transiting object is about 5 Rearth,690,1,False,False,True -156991337,691.01,,5,5,5,5,5,5,5,9.8,66.1,20.32,3,1,1,PC,FP,10.234,0.006,,1,spoc,UNKNOWN,06:39:48.91,-42:02:42.71,-11.214,0.046,18.134,0.045,2458474.395282,0.0028329145,6.90558618719962,5.2980315e-05,3.20735054527145,0.26897958,1.201305,0.208346,1105.83111275706,191.87572,4.75273403126373,1.4784077,232.451447478424,995.870375116707,10.477873,169.117,0.6915,5846.0,131.4,4.4,0.08,1.07906997203827,0.053588,,,1.06,0.137834,"6,7,33",2019-05-02,2021-09-28,2022-12-14 12:09:24,,691,1,False,False,True -320417762,692.01,,5,5,5,5,5,5,5,4.7,46.0,12.26,1,1,12,V,FA,9.0188,0.007,,1,qlp,QLP,07:52:01.01,10:14:57.44,-5.013,0.137,-4.75,0.073,2458491.74051,0.00966,1.03604,0.00068,1.855,0.435,0.271468,0.001496,250.0,1.37812,3.52761,0.390778,21307.5,3365.0,11.0,481.966,19.0405,9622.0,136.9,3.95,0.07,2.74,0.13,,,2.45,0.317648,7,2019-05-17,2020-05-20,2022-12-14 12:09:24,low S/N transit; follow-up determines signal likely due to pulsations at half period,692,1,False,False,True -458589703,693.01,,5,5,5,5,5,5,5,,,317.0,0,4,5,PC,FA,11.2248,0.006,,1,qlp,QLP,08:17:05.98,08:14:55.75,-79.27,0.071,59.066,0.047,2458506.49374,0.0,0.0,0.0,4.029,0.127,10.517272,1.110831,9640.0,1022.59,17.7255,2.94079,,,28.0,114.765,0.543,4654.2,138.8,4.59,0.1,0.72,0.06,-0.249859,0.0175704,0.74,0.089004,7,2019-05-02,2020-05-20,2022-12-14 12:09:24,Column effect introduced during calibration; not a real transit,693,1,False,True,True -55383975,694.01,,5,5,5,5,5,5,5,8.7,83.4,116.87,0,1,1,PC,FP,11.2595,0.006,,1,spoc,UNKNOWN,05:09:32.06,-64:01:33.9,6.468,0.044,25.987,0.054,2458366.770735,0.001654,48.05216,0.001034,4.453456,0.068306,16.23514,0.186393,14841.874013,171.6595,12.403848,1.909471,79.8792690527978,762.47967267723,85.15859,223.882,1.248,5354.96,44.8088,4.45894,0.121106,0.971483,0.149039,0.425802,0.0475908,0.93,0.118852,"1,4,5,6",2019-04-30,2019-04-30,2022-12-14 12:09:24,likely gas giant,694,1,False,False,True -55559618,695.01,,1,4,1,5,3,5,5,0.7,20.3,4.93,2,2,3,PC,PC,10.749,0.006,,1,qlp-s39-tois,QLP,04:52:33.18,-64:55:43.93,-21.123,0.049,106.744,0.052,2459372.478468,0.0037071,21.3765763,0.0001282,4.15,0.634,0.62991,0.000581,580.0,0.534886,2.06275,0.125011,28.8585,645.0,18.0,144.045,0.5405,5591.0,187.0,4.38111,2.00397,0.81,0.04,,,0.96,0.118161,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2019-04-30,2023-01-24,2023-01-26 12:09:41,Was previously designated as EB/AFA; reinstated as PC,695,1,False,False,True -77156829,696.01,,1,4,4,1,4,4,4,8.3,25.3,0.88,45,2,3,PC,CP,10.4276,0.007,,1,spoc,UNKNOWN,04:32:42.96,-39:47:27.15,239.41,0.041,-967.772,0.051,2458411.473627,0.00040476615,0.860240578952471,1.0231897e-05,0.512434461523044,0.1604382,0.781507,0.070337,719.535770786458,64.78025,0.971879488175763,0.56376266,112.397139084467,830.440581380087,13.214655,19.8782,0.0094,3450.0,111.0,4.89044,0.492117,0.338189989328384,0.0104196,,,0.320556,0.0204311,"4,5,31,32",2019-05-17,2021-07-15,2022-12-14 12:09:24,L1 candidate; possible multi,696,1,True,False,True -77156829,696.02,,1,4,4,1,4,4,4,2.6,14.9,1.13,45,2,3,PC,CP,10.4276,0.007,,2,spoc,SPOC,04:32:42.96,-39:47:27.15,239.41,0.041,-967.772,0.051,2458411.067517,0.00086533575,3.69426040883462,1.0844465e-05,1.12785211360107,0.27371076,0.904602,0.070961,832.822592104649,65.35565,1.04284069552705,0.4390688,16.1019503402701,510.904079282393,13.202267,19.8782,0.0094,3450.0,111.0,4.89044,0.492117,0.338189989328384,0.0104196,,,0.320556,0.0204311,"4,5,31,32",2019-05-17,2021-07-28,2022-12-14 12:09:24,potential multi; real period is 3.69 days confirmed with SPOC Y1+Y3 multisector,696,2,True,False,True -77156829,696.03,,1,4,4,1,4,4,4,1.3,15.2,0.56,45,2,3,PC,CP,10.4276,0.007,,3,spoc,SPOC,04:32:42.96,-39:47:27.15,239.41,0.041,-967.772,0.051,2458414.562933,0.0013630722,4.96520685527644,1.8849563e-05,0.936152358432916,0.77546746,0.687552,0.119726,633.058084917184,110.265656,0.856692464166333,2.6625428,10.8558881982889,462.952133709335,9.041866,19.8782,0.0094,3450.0,111.0,4.89044,0.492117,0.338189989328384,0.0104196,,,0.320556,0.0204311,"4,5,31,32",2021-07-08,2021-07-08,2023-07-05 12:02:57,low SNR; near 3:1 resonance with TOI 696.02,696,3,True,False,True -77253676,697.01,,1,5,5,1,4,4,4,4.3,55.1,7.39,1,4,10,PC,APC,9.3553,0.006,,1,spoc,UNKNOWN,04:38:49.01,-36:40:52.77,28.168,0.037,25.051,0.047,2458418.925917,0.0021352977,8.60786030434519,3.6210367e-05,3.67986968651137,0.20879152,0.602818,0.031475,555.062176581684,28.989202,2.62061411836122,0.21008046,117.549532359649,839.798270681824,13.272943,93.7714,0.2132,5447.0,185.0,4.39971,0.269972,0.96814900636673,0.0515628,,,0.97,0.12804,"4,5,31,32",2019-05-17,2021-07-06,2022-12-14 12:09:24,potential L1 planet,697,1,False,False,True -141527579,698.01,,1,4,1,1,3,4,4,0.7,29.6,5.08,6,0,1,PC,PC,12.1293,0.007,,1,spoc,UNKNOWN,05:50:57.38,-76:37:10.6,158.696,0.048,157.834,0.055,2459385.015742,0.0022184,15.0867026780869,3.100928e-05,2.10820184410743,0.27831092,2.101618,0.099929,1933.78982698641,92.0341,2.10234480180571,0.5821111,3.57058552199631,350.594105024992,21.028273,63.3731,0.13315,3570.0,64.0,4.83196,0.367048,0.471841990947723,0.014121,,,0.469549,0.0203577,"1,2,3,4,5,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-04-30,2021-11-09,2022-12-14 12:09:24,epoch from qlp-s39-tois; all other parameters from spoc-s01-s39 multisector,698,1,False,False,True -149302744,699.01,,1,5,5,1,3,4,4,1.3,19.5,6.67,2,1,1,PC,PC,9.8106,0.006,,1,qlp-s63-ffi,SPOC,05:33:31.74,-62:06:32.48,-8.356,0.054,23.462,0.059,2460019.89519,0.0070108,14.8011429,9.77e-05,3.296,0.964,0.349663,0.026194,322.0,24.1251,2.4692,0.160464,66.1434,794.0,14.0,193.29,0.894,6138.6,54.0,4.07,0.11,1.42,0.06,-0.39,0.1,1.16,0.151885,"1,2,3,4,5,6,7,9,10,11,12,13,27,29,30,31,32,33,34,35,36,37,39,61,62,63",2019-04-30,2023-05-11,2023-06-16 12:14:51,potential L1 planet; possible multi; TOI 699.01 ,699,1,True,False,True -149302744,699.02,,1,4,1,1,3,4,4,0.6,13.8,6.05,2,1,1,PC,PC,9.8106,0.006,,2,qlp-s62-ffi,SPOC,05:33:31.74,-62:06:32.48,-8.356,0.054,23.462,0.059,2459973.275901,0.0106112,33.633544,0.0003471,5.153,0.593,0.420261,0.024823,387.0,22.8627,2.33353,0.156805,25.1984,624.0,15.0,193.29,0.894,6138.6,54.0,4.07,0.11,1.42,0.06,-0.39,0.1,1.16,0.151885,"1,2,3,4,5,6,7,9,10,11,12,13,27,29,30,31,32,33,34,35,36,37,39,61,62",2019-04-30,2023-04-12,2023-04-25 12:12:35,potential L1 planet; possible multi; TOI 699.02,699,2,True,False,True -149302744,699.03,,3,4,3,3,3,4,4,0.0,7.1,9.16,2,1,1,PC,PC,9.8106,0.006,,3,spoc-s01-s39-b0A-PC,SPOC,05:33:31.74,-62:06:32.48,-8.356,0.054,23.462,0.059,2458374.209051,0.0074021243,672.636623636504,0.010677898,7.48837686102179,1.177137,0.459501,0.056008,423.126091776163,51.583866,2.97498262299306,1.8601334,1.02630456308125,256.707652066893,7.345261,193.29,0.894,6138.6,54.0,4.07,0.11,1.41864001750946,0.0618693,-0.39,0.1,1.16,0.151885,"1,2,3,4,5,6,7,9,10,11,12,13,27,29,30,31,32,33,34,35,36,37,39",2021-07-19,2022-03-22,2022-12-14 12:09:24,could be variability; low SNR; potential multi,699,3,True,False,True -150428135,700.01,,2,5,5,2,4,4,4,1.6,81.3,7.3,16,3,3,CP,CP,10.9102,0.007,,1,spoc-s01-s39-b0A-CP,SPOC,06:28:22.97,-65:34:43.01,-102.75,0.051,161.805,0.06,2459303.157062,0.001218,16.0511406511081,1.8808636e-05,1.38239267611543,0.058528274,3.084041,0.094648,2836.47604099978,87.17012,2.6015336590466,0.107455075,2.72755528279668,327.765425592542,31.117186,31.1265,0.0206,3482.0,,4.438,,0.419456988573074,0.0125728,,,0.413261,0.0203393,"1,3,4,5,6,7,8,9,10,11,13,27,28,30,31,33,34,35,36,37,38",2019-04-30,2022-03-30,2023-01-11 00:00:00,TOI-700 c / TOI-700.01 ; epoch from qlp-s38-tois; all other parameters from spoc-s01-s39,700,1,True,False,True -150428135,700.02,,2,5,5,2,4,4,4,0.1,3.6,1.58,16,3,3,CP,CP,10.9102,0.007,,2,spoc-s01-s39-b0A-CP,SPOC,06:28:22.97,-65:34:43.01,-102.75,0.051,161.805,0.06,2458330.475076,0.0032440573,37.424336579566,0.00021029095,3.2838400336923,0.7001446,0.798567,0.070485,735.236818582937,64.916695,1.14468077902127,0.87371707,0.88221806887317,247.180232650137,11.919014,31.1265,0.0206,3482.0,,4.438,,0.419456988573074,0.0125728,,,0.413261,0.0203393,"1,3,4,5,6,7,8,9,10,11,13,27,28,30,31,33,34,35,36,37,38",2019-04-30,2022-03-30,2023-01-11 00:00:00,TOI-700 d / TOI-700.02,700,2,True,False,True -150428135,700.03,,2,5,5,2,4,4,4,0.5,6.2,0.87,16,3,3,CP,CP,10.9102,0.007,,3,spoc-s01-s39-b0A-CP,UNKNOWN,06:28:22.97,-65:34:43.01,-102.75,0.051,161.805,0.06,2459349.036881,0.0041717,9.97731345288497,3.2273856e-05,2.12422668954357,0.7141817,0.577367,0.055266,531.633487995544,50.900486,0.971396376228365,1.420673,5.14158011064856,384.055422478478,12.819046,31.1265,0.0206,3482.0,,4.438,,0.419456988573074,0.0125728,,,0.413261,0.0203393,"1,3,4,5,6,7,8,9,10,11,13,27,28,30,31,33,34,35,36,37,38",2019-07-23,2022-03-30,2023-01-11 00:00:00,TOI-700 b / TOI-700.03; epoch from qlp-s38-tois; other parameters from spoc-s01-s39,700,3,True,False,True -150428135,700.04,,2,5,5,2,4,4,4,0.1,4.5,0.82,16,3,3,PC,CP,10.9102,0.007,,4,spoc,SPOC,06:28:22.97,-65:34:43.01,-102.75,0.051,161.805,0.06,2458352.991221,0.0055670193,27.8093714952341,0.00026340265,3.54206147745123,0.6048655,0.491678,0.062993,452.749905838798,58.017113,0.953503065045453,0.37684137,1.31077011345569,272.898646823411,7.1777353,31.1265,0.0206,3482.0,,4.438,,0.419456988573074,0.0125728,,,0.413261,0.0203393,"1,3,4,5,6,7,8,9,10,11,13,27,28,30,31,33,34,35,36,37,38",2021-11-19,2021-11-18,2023-01-11 12:04:19,low SNR; new planet candidate in TOI 700 3 planet system,700,4,True,False,True -219239945,701.01,,5,5,5,5,5,5,5,2.9,35.8,13.88,0,1,1,PC,FP,10.966,0.006,,1,spoc,SPOC,04:18:05.2,-53:48:04.57,42.013,0.034,36.099,0.04,2458389.366552,0.005664,13.697384,0.002108,4.783848,0.424539,1.153606,0.092672,1061.94658,85.35073,4.211945,0.685604,96.8938034201007,800.191162319039,12.751473,217.621,0.8895,5837.0,190.0,4.37713,0.321497,1.10089,0.16444,,,1.03,0.130284,"3,4,5",2019-05-17,2019-05-17,2022-12-14 12:09:24,transits in close proximity to some but not all momentum dumps,701,1,False,False,True -237914496,702.01,,1,4,1,1,4,4,4,3.3,36.7,4.95,4,1,4,PC,PC,11.8371,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,03:44:41.99,-65:11:54.02,-24.797,0.039,178.787,0.048,2458326.814129,0.001164696,3.56816145631998,1.1142489e-05,1.45433444019436,0.15677194,1.006564,0.076155,926.650311869579,70.138855,2.07013588000951,0.27350265,49.3632451281323,676.037325826325,12.50622,84.4039,0.17925,4015.0,170.0,4.61505,0.235853,0.577735006809235,0.0594221,,,0.62,0.0829191,"1,2,3,4,7,11,27,29,30,31,34,37",2019-04-30,2022-03-22,2022-12-14 12:09:24,,702,1,False,False,True -237928815,703.01,,1,4,1,1,4,4,4,2.2,33.5,5.52,3,4,6,PC,PC,10.2036,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,03:51:59.96,-59:52:56.79,28.775,0.055,32.674,0.058,2459345.642084,0.0033624,8.67294678400904,2.49878e-05,3.05092974149864,0.17660959,0.857668,0.047416,789.629047265922,43.670593,2.28271,0.119422,114.265357873008,833.870088375403,15.62356,120.984,0.5465,5384.0,185.0,4.54758,0.368997,0.91,0.04,,,,,"2,4,8,29,30,31,38",2019-04-30,2022-03-21,2022-12-14 12:09:24,potential L1 candidate in multi-planet system; Gaia Rs=0.91+/-0.04,703,1,True,False,True -237928815,703.02,,1,4,1,1,4,4,4,1.3,29.5,7.1,3,4,6,PC,PC,10.2036,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,03:51:59.96,-59:52:56.79,28.775,0.055,32.674,0.058,2458370.301484,0.0026894035,22.5683342411698,0.00010771941,4.21715400902018,0.2998695,0.966766,0.075562,890.028031690501,69.59249,2.479501,2.229857,31.9254837113132,606.253307665985,12.018536,120.984,0.5465,5384.0,185.0,4.54758,0.368997,0.852304,0.147665,,,,,"2,4,8,29,30,31,38",2019-04-30,2022-03-22,2022-12-14 12:09:24,actual period is 22.568 d; possible multi,703,2,True,False,True -260004324,704.01,TIC 260004324.01,1,5,5,1,4,4,4,2.1,8.4,1.33,6,2,3,CP,CP,10.1428,0.007,,1,spoc-s01-s39-b0A-CP,UNKNOWN,06:04:21.6,-55:18:41.54,681.726,0.05,342.132,0.059,2459319.128775,0.002441,3.81429355299428,6.3672887e-06,1.40379832068108,0.2800754,0.494792,0.02772,455.616818914726,25.530443,1.09124111954418,0.9302629,26.3712560083759,577.966216045025,23.19437,29.8424,0.0239,3625.0,69.0,4.7833,0.060185,0.50406801700592,0.0149315,,,0.502062,0.0202567,"1,2,3,4,5,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-04-30,2022-03-30,2022-12-14 12:09:24,LHS 1815 b,704,1,False,False,True -391904697,705.01,,1,4,1,2,3,4,4,0.4,16.8,9.95,5,1,3,PC,PC,11.4994,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,07:05:54.52,-72:33:31.55,-12.103,0.04,22.769,0.033,2458352.137139,0.0031605584,47.0193802980247,0.00025076204,5.70229836873676,0.3641389,1.382008,0.07409,1272.06664238958,68.23731,3.12253171159462,0.67981344,8.64245544255502,437.299556461495,16.991302,191.058,0.6585,5249.18,43.8635,4.68369,0.119192,0.877876996994019,0.0440101,0.257849,0.04705,0.9,0.106305,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,39",2019-04-30,2022-03-21,2022-12-14 12:09:24,potential L1 planet,705,1,False,False,True -219345200,706.01,,1,4,1,3,3,4,4,1.2,57.7,317.0,1,0,3,PC,PC,8.3643,0.006,,1,spoc,UNKNOWN,04:59:00.64,-49:44:10.24,64.586,0.119,-27.388,0.12,2458434.911525,0.00091128965,719.038132676296,0.0012107957,5.42440956718737,0.08054838,5.280169,0.067528,4851.40923374747,62.193977,16.6333556993433,3.9165146,0.853831458788547,245.167437362561,98.32419,94.697,0.53915,5709.6,57.0,3.53,0.08,1.49810004234314,0.0624095,-0.43,0.09,1.02,0.128373,"4,5,6,31,32",2019-04-30,2021-07-15,2022-12-14 12:09:24,Likely too large to be a planet at allowed insolations.,706,1,False,False,True -167342439,707.01,,1,4,1,1,3,4,4,0.4,17.1,6.33,1,2,1,PC,PC,10.0906,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,06:34:55.1,-67:32:14.19,-14.99,0.048,-11.318,0.052,2458345.526667,0.0041263294,52.799167320212,0.00032337688,6.0159162417671,0.5607801,0.596318,0.037889,549.078785929731,34.896057,2.39278161484891,1.0761162,10.9718741526616,464.183772688852,14.491064,130.959,0.4145,5409.22,41.7711,4.46229,0.115388,1.02101004123688,0.0503342,0.327557,0.0462431,0.94,0.11495,"1,2,3,4,5,6,7,8,9,11,12,13,28,29,30,31,32,33,34,35,36,38,39",2019-04-30,2022-03-22,2022-12-14 12:09:24,SPOC multisector detection.,707,1,False,False,True -391821647,708.01,,5,5,5,5,5,5,5,2.5,29.2,4.2,0,0,1,PC,FP,10.8623,0.006,,1,spoc,SPOC,05:31:03.57,-70:21:25.84,6.515,0.046,23.14,0.053,2458325.573663,0.004267,1.996071,0.000106,5.910879,0.409116,0.383079,0.039293,352.76672,36.18996,1.947951,0.430095,1372.56438899163,1552.39748798151,9.086427,214.756,1.1995,6636.0,200.0,4.60452,0.386891,0.975121,0.154384,,,1.52,0.269856,"1,2,3,4,5,6",2019-04-30,2019-04-30,2022-12-14 12:09:24,large scatter in centroid from sector to sector; very crowded field; possible secondary,708,1,False,False,True -396720998,709.01,,3,5,5,3,3,4,4,1.2,132.2,13.14,11,0,2,PC,APC,13.987,0.0,,1,spoc,SPOC,04:22:37.29,-54:08:49.84,8.37,0.114,-0.758,0.143,2458392.822001,0.0010114873,32.3766006435432,7.131529e-05,3.88275209972067,0.07480632,58.643485,1.309763,52579.8740908455,1205.6091,3.67715151628052,2.7770011,4854.68782816397,2128.92360192584,35.44597,1350.32,112.465,50000.0,,5.80276,,0.146999999880791,0.111,,,0.5,0.3,"3,4,5,30,31,32",2019-04-30,2021-07-01,2022-12-14 12:09:24,TFOP work in progress.,709,1,True,False,True -396720998,709.02,,2,4,2,2,3,4,4,0.0,1.8,2.36,11,0,2,PC,PC,13.987,0.0,,2,spoc,SPOC,04:22:37.29,-54:08:49.84,8.37,0.114,-0.758,0.143,2458399.221135,0.0060723363,777.051674199127,0.009044809,4.3877266333807,0.6006862,7.858622,1.125267,7211.92648864213,1035.8727,1.33961015255259,1.017282,70.1244991633937,738.05239299437,7.504179,1350.32,112.465,50000.0,,5.80276,,0.146999999880791,0.111,,,0.5,0.3,"3,4,5,30,31,32",2021-07-08,2021-07-08,2022-12-14 12:09:24,1.3 Re candidate around a white dwarf; potential multi-planet system,709,2,True,False,True -309402106,710.01,,5,5,5,5,5,5,5,9.7,98.8,317.0,6,0,1,EB,FP,8.488401,0.006,,1,spoc-s01s13-b0A,SPOC,08:18:59.69,-65:16:41.12,-13.07,0.064,12.778,0.05,2458343.942146,0.000563,216.24584,4.2519358e-05,1.07037289582273,0.039187644,5.491616,0.15516,5045.19506811029,142.8977,18.5681403967506,12.38025,312.435183526917,1072.28377125754,33.773872,157.721,0.7265,7053.0,206.0,4.22463,0.342048,1.59688,0.199247,,,1.71,0.291279,"1,5,8,9,10,11",2019-05-20,2021-12-07,2022-12-14 12:09:24,v-shaped; period could be shorter; TFOP FP,710,1,False,False,True -38510224,711.01,,1,4,1,2,3,4,4,0.7,18.4,5.38,6,2,3,PC,PC,11.7481,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,04:10:03.87,-61:56:33.6,5.702,0.04,-47.955,0.053,2458329.912944,0.0026475838,18.3841826816634,8.029298e-05,3.60243509885525,0.40769303,1.152437,0.082527,1060.87101156961,76.00732,2.17640292055712,1.220033,10.4112225198097,458.136803932655,13.509027,118.28,0.3065,4356.0,173.0,4.60471,0.2,0.68140697479248,0.078794,,,0.68,0.0818538,"1,2,3,4,5,7,8,11,12,28,29,30,31,32,34,35,38,39",2019-05-24,2022-03-22,2022-12-14 12:09:24,possible multi; potential L1 candidate,711,1,True,False,True -38510224,711.02,,2,4,2,2,3,4,4,0.3,17.2,6.61,6,2,3,PC,PC,11.7481,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,04:10:03.87,-61:56:33.6,5.702,0.04,-47.955,0.053,2458342.544345,0.0038740404,35.9427986144034,0.00022127171,2.61940929576063,0.44957748,1.254311,0.131811,1154.59595547572,121.39538,2.45361509651279,0.98512965,4.25871239684976,366.38638561321,9.405911,118.28,0.3065,4356.0,173.0,4.60471,0.2,0.68140697479248,0.078794,,,0.68,0.0818538,"1,2,3,4,5,7,8,11,12,28,29,30,31,32,34,35,38,39",2021-07-08,2022-03-22,2022-12-14 12:09:24,low SNR; possible multi,711,2,True,False,True -150151262,712.01,,1,5,5,1,4,4,4,2.7,47.2,5.09,18,3,3,PC,CP,9.9059,0.006,,1,qlp-s39-tois,UNKNOWN,06:11:44.67,-65:49:33.02,-2.929,0.047,31.003,0.045,2459376.809035,0.0014149,9.5313851,3e-05,1.564,0.252,0.858071,0.000622,790.0,0.572701,2.10503,0.228425,10.0731,496.0,24.0,58.6212,0.0796,4504.0,168.0,4.58833,0.2,0.72,0.08,,,0.71,0.0851576,"3,4,5,6,7,9,10,11,13,27,29,30,31,32,33,34,36,37",2019-05-20,2022-03-21,2023-03-03 12:02:46,inner candidate in potential multi; TFOP work in progress,712,1,True,False,True -150151262,712.02,,1,4,1,2,4,4,4,0.5,32.1,6.41,18,3,3,PC,CP,9.9059,0.006,,2,qlp-s39-tois,UNKNOWN,06:11:44.67,-65:49:33.02,-2.929,0.047,31.003,0.045,2459256.594776,0.0028602,51.6992365,0.0003246,4.422,0.304,1.129753,0.00077,1040.0,0.708832,2.40997,0.261012,2.15974,337.0,19.0,58.6212,0.0796,4504.0,168.0,4.58833,0.2,0.72,0.08,,,0.71,0.0851576,"3,4,5,6,7,9,10,11,13,27,29,30,31,32,33,34,36,37,39",2019-05-24,2022-03-22,2023-04-06 00:00:00,second candidate in potential multi-planet system,712,2,True,False,True -150151262,712.03,,5,5,5,5,5,5,5,0.6,38.8,8.22,18,3,3,IS,FA,9.9059,0.006,,3,spoc,SPOC,06:11:44.67,-65:49:33.02,-2.929,0.047,31.003,0.045,2458417.120619,0.005172,53.746482,0.005896,5.592988,0.414857,1.692398,0.185225,1557.541816,170.5844,3.263156,1.020019,3.35826410041948,345.261745083789,8.504271,58.6212,0.0796,4504.0,168.0,4.58833,0.2,0.842645,0.128211,,,0.71,0.0851576,"3,4,6,7,9",2019-05-24,2021-11-02,2022-12-14 12:09:24,first transit is momentum dump; second is likely instrument noise but could be a single transit; TFOP FA,712,3,True,False,True -150151262,712.04,,1,5,5,1,4,4,4,0.1,18.8,3.96,18,3,3,PC,CP,9.9059,0.006,,4,qlp-s39-tois,SPOC,06:11:44.67,-65:49:33.02,-2.929,0.047,31.003,0.045,2459234.424778,0.0054717,84.8403392,0.0012424,4.923,0.346,0.716822,0.001268,660.0,1.16784,1.81512,0.208461,0.990699,277.0,11.0,58.6212,0.0796,4504.0,168.0,4.58833,0.2,0.72,0.08,,,0.71,0.0851576,"3,4,5,6,7,9,10,11,13,27,29,30,31,32,33,34,36,37,39",2021-07-08,2022-03-21,2023-03-03 12:02:46,long period L1 candidate; low SNR,712,4,True,False,True -167600516,713.01,,1,4,1,2,3,4,4,0.6,31.3,7.0,6,1,3,PC,PC,10.6925,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,06:48:05.13,-65:37:27.32,-19.099,0.045,-124.999,0.038,2458346.706203,0.0036691343,35.9995670780793,0.00018599919,4.38098671713509,0.22533692,1.216803,0.051018,1120.08934333151,46.9878,2.53925843518171,0.2477419,3.77882447535212,355.597688676773,22.43093,69.3653,0.0937,4316.7,69.0,4.60858,0.2,0.651075005531311,0.054108,,,0.67,0.084638,"1,2,3,4,5,6,7,8,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-05-24,2022-03-21,2022-12-14 12:09:24,potential L1 planet; possible multi,713,1,True,False,True -167600516,713.02,,2,4,2,2,3,4,4,2.3,5.2,1.43,6,1,3,PC,PC,10.6925,0.006,,2,spoc-s01-s39-b0A-PC,UNKNOWN,06:48:05.13,-65:37:27.32,-19.099,0.045,-124.999,0.038,2458325.894837,0.00088962726,1.87151389723897,7.920887e-06,1.01619956141695,0.13703573,0.277294,0.02548,255.364732781043,23.467455,1.11348079573232,0.7591418,194.758168528112,952.782276845651,13.707506,69.3653,0.0937,4316.7,69.0,4.60858,0.2,0.651075005531311,0.054108,,,0.67,0.084638,"1,2,3,4,5,6,7,8,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-05-24,2022-03-21,2022-12-14 12:09:24,potential multi,713,2,True,False,True -219195044,714.01,,2,4,4,2,3,4,4,2.0,5.7,2.83,15,0,1,PC,PC,11.5436,0.007,,1,qlp-s38-tois,UNKNOWN,06:09:34.18,-53:49:22.76,92.721,0.055,115.298,0.058,2459355.443079,0.0019142,4.3239398,1.46e-05,1.372,0.193,0.977603,0.001539,900.0,1.41779,1.48051,0.0761585,16.8196,564.0,18.0,53.8473,0.0679,3782.0,,4.438,,0.47,0.01,,,0.470893,0.0203489,"1,2,4,5,6,7,8,11,12,28,31,32,33,34,35,38",2019-05-24,2022-03-22,2022-12-14 12:09:24,potential multi planet system,714,1,True,False,True -219195044,714.02,,2,4,4,2,3,4,4,0.8,29.8,3.04,15,0,1,PC,PC,11.5436,0.007,,2,spoc-s01-s39-b0A-PC,UNKNOWN,06:09:34.18,-53:49:22.76,92.721,0.055,115.298,0.058,2458419.107846,0.001706858,10.17752525533,3.5842717e-05,2.09282094503565,0.3249302,1.035938,0.076421,953.678712016812,70.3837,1.55389392265953,0.41264367,7.59293770339758,423.372074552016,13.673494,53.8473,0.0679,3782.0,,4.438,,0.473141014575958,0.0141473,,,0.470893,0.0203489,"4,5,6,7,8,11,12,28,31,32,33,34,35,38",2019-05-24,2022-03-21,2022-12-14 12:09:24,possible multi,714,2,True,False,True -271971130,715.01,,3,5,5,3,3,4,4,0.1,34.2,3.18,10,0,2,PC,PC,13.5308,0.007,,1,spoc-s01-s39-b0A-PC,SPOC,07:35:24.56,-73:34:38.67,82.634,0.078,9.987,0.098,2458327.551316,0.0017363796,19.2879717386223,5.552132e-05,2.09231852927213,0.25845242,5.004253,0.293641,4598.48162560705,270.41656,1.59466430725686,0.25002378,0.721286413001522,235.042656745976,16.709684,42.4048,0.08555,3075.0,,4.438,,0.229824006557465,0.0068728,,,0.199363,0.0200854,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,29,30,31,32,33,34,35,36,37,39",2019-05-24,2022-03-21,2023-05-11 00:00:00,M dwarf host,715,1,False,False,True -119081096,716.01,,5,5,5,5,5,5,5,17.7,93.2,8.74,2,0,5,PC,FP,12.4268,0.007,,1,qlp,QLP,09:04:57.34,-18:30:09.63,94.649,0.045,-39.417,0.059,2458518.10991,0.00404,0.83707,0.00029,2.497,0.567,2.984988,0.01766,2745.5,16.2657,2.98849,0.323354,2645.93,1998.0,17.0,88.8248,0.3145,3776.0,152.8,4.72,0.33,0.52,0.04,,,0.501502,0.0203183,8,2019-05-24,2019-05-24,2022-12-14 12:09:24,potentially planet on a neighboring star; centroid shift in y; long transit duration; depth increase with larger aperture,716,1,False,False,True -275248683,717.01,,5,5,5,5,5,5,5,13.3,15.3,2.58,1,0,3,EB,FP,11.4407,0.007,,1,qlp-s08-b03b,QLP,09:51:52.93,02:06:59.93,-26.092,0.176,62.064,0.26,2458518.26617,0.00283,0.53079,0.00012,1.238,0.234,1.209173,0.003164,1113.07,2.91444,,,977.343,1557.0,16.0,34.7229,0.0951,3788.4,244.9,4.87,0.38,,,,,0.377486,0.0202404,8,2019-05-24,2021-12-07,2022-12-14 12:09:24,SG1 to check faint neighbor in the south; likely BEB judging from difference images; retired as NEB,717,1,False,False,True -150247134,718.01,,5,5,5,5,5,5,5,3.8,10.6,52.89,0,1,3,V,FA,11.4845,0.006,,1,qlp,QLP,06:16:40.19,-62:38:54.25,-3.58,0.049,34.785,0.057,2459144.828069,0.0415971,12.8650769,0.0009118,3.979,0.913,1.16236,0.004771,1070.0,4.39433,1.90058,1.9097,40.6428,703.0,9.0,726.88,13.106,5031.0,122.0,,,0.81,0.81,,,,,"1,2,3,4,5,6,8,9,10,11,12,13,28,29,30",2019-05-24,2020-12-22,2022-12-14 12:09:24,SG1 to check which host; neighbor in the same pixel 150247131,718,1,False,False,True -184952758,719.01,,5,5,5,5,5,5,5,3.9,49.9,3.95,0,1,3,EB,FP,9.0349,0.006,,1,qlp-s62-ffi,QLP,08:32:34.6,-36:20:48.55,57.83,0.043,-24.55,0.045,2460007.695053,0.0031751,4.109953,1.61e-05,4.641,0.882,0.471312,0.02417,434.0,22.2615,1.81345,0.114574,1091.8,1601.0,22.0,84.7306,0.2111,5653.0,122.3,4.46,0.08,0.97,0.05,,,1.0,0.126454,"8,35,61,62",2019-05-24,2023-03-29,2023-03-31 12:12:24,TFOP FP/NEB,719,1,False,False,True -131419878,720.01,TIC 131419878.01,5,5,5,5,5,5,5,4.6,45.0,6.58,1,0,1,EB,FP,8.8154,0.006,,1,qlp-s08-b03b,QLP,07:52:08.93,-37:47:56.46,-12.175,0.112,8.992,0.11,2458494.08915,0.00651,3.16043,0.00071,1.922,0.489,0.220785,0.00157,203.33,1.44642,2.38866,0.252569,616.95,1388.0,9.0,151.634,1.4935,6482.3,205.2,4.21,0.35,1.52,0.1,,,1.41,0.237257,"7,8,34",2019-05-24,2021-12-07,2022-12-14 12:09:24,neighboring star could be source of signal; needs SG1 to confirm host; TFOP FP; retired as NEB,720,1,False,False,True -38571020,721.01,,1,4,1,2,3,4,4,1.0,15.8,4.91,2,3,3,PC,PC,10.1805,0.006,,1,qlp-s61-ffi,QLP,04:12:47.85,-64:20:52.1,24.215,0.046,-54.199,0.048,2459972.526207,0.0088174,12.2877081,8.45e-05,4.453,0.645,0.335544,0.021921,309.0,20.1902,2.06797,0.132615,131.131,942.0,15.0,206.294,1.0775,6008.62,40.1065,4.21807,0.110743,1.3,0.06,-0.159903,0.0457789,1.11,0.140501,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,37,38,39,61",2019-05-24,2023-04-04,2023-04-07 12:13:06,,721,1,False,False,True -38509907,722.01,,2,4,4,2,3,4,4,0.2,3.7,2.23,6,1,6,PC,PC,11.9755,0.006,,1,spoc-s01-s39-b0A-PC,QLP,04:09:31.1,-62:51:02.36,124.306,1.442,166.091,1.509,2458339.138173,0.0026503534,15.3003112561122,7.966549e-05,3.08335513911076,0.31695694,1.400581,0.07825,1289.15075672621,72.06791,2.3968761093104,0.8987442,17.0816827089285,518.504359503673,15.791439,57.6851,3.6551,4082.0,170.0,4.63162,0.2,0.660762,0.0640396,,,,,"1,2,3,4,5,7,8,9,10,11,12,27,28,29,30,31,32,34,35,37,38,39",2019-05-24,2022-03-22,2022-12-14 12:09:24,potential L1 planet; TIC 38509907 has been joined with TIC 684936227,722,1,False,False,True -177077336,723.01,,1,5,5,1,3,4,4,2.6,6.1,1.42,2,2,1,PC,PC,10.0686,0.006,,1,qlp-s61-ffi,SPOC,06:52:58.4,-70:38:30.07,-56.35,0.054,143.357,0.048,2459985.910927,0.0032119,1.4178666,4.2e-06,1.372,0.27,0.216083,0.017416,199.0,16.0402,1.11766,0.0831249,453.468,1285.0,17.0,80.9812,0.18575,4907.96,59.9497,4.57809,0.140551,0.76,0.05,0.0501746,0.0577727,0.8,0.0892751,"2,3,4,5,6,7,8,9,10,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61",2019-05-08,2023-04-04,2023-04-07 12:13:06,potential L1 planet; variable host,723,1,False,False,True -339961200,724.01,,2,4,2,2,3,4,4,5.9,59.8,5.8,1,2,5,PC,PC,9.7333,0.006,,1,qlp,UNKNOWN,07:30:13.26,-58:32:22.78,-47.598,0.071,51.696,0.064,2459330.595029,0.000787,3.2126472,4.2e-06,0.499,0.078,0.477829,0.001544,440.0,1.42163,2.26678,0.170208,16.2086,558.0,16.0,95.3452,0.25305,5330.0,125.0,4.51,0.08,0.88,0.05,,,0.92,0.115462,"3,4,5,6,7,8,9,10,13,27,30,33,34,36,37",2019-04-24,2021-11-10,2022-12-14 12:09:24,potentially V-shaped in short-cadence data,724,1,False,False,True -410245915,725.01,,5,5,5,5,5,5,5,39.9,127.9,42.21,1,2,1,EB,FP,10.2658,0.006,,1,qlp-s61-ffi,QLP,08:55:51.57,-20:16:29.21,-1.1,2.7,-5.3,2.9,2459986.360794,0.00156,0.9889446,1.7e-06,1.681,0.297,1.063456,1.00142,979.0,921.917,7.2993,,33896.0,,26.0,272.834,,6173.3,152.9,4.22,2.0,1.5,,,,,,"8,35,61",2019-05-24,2023-03-08,2023-03-24 12:12:10,retired as NEB,725,1,False,False,True -174143743,726.01,,5,5,5,5,5,5,5,5.3,48.0,4.27,2,2,1,PC,FP,10.1007,0.006,,1,qlp,QLP,07:35:32,-36:23:13.06,6.948,0.045,39.068,0.052,2458492.31313,0.00572,0.46132,9e-05,1.32,0.28,0.238888,0.001115,220.0,1.02671,1.89253,0.156017,13156.0,2983.0,10.0,206.755,1.309,6629.0,128.8,4.41,0.08,1.21,0.05,,,1.39,0.227374,"7,8",2019-05-24,2020-05-20,2022-12-14 12:09:24,Could be EB; V-shape in SPOC data,726,1,False,False,True -149788158,727.01,,2,4,4,2,4,4,4,3.9,60.3,4.53,2,3,11,PC,PC,11.0002,0.007,,1,qlp,QLP,08:42:56.86,-02:29:54.91,22.577,0.07,-120.15,0.049,2459245.51846,0.0032401,4.7244442,4.31e-05,0.999,0.373,1.60808,0.027908,1480.0,25.7038,1.97562,0.283431,6.29202,441.0,10.0,42.972,0.06285,3653.0,157.0,4.74,0.01,0.5,0.01,,,0.495286,0.0202891,"8,34",2019-05-24,2021-06-11,2022-12-14 12:09:24,SG1 to check if signal is real and if it is on the target or neighbor 149788157; period might be double,727,1,False,False,True -96097215,728.01,,5,5,5,5,5,5,5,24.6,111.5,19.05,6,4,4,PC,FA,10.5656,0.008,,1,qlp,QLP,09:47:34.01,-07:19:51.13,-20.668,0.078,-11.696,0.066,2458518.94089,0.0023,1.60245,0.00025,0.312,0.195,0.966735,0.191546,890.0,176.405,4.69411,1.48288,55.2437,759.0,9.0,172.097,1.3785,5648.0,215.8,,,0.98,0.08,,,1.029,,8,2019-05-24,2020-05-20,2023-04-03 12:03:23,low SNR; need SG1 to confirm transit is real and not noise;,728,1,False,False,True -144138509,729.01,,3,5,5,3,4,4,4,,,17.54,0,4,9,PC,PC,10.5568,0.007,,1,spoc-s01-s46-b0A,SPOC,11:44:08.5,-09:56:55.91,-37.854,0.092,3.923,0.044,2458564.831298,0.003737299,0.0,0.0,2.13465917958328,0.5889592,1.212524,0.179444,1116.15211862598,165.26007,4.35899918450154,1.9036454,8.99323639133979,441.670865076807,7.2554674,235.665,2.6845,6023.2,116.0,4.05,0.2,1.232990026474,0.0548895,-0.57,0.12,1.12,0.152312,"9,36,46",2019-05-15,2022-04-20,2022-12-14 12:09:24,single transit on third event; reported transit depth is shallower than true transit depth; likely FP; centroid offset,729,1,False,True,True -11561667,730.01,,3,5,5,3,4,4,4,35.4,78.7,128.34,3,0,2,PC,CP,14.9181,0.008,,1,spoc,SPOC,09:59:17.68,-27:23:34.14,-24.635,0.104,-8.286,0.098,2458543.869424,0.00089278765,3.08762952311813,7.918069e-06,2.21778096118009,0.12433647,45.963321,1.71186,41450.2208205285,1575.4387,14.0532293494222,0.6584423,95.8571898868761,798.042320691943,24.75772,436.176,10.655,4105.0,171.0,4.438,,0.693859994411469,,,,0.64,,"9,35",2019-06-06,2021-07-15,2022-12-14 12:09:24,,730,1,False,False,True -34068865,731.01,,3,5,5,3,4,4,4,239.2,983.8,7.52,5,2,2,CP,CP,8.031941,0.007,,1,qlp-s62-ffi,SPOC,09:44:29.15,-45:46:44.46,-462.549,0.056,-582.814,0.058,2460013.7131,0.0006209,0.3219233,4e-07,0.199,0.086,0.221513,2.093318,204.0,1926.16,2.66076,0.921089,469.443,1296.0,17.0,9.41263,0.002835,3518.0,84.0,4.82492,0.061282,0.46,0.01,,,0.454797,0.0202618,"9,35,36,62",2019-06-06,2023-04-12,2023-04-25 12:12:35,GJ 367 b,731,1,False,False,True -36724087,732.01,,1,5,5,1,4,4,4,10.5,19.2,1.56,14,1,7,CP,CP,10.5848,0.007,,1,spoc,SPOC,10:18:34.78,-11:43:04.08,-341.409,0.114,-247.87,0.105,2458543.906648,0.0007478894,0.768390381110759,9.604465e-06,1.0241241543017,0.45347685,0.981942,0.100955,903.993321409456,92.97864,1.14064469559338,1.5143634,112.640906660106,830.890481743322,12.229575,21.9814,0.04025,3329.0,72.0,4.94957,0.423263,0.374139010906219,0.0111845,,,0.362023,0.0202675,"9,35",2019-06-06,2021-09-08,2022-12-14 12:09:24,LTT 3780 b / TOI-732.01,732,1,True,False,True -36724087,732.02,,1,5,5,1,4,4,4,1.7,95.5,4.97,14,1,7,CP,CP,10.5848,0.007,,2,spoc,SPOC,10:18:34.78,-11:43:04.08,-341.409,0.114,-247.87,0.105,2458546.849602,0.0010644619,12.2521768765418,4.334348e-05,1.3819228945583,0.33722338,3.254081,0.26215,2992.63285777675,241.42026,2.07475653559879,0.8607957,2.80664630841248,330.116073787038,10.955205,21.9814,0.04025,3329.0,72.0,4.94957,0.423263,0.374139010906219,0.0111845,,,0.362023,0.0202675,"9,35",2019-06-06,2021-09-08,2022-12-14 12:09:24,LTT 3780 c / TOI-732.02,732,2,True,False,True -106402532,733.01,,1,5,5,1,4,4,4,4.4,59.6,4.44,2,2,5,CP,CP,8.8411,0.006,,1,qlp-s63-ffi,SPOC,10:37:38.24,-40:53:17.73,27.543,0.04,19.347,0.042,2460030.757093,0.0026729,4.8847937,1.43e-05,2.51,0.473,0.519106,0.032425,478.0,29.8637,1.94753,0.125355,223.094,1076.0,17.0,75.2092,0.176,5969.0,192.0,4.5172,0.279076,0.94,0.05,,,1.01,0.131692,"9,36,63",2019-06-06,2023-05-05,2023-06-16 12:14:51,TOI-733 b,733,1,False,False,True -146846569,734.01,,3,4,3,3,3,4,4,38.6,443.2,96.03,6,0,2,PC,PC,15.173,0.008,,1,spoc,SPOC,10:43:33.51,-44:37:18.54,-287.11,2.0,132.7,2.0,2458545.448503,0.00028624324,4.75352145507472,3.9005313e-06,1.06785795847378,0.027705913,284.386706,15.279086,230434.98269098,13974.003,11.8493621877096,21.278698,2.60864150946608,324.133075299529,38.594772,,,3010.0,97.0,5.10976,0.525773,0.201279997825623,0.00623173,,,0.170263,0.020122,"9,10,36",2019-06-06,2021-07-01,2022-12-14 12:09:24,A 6sigma secondary. V-shaped. Likely EB.,734,1,False,False,True -150271680,735.01,,5,5,5,5,5,5,5,8.4,60.1,9.42,0,0,3,PC,FP,9.5215,0.006,,1,spoc,SPOC,06:19:01.13,-63:51:52.95,31.763,0.215,-44.282,0.225,2458543.967327,0.00332,2.593694,0.00059,3.054429,0.651651,0.5721,0.051636,526.784827,47.557205,2.980736,2.776967,4.32417548743562,367.786324918302,11.244808,121.755,1.467,5316.6,64.0,3.88,0.1,1.28725,0.137373,-0.82,0.08,0.92,0.115036,9,2019-05-15,2019-05-15,2022-12-14 12:09:24,,735,1,False,False,True -181804752,736.01,,2,4,4,5,4,3,2,4.8,175.9,5.85,58,3,8,CP,CP,13.5571,0.008,,1,spoc,SPOC,11:02:45.72,-16:24:23.2,-221.078,0.219,-58.999,0.138,2459285.014805,0.0011335249,4.98990315377754,7.779536e-06,1.10183426816339,0.11890712,19.138643,0.876838,17472.8884595205,807.272,2.28353225703796,0.22025356,2.2410878781533,312.057389569666,20.562578,26.4927,0.0639,2940.0,67.0,5.14315,0.410207,0.171430006623268,0.00518929,,,0.14169,0.0200509,"9,36",2019-06-06,2021-12-02,2023-02-22 00:00:00,LP 791-18 c / TOI 736.01,736,1,True,False,True -181804752,736.02,,2,4,4,5,4,3,2,9.0,20.9,1.87,58,3,8,CP,CP,13.5571,0.008,,2,spoc,SPOC,11:02:45.72,-16:24:23.2,-221.078,0.219,-58.999,0.138,2458543.55772,0.00073408464,0.947995058842727,1.44914975e-05,0.581069830563426,0.2512231,4.651541,0.612948,4275.06332268727,564.387,1.20107306038125,0.45076677,20.5198230121006,542.829138653881,9.884826,26.4927,0.0639,2940.0,67.0,5.14315,0.410207,0.171430006623268,0.00518929,,,0.14169,0.0200509,"9,36",2019-06-06,2021-12-02,2022-12-14 12:09:24,LP 791-18 b,736,2,True,False,True -219189765,737.01,,3,5,5,3,4,4,4,48.9,100.1,93.84,3,0,6,PC,CP,14.7599,0.008,,1,spoc,SPOC,11:24:03.55,-19:33:25.05,-38.857,0.118,39.679,0.077,2458544.43094,0.00042995982,1.73185107984604,2.9351388e-06,1.64652563342337,0.06756608,39.510652,1.102564,35736.4744802446,1014.98334,11.688502569116,0.5340342,86.6366704539973,778.11750924225,31.759363,299.389,7.0265,3394.0,102.0,4.9186,0.487781,0.615218997001648,0.020916,,,0.600332,0.021826,"9,36",2019-06-06,2021-07-13,2022-12-14 12:09:24,two stars in pixel; likely visual binary,737,1,False,False,True -260304800,738.01,,3,4,3,3,3,4,4,21.3,73.8,60.94,2,0,3,PC,PC,12.7474,0.006,,1,qlp,UNKNOWN,06:18:08.51,-57:33:31.42,-5.197,0.025,25.629,0.029,2459387.203481,0.0004362,3.4405974,2.7e-06,2.486,0.127,9.213453,0.000607,8450.0,0.558933,9.04642,0.521817,379.53,1229.0,118.0,389.884,2.253,5324.0,184.0,4.43563,2.00393,0.94,0.05,,,0.91,0.119942,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,31,32,33,34,35,36,37,38",2019-05-15,2021-11-09,2022-12-14 12:09:24,TFOP work in progress,738,1,False,False,True -279425357,739.01,,3,4,4,3,3,4,4,18.9,78.8,77.73,6,0,4,PC,PC,11.6049,0.006,,1,spoc,UNKNOWN,06:59:57.84,-57:37:07.23,-4.901,1.121,-7.095,1.121,2459385.881094,0.0005986,9.01502833617072,1.3019174e-05,1.54744553972526,0.054627303,5.25506,0.207674,4828.39447787559,191.25652,10.4628284396849,1.8851315,188.179804617119,944.632759976794,42.950397,340.416,,6083.61,125.0,4.3203,0.2,1.15840005874634,,-0.617295,0.1,,,"9,10,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-06-06,2021-11-09,2022-12-14 12:09:24,V-shaped. Epoch is from qlp-s39-tois; all other parameters are from spoc-s01-s39 multisector,739,1,False,False,True -310009611,740.01,,1,4,1,1,3,4,4,5.2,55.3,4.64,1,2,1,PC,PC,9.529,0.006,,1,qlp-s63-ffi,UNKNOWN,10:08:28.33,-50:18:27.01,-25.127,0.05,-30.379,0.049,2460036.326522,0.0030325,2.131225,6.4e-06,3.006,1.188,0.520192,0.032695,479.0,30.1126,1.98371,0.127756,3661.38,2167.0,23.0,115.091,0.44,5776.0,189.0,4.40631,0.269085,0.97,0.05,,,1.1,0.143176,"9,10,36,63",2019-05-15,2023-05-11,2023-06-16 12:14:51,variable bright host star; crowded field,740,1,False,False,True -359271092,741.01,,3,4,3,3,3,4,4,2.0,21.4,0.57,0,2,4,PC,PC,7.66874,0.007,,1,qlp-s62-ffi,SPOC/QLP,09:21:35.85,-60:16:52.21,-840.114,0.056,182.09,0.062,2460006.41417,0.0048554,7.5768334,3.52e-05,2.073,0.83,0.313823,0.034909,289.0,32.1517,0.867887,0.066986,26.1371,629.0,12.0,10.454,0.00315,3766.0,95.0,4.75957,0.060823,0.53,0.02,,,0.522473,0.0202738,"9,10,36,37,62",2019-06-06,2023-04-12,2023-04-25 12:12:35,Crowded field. High proper motion star.,741,1,False,False,True -373424049,742.01,,5,5,5,5,5,5,5,7.8,75.3,9.0,2,1,1,PC,FP,8.6333,0.006,,1,spoc,SPOC,09:20:13.63,-53:07:10.86,2.654,0.063,-0.909,0.062,2458543.475174,0.00283,0.963081,0.000194,2.378514,0.265809,0.265236,0.019935,244.261214,18.360544,2.727644,0.596427,23744.773941,3166.006188,13.63825,227.265,1.844,8688.0,230.0,4.32187,0.344824,1.68698,0.245108,,,2.12,0.313598,"9,10",2019-06-06,2019-06-06,2022-12-14 12:09:24,A type star; could be on 373424060,742,1,False,False,True -434486077,743.01,,3,4,3,3,3,4,4,23.0,62.9,84.05,2,0,2,PC,PC,14.3858,0.007,,1,spoc,SPOC,10:26:17.43,-23:30:29.03,-31.688,0.065,-2.992,0.059,2458545.13472,0.0009804878,2.22846710545914,7.35925e-06,1.57089124017213,0.13534065,16.853101,1.050907,15402.4299593583,967.4528,10.9560053102331,0.7381707,378.648262584665,1125.06792054395,17.991327,638.972,14.2035,5156.0,182.0,4.46838,2.00362,0.824288010597229,,,,0.82,,"9,36",2019-06-06,2019-06-06,2022-12-14 12:09:24,SG1 should clear the neighbor.,743,1,False,False,True -437242640,744.01,,5,5,5,5,5,5,5,123.4,349.9,118.08,0,1,3,KP,KP,9.7566,0.006,,1,qlp-s63-ffi,SPOC,11:01:35.85,-23:51:39.4,-43.9,0.069,-65.794,0.069,2460031.706114,0.0002086,4.3176859,1.1e-06,1.822,0.154,12.319996,0.321276,11283.0,295.862,13.3926,0.793785,229.962,1084.0,136.0,132.096,0.8515,5700.0,,4.50578,,1.11,0.06,0.04,0.1,1.014,0.12983,"9,36,63",2019-05-15,2023-05-11,2023-06-16 12:14:51,WASP-34 b,744,1,False,False,True -444842193,745.01,,2,5,5,2,3,4,4,6.5,52.2,5.9,1,1,3,PC,APC,10.5488,0.006,,1,qlp,UNKNOWN,09:51:01.78,-55:19:05.88,-52.223,0.05,-5.862,0.053,2459330.928235,0.0032031,1.0791105,6.8e-06,2.541,0.277,0.619046,0.000986,570.0,0.907837,2.28894,0.148084,5145.59,2359.0,16.0,175.381,0.9965,5741.0,189.0,4.47122,0.307748,0.97,0.05,,,1.07,0.131911,"9,10,36,37",2019-06-06,2021-11-09,2022-12-14 12:09:24,check neighbors,745,1,False,False,True -167418903,746.01,,3,4,4,3,3,4,4,19.4,101.7,67.75,4,1,3,PC,PC,11.3786,0.006,,1,qlp-s39-tois,UNKNOWN,06:38:28.99,-67:38:56.22,-3.159,0.043,6.515,0.038,2459367.92025,0.0004955,10.980302,8.9e-06,1.597,0.156,9.333908,0.002717,8560.0,2.50259,9.67383,0.543752,24.3873,619.0,72.0,234.418,1.0545,5614.9,126.0,4.47,0.08,0.96,0.05,-0.159866,0.1,0.99,0.122522,"1,2,3,4,5,6,7,8,9,11,12,13,28,29,30,31,32,33,34,35,36,37,38",2019-04-01,2022-03-22,2022-12-14 12:09:24,,746,1,False,False,True -15445551,747.01,,5,5,5,5,5,5,5,114.5,111.4,317.0,0,0,1,KP,KP,10.349,0.006,,1,spoc,UNKNOWN,12:21:17.92,-52:50:26.94,-1.356,0.041,3.919,0.04,2459308.413696,0.00037470163,1.68278959366997,4.584463e-05,3.01835088250064,0.026562033,8.806065,0.096984,8077.88249157578,89.32127,14.8004637382791,0.69054896,4170.1035014591,2049.54028056697,80.504036,298.392,3.579,6271.0,196.0,4.08214,0.411485,1.56802999973297,0.0719699,,,1.31,0.203274,"10,11,37",2019-06-05,2021-07-26,2022-12-14 12:09:24,WASP-87 b,747,1,False,False,True -104024556,748.01,,5,5,5,5,5,5,5,110.6,150.4,317.0,0,1,1,KP,KP,10.3182,0.006,,1,qlp-s64-ffi,SPOC,13:04:10.51,-35:32:58.31,-18.658,0.121,1.037,0.075,2460064.168409,0.0003659,2.0219583,1.8e-06,2.681,0.084,10.955883,0.196406,10040.0,180.88,20.1548,0.900287,3208.41,2096.0,110.0,423.552,10.6475,7000.0,,4.13412,,1.94,0.08,,,1.57,0.260657,"10,37,64",2019-06-11,2023-06-28,2023-06-28 00:00:00,WASP-167 b,748,1,False,False,True -5868998,749.01,,5,5,5,5,4,5,5,621.3,500.7,317.0,4,0,8,PC,APC,13.9372,0.007,,1,spoc,SPOC,12:31:07.68,-23:46:25.37,-35.236,0.193,-35.044,0.11,2458569.93359,0.000286,0.63554,1.2e-05,1.257326,0.023871,57.022842,0.90478,51164.635251,832.9864,14.372489,6.281129,233.512692728911,997.005083166469,74.55815,232.123,5.3735,3602.0,66.0,4.8169,0.364675,0.442,0.069,,,0.527,,10,2019-06-11,2019-06-11,2022-12-14 12:09:24,Likely EB,749,1,False,False,True -14614418,750.01,,5,5,5,5,5,5,5,83.6,67.7,317.0,0,0,0,KP,KP,13.3898,0.008,,1,qlp,UNKNOWN,11:35:49.78,-29:09:21.83,3.179,0.046,-4.904,0.035,2459304.327073,0.0004481,0.8378445,1e-06,1.768,0.058,22.433478,0.005679,20450.0,5.23061,15.1164,,2569.0,1983.0,71.0,624.368,15.7565,5600.0,,4.43826,,1.02,,,,1.01,,"10,36",2019-06-11,2021-11-10,2022-12-14 12:09:24,HATS-18 b,750,1,False,False,True -14661418,751.01,,5,5,5,5,5,5,5,46.3,143.7,100.05,0,0,0,KP,KP,12.4806,0.006,,1,spoc,UNKNOWN,11:36:02.37,-29:32:36.11,24.921,0.042,-9.907,0.032,2459303.027567,0.0003595,4.72281462866065,3.3164583e-06,2.1894173969358,0.040665444,24.902903,0.283723,22675.3812671286,261.28473,12.1376503908981,0.91417116,111.298997412938,828.404716014755,97.16079,229.518,1.601,4803.0,,4.64154,,0.793235003948212,0.0582462,0.024189,0.0782272,0.757,0.0889309,"10,36",2019-06-11,2021-12-02,2022-12-14 12:09:24,HATS-22 b,751,1,False,False,True -61538902,752.01,,5,5,5,5,5,5,5,46.0,148.8,115.93,0,0,1,KP,KP,11.3743,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,11:45:11.77,-42:03:50.25,11.67,0.048,-1.593,0.037,2459309.447174,0.00055664487,5.74813436328271,3.8102783e-06,2.67201208815229,0.03762507,13.428622,0.131128,12292.0460654574,120.765656,13.2374347070602,0.63841736,345.719926611898,1099.76742708509,99.69562,301.462,3.3435,5900.0,,4.52994,,1.12783002853394,0.0532764,,,1.1,0.145172,"10,37",2019-06-11,2022-03-30,2022-12-14 12:09:24,WASP-129 b,752,1,False,False,True -61988212,753.01,,5,5,5,5,3,5,5,67.8,162.1,84.72,4,0,2,PC,APC,14.3042,0.006,,1,spoc,SPOC,11:52:17.87,-47:35:00.29,-5.923,0.127,-5.052,0.089,2458569.455416,0.001448,0.555255,4.9e-05,1.622036,0.081342,25.726433,2.124161,23416.400387,1954.5116,18.630967,18.70032,5682.43670896674,2214.38637899906,16.535254,597.747,35.053,5591.0,184.0,4.38111,,1.06168,1.06168,,,1.02,,10,2019-06-11,2019-06-11,2022-12-14 12:09:24,Likely EB; Gaia Rstar = 0.66Rsun,753,1,False,False,True -72985822,754.01,,3,4,3,4,3,4,4,32.2,93.4,107.38,0,0,3,PC,PC,12.2397,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,12:37:11.31,-42:24:49.09,-13.027,0.083,-6.377,0.164,2459310.244279,0.0017946988,3.86397682654853,7.924161e-06,2.09351181541141,0.085695796,8.250601,0.629566,7570.28399468719,579.68384,12.654153859758,1.1621752,733.324199192072,1327.2225555833,30.536245,498.36,13.3015,6214.0,190.0,4.26729,,1.22623002529144,0.0632462,0.188862,0.068938,1.14,0.14759,"10,37",2019-06-11,2022-03-21,2022-12-14 12:09:24,v-shaped; check neighbors,754,1,False,False,True -73228647,755.01,,2,5,5,2,4,4,4,5.0,52.9,4.79,1,3,3,CP,CP,9.4628,0.006,,1,qlp-s64-ffi,SPOC,12:40:08.78,-44:18:43.48,-3.723,0.097,-13.684,0.123,2460066.437431,0.002085,2.5404679,8.1e-06,2.154,0.326,0.621219,0.030886,572.0,28.4465,2.15331,0.134377,622.47,1391.0,16.0,106.307,0.7195,6003.0,192.0,4.47356,0.276774,0.99,0.05,,,1.03,0.135847,"10,37,64",2019-06-11,2023-06-28,2023-06-28 00:00:00,HD 110113 b,755,1,False,False,True -73649615,756.01,,2,4,4,2,4,4,4,12.7,74.4,8.61,3,0,4,PC,PC,12.5554,0.007,,1,spoc-s01-s39-b0A-PC,UNKNOWN,12:48:24.9,-45:28:13.7,-216.372,0.066,29.209,0.066,2459308.00435,0.00259373,1.23925278804549,6.727919e-06,1.14927064500414,0.17487271,3.019704,0.212587,2777.3856259454,195.78069,2.86671207184412,0.3954305,111.056290695781,827.952726284317,15.762,86.1759,0.31365,3614.0,64.0,4.81257,0.359456,0.50762802362442,0.0151246,-0.475514,0.0826626,0.505544,0.020319,"10,11,37",2019-06-05,2022-03-21,2022-12-14 12:09:24,,756,1,False,False,True -130924120,757.01,,3,4,4,4,3,3,4,2.1,54.3,5.19,5,3,3,PC,PC,9.0498,0.006,,1,qlp-s64-ffi,SPOC,12:31:58.76,-35:33:16.03,47.935,0.073,107.175,0.103,2460039.192903,0.0039903,17.4682298,6.97e-05,3.491,0.414,1.005858,0.051044,926.0,47.0122,2.17884,0.139569,24.3644,618.0,18.0,60.3418,0.201,5499.0,186.0,4.39962,2.00408,0.76,0.04,,,0.92,0.11236,"10,37,64",2019-06-11,2023-06-28,2023-06-28 00:00:00,L1 candidate; some variability in LC,757,1,False,False,True -131081852,758.01,,5,5,5,5,3,5,5,94.3,195.6,317.0,0,0,1,PC,APC,9.957501,0.006,,1,spoc-s01-s39-b0A-APC,UNKNOWN,12:39:02.92,-31:59:32.16,-19.0,2.5,-26.8,2.4,2458575.745562,0.00026675418,13.2735510809905,7.748915e-06,6.70600286667178,0.02454332,23.112203,0.099706,21062.1535755069,91.82865,19.0558856989694,0.058318935,117.993652879763,889.105216770454,222.54208,154.532,,6072.0,193.0,4.29177,2.00457,1.26126003265381,,,,,,"10,37",2019-06-11,2023-01-24,2023-01-26 12:09:41,Possible EB; ~1000 ppm secondary,758,1,False,False,True -152147232,759.01,,5,5,5,5,3,5,5,32.2,90.1,112.12,0,1,1,PC,APC,11.6713,0.006,,1,qlp-s37-tois,UNKNOWN,11:19:38.27,-39:27:43.49,-33.382,0.048,8.644,0.042,2459331.163575,0.0005546,4.2135662,6.2e-06,2.904,0.095,6.971043,0.000575,6400.0,0.529801,12.9663,0.613837,504.781,1320.0,46.0,516.041,8.7495,6107.0,193.0,4.11585,0.61556,1.53,0.07,,,1.28,0.205272,"10,36,37",2019-06-11,2023-01-24,2023-01-26 12:09:41,TFOP APC/SB1,759,1,False,False,True -162362398,760.01,,5,5,5,5,3,5,5,70.2,217.5,317.0,0,0,1,PC,APC,10.6171,0.006,,1,spoc-s01-s39-b0A-APC,UNKNOWN,11:17:39.45,-44:01:01.52,-18.637,0.074,8.558,0.064,2458578.666284,0.00062497525,12.3396367619307,1.5049149e-05,6.26590324229891,0.048744667,14.63196,0.142254,13386.1311036146,131.012,28.8331721463727,1.3389844,1153.24324719827,1486.27776131978,108.47124,651.263,22.129,7852.0,217.0,4.20409,0.682895,2.2974100112915,0.105799,,,1.94,0.310494,"10,36,37",2019-06-11,2023-01-24,2023-01-26 12:09:41,Likely EB; large radius (~29 Re),760,1,False,False,True -165317334,761.01,,2,4,2,2,3,4,4,2.4,40.8,7.24,7,2,3,PC,PC,10.9217,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,11:57:03.12,-38:06:17.26,-111.607,0.052,-18.278,0.034,2458576.385612,0.002249682,10.5558664690631,5.0308656e-05,2.89210420210884,0.5362827,1.580251,0.136427,1454.4059010523,125.64559,2.58978057889449,1.6690379,16.7314698977774,515.826053300495,11.17174,66.8154,0.1808,4368.0,174.0,4.56706,0.236556,0.684759974479675,0.0702512,,,0.63,0.0791937,"10,37",2019-06-11,2022-03-21,2022-12-14 12:09:24,possible odd-even,761,1,False,False,True -178709444,762.01,TIC 178709444.01,4,4,4,4,3,4,4,30.1,149.0,49.53,5,0,2,PC,PC,13.6615,0.007,,1,spoc,UNKNOWN,11:04:17.94,-47:49:17.39,-159.157,0.07,-24.515,0.067,2459329.505631,0.0008324,3.47168080203191,3.2942403e-06,1.38169777280993,0.044831026,33.770063,0.877706,30624.6434599132,808.0704,8.02723404523397,0.29949307,17.0012170203445,517.892655794469,40.89199,98.4458,0.4309,3399.0,102.0,4.91468,0.484981,0.426784992218018,0.0130268,,,0.421357,0.020525,"10,36,37",2019-06-11,2021-11-09,2023-04-20 00:00:00,epoch from qlp-s37-tois; all other parameters from spoc-s01-s39 multisector,762,1,False,False,True -178819686,763.01,,2,5,5,2,4,4,4,4.7,57.4,6.36,9,1,4,PC,CP,9.5275,0.006,,1,spoc,SPOC,12:57:52.34,-39:45:29.02,-76.902,0.073,-84.817,0.055,2459312.071244,0.0029323034,5.60244775030576,0.0015548705,2.99603471682006,0.625347,0.765534,0.070274,704.833937648742,64.722565,2.41708905104619,2.0739105,183.079862842995,938.166441766119,11.85643,95.1274,0.45155,5767.0,189.0,4.34736,2.00358,0.906760990619659,0.0467135,,,0.97,0.114611,"10,37",2019-06-11,2019-06-11,2022-12-14 12:09:24,TOI-763 b/ TOI-763.01,763,1,True,False,True -178819686,763.02,,1,4,1,2,4,4,4,4.2,62.0,9.68,9,1,4,CP,CP,9.5275,0.006,,2,spoc-s01-s39-b0A-CP,SPOC,12:57:52.34,-39:45:29.02,-76.902,0.073,-84.817,0.055,2459309.606206,0.004551643,12.2773061830395,8.4310166e-05,4.30659409762244,0.29724625,0.898153,0.057633,826.887038513161,53.080776,3.0725491122688,0.23221853,64.3191380637673,722.278693048065,13.262994,95.1274,0.45155,5767.0,189.0,4.34736,2.00358,0.906760990619659,0.0467135,,,0.97,0.114611,"10,37",2019-06-11,2022-03-30,2022-12-14 12:09:24,TOI-763 c / TOI-763.02,763,2,True,False,True -181159386,764.01,,5,5,5,5,3,5,5,106.4,251.0,317.0,0,0,1,PC,APC,11.1689,0.006,,1,spoc-s01-s39-b0A-APC,UNKNOWN,11:37:12.68,-38:18:25.89,-6.075,0.044,2.292,0.03,2458574.583993,0.00035888163,5.63166625878689,3.8410917e-06,6.53508256657453,0.033529762,15.179328,0.102995,13883.4017678224,94.857735,33.6448758601958,1.6967282,2898.44310427924,1871.3755219121,138.26785,789.341,19.1095,6632.0,200.0,4.20607,1.94281,2.78211998939514,0.139628,,,1.43,0.225089,"10,36,37",2019-06-11,2023-01-24,2023-01-26 12:09:41,TFOP APC; too large (Rp > 30Re),764,1,False,False,True -219401954,765.01,,5,5,5,5,5,5,5,7.5,53.2,6.93,2,2,1,PC,FA,9.647,0.006,,1,spoc,SPOC,05:12:39.65,-53:44:36.38,17.488,0.046,32.329,0.057,2458570.226021,0.002456,0.861484,0.000147,1.293669,0.397879,0.311334,0.041585,286.708078,38.300644,2.512038,4.220942,10152.6149388526,2560.14302496638,8.275544,168.781,0.7225,5724.7,57.0,3.82,0.08,1.45505,0.165864,-0.24,0.09,1.02,0.129493,10,2019-06-11,2019-06-11,2022-12-14 12:09:24,Low SNR; possible secondary,765,1,False,False,True -219698950,766.01,,5,5,5,5,5,5,5,65.1,207.3,105.0,0,0,1,KP,KP,11.5122,0.008,,1,spoc,UNKNOWN,11:42:06.06,-23:21:17.44,-20.357,0.064,-0.924,0.046,2459304.6595,0.0002653,3.44645291290583,1.5725985e-06,2.43281980155,0.022074828,17.913229,0.123298,16363.3355719523,113.55564,12.488180891204,0.6135082,489.946245599301,1199.93261545794,162.6013,283.971,3.73,5870.0,,4.4,,0.913091003894806,0.0445528,0.1,0.12,1.18,0.158994,"10,36",2019-06-11,2021-12-02,2022-12-14 12:09:24,HATS-1 b,766,1,False,False,True -229047362,767.01,,5,5,5,5,5,5,5,87.6,259.7,116.81,0,0,1,KP,KP,11.2175,0.006,,1,spoc,SPOC,13:01:26.34,-27:31:20.02,-29.268,0.061,-6.293,0.047,2458572.990673,0.000252,3.764873,6.9e-05,2.759996,0.022034,24.438343,0.146737,22257.118447,135.14021,13.95182,0.090622,357.012287236366,1108.63999088954,155.86082,211.416,1.4575,5703.0,,4.51085,,0.92,,0.06,0.03,1.025,0.123143,10,2019-06-11,2019-06-11,2022-12-14 12:09:24,WASP-25 b,767,1,False,False,True -229811538,768.01,,5,5,5,5,3,5,5,35.8,75.8,317.0,0,1,1,PC,APC,12.2864,0.008,,1,qlp-s37-tois,SPOC,13:14:32.55,-24:08:39.09,-10.709,0.064,2.776,0.057,2459316.29169,0.0006896,11.5294381,1.44e-05,4.881,0.091,28.19024,0.00219,25630.0,2.01662,18.7142,0.908215,149.636,974.0,105.0,469.997,9.4505,5956.0,192.0,4.31259,2.00378,1.15,0.05,,,1.21,0.184341,"10,37",2019-06-11,2023-01-24,2023-01-26 12:09:41,possible secondary; TFOP APC,768,1,False,False,True -248075138,769.01,,5,5,5,5,5,5,5,51.5,194.1,81.22,0,1,1,KP,KP,11.3728,0.006,,1,qlp-s37-tois,SPOC,12:51:55.49,-42:04:25.02,-49.781,0.061,4.865,0.064,2459332.02995,0.0002793,4.9816784,3e-06,2.733,0.053,19.842907,0.001648,18110.0,1.51789,10.7801,0.64077,137.118,953.0,137.0,177.291,1.3105,5315.0,,4.51737,,0.79,0.05,0.29,0.05,0.92,0.114537,"10,37",2019-06-11,2023-01-24,2023-01-26 12:09:41,WASP-42 b,769,1,False,False,True -248111245,770.01,,5,5,5,5,5,5,5,26.3,31.6,317.0,0,0,1,KP,KP,12.3335,0.006,,1,spoc-s01-s39-b0A-KP,UNKNOWN,12:54:12.59,-46:35:15.78,-13.593,0.07,0.545,0.074,2459310.764623,0.0020390798,4.63704787370184,1.0513086e-05,4.82383217195436,0.11697414,8.464736,0.190761,7765.99732862179,175.68155,15.3045465033212,1.0992488,1342.57326596614,1543.84696486121,33.603905,816.988,39.2265,6438.0,,4.10962,,1.68053996562958,0.114653,,,1.41,0.241258,"10,11,37",2019-06-05,2022-03-30,2022-12-14 12:09:24,HATS-27 b,770,1,False,False,True -277634430,771.01,,3,4,4,3,3,4,4,4.9,15.5,2.53,7,0,1,PC,PC,12.0874,0.007,,1,spoc-s01-s39-b0A-PC,UNKNOWN,10:56:27.33,-72:59:06.63,39.475,0.081,-76.411,0.06,2459335.352285,0.0019598098,2.32600773508212,4.8553343e-06,0.996086784488788,0.18412185,3.566838,0.175367,3279.789131833,161.50557,1.39608687371148,0.44174787,14.8966001897978,501.062083611048,22.615362,25.2788,0.0257,3231.0,,4.438,,0.241857007145882,0.00727155,,,0.2121,0.0201145,"10,11,12,37,38",2019-06-05,2022-03-21,2022-12-14 12:09:24,Possible centroid offset; s38 affected by scattered light,771,1,False,False,True -286864983,772.01,,3,4,4,3,4,4,4,14.7,103.0,39.25,7,3,7,PC,PC,10.8815,0.006,,1,qlp-s37-tois,UNKNOWN,12:40:45.94,-21:52:22.01,-29.764,0.079,-11.733,0.046,2459325.051346,0.0007337,11.0162412,1.93e-05,3.445,0.101,7.703419,0.001387,7070.0,1.27776,7.03935,0.446241,41.7227,708.0,43.0,135.371,0.955,5184.0,182.0,4.57383,0.395411,0.82,0.05,,,0.858,0.104624,"10,37",2019-07-24,2022-03-21,2022-12-14 12:09:24,possible multi,772,1,True,False,True -286864983,772.02,,1,5,5,1,4,4,4,,,24.44,7,3,7,PC,PC,10.8815,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,12:40:45.94,-21:52:22.01,-29.764,0.079,-11.733,0.046,2459313.642108,0.002032358,0.0,0.0,4.45693464920844,0.2077353,4.650194,0.320202,4273.82767881959,294.87384,5.29836014351352,0.60285616,5.32201441440338,387.381397164097,12.618154,135.371,0.955,5184.0,182.0,4.57383,0.395411,0.81537401676178,0.0503367,,,0.858,0.104624,"10,37",2022-03-24,2022-03-24,2022-12-14 12:09:24,single transit in a potential multi system at ~2313 TBJD; check close neighbor TIC 951863424,772,2,True,True,True -286865921,773.01,,5,5,5,5,5,5,5,44.8,136.8,101.4,0,1,2,KP,KP,11.5037,0.006,,1,qlp-s37-tois,SPOC,12:40:36.47,-19:17:03.67,-23.173,0.08,-12.865,0.061,2459329.250355,0.0004408,4.971298,4.6e-06,3.283,0.088,13.250508,0.001451,12130.0,1.33654,12.1956,0.676242,238.875,1095.0,107.0,271.103,3.667,5510.0,,4.44137,,1.09,0.06,,,0.963,0.124322,"10,37",2019-06-11,2023-01-24,2023-01-26 12:09:41,WASP-83 b,773,1,False,False,True -294301883,774.01,,5,5,5,5,5,5,5,69.2,83.3,317.0,0,0,6,KP,KP,11.3473,0.006,,1,spoc-s01-s39-b0A-KP,UNKNOWN,13:35:01.97,-17:30:12.59,12.072,0.077,-3.837,0.07,2459310.444439,0.00047407817,4.46563432994197,2.3999446e-06,3.5125179895836,0.028601402,18.984906,0.128115,17333.7557230584,117.99138,14.646776348545,0.63955903,471.601595036835,1188.53935279785,155.33298,297.462,3.9085,6070.0,,4.4201,,1.09036004543304,0.0470527,0.09,0.04,1.134,0.153521,"10,37",2019-06-11,2022-03-30,2022-12-14 12:09:24,WASP-55 b,774,1,False,False,True -304042899,775.01,,5,5,5,5,5,5,5,107.9,248.5,317.0,1,0,1,PC,FP,9.5369,0.006,,1,spoc,SPOC,10:59:11.99,-59:14:02.29,-24.478,0.089,19.54,0.093,2459313.56423,0.003532989,12.4458741183019,0.0050027245,11.5424587447013,0.25815743,7.680869,0.205606,7049.37773919067,189.3522,21.0847933463027,8.848064,308.658422933661,1069.02849815388,34.94298,220.953,2.6095,6746.0,202.0,4.41572,0.439532,1.52880001068115,0.0662512,,,1.45,0.24339,"10,37",2019-06-05,2019-06-05,2022-12-14 12:09:24,likely EB; odd-even; large; v-shaped,775,1,False,False,True -306996324,776.01,TIC 306996324.01,2,5,5,2,4,4,4,1.8,67.8,4.82,7,3,6,CP,CP,9.73597,0.007,,1,qlp-s63-ffi,QLP,11:54:18.72,-37:33:12.08,251.112,0.051,-145.059,0.034,2460013.811167,0.0033256,15.6653204,5.58e-05,2.972,1.206,1.467821,0.150756,1351.0,138.842,2.02611,0.132178,14.4076,542.0,15.0,27.1701,0.03205,3806.0,66.0,4.73575,0.338566,0.53,0.02,,,0.52973,0.0202495,"10,37,63",2019-06-11,2023-05-11,2023-06-16 12:14:51,TOI-776 c / TOI 776.01,776,1,True,False,True -306996324,776.02,TIC 306996324.02,2,5,5,2,4,4,4,11.0,164.5,11.37,7,3,6,CP,CP,9.73597,0.007,,2,qlp-s63-ffi,QLP,11:54:18.72,-37:33:12.08,251.112,0.051,-145.059,0.034,2460031.06683,0.0025422,8.2466307,3.44e-05,2.78,1.054,1.397155,2.677032,1286.0,2462.6,3.35821,1.26439,141.981,961.0,18.0,27.1701,0.03205,3806.0,66.0,4.73575,0.338566,0.53,0.02,,,0.52973,0.0202495,"10,37,63",2019-06-11,2023-05-05,2023-06-16 12:14:51,TOI 776.02 / TOI-776 b,776,2,True,False,True -334305570,777.01,,3,4,4,3,3,4,4,24.5,109.3,54.02,7,1,3,PC,PC,9.3712,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,12:12:28.5,-49:00:27.86,-8.827,0.051,-23.394,0.036,2459314.556187,0.0010507639,8.30085529021161,1.1298432e-05,4.7925921078374,0.08681659,2.875758,0.055403,2645.16634337452,51.026665,8.44657276745832,0.50224984,468.771439249514,1186.75217264686,37.4951,182.314,1.433,7199.0,208.0,4.3586,0.384488,1.60283005237579,0.0833116,0.115163,0.0399537,1.18,0.169135,"10,37",2019-06-11,2022-03-21,2023-05-01 00:00:00,,777,1,False,False,True -335630746,778.01,,3,5,5,3,4,4,4,132.2,169.1,317.0,9,14,9,PC,CP,8.69009,0.006,,1,qlp-s46-tois,UNKNOWN,13:17:20.12,-15:16:25.34,-60.6,0.083,-26.012,0.065,2459574.942709,0.0001636,4.6336155,1.6e-06,3.557,0.041,8.348756,8.2e-05,7660.0,0.0756118,15.2453,0.624586,734.672,1450.0,370.0,161.743,1.1155,6780.0,202.0,4.08247,0.654941,1.68,0.07,,,1.428,0.243124,"10,37,46",2019-06-11,2022-03-11,2023-04-21 12:02:58,,778,1,False,False,True -374095457,779.01,,3,4,3,3,3,4,4,33.2,367.4,11.04,7,2,1,PC,PC,8.2158,0.007,,1,spoc,UNKNOWN,10:39:43.92,-48:59:48.07,-14.916,0.07,10.537,0.067,2459331.670822,0.0004677,0.783912430746991,1.5602933e-06,1.65090724123174,0.047749992,1.007131,0.016514,927.171585222829,15.210032,,,3608.54914940091,1976.75527224466,49.326096,634.714,17.664,5780.0,,4.438,,,,,,,,"9,10,36,37",2019-06-05,2021-11-09,2022-12-14 12:09:24,No stellar parameters; has variability of unrelated period. Likely larger star than the assumed solar radius but even if early A type star may be a Jupiter. Epoch is from qlp-s37-tois; other parameters are form spoc-s01-s39 multisector,779,1,False,False,True -398943781,780.01,,5,5,5,5,5,5,5,134.6,360.4,123.82,0,1,1,KP,KP,10.7875,0.006,,1,qlp-s37-tois,SPOC,12:42:28.51,-30:38:23.34,14.9,0.076,11.889,0.054,2459329.902022,0.0001207,3.0524018,8e-07,2.483,0.023,24.452648,0.00019,22270.0,0.175155,13.7594,0.652368,344.149,1199.0,323.0,163.371,1.0595,5545.0,,4.52787,,0.88,0.04,0.06,0.02,0.976,0.123773,"10,37",2019-06-11,2023-01-24,2023-01-26 12:09:41,WASP-41 b,780,1,False,False,True -413376180,781.01,,5,5,5,5,5,5,5,97.2,181.8,128.95,0,0,1,KP,KP,12.7492,0.006,,1,qlp,UNKNOWN,11:46:57.32,-22:33:46.84,-46.424,0.047,-1.172,0.024,2459303.359237,0.0003375,1.3541351,1e-06,1.894,0.025,22.333726,0.001349,20360.0,1.24215,14.0693,0.899122,667.122,1415.0,102.0,341.925,3.636,5227.0,,4.47443,,0.93,0.06,,,0.825,0.0938295,"10,36",2019-06-11,2021-11-09,2022-12-14 12:09:24,HATS-2 b,781,1,False,False,True -429358906,782.01,,2,4,4,2,4,4,4,2.3,59.6,7.67,9,0,10,PC,PC,12.2875,0.007,,1,spoc,SPOC,12:15:40.89,-18:54:37.22,-163.72,0.151,-36.819,0.096,2458577.041887,0.0015667799,8.02399252841892,2.8820785e-05,1.76287660776106,0.30177468,4.437735,0.368487,4078.96292079408,339.33182,2.67922462193686,0.57273245,5.39015727362574,388.615491355344,12.126099,52.5122,0.2036,3331.0,63.0,4.94964,0.399131,0.40651598572731,0.0122887,,,0.398817,0.0204054,"10,36",2019-06-11,2021-07-06,2022-12-14 12:09:24,potential L1 planet,782,1,False,False,True -451645081,783.01,,1,4,1,2,3,4,4,4.2,64.1,6.28,1,3,5,PC,PC,9.9222,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,11:28:37.35,-54:47:03.2,-119.182,0.044,3.231,0.036,2459312.121241,0.002800567,8.11251468650529,3.084877e-05,2.03302976253828,0.3530448,1.330751,0.124968,1224.91606561376,115.09274,2.38120328011565,1.3902668,32.9624197824918,611.117219498042,10.499904,55.3043,0.0999,4498.94,87.0,4.5,0.19,0.668361008167267,0.0577939,0.25,0.09,0.71,0.0804688,"10,37",2019-06-11,2022-03-21,2022-12-14 12:09:24,potential L1 candidate; period updated to ~8.1 days with spoc-s01-s39 multisector,783,1,False,False,True -460984940,784.01,,2,5,5,2,4,4,4,6.4,74.0,4.03,4,3,3,PC,CP,8.7537,0.006,,1,qlp-s63-ffi,SPOC,10:37:21.89,-63:39:20.49,3.567,0.047,-154.911,0.046,2460038.66554,0.0019217,2.7970316,6.4e-06,2.185,0.322,0.522365,0.023037,481.0,21.2174,1.84303,0.116988,413.894,1256.0,22.0,64.5997,0.1102,5849.0,190.0,4.5297,0.261519,0.9,0.05,,,0.96,0.122658,"10,11,37,38,63",2019-06-05,2023-05-11,2023-06-29 12:02:51,Crowded field; potential L1 planet,784,1,False,False,True -374829238,785.01,,1,4,1,2,3,4,4,0.2,2.1,1.75,0,0,1,PC,PC,11.5026,0.007,,1,spoc-s01-s39-b0A-PC,SPOC,05:53:20.95,-65:38:00.6,-15.241,0.051,102.216,0.046,2458363.821446,0.011247206,18.6263880271512,0.00035152686,15.6904223102657,0.9219414,0.461457,0.049335,424.927480738766,45.43838,1.17839017181178,0.27808923,4.28577365263068,366.967038641474,8.328106,65.5548,0.09825,3783.0,,4.438,,0.561300992965698,0.0166798,,,0.555307,0.0202895,"2,3,6,7,9,10,12,13,27,29,30,33,34,36,37,39",2019-06-14,2022-03-21,2022-12-14 12:09:24,bad transit shape; consistent centroid offset,785,1,False,False,True -375059587,786.01,,1,4,1,2,3,4,4,1.6,22.3,6.46,1,1,5,PC,PC,9.8192,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,06:40:25.01,-63:20:20.79,7.75,0.064,32.109,0.046,2459365.717485,0.0061792,12.6693175967686,4.3723736e-05,4.87696998142504,0.2791742,0.342582,0.016776,315.479765668894,15.451472,2.4215154940217,0.5504572,154.367997532037,898.998707189427,19.086626,167.948,0.9015,5853.8,45.2182,4.22099,0.115886,1.31433999538422,0.0609145,-0.00795581,0.0463279,1.06,0.127543,"1,2,3,4,5,6,7,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-06-14,2022-03-22,2022-12-14 12:09:24,possible multi,786,1,True,False,True -375059587,786.02,,1,4,1,1,3,4,4,1.0,19.8,8.81,1,1,5,PC,PC,9.8192,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,06:40:25.01,-63:20:20.79,7.75,0.064,32.109,0.046,2458349.005601,0.0071171992,38.5540680556467,0.0003880167,6.75566150314641,0.4018143,0.413401,0.02825,380.683706369193,26.018484,2.90701282332133,0.25435024,35.0053659346469,620.373738461815,12.583442,167.948,0.9015,5853.8,45.2182,4.22099,0.115886,1.31433999538422,0.0609145,-0.00795581,0.0463279,1.06,0.127543,"1,2,3,4,5,6,7,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2021-07-28,2022-03-22,2022-12-14 12:09:24,potential multi,786,2,True,False,True -350584963,787.01,,2,4,2,2,3,4,4,1.9,25.6,2.98,1,3,1,PC,PC,9.4799,0.006,,1,qlp-s63-ffi,SPOC,05:48:27.85,-56:00:14.83,23.605,0.065,2.831,0.061,2460039.713456,0.003501,2.1263242,7.1e-06,2.17,0.285,0.162873,0.009468,150.0,8.71994,1.54125,0.0892549,1647.7,1774.0,17.0,180.291,1.0145,6623.0,200.0,4.38359,0.333554,1.32,0.06,,,1.44,0.248612,"1,2,3,4,5,6,7,8,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63",2019-05-24,2023-05-11,2023-06-16 12:14:51,centroid variation between sectors; slight depth aperture correlation,787,1,False,False,True -349829627,788.01,,3,5,5,3,3,4,4,2.5,16.5,7.71,2,2,1,PC,PC,9.0255,0.006,,1,spoc-s01-s39-b0A-PC,QLP,07:34:46.87,-61:14:24.25,-31.077,0.055,-36.691,0.044,2458329.402681,0.002170365,6.48715567890779,3.0772462e-05,2.13255884745635,0.24685037,0.119157,0.015816,109.741666624656,14.566966,2.68690258457295,4.479964,284.777012998838,1047.72180430156,9.234935,184.204,0.849,4997.0,172.0,3.45154,0.335717,2.5686399936676,,,,,,"1,3,4,5,6,7,8,9,10,11,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-06-14,2022-03-22,2022-12-14 12:09:24,low S/N; crowded field; possible offset toward faint neighbor TIC 765721735; some odd-even clearer in SPOC TEC plots,788,1,False,False,True -300710077,789.01,,2,4,4,2,3,4,4,0.8,5.4,1.27,25,0,3,PC,PC,11.9802,0.007,,1,spoc-s01-s39-b0A-PC,UNKNOWN,07:41:04.85,-71:18:13.55,129.613,0.056,148.226,0.068,2458329.112439,0.0012325154,5.44699066193413,1.6166818e-05,1.57121233242163,0.5933363,0.905782,0.088284,833.908237441359,81.30914,1.07724671594326,1.3966876,9.54730675340294,448.321915025715,12.41423,43.407,0.0579,3471.0,64.0,4.87707,0.378264,0.371140003204346,0.0111606,,,0.358579,0.0203116,"1,2,3,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,35,36,37,38,39",2019-06-14,2022-03-22,2022-12-14 12:09:24,potential multi; crowded field,789,1,True,False,True -300710077,789.02,,2,4,2,2,3,4,4,0.3,4.0,2.2,25,0,3,PC,PC,11.9802,0.007,,2,spoc-s01-s39-b0A-PC,SPOC,07:41:04.85,-71:18:13.55,129.613,0.056,148.226,0.068,2458334.769484,0.0020042395,12.9706027850456,5.4607557e-05,2.1262586776887,0.64405185,1.287783,0.123262,1185.38847876085,113.52202,1.2844056786219,1.1167526,3.002452680042,335.728950182234,10.144441,43.407,0.0579,3471.0,64.0,4.87707,0.378264,0.371140003204346,0.0111606,,,0.358579,0.0203116,"1,2,3,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,35,36,37,38,39",2021-07-28,2022-03-18,2022-12-14 12:09:24,candidate in multi-planet system,789,2,True,False,True -300710077,789.03,,2,4,2,2,3,4,4,0.4,4.9,1.03,25,0,3,PC,PC,11.9802,0.007,,3,spoc-s01-s39-b0A-PC,SPOC,07:41:04.85,-71:18:13.55,129.613,0.056,148.226,0.068,2458329.961434,0.0022095814,8.04336687372668,3.6654536e-05,2.53552141812126,0.5224638,0.765894,0.072545,705.165483999338,66.81449,1.01651025306831,0.57924926,5.67770137621375,393.697707803494,10.987737,43.407,0.0579,3471.0,64.0,4.87707,0.378264,0.371140003204346,0.0111606,,,0.358579,0.0203116,"1,2,3,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,35,36,37,38,39",2021-07-28,2022-03-22,2022-12-14 12:09:24,small planet candidate in potential multi-planet system,789,3,True,False,True -308994098,790.01,,1,4,1,3,3,4,4,1.2,39.5,38.42,2,0,1,PC,PC,8.9914,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,08:13:35.47,-64:05:27.24,-24.667,0.074,47.921,0.071,2458352.490978,0.002851516,199.576867558498,0.0009002908,11.7048586712669,0.18854105,1.87827,0.042923,1728.45520231726,39.532402,6.91337329196008,0.2939583,7.57576339752798,423.132467125414,36.26595,167.218,0.884,6988.0,205.0,4.25649,0.403409,1.46080005168915,0.0586934,,,1.52,0.253533,"1,4,8,9,10,11,28,31,34,36,37,38",2019-06-14,2022-03-22,2022-12-14 12:09:24,correct period is ~199.6 days from SPOC multisector,790,1,True,False,True -308994098,790.02,,1,4,1,4,3,4,4,0.7,17.7,6.01,2,0,1,PC,PC,8.9914,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,08:13:35.47,-64:05:27.24,-24.667,0.074,47.921,0.071,2458345.439766,0.0048900517,41.017478039227,0.00031639877,7.95686360926676,0.46582374,0.254259,0.024215,234.153711448385,22.302473,2.32112929502276,0.53323215,62.4618341373167,717.007061309808,9.418342,167.218,0.884,6988.0,205.0,4.25649,0.403409,1.46080005168915,0.0586934,,,1.52,0.253533,"1,4,8,9,10,11,28,31,34,36,37,38",2022-03-24,2022-03-24,2022-12-14 12:09:24,possible multi near 5:1 resonance,790,2,True,False,True -306472057,791.01,TIC 306472057.01,1,4,1,3,3,4,4,1.7,34.1,75.23,2,1,3,PC,PC,10.7525,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,07:53:44.34,-69:42:06.25,-5.065,0.056,8.192,0.051,2458427.624747,0.0016004882,139.303600595831,0.0004052185,12.0859165026346,0.129203,5.343684,0.106612,4909.62270952317,98.18838,10.2643100706891,0.45372677,10.6695927706569,460.953068694028,41.603268,341.221,3.0735,6572.0,199.0,4.35381,0.434965,1.42962002754211,0.0590955,,,1.43,0.24724,"4,5,6,8,9,10,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-06-14,2022-03-22,2022-12-14 12:09:24,CTOI from Planet Hunters,791,1,False,False,True -294780517,792.01,,5,5,5,5,5,5,5,1.8,24.2,12.67,1,0,1,EB,FP,11.7345,0.006,,1,spoc-s01s13-b0A,SPOC,04:44:58.98,-67:58:51.78,-7.454,0.045,19.694,0.051,2458416.495917,0.0023369747,15.6477055442229,0.00024793908,1.33606697937492,0.5425854,1.646321,0.170897,1515.16894683287,157.38956,3.21932755902676,4.9658775,30.6368863471307,600.040972061178,10.254003,215.208,1.127,5107.98,125.0,4.5443,0.2,0.835807,0.204047,0.349553,0.1,0.86,0.0983604,"4,5,6,7,8,9,10,11,12,13",2019-06-14,2023-04-04,2023-04-07 12:13:06,low MES; crowded; TFOP FP/NEB,792,1,False,False,True -300013921,793.01,,5,5,5,5,5,5,5,0.8,30.9,15.38,1,3,3,EB,FP,10.8578,0.006,,1,qlp-s36-ffi,SPOC,07:08:32.15,-68:22:07.6,-0.395,0.04,25.382,0.043,2459236.957286,0.0013824,54.6616036,0.0001672,2.388,0.143,2.195405,0.001169,2020.0,1.0763,4.04767,0.238537,1.20276,291.0,22.0,144.067,0.3935,5379.0,185.0,4.50461,0.302612,0.8,0.04,,,0.95,0.124974,"1,2,3,4,5,6,7,8,9,10,11,12,13,28,29,30,31,32,33,34,35,36",2019-06-14,2023-04-04,2023-04-07 12:13:06,TFOP SEB1/FP,793,1,False,False,True -299945285,794.01,,2,4,4,2,3,4,4,0.8,16.1,12.11,1,2,3,PC,PC,10.0176,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,07:06:39.58,-71:26:48.58,4.668,0.038,-17.561,0.042,2459335.730301,0.0147425,52.3966595279289,0.00038334052,8.44792701021736,0.38388726,0.485533,0.028252,447.09214217431,26.02056,3.50511708542042,0.45761874,40.8266585380991,644.697088177874,16.64862,233.131,1.1705,6270.01,40.0668,4.07467,0.111098,1.59083998203278,0.0647336,-0.46561,0.0457919,1.22,0.185447,"2,3,4,5,6,7,8,9,10,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-06-14,2022-03-22,2023-01-24 00:00:00,,794,1,False,False,True -278895705,795.01,,1,4,1,2,3,4,4,2.7,29.8,9.96,5,1,1,PC,PC,10.2477,0.006,,1,qlp-s63-ffi,SPOC,06:43:52.89,-55:38:20.4,0.674,0.05,12.737,0.05,2460028.221938,0.0028115,8.7610072,2.16e-05,0.941,0.159,0.554953,0.046556,511.0,42.8789,3.12142,0.195806,12.7216,526.0,13.0,216.257,1.205,6168.88,51.1185,4.24191,0.131914,1.31,0.06,-0.176312,0.0522299,1.18,0.163344,"1,2,3,4,5,6,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63",2019-06-14,2023-05-11,2023-06-16 12:14:51,centroid variation among sectors,795,1,False,False,True -277099925,796.01,,5,5,5,5,5,5,5,5.1,64.8,9.48,0,0,1,V,FA,10.721,0.6,,1,spoc,UNKNOWN,05:35:56.77,-67:27:34.54,1.43,0.055,0.65,0.057,2458325.966891,0.00053203106,0.808630838484359,4.251261e-06,3.01902824502589,0.1449003,0.96643,0.054029,889.719122173626,49.761765,3.03529643556618,0.41319102,3462.22770040128,1956.40451424564,19.006979,9590.75,1415.39,5780.0,,4.438,,1.0,,,,,,"1,3,4,6,7,8,9,10,11,12,13,27,28,29,30,31,33,34,36",2019-05-24,2021-07-28,2022-12-14 12:09:24,blue supergiant host star would put this candidate inside star; TFOP FA,796,1,False,False,True -271596225,797.01,,1,4,1,1,3,4,4,3.0,5.6,2.2,24,1,3,PC,PC,11.7144,0.007,,1,spoc-s01-s39-b0A-PC,UNKNOWN,07:14:15.14,-74:36:11.14,83.35,0.045,-127.921,0.042,2458326.817187,0.00056154723,1.80080628066534,4.8826605e-06,1.12619855535324,0.23409514,0.750652,0.046124,691.137503182201,42.48097,1.28617022204402,0.750201,66.8759898651613,729.352213604116,19.244581,56.1927,0.07895,3704.0,64.0,4.77431,0.348429,0.473702013492584,0.0140887,,,0.471474,0.0202932,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-06-14,2022-03-22,2022-12-14 12:09:24,potential L1 planet; possible multi,797,1,True,False,True -271596225,797.02,,1,4,1,1,3,4,4,1.4,4.3,2.23,24,1,3,PC,PC,11.7144,0.007,,2,spoc,UNKNOWN,07:14:15.14,-74:36:11.14,83.35,0.045,-127.921,0.042,2458327.41688,0.0009608346,4.14000265402566,1.2281158e-05,1.05237269335248,0.4611399,0.803408,0.0846,739.691965906609,77.91636,1.29715811560983,2.0582793,22.0407004809652,552.619362822861,12.782942,56.1927,0.07895,3704.0,64.0,4.77431,0.348429,0.473702013492584,0.0140887,,,0.471474,0.0202932,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36",2019-06-14,2021-07-15,2022-12-14 12:09:24,possible multi,797,2,True,False,True -271596225,797.03,,1,4,1,1,3,4,4,1.4,5.1,1.13,24,1,3,PC,PC,11.7144,0.007,,3,spoc-s01-s39-b0A-PC,SPOC,07:14:15.14,-74:36:11.14,83.35,0.045,-127.921,0.042,2458327.465968,0.0014612778,2.73095512788024,1.29845785e-05,1.35298217068249,0.33808893,0.423138,0.048778,389.648969222253,44.925613,1.04283284688167,0.4008926,38.3831075649738,634.826113108736,9.1960535,56.1927,0.07895,3704.0,64.0,4.77431,0.348429,0.473702013492584,0.0140887,,,0.471474,0.0202932,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2021-07-08,2022-03-22,2022-12-14 12:09:24,near 3:2 resonance with TOI 797.01; low SNR; potential multi,797,3,True,False,True -260640693,798.01,,3,5,5,3,3,4,4,0.3,29.5,28.13,1,2,2,PC,APC,11.908,0.018,,1,spoc-s01-s39-b0A-PC,UNKNOWN,06:31:16.92,-58:19:13.58,23.531,3.268,58.968,3.281,2458358.457919,0.0016971162,95.2394529175667,0.0002533854,1.66656206640489,0.09209507,6.267902,0.448086,5756.31977467254,412.61707,,,5.99699247430116,399.119664189854,16.888384,121.052,,4270.0,173.0,4.57808,0.227225,,,,,,,"1,4,5,6,7,8,9,10,11,12,13,28,29,30,31,32,33,34,35,36,37,38,39",2019-06-14,2022-03-22,2022-12-14 12:09:24,Gaia Teff + astrometry seem to indicate host is an M dwarf; no stellar radius,798,1,False,False,True -255685030,799.01,,1,4,1,2,3,4,4,1.9,26.5,4.6,7,1,1,PC,PC,10.5868,0.006,,1,qlp,UNKNOWN,06:33:52.59,-52:27:37.06,26.549,0.047,33.568,0.046,2458439.498293,0.0016808906,5.54519843924397,2.4577346e-05,2.28458241968688,0.42673397,0.477282,0.041458,439.49673526073,38.18314,1.9827981253041,1.4196597,199.631095048822,958.686908479794,11.187053,158.526,0.511,5643.0,188.0,4.48066,0.30271,0.915518999099731,0.047407,,,1.0,0.129836,"5,6,7,8,12,32,33,34,35",2019-06-14,2021-07-06,2022-12-14 12:09:24,potential L1 planet,799,1,False,False,True -179308757,800.01,,3,5,5,3,3,4,4,5.2,62.7,10.76,1,1,1,PC,APC,12.3323,0.009,,1,spoc,UNKNOWN,05:19:03.82,-69:38:16.53,1.856,0.063,0.651,0.078,2458354.979775,0.00092484435,0.965730347079937,6.687112e-06,3.43412187776286,0.17803527,1.083421,0.084095,997.370141624649,77.45131,3.26943444008831,0.3847999,2732.42460887599,1843.98250610236,13.379527,7596.91,1245.15,5780.0,,4.138,,1.0,,,,,,"2,3,4,5,6,7,8,9,10,12,13,27,29,30,31,32,33,34,35,36",2019-06-14,2021-01-28,2022-12-14 12:09:24,blue supergiant host,800,1,False,False,True -177258735,801.01,,2,4,2,2,3,4,4,2.7,11.5,0.68,0,2,1,PC,PC,7.5412,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,06:48:53.21,-73:17:57.6,-148.717,0.041,129.589,0.049,2460011.229459,0.0042555,0.775702545823552,7.501189e-06,1.06992306252965,0.049151093,0.046163,0.004235,42.5167723087195,3.9008453,0.904712058969192,0.47870708,8186.27322303554,2426.0028595132,13.490208,71.3672,0.12065,6283.39,44.3964,4.438,,1.35608994960785,0.0518292,,,1.23,0.175303,"1,2,3,4,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,36,37,38,39,61,62",2019-06-14,2023-04-12,2023-04-12 00:00:00,Centroid variation from sector to sector.,801,1,False,False,True -167303382,802.01,,2,4,2,2,3,4,4,1.4,20.6,0.19,0,3,1,PC,PC,7.5209,0.006,,1,spoc,UNKNOWN,06:31:56.57,-68:42:42.48,-57.122,0.056,-449.845,0.053,2459383.83837,0.0073161,3.69383762699856,1.4024961e-05,1.92036740793268,0.09974936,0.077468,0.007063,71.3477825794552,6.5048523,0.63190075642294,0.64441437,186.872184843274,942.987455482446,11.55244,28.1042,0.0231,5235.78,28.5591,4.438,,0.749819993972778,0.0367236,,,0.89,0.106524,"1,2,3,5,6,7,8,9,10,11,12,13,27,28,29,30,32,33,35,36,37,38,39",2019-06-14,2021-11-09,2022-12-14 12:09:24,Centroid variation among sectors. Gaia DR2 shows two stars within the TESS pixel. The 4'' DR2 companion is too faint to cause the signal. SPOC multisector detection. Epoch from qlp-s39-tois; all other parameters from spoc-01-39 multisector,802,1,False,False,True -143526444,803.01,,5,5,5,5,5,5,5,9.9,27.2,77.01,0,1,1,EB,FP,9.3309,0.007,,1,qlp-s61-ffi,SPOC,08:22:34.81,-19:15:16.61,-7.548,0.047,5.082,0.047,2459974.31761,0.0112209,15.3050693,0.0001821,3.872,2.27,0.836339,0.235052,770.0,216.467,10.4166,,340.827,1197.0,14.0,403.772,5.3305,5370.0,184.0,3.32339,0.486817,4.16,,-0.218126,0.040295,,,"7,8,34,61",2019-06-14,2023-03-08,2023-03-24 12:12:10,TFOP FP/NEB,803,1,False,False,True -41227743,804.01,,2,4,2,2,3,4,4,1.6,17.6,4.03,0,1,2,PC,PC,10.714,0.018,,1,qlp,SPOC,06:06:04.75,-69:25:12.86,-6.6,2.5,15.6,2.4,2459354.872017,0.0073318,2.8376065,3.34e-05,3.689,0.283,0.206309,0.077337,190.0,71.2276,,,1636.06809211309,1622.07187165006,15.0,285.647,,5988.0,192.0,4.30679,2.00394,,,,,,,"1,2,3,4,5,6,7,8,10,11,13,27,28,30,31,32,33,34,35,36,37,38",2019-06-14,2021-11-09,2022-12-14 12:09:24,Crowded field. Low SNR. Some depth aperture correlation. Asymmetric transit shape. No stellar radius.,804,1,False,False,True -38460940,805.01,,2,4,4,2,3,4,4,1.1,5.5,2.17,3,0,4,PC,PC,13.1018,0.007,,1,spoc-s01-s39-b0A-PC,QLP,04:04:32.59,-62:59:20.87,272.141,0.054,-442.905,0.057,2459357.993045,0.0019773,4.11776485649483,1.1241644e-05,1.21267504987817,0.33637387,2.11723,0.177516,1948.14057831982,163.48494,1.27614698139211,0.62429076,8.92653834719381,440.849668253998,12.71026,51.8767,0.0846,3376.0,,4.438,,0.281129002571106,0.00856972,,,0.25524,0.0202332,"1,3,4,5,7,8,11,12,27,28,29,30,31,32,34,35,37,38",2019-06-14,2022-03-21,2022-12-14 12:09:24,,805,1,False,False,True -33831980,806.01,,1,4,1,2,3,4,4,0.5,18.7,5.84,3,2,1,PC,PC,11.9763,0.006,,1,spoc,UNKNOWN,04:13:39.85,-76:05:52.85,-42.732,0.038,-74.262,0.04,2459354.184184,0.0043794,21.9165403424443,0.00011768704,3.50490600553924,0.41228026,1.353795,0.094721,1246.11395849509,87.237144,2.28202560269431,0.7547799,5.88717692544382,397.279834688585,13.879484,104.44,0.216,4130.0,171.0,4.438,,0.63160902261734,0.0584171,,,0.65,0.08282,"1,2,3,5,6,8,9,12,13,27,28,29,32,33,35,36,38,39",2019-06-14,2021-11-09,2022-12-14 12:09:24,low MES; SPOC multisector detection; epoch from qlp-s39-tois; all other parameters from spoc-s01-s39 multisector,806,1,False,False,True -30853470,807.01,,2,4,2,2,3,4,4,2.3,30.7,4.76,0,1,3,PC,PC,11.3042,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,05:03:39.82,-66:39:17.72,45.263,0.043,54.406,0.046,2458327.657733,0.0022007471,5.27022968869673,2.2135906e-05,2.11918842656019,0.21143864,0.588302,0.046572,541.699267656207,42.893032,2.02357406436986,0.27358785,70.6622603585387,739.463310889186,13.917286,106.984,0.2685,4662.0,174.0,4.56787,0.2,0.693073987960815,0.0804573,,,0.74,0.0965165,"1,2,3,4,5,6,7,8,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2019-06-14,2022-03-21,2022-12-14 12:09:24,SPOC Y1+Y3 indicates 5-sigma centroid offset; very crowded field,807,1,False,False,True -30122649,808.01,,1,4,1,2,4,4,4,2.5,38.9,5.79,1,2,6,PC,PC,10.0659,0.006,,1,spoc,UNKNOWN,08:54:59.65,-44:17:19.07,45.227,0.042,-24.871,0.061,2458526.848747,0.0024436223,9.73940894242068,4.8503764e-05,3.5625788347404,0.30716562,0.696967,0.05098,641.724082151765,46.95302,2.26963071698054,0.44483107,60.3880789256154,710.980276581831,10.951617,98.1848,0.2805,5216.0,183.0,4.52613,0.315454,0.833198010921478,0.0491985,,,0.87,0.106442,"8,9,35,36",2019-06-14,2021-07-28,2022-12-14 12:09:24,faint near neighbors,808,1,False,False,True -149301575,809.01,,1,4,1,2,3,4,4,0.2,11.9,10.49,0,1,1,PC,APC,10.3046,0.006,,1,spoc,SPOC,05:31:55.08,-60:28:36.2,8.506,0.042,91.193,0.046,2458340.472565,0.008635,183.458919,0.011896,10.764682,0.878858,0.700833,0.100578,645.283132,92.63192,3.379417,1.013043,7.05501729659892,415.665778009976,7.475879,195.029,0.8085,5804.3,76.0,3.89,0.12,1.30725,0.162266,-0.37,0.1,1.04,0.12855,"1,2,3,4,5,6,7,8,9",2019-06-14,2019-06-14,2022-12-14 12:09:24,low S/N,809,1,False,False,True -388106759,810.01,,1,4,1,2,3,4,4,0.7,12.2,7.29,0,3,3,PC,PC,10.5173,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,04:11:24.96,-69:28:29.56,-18.955,0.038,13.972,0.046,2458332.252134,0.0041984883,28.3058243764888,0.00020039099,4.92917478800004,0.6905831,0.360762,0.031611,332.21903281438,29.11396,2.60099665474146,1.7616156,55.5377103250789,696.2524594727,11.239473,232.47,1.119,5704.59,42.9664,4.09162,0.115055,1.40065002441406,0.0637915,-0.166535,0.04619,1.02,0.125359,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,36,37,38,39",2019-06-14,2022-03-21,2022-12-14 12:09:24,potential multi,810,1,True,False,True -388106759,810.02,,2,4,2,2,3,4,4,0.2,8.7,7.8,0,3,3,PC,PC,10.5173,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,04:11:24.96,-69:28:29.56,-18.955,0.038,13.972,0.046,2458406.642076,0.012174688,90.8492709841494,0.001838768,9.9324565890694,0.71714747,0.370496,0.037745,341.180979878917,34.764084,2.70612367719722,0.6434066,11.730786185241,472.01035826824,9.50019,232.47,1.119,5704.59,42.9664,4.09162,0.115055,1.40065002441406,0.0637915,-0.166535,0.04619,1.02,0.125359,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,36,37,38,39",2020-12-21,2022-03-22,2022-12-14 12:09:24,outter candidate in possible multi planet system,810,2,True,False,True -100757807,811.01,,3,4,4,3,3,4,4,19.8,104.4,130.87,6,20,1,PC,PC,10.9339,0.006,,1,qlp,UNKNOWN,05:52:07.28,-32:55:30.27,14.968,0.036,25.624,0.045,2459193.531565,0.0005494,25.1760133,2.71e-05,4.418,0.099,13.734206,0.000816,12570.0,0.751679,14.2012,0.716072,24.1525,617.0,115.0,284.002,1.711,6025.9,128.6,4.3,0.08,1.24,0.06,0.17,0.12,1.12,0.147126,"5,6,32,33",2019-06-21,2021-02-19,2022-12-14 12:09:24,could be on companion 100757804; confirmed BD (Carmichael+21),811,1,False,False,True -363914762,812.01,,3,4,4,3,3,4,4,23.7,37.9,317.0,6,10,3,PC,PC,10.9582,0.006,,1,qlp,UNKNOWN,05:56:56.56,-49:00:25.02,1.318,0.041,-2.148,0.042,2459249.58779,0.0004867,13.8665912,1.4e-05,6.491,0.063,8.644208,0.000176,7930.0,0.162,14.3875,0.604743,271.767,1131.0,86.0,426.024,3.8905,6707.0,133.4,4.2,0.09,1.57,0.07,,,1.42,0.244192,"5,6,7,32,33,34",2019-06-21,2021-03-24,2022-12-14 12:09:24,could be on 363914760,812,1,False,False,True -55525572,813.01,TIC 55525572.01,1,4,1,3,4,4,4,2.1,23.0,40.96,5,1,3,CP,CP,9.8467,0.006,,1,spoc-s01-s39-b0A-CP,UNKNOWN,04:50:46.56,-60:54:19.66,-3.733,0.047,-2.789,0.054,2459125.846913,0.0113373,83.8967527379584,0.00044815877,13.0417142004479,0.22808957,1.260115,0.04472,1159.93531583671,41.187412,7.17799244603038,0.45230278,29.583035329768,594.812973824201,26.13193,263.145,1.569,5823.7,76.0,3.77,0.12,2.04354000091553,0.0984121,-0.03,0.1,1.05,0.130094,"4,5,6,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-06-21,2022-03-30,2022-12-14 12:09:24,TOI-813 b; CTOI from Planet Hunters TESS,813,1,False,False,True -255760319,814.01,,5,5,5,5,5,5,5,4.3,33.4,12.46,0,0,1,EB,FP,8.9944,0.006,,1,qlp-s08-b03b,QLP,06:38:51.51,-53:06:27.35,5.4,0.048,-17.345,0.053,2458359.73394,0.00711,7.21048,0.00045,2.671,0.341,0.27157,0.000699,250.094,0.643423,3.7188,0.212937,124.246,930.0,14.0,196.472,1.0895,5920.4,78.3,3.91,0.33,2.14,0.06,,,1.16,0.166166,"2,5,6,7,8,12,29,32",2019-06-21,2021-12-07,2022-12-14 12:09:24,likely BEB; eclipse on a lower left neighbor; retired as NEB,814,1,False,False,True -102840239,815.01,,1,4,1,3,3,4,4,4.4,71.8,7.39,3,3,3,PC,PC,9.36,0.006,,1,qlp-s63-ffi,QLP,10:23:29.27,-43:50:05.73,8.928,0.047,7.102,0.05,2460026.624284,0.0016396,11.1972769,2.56e-05,3.061,0.434,1.413462,0.058404,1301.0,53.7906,2.62397,0.163711,33.9923,672.0,26.0,59.7117,0.1293,4953.9,107.6,4.59,0.08,0.76,0.04,0.0371026,0.039434,0.82,0.0943077,"9,36,63",2019-06-21,2023-05-05,2023-06-16 12:14:51,potential multi,815,1,True,False,True -102840239,815.02,,1,4,1,3,3,4,4,0.0,14.0,5.41,3,3,3,PC,PC,9.36,0.006,,2,qlp-s63-ffi,QLP,10:23:29.27,-43:50:05.73,8.928,0.047,7.102,0.05,2460023.129913,0.0043632,734.4987702,8.04e-05,2.529,0.588,1.090627,0.078859,1004.0,72.6296,2.1838,0.168773,9.04438,483.0,12.0,59.7117,0.1293,4953.9,107.6,4.59,0.08,0.76,0.04,0.0371026,0.039434,0.82,0.0943077,"9,36,63",2023-04-27,2023-04-27,2023-06-06 00:00:00,real period likely shorter than max period of ~734.4987 d,815,2,True,False,True -175180796,816.01,TIC 175180796.01,5,5,5,5,5,5,5,26.5,133.9,13.73,2,0,1,EB,FP,11.143,0.006,,1,qlp,QLP,07:44:02.52,-36:59:47.41,7.426,0.041,-95.61,0.048,2458493.44312,0.00335,1.55747,0.00022,2.714,0.128,3.40144,0.280865,3127.94,258.653,3.80336,1.12504,5034.13,2346.0,29.0,74.5217,0.15655,4146.6,148.6,4.6,0.12,0.62,0.04,-0.14,0.08,0.65,0.0790193,"7,8",2019-06-21,2020-12-16,2022-12-14 12:09:24,likely BEB on 175180784 (evolved star according to Gaia),816,1,False,False,True -30312676,817.01,,5,5,5,5,5,5,5,10.9,49.9,43.82,0,1,1,EB,FP,11.3029,0.006,,1,qlp-s28-tois,QLP,04:57:08.83,-66:23:25.2,1.858,0.053,-0.031,0.045,2459126.7692,0.00227,1.10223,0.0,2.598,0.365,1.102582,0.152557,1015.0,140.5,7.46940271872823,4.917793,199185.0,5885.0,7.0,7294.41,1017.21,8747.0,230.0,4.08022,1.32314,2.23767,1.46589,,,,,"1,2,3,4,5,6,7,8,10,11,12,13,27,28,29,30",2019-06-17,2022-02-15,2022-12-14 12:09:24,odd-even and a significant secondary just before 0.50 on the s27 QLP report,817,1,False,False,True -46096489,818.01,,5,5,5,5,5,5,5,105.7,274.0,117.81,0,0,1,KP,KP,10.6481,0.006,,1,spoc,UNKNOWN,14:18:43.92,-20:16:31.57,-0.04,0.082,17.257,0.061,2458598.072777,0.00045,3.118536,8.4e-05,2.043274,0.024721,13.374414,0.152551,12242.731322,140.4948,11.857124,0.105384,481.916972653351,1194.9859663829,103.52802,194.134,1.9255,5700.0,,4.49158,,0.95,,0.127692,0.0196116,1.02,0.124764,11,2019-06-17,2019-06-17,2022-12-14 12:09:24,WASP-16b,818,1,False,False,True -73717937,819.01,,5,5,5,5,5,5,5,8.9,46.1,68.16,0,0,1,KP,KP,11.7528,0.006,,1,qlp-s37-tois,SPOC,12:48:45.5,-47:36:49.24,-32.058,0.09,2.831,0.107,2459301.040554,0.0024036,16.2546802,7.18e-05,4.74,0.26,5.38774,0.002065,4950.0,1.90176,9.68176,0.544216,63.815,787.0,25.0,400.331,9.984,5846.0,,4.41665,,1.32,0.07,,,1.05,0.131523,"10,11,37",2019-06-17,2023-01-24,2023-01-26 12:09:41,HATS-17 b,819,1,False,False,True -111991770,820.01,,5,5,5,5,5,5,5,81.6,95.3,317.0,0,0,1,KP,KP,10.4445,0.006,,1,spoc,UNKNOWN,13:55:42.72,-32:09:34.96,8.77,0.065,-22.391,0.067,2458599.445086,0.0006,3.752062,0.000147,3.680056,0.038559,10.364272,0.090897,9500.430305,83.71538,14.937131,0.135883,1237.7366285637,1512.78360936095,107.7432,282.091,3.3325,6300.0,,4.16979,,1.48,,-0.1,0.1,1.176,0.152175,11,2019-06-17,2019-06-17,2022-12-14 12:09:24,WASP-15b,820,1,False,False,True -125405602,821.01,,5,5,5,5,5,5,5,1.9,66.3,7.47,8,1,6,PC,FA,11.1825,0.007,,1,spoc,SPOC,13:58:27.8,-23:16:39.26,242.852,0.08,-252.531,0.072,2458606.784642,0.002901,13.823303,0.004073,1.365217,0.266457,2.779274,0.430504,2556.532346,396.43063,2.806009,0.578105,4.54700531713439,372.435538154744,7.192833,39.5907,0.0991,3669.0,72.0,4.78896,0.361894,0.477,0.074,,,0.444969,0.0203638,11,2019-06-17,2019-06-17,2022-12-14 12:09:24,low SNR (7.3),821,1,False,False,True -127530399,822.01,,5,5,5,5,5,5,5,48.8,199.5,84.2,5,1,1,KP,KP,11.1116,0.006,,1,qlp-s38-tois,UNKNOWN,14:30:26.21,-46:09:34.26,12.561,0.074,-73.208,0.066,2459359.008313,0.000321,7.133518,5.7e-06,3.006,0.05,19.953489,0.00151,18210.0,1.39118,10.9689,0.795767,50.841,743.0,155.0,122.91,0.565,4775.0,,4.60305,,0.79,0.06,,,0.76,0.0892047,"11,38",2019-06-17,2022-03-30,2022-12-14 12:09:24,WASP-132b,822,1,True,False,True -127530399,822.02,,2,5,5,2,4,4,4,8.4,56.1,6.06,5,1,1,PC,CP,11.1116,0.006,,2,spoc,SPOC,14:30:26.21,-46:09:34.26,12.561,0.074,-73.208,0.066,2458597.575673,0.0015353507,1.01153358850429,9.7638e-06,1.62014527868664,0.25378376,0.695842,0.080192,640.689278817189,73.85662,2.33320326664293,0.4378438,871.733384334445,1385.8482224881,8.900014,122.91,0.565,4775.0,,4.60305,,0.789876997470856,0.0568267,,,0.76,0.0892047,"11,38",2021-10-28,2021-10-27,2022-12-14 12:09:24,second candidate around WASP-132,822,2,True,False,True -158978373,823.01,,1,4,1,3,3,4,4,10.1,68.4,35.71,10,2,3,PC,PC,9.9623,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,14:34:37.99,-40:44:23.51,15.019,0.086,-8.005,0.082,2459339.831788,0.0014082,13.5337577104015,3.65158e-05,3.73533182324209,0.13659362,2.429878,0.075156,2235.49755387901,69.218765,6.62187420518478,0.37373957,167.194746273524,917.118398934112,29.819788,201.873,2.6725,6309.0,196.0,4.23525,0.340612,1.30032002925873,0.0571256,,,1.24,0.178864,"11,38",2019-06-17,2022-03-18,2022-12-14 12:09:24,,823,1,False,False,True -193641523,824.01,,2,5,5,2,4,4,4,23.0,132.7,9.56,13,3,6,CP,CP,10.0732,0.006,,1,spoc-s01-s39-b0A-CP,UNKNOWN,14:48:39.71,-57:35:19.92,-51.604,0.068,-152.392,0.079,2459334.698257,0.0010261805,1.39297499860657,3.3709318e-06,1.16080856747751,0.121706225,1.830657,0.061141,1684.67632905127,56.311382,3.05041330136855,0.9649343,411.499030158347,1148.71410442631,27.406525,63.9262,0.14315,4452.0,174.0,4.49909,0.3415,0.729635000228882,0.0566885,,,0.7,0.0881697,"11,12,38",2019-06-17,2022-03-30,2022-12-14 12:09:24,TOI-824b (Burt et al 2020),824,1,False,False,True -220029715,825.01,,5,5,5,5,5,5,5,14.4,66.6,29.29,0,0,1,KP,KP,12.4284,0.006,,1,spoc-s01-s39-b0A-KP,UNKNOWN,13:55:25.62,-21:12:28.29,-43.125,0.044,-36.694,0.04,2459309.073681,0.0024305126,3.18533248357153,7.827846e-06,2.3645427706183,0.13798647,5.320004,0.222012,4887.91971452507,204.4594,5.89261201782833,0.48911616,211.616601733765,972.763313871347,19.63087,240.707,1.6385,4944.0,180.0,4.50243,2.00346,0.781958997249603,0.0462186,0.255864,0.0788158,0.819,0.0985067,"11,37",2019-06-17,2022-03-30,2022-12-14 12:09:24,HATS-7b,825,1,False,False,True -243200602,826.01,,5,5,5,5,5,5,5,30.9,142.9,82.81,0,1,1,KP,KP,10.491,0.006,,1,qlp-s64-ffi,SPOC/QLP,13:32:25.44,-42:28:30.98,6.111,0.078,-1.238,0.082,2460063.00836,0.000515,11.5509742,7.8e-06,3.571,0.061,11.835831,0.216714,10842.0,199.581,11.0252,0.604944,56.355,763.0,120.0,172.256,1.379,5625.0,,4.49092,,1.06,0.06,,,0.99,0.124152,"11,37,64",2019-06-17,2023-06-28,2023-06-28 00:00:00,WASP-130 b,826,1,False,False,True -270507305,827.01,,3,5,5,3,3,4,4,97.7,190.4,113.85,4,0,1,PC,APC,11.5746,0.006,,1,qlp-s39-tois,UNKNOWN,06:35:34.38,-79:42:56.71,-2.741,0.04,21.782,0.045,2459387.22338,0.0002157,1.2282444,4e-07,1.698,0.05,8.22841,0.007497,7550.0,6.90501,13.055,0.697207,4792.2,2317.0,260.0,336.988,2.538,5848.0,190.0,4.33233,2.00353,1.27,0.06,,,1.09,0.132523,"1,4,7,8,11,12,13,27,28,31,34,37,38,39",2019-06-17,2023-01-24,2023-01-26 12:09:41,v shaped; large; TFOP ambiguous planet candidate; possible synchronization; likely EB,827,1,False,False,True -271168962,828.01,,5,5,5,5,5,5,5,106.9,130.2,317.0,0,1,1,KP,KP,9.47199,0.006,,1,spoc-s64-b0A,SPOC,14:00:46.46,-30:35:00.99,10.294,0.129,-9.852,0.126,2460043.844612,0.00044400542,5.32205050954846,0.0001805448,3.88159642073953,0.030681096,7.148931,0.052162,6562.77948059019,48.041794,17.1038087097537,0.8589254,995.372412697982,1432.570980817,115.694046,200.075,2.625,6030.0,,4.09435,,1.95756995677948,0.0975076,-0.25,0.09,1.01,0.127613,"11,64",2019-06-17,2023-06-15,2023-06-16 12:14:51,WASP-131 b,828,1,False,False,True -276128561,829.01,,3,4,4,3,4,4,4,13.2,76.4,17.04,2,4,4,PC,PC,10.5623,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,14:56:50.01,-37:02:34.74,-68.205,0.18,-19.607,0.119,2459334.53125,0.0015830168,3.2877916038872,7.7281475e-06,2.34009946315647,0.13936068,1.933446,0.088876,1779.18519781328,81.85431,4.28540135457682,0.44446254,350.723888177403,1103.72552524614,18.113161,142.461,2.7135,5636.0,188.0,4.3723,2.00387,0.948885023593903,0.0560351,,,0.9,0.114292,"11,38",2019-06-17,2022-03-22,2022-12-14 12:09:24,,829,1,False,False,True -281924357,830.01,,3,4,3,3,3,4,4,98.8,306.1,317.0,4,0,1,PC,PC,10.9303,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,08:39:01.65,-74:45:47.21,-12.22,0.039,21.112,0.04,2459366.560467,0.00055430795,15.0405206193783,1.0557488e-05,2.27034328169371,0.0350656,19.76739,0.205827,18041.7030335083,189.55527,23.3825651815649,9.805171,79.8057648969302,762.304205452013,98.15938,222.995,1.0705,5900.0,191.0,4.36304,0.348956,1.0430999994278,0.049809,,,1.07,0.136978,"10,11,12,33,36,37,38,39",2019-06-17,2022-03-22,2022-12-14 12:09:24,nearby stars; SG1 should clear TIC 804936024; v-shaped; likely EB; likely too large for period,830,1,False,False,True -307610438,831.01,,5,5,5,5,3,5,5,402.9,345.7,317.0,4,0,1,PC,APC,8.8098,0.006,,1,spoc,UNKNOWN,15:16:08.02,-38:52:31.48,-18.5,1.2,-20.7,1.3,2458597.267945,0.000824,1.561734,7.6e-05,3.237635,0.044623,6.207315,0.10244,5700.836312,94.34616,14.531805,14.949385,1867.56919758778,1676.63653373383,51.6424,86.0601,,5808.0,190.0,4.33972,2.00354,1.14478,1.14478,,,,,11,2019-06-17,2019-06-17,2022-12-14 12:09:24,likely EB; two stars within the same pixel,831,1,False,False,True -350332997,832.01,,5,5,5,5,5,5,5,25.1,53.5,82.55,1,3,1,PC,FP,11.7611,0.006,,1,qlp,UNKNOWN,05:36:19.59,-54:11:28.32,13.661,0.039,1.427,0.045,2459357.079526,0.0005017,1.9160221,1.4e-06,1.405,0.045,2.64155,0.00065,2430.0,0.59901,10.8261,0.59309,339.505,1195.0,58.0,586.704,7.0895,5623.0,187.0,4.37483,2.0039,2.09,0.11,,,0.97,0.121111,"1,3,4,5,6,7,10,11,13,27,28,30,31,32,33,34,37,38",2019-06-17,2021-09-10,2022-12-14 12:09:24,possible 600 ppm secondary; TFOP FP; retired as EB,832,1,False,False,True -362249359,833.01,,2,5,5,2,4,4,4,7.4,10.0,2.4,6,2,3,PC,CP,10.1461,0.007,,1,spoc-s01-s39-b0A-PC,UNKNOWN,09:42:34.91,-62:28:33.19,-157.239,0.045,79.715,0.044,2458544.119992,0.0007090236,1.04189085187986,6.9690227e-06,1.20651060807253,0.22297859,0.537242,0.038121,494.696146647544,35.110287,1.35245130161204,1.2633436,270.06753491117,1033.92216242177,13.372009,41.7148,0.0418,3965.0,72.0,4.68337,0.067569,0.603335976600647,0.0177147,,,0.590802,0.0201601,"9,10,11,36,37",2019-06-17,2022-03-22,2022-12-14 12:09:24,L1 candidate,833,1,False,False,True -404340025,834.01,,5,5,5,5,5,5,5,125.7,144.4,317.0,0,1,1,KP,KP,10.7036,0.006,,1,qlp-s38-tois,UNKNOWN,13:03:18.76,-49:38:23.18,25.809,0.13,-22.57,0.083,2459359.570981,0.0001414,2.6755523,1e-06,3.065,0.013,15.296701,0.000208,13990.0,0.192006,16.4542,0.867622,963.813,1552.0,265.0,258.777,3.2545,6783.0,202.0,4.24271,0.49365,1.34,0.07,0.147754,0.0921297,1.1,0.137196,"11,37,38",2019-06-27,2022-10-04,2022-12-14 12:09:24,WASP-108b; only appears in a submitted (never accepted) 2014 paper: arXiv:1410.3449,834,1,False,False,True -405700729,835.01,,1,4,1,2,3,4,4,9.1,63.9,16.46,13,2,3,PC,PC,10.849,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,12:48:13.76,-56:53:39.55,-59.842,0.069,-11.593,0.077,2459338.280154,0.0022504027,4.79200823029156,1.0986689e-05,1.23837419611875,0.2615775,2.256521,0.181126,2076.17469028796,166.80888,4.19795538904765,1.4334643,229.225700651997,992.397306308107,13.196278,166.834,1.7535,6012.0,192.0,4.76675,0.46946,0.882827997207642,0.0481784,,,1.0,0.1207,"11,37,38",2019-06-17,2022-03-22,2022-12-14 12:09:24,low SNR; crowded field; potential L1 candidate with Rp uncertainty,835,1,False,False,True -440887364,836.01,,1,4,1,4,4,2,4,9.1,126.6,7.5,31,8,11,CP,CP,8.6486,0.006,,1,qlp,UNKNOWN,15:00:19.17,-24:27:15.13,-199.576,0.076,-27.911,0.07,2459356.164023,0.0014976,8.5954792,3.05e-05,2.47,0.421,1.238445,0.001306,1140.0,1.20287,2.64032,0.246702,40.8229,704.0,21.0,27.5024,0.02935,4476.0,175.0,4.58156,0.337936,0.69,0.06,,,0.66,0.077312,"11,38",2019-06-17,2021-07-28,2022-12-14 12:09:24,TOI 836.01; multi,836,1,True,False,True -440887364,836.02,,2,4,4,4,4,2,4,7.6,93.1,3.52,31,8,11,PC,PC,8.6486,0.006,,2,qlp,UNKNOWN,15:00:19.17,-24:27:15.13,-199.576,0.076,-27.911,0.07,2459355.705342,0.0016091,3.8167262,1.33e-05,1.602,0.128,0.62991,0.000532,580.0,0.490274,1.69257,0.158074,40.9119,704.0,17.0,27.5024,0.02935,4476.0,175.0,4.58156,0.337936,0.69,0.06,,,0.66,0.077312,"11,38",2019-06-17,2021-07-28,2022-12-14 12:09:24,TOI 836.02; multi,836,2,True,False,True -460205581,837.01,,3,5,5,3,4,4,4,21.9,126.1,39.06,9,3,3,CP,CP,9.9322,0.006,,1,qlp-s63-ffi,SPOC/QLP,10:28:08.95,-64:30:18.76,-18.017,0.039,11.307,0.037,2460022.80686,0.0007052,8.3249172,6.4e-06,1.406,0.363,4.935012,0.264788,4535.0,243.849,7.0011,0.372404,40.8042,704.0,41.0,142.488,0.4595,6513.0,199.0,4.53694,0.338064,1.01,0.04,,,1.15,0.157036,"10,11,37,38,63",2019-06-17,2023-05-05,2023-06-16 12:14:51,validated planet (Bouma+2020),837,1,False,False,True -461271719,838.01,,5,5,5,5,5,5,5,19.9,81.6,66.21,1,3,3,EB,FP,8.7823,0.006,,1,qlp,UNKNOWN,13:32:39.99,-38:50:45.41,4.757,0.122,-4.461,0.139,2459319.912483,0.0015165,7.6246687,3.1e-05,1.402,0.187,0.901535,0.001923,830.0,1.77084,9.52202,0.539066,93.0099,865.0,16.0,305.237,5.3895,7313.0,210.0,4.14443,1.636,2.63,0.1,,,1.72,0.288235,"11,37",2019-06-27,2021-08-12,2022-12-14 12:09:24,period updated to 7.62 days with s37 data; TFOP FP; retired as SB1,838,1,False,False,True -466840711,839.01,,5,5,5,5,5,5,5,97.1,230.9,317.0,0,0,0,KP,KP,14.1491,0.014,,1,spoc-s01-s39-b0A-KP,SPOC,11:07:55.17,-61:08:46.5,-4.522,0.039,2.488,0.034,2458571.551642,0.0043260483,2.48558063537043,2.4902827e-05,3.00163621343277,0.52410424,21.525595,2.661547,19630.5671979095,2448.3728,36.5091253703789,163.50601,4135.36422865922,2045.25842938821,8.80846,1627.63,76.74,6933.0,,4.25089,,1.59943997859955,,,,1.79,,"10,11,37",2019-06-17,2022-03-30,2022-12-14 12:09:24,OGLE2-TR-L9b,839,1,False,False,True -287563610,840.01,,3,5,5,3,5,4,5,14.8,54.3,55.46,1,0,3,KP,KP,13.0546,0.006,,1,qlp-s37-tois,SPOC,13:12:31.88,-45:35:26.07,-13.42,0.054,-1.788,0.052,2459328.560231,0.002208,3.7993182,1.6e-05,2.302,0.188,8.272171,0.007752,7590.0,7.13973,8.54839,,225.371,1079.0,17.0,488.176,10.773,5318.0,184.0,4.43686,2.00392,0.97,,,,0.98,,"11,37",2019-06-17,2023-01-24,2023-01-26 12:09:41,HATS-20 b,840,1,False,False,True -238932509,841.01,TIC 238932509.01,3,4,4,3,3,4,4,41.5,116.5,91.37,6,0,1,PC,PC,12.5528,0.006,,1,qlp-s38-tois,SPOC,06:19:46.32,-53:13:36.14,15.099,0.029,15.172,0.029,2459353.972698,0.0003187,3.4934316,1.7e-06,1.453,0.138,15.561007,0.005147,14230.0,4.74018,11.4663,0.770529,116.196,914.0,133.0,306.068,1.3085,5153.0,182.0,4.46892,2.00362,0.9,0.06,,,0.84,0.101332,"1,2,5,6,7,8,11,12,28,31,32,33,34,35,38",2019-06-17,2022-03-21,2022-12-14 12:09:24,,841,1,False,False,True -141768070,842.01,TIC 141768070.01,3,4,4,3,3,4,4,41.1,106.9,93.96,2,0,3,PC,PC,12.6264,0.006,,1,qlp,UNKNOWN,06:07:45.02,-73:23:30.7,9.745,0.027,-29.959,0.032,2459386.026959,0.0002799,2.7863839,1.4e-06,1.585,0.143,12.942813,0.001706,11850.0,1.57171,11.6893,0.673576,215.699,1067.0,166.0,368.8,1.8855,5376.0,185.0,4.42496,2.00401,1.0,0.06,,,0.9,0.113727,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2019-06-17,2021-11-10,2022-12-14 12:09:24,TFOP work in progress,842,1,False,False,True -437333618,843.01,,5,5,5,5,5,5,5,40.4,109.5,130.15,0,0,1,KP,KP,12.472,0.007,,1,qlp-s37-tois,UNKNOWN,13:51:37.84,-23:46:52.47,-19.483,0.067,-13.537,0.059,2459324.896648,0.0008765,4.2986477,7e-06,3.027,0.135,16.662976,0.003929,15230.0,3.61868,14.188,0.790408,326.892,1184.0,63.0,471.158,8.957501,5715.0,,4.34342,,1.12,0.06,,,1.03,0.12544,"11,37",2019-06-17,2023-01-24,2023-01-26 12:09:41,HATS-25 b,843,1,False,False,True -380886535,844.01,,5,5,5,5,5,5,5,6.3,31.1,40.76,2,4,15,PC,FP,11.7952,0.008,,1,spoc-s42-s43-b0A,QLP,01:17:50.67,00:20:49.09,-6.903,0.077,-33.44,0.059,2459451.724033,0.0034352588,8.90662508791763,0.0010360494,1.96183376529266,0.5932804,2.368219,0.275614,2178.833633788,253.81749,7.15741079171841,4.4914646,325.165130503665,1083.04310387231,7.5065594,472.297,10.8055,5829.6,138.8,4.1,0.08,1.51594996452332,0.0906633,-0.053,0.074,1.05,0.130085,"3,30,42,43",2019-07-10,2022-01-26,2022-12-14 12:09:24,centroid offset on TIC 380886534,844,1,False,False,True -32283946,845.01,,5,5,5,5,5,5,5,91.9,183.7,317.0,0,0,1,PC,FP,11.7582,0.006,,1,qlp,QLP,01:36:41.45,-31:40:14.86,16.042,0.032,2.217,0.035,2458389.0024,0.0012,7.06181,0.00108,5.853,0.127,24.980803,0.000899,22745.5,0.827632,24.7848,0.272669,721.751,1443.0,127.0,475.359,7.87,5818.3,26.9,4.4,2.0,1.49,0.01,,,1.06,0.131324,3,2019-07-10,2019-07-10,2022-12-14 12:09:24,warm Jupiter; might be too big; period might be double,845,1,False,False,True -229141709,846.01,,5,5,5,5,5,5,5,17.4,77.8,109.12,0,0,1,PC,FP,11.766,0.006,,1,qlp,QLP,01:45:30.45,-51:17:48.55,25.698,0.036,11.896,0.032,2458363.76296,0.00238,14.20489,0.00151,4.924,0.446,9.554672,0.11839,8761.57,109.035,12.4595,1.396,386.596,1235.0,45.0,446.815,4.514,6316.3,32.9,4.3,2.0,1.21,0.01,,,1.22,0.18146,3,2019-07-10,2019-07-10,2022-12-14 12:09:24,likely warm Jupiter,846,1,False,False,True -231289421,847.01,,3,4,3,3,3,4,4,42.4,44.0,317.0,3,0,1,PC,PC,12.0594,0.006,,1,qlp,UNKNOWN,02:55:30.13,-53:39:55.96,10.193,0.084,2.199,0.086,2459141.107648,0.0015911,3.2063346,7.7e-06,3.122,0.564,4.798686,0.824793,4410.0,759.374,20.2776,8.44437,2254.62,1919.0,50.0,659.753,21.123,5286.9,735.4,,,2.29,0.54,,,,,"2,3,30",2019-07-10,2020-12-21,2022-12-14 12:09:24,Gaia Rs = 2.29 Rsun; Rp would be ~20 Re,847,1,False,False,True -42015200,848.01,,5,5,5,5,5,5,5,109.3,198.0,317.0,2,0,1,EB,FP,11.6818,0.007,,1,qlp-tois-update,QLP,01:36:51.86,-39:08:33.3,21.676,0.022,-6.177,0.03,2458391.66318,0.00244,9.77742,0.00254,6.713,0.421,7.342635,0.70586,6740.0,649.91,35.6978,,480.928,1304.0,48.0,527.114,6.945,4513.0,123.0,,,2.87,,,,,,3,2019-07-10,2022-07-28,2022-12-14 12:09:24,TFOP FP; retired as EB,848,1,False,False,True -33595516,849.01,,1,5,5,1,4,4,4,13.3,72.2,12.39,10,12,9,PC,CP,11.5485,0.006,,1,qlp,QLP,01:54:51.79,-29:25:18.15,73.315,0.056,20.664,0.042,2458384.01956,0.00218,0.76566,0.00015,1.452,0.21,1.531968,0.001865,1410.0,1.71758,3.54139,0.245668,2314.06,1932.0,17.0,225.734,1.558,5311.0,132.3,4.47,0.08,0.92,0.05,,,0.914,0.108529,3,2019-07-10,2020-05-20,2022-12-14 12:09:24,flat-bottomed,849,1,False,False,False -423670610,850.01,,5,5,5,5,4,5,5,186.5,627.2,317.0,2,2,7,PC,APC,11.3488,0.007,,1,qlp,QLP,00:39:03.82,-17:13:18.5,17.649,0.093,-5.026,0.046,2458384.40921,0.00105,10.32103,0.00074,3.283,0.094,65.97679,1.637928,58957.4,1507.45,34.1767,5.55584,218.123,1070.0,72.0,342.206,5.0595,5863.5,86.1,4.38,2.0,1.28,0.04,,,1.1,0.132825,3,2019-07-10,2019-07-10,2022-12-14 12:09:24,possibly 2x period,850,1,False,False,True -40083958,851.01,,1,4,4,1,4,4,4,21.9,125.0,11.56,6,12,9,PC,PC,10.9994,0.006,,1,qlp,UNKNOWN,00:29:33.08,-10:28:05.8,134.694,0.205,48.138,0.108,2459141.24058,0.00125,0.6296,0.0,0.309,0.111,0.858071,0.041446,790.0,38.1727,3.39154,0.557635,193.701,1039.0,9.0,154.477,2.3285,5485.0,137.1,4.64,0.08,0.77,0.04,,,0.961,0.120493,"3,30",2019-07-10,2020-05-20,2022-12-14 12:09:24,short period; nearby companion with dmag 5.6,851,1,False,False,True -29918916,852.01,,4,4,4,4,4,4,4,17.9,58.2,57.49,1,14,6,PC,PC,10.9495,0.007,,1,spoc,UNKNOWN,01:38:57.66,-07:16:51.52,-0.429,0.068,-17.32,0.054,2458387.1945,0.00342,4.94664743040943,0.0008838535,3.30781899091501,0.29761133,2.742237,0.201368,2522.50698633565,185.44922,8.76237211013012,1.7204943,816.490220762883,1363.35042053084,12.794539,351.426,5.2355,5574.0,115.6,3.95,0.08,1.73496,0.0868694,,,0.98,0.12421,"3,30",2019-07-10,2020-11-24,2022-12-14 12:09:24,Confirmed Brown Dwarf,852,1,False,False,True -138727432,853.01,,3,4,3,3,3,4,4,74.8,109.0,317.0,3,14,9,PC,PC,10.7598,0.006,,1,qlp,UNKNOWN,02:11:39.43,-37:53:34.76,8.339,0.029,-13.95,0.038,2459139.838276,0.0013272,6.8646554,4.78e-05,4.725,0.492,5.54051,1.855468,5090.0,1707.49,17.29,6.32816,1640.28,1772.0,57.0,287.558,2.232,5937.0,131.1,4.19,0.08,1.38,0.07,,,1.08,0.138176,"3,30",2019-07-10,2020-12-21,2022-12-14 12:09:24,candidate for warm Jupiter,853,1,False,False,True -160222069,854.01,,3,5,5,3,3,4,4,6.7,39.9,20.6,0,0,6,PC,APC,10.717,0.006,,1,qlp,QLP,01:52:18.74,-43:02:51.41,90.961,0.057,-4.891,0.063,2459135.870907,0.0033028,5.850943,3.64e-05,2.675,0.414,1.118885,0.00197,1030.0,1.8146,4.80002,0.309347,208.275,1058.0,11.0,279.96,3.915,5928.0,131.0,4.19,0.08,1.38,0.07,,,1.08,0.137838,"3,29,30",2019-07-10,2020-12-22,2022-12-14 12:09:24,likely on 160222071 (dmag 4.2) to NE and still could be a planet; possible odd-even; depth aperture correlation,854,1,False,False,True -269558487,855.01,,3,4,4,3,4,4,4,12.0,64.1,18.29,9,5,5,PC,PC,10.6541,0.007,,1,qlp-s43-tois,QLP,01:02:10.33,-02:08:40.47,24.584,0.111,-10.31,0.072,2459497.639662,0.0012367,1.8301156,3.8e-06,1.018,0.216,1.205837,0.003576,1110.0,3.29391,4.46184,0.309321,515.147,1327.0,18.0,294.418,5.5405,6671.0,115.3,4.41,0.08,1.22,0.05,-0.43,0.12,1.41,0.23476,"3,30,42,43",2019-07-10,2022-12-12,2022-12-16 12:08:26,,855,1,False,False,True -306338882,856.01,,5,5,5,5,3,5,5,30.5,23.5,317.0,4,2,2,PC,APC,10.3244,0.008,,1,qlp,QLP,00:56:22.77,-14:47:17.98,-2.95,0.103,-2.499,0.063,2458387.38778,0.003,5.4014,0.00187,1.442,0.257,1.331918,0.004237,1225.99,3.90247,16.7216,1.23518,41.9773,709.0,12.0,574.712,13.734,5179.9,122.6,,,4.34,0.21,,,,,3,2019-07-10,2019-07-10,2022-12-14 12:09:24,hot Jupiter candidate,856,1,False,False,True -404467699,857.01,,3,5,5,3,5,4,5,79.5,87.7,317.0,0,1,4,PC,KP,10.2676,0.007,,1,qlp,UNKNOWN,01:43:29.13,-14:08:57.07,24.873,0.084,-9.773,0.06,2459137.830843,0.0003385,3.9080236,2.7e-06,3.292,0.265,8.830274,0.001936,8100.0,1.78321,15.1385,0.73671,744.132,1455.0,126.0,286.484,3.6485,6143.0,131.4,4.08,0.08,1.63,0.08,,,1.16,0.162343,"3,30",2019-07-10,2020-12-21,2022-12-14 12:09:24,likely hot Jupiter,857,1,False,False,True -198008005,858.01,,3,4,4,3,3,4,4,84.4,213.3,124.62,4,1,3,PC,PC,10.6444,0.006,,1,spoc,SPOC,04:00:47.96,-54:35:34.5,10.997,0.047,-10.99,0.044,2459088.312195,0.00036137828,3.2797281770004,2.5462343e-05,3.51870085779069,0.028268568,12.062168,0.09684,11048.1826083441,89.188705,13.8117581281785,0.6877438,913.77644296668,1402.26385271102,102.837204,250.489,1.509,5857.0,135.1,4.24,0.08,1.29746997356415,0.0636332,,,1.06,0.128916,"3,4,29,30,31",2019-07-10,2021-09-29,2022-12-14 12:09:24,may also be on 198008002,858,1,False,False,True -150430484,859.01,,3,4,3,3,3,4,4,36.2,141.0,70.08,6,1,5,PC,PC,11.9587,0.006,,1,qlp,UNKNOWN,06:28:34.56,-61:09:01.17,86.201,0.047,37.551,0.043,2459389.364571,0.0007884,5.1543182,6.6e-06,0.89,0.075,2.64155,1.033649,2430.0,951.573,9.89441,2.6467,68.1636,800.0,27.0,193.087,0.807,4971.0,128.7,4.59,0.09,0.76,0.05,,,0.82,0.0910242,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2019-07-10,2021-11-09,2022-12-14 12:09:24,,859,1,False,False,True -321011127,860.01,,3,4,4,3,3,4,4,58.6,90.1,317.0,4,0,3,PC,PC,11.6704,0.006,,1,qlp,UNKNOWN,02:54:11.08,-41:30:51.91,-0.177,0.031,-10.197,0.036,2459139.444944,0.0005809,6.4535152,7e-06,2.202,0.135,12.228856,0.080832,11200.0,74.446,19.7517,1.77562,240.342,1096.0,75.0,494.093,5.1775,5906.0,133.8,4.07,0.08,1.58,0.08,,,1.07,0.141367,"3,4,30",2019-07-10,2020-12-22,2022-12-14 12:09:24,large Rp; V-shaped; likely EB,860,1,False,False,True -372913430,861.01,,5,5,5,5,5,5,5,164.7,532.5,317.0,0,2,1,PC,FP,8.3502,0.006,,1,qlp,QLP,07:58:08.04,-60:46:49.8,-3.81,0.081,12.358,0.057,2459169.053069,0.0021841,6.7391601,2.45e-05,2.537,0.24,3.305665,0.685156,3040.0,630.853,30.8876,9.40735,5656.73,2416.0,18.0,422.358,5.8415,10341.0,224.9,3.8,0.06,3.39,0.09,,,2.66,0.34902,"1,4,5,7,8,9,10,11,27,31",2019-07-12,2021-07-29,2022-12-14 12:09:24,TFOP NEB; crowded field,861,1,False,False,True -309254930,862.01,,3,4,4,3,3,4,4,130.2,156.5,317.0,4,0,1,PC,PC,8.9904,0.007,,1,spoc-s01-s39-b0A-PC,SPOC,08:17:12.01,-65:39:25.49,-13.6,1.7,20.1,1.7,2460035.752512,0.0001876,3.3102175,7e-07,2.69483832262193,0.015957378,5.528018,0.043065,5078.55275694712,39.663754,,,528.706527509873,1222.99144092116,122.646454,,,,,,,,,,,,,"1,5,8,9,10,11,28,31,32,35,36,37,38,61,62,63",2019-07-12,2023-05-11,2023-05-11 00:00:00,variable host; visual binary; stellar companion 0.9341'' away; no stellar radius; Rp/Rs ~ 0.06,862,1,False,False,True -238898571,863.01,,2,4,2,2,3,4,4,3.7,7.4,1.65,0,3,3,PC,PC,9.954701,0.006,,1,spoc,UNKNOWN,06:14:55.06,-49:45:21.91,-15.007,0.036,38.605,0.037,2458438.457803,0.0010143536,0.525120334974246,1.1466078e-05,1.14167094078764,0.16958566,0.170716,0.019296,157.223257183663,17.772015,1.15950129096851,0.60132504,4078.17318788072,2038.15010593912,10.073673,111.279,0.2285,5867.0,190.0,4.5948,0.258772,0.85030198097229,0.0409598,,,1.0,0.128783,"5,6,7,32,33,34",2019-07-12,2019-07-12,2022-12-14 12:09:24,Centroid offset; check brighter neighbor star 238898583; both stars show energy in the difference image but it is inconsistent between the sectors; low SNR; odd-even,863,1,False,False,True -231728511,864.01,,2,4,4,2,3,4,4,6.3,13.5,0.99,9,0,5,PC,PC,11.4966,0.007,,1,spoc-s01-s39-b0A-PC,SPOC,05:25:46.41,-51:21:25.31,-123.361,0.056,5.104,0.06,2458411.153078,0.0004863466,0.520668715269019,1.0701773e-05,0.570816100211944,0.11516695,0.680574,0.072463,626.635513640334,66.73877,1.00474380108532,0.78484046,241.891654288849,1005.83089383074,14.267641,38.0915,0.0463,3460.0,,4.438,,0.39860999584198,0.0120441,,,0.38991,0.0203907,"4,5,6,27,31,32,33,37",2019-07-12,2022-03-22,2022-12-14 12:09:24,,864,1,False,False,True -44797824,865.01,,2,5,5,2,4,4,4,20.3,100.7,11.51,6,2,7,PC,APC,9.7976,0.006,,1,spoc,UNKNOWN,04:09:49.04,-26:01:19.53,-33.684,0.031,-26.61,0.044,2458411.586206,0.0003392209,0.745578662038763,9.680995e-06,0.490172409489575,0.067137666,0.8523,0.064045,784.689175750192,58.98619,3.40247397457236,1.797148,4518.57464864522,2091.07743199466,17.488182,136.022,0.478,5181.0,182.0,4.14486,0.287225,1.19843995571136,0.0637688,,,0.95,0.117878,"4,5,31",2019-07-12,2021-01-28,2022-12-14 12:09:24,not exactly synchronized; Retired as APC/VPC/SB2; see observing notes,865,1,False,False,True -381976956,866.01,,5,5,5,5,5,5,5,17.7,13.9,317.0,1,0,5,V,FA,9.0099,0.006,,1,spoc,UNKNOWN,05:10:11.18,-57:35:12.05,-28.031,0.041,-2.248,0.047,2458330.873539,0.002735,22.338916,0.000684,3.412233,0.443433,0.657662,0.087195,605.545389,80.306694,18.449977,13.532745,1556.90019670912,1602.08274501962,7.3012457,455.064,4.2105,4866.0,171.0,2.50648,0.696119,7.56825,1.72302,,,,,"1,2,3,4,5,6",2019-07-12,2020-11-16,2022-12-14 12:09:24,Could also be around 381976959; needs SG1 to check; signal not found in QLP s39,866,1,False,False,True -358460246,867.01,,2,5,5,2,3,4,4,1.0,15.4,5.56,2,1,5,PC,PC,10.4283,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,07:56:03.41,-64:56:28.16,-20.496,0.044,71.972,0.04,2458326.184606,0.0034135613,15.4043559282146,9.259739e-05,4.61969087990297,0.34261674,0.304488,0.023027,280.404900573905,21.20816,2.21814209150863,0.45746085,100.916004152967,808.369205820657,12.349574,200.12,0.8545,5777.36,113.596,4.30388,0.195352,1.23499000072479,0.0561407,0.00784038,0.1,1.04,0.124783,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-07-12,2022-03-21,2022-12-14 12:09:24,low SNR; depth aperture correlation,867,1,False,False,True -271596418,868.01,,5,5,5,5,5,5,5,3.5,27.3,4.13,3,1,1,PC,FP,10.7109,0.006,,1,spoc,SPOC,07:14:16.32,-74:58:13.9,3.562,0.032,59.957,0.04,2458325.748771,0.00151,0.556109,1.7e-05,1.096708,0.221493,0.187697,0.025124,172.860189,23.13988,1.609049,2.070679,8967.45252880377,2481.915670562,7.987135,230.697,1.043,5670.45,40.2845,4.16644,0.110912,1.18329,0.158197,-0.0318574,0.0457846,1.01,0.126285,"1,2,3,4,5,6",2019-07-12,2019-07-12,2022-12-14 12:09:24,probably NEB; V-shaped transits and ultra short period; needs SG1 to confirm if on target or neighbor; crowded field; slight centroid offset in difference images,868,1,False,False,True -200807066,869.01,,5,5,5,5,5,5,5,1.5,30.3,7.0,0,2,3,PC,FA,8.9043,0.006,,1,spoc,UNKNOWN,03:32:42.96,-51:47:18.71,103.407,0.048,111.455,0.056,2458404.081157,0.004757,26.477129,0.006738,4.930494,1.069741,0.437904,0.061721,403.243511,56.845882,2.525663,2.558902,52.994942654916,688.14246086272,8.03063,110.247,0.3125,5908.0,191.0,4.28153,0.29009,1.24169,0.163906,,,1.07,0.138607,"3,4",2019-07-12,2019-07-12,2022-12-14 12:09:24,Possible single event (second event is on momentum dump); first event could be systematic,869,1,False,False,True -219229644,870.01,,1,4,4,1,4,4,4,0.9,35.3,6.07,5,1,4,PC,PC,10.7791,0.007,,1,spoc,UNKNOWN,04:13:16.63,-50:56:39.34,105.027,0.039,50.272,0.049,2458390.800785,0.0023296175,22.0379546514083,9.714042e-05,2.50616320214489,0.25435203,1.312479,0.104167,1208.1077142403,95.93706,2.33510404657079,0.287695,4.0755023101593,362.380679897108,12.581541,53.8027,0.06305,3927.0,67.0,4.6966,0.331107,0.611136019229889,0.0180853,,,0.59708,0.0202403,"3,4,5,30,31,32",2019-07-12,2021-07-15,2022-12-14 12:09:24,weak secondary,870,1,False,False,True -219344917,871.01,,1,4,1,1,3,4,4,1.2,32.5,3.49,2,3,3,PC,PC,9.7607,0.006,,1,spoc,QLP,04:58:57.03,-50:37:38.69,-79.355,0.049,-121.707,0.055,2458417.051084,0.00207126,14.3627380327299,6.837242e-05,3.20437978230036,0.40776542,0.588604,0.044348,541.97705062335,40.845634,1.68663141422272,1.3281828,24.1363404752909,565.31122032635,12.021679,68.0473,0.10365,4939.0,180.0,4.58489,0.308587,0.732188999652863,0.0451432,,,0.81,0.0974807,"4,5,6,31,32",2019-07-12,2021-07-28,2022-12-14 12:09:24,some odd-even,871,1,False,False,True -220459826,872.01,,2,4,4,2,3,4,4,5.2,40.4,7.8,12,2,3,PC,PC,11.8348,0.006,,1,qlp,UNKNOWN,04:59:28.36,-55:55:44.62,19.247,0.042,33.917,0.048,2459385.925213,0.0012432,2.2395609,5.4e-06,0.998,0.087,1.205837,0.001474,1110.0,1.35734,2.71834,0.210489,80.151,833.0,25.0,179.254,0.692,4872.54,125.0,4.68951,0.2,0.76,0.05,0.209392,0.1,0.79,0.0945501,"2,3,4,5,6,9,10,12,13,27,29,30,31,32,33,36,37",2019-07-12,2021-11-10,2022-12-14 12:09:24,SG1 neighbour check does not detect NEB,872,1,True,False,True -220459826,872.02,,1,4,1,2,3,4,4,2.3,26.5,6.36,12,2,3,PC,PC,11.8348,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,04:59:28.36,-55:55:44.62,19.247,0.042,33.917,0.048,2458415.299111,0.0008853212,4.97276007122394,1.2578861e-05,0.681897033774121,0.255837,1.100134,0.130142,1012.74774185977,119.85806,2.3994417777444,4.2811537,103.879269690626,814.239133754843,8.581863,179.254,0.692,4872.54,125.0,4.68951,0.2,0.756359994411469,0.0519875,0.209392,0.1,0.79,0.0945501,"4,5,6,9,10,12,13,27,29,30,31,32,33,36,37,39",2021-07-08,2022-03-21,2022-12-14 12:09:24,candidate 2 in potential multi-planet system,872,2,True,False,True -237920046,873.01,,2,4,2,2,4,4,4,1.3,25.1,3.5,4,0,4,PC,PC,12.1249,0.007,,1,spoc-s01-s39-b0A-PC,UNKNOWN,03:46:56.79,-63:20:12.76,241.031,0.048,98.112,0.046,2458326.222712,0.0019678911,5.93120510162986,2.6424204e-05,2.05770330381396,0.38463053,0.995322,0.097693,916.30531407505,89.97431,1.68823540584209,0.51171046,17.0189658587694,518.027769602356,10.211816,76.9563,0.1427,3797.0,64.0,4.74005,0.340758,0.520399987697601,0.0154554,,,0.517851,0.0202854,"1,2,3,4,11,28,29,30,31,34,38",2019-07-12,2022-03-21,2022-12-14 12:09:24,check neighbors; low SNR,873,1,False,False,True -232025086,874.01,,1,4,1,1,3,4,4,2.5,32.3,4.71,0,2,3,PC,PC,8.7542,0.006,,1,qlp-s61-ffi,SPOC/QLP,06:24:16.64,-46:56:15.43,-11.745,0.038,-5.975,0.041,2459986.581877,0.0064089,5.9049399,3.45e-05,3.797,1.183,0.244318,0.018574,225.0,17.1075,2.01304,0.133943,661.809,1413.0,14.0,130.527,0.359,6437.0,198.0,4.2473,0.303189,1.42,0.06,,,1.26,0.200693,"5,6,7,32,33,34,61",2019-07-12,2023-04-04,2023-04-07 12:13:06,potential L1 planet; possible unrelated transit near TBJD 1512,874,1,False,False,True -14165625,875.01,,1,4,1,1,3,4,4,1.6,26.7,6.31,8,2,3,PC,PC,11.3877,0.006,,1,spoc,SPOC,05:12:08.93,-37:42:30.53,21.18,0.037,46.527,0.049,2458442.024946,0.005781,11.020153,0.002316,3.638535,0.756925,1.169888,0.159754,1076.926754,147.12764,2.343228,2.098464,23.8243065135594,563.475213182611,7.154832,106.12,0.2475,4407.0,174.0,4.56293,0.240923,0.719466,0.075354,,,0.67,0.0789942,"5,6",2019-07-12,2019-07-12,2022-12-14 12:09:24,,875,1,False,False,True -32497972,876.01,,1,4,1,5,3,5,5,0.6,29.8,8.13,7,4,3,PC,PC,11.534,0.007,,1,spoc,UNKNOWN,05:36:26.24,-24:14:40,102.724,0.033,-136.427,0.048,2458457.39545,0.0026864996,29.4829022033204,0.00015214829,2.36344067388814,0.54256445,2.246,0.198013,2066.50438191444,182.36015,2.77332735287241,1.4128063,3.01513133128372,336.082816405319,11.34459,78.1864,0.1803,3955.0,65.0,4.68874,0.328713,0.603739023208618,0.0180584,,,0.591129,0.0203525,"5,6,32,33",2019-07-12,2021-07-15,2022-12-14 12:09:24,potential L1 planet; P=29d,876,1,False,False,True -255704097,877.01,,5,5,5,5,3,5,5,30.7,117.8,103.96,1,4,1,EB,APC,10.6237,0.006,,1,spoc,UNKNOWN,06:36:27.63,-50:17:50.64,-7.67,0.09,10.129,0.071,2459174.828059,0.0016986494,6.01494303755119,0.0006588797,1.51136899905607,0.118950605,5.199833,0.353525,4777.77354667884,325.556,12.4147576225047,0.72455263,1280.6000161328,1525.71397876967,14.626638,452.682,8.5155,7836.0,201.7,4.14,1.6,1.59435,0.0562261,,,1.8,0.290926,"6,7,8,32",2019-04-01,2021-02-02,2022-12-14 12:09:24,TFOP APC; retired as EB,877,1,False,False,True -219380235,878.01,,5,5,5,5,5,5,5,7.0,30.6,22.39,2,1,3,V,FA,10.8239,0.006,,1,qlp,QLP,05:07:02.83,-51:46:01.04,24.993,0.053,25.261,0.064,2459196.628398,0.0115033,3.9773904,7.18e-05,2.82,1.089,1.231923,0.014729,1134.0,13.5662,5.03874,0.765135,460.733,1290.0,14.0,334.457,3.86,5518.3,121.1,3.93,0.08,1.77,0.09,0.34,0.1,0.97,0.125392,"4,5,6,30,31",2019-07-12,2020-12-22,2022-12-14 12:09:24,TFOP FP,878,1,False,False,True -37084932,879.01,,5,5,5,5,5,5,5,72.3,173.3,317.0,1,1,7,PC,FP,9.5254,0.017,,1,qlp,QLP,06:32:29.71,-03:32:41.43,-0.024,0.126,-2.476,0.122,2458470.64431,0.00102,6.58454,0.00012,3.395,0.395,5.989058,0.003415,5500.94,3.14556,,,1274.11,1664.0,88.0,602.726,24.072,8829.0,148.8,3.91,0.7,,,,,2.51,0.337469,6,2019-07-12,2019-07-12,2022-12-14 12:09:24,Clear centroid shift; Need SG1 to check the low parallax target 37161310.,879,1,False,False,True -34077285,880.01,,3,4,4,4,4,3,4,25.0,169.6,22.35,9,19,8,PC,PC,9.2563,0.006,,1,qlp,UNKNOWN,06:16:39.47,-13:59:14.41,0.962,0.056,23.237,0.056,2459224.830978,0.0005187,6.3872524,8.2e-06,2.608,0.24,3.817638,0.001073,3510.0,0.987947,5.0445,0.331905,73.9967,817.0,70.0,60.6679,0.11205,4935.0,122.3,4.52,0.09,0.82,0.05,,,0.81,0.0991949,"6,33",2019-07-12,2021-02-19,2022-12-14 12:09:24,Need SG1 to Check 34077287 (R = 2.5 Rsun); Period might be twice,880,1,True,False,True -34077285,880.02,,1,4,1,1,4,4,4,14.5,118.2,8.16,9,19,8,PC,PC,9.2563,0.006,,2,spoc,SPOC,06:16:39.47,-13:59:14.41,0.962,0.056,23.237,0.056,2459202.295333,0.0029818339,2.57359428213569,0.00054787163,2.48100639996797,0.1769986,0.803308,0.056434,739.600828260906,51.97616,2.77792285426705,0.22940397,301.866109721619,1063.09809280737,12.548503,60.6679,0.11205,4935.0,122.3,4.52,0.09,0.816999,0.0517714,,,0.81,0.0991949,33,2021-02-19,2021-02-11,2022-12-14 12:09:24,part of potential multi; 2.57 day signal,880,2,True,False,True -34077285,880.03,,1,4,1,1,4,4,4,4.0,69.3,8.57,9,19,8,PC,PC,9.2563,0.006,,3,qlp,SPOC,06:16:39.47,-13:59:14.41,0.962,0.056,23.237,0.056,2459220.659691,0.0017929,14.3318853,8.31e-05,1.596,0.398,1.075411,0.003246,990.0,2.98933,2.87022,0.239215,9.971,495.0,14.0,60.6679,0.11205,4935.0,122.3,4.52,0.09,0.82,0.05,,,0.81,0.0991949,"6,33",2021-02-19,2021-03-01,2022-12-14 12:09:24,14.3 day signal; part of potential multi,880,3,True,False,True -237808867,881.01,,5,5,5,5,5,5,5,,,317.0,2,3,6,PC,FP,9.792,0.011,,1,qlp,QLP,06:57:55.17,05:44:52.9,-4.303,0.368,-1.956,0.296,2458468.86467,0.00204,0.56708,0.0001,1.253,0.251,1.064543,0.002347,980.0,2.16154,29.9735,,3660.0,2166.0,29.0,994.732,317.089,5274.0,122.0,,,9.78,,,,,,6,2019-07-12,2020-05-20,2022-12-14 12:09:24,2 stars in the same pixel; check 237808865; TFOP NEB,881,1,False,False,True -92013169,882.01,,5,5,5,5,5,5,5,36.6,107.3,80.56,0,1,9,PC,FP,9.73965,0.006,,1,qlp-s45-tois,UNKNOWN,05:56:39.66,14:47:08.07,5.202,0.105,-11.742,0.083,2459547.669391,0.0008025,2.3552598,5.1e-06,1.124,0.335,0.98847,0.183416,910.0,168.918,10.6866,3.42394,2645.11,1997.0,26.0,387.97,9.4935,7069.0,174.9,3.88,0.09,2.37,0.11,,,1.565,0.280089,"6,33,43,44,45",2019-07-12,2022-03-10,2022-12-14 12:09:24,centroid offset TIC 92013174 (Tmag~13 ),882,1,False,False,True -123846039,883.01,,3,4,3,4,4,4,4,26.6,163.6,41.07,6,2,7,PC,PC,9.3722,0.006,,1,spoc,UNKNOWN,06:53:28.57,-06:30:28.21,-50.205,0.11,-76.037,0.112,2459210.742932,0.00069407624,10.0588732550774,0.00097002595,3.67981424250159,0.07091771,5.120135,0.082533,4704.71691557222,76.01308,7.18890091225935,0.39779305,112.781707126452,831.150012166233,53.353584,102.637,0.571,5651.0,126.5,4.43,0.07,1.01477,0.0507312,,,1.003,0.123357,33,2019-07-12,2021-04-07,2022-12-14 12:09:24,,883,1,False,False,True -167031605,884.01,,5,5,5,5,5,5,5,,,317.0,1,1,7,EB,FP,9.9534,0.032,,1,qlp-tois-update,QLP,06:15:41.05,11:49:57.44,1.717,0.106,-2.319,0.097,2458468.69741,0.00245,2.7809,0.00061,1.803,0.258,3.251214,1.576808,2990.0,1451.24,56.3202,,26869.1,3566.0,15.0,1390.46,132.62,11246.0,128.0,,,5.45,,,,,,6,2019-07-12,2022-07-11,2022-12-14 12:09:24,TFOP FP; giant star; EB with variability,884,1,False,False,True -25334160,885.01,,5,5,5,5,3,5,5,,,317.0,0,1,5,PC,APC,10.1775,0.014,,1,qlp,QLP,06:33:04.27,-10:52:14.44,-3.944,0.055,-1.974,0.059,2458471.20029,0.00644,2.56876,0.00214,2.767,0.578,0.391501,0.002211,360.521,2.0364,17.6099,1.73201,357.805,1211.0,9.0,693.394,17.5465,4312.9,136.1,,,8.43,0.53,,,,,6,2019-07-12,2019-07-12,2022-12-14 12:09:24,Large planet; might be noise or a blended signal,885,1,False,False,False -120269103,886.01,,5,5,5,5,5,5,5,47.0,110.6,317.0,0,13,7,EB,FP,8.26522,0.006,,1,spoc,UNKNOWN,06:46:46.53,-06:08:41.2,-4.955,0.101,-1.849,0.092,2459203.108337,0.0014894293,20.4276726510281,0.0021032665,5.18783270388061,0.11190236,3.249583,0.064091,2988.50207764538,59.02865,19.9576585398634,0.71937275,1594.3028140133,1611.61927429462,55.28208,364.928,7.2985,8844.0,179.9,3.76,0.07,3.25795,0.109422,,,2.225,0.303836,33,2019-07-12,2021-02-18,2022-12-14 12:09:24,TFOP FP; NEB,886,1,False,False,True -437984134,887.01,,5,5,5,5,4,5,5,41.1,164.9,117.41,0,2,3,PC,APC,8.16507,0.006,,1,qlp,QLP,06:18:10.87,15:57:07.38,1.222,0.097,-19.332,0.083,2458472.07754,0.00092,5.77114,0.00059,2.791,0.05,2.099465,0.000325,1931.81,0.299452,10.9488,0.576438,408.749,1252.0,32.0,192.612,1.9285,7173.0,181.9,4.03,0.35,2.26,0.12,,,1.665,0.291571,6,2019-07-12,2019-07-12,2022-12-14 12:09:24,Period is probably 3 times longer (~ 15 or 17 days); do reanalysis with longer period; Only two events visible; the latest is partial and might not be real,887,1,False,False,True -438295981,888.01,,5,5,5,5,5,5,5,12.6,63.6,28.62,1,2,5,PC,FP,9.52621,0.006,,1,qlp,QLP,06:26:39.85,13:17:57.77,-2.47,0.077,-14.371,0.065,2458472.15837,0.00314,3.96643,0.00167,2.025,0.28,0.899765,0.002003,828.371,1.84461,5.99981,0.331791,376.453,1227.0,17.0,263.022,3.008,6565.2,95.4,4.09,0.37,1.9,0.05,,,1.471,0.255432,6,2019-07-12,2019-07-12,2022-12-14 12:09:24,A clear centroid shift; signal comes from a blended star. Check neighbors,888,1,False,False,True -284288080,889.01,,5,5,5,5,5,5,5,13.1,53.4,29.39,0,0,1,PC,FP,10.8457,0.006,,1,qlp,QLP,07:06:35.95,-53:32:47.16,-3.782,0.056,-3.748,0.05,2458469.90719,0.00309,1.83485,0.00022,2.673,0.597,1.303666,0.002211,1200.0,2.03671,5.90327,0.371084,3996.1,2215.0,27.0,388.477,4.375,6466.0,129.5,4.11,0.09,1.68,0.07,,,1.32,0.209578,"6,7,8,9",2019-07-12,2020-05-20,2022-12-14 12:09:24,blended with something faint; and the matches 284288094 or 284288093 is an EB but with the period 7.3 days,889,1,False,False,True -333607525,890.01,,5,5,5,5,3,5,5,316.8,828.8,317.0,1,1,3,PC,APC,10.936,0.007,,1,qlp-s33-tois,QLP,06:41:27.17,-12:17:06.16,-10.0,1.9,-0.6,1.9,2459226.741148,0.0005088,3.2022978,5e-06,3.51,0.397,46.382246,0.104488,41820.0,96.232,34.5557,,1640.28,,65.0,474.565,,6600.0,351.5,4.17,1.78,1.67,,,,,,"6,33",2019-07-12,2022-07-11,2022-12-14 12:09:24,TFOPWG APC; retired as SB2,890,1,False,False,True -33690636,891.01,,5,5,5,5,5,5,5,3.9,33.6,7.73,0,1,1,PC,FP,11.0427,0.006,,1,qlp,UNKNOWN,06:12:29.35,-16:47:31.35,-11.768,0.053,-25.565,0.06,2458468.9545,0.00672,4.99915,0.00244,5.256,0.449,0.743192,0.002005,684.271,1.84694,2.28122,0.193112,386.241,1235.0,10.0,123.997,0.453,4696.0,155.9,,,0.79,0.05,,,0.699,0.0849539,6,2019-07-12,2019-07-12,2022-12-14 12:09:24,Centroid page weirdness; check all neighbors,891,1,False,False,True -66561343,892.01,,3,5,5,3,4,4,4,21.5,89.6,99.21,3,14,7,PC,CP,10.9739,0.03,,1,qlp,UNKNOWN,05:46:57.17,-11:14:07.22,-0.143,0.086,5.967,0.096,2459219.552074,0.0007998,10.6265837,1.66e-05,5.415,0.119,8.20653,0.000696,7530.0,0.641108,12.0335,0.407719,571.007,1361.0,79.0,340.543,4.827,7723.0,270.7,4.43,0.08,1.35,0.04,,,1.82,0.307281,"6,33",2019-07-12,2021-02-19,2022-12-14 12:09:24,TFOP CP,892,1,False,False,True -123958679,893.01,,3,4,3,3,4,4,4,6.3,27.7,67.35,0,1,7,PC,PC,11.4847,0.022,,1,qlp,QLP,06:54:42.86,-07:07:52.74,0.518,0.065,-0.644,0.074,2459210.205916,0.0136694,5.6148305,0.0001365,3.829,0.944,2.500069,0.012575,2300.0,11.582,9.62058,1.11908,3420.14,2130.0,8.0,1241.42,70.575,9856.0,389.3,4.01,0.08,2.59,0.15,,,2.52,0.355635,"6,33",2019-07-12,2020-05-20,2022-12-14 12:09:24,,893,1,False,False,True -42755801,894.01,,5,5,5,5,5,5,5,68.9,136.8,317.0,0,1,10,EB,FP,9.1672,0.033,,1,spoc,UNKNOWN,06:27:10.54,-04:46:48.36,-5.237,0.26,-4.108,0.228,2459204.186948,0.0032711097,4.34395490325724,0.0010859455,6.22417572776207,0.24710892,1.561265,0.07079,1436.94438114101,65.19825,22.4556214566971,11.748357,25005.6590163469,3207.22424091459,17.14241,661.74,108.299,9900.0,580.3,3.68,0.13,3.82895,0.559158,,,2.53,0.377302,"6,33",2019-07-12,2021-02-18,2022-12-14 12:09:24,V shaped; TFOP FP; retired as NEB,894,1,False,False,True -250484865,895.01,,5,5,5,5,5,5,5,5.8,63.2,2.88,6,5,7,PC,FP,8.7973,0.006,,1,qlp,QLP,06:16:49.36,-02:55:44.9,23.14,0.068,-61.444,0.066,2458468.75811,0.00645,0.76189,0.00043,1.904,0.272,0.206309,0.000685,190.0,0.630631,1.50503,0.119189,6450.77,2496.0,10.0,96.3043,0.3819,5998.0,121.7,4.39,0.08,1.11,0.05,,,1.11,0.142881,6,2019-07-12,2020-05-20,2022-12-14 12:09:24,crowded field; might be variability,895,1,False,False,True -102283403,896.01,,5,5,5,5,5,5,5,7.3,64.7,10.36,0,4,12,PC,FA,9.08959,0.006,,1,qlp,QLP,05:56:37.1,10:33:06.33,-10.692,0.072,1.799,0.064,2458471.13285,0.00712,3.52985,0.0027,1.907,0.551,0.608183,0.005744,560.0,5.29033,3.20773,0.372829,489.2,1310.0,9.0,156.139,0.998,6627.0,128.9,4.31,0.09,1.37,0.06,,,1.39,0.233785,6,2019-07-12,2020-05-20,2022-12-14 12:09:24,marginal signal,896,1,False,False,True -229384040,897.01,,5,5,5,5,5,5,5,8.3,59.8,8.51,1,56,13,EB,FP,9.11269,0.006,,1,qlp,UNKNOWN,06:34:23.46,08:24:49.05,-13.628,0.066,-67.866,0.058,2458469.29528,0.01035,1.29277,0.00099,2.413,0.549,0.358352,0.001569,330.0,1.44527,2.84487,0.251572,3925.31,2205.0,10.0,165.943,1.114,6128.0,132.0,4.08,0.08,1.62,0.07,,,1.158,0.15674,6,2019-07-12,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as NEB,897,1,False,False,True -124543547,898.01,,5,5,5,5,5,5,5,,,317.0,0,2,5,PC,FP,10.5672,0.009,,1,qlp,QLP,06:57:55.37,-09:55:29.46,4.912,0.109,-21.569,0.111,2458487.5,0.0,0.0,0.0,7.352,0.649,6.534039,,6000.0,,19.7649,2.75132,5400.0,2388.0,15.0,479.081,13.379,5652.0,266.8,4.32,2.0,2.74,0.25,,,1.07,0.14116,6,2019-03-21,2019-03-21,2022-12-14 12:09:24,single-transit,898,1,False,True,True -177162886,899.01,,3,4,4,3,3,4,4,18.2,78.6,92.52,5,0,1,PC,PC,11.5865,0.006,,1,qlp,UNKNOWN,06:57:58.19,-71:31:23.18,-6.952,0.043,0.834,0.045,2459379.870987,0.0003559,12.8461782,6.9e-06,2.883,0.15,9.662491,0.000556,8860.0,0.511763,11.6129,0.665899,42.801,712.0,140.0,304.798,2.1015,5591.0,125.0,4.30695,0.2,1.19,0.07,0.222103,0.1,0.99,0.120724,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,29,30,31,32,33,34,35,36,37",2019-07-15,2021-11-09,2022-12-14 12:09:24,,899,1,False,False,True -210873792,900.01,,1,4,1,1,3,4,4,3.7,37.8,8.09,0,1,3,PC,PC,11.9085,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,16:23:37.23,-31:22:24.87,-89.072,0.109,-117.306,0.077,2458626.484539,0.0055813696,4.84941081578386,5.621754e-05,5.22663680314133,0.60119057,1.457971,0.134612,1341.94012579746,123.974266,2.76503406329275,0.4910216,56.8561171263638,700.348251694705,9.014666,121.037,0.742,3861.0,142.0,4.71767,0.400347,0.680710971355438,0.0617663,,,0.666,0.0818058,"12,39",2019-07-15,2022-03-22,2022-12-14 12:09:24,slight centroid offset to NE,900,1,False,False,True -214361331,901.01,,3,4,3,3,3,4,4,76.6,231.2,86.52,5,1,1,PC,PC,9.6877,0.006,,1,spoc,SPOC,17:24:15.08,-50:23:09.78,-9.514,0.079,-22.793,0.069,2459362.247825,0.0008366277,3.23084229205584,0.00020717378,0.928269923202792,0.08167249,2.638754,0.16448,2427.4314637798,151.48016,11.1443639928514,15.465436,1292.70152260324,1529.30572614935,17.397303,190.467,1.56,7062.0,206.0,4.49596,0.535849,1.38435995578766,0.065,,,1.24,0.185574,"12,39",2019-07-15,2021-09-24,2022-12-14 12:09:24,Low priority; possible EB; possibly synchronized,901,1,False,False,True -216935214,902.01,,3,5,5,3,3,4,4,16.3,70.5,69.13,4,0,3,PC,APC,8.957,0.006,,1,qlp-s39-tois,UNKNOWN,17:17:58.99,-45:53:00.8,3.534,0.076,-5.92,0.055,2459363.608567,0.0020558,18.2592672,7.07e-05,1.27,0.132,1.662448,0.00295,1530.0,2.7174,9.78698,0.604109,5.49651,426.0,14.0,219.439,1.9595,7142.0,207.0,4.15713,1.69746,2.3,0.1,,,1.27,0.189779,"12,39",2019-07-15,2023-01-24,2023-01-26 12:09:41,,902,1,False,False,True -238197638,903.01,,3,4,4,3,3,4,4,11.7,35.0,92.34,6,2,3,PC,PC,11.7874,0.006,,1,qlp-s39-tois,SPOC,03:49:57.37,-72:47:37.43,3.914,0.038,13.088,0.04,2460044.048378,0.0024396928,7.2766004,2.51e-05,4.626,0.479,2.652434,0.000562,2440.0,0.517164,11.5799,0.570533,591.917,1374.0,57.0,739.231,10.915,6266.0,41.0,4.27,0.17,2.21,0.1,0.180043,0.0652891,1.17,0.154425,"2,3,5,6,9,10,12,13,27,28,29,30,32,33,36,37,61,63,64",2019-07-15,2023-06-15,2023-06-15 00:00:00,TOI 903.01. TFOP investigation in progress.,903,1,False,False,True -261257684,904.01,,1,4,1,1,4,4,4,2.7,61.3,7.08,7,4,6,PC,PC,10.846,0.007,,1,spoc-s01-s39-b0A-PC,UNKNOWN,05:57:29.11,-83:07:47.02,-28.941,0.032,110.858,0.033,2459366.628641,0.004523604,10.8772678812527,3.553953e-05,2.90770240441174,0.14771204,2.031688,0.090431,1869.50424041447,83.286354,2.55603890014156,0.1428659,8.31687137765208,433.121503333869,20.833632,46.0891,0.0349,3992.0,170.0,4.61929,0.240707,0.532438993453979,0.0157936,,,0.529185,0.0202724,"12,13,27,38,39",2019-07-15,2022-03-18,2022-12-14 12:09:24,v-shaped; potentially multi in habitable zone,904,1,True,False,True -261257684,904.02,TIC 261257684.02,1,4,1,1,4,4,4,0.1,28.2,6.26,7,4,6,PC,PC,10.846,0.007,,2,spoc-s01-s39-b0A-PC,SPOC,05:57:29.11,-83:07:47.02,-28.941,0.032,110.858,0.033,2458714.35119,0.007845261,83.9996067446812,0.0051153237,5.08103058820317,0.4405461,2.146051,0.207983,1974.63382816571,191.5411,2.37754554034423,0.47776812,0.0858097740796583,138.039678524057,10.529483,46.0891,0.0349,3992.0,170.0,4.61929,0.240707,0.532438993453979,0.0157936,,,0.529185,0.0202724,"12,13,27,38,39",2022-04-20,2022-04-20,2022-12-14 12:09:24,potential multi; CTOI from Hugh Osborn; alerted at CTOI period which is 1/4 of period in SPOC multisector report,904,2,True,False,True -261867566,905.01,,3,5,5,3,4,4,4,119.9,310.9,127.64,5,1,3,CP,CP,10.5721,0.006,,1,spoc-s01-s39-b0A-CP,UNKNOWN,15:10:38.08,-71:21:41.87,-25.839,0.033,-41.15,0.051,2459365.045441,0.00034955077,3.73956877495233,1.2800473e-06,2.02247178092664,0.01474291,16.974742,0.12002,15512.7340354104,110.53672,14.0081928281824,0.7335234,353.314583406847,1105.75812829741,169.74754,158.649,0.7215,5565.0,187.0,4.46277,0.287097,1.00018000602722,0.0521105,,,0.93,0.120097,"12,38,39",2019-07-15,2022-03-30,2022-12-14 12:09:24,TOI-905 b,905,1,False,False,True -298372701,906.01,,3,4,4,3,3,4,4,49.5,170.8,43.78,6,6,3,PC,PC,8.5097,0.006,,1,qlp-s39-tois,UNKNOWN,15:59:18.12,-49:21:59.99,-28.638,0.106,-38.072,0.084,2459385.040754,0.0005288,1.6647837,2.5e-06,1.162,0.062,1.303666,0.000609,1200.0,0.560566,5.04687,0.483129,737.927,1452.0,37.0,133.752,1.0755,5954.53,53.0596,3.68582,0.109431,1.42,0.13,-0.1648,0.072,,,"12,39",2019-07-15,2022-03-21,2022-12-14 12:09:24,visual binary; v-shaped;,906,1,False,False,True -305424003,907.01,,3,4,3,3,3,4,4,26.8,85.9,67.34,8,10,3,PC,PC,9.9444,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,17:28:44.02,-62:50:25.38,-1.388,0.041,-37.836,0.056,2459388.154369,0.0042167,4.58491290523032,8.883302e-06,5.24939743260557,0.12818953,2.283606,0.056007,2101.06827941361,51.583145,9.61588513313588,0.6116279,1729.67143481752,1644.79074217439,28.746328,312.529,4.21,6272.0,196.0,3.8399,0.756872,2.05978989601135,0.0922839,,,1.2,0.172843,"12,39",2019-07-15,2022-03-21,2022-12-14 12:09:24,Large planet candidate; low priority,907,1,False,False,True -350153977,908.01,,1,4,4,1,3,4,4,5.8,46.9,9.81,8,3,1,PC,PC,10.6513,0.006,,1,qlp-s39-tois,UNKNOWN,03:32:38.26,-81:15:02.68,5.839,0.04,-0.307,0.044,2459384.290582,0.0018662,3.1837961,1.12e-05,2.045,0.193,0.847205,0.00069,780.0,0.63553,3.08972,0.197562,290.359,1150.0,21.0,175.748,0.636,5500.0,76.0,4.99,0.12,1.05,0.06,0.0,0.1,0.96,0.125324,"1,12,13,27,28,39",2019-07-15,2022-03-21,2022-12-14 12:09:24,,908,1,False,False,True -364107753,909.01,,5,5,5,5,5,5,5,10.6,110.9,5.77,1,1,1,PC,FP,7.0514,0.006,,1,spoc,SPOC,16:45:27.01,-71:50:22.52,40.743,0.043,53.07,0.058,2458628.087364,0.002411,3.904822,0.000618,4.457798,0.278827,0.30823,0.017284,283.849684,15.91915,2.734598,0.815755,871.545997396514,1385.77374134637,14.474022,51.8209,0.0908,6059.06,50.4474,4.29,0.11,1.57848,0.175839,-0.51,0.05,1.13,0.152036,12,2019-07-15,2019-07-15,2022-12-14 12:09:24,High priority (2.7 Rp); bright; nearby star,909,1,False,False,True -369327947,910.01,,1,4,4,1,3,4,4,5.2,29.1,0.75,12,0,3,PC,PC,10.1508,0.007,,1,spoc,UNKNOWN,19:20:57.11,-82:33:35.24,342.184,0.072,-1230.22,0.079,2459389.145721,0.0010217,2.0290881904027,5.853753e-06,0.693981244750495,0.22118875,1.062438,0.079248,978.062703482612,72.98734,0.929147180140516,0.69685763,22.0716059099443,552.812981502343,15.433505,12.4814,0.0065,3194.0,101.0,4.96718,0.069791,0.287497013807297,0.00950598,,,0.262417,0.0206699,"12,13,27,39",2019-07-15,2021-11-16,2022-12-14 12:09:24,potential L1 planet; epoch is from qlp-s39-tois; all other parameters are from spoc-s01-s39 multisector,910,1,False,False,True -389070884,911.01,,5,5,5,5,3,5,5,211.5,315.1,317.0,3,0,1,PC,APC,7.9771,0.006,,1,qlp,UNKNOWN,17:29:20.46,-38:38:45.49,-5.439,0.087,-76.767,0.068,2459383.267393,0.0002799,8.5841826,6.8e-06,1.951,0.069,8.74271,0.051795,8020.0,47.7036,16.6337,1.36431,129.678,940.0,56.0,84.7758,0.3915,5963.0,80.0,4.438,,1.45,0.07,,,1.09,0.140014,"12,39",2019-07-15,2021-08-19,2022-12-14 12:09:24,Low priority; TFOP APC; possible SB1; crowded field,911,1,False,False,True -406941612,912.01,,1,4,1,1,3,4,4,4.7,86.4,3.89,8,1,3,PC,PC,10.4904,0.007,,1,qlp,UNKNOWN,15:17:18.86,-80:28:24.04,-450.955,0.04,-93.819,0.042,2459386.254252,0.0014867,4.6780703,1.33e-05,1.491,0.274,1.521096,0.001573,1400.0,1.44866,1.81115,0.0783124,13.6654,535.0,32.0,26.1072,0.01665,3566.0,66.0,4.83519,0.370781,0.43,0.01,,,0.421006,0.0203416,"12,13,39",2019-07-22,2021-08-24,2022-12-14 12:09:24,Potentially small planet (2.22 Re),912,1,False,False,True -407126408,913.01,,1,4,1,1,3,4,4,3.7,63.0,6.87,8,3,3,PC,PC,9.6181,0.006,,1,spoc,UNKNOWN,15:38:17.36,-80:48:12.34,-40.069,0.04,83.388,0.043,2458625.219269,0.006027,11.094122,0.003812,3.309572,0.411444,1.229739,0.107732,1131.990523,99.21955,2.558498,1.037839,36.0931589571763,625.138106708585,11.000667,65.1769,0.0991,4948.0,180.0,4.60394,0.311168,0.745964,0.108289,,,0.82,0.0972518,12,2019-07-15,2019-07-15,2022-12-14 12:09:24,High priority; small (2.56 Re); potential multiplanet system; will see again,913,1,False,False,True -153027658,914.01,,5,5,5,5,5,5,5,12.2,38.2,36.24,2,1,4,EB,FP,10.2413,0.006,,1,qlp,QLP,03:14:54.26,-44:57:42.68,-31.351,0.914,-22.988,1.315,2458384.9247,0.0034,2.3374921,1.03e-05,2.279,0.371,0.825473,0.001399,760.0,1.28847,4.00659,0.483414,975.016,1556.0,27.0,233.2062,28.1867,5963.4,347.5,3.65,0.1,1.54,0.17,-0.95,0.08,,,"3,4,30,31",2019-07-23,2021-01-05,2022-12-14 12:09:24,v-shaped; likely offset to W,914,1,False,False,True -259389219,915.01,,5,5,5,5,5,5,5,27.4,65.8,80.77,3,1,1,PC,FP,11.2486,0.006,,1,qlp,UNKNOWN,04:35:12.91,-51:23:47.62,-9.856,0.034,-1.993,0.042,2459199.865578,0.0010627,2.3250156,5.7e-06,1.775,0.405,1.227576,0.020967,1130.0,19.3113,10.7275,1.12022,2083.06,1882.0,18.0,506.371,4.8725,5753.0,127.6,3.83,0.08,2.05,0.1,,,1.03,0.129552,"3,4,5,30,31,32",2019-07-23,2021-02-02,2022-12-14 12:09:24,TFOP investigation in progress.,915,1,False,False,True -348844154,916.01,,5,5,5,5,5,5,5,12.4,22.1,317.0,0,0,1,EB,FP,11.2532,0.006,,1,qlp-s04-b02,QLP,07:03:49.6,-60:17:50.97,-9.046,0.037,33.673,0.04,2458343.2066,0.00401,29.17362,0.00233,8.075,0.499,6.052282,0.024702,5558.85,22.7513,15.4676,1.2126,167.644,1002.0,53.0,427.276,3.7265,5493.2,126.6,3.92,0.52,1.89,0.09,,,1.05,0.133358,4,2019-07-23,2021-12-07,2022-12-14 12:09:24,slightly off target; hint of an odd-even difference; retired as NEB,916,1,False,False,True -207237016,917.01,,3,4,4,3,3,4,4,59.9,214.7,317.0,6,0,3,PC,PC,11.2459,0.006,,1,qlp,QLP,03:19:15.95,-59:24:00.39,14.253,0.041,11.78,0.042,2459130.974624,0.0014286,26.4126931,6.94e-05,2.956,0.193,5.082264,1.292491,4670.0,1189.72,37.1984,10.1169,43.7473,716.0,23.0,704.528,10.789,6070.0,123.6,3.65,0.08,2.63,0.12,,,1.13,0.157274,"2,3,4,29,30",2019-07-23,2020-12-22,2022-12-14 12:09:24,2xP,917,1,False,False,True -294869729,918.01,,5,5,5,5,5,5,5,10.4,23.6,33.26,2,1,3,PC,FP,11.2716,0.006,,1,qlp,QLP,04:47:11.81,-68:59:08.31,3.379,0.057,7.2,0.055,2459199.904943,0.0032227,1.1140067,6.1e-06,3.072,0.457,0.445243,0.001013,410.0,0.93294,6.34675,0.441032,6504.41,2501.0,20.0,549.872,6.956,5614.0,126.5,3.5,0.08,2.94,0.14,,,0.99,0.12566,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31",2019-07-23,2021-01-28,2022-12-14 12:09:24,may be real HJ around giant star.,918,1,False,False,True -150167117,919.01,,5,5,5,5,3,5,5,79.9,267.0,317.0,2,0,5,PC,APC,11.1835,0.006,,1,spoc-s01-s39-b0A-APC,UNKNOWN,06:13:39.26,-62:13:11,-12.295,3.049,23.012,2.331,2459366.265666,0.00062319345,20.0272683138308,3.5092708e-05,2.57883475120803,0.0264863,19.133088,0.14798,17467.8615166996,136.28511,24.3073058749193,8.669071,53.3787916337211,689.385165953378,140.42935,,,5811.1,125.0,,,1.13699996471405,0.29772,-0.221005,0.1,,,"27,28,29,30,31,32,33,34,35,36,38,39",2019-04-01,2023-01-24,2023-01-26 12:09:41,large; v-shaped; likely EB; TFOP APC; formerly FP/EB; large radius for orbital period,919,1,False,False,True -271722899,920.01,,5,5,5,5,5,5,5,,,317.0,0,1,1,PC,FP,11.191,0.006,,1,qlp,QLP,07:21:15,-73:27:11.64,1.064,0.043,7.226,0.046,2458335.23411,0.00239,19.2998,0.0,3.17,0.382,2.026549,0.002794,1864.78,2.57372,,,16.9727,565.0,29.0,3540.18,305.4,3818.0,163.0,,,,,,,,,4,2019-07-23,2020-06-29,2022-12-14 12:09:24,period is double; star is likely a giant; TFOP FP,920,1,False,False,True -278775625,921.01,,2,4,2,2,3,4,4,2.8,27.6,10.04,0,1,3,PC,PC,11.2559,0.006,,1,qlp-s39-tois,UNKNOWN,06:38:41.81,-56:13:13.94,0.263,0.04,33.507,0.05,2459385.454693,0.0019948,5.1287186,1.8e-05,1.895,0.164,0.673365,0.000654,620.0,0.602493,3.13438,0.169512,136.113,951.0,17.0,294.015,2.0195,6055.5,112.5,4.38,0.08,1.14,0.05,-0.0579013,0.0486604,1.13,0.150113,"1,2,3,4,5,6,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2019-07-23,2022-03-22,2022-12-14 12:09:24,,921,1,False,False,True -278199349,922.01,,5,5,5,5,5,5,5,,,317.0,1,0,1,PC,FP,11.499,0.006,,1,qlp,QLP,07:23:33.7,-79:30:15.08,0.084,0.029,-4.817,0.033,2458418.21857,0.00159,9.46516,0.00275,3.951,0.391,11.956907,0.089049,10952.3,82.0134,,,83.6782,842.0,42.0,1220.48,24.485,4120.0,171.0,,,,,,,,,4,2019-07-23,2020-06-29,2022-12-14 12:09:24,giant; TFOP EB,922,1,False,False,True -301051430,923.01,,5,5,5,5,5,5,5,8.0,45.6,19.32,5,3,3,PC,FP,11.0264,0.006,,1,spoc,UNKNOWN,03:20:08.72,-45:03:42.66,25.459,0.036,12.055,0.046,2459146.870441,0.004337791,3.27346709445339,0.0010330994,1.75814448795824,0.28840753,1.048048,0.141781,964.822253366592,130.57622,4.6127135988039,0.5392339,921.249459600315,1405.12208900932,7.694566,302.944,2.087,6049.0,136.2,4.3,0.09,1.2461,0.060309,,,1.13,0.15102,31,2019-07-23,2020-12-22,2022-12-14 12:09:24,Centroid offset centered on nothing in S31. Weak signal; possibly V,923,1,False,False,True -382068562,924.01,,3,4,4,3,3,4,4,47.1,87.5,317.0,2,0,1,PC,PC,11.3593,0.006,,1,qlp-s39-tois,UNKNOWN,05:18:37.65,-55:53:18.82,-5.0,0.032,54.438,0.038,2459373.317914,0.0001271,12.1273927,2.8e-06,1.859,0.032,20.606151,0.016907,18800.0,15.5718,15.6802,0.868684,32.4718,665.0,358.0,251.24,1.077,5682.0,128.9,4.45,0.08,0.99,0.05,,,1.01,0.127576,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2019-07-23,2022-03-21,2022-12-14 12:09:24,v-shaped transit and large Rp for given period; Gaia DR2 error 5.51 km/s; likely EB,924,1,False,False,True -300599466,925.01,,5,5,5,5,5,5,5,,,317.0,0,1,1,EB,FP,11.3377,0.006,,1,qlp-tois-update,QLP,07:32:11.44,-68:00:44.24,2.81,0.047,0.639,0.052,2458331.86537,0.00222,13.17741,0.00018,2.75,0.527,1.901703,0.003395,1750.0,3.12692,49.318,,44.0738,717.0,32.0,1811.81,85.235,5027.7,74.0,,,10.05,,-0.65,0.11,,,"1,2,3,4,5,6,7,8,9,11,12,13",2019-07-23,2022-07-11,2022-12-14 12:09:24,TFOP NEB; giant star,925,1,False,False,True -176796997,926.01,,3,4,4,3,3,4,4,,,317.0,5,2,4,PC,PC,10.5926,0.006,,1,spoc,UNKNOWN,03:13:30.89,-32:00:20.05,-4.2,2.5,-12.1,2.5,2459144.973567,0.0016578857,1.80015643382262,0.0002187402,1.22533369340308,0.114707574,1.775907,0.350106,1634.3340905668,322.40735,5.19872594084686,1.4815042,1065.7120348797,1457.23541439348,14.593867,216.207,,5658.4,106.1,,,1.0,,-0.24,0.09,,,31,2019-07-23,2020-05-20,2022-12-14 12:09:24,TOI 926. TFOP investigation in progress. Rstar = 2.6 Rsun from GAIA.,926,1,False,False,True -261258875,927.01,,5,5,5,5,5,5,5,7.5,35.6,19.67,1,1,3,PC,FP,9.2691,0.006,,1,qlp,QLP,05:58:55.38,-79:44:36.15,-2.119,0.179,23.541,0.18,2458327.45003,0.00426,2.5852,2e-05,1.963,0.395,0.314909,0.0005,290.0,0.460655,4.66502,0.305191,1150.76,1622.0,20.0,314.616,9.2115,6639.0,127.5,3.73,0.09,2.66,0.13,,,1.4,0.231032,"1,4,5,7,8,11,12,13,27,28",2019-07-09,2020-10-26,2022-12-14 12:09:24,minor centroid offset,927,1,False,False,True -300557619,928.01,,5,5,5,5,5,5,5,16.1,41.4,317.0,1,1,1,EB,FP,11.4124,0.006,,1,qlp-s04-b02,QLP,07:30:23.82,-71:35:43.67,-22.505,0.042,37.897,0.045,2458350.32222,0.00158,30.57908,0.00067,6.297,0.332,14.177198,0.055927,12972.8,51.5093,14.1152,0.912472,81.7492,837.0,75.0,310.211,2.2835,5848.0,42.2,4.35,0.17,1.13,0.02,-0.106992,0.0906213,1.1,0.142807,"1,4",2019-01-18,2021-12-07,2022-12-14 12:09:24,TFOP FP; retired as NEB,928,1,False,False,True -175532955,929.01,,2,4,2,2,3,4,4,3.5,38.4,7.75,1,2,3,PC,PC,11.4337,0.006,,1,qlp,UNKNOWN,03:03:37.72,-39:55:50.79,212.275,0.036,43.11,0.039,2459169.679461,0.0024797,5.830149,2.82e-05,2.618,0.322,1.423247,0.002031,1310.0,1.87049,2.70505,0.241415,59.7261,774.0,13.0,114.421,0.2935,4451.0,122.1,4.57,0.1,0.72,0.06,,,0.7,0.0881281,"3,4,30,31",2019-07-23,2021-02-01,2022-12-14 12:09:24,,929,1,False,False,True -100921768,930.01,,3,4,3,3,3,4,4,10.3,39.2,35.26,0,1,3,PC,PC,8.1605,0.006,,1,qlp,QLP,03:37:14.09,-44:28:19.22,-5.147,0.178,7.185,0.163,2459165.027663,0.0171056,4.90038,0.00157,3.506,0.527,0.260608,0.000948,240.0,0.872914,6.56819,0.545096,736.282,1451.0,9.0,306.118,8.031,6504.0,127.3,3.32,0.09,4.18,0.21,,,1.33,0.216397,"3,4,30,31",2019-07-23,2021-01-28,2022-12-14 12:09:24,may be on 100921770,930,1,False,False,True -206474443,931.01,,3,4,4,3,3,4,4,,,317.0,5,0,4,PC,PC,11.5458,0.006,,1,qlp,UNKNOWN,03:49:20.85,-47:55:05.48,7.2,2.6,-4.5,2.4,2459169.291398,0.0005295,3.2452094,4e-06,2.722,0.237,8.031508,0.002523,7370.0,2.32378,20.6894,0.927778,600.388,1379.0,77.0,,,5928.0,123.8,,,2.31,0.09,,,,,"4,31",2019-07-23,2021-02-01,2022-12-14 12:09:24,TOI 931. TFOP investigation in progress.,931,1,False,False,True -260417932,932.01,,1,4,1,1,3,4,4,1.4,33.2,7.41,4,3,3,PC,PC,10.7378,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,06:23:45.83,-54:34:40.89,-41.018,0.031,34.96,0.038,2459338.603607,0.0040746997,19.3103369112235,0.00023933641,3.68969874355622,0.25727168,1.44251,0.059133,1327.71899581188,54.462456,2.6258476278313,0.80809236,12.0241384063917,474.933977987914,20.322435,85.3837,0.12545,4444.0,124.0,4.55,0.1,0.734072983264923,0.0597135,,,0.7,0.0779847,"28,29,31,32,33,34,35,36,38,39",2019-07-23,2022-03-21,2022-12-14 12:09:24,possible multi,932,1,True,False,True -260417932,932.02,TIC 260417932.02,1,4,1,1,3,4,4,1.5,25.7,3.6,4,3,3,PC,PC,10.7378,0.006,,2,qlp-s39-tois,QLP,06:23:45.83,-54:34:40.89,-41.018,0.031,34.96,0.038,2459380.465927,0.0025486,7.9856481,3.18e-05,2.729,0.216,0.499554,0.000512,460.0,0.471583,1.70724,0.149537,34.6569,675.0,16.0,85.3837,0.12545,4444.0,124.0,4.55,0.1,0.73,0.06,,,0.7,0.0779847,"1,2,4,5,6,7,8,9,11,12,28,29,31,32,33,34,35,36,38,39",2021-03-25,2022-03-22,2022-12-14 12:09:24,inner candidate in potential multi,932,2,True,False,True -260130483,933.01,,3,4,3,3,3,4,4,4.8,39.7,107.72,3,4,3,PC,PC,10.6361,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,06:09:13.28,-55:24:13.51,27.96,0.036,-47.398,0.04,2458611.743689,0.008526267,88.9349517351315,0.0012904861,8.31769291872788,0.15450177,4.423721,0.07962,4066.10830425502,73.32997,12.6770385209443,0.6020815,18.0301991749636,525.557067429786,50.049313,300.423,1.821,5546.9,103.9,3.93,0.08,1.78672003746033,0.0812036,-0.95,0.11,0.98,0.132966,"11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-06-17,2022-03-21,2022-12-14 12:09:24,possible odd-even,933,1,False,False,True -220475245,934.01,,3,4,4,3,3,4,4,45.8,124.4,104.13,6,0,1,PC,PC,12.708,0.006,,1,qlp,UNKNOWN,05:01:24.16,-56:08:29.1,0.279,0.022,-17.249,0.029,2459385.212055,0.000209,3.781737,1.3e-06,2.192,0.076,20.783212,0.001302,18960.0,1.19901,12.4301,0.822536,116.842,915.0,247.0,301.872,1.0735,4833.0,178.0,4.51712,2.00347,0.87,0.06,,,0.79,0.0954544,"2,3,4,5,6,7,9,10,12,13,27,29,30,31,32,33,36,37",2019-07-15,2021-11-10,2022-12-14 12:09:24,TFOP work in progress.,934,1,False,False,True -260476837,935.01,,5,5,5,5,5,5,5,116.3,114.7,317.0,7,0,2,EB,FP,12.7918,0.007,,1,spoc,UNKNOWN,06:24:59.57,-59:48:16.47,0.565,3.241,54.946,3.241,2458627.063627,0.001541,2.232659,0.000212,2.538335,0.094418,21.098025,0.746343,19244.414726,687.1711,15.959056,17.639652,328.213719368026,1085.57274770603,30.391724,282.203,,4814.0,178.0,4.51946,2.00348,0.804149,0.804149,,,,,"12,28",2019-07-15,2020-10-05,2022-12-14 12:09:24,Low priority,935,1,False,False,True -278198753,936.01,,3,4,3,3,3,4,4,15.2,58.8,57.76,2,0,1,PC,PC,12.6327,0.008,,1,qlp-s39-tois,SPOC,07:24:08.68,-78:26:33.32,-4.952,0.414,36.434,0.545,2460048.592439,0.0026776735,7.9365475,2.13e-05,1.667,0.194,5.038632,0.044994,4630.0,41.4405,7.76368,1.12632,35.6191,680.0,25.0,238.321,14.87,4320.0,173.0,4.57232,0.231441,0.85,0.1,,,,,"1,3,4,7,10,11,12,13,27,30,31,33,34,37,38,39,61,63,64",2019-07-24,2023-06-28,2023-06-28 00:00:00,2 stars in pixel; visual binary; Ziegler has identified a stellar companion with a separation of 0.7154'' and delta magnitude of 1; v-shaped,936,1,False,False,True -425163745,937.01,,5,5,5,5,5,5,5,563.2,594.4,317.0,2,0,1,EB,FP,10.855,0.006,,1,qlp-s05-b01,QLP,03:55:35.24,-02:30:21.41,15.116,0.077,-7.142,0.062,2458438.55668,0.00035,0.27664,1e-05,0.72,0.012,17.147424,0.814454,15669.3,749.859,24.4651,5.82969,15418.8,3104.0,121.0,321.78,5.8815,5341.6,269.9,4.09,0.47,1.78,0.17,-0.061,0.026,1.033,0.131281,5,2019-07-24,2021-12-07,2022-12-14 12:09:24,V shaped; likely EB; retired as NEB,937,1,False,False,False -332660150,938.01,,3,4,3,4,4,4,4,4.7,42.9,15.62,4,5,11,PC,PC,10.8479,0.007,,1,qlp,UNKNOWN,04:12:07.76,-12:07:07.81,-6.466,0.046,-10.769,0.041,2459193.804926,0.0028951,8.8073507,4.47e-05,4.264,0.411,1.847322,0.001166,1700.0,1.0737,4.0916,0.230702,220.735,1073.0,19.0,215.034,1.909,5981.0,125.9,4.49,0.08,0.99,0.05,,,1.1,0.146506,"5,32",2019-07-24,2021-02-01,2022-12-14 12:09:24,Co-moving M dwarf 7.7,938,1,False,False,True -67772767,939.01,,3,4,3,3,4,4,4,29.5,98.9,105.12,3,9,9,PC,PC,10.9335,0.007,,1,qlp,UNKNOWN,04:15:08.84,-07:18:56.69,4.617,0.051,-14.8,0.035,2459199.364902,0.0007912,7.6107227,1.16e-05,4.249,0.229,6.971043,0.000986,6400.0,0.908335,12.4861,0.648829,297.144,1156.0,83.0,352.195,4.6785,6159.5,130.8,4.14,0.09,1.53,0.08,-0.23,0.12,1.17,0.166203,"5,32",2019-07-24,2021-02-01,2022-12-14 12:09:24,Check 67772765 but otherwise a good giant planet candidate,939,1,False,False,True -248434716,940.01,,5,5,5,5,3,5,5,,,12.42,0,1,4,PC,APC,11.0057,0.006,,1,spoc,UNKNOWN,05:09:36.86,-05:40:15.49,-7.9,3.9,32.3,4.1,2459174.755594,0.00066776975,0.739459157321086,3.6334586e-05,0.647776550076687,0.1785353,1.861222,0.125769,1712.78022597793,115.83118,4.18122969902256,2.7865129,3900.65108759741,2015.59849632519,15.907077,,,5100.2,109.7,,,1.0,,,,,,32,2019-07-24,2019-07-24,2022-12-14 12:09:24,Retired as SB2 and revived as APC,940,1,False,False,True -408137826,941.01,,3,4,3,3,4,4,4,11.2,62.0,39.11,4,12,5,PC,PC,10.9968,0.006,,1,qlp,UNKNOWN,05:13:12.13,06:32:45.29,17.295,0.176,-31.602,0.118,2459198.275288,0.0015275,8.5145626,2.67e-05,3.78,0.261,3.545282,0.00122,3260.0,1.12382,6.95626,0.374315,166.575,1000.0,30.0,263.386,6.2255,5920.0,129.1,4.32,0.08,1.18,0.06,,,1.078,0.138831,"5,32",2019-07-24,2021-02-01,2022-12-14 12:09:24,Check star 17,941,1,False,False,True -146520535,942.01,,3,5,5,3,4,4,4,6.8,50.9,12.2,21,18,3,PC,CP,11.0462,0.007,,1,qlp,QLP,05:06:35.91,-20:14:44.21,15.382,0.034,-3.976,0.04,2458441.57167,0.00496,4.32765,0.00173,3.181,0.479,1.60808,0.002817,1480.0,2.59497,3.52025,0.272617,261.858,1120.0,11.0,152.601,0.692,4945.0,121.0,4.43,0.09,0.91,0.06,,,0.814,0.0972503,5,2019-07-24,2020-05-20,2022-12-14 12:09:24,Probable young K dwarf. Transit is believable enough. Maybe also a signal at 10.15 days with Tc=1447?,942,1,False,False,True -399871011,943.01,,3,4,3,3,4,4,4,23.1,92.6,118.26,13,17,9,PC,PC,11.0412,0.009,,1,qlp,QLP,04:58:13.23,08:58:50.97,2.493,0.075,-6.744,0.043,2458444.27026,0.00106,12.35611,0.00083,5.963,0.521,8.74271,0.002106,8020.0,1.93969,13.4341,0.632642,366.445,1218.0,62.0,397.789,7.0255,6794.0,135.7,4.28,0.09,1.45,0.06,,,1.46,0.239351,5,2019-07-24,2020-05-20,2022-12-14 12:09:24,Warm Jupiter candidate,943,1,False,False,True -434234955,944.01,,5,5,5,5,5,5,5,29.0,29.2,317.0,2,1,9,EB,FP,11.3818,0.008,,1,qlp,UNKNOWN,04:15:14.66,14:56:41.42,3.722,0.121,-2.855,0.074,2458439.3488,0.00487,6.04548,0.00581,3.476,0.605,3.763161,0.008247,3460.0,7.59583,19.4971,1.64914,597.693,1377.0,22.0,938.401,44.721,7011.0,107.1,3.51,0.09,3.6,0.23,0.182,0.014,1.54,0.263919,5,2019-07-24,2020-05-20,2022-12-14 12:09:24,Hint of secondary may be driven by momentum dumps in second orbit.,944,1,False,False,True -167714792,945.01,,3,4,3,3,3,4,4,8.7,44.7,19.17,0,3,3,PC,PC,11.1224,0.006,,1,qlp,UNKNOWN,05:21:49.28,-36:40:25.65,1.326,0.042,9.579,0.043,2459199.603438,0.0067829,0.9298045,9e-06,1.203,0.375,0.782012,0.004662,720.0,4.294,4.60146,0.421019,4136.65,2234.0,11.0,516.104,6.0015,7019.0,133.6,4.19,0.09,1.65,0.07,,,1.55,0.264888,"5,6,32",2019-07-24,2020-05-20,2022-12-14 12:09:24,,945,1,False,False,True -219205407,946.01,,5,5,5,5,5,5,5,210.9,381.3,317.0,0,0,1,EB,FP,10.8732,0.006,,1,qlp,UNKNOWN,06:11:20.14,-51:27:59.84,-12.661,0.095,12.065,0.118,2459356.387875,7.44e-05,6.1253092,1e-06,1.992,0.025,43.643544,0.008976,39400.0,8.26705,22.9909,1.48982,60.67,777.0,276.0,164.458,1.516,5008.3,61.9,,,1.05,0.07,,,0.83,0.0986101,"1,5,6,7,8,11,28,32,33,34",2019-04-01,2021-10-05,2022-12-14 12:09:24,TFOP FP; retired as SB2,946,1,False,False,True -262330063,947.01,,5,5,5,5,4,5,5,64.9,94.7,317.0,0,1,3,PC,APC,10.642,0.008,,1,qlp-s05-b01,QLP,05:13:16.52,04:48:35.63,19.609,0.076,-13.807,0.064,2458444.9382,0.00135,7.31523,0.00108,1.832,0.168,8.967108,0.043551,8225.0,40.1108,17.8813,1.51633,187.784,1031.0,43.0,390.775,6.9555,6251.5,148.3,4.0,0.49,1.79,0.09,,,1.24,0.187876,5,2019-07-24,2021-12-07,2022-12-14 12:09:24,needs follow-up to determine which star is source. TFOP APC; previously retired as SB2,947,1,False,False,False -146438872,948.01,,5,5,5,5,3,5,5,17.0,57.7,96.64,0,4,1,PC,APC,10.5068,0.007,,1,qlp-s05-b01,QLP,05:02:07.62,-22:42:42.71,9.231,0.034,9.723,0.037,2458442.13529,0.00315,12.7009,0.00217,3.208,0.678,2.698778,0.038003,2482.58,35.0013,10.5402,1.37025,270.518,1129.0,17.0,370.711,3.624,6092.9,164.2,3.65,0.11,1.92,0.1,-0.675,0.0777817,1.05,0.131455,5,2019-07-24,2021-12-07,2022-12-14 12:09:24,marginal; previously retired as SB1,948,1,False,False,False -189013222,949.01,,5,5,5,5,5,5,5,10.3,77.2,6.82,0,3,0,O,FP,10.2892,0.006,,1,qlp-s32-ffi,QLP,05:16:24.44,-15:30:45.67,4.352,0.047,-27.448,0.051,2459199.159811,0.0029667,1.3228701,7.1e-06,1.589,0.324,0.782012,0.002577,720.0,2.37381,2.50355,0.202899,910.45,1530.0,13.0,112.611,0.399,5136.1,201.1,,,0.84,0.05,,,0.898,0.108998,"5,32",2019-07-24,2022-01-25,2022-12-14 12:09:24,Same as TOI 426.01; retired as duplicate/TFOP FP,949,1,False,False,True -245947683,950.01,,5,5,5,5,5,5,5,38.8,114.4,40.09,2,1,9,PC,FA,10.2098,0.006,,1,qlp,QLP,04:41:30.02,14:48:55.92,11.031,0.072,-28.797,0.037,2458439.35452,0.00487,1.14288,0.00059,1.699,0.204,2.467423,0.007514,2270.0,6.92052,7.08364,0.564923,3104.56,2079.0,9.0,211.593,1.9625,6706.0,451.3,4.23,0.13,1.51,0.08,,,1.424,0.311166,5,2019-07-24,2020-05-20,2022-12-14 12:09:24,may be on 245947692,950,1,False,False,True -449050247,951.01,,5,5,5,5,5,5,5,216.0,297.6,317.0,0,0,1,EB,FP,10.0938,0.006,,1,qlp-s05-b01,QLP,04:30:12.32,05:17:55.77,42.469,0.108,-8.611,0.073,2458441.2993,0.00036,2.96845,8e-05,3.707,0.043,18.68778,0.000522,17064.8,0.480494,20.1857,0.279842,969.61,1554.0,212.0,206.344,2.9425,5761.5,36.8,4.35,0.47,1.4,0.02,,,1.231,0.200225,"5,12",2019-07-24,2021-12-07,2022-12-14 12:09:24,NEB from WASP-South ,951,1,False,False,True -319312479,952.01,,3,4,3,3,4,4,4,17.2,63.9,43.05,2,3,9,PC,PC,10.0716,0.007,,1,qlp,UNKNOWN,04:07:07.07,-13:46:00.69,-0.041,0.084,7.796,0.082,2459168.2004,0.00157,1.79011,1e-05,1.372,0.305,0.466967,0.003362,430.0,3.09637,7.38823,0.587766,1262.31,1660.0,14.0,459.161,14.758,7110.0,124.8,3.9,0.09,2.33,0.12,,,1.58,0.26325,31,2019-07-24,2020-05-20,2022-12-14 12:09:24,observing notes say mass <2 M_Jup,952,1,False,False,True -449050248,953.01,,5,5,5,5,5,5,5,210.4,263.7,317.0,0,0,1,EB,FP,9.87405,0.006,,1,qlp-s05-b01,QLP,04:30:12.6,05:17:54.35,42.704,0.063,-9.038,0.035,2458441.29935,0.00033,2.96844,8e-05,3.663,0.05,14.23792,0.000508,13028.0,0.468074,19.3343,0.5836,981.423,1559.0,209.0,204.316,1.692,5772.0,84.7,4.1,0.06,1.54,0.05,-0.16,0.04,1.19,0.173954,"5,12",2019-07-24,2021-12-07,2023-03-15 12:03:09,SB1 from WASP-South SB1 RV variation=30 km/s ,953,1,False,False,True -44792534,954.01,,3,5,5,4,4,3,4,32.8,95.8,60.95,7,19,6,PC,CP,9.77919,0.006,,1,qlp,UNKNOWN,04:07:45.85,-25:12:31.69,-5.787,0.042,-29.623,0.045,2459167.32483,0.00093,3.68497,1e-05,4.536,0.486,2.249803,0.000621,2070.0,0.572102,9.05543,0.475878,1260.27,1659.0,43.0,238.768,1.89,5756.0,127.5,3.88,0.07,1.93,0.1,,,1.03,0.126389,"4,5,31",2019-07-24,2020-12-22,2022-12-14 12:09:24,evolved star; possible spot crossing,954,1,False,False,True -146467675,955.01,,5,5,5,5,5,5,5,16.8,73.7,22.01,1,4,5,EB,FP,9.70467,0.006,,1,qlp,UNKNOWN,05:04:19.64,-20:43:52.83,-15.51,0.033,-17.482,0.043,2458438.25873,0.00265,1.63715,0.00029,1.618,0.174,0.901535,0.001204,830.0,1.10852,4.97601,0.296447,856.185,1506.0,23.0,211.351,1.269,5888.8,108.6,3.99,0.07,1.72,0.08,-0.463348,0.073994,1.068,0.132956,5,2019-07-24,2020-05-20,2022-12-14 12:09:24,possibly an EB. May be on 146467673.,955,1,False,False,True -146434840,956.01,,5,5,5,5,5,5,5,40.7,64.6,317.0,0,0,1,EB,FP,9.49344,0.006,,1,qlp-s05-b01,QLP,05:01:26.6,-22:22:55.69,19.728,0.038,25.233,0.042,2458445.26599,0.00242,17.95473,0.0025,3.139,0.366,6.492576,0.619433,5962.04,570.356,14.9952,4.79364,225.794,1079.0,23.0,210.646,1.309,6029.5,244.8,4.22,0.12,1.77,0.14,-0.58,0.09,1.161,0.161277,5,2019-07-24,2021-12-07,2022-12-14 12:09:24,possibly an EB; retired as NEB,956,1,False,False,False -249067445,957.01,,5,5,5,5,5,5,5,5.6,60.1,7.52,1,3,7,EB,FP,8.95699,0.006,,1,qlp,UNKNOWN,05:17:43.78,-00:22:12.44,-5.427,0.099,-4.661,0.078,2459198.9042,0.0023712,0.8317937,1.93e-05,1.875,0.239,0.217169,0.000441,200.0,0.406279,2.64673,0.154363,25432.4,3518.0,12.0,280.188,4.9225,8897.0,170.2,4.27,0.07,1.82,0.06,,,2.241,0.316844,"5,32",2019-07-24,2021-02-11,2022-12-14 12:09:24,Rstar = 1.96 Rsun in TIC. Rp = 4 Re.,957,1,False,False,True -92880568,958.01,,3,5,5,3,3,4,4,164.8,125.6,317.0,9,3,5,PC,APC,10.964,0.008,,1,qlp,UNKNOWN,05:32:51.8,-19:34:30.26,-6.934,0.041,-7.583,0.062,2459199.98007,0.0008978,0.5875044,1.1e-06,1.344,0.02,1.825571,0.655072,1680.0,603.162,14.3274,3.9317,31057.7,3698.0,58.0,297.121,2.9405,5745.1,130.2,4.14,0.08,1.43,0.08,-0.22,0.1,1.03,0.12512,"5,6,32",2019-07-24,2020-05-20,2022-12-14 12:09:24,TFOP investigation in progress. V-shaped.,958,1,False,False,True -279999655,959.01,,5,5,5,5,5,5,5,446.0,1734.2,317.0,2,2,3,PC,FP,10.649,0.008,,1,qlp,QLP,07:36:02.99,04:42:54.42,-1.142,0.133,1.312,0.084,2458492.69541,0.00037,1.54104,4e-05,1.686,0.046,33.792639,1.180924,30644.8,1087.08,,,11491.8,2884.0,145.0,639.564,22.816,8264.0,300.9,4.09,1.38,,,-0.126478,0.0738681,1.72,0.272772,7,2019-07-24,2019-07-24,2022-12-14 12:09:24,,959,1,False,False,True -5109298,960.01,,5,5,5,5,5,5,5,23.5,92.9,79.6,1,1,9,EB,FP,10.6698,0.012,,1,qlp,UNKNOWN,07:10:23.54,-05:25:57.65,-4.426,0.081,-4.126,0.074,2458491.79665,0.00577,1.6221,0.00071,2.428,0.687,2.510952,0.009138,2310.0,8.41618,10.5888,0.869346,16094.3,3137.0,16.0,789.891,30.7345,9385.0,206.7,4.12,0.07,2.22,0.11,,,2.38,0.324361,7,2019-07-24,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as NEB,960,1,False,False,True -265077027,961.01,,5,5,5,5,5,5,5,183.9,334.5,317.0,2,2,4,PC,FP,10.6596,0.006,,1,qlp,QLP,08:28:42.8,04:02:18.79,-12.983,0.085,0.219,0.058,2458496.16829,0.00121,4.79586,0.00067,2.132,0.11,29.596388,1.034273,26891.1,952.147,23.4129,4.50006,377.084,1227.0,84.0,246.177,3.1815,5782.5,112.0,4.37,2.0,1.3,0.05,,,1.08,0.135194,7,2019-07-24,2019-07-24,2022-12-14 12:09:24,,961,1,False,False,True -141776043,962.01,,5,5,5,5,5,5,5,33.4,88.6,94.58,1,1,1,PC,FP,11.2295,0.006,,1,qlp,QLP,07:50:51,-21:00:56.65,-9.921,0.039,0.43,0.036,2458493.35787,0.00223,4.06269,0.00071,4.299,0.179,4.580598,0.851873,4210.0,784.296,,,,,66.0,447.244,5.667,,,,,,,,,,,7,2019-07-24,2020-05-20,2022-12-14 12:09:24,V shaped and maybe odd even difference,962,1,False,False,True -25799609,963.01,,3,4,3,3,4,4,4,20.2,108.4,59.67,1,3,5,PC,PC,10.6412,0.006,,1,qlp,UNKNOWN,07:56:35.83,-00:46:22.26,1.129,0.064,10.848,0.043,2459235.100283,0.0018359,11.1179704,3.29e-05,4.435,0.562,7.145894,0.002256,6560.0,2.07759,8.98777,0.433007,218.979,1071.0,23.0,203.873,1.585,5814.9,111.1,4.4,0.07,1.07,0.05,-0.016,0.051,1.046,0.128597,"7,34",2019-07-24,2021-06-11,2022-12-14 12:09:24,possible centroid shift to the NW,963,1,False,False,True -179155220,964.01,,5,5,5,5,5,5,5,287.8,596.4,90.34,1,0,3,PC,FP,10.6659,0.006,,1,qlp,QLP,07:16:25.66,-08:19:47.04,-1.464,0.068,-86.426,0.058,2458491.88882,0.00059,0.60274,2e-05,1.834,0.017,18.35513,0.510375,16763.6,469.962,11.8344,2.05443,18432.4,3246.0,129.0,127.566,0.675,5146.2,120.2,4.61,0.28,0.83,0.04,,,0.895,0.109987,7,2019-07-24,2019-07-24,2022-12-14 12:09:24,short period and V-shaped,964,1,False,False,True -179159972,965.01,,5,5,5,5,5,5,5,19.8,94.6,20.92,1,2,6,PC,FP,10.6124,0.006,,1,qlp,QLP,07:16:13.51,-09:53:36.5,-20.821,0.119,48.724,0.109,2458491.95227,0.00378,1.37101,0.00035,2.379,0.432,1.696626,0.063808,1561.43,58.7673,4.99178,0.972297,17275.0,3193.0,21.0,224.488,4.1545,5947.5,51.9,4.22,0.41,1.15,0.02,,,1.151,0.161443,7,2019-07-24,2019-07-24,2022-12-14 12:09:24,check TIC 179159990,965,1,False,False,True -178367144,966.01,,5,5,5,5,5,5,5,114.2,145.3,317.0,0,1,1,PC,KP,10.5572,0.006,,1,spoc,UNKNOWN,08:13:34.14,-01:58:58.03,-14.052,0.091,-3.169,0.055,2459229.298885,0.00029058964,3.4092439200571,7.086846e-05,3.20404724017003,0.022467284,17.913615,0.13741,16363.68510061,126.55157,15.9571083455739,0.7293421,918.356412963835,1404.01764339727,123.55711,253.985,3.36,6316.0,120.3,4.37,0.08,1.21069,0.0548342,,,1.244,0.18593,"7,34",2019-07-24,2021-03-11,2022-12-14 12:09:24,could be on TIC 178367145,966,1,False,False,True -445586472,967.01,,5,5,5,5,5,5,5,6.6,29.3,23.06,0,1,1,EB,FP,10.5704,0.006,,1,spoc,QLP,07:48:20.16,-57:14:10.72,-16.929,0.049,8.655,0.05,2459230.004598,0.004605945,1.73936314934075,0.00061331433,3.60690275512823,0.85206544,0.465752,0.047981,428.881193933735,44.19116,5.11890794120371,4.030304,11860.0095257582,2661.58909833971,8.666388,522.06,7.0035,7051.0,134.9,3.87,0.09,2.40368,0.102113,,,1.56,0.27747,"7,8,9,10,34",2019-07-24,2021-03-11,2022-12-14 12:09:24,TFOP FP; retired as NEB,967,1,False,False,True -453209605,968.01,,5,5,5,5,5,5,5,,,17.63,0,0,1,PC,FP,10.5766,0.006,,1,qlp,QLP,07:47:39.43,11:58:50.87,-9.2,2.0,-0.2,2.0,2458493.61746,0.00238,2.80944,0.0006,3.151,0.205,1.745562,0.001473,1606.43,1.35648,,,536.378,1340.0,20.0,,,4968.3,82.0,,,,,,,,,7,2019-07-24,2019-07-24,2022-12-14 12:09:24,no planet radius estimate because no stellar radius estimate but star is likely to be evolved so planet likely to be large.,968,1,False,False,True -280437559,969.01,,2,5,5,2,4,4,4,20.2,103.4,13.08,7,4,8,PC,CP,10.5424,0.006,,1,qlp,UNKNOWN,07:40:32.8,02:05:54.92,-34.152,0.091,-77.936,0.058,2459248.377773,0.0012764,1.8237371,4.2e-06,1.347,0.303,2.053983,0.002638,1890.0,2.4297,3.64998,0.388173,167.634,1002.0,30.0,77.2554,0.32535,4249.1,132.6,4.43,0.11,0.82,0.08,0.086,0.041,0.66,0.0799349,"7,34",2019-07-24,2021-06-11,2022-12-14 12:09:24,,969,1,False,False,True -174599051,970.01,,1,4,3,1,3,4,4,5.7,44.7,11.13,0,2,1,PC,PC,10.5248,0.006,,1,qlp,UNKNOWN,07:38:47.76,-39:08:07.87,-43.354,0.046,-8.11,0.056,2459244.013263,0.0050251,4.985636,4.43e-05,3.736,1.174,1.053675,0.006665,970.0,6.13888,3.35045,0.343854,408.008,1252.0,17.0,147.148,0.602,5189.0,121.3,4.33,0.09,1.07,0.06,,,0.88,0.108967,"7,8,34",2019-07-24,2021-06-11,2022-12-14 12:09:24,some centroid offset not centered on another star,970,1,False,False,True -177722855,971.01,,5,5,5,5,5,5,5,14.1,62.3,22.45,0,5,7,EB,FP,10.5224,0.006,,1,spoc,UNKNOWN,07:09:41.15,-11:19:43.96,-26.461,0.067,17.049,0.061,2459203.896937,0.0065743267,2.39036583281642,0.0012225003,5.993927519624,0.37037173,0.989517,0.058705,910.963700632796,54.06806,5.04043733037024,0.3362495,1468.04747431518,1578.71877771481,11.78753,229.595,2.293,5743.0,241.8,4.18,0.09,1.37031,0.0707161,,,1.026,0.146742,33,2019-07-24,2020-05-20,2022-12-14 12:09:24,,971,1,False,False,True -125894957,972.01,,5,5,5,5,5,5,5,,,317.0,0,1,1,EB,FP,10.5484,0.015,,1,qlp-tois-update,QLP,07:41:07.29,-26:04:15.38,-2.163,0.043,3.375,0.048,2458493.15026,0.00337,2.67425,0.00073,3.779,0.919,2.086617,0.01068,1920.0,9.83619,178.665,,2364.93,1942.0,24.0,3083.92,309.965,4770.0,122.0,,,36.51,,,,,,7,2019-07-24,2022-07-11,2022-12-14 12:09:24,BEB or diluted planet; almost exactly same aperture for 125894951; TFOP FP,972,1,False,False,True -409459226,973.01,,5,5,5,5,5,5,5,,,317.0,0,0,3,EB,FP,10.5816,0.012,,1,qlp-tois-update,QLP,07:19:48.08,-11:56:33.67,-0.8,0.099,1.984,0.081,2458491.82839,0.00395,1.27997,0.00041,2.425,0.265,0.858071,0.00093,790.0,0.856405,285.674,,379.23,1229.0,17.0,4153.03,1077.88,3435.0,122.0,,,102.03,,,,,,7,2019-07-24,2022-07-11,2022-12-14 12:09:24,BEB or diluted planet; multiple stars in the aperture; blended; centroid shift; giant star; TFOP FP,973,1,False,False,True -333821572,974.01,,5,5,5,5,5,5,5,18.2,83.7,55.55,0,3,4,EB,FP,10.4337,0.006,,1,qlp-s61-ffi,UNKNOWN,07:45:05.98,-17:10:30.4,0.525,0.049,0.485,0.047,2459985.027628,0.0015473,2.8259491,4.9e-06,2.409,0.863,2.39778,0.247756,2206.0,228.166,8.56637,0.636143,4419.71,2271.0,29.0,522.177,10.23,8192.0,132.7,4.21,0.08,1.84,0.07,,,2.005,0.305762,"7,34,61",2019-07-24,2023-03-08,2023-03-24 12:12:10,TFOP FP/NEB,974,1,False,False,True -133654092,975.01,,5,5,5,5,5,5,5,,,317.0,0,1,1,EB,FP,10.4527,0.011,,1,qlp,QLP,08:04:44.42,-41:33:35.32,-2.128,0.086,3.033,0.075,2458493.1271,0.00456,1.97353,0.00065,2.169,0.231,0.942207,0.001915,867.428,1.76394,,,57.3824,766.0,16.0,4947.72,1271.4,2828.0,161.0,,,,,,,,,7,2019-07-24,2021-04-20,2022-12-14 12:09:24,too big; Rstar = 152 Rsun in tic8,975,1,False,False,True -347098457,976.01,,5,5,5,5,5,5,5,,,317.0,0,2,3,EB,FP,10.4856,0.012,,1,spoc,UNKNOWN,07:49:52.86,-16:01:24.29,-1.507,0.045,2.711,0.044,2459230.210781,0.0029841643,3.15104083676292,0.0007502868,2.96573754455354,0.19588423,2.200962,0.256759,2025.10727237661,236.45537,297.111726152388,69.31585,2194.07288003603,1745.55087832047,13.123485,4189.87,686.175,4240.0,122.0,,,49.1612,,,,,,"7,34",2019-07-24,2021-03-18,2022-12-14 12:09:24,TFOP FP; retired as EB,976,1,False,False,True -268371979,977.01,,5,5,5,5,5,5,5,,,317.0,0,1,5,PC,FP,10.5153,0.017,,1,qlp,QLP,07:00:15.14,-02:20:50.81,-0.426,0.061,0.26,0.061,2458492.39581,0.00552,2.78102,0.00103,1.657,0.263,0.81313,0.003383,748.64,3.11544,2.23876,0.289796,111.574,905.0,10.0,6862.39,1465.47,4538.0,165.0,,,0.74,0.08,,,,,7,2019-07-24,2020-07-09,2022-12-14 12:09:24,TFOP EB; Gaia suggests the star is evolved based on parallax and Teff,977,1,False,False,True -73038411,978.01,,3,4,3,4,4,4,4,22.0,93.8,89.95,7,2,5,PC,PC,10.339,0.006,,1,qlp-s61-ffi,QLP,08:00:48.99,-02:00:39.01,-1.065,0.065,-14.423,0.039,2459977.379099,0.0009354,13.1660135,1.54e-05,4.668,0.204,6.203126,0.116763,5697.0,107.537,11.3913,0.535327,134.826,949.0,39.0,291.631,3.667,6368.0,126.8,4.18,0.08,1.52,0.07,,,1.269,0.190732,"7,34,61",2019-07-24,2023-04-04,2023-04-07 12:13:06,,978,1,False,False,True -5772442,979.01,,5,5,5,5,5,5,5,20.3,55.9,41.88,1,2,7,PC,FP,10.351,0.006,,1,qlp,QLP,07:27:03.95,-07:07:46.91,-26.859,0.176,-13.631,0.137,2458492.50181,0.00278,1.10578,0.00022,1.87,0.207,0.730428,0.001051,672.523,0.968288,7.4741,0.662273,2163.51,1900.0,20.0,414.876,20.5,5650.4,227.6,4.32,2.0,2.62,0.21,,,1.044,0.124647,7,2019-07-24,2019-07-24,2022-12-14 12:09:24,Saturn-sized; Slight centroid shift; potentially blended (BEB or diluted planet); need SG1 to check,979,1,False,False,True -93594834,980.01,,5,5,5,5,5,5,5,9.5,37.2,16.25,0,4,8,EB,FP,10.3138,0.007,,1,spoc,UNKNOWN,07:37:40.99,-07:20:12.26,-16.724,0.054,-33.873,0.044,2459228.778145,0.0058574425,1.33875545356474,0.0005486349,3.24130877500434,0.42075393,0.387943,0.0408,357.244927634155,37.577885,4.16725577517688,0.89411604,5177.38785134518,2163.45279999303,7.937647,269.611,2.3345,5322.0,129.4,3.82,0.09,1.96337,0.110487,,,0.92,0.119562,"7,34",2019-07-24,2021-03-23,2022-12-14 12:09:24,TFOP FP; retired as NEB,980,1,False,False,True -127476180,981.01,,3,4,3,3,4,4,4,12.4,64.4,19.99,0,3,4,PC,PC,10.2957,0.006,,1,qlp-s61-ffi,QLP,07:48:27.17,-28:12:17.38,-20.695,0.041,12.432,0.049,2459985.779503,0.0021299,1.6055589,3.4e-06,2.253,0.518,1.268881,0.076522,1168.0,70.4768,4.70308,0.282444,3384.43,2124.0,17.0,297.758,2.581,6711.0,138.0,4.25,0.09,1.48,0.06,,,1.426,0.2463,"7,61",2019-07-24,2023-03-22,2023-03-24 12:12:10,centroid offset to W and depth aperture correlation,981,1,False,False,False -177126182,982.01,,5,5,5,5,5,5,5,20.1,26.8,317.0,0,1,5,EB,FP,10.3075,0.022,,1,spoc,UNKNOWN,07:05:37.22,-11:58:47.48,-0.718,0.065,-2.104,0.066,2459203.40153,0.0054390463,6.30420879212675,0.0028976763,5.0392128462082,0.37867382,1.597424,0.280372,1470.19974028201,258.19867,14.6779746951402,3.5226774,6063.91570625533,2250.65039189631,13.565403,793.408,25.934,8502.0,259.5,3.78,0.08,3.08473,0.13135,,,2.11,0.314251,"7,33",2019-07-24,2021-02-19,2022-12-14 12:09:24,TFOP FP; retired as EB,982,1,False,False,True -148659924,983.01,,5,5,5,5,5,5,5,15.0,130.5,26.06,0,0,1,EB,FP,10.3437,0.007,,1,qlp-s61-ffi,QLP,07:39:27.46,-32:54:13.51,-5.117,0.06,3.948,0.071,2459973.559152,0.0033141,7.3816254,3.73e-05,4.696,0.971,2.767809,0.698489,2546.0,643.125,,,9359.75,2740.0,26.0,551.738,11.2085,9260.2,233.5,4.08,1.26,,,,,,,"7,34,61",2019-07-24,2023-03-08,2023-03-24 12:12:10,TFOP FP/NEB,983,1,False,False,True -33091633,984.01,,5,5,5,5,5,5,5,417.0,1776.5,317.0,1,1,5,PC,FP,10.2763,0.006,,1,qlp,QLP,06:59:30.22,-04:48:43.81,-4.0,2.0,0.2,2.1,2458495.71336,0.00121,7.52118,0.00097,6.133,0.189,56.403578,2.567259,50623.3,2361.74,12.9114,3.55629,1910.28,1841.0,103.0,442.789,,6184.6,545.8,4.11,1.5,0.52,0.09,,,,,7,2019-07-24,2019-07-24,2022-12-14 12:09:24,planet radius mass and Teff are inconsistent.,984,1,False,False,True -425220920,985.01,,5,5,5,5,5,5,5,104.3,182.5,317.0,0,4,5,PC,FP,10.2462,0.006,,1,qlp,QLP,07:26:34.56,07:00:58.79,15.61,0.082,-6.35,0.069,2458494.52201,0.00152,8.76905,0.00107,3.504,0.217,15.705301,0.880182,14361.0,810.349,21.0089,5.47454,538.251,1341.0,43.0,260.641,3.3555,5906.8,319.0,4.22,0.04,1.59,0.17,0.0954963,0.0126866,1.108,0.141922,7,2019-07-24,2019-07-24,2022-12-14 12:09:24,period might be twice,985,1,False,False,False -320536216,986.01,,5,5,5,5,4,5,5,78.4,251.8,82.04,6,1,4,PC,APC,10.1796,0.007,,1,qlp-s46-tois,UNKNOWN,08:00:25.31,10:20:37.93,-4.0,0.094,-1.715,0.057,2459578.525002,0.0002565,0.5476693,3e-07,1.11,0.071,3.316556,0.035763,3050.0,32.9386,10.8302,1.11531,51363.3,4194.0,164.0,407.542,9.495,8274.5,181.1,4.17,0.65,1.65,0.06,,,1.94,0.315035,"7,34,44,45,46",2019-07-24,2022-03-10,2022-12-14 12:09:24,TFOP APC; 5 sigma odd-even in SPOC s44 report; very likely EB,986,1,False,False,True -52548453,987.01,,5,5,5,5,5,5,5,55.5,64.7,317.0,0,1,1,PC,FP,10.1887,0.007,,1,qlp,QLP,06:43:42.17,-30:29:31.08,-1.513,0.036,9.463,0.045,2458495.94244,0.00101,5.21517,0.00061,5.655,0.133,4.999201,0.000393,4593.85,0.361761,16.9109,1.04564,1037.07,1580.0,105.0,375.582,3.46,6080.0,187.5,3.78,0.7,2.27,0.14,,,1.23,0.191315,7,2019-07-24,2019-07-24,2022-12-14 12:09:24,,987,1,False,False,True -113553629,988.01,,5,5,5,5,5,5,5,15.1,34.0,108.18,0,0,1,PC,FP,10.1989,0.008,,1,qlp,QLP,07:33:41.77,-30:59:45.79,-5.229,0.042,3.841,0.049,2458491.91542,0.00613,4.30438,0.00248,3.037,0.41,0.729862,0.002719,672.002,2.50426,13.7564,1.38032,503.88,1319.0,10.0,785.176,17.585,6056.9,247.0,4.17,1.75,4.82,0.38,,,1.27,0.200205,7,2019-07-24,2019-07-24,2022-12-14 12:09:24,marginal signal; crowded field,988,1,False,False,True -207277638,989.01,,5,5,5,5,4,5,5,8.0,45.2,27.93,0,3,5,EB,APC,10.1094,0.007,,1,qlp,QLP,07:22:01.57,10:14:19.09,-6.645,0.096,-7.866,0.068,2458494.67675,0.00634,3.12154,0.00216,1.393,0.465,0.694902,0.008794,639.824,8.09933,5.67646,0.660252,621.792,1391.0,9.0,476.811,13.685,7814.0,115.8,,,2.04,0.06,,,1.88,0.296582,"7,33",2019-07-24,2021-02-19,2022-12-14 12:09:24,APC Retired as SB2,989,1,False,False,True -88684250,990.01,,3,4,3,3,4,4,4,24.4,106.3,79.54,1,6,3,PC,PC,10.0998,0.007,,1,qlp-s61-ffi,QLP,08:07:39.25,-05:46:12.28,-3.806,0.088,-1.406,0.051,2459981.051319,0.0015978,4.587386,1.54e-05,4.36,0.361,3.611731,0.066322,3321.0,61.0829,10.6337,0.433352,4384.23,2266.0,30.0,465.99,11.462,8388.0,125.1,4.22,0.07,1.86,0.07,,,2.08,0.311534,"7,34,61",2019-07-24,2023-04-04,2023-04-07 12:13:06,,990,1,False,False,True -7561203,991.01,,3,4,3,3,4,4,4,38.2,146.3,111.44,6,1,4,PC,PC,10.1137,0.009,,1,qlp-s61-ffi,UNKNOWN,07:37:23.08,-11:09:04.69,-3.178,0.117,-0.656,0.105,2459987.447924,0.0019118,2.4843225,5.2e-06,1.999,0.553,1.60373,2.076588,1476.0,1910.78,12.9191,4.12144,32959.2,3753.0,24.0,616.305,28.9275,9855.0,169.3,4.18,0.08,2.13,0.11,,,2.52,0.33114,"7,34,61",2019-07-24,2023-03-23,2023-03-24 12:12:10,possible secondary not at half phase,991,1,False,False,True -108835813,992.01,,5,5,5,5,5,5,5,6.9,41.3,44.36,2,1,1,PC,FP,10.0813,0.01,,1,qlp,QLP,07:30:28.01,-26:04:50.46,-2.927,0.061,-2.298,0.071,2458494.06581,0.00827,4.76516,0.00348,2.892,0.561,0.703447,0.002955,647.689,2.72142,,,2214.79,1911.0,11.0,822.322,29.2465,9412.5,376.9,,,,,,,2.82,0.38191,7,2019-07-24,2019-07-24,2022-12-14 12:09:24,3 stars in central pixel,992,1,False,False,True -259353953,993.01,,3,4,3,3,4,4,4,14.3,77.5,25.3,1,5,5,PC,PC,10.0634,0.006,,1,qlp-s61-ffi,QLP,07:35:50.6,-15:29:58.04,-9.483,0.058,-4.963,0.05,2459985.812048,0.0021423,1.4635019,3.5e-06,1.518,0.367,0.992817,0.062253,914.0,57.3358,4.75869,0.251543,4081.06,2226.0,21.0,366.482,5.409,8035.0,150.8,4.28,0.08,1.67,0.05,,,1.944,0.308287,"7,34,61",2019-07-24,2023-07-12,2023-07-12 00:00:00,v-shaped,993,1,False,False,True -93963408,994.01,,5,5,5,5,5,5,5,4.1,42.8,14.13,0,1,7,PC,FP,10.0267,0.006,,1,spoc,UNKNOWN,07:40:11.12,-09:05:03.37,-7.229,0.089,-2.482,0.079,2459229.899754,0.004038877,2.39672202661878,0.00069638697,3.94531681997894,0.70991313,0.417979,0.036697,384.898547354573,33.798634,3.83844861768588,1.9348891,15531.0636236859,2847.21359880608,9.605016,543.152,19.1305,10393.0,222.8,4.32,0.07,1.87739,0.078985,,,2.679,0.35317,34,2019-07-24,2020-05-20,2022-12-14 12:09:24,,994,1,False,False,True -317951248,995.01,,5,5,5,5,5,5,5,,,317.0,1,2,7,PC,FP,10.0781,0.007,,1,qlp,QLP,07:23:14.75,05:33:46.26,2.061,0.405,-7.082,0.336,2458493.5283,0.00264,3.4438,0.00066,2.572,0.247,7.912018,0.79004,7260.75,727.389,,,1413.67,1708.0,22.0,1080.88,355.634,4805.2,46.5,,,,,-0.13705,0.0479089,,,7,2019-07-24,2020-07-09,2022-12-14 12:09:24,TFOP NEB; impact param >1 with not a great fit to transit shape,995,1,False,False,True -142918609,996.01,,5,5,5,5,5,5,5,31.9,57.8,317.0,1,2,4,PC,FP,9.7925,0.006,,1,qlp,QLP,07:57:23.99,-19:30:57.65,-3.9,0.848,3.866,1.158,2458494.77797,0.00213,14.5378,0.0,6.826,0.499,4.395259,0.011655,4040.0,10.7344,16.0523,,,,20.0,379.693,,8007.0,,,,2.05,,,,,,7,2019-07-24,2020-08-03,2022-12-14 12:09:24,,996,1,False,False,True -341729521,997.01,,5,5,5,5,5,5,5,231.2,496.8,317.0,4,4,1,EB,FP,9.7727,0.006,,1,spoc,UNKNOWN,08:05:16.68,-59:34:47.27,-44.77,0.044,-2.616,0.036,2459230.149086,0.00033954473,8.41348556875335,0.000264497,3.55683340369076,0.031893447,19.146065,0.117015,17479.60533057,107.768585,20.510695887213,5.1767187,127.916421276106,857.731430844948,177.73282,113.667,0.2655,5786.0,132.9,4.52,0.08,0.926261,0.045789,,,1.04,0.122464,"4,7,8,9,10,34",2019-07-24,2021-03-18,2022-12-14 12:09:24,TFOP FP; retired as EB,997,1,False,False,True -54390047,998.01,,5,5,5,5,5,5,5,8.2,50.8,18.72,2,2,5,PC,FP,9.6952,0.007,,1,spoc,UNKNOWN,07:53:16.69,-14:13:07.76,-1.706,0.069,-1.714,0.061,2459229.569561,0.002223784,0.94143596330583,0.00015808809,1.36069955758889,0.3867723,0.369118,0.036579,339.912661787819,33.689648,4.5292089908626,3.9919791,41562.5878114362,3641.62644868512,9.02753,482.278,11.1405,8322.0,130.7,4.01,0.07,2.34986,0.0915779,,,2.05,0.307938,34,2019-07-24,2020-05-20,2022-12-14 12:09:24,,998,1,False,False,True -341186896,999.01,,5,5,5,5,5,5,5,29.0,132.6,26.43,0,1,1,EB,FP,9.6171,0.006,,1,qlp-s61-ffi,UNKNOWN,07:55:27.38,-58:13:19.42,-17.19,0.042,12.272,0.039,2459985.987965,0.0018666,1.5078959,1.5e-06,2.759,0.255,1.998507,0.033629,1839.0,30.9731,5.53091,0.231482,9662.8,2762.0,63.0,180.02,0.6635,6635.0,130.1,4.35,0.09,1.3,0.05,,,1.39,0.231919,"7,8,9,10,27,34,35,36,37,61",2019-07-24,2023-03-08,2023-03-24 12:12:10,centroid offset; TFOP FP/NEB,999,1,False,False,True -50365310,1000.01,,5,5,5,5,5,5,5,10.1,64.5,28.66,0,1,5,EB,FP,9.604,0.013,,1,spoc,UNKNOWN,07:29:25.85,-12:41:45.46,-5.964,0.085,-0.076,0.072,2459229.630046,0.0016573033,2.17134838715744,0.0002636803,2.01721957610162,0.31958792,0.713439,0.041018,656.886098860902,37.77821,5.81816333930811,1.9105465,22601.948581394,3127.20405244216,12.843955,485.735,11.9515,10249.0,264.7,4.19,0.07,2.16986,0.0725729,,,2.64,0.34882,34,2019-07-24,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as NEB,1000,1,False,False,True -88863718,1001.01,,3,4,3,3,4,4,4,60.1,175.1,87.17,0,1,5,PC,PC,9.42344,0.006,,1,qlp-s61-ffi,QLP,08:10:19.31,-05:30:49.87,-4.956,0.102,-15.555,0.072,2459987.948873,0.0019158,1.9316462,5.3e-06,3.166,0.647,1.397155,1.28898,1286.0,1186.49,11.2154,2.6242,44464.5,4045.0,30.0,295.862,5.91,7070.0,126.4,4.03,0.09,2.01,0.09,,,1.565,0.266028,"7,34,61",2019-07-24,2023-04-03,2023-04-04 12:14:00,v-shaped,1001,1,False,False,True -124709665,1002.01,,5,5,5,5,5,5,5,,,317.0,3,1,5,EB,FP,9.299501,0.058,,1,qlp-s33-tois,QLP,06:58:54.47,-10:34:49.64,-1.462,0.206,-2.249,0.206,2459224.687802,0.0006253,1.8675574,3e-06,1.408,0.184,1.629827,0.001909,1500.0,1.7584,23.7529,,2860.61,2037.0,28.0,943.109,106.333,8924.0,124.0,,,5.73,,,,,,"7,33",2019-07-24,2022-07-11,2022-12-14 12:09:24,TFOP FP; retired as NEB,1002,1,False,False,True -106997505,1003.01,,5,5,5,5,5,5,5,23.1,181.8,317.0,0,3,1,EB,FP,9.3003,0.037,,1,qlp-s07-ffi,QLP,07:22:14.39,-25:12:25.26,-0.939,0.041,1.64,0.055,2458493.3957,0.00535,2.74323,0.00108,3.167,0.642,0.416362,0.000849,383.41,0.781988,,,1177.36,1631.0,14.0,7728.17,1899.57,5388.5,567.0,4.15,1.64,,,,,,,7,2019-07-24,2022-02-22,2022-12-14 12:09:24,No Gaia DR2 radius but might be evolved so transiting object might be too big; TIC8 gives a radius of ~80 Rsun which makes the companion radius stellar in size,1003,1,False,False,True -238597883,1004.01,,5,5,5,5,5,5,5,40.8,159.9,88.76,0,1,1,EB,FP,9.1355,0.006,,1,qlp-s61-ffi,UNKNOWN,08:08:42.77,-48:48:10.12,-4.496,0.069,9.347,0.062,2459987.047262,0.0037481,3.5730141,1.28e-05,3.37,1.029,0.82004,1.419496,755.0,1306.55,11.3113,3.24714,54679.3,4260.0,24.0,356.437,4.6175,9219.0,171.1,4.14,0.07,2.15,0.06,,,2.34,0.329495,"7,9,34,61",2019-07-24,2023-03-08,2023-03-24 12:12:10,SPOC s34 shows an offset ~20'' NW (near TIC 238597889); TFOP FP/NEB,1004,1,False,False,True -169904935,1005.01,,5,5,5,5,5,5,5,39.3,189.1,34.91,3,3,4,EB,FP,9.1309,0.006,,1,qlp-tois-update,QLP,08:02:49.15,-11:06:05.47,-26.932,1.935,-2.901,2.06,2458492.5552,0.00106,4.55072,0.00033,2.599,0.284,3.937496,0.002364,3620.0,2.1771,6.54449,0.45717,254.05,1112.0,73.0,100.711,14.121,5613.0,179.9,,,1.09,0.07,,,,,7,2019-07-24,2022-02-22,2022-12-14 12:09:24,TFOP FP; retired as NEB,1005,1,False,False,True -156115721,1006.01,,5,5,5,5,5,5,5,67.8,234.2,56.74,0,0,4,EB,FP,9.2386,0.006,,1,spoc,UNKNOWN,08:17:26.22,-27:16:24.68,-29.1,2.6,-6.8,2.2,2459229.984579,0.0021594113,2.50479182514848,0.0004076079,4.37975633109929,0.10365538,2.468011,0.088362,2270.54021938691,81.38088,8.69508981791117,8.438766,1750.93263496655,1649.82206991311,19.892866,,,6616.0,200.0,,,1.53429,1.4887,,,,,"7,8,34",2019-07-24,2021-03-23,2022-12-14 12:09:24,TFOP FP; retired as NEB,1006,1,False,False,True -65212867,1007.01,,3,4,3,3,4,4,4,53.1,60.1,317.0,0,4,8,PC,PC,8.87759,0.006,,1,qlp,UNKNOWN,07:31:00.57,-04:27:48.09,0.357,0.058,3.399,0.045,2459247.930695,0.0013,6.9989206,1.37e-05,3.953,0.437,3.087878,0.001025,2840.0,0.943618,14.7752,0.764705,448.744,1282.0,44.0,283.291,3.0025,6596.0,139.2,3.71,0.09,2.7,0.13,0.154,0.01,1.376,0.229992,"7,34",2019-07-24,2021-06-11,2022-12-14 12:09:24,,1007,1,False,False,True -440801822,1008.01,,5,5,5,5,5,5,5,6.9,56.3,7.89,1,2,5,PC,FP,8.9362,0.012,,1,qlp,QLP,07:17:31.88,13:23:42.79,-17.9,1.1,1.3,1.0,2458492.52135,0.00579,2.04936,0.00105,2.234,0.401,0.270925,0.000612,249.5,0.564034,1.71607,0.318238,2107.05,1887.0,12.0,144.297,,6858.5,584.6,4.2,1.9,0.99,0.18,,,,,7,2019-07-24,2019-07-24,2022-12-14 12:09:24,,1008,1,False,False,True -107782586,1009.01,,3,4,3,3,3,4,4,,,22.13,0,1,3,PC,PC,8.4331,0.028,,1,qlp,UNKNOWN,07:26:40.28,-24:27:43.6,-3.297,0.319,4.849,0.358,2459252.751357,0.0016323,1.9600296,5e-06,1.842,0.158,2.282443,1.002143,2100.0,922.582,,,26538.5,3555.0,11.0,866.147,172.097,8868.7,809.8,,,,,,,,,"7,34",2019-07-24,2021-06-11,2022-12-14 12:09:24,no stellar radius; Simbad lists as B3III/IV; planet likely larger; odd-even; hot star with extremely rapid rotation,1009,1,False,False,True -139853601,1010.01,,5,5,5,5,5,5,5,,,29.45,2,1,4,EB,FP,8.45086,0.006,,1,spoc,UNKNOWN,07:29:10.56,-21:49:58.48,-5.746,0.176,4.502,0.261,2459228.878101,0.0007913349,0.680870199603779,3.904395e-05,2.46345632742384,0.055706516,1.638309,0.043399,1507.80068889534,39.971123,5.91159082638023,1.5360428,87140.6995884465,4382.02660624176,23.648024,485.122,36.246,9438.0,782.0,,,1.0,,,,,,"7,34",2019-07-24,2021-03-18,2022-12-14 12:09:24,TFOP FP; retired as EB,1010,1,False,False,True -114018671,1011.01,,1,4,4,1,3,4,4,5.2,9.9,2.7,5,3,3,PC,PC,8.2388,0.006,,1,qlp-s61-ffi,UNKNOWN,07:35:56.34,-32:50:31.2,145.102,0.046,-134.901,0.052,2459984.627768,0.0026189,2.4704981,7.3e-06,2.191,0.482,0.271468,0.019682,250.0,18.1279,1.44656,0.107503,575.597,1364.0,17.0,52.62,0.0793,5413.7,132.8,4.46,0.09,0.94,0.05,-0.1,0.05,0.94,0.119244,"7,34,61",2019-07-24,2023-03-22,2023-03-24 12:12:10,,1011,1,False,False,True -427508467,1012.01,,4,5,5,4,4,4,4,406.6,853.9,317.0,1,2,10,PC,APC,8.12718,0.006,,1,qlp,UNKNOWN,07:48:22.87,06:47:06.23,-2.99,0.202,-0.029,0.106,2459252.509595,0.0003695,0.884182,7e-07,1.621,0.035,2.053983,0.338114,1890.0,311.366,24.8132,5.41599,112144.0,5098.0,102.0,295.959,11.315,8928.0,128.7,3.92,0.08,2.72,0.13,,,2.251,0.33898,"7,34",2019-07-24,2021-06-11,2023-03-10 12:02:47,V-shaped; slight centroid offset,1012,1,False,False,True -97700520,1013.01,,5,5,5,5,5,5,5,,,117.29,5,1,3,EB,FP,7.6095,0.006,,1,spoc,SPOC,07:09:08.66,-31:56:00.68,-3.973,0.063,7.061,0.071,2459232.248322,0.00051247806,5.42555479046561,0.0002073206,3.9637474199894,0.02114011,16.342886,0.259493,14939.6342221973,238.97354,,,273.588069576468,1037.2753045477,44.632336,510.295,9.32,8868.7,809.8,,,,,,,,,"7,34",2019-07-24,2021-03-18,2022-12-14 12:09:24,hot star; transiting object might be too big; Gaia DR2 delta r mag for 97700562 = 8 mag,1013,1,False,False,True -96246348,1014.01,,5,5,5,5,5,5,5,,,37.02,1,2,3,PC,FP,7.678,0.012,,1,qlp-s61-ffi,QLP,06:54:14.78,-34:13:22.15,-13.063,0.078,9.737,0.141,2459985.657041,0.0003095,1.4095041,7e-07,1.125,0.167,4.183792,0.761329,3846.0,700.964,,,11266.5,2870.0,39.0,224.672,2.8445,9307.0,938.9,,,,,,,,,"6,7,33,34,61",2019-07-24,2023-04-04,2023-07-05 12:02:57,phantom TIC; real stars are TIC 772008799 and TIC 772008800,1014,1,False,False,True -155044736,1015.01,,3,4,3,3,3,4,4,,,317.0,0,0,3,PC,PC,10.7069,0.008,,1,spoc-s61-b0A,QLP,08:11:35.03,-27:58:18.83,1.566,0.052,-17.974,0.053,2459963.610065,0.0042213355,1.37372717891257,0.00040577722,2.47376950372737,0.21669242,1.372399,0.276242,1263.22787175757,254.39607,31.8858021996017,7.1109533,3158.54529852724,1912.01602119525,9.961995,906.496,28.8415,4897.0,122.0,,,6.79961013793945,,,,,,"7,8,34,61",2019-04-01,2023-06-28,2023-06-28 00:00:00,centroid offset centered near TIC 155044728 (Tmag ~14); secondary in spoc-s61; Rp~32 Re,1015,1,False,False,True -175310067,1016.01,,5,5,5,5,5,5,5,26.6,106.2,128.46,4,0,1,EB,FP,10.6257,0.006,,1,spoc,UNKNOWN,07:44:26.59,-36:05:53.83,-9.231,0.048,11.614,0.052,2459238.831138,0.006715143,12.6889414936027,0.009508793,7.92010012475084,0.53937656,3.515711,0.255453,3232.85278853045,235.25328,14.0608342049633,15.241591,425.159417676909,1158.131036823,13.069341,368.646,3.784,7601.0,135.8,4.31,0.08,1.53641,0.0479799,,,1.77,0.302711,34,2019-04-01,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as NEB,1016,1,False,False,True -182943944,1017.01,,5,5,5,5,5,5,5,220.4,324.3,317.0,1,0,1,PC,FP,10.6019,0.006,,1,qlp,QLP,08:18:54.34,-37:46:59.7,-11.278,0.045,9.593,0.045,2458518.96536,0.00137,1.10422,0.00013,2.37,0.062,15.503405,0.916518,14177.7,843.788,21.0448,5.22012,39459.3,3926.0,56.0,406.997,4.7245,6995.2,157.0,4.07,0.55,1.61,0.07,,,1.6,0.280433,8,2019-07-24,2019-07-24,2022-12-14 12:09:24,possibly off target to N,1017,1,False,False,True -291555748,1018.01,,5,5,5,5,5,5,5,115.8,173.0,317.0,2,0,1,PC,FP,10.6254,0.006,,1,qlp,QLP,07:26:51.84,-50:15:59.64,-8.018,0.049,11.56,0.047,2458492.78078,0.00073,4.95912,0.00016,2.509,0.13,8.108077,0.214956,7440.0,197.962,22.9123,3.28055,673.55,1419.0,92.0,360.541,2.9645,5889.0,124.3,3.86,0.07,2.0,0.09,,,1.07,0.134657,"7,8,9",2019-04-01,2020-05-20,2022-12-14 12:09:24,,1018,1,False,False,True -341420329,1019.01,,3,4,4,3,3,4,4,131.7,297.7,317.0,3,3,1,PC,PC,10.6348,0.006,,1,spoc,UNKNOWN,08:00:35.52,-54:52:42.79,-11.732,0.047,2.586,0.061,2459232.446777,0.00021601135,5.23409637813213,2.6583333e-05,3.69090470867784,0.016388487,22.535781,0.077113,20542.2936714085,71.021614,24.0878820226281,0.74451643,1453.66800675036,1574.83862409307,269.15555,399.544,4.1635,7645.0,134.4,4.3,0.08,1.5620299577713,0.0481257,,,1.79,0.289153,"7,8,9,34,35,36",2019-07-24,2021-09-29,2022-12-14 12:09:24,Large for its insolation,1019,1,False,False,True -140706664,1020.01,,5,5,5,5,5,5,5,85.8,336.1,87.05,1,0,1,PC,FP,10.7173,0.013,,1,qlp,QLP,08:33:31.67,-43:49:42.32,-5.814,0.051,4.328,0.047,2458521.29108,0.00241,3.28892,0.00066,3.793,0.202,11.481242,0.576253,10518.9,530.608,,,29832.6,3661.0,32.0,906.827,23.8635,8734.2,283.6,4.1,1.45,,,,,,,8,2019-07-24,2019-07-24,2022-12-14 12:09:24,slightly V shaped; possibly off target to N,1020,1,False,False,True -143994283,1021.01,,5,5,5,5,5,5,5,6.4,51.7,9.97,1,2,1,PC,FP,10.5551,0.006,,1,qlp,QLP,07:57:12.18,-42:59:56.94,-3.211,0.046,-15.082,0.051,2458492.90429,0.00426,1.90879,0.00035,1.909,0.231,0.671716,0.001561,618.482,1.43774,3.34688,0.217749,985.807,1561.0,14.0,235.974,1.579,6022.6,133.5,4.52,0.39,1.22,0.05,,,1.35,0.223358,8,2019-07-24,2019-07-24,2022-12-14 12:09:24,,1021,1,False,False,True -47384844,1022.01,,5,5,5,5,5,5,5,11.4,86.7,11.25,0,4,7,PC,FA,8.72924,0.007,,1,qlp-s09-b03,QLP,10:51:51.58,-05:47:19.35,-15.787,0.09,-11.849,0.077,2458547.448,0.00834,3.09574,0.00677,4.475,1.196,0.412658,,380.0,,3.4262,0.778713,18087.9,3230.0,9.0,120.666,1.068,6084.0,111.0,4.13,0.3,1.41,0.05,,,1.192,0.168837,9,2019-06-04,2021-12-07,2023-06-06 12:02:56,low SNR; could be instrument noise,1022,1,False,False,True -238374636,1023.01,,5,5,5,5,5,5,5,200.0,189.8,317.0,2,0,1,EB,FP,9.697,0.006,,1,qlp-s36-ffi,QLP,08:03:21.05,-51:20:44.25,-23.366,0.042,22.652,0.04,2459303.303969,0.003015,1.3214483,2.31e-05,3.435,0.071,2.369489,0.149783,2180.0,137.946,21.8839,4.01475,35623.2,3827.0,76.0,316.398,2.247,5050.8,86.8,3.56,0.4,2.99,0.15,,,1.08,0.142595,"7,8,9,34,35,36",2019-07-24,2021-12-07,2022-12-14 12:09:24,retired as FP/NEB,1023,1,False,False,True -141482386,1024.01,,5,5,5,5,5,5,5,,,317.0,0,0,1,EB,FP,10.0814,0.006,,1,qlp,QLP,05:47:16.97,-72:25:21.4,1.128,0.044,11.563,0.047,2458339.72276,0.00592,18.0157,0.00015,2.524,0.403,0.662501,0.001806,610.0,1.66317,21.644,,7.64364,463.0,11.0,692.266,12.113,4709.0,122.0,,,7.61,,,,,,"1,2,4,5,6,7,8,9,10,11,12,27,28,29",2019-07-24,2020-11-13,2022-12-14 12:09:24,depth-aperture correlation; centroid image towards SW in past QLP sectors; v-shaped transits,1024,1,False,False,True -297967252,1025.01,,3,4,3,3,3,4,4,,,44.4,0,0,3,PC,PC,5.5324,0.006,,1,qlp-s62-ffi,SPOC/QLP,09:30:05.08,-51:31:01.61,-19.153,0.168,11.046,0.178,2459997.71748,0.0013272,9.6837739,2.73e-05,2.379,0.158,5.185898,1.484119,4765.0,1365.99,,,871.997,1513.0,99.0,129.838,1.713,8598.7,1245.7,,,,,,,,,"9,10,35,36,62",2019-07-24,2023-04-12,2023-04-25 12:12:35,literature EB (https://ui.adsabs.harvard.edu/abs/2021A%26A...652A.120I/abstract),1025,1,False,False,True -388624270,1026.01,,5,5,5,5,5,5,5,4.7,67.7,13.44,0,1,1,PC,FP,9.9138,0.006,,1,spoc,UNKNOWN,08:21:44.31,-51:45:33.99,47.228,0.047,-6.325,0.039,2459237.459734,0.0065036556,14.2694371886658,0.009218703,6.93504937355735,0.466316,1.354097,0.102703,1246.39218714924,94.588425,3.72553810836242,0.26792818,51.2588495539331,682.436054200897,14.453426,105.677,0.2575,5690.0,129.0,4.58,0.08,0.853898,0.0413895,,,1.01,0.12676,34,2019-06-11,2020-10-28,2022-12-14 12:09:24,TFOP NEB,1026,1,False,False,True -20318757,1027.01,,2,4,2,2,4,4,4,11.8,96.7,8.66,12,2,4,PC,PC,10.2103,0.006,,1,qlp-s63-ffi,QLP,11:08:31.99,-29:39:11.29,-87.554,0.073,12.992,0.057,2460037.86905,0.0014061,3.2834565,4.6e-06,1.537,0.709,1.692896,0.201336,1558.0,185.42,2.87648,0.314177,161.092,992.0,23.0,56.3449,0.13245,4272.0,122.7,4.6,0.11,0.68,0.06,,,0.67,0.0857226,"9,36,63",2019-07-24,2023-05-05,2023-06-05 00:00:00,TOI 1027.01; potential multi; variable host,1027,1,True,False,True -20318757,1027.02,,2,4,2,2,4,4,4,3.7,61.4,8.1,12,2,4,PC,PC,10.2103,0.006,,2,qlp-s63-ffi,QLP,11:08:31.99,-29:39:11.29,-87.554,0.073,12.992,0.057,2460032.53325,0.0029127,11.02875,3.54e-05,2.715,0.404,1.840797,0.113392,1694.0,104.432,2.76586,0.268927,15.0463,548.0,17.0,56.3449,0.13245,4272.0,122.7,4.6,0.11,0.68,0.06,,,0.67,0.0857226,"9,36,63",2021-06-03,2023-05-05,2023-06-16 12:14:51,TOI 1027.02,1027,2,True,False,True -20318757,1027.03,TIC 20318757.03,1,4,1,1,4,4,4,6.5,69.7,6.93,12,2,4,PC,PC,10.2103,0.006,,3,qlp-s63-ffi,QLP,11:08:31.99,-29:39:11.29,-87.554,0.073,12.992,0.057,2460032.57304,0.0025669,5.0113292,1.2e-05,1.024,0.471,1.314536,0.19766,1210.0,182.035,2.52314,0.302798,17.1793,567.0,12.0,56.3449,0.13245,4272.0,122.7,4.6,0.11,0.68,0.06,,,0.67,0.0857226,"9,36,63",2023-05-18,2023-05-18,2023-06-16 12:14:51,L1 multi candidate,1027,3,True,False,True -447283466,1028.01,,5,5,5,5,5,5,5,12.4,21.1,1.95,1,3,3,PC,FP,7.9059,0.006,,1,qlp,QLP,10:28:23.6,-51:42:19.47,30.65,0.054,-33.906,0.056,2458544.48066,0.00412,1.01606,0.00034,2.843,0.278,0.260608,0.000408,240.0,0.375709,1.20704,0.0989898,2784.04,2023.0,27.0,23.7748,0.02025,4634.0,120.9,4.64,0.09,0.68,0.05,,,0.74,0.0871956,"9,10",2019-07-24,2020-05-20,2022-12-14 12:09:24,crowded; need SG1 to check neighbors,1028,1,False,False,True -374908020,1029.01,,5,5,5,5,5,5,5,30.4,273.8,74.24,0,1,1,EB,FP,6.841,0.0,,1,qlp-s09-b03,QLP,05:54:57.38,-65:57:31.82,,,,,2458365.89313,0.00096,36.22214,0.00046,5.107,0.188,7.812771,0.247764,7170.0,228.173,,,,,285.0,,,,,,,,,,,,,"2,9",2019-06-11,2021-12-07,2022-12-14 12:09:24,GAIA DR2: Teff = 6109 K; R = 1.091 R_solar; the planet is probably jupiter size; retired as NEB,1029,1,False,False,False -464296022,1030.01,,5,5,5,5,5,5,5,149.1,265.6,317.0,1,0,1,EB,FP,9.5706,0.006,,1,qlp-s63-ffi,QLP,10:23:19.55,-57:35:24.89,-26.184,2.184,22.489,1.073,2460054.783937,0.0006283,12.1246519,1.03e-05,4.612,0.667,7.931977,7.063874,7279.0,6484.95,17.6729,2.59688,207.32,1057.0,60.0,78.41273,2.83992,4807.6,60.0,4.17,0.36,1.07,0.03,,,,,"9,10,36,37,63,64",2019-07-24,2023-05-31,2023-06-16 12:14:51,Looks like a ~12 day transit candidate blended with a ~1.5 day EB/variability; TFOP FP/NEB,1030,1,False,False,True -304021498,1031.01,,5,5,5,5,5,5,5,13.4,59.5,37.26,0,0,3,EB,FP,9.7318,0.006,,1,spoc,UNKNOWN,09:23:32.13,-67:01:33.62,-23.901,0.042,3.03,0.047,2459282.239861,0.002045949,5.64968344534744,0.000813583,2.56128816954986,0.407146,1.297506,0.112581,1194.33385575075,103.68587,6.78926162398394,2.551151,1226.22032569212,1509.25240728512,11.463815,270.771,1.6275,6415.4,103.2,3.98,0.08,1.92200005054474,0.0794221,-0.273697,0.052312,1.29,0.204498,"9,10,11,36",2019-06-25,2020-05-20,2022-12-14 12:09:24,centroid offset in spoc s36; 2 stars with one pixel separation (304021495); TFOP FP; retired as NEB,1031,1,False,False,True -146589986,1032.01,,3,4,3,3,3,4,4,37.3,61.1,317.0,5,0,3,PC,PC,9.7611,0.006,,1,spoc,UNKNOWN,10:36:53.16,-42:32:29.9,-15.15,0.072,6.437,0.087,2459283.829887,0.0014347314,5.66447295470419,0.00076890254,3.64596662936371,0.12058417,3.75181,0.174944,3449.58145508909,161.11594,14.3057012151342,0.8767856,7657.47736862367,2385.83925585147,17.884367,587.196,18.7865,10395.0,320.6,4.13,0.07,2.33837008476257,0.109357,,,2.68,0.356284,"9,10,36",2019-07-24,2021-05-20,2022-12-14 12:09:24,need SG1 to check 146589990; still a planet if it's on 146589990,1032,1,False,False,True -149601557,1033.01,,5,5,5,5,5,5,5,8.1,44.7,70.23,0,0,1,EB,FP,10.0163,0.006,,1,qlp,SPOC,05:49:07.82,-60:29:54.4,8.9,3.1,20.7,2.2,2459179.54455,0.0021257,29.0162503,0.0001146,6.507,0.763,1.564587,0.002056,1440.0,1.89359,9.84223,,159.189,,35.0,219.94,,6113.1,,,,2.01,,0.0917514,0.0457663,,,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,30,31,32",2019-06-11,2021-02-17,2022-12-14 12:09:24,the first two transit got de-trended badly; don't trust odd/even. The transit appears consistently,1033,1,False,False,True -400595342,1034.01,,5,5,5,5,5,5,5,5.8,48.1,16.5,0,1,3,PC,FP,9.8174,0.006,,1,spoc,UNKNOWN,08:57:46.02,-49:00:02.08,-4.837,0.063,4.109,0.062,2459283.337537,0.0034839318,3.63446915763894,0.000977255,2.53392340841871,0.5744699,0.682816,0.061134,628.699014978832,56.304756,4.20483676783804,2.1508167,5420.17834901381,2188.38204987847,9.941104,363.44,4.983,9810.0,173.7,4.43,0.06,1.60775995254517,0.0427739,,,2.51,0.343034,"8,9,36",2019-07-24,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as NEB,1034,1,False,False,True -361413119,1035.01,,3,4,3,3,3,4,4,194.3,392.3,317.0,5,0,8,PC,PC,10.1126,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,09:36:36.07,-61:34:59.46,-9.506,0.239,16.897,0.207,2459311.16903,0.001083395,6.07427816124356,0.00020656465,2.54680644765784,0.06710772,6.577722,0.134602,6039.99094818871,123.96505,31.3717883726865,15.746507,1487.61979324272,1583.95462593286,45.244118,347.556,13.63,5964.0,128.4,3.7,0.09,2.43038010597229,0.151568,,,1.09,0.144591,"9,10,36,37",2019-07-24,2022-03-22,2022-12-14 12:09:24,Very large candidate - likely EB (Rp > 30 Re but with large error); secondary,1035,1,False,False,True -146172354,1036.01,,3,4,3,3,3,4,4,19.6,91.4,29.87,5,4,5,PC,PC,10.2855,0.006,,1,qlp-s63-ffi,QLP,10:31:28.11,-42:14:25.61,10.992,0.037,-57.748,0.049,2460037.172273,0.001095,3.7795212,4e-06,2.952,0.158,3.001864,0.065415,2761.0,60.2474,5.98375,0.311897,466.528,1294.0,37.0,184.015,0.962,5771.0,132.3,4.31,0.08,1.18,0.06,,,1.03,0.135665,"9,36,63",2019-07-24,2023-05-05,2023-06-16 12:14:51,multiple stars in pixel,1036,1,False,False,True -363260203,1037.01,,5,5,5,5,5,5,5,10.1,88.4,13.52,1,1,3,EB,FP,9.0211,0.006,,1,spoc,UNKNOWN,09:49:32.44,-63:18:23.32,-19.687,0.07,10.953,0.068,2459308.305635,0.0017697139,1.20132722147649,0.00015416136,3.44753738625331,0.31098443,0.464135,0.025545,427.392588348583,23.527243,3.73972262961317,0.94754916,22275.4350050033,3115.84824862093,11.450519,279.698,3.279,9158.0,171.4,4.32,0.07,1.74161005020142,0.0494849,,,2.32,0.319521,"9,11,36,37",2019-07-24,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as EB,1037,1,False,False,True -90544017,1038.01,,5,5,5,5,5,5,5,12.3,76.6,26.09,1,0,2,EB,FP,8.7157,0.006,,1,qlp,QLP,08:33:49.11,-49:56:25.25,-15.5,1.6,7.0,1.5,2459273.371643,0.0020248,3.2235985,1.38e-05,2.159,0.452,0.738552,0.001227,680.0,1.13,5.51341,,2064.8,,23.0,280.765,,8904.0,239.9,4.09,1.36,2.17,,,,,,"8,9,35",2019-07-24,2021-05-05,2022-12-14 12:09:24,TFOP FP; retired as NEB,1038,1,False,False,True -461867584,1039.01,,3,5,5,3,3,4,4,,,25.37,8,0,3,PC,APC,8.5483,0.6,,1,qlp-s63-ffi,QLP,09:58:45.25,-58:45:37.63,-6.434,0.215,4.098,0.246,2460031.2166,0.0007097,4.420125,8.5e-06,3.956,1.259,2.680732,0.213151,2466.0,196.3,,,,,46.0,2864.34,1012.54,,,,,,,,,,,"9,10,36,37,63",2019-07-24,2023-05-05,2023-06-16 12:14:51,Transitting object might be too big as star is hot and distant (potential B4IV from Simbad which would imply radius > 30 Re); TFOP EB/APC,1039,1,False,False,True -310483807,1040.01,,5,5,5,5,5,5,5,,,92.38,1,0,1,PC,FP,8.3854,0.007,,1,qlp,QLP,08:34:27.41,-61:29:17.74,-11.78,0.118,6.725,0.097,2458520.65674,0.00497,2.55555,0.00045,1.566,0.375,0.369213,0.00149,340.0,1.37224,11.5901,,3520.68,2145.0,6.0,732.432,32.449,10037.0,123.0,,,6.04,,,,,,"8,9,10",2019-07-24,2020-05-20,2022-12-14 12:09:24,crowded; hot star,1040,1,False,False,True -385624852,1041.01,,5,5,5,5,5,5,5,411.0,1767.7,317.0,5,0,3,EB,FP,8.0981,0.006,,1,qlp,UNKNOWN,09:13:36.54,-55:11:52.47,-14.189,0.065,14.261,0.058,2459261.801216,0.0004000633,8.30792,0.00037,3.228,0.089,9.103959,0.17399,8350.0,160.238,43.1068,4.42399,2276.25,1924.0,137.0,305.034,2.981,9081.0,173.2,3.83,0.07,3.05,0.09,,,2.3,0.333768,"9,10,35,36",2019-07-24,2021-04-28,2022-12-14 12:09:24,TFOP FP; retired as EB,1041,1,False,False,True -360286627,1042.01,,3,4,3,3,3,4,4,23.3,83.6,72.84,1,0,3,PC,PC,9.718,0.006,,1,qlp-s37-tois,QLP,09:27:54.05,-61:19:48.14,-11.595,0.056,3.139,0.057,2459988.629522,0.0017504286,0.7581018,1.2e-06,1.078,0.192,0.847205,0.000769,780.0,0.708192,10.0744,0.473762,17894.0,3222.0,32.0,792.633,19.4965,9917.0,199.6,3.75,0.06,3.51,0.12,,,2.54,0.324766,"9,10,36,37,62",2019-07-24,2023-04-13,2023-04-13 00:00:00,check neighbors; likely EB or BEB (V-shaped and very short period),1042,1,False,False,True -90448944,1043.01,,5,5,5,5,5,5,5,11.6,72.9,12.73,5,2,3,EB,FP,9.5719,0.006,,1,qlp-s61-ffi,UNKNOWN,08:33:12.56,-52:42:51.13,-9.496,0.051,14.659,0.045,2459985.770425,0.0037454,1.4415577,7.4e-06,2.349,0.682,0.550608,0.059679,507.0,54.9645,3.61078,0.26004,16861.8,3174.0,24.0,208.055,1.1015,6902.0,135.7,4.25,0.09,1.52,0.06,,,1.5,0.252304,"8,9,35,36,61",2019-07-24,2023-03-08,2023-03-24 12:12:10,TFOP FP/NEB,1043,1,False,False,True -463402815,1044.01,,3,4,3,3,3,4,4,80.2,215.5,113.34,4,0,2,PC,PC,10.0031,0.006,,1,qlp-s63-ffi,QLP,10:15:14.65,-58:45:59.01,-14.441,0.073,6.214,0.069,2460037.194672,0.000793,1.0085089,9e-07,1.642,0.343,3.317645,0.748255,3051.0,688.931,,,,,57.0,494.689,9.557,5215.2,1166.8,,,,,,,,,"9,10,36,37,63",2019-07-24,2023-05-11,2023-06-16 12:14:51,variable host; visual binary; likely A type star; v-shaped,1044,1,False,False,True -54044474,1045.01,,5,5,5,5,5,5,5,107.0,150.8,317.0,0,0,0,EB,FP,9.6306,0.006,,1,qlp-s36-ffi,QLP,10:39:33.05,-32:30:42.77,-34.609,0.053,14.667,0.057,2459301.544126,0.0006108,3.7039994,3.7e-06,4.277,0.599,8.272171,0.001326,7590.0,1.22092,17.57,0.746573,3546.13,2149.0,146.0,300.696,3.3695,7013.8,299.6,4.21,0.44,1.9,0.08,,,1.58,0.271589,"9,36",2019-07-24,2021-12-07,2022-12-14 12:09:24,TFOP FP; retired as BEB,1045,1,False,False,True -309787037,1046.01,,5,5,5,5,5,5,5,16.5,72.8,25.21,0,2,1,EB,FP,10.0119,0.006,,1,qlp-s61-ffi,UNKNOWN,08:25:40.67,-60:54:27.05,-1.536,0.058,-9.979,0.048,2459987.448994,0.0015859,1.3042588,2.1e-06,1.643,0.503,0.811823,0.058664,747.436699903847,54.030025,5.38606,0.35593,7170.41,2563.0,34.0,301.298,2.496,6762.0,130.2,4.11,0.08,1.75,0.07,,,1.45,0.240384,"8,9,10,35,36,37,61",2019-07-24,2023-03-08,2023-03-24 12:12:10,TFOP FP; retired as NEB/SB2,1046,1,False,False,True -370745311,1047.01,,5,5,5,5,5,5,5,69.9,236.3,27.69,3,1,3,PC,FP,10.2355,0.006,,1,qlp,QLP,09:38:19.57,-67:30:18.35,-35.412,0.104,24.084,0.128,2458544.79061,0.00092,0.62627,2e-05,0.666,0.169,2.043105,0.074398,1880.0,68.5212,5.72162,0.894462,3235.57,2101.0,41.0,134.926,1.0555,5622.0,131.2,4.5,0.07,0.93,0.05,,,1.0,0.119578,"9,10,11",2019-07-24,2020-05-20,2022-12-14 12:09:24,Check 2 minute data for odd even,1047,1,False,False,True -384549882,1048.01,,5,5,5,5,5,5,5,78.9,309.2,77.13,6,1,3,PC,FP,8.802,0.006,,1,qlp,QLP,09:06:06.65,-54:54:14.12,-10.863,0.096,7.063,0.089,2458518.376,0.00075,0.30412,1e-05,0.748,0.1,1.44499,0.00416,1330.0,3.83107,10.417,0.668057,280833.0,6413.0,70.0,440.426,9.484,11892.0,235.8,4.14,0.07,2.52,0.09,,,3.17,0.422288,"8,9,10",2019-07-24,2020-05-20,2022-12-14 12:09:24,probably EB,1048,1,False,False,True -16288184,1049.01,,5,5,5,5,5,5,5,124.9,146.5,317.0,0,0,7,KP,KP,11.0657,0.006,,1,spoc-s01-s39-b0A-KP,UNKNOWN,16:55:04.52,-28:42:38.1,-8.568,0.1,-5.562,0.055,2459363.821393,0.00069893606,2.18052771325924,2.7239244e-06,2.96917503399481,0.040720966,17.887621,0.463595,16340.1353204582,426.89557,16.808853048342,0.88213754,1770.46505387412,1654.40406798088,35.624012,314.995,7.0655,6599.0,200.0,4.21017,1.96411,1.27146005630493,0.0635578,,,1.198,0.180418,"12,39",2019-07-15,2022-03-30,2022-12-14 12:09:24,K2-237 b,1049,1,False,False,True -66818296,1050.01,,5,5,5,5,5,5,5,114.9,185.6,317.0,0,1,1,KP,KP,11.0261,0.006,,1,qlp-s38-tois,UNKNOWN,15:59:50.94,-28:03:42.46,-8.1,0.102,-9.639,0.055,2459355.54563,0.0002571,3.7354838,2.1e-06,4.142,0.045,18.649341,0.000295,17030.0,0.271732,21.2315,1.19579,1292.19,1670.0,227.0,405.908,8.6,6650.0,,4.1639,,1.57,0.09,-0.07,0.1,1.354,0.214082,"12,38",2019-07-15,2022-10-04,2022-12-14 12:09:24,WASP-17 b,1050,1,False,False,True -259863352,1051.01,,5,5,5,5,5,5,5,2.3,38.6,7.43,0,7,6,PC,FA,7.1278,0.006,,1,spoc,SPOC,02:41:27.83,-71:27:45.9,168.17,2.0,-56.04,2.0,2458657.736625,0.007425253,21.7016689605131,0.009532318,8.26764235406769,0.5088978,0.229828,0.027288,211.656732508377,25.132692,2.37514938426918,0.69834507,52.095,685.2,8.58716,53.19149,,5625.0,80.0,4.438,,1.56486,0.186629,,,,,13,2019-08-16,2020-11-16,2022-12-14 12:09:24,Potential level one target around bright star,1051,1,False,False,True -317060587,1052.01,,3,4,3,3,3,4,4,3.4,37.6,8.42,0,3,2,PC,PC,9.0197,0.006,,1,spoc-s01s13-b0A,SPOC,22:30:02.47,-75:38:47.62,-63.327,0.046,-1.942,0.044,2458332.941229,0.0026419759,9.13980396599197,0.000110879846,3.09129357089951,0.6627002,0.389215,0.036613,358.415780102206,33.721474,3.06298549735975,2.8175755,243.011762989764,1006.99328285134,10.624502,129.804,0.5575,5958.2,76.0,4.34,0.12,1.58,0.165123,-0.25,0.1,1.09,0.144301,"1,13",2019-08-16,2021-12-07,2022-12-14 12:09:24,Low priority; similar epoch and period from sector 1,1052,1,False,False,True -112395568,1053.01,,5,5,5,5,5,5,5,34.0,73.4,95.3,5,2,1,PC,FP,8.8849,0.006,,1,spoc,UNKNOWN,19:23:54.51,-33:21:05.1,-18.692,0.065,-8.192,0.059,2458657.999179,0.001553,5.742625,0.000621,2.860293,0.230499,1.201229,0.095469,1105.760867,87.92673,13.088532,3.636668,,,11.805602,263.729,2.8735,5664.0,188.0,3.26574,0.355261,3.86959,0.644568,,,,,13,2019-08-16,2019-08-16,2022-12-14 12:09:24,Crowded field,1053,1,False,False,True -366989877,1054.01,,1,4,4,1,4,4,4,4.6,65.1,9.59,4,8,1,CP,CP,8.4362,0.006,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,20:08:27.4,-54:19:03,1.594,0.054,-15.903,0.049,2458664.970821,0.0018190491,15.5077300998311,0.00010973979,5.04935999495293,0.23460549,0.69093,0.032252,636.167451748316,29.705004,3.05476860846617,0.41549346,104.833085631672,816.101811373502,18.399477,88.4343,0.28175,6122.0,194.0,4.30881,0.268555,1.17092001438141,0.0546734,,,1.14,0.15899,"13,27",2019-08-16,2021-12-08,2022-12-14 12:09:24,VPC; Potential level one candidate; check neighbor 366989874,1054,1,False,False,True -320004517,1055.01,,1,5,5,1,4,4,4,7.2,111.5,11.71,6,8,3,CP,CP,8.0888,0.006,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,19:33:08.79,-54:31:57.82,108.439,0.074,-82.632,0.052,2458661.062997,0.0008386795,17.4712880781139,6.840219e-05,4.29793203660545,0.15723895,1.324917,0.043053,1219.54961507553,39.652325,3.43710295293949,0.40131655,53.3701121311869,689.357140379005,28.918974,57.2651,0.18695,5783.54,7.82429,4.49925,0.019231,0.974668979644775,0.0546984,-0.0525569,0.00695284,1.04,0.135125,"13,27",2019-08-16,2021-12-09,2022-12-14 12:09:24,HD 183579 b,1055,1,False,False,True -421894914,1056.01,,1,5,5,1,3,4,4,3.9,37.7,8.77,1,3,1,PC,PC,9.6663,0.006,,1,spoc,UNKNOWN,22:37:02.09,-76:55:03.38,9.716,0.041,-20.168,0.044,2458326.059765,0.0018001408,5.30798876277617,3.0969535e-05,3.13951983456473,0.30126944,0.429463,0.030603,395.471605207052,28.185852,2.89971703201279,0.6823424,603.234337839639,1263.98308836262,11.942556,168.354,0.6765,6124.3,83.0,4.38,0.16,1.36962997913361,0.0633668,0.18,0.12,1.16,0.16165,"1,13,27",2019-08-16,2021-07-01,2022-12-14 12:09:24,TFOP work in progress,1056,1,False,False,True -323132914,1057.01,,1,4,1,1,3,4,4,0.9,34.1,8.25,1,2,1,PC,PC,9.4091,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,08:31:59.26,-78:24:27.23,117.721,0.081,-24.565,0.076,2458607.345122,0.0026410809,51.1710413945191,0.0002811759,6.47935854702169,0.3639887,0.93941,0.044648,864.854704510516,41.121582,2.7958806870192,0.54232544,11.2145623914172,466.729586787027,19.600227,98.2855,0.26725,5599.0,187.0,4.46138,0.26998,0.943355977535248,0.0456583,,,1.01,0.127458,"10,11,12,13,37,38,39",2019-08-16,2022-03-22,2022-12-14 12:09:24,potential level one candidate,1057,1,False,False,True -31553893,1058.01,,3,4,3,4,3,4,4,22.4,52.7,112.1,2,2,1,PC,PC,9.3781,0.007,,1,spoc,UNKNOWN,19:15:38.83,-31:47:26.93,3.226,0.082,-16.323,0.067,2458663.023591,0.0059690457,11.1296402406865,0.00024008003,7.10682405990355,0.37391645,1.052167,0.082172,968.611932462368,75.67997,12.978382422832,0.8953745,1255.7,1518.2,12.589081,338.831,6.705,5785.0,189.0,4.344,2.00356,3.44756007194519,0.174417,,,1.06,0.123241,"13,27",2019-08-16,2021-07-01,2022-12-14 12:09:24,Centroid offset and a single transit in Y3,1058,1,False,False,True -380783252,1059.01,,3,4,4,3,3,4,4,146.9,263.1,317.0,3,0,1,PC,PC,9.7825,0.006,,1,qlp,UNKNOWN,17:58:51.48,-60:55:21.82,4.297,0.037,-207.409,0.034,2459378.714316,0.0001575,9.4496506,2.8e-06,2.021,0.027,21.657873,0.018204,19750.0,16.7663,17.0216,1.10249,38.5799,694.0,114.0,98.8783,0.4197,5509.0,186.0,4.39758,2.00408,0.94,0.06,,,0.88,0.106747,"13,39",2019-08-16,2021-08-19,2022-12-14 12:09:24,Rp may be too large for period,1059,1,False,False,True -101230735,1060.01,,1,5,5,1,3,4,4,8.7,69.4,8.49,5,5,1,PC,APC,9.6652,0.006,,1,spoc,UNKNOWN,19:57:09.84,-48:56:04.11,2.224,0.286,-14.604,0.228,2458653.967554,0.00087833044,2.06855902090283,1.2459619e-05,0.998230845600996,0.31913435,0.632033,0.060757,581.954640736424,55.958042,2.84514065740319,3.0135126,1195.98707511821,1499.86223836252,10.869944,128.491,3.3745,5687.9,76.0,4.6,0.12,1.13906002044678,0.070392,-0.11,0.1,1.01,0.131792,"13,27",2019-08-16,2021-09-08,2022-12-14 12:09:24,Potential level one candidate,1060,1,False,False,True -253990973,1061.01,,5,5,5,5,5,5,5,9.1,70.1,4.77,1,0,1,PC,FP,9.7345,0.006,,1,spoc,SPOC,18:58:45.34,-41:14:32.94,24.978,0.089,-71.79,0.091,2458654.253249,0.003078,0.540933,0.000107,1.674337,0.329757,0.279447,0.030011,257.347459,27.641214,2.28501,0.57323,,,8.619074,133.171,0.6935,5525.0,186.0,4.25342,0.29667,1.21935,0.16458,,,1.04,0.12785,13,2019-08-16,2019-08-16,2022-12-14 12:09:24,Likely stellar variability but it is a potential level one candidate,1061,1,False,False,True -299799658,1062.01,,1,5,5,1,4,4,4,4.8,54.7,5.0,3,3,4,PC,CP,9.478,0.006,,1,spoc,UNKNOWN,02:32:29.03,-78:01:25.26,107.847,0.045,30.732,0.042,2458325.426781,0.000875015,4.11501332775469,1.1306755e-05,1.19600923966598,0.22853059,0.569989,0.040299,524.841878519402,37.11627,2.08400722867664,1.7375827,225.957160039381,988.840570448777,13.797438,82.1733,0.1632,5394.0,185.0,4.50942,0.276077,0.887336015701294,0.0506532,,,0.89,0.108716,"1,13,27,28",2019-08-16,2021-07-01,2022-12-14 12:09:24,TOI-1062 b (https://arxiv.org/abs/2105.01945),1062,1,False,False,True -406976746,1063.01,,1,4,4,1,3,4,4,3.4,59.9,5.09,3,6,3,PC,PC,9.0689,0.006,,1,qlp,SPOC,15:22:13.32,-83:03:22.37,-89.125,0.041,-9.6,0.044,2459374.315337,0.0021811,10.0665634,4.09e-05,1.981,0.258,0.695094,0.000797,640.0,0.734176,2.09966,0.141438,23.8187,615.0,15.0,61.1201,0.1009,5552.0,187.0,4.61783,0.263463,0.79,0.05,,,0.9,0.115213,"12,13,39",2019-08-16,2021-08-26,2022-12-14 12:09:24,Potential level one candidate,1063,1,False,False,True -79748331,1064.01,,3,5,5,3,4,4,4,5.0,61.7,6.73,20,3,3,PC,CP,10.0059,0.006,,1,spoc,UNKNOWN,19:44:00.94,-47:33:43.31,-3.457,0.124,-100.891,0.072,2458656.66825,0.0014492241,6.44385679073374,3.5817753e-05,1.90340712457818,0.31566584,1.159449,0.095271,1067.32197544415,87.74375,2.48002539543634,1.2834306,60.8314177653562,712.281614093603,11.144596,68.0726,0.362,4803.0,178.0,4.52079,2.00348,0.737188994884491,0.0567035,,,0.74,0.08544,"13,27",2019-08-16,2021-07-06,2022-12-14 12:09:24,potential multi-planet system,1064,1,True,False,True -79748331,1064.02,,1,5,5,1,4,4,4,3.0,52.1,7.13,20,3,3,PC,CP,10.0059,0.006,,2,spoc,SPOC,19:44:00.94,-47:33:43.31,-3.457,0.124,-100.891,0.072,2458664.491265,0.001903062,12.2264880936112,8.837148e-05,2.1689135959225,0.4113601,1.352649,0.119156,1245.05985004829,109.74101,2.56644991219703,2.1035123,25.8972394757659,575.351325238124,9.889558,68.0726,0.362,4803.0,178.0,4.52079,2.00348,0.737188994884491,0.0567035,,,0.74,0.08544,"13,27",2019-08-16,2021-07-15,2022-12-14 12:09:24,Potential multi,1064,2,True,False,True -7088246,1065.01,,5,5,5,5,5,5,5,84.9,112.7,317.0,0,0,0,KP,KP,13.2851,0.006,,1,spoc,SPOC,19:05:28.02,-50:04:02.46,7.315,0.037,-0.862,0.029,2458654.347994,0.002094,2.160344,0.000276,1.828854,0.14481,21.223768,1.616364,19357.992992,1487.6189,22.503541,17.500204,,,17.524658,639.004,9.4715,5780.0,,4.32928,,1.2,,,,1.03,,13,2019-08-16,2019-08-16,2022-12-14 12:09:24,HATS-23b,1065,1,False,False,True -201604954,1066.01,,5,5,5,5,5,5,5,45.0,125.6,119.75,0,0,1,KP,KP,11.9707,0.006,,1,spoc,SPOC,19:00:23.16,-54:53:36.03,3.99,0.054,-37.19,0.042,2458657.832537,0.001239,4.606184,0.000392,3.121643,0.078877,15.079836,1.120573,13793.034867,1031.5532,12.962219,0.582183,,,14.814943,353.891,4.919,5670.0,,4.3925,,1.07,,,,0.99,0.131434,13,2019-08-16,2019-08-16,2022-12-14 12:09:24,HATS-29b,1066,1,False,False,True -201642601,1067.01,,3,5,5,3,5,4,5,26.4,81.6,58.26,0,0,0,KP,KP,13.1686,0.006,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,19:14:41.28,-59:34:45.66,3.125,0.031,6.146,0.029,2459039.05091,0.0014920341,3.13165893974702,9.308201e-06,2.33727572877743,0.09934624,15.047559,0.360432,13763.7161384368,331.9153,8.83105921115548,0.5221478,148.655423487203,890.563597825909,28.67571,263.609,1.659,4351.0,167.0,4.438,,0.767009973526001,,,,0.69,,"13,27",2019-08-16,2021-12-09,2022-12-14 12:09:24,HATS-48 b,1067,1,False,False,True -6663331,1068.01,,5,5,5,5,5,5,5,40.4,104.0,125.28,0,0,0,KP,KP,13.2887,0.006,,1,spoc,SPOC,18:57:35.94,-49:08:18.65,11.096,0.044,-5.764,0.042,2458656.633231,0.001251,3.180362,0.000247,2.111521,0.106258,23.256738,0.74124,21192.463324,682.47424,13.446487,0.600679,,,25.185488,535.383,7.8145,5498.0,,4.47934,,0.92,,,,0.96,,13,2019-08-16,2019-08-16,2022-12-14 12:09:24,HATS-28b,1068,1,False,False,True -31858843,1069.01,,5,5,5,5,5,5,5,114.9,266.6,128.09,0,0,1,KP,KP,10.4293,0.006,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,19:17:55.01,-32:51:36.45,-16.778,0.108,-31.803,0.089,2458655.579589,0.00015234224,2.9776369467319,2.0133489e-06,3.12404426151359,0.017571395,13.374018,0.069405,12242.3706104859,63.92253,14.0369087281742,0.7440518,865.492990021097,1383.36135180462,163.32803,197.996,3.038,5703.0,188.0,4.25824,0.298282,1.22026002407074,0.0644121,,,1.025,0.126686,"13,27",2019-08-16,2021-12-08,2022-12-14 12:09:24,WASP-123 b,1069,1,False,False,True -31858844,1070.01,,5,5,5,5,5,5,5,194.8,319.5,317.0,0,0,0,EB,FP,15.7114,0.023,,1,spoc,SPOC,19:17:54.85,-32:51:40.78,,,,,2458655.579241,0.00053248624,2.97761517335173,9.7812306e-05,3.25697,0.030226,47.967636,0.452551,43218.111683,416.72778,26.88423,0.196978,873.27,1386.5,108.84278,,,5740.0,,4.29219,,1.28,,,,,,"13,27",2019-08-16,2021-03-18,2022-12-14 12:09:24,triggered by nearby event on 31858843 (WASP-123b),1070,1,False,False,True -120247528,1071.01,,3,5,5,3,5,4,5,57.1,152.9,111.68,1,0,1,PC,KP,11.5803,0.006,,1,spoc,SPOC,18:40:44.2,-58:27:33.8,-27.094,0.052,-30.897,0.048,2458655.395924,0.001083,3.553814,0.000237,2.056578,0.048296,10.889275,0.303603,9979.266691,279.5894,12.539744,12.542709,,,40.43895,290.198,2.937,5639.0,188.0,4.37172,2.00387,1.07973,1.07973,,,0.98,0.124766,13,2019-08-16,2019-08-16,2022-12-14 12:09:24,Possible secondary and V-shaped,1071,1,False,False,True -140830390,1072.01,TIC 140830390.01,5,5,5,5,5,5,5,40.8,79.2,317.0,3,0,1,EB,FP,11.7106,0.006,,1,spoc,QLP,05:02:30.55,-72:54:50.39,1.679,0.043,32.797,0.04,2459211.732146,0.0021947494,12.8379689423837,0.003123603,9.84641229425166,0.1878411,11.503319,0.392032,10539.0192793982,361.00934,25.488638240544,1.376776,374.129,1225.0,23.545876,703.878,10.696,5765.0,189.0,4.34773,2.00358,2.4494,0.11699,,,1.05,0.12655,"1,2,3,4,5,6,8,9,10,11,12,13,27,28,29,30,31,33",2019-08-16,2021-02-18,2022-12-14 12:09:24,Possible secondary,1072,1,False,False,True -158297421,1073.01,,3,5,5,3,4,4,4,43.8,118.6,117.42,0,0,0,CP,CP,13.6699,0.006,,1,spoc-s01-s36-b0A-CPKP,SPOC,19:09:56.26,-49:39:53.79,3.827,0.058,4.878,0.038,2459036.472812,0.0012928093,3.92280161106811,1.2181547e-05,1.87360069845246,0.079814635,34.763157,1.138302,31510.9004906162,1047.8658,13.3368704777654,0.4312808,91.1675889947647,788.097349639501,30.534128,300.67,3.806,4444.0,168.0,4.438,,0.698300004005432,,,,0.69,,"13,27",2019-08-16,2021-12-09,2022-12-14 12:09:24,HATS-47 b,1073,1,False,False,True -327301957,1074.01,,1,4,1,1,3,4,4,2.4,43.9,8.52,3,2,1,PC,PC,10.6339,0.006,,1,spoc,UNKNOWN,20:43:02.64,-72:00:36.96,20.031,0.042,42.175,0.054,2458662.650964,0.0031935729,13.9427597097298,0.0001673784,3.77325109379194,0.36626056,1.468352,0.119522,1351.48763717061,110.07788,2.85015484963515,0.6062083,28.093,587.18,11.199634,107.356,0.408,5206.0,183.0,4.63095,0.280579,0.741671025753021,0.0479724,,,0.85,0.105742,"13,27",2019-08-16,2021-07-15,2022-12-14 12:09:24,,1074,1,False,False,True -351601843,1075.01,,1,5,5,1,4,4,4,10.6,70.6,3.42,8,1,3,PC,CP,11.1186,0.007,,1,spoc,UNKNOWN,20:39:53.09,-65:26:58.92,-99.737,0.023,-59.95,0.039,2458654.250006,0.0007482197,0.604742679520557,7.131455e-06,0.988220982032038,0.27624184,0.991122,0.081954,912.440697846078,75.47996,1.87644543121028,0.9520114,528.02,1222.6,13.116491,61.4592,0.09435,4046.0,170.0,4.60963,0.230678,0.653189,0.064645,,,0.571742,0.0203056,"13,27",2019-08-16,2021-07-06,2022-12-14 12:09:24,Possible stellar variability,1075,1,False,False,True -360742636,1076.01,,5,5,5,5,5,5,5,83.9,217.8,110.78,0,0,1,KP,KP,11.2474,0.006,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,19:38:32.09,-55:19:48.97,5.382,0.051,-38.112,0.047,2458654.162996,0.00013920927,2.54956588937933,1.637998e-06,2.593288712661,0.01964192,16.401405,0.096977,14992.7247935563,89.31557,12.887943322628,0.65006113,757.126501083255,1337.86367296929,170.58673,248.46,2.1455,5659.0,,4.44653,,1.03997004032135,0.0519397,,,1.01,0.124398,"13,27",2019-08-16,2021-12-09,2022-12-14 12:09:24,HATS-33 b,1076,1,False,False,True -369960846,1077.01,,3,4,4,3,1,4,4,49.9,97.2,107.05,6,0,0,PC,PC,13.461,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,11:35:14.59,-88:05:46.37,-22.788,0.032,9.977,0.031,2459362.467634,0.0007954919,1.60625655456579,1.9162374e-06,1.97592203947607,0.066029556,18.325158,0.309602,16736.4572413363,285.1134,12.6311763477746,0.3829744,844.279016284285,1374.80546054623,44.44332,463.683,3.3225,5192.0,182.0,4.4617,2.00368,0.984326004981995,,,,0.82,,"13,27,39",2019-08-16,2022-03-22,2023-06-21 00:00:00,,1077,1,False,False,True -370133522,1078.01,,1,5,5,1,4,4,4,15.6,24.9,1.55,18,1,11,CP,CP,10.1165,0.007,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,20:27:42.88,-56:27:44.23,424.414,0.073,-1230.62,0.073,2458654.105455,0.0003875457,0.518238461855618,4.5608454e-06,0.749995882035704,0.17882879,0.865961,0.051347,797.261856667276,47.291542,1.14038331837198,0.71007156,255.14320664456,1019.33221980229,18.154455,20.373,0.0192,3325.0,102.0,4.88693,0.098941,0.390989005565643,0.0117402,,,0.381272,0.0203251,"13,27",2019-08-16,2021-12-08,2022-12-14 12:09:24,GJ 1252 b,1078,1,False,False,True -379240073,1079.01,,3,4,4,3,3,4,4,22.4,25.0,317.0,0,0,2,PC,PC,13.1284,0.006,,1,spoc,SPOC,18:52:28.68,-55:23:16.54,-1.479,0.049,-2.677,0.043,2458656.382756,0.003137,3.164147,0.000607,1.598864,0.30807,8.164797,0.710634,7491.851204,654.3037,13.276169,13.481318,,,10.679671,1179.27,45.91,6519.0,194.0,4.22068,,1.48759,1.48759,,,1.34,,13,2019-08-16,2019-08-16,2022-12-14 12:09:24,Could be blended,1079,1,False,False,True -161032923,1080.01,,1,4,4,1,3,4,4,2.3,13.9,2.65,13,0,1,PC,PC,12.7067,0.007,,1,spoc,SPOC,18:25:28.4,-52:12:52.46,-270.293,0.107,-69.552,0.109,2458654.060034,0.003036,3.965347,0.000675,0.987454,0.389139,5.191638,0.669941,4770.26147,616.8477,2.034434,0.947331,,,8.048016,25.559,0.0541,3296.0,64.0,4.96636,0.407584,0.284,0.049,,,0.168986,0.0200576,13,2019-08-16,2019-08-16,2022-12-14 12:09:24,potential L1 candidate,1080,1,False,False,True -253728991,1081.01,,3,4,4,3,3,4,4,43.0,121.3,90.83,8,1,1,PC,PC,11.5247,0.006,,1,spoc,SPOC,18:48:33.7,-40:06:42.37,-5.214,1.083,-5.918,1.083,2458654.026119,0.002567,2.98278,0.000442,3.109528,0.110696,6.682854,0.343037,6136.231662,315.89865,11.467011,11.475316,,,23.10213,354.05,,6027.0,192.0,4.29978,2.0042,1.23975,1.23975,,,,,13,2019-08-16,2019-08-16,2022-12-14 12:09:24,,1081,1,False,False,True -261108236,1082.01,,1,4,1,1,3,4,4,1.2,29.3,8.92,3,1,1,PC,PC,11.8835,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,05:33:06.19,-80:48:55.72,-10.282,0.042,45.685,0.05,2459165.538013,0.0046587,16.3470117212279,0.0001057155,3.29410733892723,0.44063035,2.254282,0.153713,2074.1162515355,141.56459,2.92771724865549,1.1898578,8.99951622026831,441.747947768764,13.492115,100.248,0.25385,4310.0,173.0,4.57345,0.230511,0.64961302280426,0.0616131,,,0.64,0.0832096,"1,4,8,11,12,13,27,28,31,38,39",2019-08-16,2022-03-22,2022-12-14 12:09:24,,1082,1,False,False,True -322270620,1083.01,,1,4,1,1,1,4,4,1.8,51.7,10.42,8,0,0,PC,PC,12.0936,0.007,,1,spoc-s01-s39-b0A-PC,SPOC,19:47:17.33,-87:19:22.12,-82.691,0.045,-290.716,0.055,2458627.916342,0.0048903455,12.9802712639159,0.00012193299,2.82872099868035,0.34912866,3.134776,0.441507,2883.07172092582,406.56052,3.20779718460334,0.37611523,4.73413457569138,376.209622390727,9.925677,68.9109,0.125,3614.0,64.0,4.81257,0.359456,0.491322994232178,0.0146852,,,0.489415,0.0203502,"12,13,39",2019-08-16,2022-03-22,2022-12-14 12:09:24,potential level one candidate,1083,1,False,False,True -380589029,1084.01,,5,5,5,5,5,5,5,95.1,98.6,317.0,0,0,2,KP,KP,12.2851,0.006,,1,spoc-s01-s39-b0A-KP,UNKNOWN,17:55:33.77,-61:44:50.64,1.031,0.04,-17.577,0.041,2459388.903698,0.0003056,1.34849552907491,8.2906377e-07,2.40524136089191,0.021982579,20.32156,0.149147,18542.7758196477,137.36028,15.9189667934549,0.8625915,2706.96222130538,1839.67157579309,74.40208,494.182,12.174,6346.0,,4.38484,,1.14759004116058,0.061613,,,1.18,0.171463,"13,39",2019-08-16,2022-03-30,2022-12-14 12:09:24,HATS-24 b,1084,1,False,False,True -381979901,1085.01,,5,5,5,5,3,5,5,58.9,66.7,317.0,0,0,1,PC,APC,11.6577,0.006,,1,qlp-s39-tois,QLP,05:10:25.3,-59:32:08.39,1.584,1.171,17.711,1.171,2460041.175097,0.0008600293,3.2541181,8e-07,4.341,0.018,14.889355,0.000128,13620.0,0.118046,14.9476,,1436.45,,592.0,444.066,,6102.0,193.0,4.28649,2.00486,1.28,,,,,,"2,3,4,5,6,7,8,9,10,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63,64",2019-08-16,2023-07-12,2023-07-12 00:00:00,TFOP APC/SB2; 1000pm secondary; phased,1085,1,False,False,True -468148930,1086.01,,3,4,4,3,1,4,4,26.9,23.0,317.0,6,0,0,PC,PC,12.2303,0.006,,1,spoc,UNKNOWN,20:22:16.76,-88:34:06.58,16.867,0.035,-14.683,0.035,2458655.292533,0.0011474323,3.71787392960101,1.8915116e-05,5.49010636477206,0.14652276,5.303588,0.118304,4872.87393301229,108.956314,14.7464853582016,0.9240646,1925.1,1689.4,26.89477,736.397,11.06,5818.0,190.0,4.33787,2.00353,2.08400011062622,0.106131,,,1.04,0.135358,"13,27",2019-08-16,2021-07-06,2022-12-14 12:09:24,TOI 1086 under investigation no observing notes; interesting M-shaped transit,1086,1,False,False,True -426077080,1087.01,,5,5,5,5,5,5,5,26.7,32.1,317.0,1,0,1,PC,FP,9.4142,0.006,,1,qlp,QLP,15:52:00.24,-76:29:36.57,-5.338,0.041,-9.267,0.054,2458630.77194,0.0028,9.30992,0.00209,3.464,0.232,2.413014,0.001514,2220.0,1.39456,14.2968,0.777875,215.208,1067.0,31.0,416.25,5.019,6907.0,135.5,3.63,0.09,3.09,0.14,0.229216,0.0860622,1.5,0.256186,12,2019-08-06,2020-05-20,2022-12-14 12:09:24,possibly 2x period,1087,1,False,False,True -343648136,1088.01,,5,5,5,5,5,5,5,23.0,88.2,25.92,2,1,3,PC,FA,10.4613,0.006,,1,qlp,QLP,18:09:14.73,-76:18:03.44,-23.549,0.047,-45.079,0.054,2458626.38955,0.00222,1.15395,0.00017,2.236,0.103,1.684197,0.001816,1550.0,1.67219,5.48364,0.324737,3534.3,2148.0,8.0,240.901,1.98,6093.0,131.0,4.2,0.08,1.4,0.07,,,1.14,0.160517,"12,13",2019-08-06,2020-05-20,2022-12-14 12:09:24,possible spot-crossing in transit,1088,1,False,False,True -129319156,1089.01,,5,5,5,5,5,5,5,82.3,206.5,317.0,1,0,3,PC,FP,10.3918,0.01,,1,qlp,QLP,15:15:22.33,-52:53:09.56,-10.161,0.125,-5.871,0.125,2458643.10264,0.00488,4.73703,0.00453,3.902,0.481,2.619782,1.500297,2410.0,1380.87,25.7144,10.2479,53821.0,4243.0,16.0,778.127,35.06,11600.0,368.2,4.13,0.07,2.48,0.13,,,3.07,0.398284,12,2019-08-06,2020-05-20,2022-12-14 12:09:24,only 1 full transit; could be a single transit with a different period,1089,1,False,False,True -361034196,1090.01,,5,5,5,5,5,5,5,109.0,166.5,317.0,1,2,2,PC,FP,10.0196,0.006,,1,qlp,QLP,16:08:03.92,-68:35:19.8,5.989,0.034,2.514,0.049,2458628.96316,0.0022,2.19296,0.0003,4.586,0.079,5.369998,0.764858,4933.74,704.212,22.7769,8.69015,31883.5,3722.0,100.0,566.502,11.2155,7009.8,184.2,3.6,0.61,2.95,0.16,,,1.61,0.268741,12,2019-08-06,2019-08-06,2022-12-14 12:09:24,Could be inflated hot Jupiter or Brown Dwarf at a short period,1090,1,False,False,False -193413306,1091.01,,3,4,4,3,3,4,4,98.2,98.1,317.0,13,0,3,PC,PC,9.3529,0.006,,1,qlp,UNKNOWN,14:48:24.27,-56:01:33.35,-4.775,0.076,-15.261,0.068,2459359.55521,0.003007,1.725841,1.65e-05,3.674,0.322,2.946339,0.196677,2710.0,181.13,15.0024,3.57813,50469.2,4175.0,35.0,321.671,3.7845,7348.0,133.8,3.9,0.09,2.39,0.09,,,1.67,0.278574,"11,12,38",2019-08-06,2021-08-12,2022-12-14 12:09:24,crowded field; marginal secondary,1091,1,False,False,True -387079085,1092.01,,5,5,5,5,5,5,5,764.7,1413.3,317.0,2,0,3,PC,FP,9.0039,0.006,,1,qlp,QLP,14:28:05.49,-64:38:03.43,-49.039,0.037,-21.072,0.055,2458601.38096,0.00061,1.1923,3e-05,3.119,0.024,4.057368,0.323352,3730.0,297.774,30.666,4.10377,40771.2,3958.0,132.0,209.919,1.7045,6534.0,136.4,3.95,0.09,2.04,0.09,,,1.35,0.230491,"11,12",2019-08-06,2020-05-20,2022-12-14 12:09:24,v-shaped; possible EB,1092,1,False,False,True -382331352,1093.01,,5,5,5,5,5,5,5,,,30.39,1,0,4,PC,FP,10.0067,0.168,,1,qlp,QLP,14:23:13.26,-63:02:45.54,-3.135,0.134,-4.442,0.203,2458601.33791,0.00465,11.47606,0.00162,6.083,0.44,3.316556,1.249087,3050.0,1149.79,,,,,24.0,1710.22,633.01,,,,,,,,,,,"11,12",2019-08-06,2020-05-20,2022-12-14 12:09:24,period could be 2 or 4x,1093,1,False,False,True -136274063,1094.01,,5,5,5,5,3,5,5,43.2,128.7,61.33,9,0,3,PC,APC,9.9806,0.007,,1,qlp-s38-tois,QLP,15:21:59.72,-53:49:10.56,-2.718,0.102,-4.896,0.092,2459360.160536,0.0013024,0.5971314,1.4e-06,0.468,0.109,0.98847,0.013805,910.0,12.7147,9.08382,0.96597,1596.43,1760.0,13.0,426.003,9.675,7710.0,140.2,3.98,0.08,2.28,0.09,,,1.81,0.282737,"12,38",2019-08-06,2022-10-04,2022-12-14 12:09:24,,1094,1,False,False,True -375223080,1095.01,,3,4,3,3,3,4,4,36.7,91.3,97.26,2,0,1,PC,PC,10.4291,0.006,,1,qlp-s39-tois,QLP,08:55:52.55,-75:55:34.27,-4.136,0.04,11.358,0.042,2459387.42191,0.0004152,1.4821401,1e-06,1.779,0.022,1.988717,0.000222,1830.0,0.204039,11.9167,0.492218,2370.97,1944.0,67.0,582.521,7.7425,7066.0,133.7,3.78,0.09,2.66,0.11,,,1.56,0.265491,"10,11,12,37,39",2019-08-12,2022-03-22,2022-12-14 12:09:24,,1095,1,False,False,True -375225453,1096.01,,5,5,5,5,5,5,5,11.1,39.8,27.97,0,0,1,PC,FP,10.11,0.006,,1,spoc,UNKNOWN,08:55:18.4,-73:10:23.91,-21.883,0.034,19.084,0.046,2459307.93577,0.002752377,0.920952632017001,0.00018551935,1.86027353730432,0.46476126,0.391891,0.046108,360.880152916071,42.466145,5.73490885605671,4.2950416,32740.3629399483,3430.76224369495,7.2275467,490.288,5.048,6553.0,136.4,3.65,0.09,2.89088988304138,0.125277,,,1.36,0.225456,"10,11,12,37",2019-08-12,2020-05-20,2022-12-14 12:09:24,NEB on 375225447 from TFOP,1096,1,False,False,True -360630575,1097.01,,1,5,5,1,4,4,4,3.6,56.1,5.41,1,3,3,PC,CP,8.7215,0.006,,1,qlp,UNKNOWN,12:39:06.21,-74:34:26.47,-50.359,0.039,-6.874,0.04,2459376.410637,0.0021666,9.1885056,3.62e-05,2.482,0.28,0.456105,0.000515,420.0,0.474582,2.17371,0.12428,72.0326,811.0,14.0,79.5561,0.14855,5876.0,124.0,4.48,0.08,0.98,0.04,,,1.06,0.13727,"11,12,38,39",2019-08-12,2021-08-19,2023-03-03 00:00:00,bright potential L1 candidate; TCE at TBJD ~2358 delayed by a few hours,1097,1,True,False,True -360630575,1097.02,,1,5,5,1,4,4,4,3.7,61.8,7.35,1,3,3,PC,CP,8.7215,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,12:39:06.21,-74:34:26.47,-50.359,0.039,-6.874,0.04,2459344.461827,0.0026102213,13.9028390651789,0.0013870896,2.12644292688103,0.41097364,0.702992,0.077015,647.270103874341,70.93129,2.61368481781087,1.333298,77.4841882665863,756.698758597688,8.821142,79.5561,0.14855,5876.0,124.0,4.48,0.08,0.983214974403381,0.0449925,,,1.06,0.13727,"38,39",2022-03-24,2022-03-24,2023-03-03 12:02:56,possible multi; near 3:2 resonance,1097,2,True,False,True -383390264,1098.01,,1,5,5,1,4,4,4,5.3,67.2,10.0,1,5,2,CP,CP,8.7581,0.006,,1,spoc-s01-s36-b0A-CPKP,UNKNOWN,12:50:21.43,-88:07:16,-18.776,0.039,-18.086,0.039,2458629.909005,0.0011153969,10.1826981766062,4.837091e-05,2.89180966246838,0.22302309,0.747278,0.059792,688.031653468545,55.069294,3.13069685928295,0.59937096,198.394785543628,957.199168972592,11.700291,105.096,0.266,6153.0,194.0,4.34814,0.271419,1.14582002162933,0.0509699,,,1.29,0.206016,"12,13,27",2019-08-16,2021-12-08,2022-12-14 12:09:24,HD 110082 b,1098,1,False,False,True -290348383,1099.01,,1,4,1,1,3,4,4,15.0,178.5,6.64,4,3,3,PC,PC,7.3661,0.006,,1,spoc,UNKNOWN,21:54:52.36,-77:20:19.69,224.864,0.062,-186.625,0.057,2458658.79039,0.0005327072,6.44098222145563,1.4761192e-05,1.83425080037251,0.107605554,0.898381,0.027372,827.097010943079,25.210106,2.46239264350049,0.37761983,79.189,760.83,30.194332,23.606,0.0179,4867.0,179.0,4.438,,0.800152003765106,0.0565427,,,0.78,0.0915509,"13,27",2019-08-16,2021-07-06,2022-12-14 12:09:24,Check neighbors,1099,1,False,False,True -318608749,1100.01,,3,4,3,3,1,4,4,2.7,31.5,16.68,2,0,0,PC,PC,10.5135,0.006,,1,qlp-s39-tois,QLP,00:36:30.27,-83:34:01.44,-0.23,0.054,1.169,0.043,2459385.738051,0.0041261,20.0734756,0.0001348,4.044,0.905,1.260185,0.003072,1160.0,2.82901,4.23693,0.28692,96.2573,872.0,19.0,205.43,1.1895,6033.0,129.5,4.37,0.08,1.15,0.05,,,1.12,0.141501,"1,13,27",2019-08-15,2022-03-18,2022-12-14 12:09:24,centroid offset towards TIC 318608752 in spoc s1-s39 multisector,1100,1,False,False,True -271581073,1101.01,,5,5,5,5,5,5,5,41.4,122.3,74.76,4,0,1,PC,FP,10.5891,0.006,,1,spoc,UNKNOWN,21:18:12.35,-77:31:44.81,16.363,0.037,-5.515,0.047,2459037.441764,0.00096922345,2.66900776913527,0.00020683362,1.76907284171585,0.07084743,3.63683,0.112753,3344.04075707774,103.843506,10.2264744117486,0.56603765,1697.69188976479,1637.13490481883,27.92571,262.794,1.538,5803.5,120.9,4.07,0.08,1.56013,0.0754146,-0.22,0.1,1.04,0.126318,27,2019-08-15,2020-09-18,2022-12-14 12:09:24,Check neighbor star; odd-even,1101,1,False,False,True -311890977,1102.01,,5,5,5,5,5,5,5,6.5,66.9,9.73,1,0,1,PC,FP,10.5652,0.006,,1,qlp,UNKNOWN,17:32:00.77,-76:51:29.75,-33.273,0.035,-100.013,0.038,2458627.80423,0.00276,6.63371,0.00059,2.122,0.26,1.690004,0.002216,1555.34,2.04117,2.75375,0.16093,,,26.0,58.0624,0.07515,4138.1,94.2,4.54,0.12,0.63,0.03,,,0.63,0.0803445,13,2019-08-15,2019-08-15,2022-12-14 12:09:24,Possible aperture-depth correlation,1102,1,False,False,False -351603103,1103.01,,3,4,3,3,3,4,3,570.0,905.9,317.0,9,0,1,PC,PC,10.5598,0.007,,1,qlp-s27-ffi,QLP,20:40:20.82,-63:47:23.87,17.057,0.043,-25.094,0.044,2459037.655526,0.0026363481,2.94308,1e-05,4.073,0.128,4.885933,1.447262,4490.0,1332.09,45.3525,,2533.34,1976.0,40.0,320.212,3.4725,4437.0,124.0,,,3.13,,,,,,"13,27",2019-08-15,2022-07-11,2022-12-14 12:09:24,TOI 1103 under investigation no observing notes,1103,1,False,False,True -451599528,1104.01,,3,4,3,3,1,4,4,0.4,42.2,20.32,0,1,0,PC,PC,7.5622,0.006,,1,spoc,QLP,18:38:53.11,-85:42:32.89,147.495,0.214,-42.057,0.258,2459367.034327,0.0031084546,341.28112811271,0.004587062,6.30302604897099,0.27288976,1.056479,0.058723,972.579724105673,54.08448,4.75318917721164,0.32911924,121.159799833688,846.173434044279,116.25811,70.0154,0.6784,6058.6,110.5,4.2,0.08,1.39203000068665,0.060098,,,1.13,0.152876,"27,39",2019-08-15,2020-05-20,2022-12-14 12:09:24,v-shaped; size consistent with super-Jupiter; previous single; many possible period aliases; period likely shorter than 341.3 days,1104,1,False,False,True -274151135,1105.01,,1,4,1,1,1,4,4,3.6,51.7,8.52,1,1,0,PC,PC,10.2809,0.006,,1,qlp,UNKNOWN,09:44:12.95,-89:28:17.45,-18.368,0.067,8.978,0.062,2459369.694909,0.0025342,10.8681705,5.81e-05,2.33,0.199,1.542841,0.001107,1420.0,1.02003,2.86547,0.229299,15.9782,556.0,23.0,79.5225,0.18475,4664.0,125.9,4.55,0.09,0.76,0.06,,,0.74,0.0876904,"12,13,27,39",2019-08-15,2021-08-24,2022-12-14 12:09:24,Level one candidate,1105,1,False,False,True -384513078,1106.01,,3,4,3,3,3,4,4,16.8,11.8,317.0,3,0,1,PC,PC,10.0717,0.006,,1,qlp,QLP,16:52:26.41,-79:08:06.66,10.476,0.068,-8.299,0.07,2458630.71937,0.00828,11.1149,0.00295,2.26,0.45,0.977603,0.003905,900.0,3.59699,14.7645,,21.9713,603.0,9.0,523.425,12.2925,5042.0,122.0,,,4.94,,,,,,"12,13",2019-08-15,2020-05-20,2022-12-14 12:09:24,,1106,1,False,False,True -394561119,1107.01,,3,5,5,3,4,4,4,65.1,165.0,125.17,5,1,1,PC,CP,10.0068,0.006,,1,spoc-s01-s39-b0A-PC,QLP,10:22:25.89,-82:13:07.93,9.065,0.045,2.896,0.041,2459364.621271,0.0004801873,4.07822097100803,4.9504524e-05,4.83958048696896,0.029765688,6.537539,0.044516,6003.20433623637,40.999817,13.8483556436999,0.62649566,1619.01775111455,1617.82913480087,141.05672,281.314,2.017,6501.0,138.9,4.08,0.09,1.74836003780365,0.0780452,,,1.33,0.213002,"11,12,13,38,39",2019-08-15,2022-03-21,2023-03-03 12:02:52,,1107,1,False,False,True -295599256,1108.01,,5,5,5,5,5,5,5,98.0,224.7,317.0,2,0,1,PC,FP,9.941,0.006,,1,qlp,QLP,18:16:53.19,-68:11:52,6.355,0.048,-13.85,0.058,2458655.54872,0.00098,7.14386,0.00054,1.467,0.223,12.170003,0.05847,11146.4,53.8514,22.1531,1.97652,,,54.0,417.08,7.204,7860.0,220.0,4.15,0.07,1.91,0.11,,,1.99,0.287445,13,2019-08-15,2019-08-15,2022-12-14 12:09:24,Large,1108,1,False,False,False -50309953,1109.01,TIC 50309953.01,5,5,5,5,5,5,5,45.0,209.8,54.42,0,0,1,EB,FP,9.7906,0.006,,1,qlp,UNKNOWN,02:00:47.64,-77:36:37.35,58.003,0.047,-33.25,0.036,2459083.35168,0.00176,7.04083,3e-05,2.979,0.235,1.71682,0.498193,1580.0,458.747,8.46404,2.20234,852.336,1505.0,35.0,102.238,0.2185,5317.0,65.7,4.49,0.08,0.91,0.05,,,0.94,0.127218,"1,13,27,28",2019-08-15,2021-10-21,2022-12-14 12:09:24,TFOP FP; retired as NEB,1109,1,False,False,True -446549905,1110.01,,5,5,5,5,5,5,5,62.8,190.7,84.34,6,4,1,PC,FP,9.6789,0.006,,1,qlp,QLP,19:07:10.04,-58:41:50.07,3.879,0.068,-6.843,0.063,2458654.60889,0.0009,2.45466,0.00014,2.331,0.243,4.591502,0.001762,4220.0,1.62243,10.9489,0.508135,1347.37,1687.0,60.0,243.838,2.659,6610.0,128.4,4.15,0.08,1.64,0.07,,,1.38,0.210113,13,2019-08-15,2020-05-20,2022-12-14 12:09:24,TFOP FP; target is on 446549906 (TOI 2107.01),1110,1,False,False,True -412014494,1111.01,,5,5,5,5,5,5,5,67.9,133.9,317.0,4,1,1,PC,FP,9.3871,0.006,,1,qlp,QLP,19:25:29.71,-60:56:27.75,15.517,0.051,-8.387,0.05,2458663.00191,0.00326,11.46597,0.00315,1.698,0.687,7.900261,0.006231,7250.0,5.73935,19.5843,0.951998,48.7332,736.0,66.0,312.461,4.28,7262.0,134.8,4.0,0.08,2.13,0.08,,,1.64,0.269953,13,2019-08-15,2020-05-20,2022-12-14 12:09:24,,1111,1,False,False,True -369864738,1112.01,,5,5,5,5,5,5,5,9.1,44.1,21.58,1,0,0,PC,FP,9.5162,0.006,,1,qlp,QLP,10:54:30.94,-87:16:11.05,-5.215,0.043,-8.358,0.042,2458626.54168,0.00585,2.78186,0.0005,2.456,0.428,0.532141,0.00126,490.0,1.16068,4.92567,0.331864,1323.21,1680.0,15.0,292.085,1.9425,6819.0,137.6,3.92,0.09,2.21,0.09,,,1.47,0.251326,"12,13",2019-08-15,2020-05-20,2022-12-14 12:09:24,TFOP FP,1112,1,False,False,True -290348382,1113.01,,5,5,5,5,5,5,5,30.5,279.9,21.74,1,1,2,PC,FP,9.66865,0.007,,1,qlp,QLP,21:54:50.6,-77:20:14.76,247.896,0.187,-157.626,0.158,2458658.78715,0.00238,6.44049,0.00115,1.854,0.123,8.633264,0.008188,7920.0,7.5416,4.90147,0.218733,7.46851,460.0,19.0,23.8853,0.05215,3469.0,157.0,4.71,0.01,0.53,0.02,,,0.531332,0.0204257,13,2019-08-15,2020-05-20,2022-12-14 12:09:24,2 stars in the same pixel (290348383),1113,1,False,False,False -409934330,1114.01,,3,5,5,3,3,3,3,126.0,265.0,317.0,8,0,1,PC,APC,8.1129,0.006,,1,spoc,UNKNOWN,20:08:35.45,-71:33:08.8,4.3,1.6,12.5,1.4,2459038.622586,0.000683626,2.48888465331106,0.00014206574,3.10660022727924,0.05014834,3.769273,0.049758,3465.60964002173,45.82747,,,773.302949751089,1344.95318048758,73.489555,174.475,,8048.0,,4.438,,,,,,,,27,2019-08-16,2020-09-18,2022-12-14 12:09:24,Gaia Rstar=3.577; large candidate,1114,1,False,False,True -379286801,1115.01,,5,5,5,5,3,5,5,71.6,95.0,317.0,4,0,1,PC,APC,10.526,0.006,,1,qlp,QLP,18:53:12.44,-54:54:38.9,-3.758,0.074,-12.916,0.049,2458658.32747,0.00109,4.45199,0.00035,2.109,0.087,9.250004,2.263175,8483.38,2082.29,15.8858,7.89042,1013.74,1571.0,55.0,359.215,8.103,6708.3,119.7,4.2,0.09,1.57,0.06,,,1.47,0.259023,13,2019-08-15,2020-05-21,2022-12-14 12:09:24,V-shaped and possibly EB,1115,1,False,False,False -304100538,1116.01,,1,4,1,1,3,4,4,4.3,51.5,5.46,1,3,1,PC,PC,9.5268,0.006,,1,spoc,UNKNOWN,01:50:47.99,-75:50:55.59,10.497,0.049,-3.836,0.046,2458325.665261,0.0012544328,5.00999,3e-05,1.70241706819487,0.2275364,0.503314,0.048054,463.461797681944,44.258083,2.1930768589766,0.43969807,210.667510949144,971.670774907262,8.899406,94.4178,0.24735,5551.0,187.0,4.46214,0.371807,0.906282007694244,0.048892,,,0.96,0.127186,"1,13,27,28",2019-08-26,2021-07-28,2022-12-14 12:09:24,low SNR,1116,1,False,False,True -295541511,1117.01,,1,4,1,1,3,4,4,5.6,47.9,7.18,3,2,1,PC,PC,10.4055,0.006,,1,qlp-s39-tois,QLP,18:14:24.49,-66:25:11.91,-15.32,0.036,-38.643,0.041,2459386.963814,0.003038,2.2281625,1.51e-05,2.015,0.28,0.684229,0.0013,630.0,1.19719,2.56778,0.178594,702.927,1434.0,15.0,167.598,0.913,5731.0,132.8,4.43,0.08,1.02,0.05,,,1.02,0.131252,"13,39",2019-08-15,2023-01-24,2023-01-26 12:09:41,,1117,1,False,False,True -90919952,1118.01,,5,5,5,5,5,5,5,,,50.63,1,0,1,PC,FP,10.5084,0.006,,1,qlp,QLP,18:29:43.9,-44:37:31.82,-0.54,1.063,-5.003,1.063,2458660.16316,0.00121,4.13812,0.00036,3.911,0.49,6.053538,0.002787,5560.0,2.56649,,,613.964,1386.0,70.0,,,4898.4,88.7,,,,,,,,,13,2019-08-22,2020-05-20,2022-12-14 12:09:24,Likely EB,1118,1,False,False,False -261369656,1119.01,,5,5,5,5,3,5,5,74.0,155.7,317.0,0,0,1,PC,APC,10.5024,0.006,,1,qlp,QLP,19:30:25.16,-46:16:41.07,19.136,0.06,-29.092,0.041,2458666.52199,0.00188,10.95663,0.00203,3.588,0.259,4.166353,1.605275,3830.0,1477.42,23.9726,8.82147,619.065,1389.0,30.0,421.518,7.0305,6456.0,127.2,3.92,0.09,2.07,0.1,-0.42,0.12,1.31,0.210742,13,2019-08-22,2020-05-20,2022-12-14 12:09:24,,1119,1,False,False,True -143257766,1120.01,,5,5,5,5,5,5,5,72.8,203.9,117.39,5,0,2,EB,FP,10.4063,0.006,,1,qlp-s27-ffi,UNKNOWN,19:33:33.43,-45:53:33.6,11.184,0.09,3.978,0.059,2458656.45082,0.00067,1.66226,0.0,3.321,0.084,6.566808,0.00097,6030.0,0.893586,13.3343,0.611171,7149.89,2561.0,96.0,386.323,9.084,7301.0,141.5,4.23,0.08,1.64,0.07,,,1.65,0.27248,"13,27",2019-08-22,2022-07-14,2022-12-14 12:09:24,on neighbor TIC 143257768; has stellar companion TIC 143257770 with equal brightness and stellar mass; this target is retired as TFOP FP,1120,1,False,False,True -24094603,1121.01,,5,5,5,5,5,5,5,11.5,50.5,30.62,1,0,0,PC,FP,11.0605,0.006,,1,qlp,UNKNOWN,17:58:35.67,-46:03:55.88,2.307,0.079,-2.24,0.069,2458658.61052,0.00621,4.07611,0.002,2.062,0.503,1.580005,0.005828,1454.18,5.36746,,,,,12.0,338.644,7.02,,,,,,,,,,,13,2019-08-22,2019-08-22,2022-12-14 12:09:24,possibly stellar variability,1121,1,False,False,False -304774444,1122.01,,5,5,5,5,5,5,5,7.5,46.8,16.76,1,1,1,PC,FP,10.2934,0.007,,1,qlp,QLP,18:45:28.68,-52:15:46.54,4.1,3.2,-24.9,3.0,2458658.77421,0.00423,3.62654,0.00106,3.298,0.319,0.98847,0.000999,910.0,0.920342,4.22803,,944.609,,16.0,249.826,,6317.0,,,,1.38,,,,,,13,2019-08-22,2020-05-20,2022-12-14 12:09:24,Likely stellar variability,1122,1,False,False,False -469782185,1123.01,,5,5,5,5,3,5,5,248.0,188.3,317.0,3,0,1,PC,APC,10.2398,0.006,,1,qlp,QLP,19:29:33.96,-37:18:14.43,-20.519,0.15,1.569,0.138,2458658.04087,0.00026,1.20928,2e-05,1.886,0.025,12.979951,0.896991,11883.8,825.818,15.1764,4.0994,,,210.0,161.932,2.2055,5159.8,156.3,4.23,0.08,1.27,0.07,,,0.96,0.122093,13,2019-08-22,2019-08-22,2022-12-14 12:09:24,Large candidate,1123,1,False,False,False -128790976,1124.01,,5,5,5,5,3,5,5,690.2,1160.3,317.0,4,0,1,PC,APC,7.2235,0.006,,1,qlp,UNKNOWN,20:00:51.1,-43:58:57.1,57.283,0.136,-119.195,0.113,2458657.43106,0.00054,3.51874,0.00014,2.739,0.107,6.282841,0.807246,5770.0,743.225,21.1311,4.58243,3347.64,2119.0,88.0,75.7145,0.60865,6690.0,119.9,4.24,0.09,1.49,0.07,,,1.42,0.237426,13,2019-08-22,2020-05-20,2022-12-14 12:09:24,Odd/even and likely EB,1124,1,False,False,True -80166433,1125.01,,3,5,5,3,3,4,4,19.3,107.7,25.99,1,0,1,PC,PC,8.0465,0.006,,1,qlp,UNKNOWN,19:53:09.05,-46:22:11.97,11.24,0.091,6.895,0.074,2458656.14889,0.00308,1.54602,0.00027,0.852,0.186,0.44,0.003102,405.173,2.85741,,,1186.27,1634.0,11.0,237.593,4.3795,8271.0,143.9,3.95,0.07,,,,,2.03,0.298703,13,2019-08-22,2020-05-20,2022-12-14 12:09:24,likely EB; TOI 1125 under investigation no observing notes,1125,1,False,False,True -405862830,1126.01,,5,5,5,5,5,5,5,10.8,83.6,6.97,2,0,1,PC,FP,10.3579,0.006,,1,qlp,QLP,18:36:14.99,-43:37:14.18,6.138,0.083,10.755,0.078,2458658.24805,0.00481,1.62652,0.00048,3.355,0.478,1.06,0.001444,975.82,1.32959,2.62267,0.109288,2204.18,1908.0,19.0,97.8115,0.44215,5034.0,48.8,4.64,0.08,0.76,0.01,0.0964554,0.0665523,0.86,0.106524,13,2019-08-22,2020-07-14,2022-12-14 12:09:24,Possibly stellar variability,1126,1,False,False,False -269450900,1127.01,,5,5,5,5,5,5,5,155.4,200.5,317.0,0,0,1,PC,FP,7.3163,0.006,,1,qlp,UNKNOWN,19:28:46.87,-36:00:00.94,1.909,0.135,-0.117,0.087,2458657.63073,0.00134,2.32439,0.00021,4.453,0.059,2.940003,0.179629,2704.18,165.431,,,,,88.0,177.741,2.084,8268.5,268.2,3.93,0.07,,,,,2.18,0.306928,13,2019-08-22,2019-08-22,2022-12-14 12:09:24,Possible centroid shift,1127,1,False,False,True -425721385,1128.01,,5,5,5,5,5,5,5,8.4,51.3,32.47,1,0,1,PC,FP,9.7298,0.006,,1,qlp,QLP,19:19:02.83,-43:04:27.2,17.105,0.07,-55.58,0.06,2458663.15245,0.0055,13.5499,0.00564,1.795,0.72,1.281925,0.020775,1180.0,19.1341,6.24633,0.838277,31.6652,660.0,10.0,222.529,3.137,6209.0,131.0,4.09,0.08,1.63,0.08,,,1.19,0.168039,13,2019-08-22,2020-05-20,2022-12-14 12:09:24,,1128,1,False,False,True -91576611,1129.01,,5,5,5,5,5,5,5,142.5,225.7,317.0,1,3,1,PC,FP,8.7823,0.007,,1,qlp,QLP,18:56:37.91,-29:23:54.08,17.883,0.088,-14.764,0.08,2458659.06927,0.00289,4.43651,0.00101,3.365,0.269,1.651575,0.645413,1520.0,594.271,19.9664,6.34495,8233.41,2653.0,20.0,247.414,2.905,7101.9,165.9,3.91,0.1,2.32,0.15,,,1.577,0.264337,13,2019-08-22,2020-05-20,2022-12-14 12:09:24,centroid shift; slightly v-shaped transit,1129,1,False,False,False -254113311,1130.01,,1,4,1,3,4,4,4,78.3,345.5,86.88,46,20,2,PC,CP,10.1429,0.006,,1,qlp,UNKNOWN,19:05:30.24,-41:26:15.5,12.538,0.088,-27.18,0.071,2458657.89805,0.00028,8.34998,1e-05,1.836,0.061,18.262819,0.016433,16680.0,15.1352,11.1424,1.06327,19.9348,588.0,129.0,58.2609,0.16955,4236.0,122.3,4.52,0.1,0.74,0.07,,,0.66,0.0756072,"13,27",2019-08-22,2021-01-12,2023-04-06 00:00:00,Part of multi-planet system,1130,1,True,False,True -254113311,1130.02,,1,4,1,1,4,4,4,16.7,119.5,13.77,46,20,2,PC,CP,10.1429,0.006,,2,qlp,UNKNOWN,19:05:30.24,-41:26:15.5,12.538,0.088,-27.18,0.071,2458658.73805,0.00165,4.06719,0.00056,1.783,0.148,2.340001,0.002155,2152.9,1.98461,3.51616,0.286258,48.044,733.0,24.0,58.2609,0.16955,4236.0,122.3,4.52,0.1,0.69,0.05,,,0.66,0.0756072,13,2019-09-03,2021-02-12,2023-05-11 00:00:00,First planet in multi-planet system,1130,2,True,False,True -198213332,1131.01,,3,4,3,4,4,4,4,138.7,233.5,99.81,4,7,6,PC,PC,9.2872,0.006,,1,qlp-s54-ffi,UNKNOWN,16:33:44.05,61:43:06,-4.999,0.267,6.335,0.299,2459795.175123,0.0015413,0.5860337,1.1e-06,0.687,0.062,0.162873,0.137633,150.0,126.757,12.1309,3.04954,11572.8,2889.0,27.0,222.74,6.115,5579.0,135.4,3.67,0.08,2.4,0.14,,,0.985,0.120114,"14,15,16,17,18,19,21,22,23,24,25,26,40,41,47,48,49,51,52,53,54",2019-08-27,2022-10-05,2022-12-14 12:09:24,a/Rs~2.1 ; short period; V-shaped; TFOP has ruled out BD or stellar companion on target; possible NEB or BEB,1131,1,False,False,True -267489265,1132.01,,5,5,5,5,5,5,5,7.2,60.6,12.43,3,1,2,PC,FP,9.2293,0.006,,1,qlp,QLP,19:55:07.51,54:46:53.2,-7.484,0.069,-20.775,0.064,2458683.6794,0.01044,1.55058,0.00112,2.956,0.494,0.33,0.001119,303.895,1.03081,3.48188,0.213096,,,15.0,286.668,2.913,7851.0,72.9,4.17,0.07,1.82,0.03,,,1.882,0.296266,14,2019-08-27,2019-08-27,2022-12-14 12:09:24,TFOP FP,1132,1,False,False,True -69997672,1133.01,,5,5,5,5,5,5,5,13.9,63.2,21.07,0,8,6,PC,FP,9.11458,0.006,,1,qlp,QLP,19:39:17.78,31:57:28.93,-5.049,0.176,-28.421,0.189,2458684.2349,0.01005,1.80709,0.00123,3.297,1.009,0.488691,0.002941,450.0,2.70834,4.86242,0.467902,7233.01,2569.0,9.0,233.369,5.819,6244.0,124.8,3.84,0.09,2.2,0.11,,,1.21,0.179038,14,2019-09-03,2020-05-20,2022-12-14 12:09:24,,1133,1,False,False,True -122220263,1134.01,,5,5,5,5,5,5,5,,,317.0,0,9,4,PC,FP,9.03609,0.006,,1,qlp,QLP,19:20:05.03,36:38:15.99,21.767,0.044,15.98,0.052,2458688.52795,0.0005,0.0,0.0,7.142,0.098,12.821956,0.000356,11740.0,0.328093,18.2358,0.779247,,,129.0,170.732,0.812,6277.0,125.8,4.09,0.09,1.65,0.07,,,1.226,0.184938,14,2019-09-03,2020-05-20,2022-12-14 12:09:24,Single transit,1134,1,False,True,True -154872375,1135.01,,4,4,4,4,3,4,4,53.4,251.1,65.89,3,6,2,PC,PC,9.02855,0.006,,1,qlp-s59-ffi,UNKNOWN,12:53:35.13,85:07:46.18,16.883,0.05,5.076,0.042,2459936.477143,0.0011569,8.0277162,1.3e-05,4.824,0.488,6.347273,0.274229,5829.0,252.542,9.46001,0.47551,752.777,1459.0,88.0,114.048,0.307,5962.7,68.6,4.38,0.08,1.15,0.05,,,1.155,0.155701,"14,19,20,21,26,40,47,53,59",2019-08-27,2023-02-09,2023-02-25 12:10:55,variable host star,1135,1,False,False,True -142276270,1136.01,,1,4,1,3,4,4,4,16.5,139.5,26.66,14,22,9,PC,CP,8.9361,0.006,,1,qlp-s48-tois,UNKNOWN,12:48:44.38,64:51:18.99,0.937,0.039,-10.171,0.034,2459612.447691,0.0014483,12.5187279,3.16e-05,5.38,0.2,2.521834,0.004848,2320.0,4.46525,5.58857,0.357814,626.362,1393.0,30.0,84.5362,0.158,5729.0,131.1,4.47,0.08,0.98,0.05,,,1.03,0.130052,"14,15,21,22,41,48",2019-08-27,2022-06-30,2022-12-14 12:09:24,potential multi-planet system; variable star,1136,1,True,False,True -142276270,1136.02,,1,4,1,1,4,4,4,5.4,67.4,6.75,14,22,9,PC,CP,8.9361,0.006,,2,qlp-s48-tois,SPOC,12:48:44.38,64:51:18.99,0.937,0.039,-10.171,0.034,2459627.527738,0.0018953,6.2587919,1.91e-05,3.049,0.456,0.62991,0.000373,580.0,0.343716,2.49177,0.138421,222.534,1076.0,26.0,84.5362,0.158,5729.0,131.1,4.47,0.08,0.98,0.05,,,1.03,0.130052,"14,15,21,22,41,48",2019-10-17,2022-06-29,2022-12-14 12:09:24,potential multi; variable star,1136,2,True,False,True -142276270,1136.03,,1,4,1,3,4,4,4,2.0,46.6,7.81,14,22,9,PC,CP,8.9361,0.006,,3,qlp-s48-tois,SPOC,12:48:44.38,64:51:18.99,0.937,0.039,-10.171,0.034,2459594.183463,0.0029089,26.3179537,0.0001195,4.414,0.562,0.868937,0.000473,800.0,0.435205,2.71349,0.151793,26.4328,631.0,18.0,84.5362,0.158,5729.0,131.1,4.47,0.08,0.98,0.05,,,1.03,0.130052,"14,15,21,22,41,48",2019-11-15,2022-06-29,2022-12-14 12:09:24,possible multi,1136,3,True,False,True -142276270,1136.04,TIC 142276270.04,1,4,1,2,4,4,4,2.4,48.1,7.01,14,22,9,PC,CP,8.9361,0.006,,4,spoc,SPOC,12:48:44.38,64:51:18.99,0.937,0.039,-10.171,0.034,2458697.755807,0.0025700312,18.8047556167025,0.00032600568,4.59127494637132,0.2709187,0.682697,0.067006,628.58971250475,61.713036,2.54080674639043,0.45802584,48.4454273825213,672.872760628257,9.563724,84.5362,0.158,5729.0,131.1,4.47,0.08,0.977727,0.0483517,,,1.03,0.130052,"14,15,21,22",2020-07-16,2020-05-26,2022-12-14 12:09:24,Outer planet in multi,1136,4,True,False,True -89389197,1137.01,,3,4,3,4,4,4,4,,,317.0,2,3,6,PC,PC,9.00558,0.006,,1,spoc-s54-b0A,QLP,20:04:42.64,30:24:35.82,0.167,0.043,11.867,0.047,2459770.240602,0.0016083986,1.32063557110728,0.0001540978,1.6000996094146,0.11698922,1.143258,0.085732,1052.42559966858,78.95927,34.7561623503994,34.22737,3652.25824861345,1982.71421024176,12.580433,419.435,5.153,4919.6,59.0,,,6.30703020095825,,,,,,"14,54",2019-09-03,2022-10-11,2022-12-14 12:09:24,star is a giant; also matched to 1963523488,1137,1,False,False,True -110428269,1138.01,,5,5,5,5,5,5,5,21.5,108.5,32.12,2,1,2,PC,FP,8.90601,0.006,,1,qlp,QLP,19:25:51.14,25:11:21.97,1.467,0.05,-4.587,0.058,2458684.20504,0.00442,0.64971,0.00018,2.076,0.328,0.673365,0.001293,620.0,1.19044,6.23181,0.414634,83182.0,4731.0,13.0,395.12,6.803,9994.0,756.2,4.02,0.09,2.59,0.11,,,2.559,0.398926,14,2019-09-03,2020-05-20,2022-12-14 12:09:24,Possibly EB,1138,1,False,False,True -202563254,1139.01,,3,4,3,4,4,4,4,46.2,190.2,78.8,3,6,5,PC,PC,8.86193,0.006,,1,spoc-s14-s55-b0A-PC,QLP,20:16:08.24,31:55:32.47,18.077,0.041,6.707,0.05,2459770.262019,0.005931517,4.47804832013626,4.4743494e-05,7.44155952458852,0.19798583,1.458606,0.050178,1342.52369995904,46.21499,10.5479743548072,3.3957534,2736.73228376369,1844.70883771355,24.194633,238.726,1.703,7947.0,323.7,4.2,0.08,1.82629001140594,0.0570955,,,1.909,0.341772,"14,15,41,54,55",2019-09-03,2023-03-14,2023-03-24 12:12:10,pulsating star; weak v-shaped signal,1139,1,False,False,True -320525204,1140.01,,5,5,5,5,5,5,5,98.1,171.2,317.0,0,2,2,EB,FP,8.88797,0.006,,1,spoc-s14-s41-b0A-APC,UNKNOWN,17:39:50.77,56:04:44.31,-4.979,0.038,13.371,0.041,2459400.983335,0.0005974099,13.7429532395592,0.00030397397,2.44865857309633,0.048584487,5.879539,0.088539,5400.61903331232,81.54424,15.9133312428692,5.4693093,157.582996162273,903.643414569384,91.579506,121.182,0.27,5941.5,161.9,,,1.34203994274139,,,,1.122,,"14,15,16,17,18,19,40,41",2019-08-27,2022-02-16,2022-12-14 12:09:24,TICv8 JOIN with TOI 1344.01 (TIC 1400770435); SPOC s14-s41 shows a 600 ppm eccentric secondary; retired as FP,1140,1,False,False,True -159510109,1141.01,,5,5,5,5,5,5,5,811.4,4882.9,317.0,0,2,0,PC,FP,8.8523,0.006,,1,spoc-s14-s41-b0A-PC,UNKNOWN,16:30:08.33,80:18:27.96,-18.335,0.054,66.536,0.067,2459425.490038,3.0483163e-05,16.9487087166685,5.8811236e-07,4.28877668496056,0.0011974856,184.745512,0.045136,156467.547964289,41.571255,45.220450534938,2.1992197,78.2632869684696,758.59376792359,4904.9927,97.3391,0.2589,5894.7,90.3,4.37,0.08,1.11790001392365,0.0543668,,,1.08,0.136772,"14,15,18,19,21,25,26,40,41",2019-08-27,2022-02-15,2022-12-14 12:09:24,TOI released on secondary of an EB with primary transit visible in multisector data,1141,1,False,False,True -284450803,1142.01,,5,5,5,5,5,5,5,167.2,285.2,317.0,2,1,0,EB,FP,8.64028,0.009,,1,qlp,UNKNOWN,19:22:50.15,56:36:55.39,6.716,0.113,-14.218,0.101,2459439.857432,0.0002253,3.3687742,1.7e-06,2.137,0.064,4.438865,0.028429,4080.0,26.1836,21.4071,1.70721,3638.63,2163.0,255.0,299.294,3.7665,7518.0,143.2,3.82,0.09,2.68,0.1,,,1.735,0.288743,"14,15,16,20,23,26,40,41",2019-08-27,2021-10-18,2022-12-14 12:09:24,synced phase modulations; 30 sigma odd-even; v-shaped transits; large radius; TFOP FP; retired as EB,1142,1,False,False,True -160268701,1143.01,,5,5,5,5,5,5,5,76.1,107.8,317.0,1,11,2,EB,FP,8.63287,0.006,,1,qlp-s53-ffi,QLP,12:10:09.28,77:21:08.15,-36.299,0.108,4.191,0.084,2459747.545315,0.0005785,11.2071627,1.76e-05,4.344,0.177,3.697793,0.024722,3400.0,22.7696,16.5854,1.3933,784.157,1474.0,185.0,191.984,1.9545,6152.0,75.9,3.84,0.09,2.24,0.1,,,1.274,0.208693,"14,20,21,40,41,47,53",2019-08-27,2022-08-24,2022-12-14 12:09:24,TFOPWG FP Retired as SB1,1143,1,False,False,True -28230919,1144.01,,5,5,5,5,5,5,5,49.8,298.2,22.86,0,2,5,KP,KP,8.5077,0.006,,1,spoc-s14-s55-b0A-KP,UNKNOWN,19:50:50.44,48:04:54.71,125.984,0.041,232.988,0.045,2459420.376531,0.0003645864,4.88780533280949,1.0281376e-06,2.4156222468806,0.017108558,4.594493,0.026947,4222.74366508987,24.81891,5.0943977620284,0.32868862,100.864366046224,808.265776568085,171.70973,37.7647,0.03365,4757.3,130.6,4.56,0.09,0.759854018688202,0.0482914,0.299646,0.0526804,0.77,0.0877919,"14,15,41,54,55,56",2019-08-27,2023-03-15,2023-03-24 12:12:10,HAT-P-11 b,1144,1,False,False,True -350995812,1145.01,,5,5,5,5,5,5,5,,,68.76,4,1,4,PC,FP,8.5011,0.008,,1,qlp,QLP,19:27:41.14,36:31:47.63,6.892,0.087,6.137,0.103,2458685.81643,0.00149,2.97164,0.00034,1.534,0.15,8.009633,1.062081,7350.0,977.734,,,3089.18,2076.0,17.0,438.395,10.886,8562.5,998.1,,,,,,,,,14,2019-09-03,2020-05-20,2022-12-14 12:09:24,Likely EB,1145,1,False,False,True -21755546,1146.01,,5,5,5,5,5,5,5,21.7,149.0,31.64,0,1,1,EB,FP,8.40386,0.006,,1,spoc-s41-b0A,QLP,19:29:08.83,30:17:50.38,2.072,0.068,-1.714,0.077,2459420.415267,0.00086094165,0.660178983608815,4.1454237e-05,1.63493692051333,0.12737042,0.513777,0.030215,473.093930311242,27.828228,6.16724867698042,0.5571844,252487.763884208,5717.153247714,11.997514,411.307,6.9,8598.7,975.0,4.1,,2.6243200302124,,,,3.131,,"14,40,41",2019-09-03,2022-02-15,2022-12-14 12:09:24,TFOP FP; retired as NEB,1146,1,False,False,True -288391628,1147.01,,5,5,5,5,5,5,5,222.2,527.9,317.0,3,2,2,EB,FP,8.36544,0.006,,1,qlp-s59-ffi,QLP,17:47:50.93,83:25:43.77,0.631,0.116,34.935,0.171,2459916.05649,0.0035147,10.9278487,4.65e-05,2.692,0.557,3.241413,6.009648,2981.0,5519.8,30.8088,9.37541,295.566,1155.0,117.0,218.258,3.317,6259.0,130.9,3.59,0.09,2.92,0.14,,,1.217,0.17988,"14,18,19,20,21,25,40,41,47,52,53,59",2019-08-27,2023-01-22,2023-01-26 12:09:41,Too large to be a planet for this period (46 RE from MCMC); TFOP FP/ retired as EB,1147,1,False,False,True -349827430,1148.01,,3,5,5,3,5,4,5,215.4,286.2,317.0,0,0,2,KP,KP,7.9179,0.006,,1,qlp-s60-ffi,UNKNOWN,10:47:38.17,71:39:20.62,-56.184,0.053,-34.808,0.064,2459961.659615,7.8e-05,5.5514917,7e-07,4.215,0.022,10.264055,0.019953,9409.0,18.3771,15.6004,0.612236,550.691,1349.0,518.0,96.5173,0.31225,6403.9,184.1,4.16,0.08,1.55,0.06,,,1.25,0.184389,"14,20,21,40,41,47,48,60",2019-08-27,2023-02-27,2023-03-03 12:11:24,KELT 24 b,1148,1,False,False,True -117789567,1149.01,,4,4,4,5,4,5,4,,,46.91,5,1,7,PC,APC,7.9172,0.028,,1,spoc-s54-b0A,QLP,20:03:05.76,26:53:31.29,3.538,0.081,1.463,0.082,2459770.330784,0.00040825008,2.32024175856469,6.1383835e-05,2.38176117259322,0.028167734,5.532807,0.076342,5082.9417063616,70.31139,,,22262.0513572776,3115.38012292172,70.98797,632.553,22.148,8737.5,1310.6,,,,,,,,,"14,41,54",2019-09-03,2022-10-05,2022-12-14 12:09:24,TFOP APC; possible chromaticity; variable hot star; likely too large (B8 host star with no stellar radius); possibly synchronized,1149,1,False,False,True -16740101,1150.01,,5,5,5,5,5,5,5,341.6,688.0,317.0,1,0,0,KP,KP,7.58204,0.006,,1,spoc-s14-s55-b0A-KP,UNKNOWN,20:31:26.38,39:56:20.1,16.728,0.065,21.478,0.07,2458683.457596,5.686944e-05,1.48109028542409,3.775618e-07,4.15882908243568,0.0058205207,7.395667,0.031139,6788.51453882957,28.67935,20.3402421389055,0.522355,33326.7304873638,3446.021057174,355.9918,204.455,1.57,9435.0,174.1,4.11,0.06,2.2877299785614,0.0585327,,,2.431,0.326593,"14,15,41,55",2019-09-03,2023-03-15,2023-03-24 12:12:10,KELT-9 b,1150,1,False,False,True -69679391,1151.01,,5,5,5,5,5,5,5,387.1,869.7,317.0,0,0,0,KP,KP,7.55216,0.006,,1,spoc-s14-s55-b0A-KP,UNKNOWN,19:38:38.74,31:13:09.12,3.096,0.065,-6.157,0.068,2459441.668735,0.0003885,3.47410108631051,1.8999103e-07,3.55226565865609,0.0030853606,15.56601,0.018871,14234.5421361318,17.380312,20.4285274472435,0.55626476,4460.56109307873,2084.33308662992,942.06836,136.426,0.8115,8894.8,267.4,4.38,0.07,1.61743998527527,0.0440276,,,2.282,0.323624,"14,40,41,54",2019-09-03,2023-03-15,2023-03-24 12:12:10,KELT-20 b,1151,1,False,False,True -237184773,1152.01,,5,5,5,5,5,5,5,157.4,424.3,119.29,2,3,6,O,FA,8.0348,0.006,,1,spoc-s14-s41-b0A-PC,QLP,18:53:57.53,37:22:50.97,-15.686,0.111,43.795,0.085,2459392.715052,0.00036869425,6.50119111922293,7.8091754e-05,5.54635873065296,0.027821798,4.898306,0.035842,4501.34540642207,33.010895,,,214.963858381065,976.587388845929,109.38585,105.334,0.5865,5485.0,756.1,,,,,,,,,"14,26,40,41",2019-09-03,2022-08-15,2022-12-14 12:09:24,this star is a phantom; TOI has been rereleased on TIC 1715469662 as TOI 2183.01,1152,1,False,False,True -154840461,1153.01,,5,5,5,5,3,5,5,50.6,204.4,67.65,0,1,2,PC,APC,8.40534,0.006,,1,qlp-s53-ffi,UNKNOWN,12:10:45.97,85:42:18.28,-14.194,0.065,-2.275,0.051,2459759.99969,0.0004656,6.0360802,4.4e-06,1.185,0.111,2.347727,0.031363,2160.0,28.8864,9.65057,1.05721,407.944,1252.0,95.0,147.134,0.6185,6528.3,179.4,4.21,0.09,1.69,0.06,,,1.689,0.315726,"14,19,20,26,40,47,53",2019-08-27,2022-09-02,2023-04-16 00:00:00,TFOP SB1/APC; v-shaped,1153,1,False,False,True -459970307,1154.01,,4,5,5,4,4,4,4,1.3,31.8,5.05,2,6,8,PC,PC,9.3188,0.006,,1,qlp-s55-ffi,QLP,16:59:41.77,64:41:57.17,-6.159,0.066,24.32,0.076,2459817.436063,0.0020982,21.7455357,7e-05,4.281,0.346,0.532141,0.000213,490.0,0.19632,2.09806,0.112888,31.0726,657.0,26.0,93.8819,0.26675,5704.0,127.4,4.51,0.08,0.93,0.05,,,1.02,0.128091,"14,15,16,17,18,19,20,21,22,24,25,26,40,41,47,48,49,50,51,52,53,54,55",2019-08-27,2022-10-05,2022-12-14 12:09:24,variable host,1154,1,False,False,True -161450762,1155.01,,5,5,5,5,5,5,5,,,7.11,0,0,4,PC,FP,9.711,1.0,,1,qlp,QLP,20:37:06.2,32:28:15.67,,,,,2458683.92594,0.00336,1.32003,0.00037,3.175,0.286,0.6,0.000621,552.468,0.572376,,,,,24.0,,,,,,,,,,,,,14,2019-09-03,2019-09-03,2022-12-14 12:09:24,Gaia parameters suggest giant star,1155,1,False,False,True -117256577,1156.01,,5,5,5,5,5,5,5,,,19.14,0,1,1,EB,FP,9.7032,0.6,,1,qlp-s41-tois,QLP,20:01:40.63,26:58:17.98,-1.163,0.237,-2.205,0.268,2459443.850453,0.0009604,1.6865822,4.8e-06,2.429,0.11,1.923456,0.533658,1770.0,491.396,,,,,56.0,6079.49,2185.29,,,,,,,,,,,"14,41",2019-09-03,2022-02-15,2022-12-14 12:09:24,centroid offset near TIC 117256550 (Tmag~15.568); no stellar parameters; TFOP FP/NEB,1156,1,False,False,True -147576037,1157.01,,5,5,5,5,5,5,5,126.3,319.2,317.0,0,1,5,PC,FP,9.6043,0.011,,1,qlp-s47-tois,QLP,09:37:21.93,68:27:31.34,-13.626,0.042,10.98,0.046,2459603.765773,0.0007837,13.0727479,1.84e-05,3.044,0.198,4.438865,0.442264,4080.0,407.257,35.7944,8.17427,221.343,1074.0,96.0,432.113,7.392,5709.8,117.3,3.37,0.08,3.59,0.18,,,1.11,0.151034,"14,20,21,40,41,47",2019-08-27,2022-06-28,2022-12-14 12:09:24,v-shaped; size inconsistent with insolation or planetary nature; Rp > 30 Re in qlp-s47-tois,1157,1,False,False,True -379931600,1158.01,,5,5,5,5,5,5,5,,,93.02,2,2,0,PC,FP,9.5967,0.006,,1,qlp,QLP,19:33:42.57,29:35:46.66,5.169,0.835,-0.368,0.792,2458685.4338,0.0013,2.92564,0.00029,4.027,0.146,7.160003,0.817679,6572.91,752.827,11.6113,3.96469,,,89.0,,,4884.5,112.1,,,1.3,0.06,,,,,14,2019-09-03,2019-09-03,2022-12-14 12:09:24,Could be on neighbor,1158,1,False,False,True -48188920,1159.01,,5,5,5,5,5,5,5,19.6,81.4,23.97,4,1,2,PC,FP,9.5937,0.008,,1,qlp,QLP,18:49:40.99,48:05:56.19,4.164,0.048,-0.766,0.047,2458683.94707,0.00363,0.73774,0.0002,0.636,0.331,0.57,0.099467,524.852,91.6082,5.28215,2.21635,,,10.0,292.83,2.091,6449.5,123.7,3.94,0.1,2.1,0.08,,,1.37,0.236979,14,2019-08-27,2019-08-27,2022-12-14 12:09:24,,1159,1,False,False,True -89510024,1160.01,,5,5,5,5,5,5,5,,,4.23,0,1,3,EB,FP,9.577,1.0,,1,qlp-s41-ffi,QLP,20:05:16.25,30:40:14.41,-3.195,0.177,-6.194,0.215,2459446.146751,0.003373,2.3664127,7.48e-05,2.591,0.26,0.32577,0.000783,300.0,0.721264,,,,,13.0,2320.13,719.26,,,,,,,,,,,"14,41,55",2019-09-03,2022-10-05,2022-12-14 12:09:24,large; centroid offset centered on TIC 89509984 (Tmag ~15.226) in SPOC sector 41; retired as TFOP FP/NEB,1160,1,False,False,True -158324245,1161.01,,5,5,5,5,5,5,5,146.3,249.4,317.0,0,22,34,KP,KP,10.2306,0.014,,1,spoc-s14-s55-b0A-KP,UNKNOWN,19:07:53.13,46:52:05.69,-4.401,0.187,-15.78,0.237,2459420.733727,0.0003772479,1.76358776085867,4.018392e-07,3.30342233779013,0.010534378,8.50366,0.029688,7801.56879273925,27.343624,,,4461.15846399661,2084.40286806643,325.5916,519.096,29.1045,7986.1,177.2,,,,,,,,,"14,15,26,40,41,53,54,55",2019-08-27,2023-03-15,2023-03-24 12:12:10,KOI-13 b / Kepler-13 A b; SPOC is assuming solar radius,1161,1,False,False,True -13419950,1162.01,,3,4,3,3,4,4,4,32.1,142.4,83.13,2,4,8,PC,PC,9.65306,0.016,,1,qlp-s41-tois,QLP,20:21:09.44,41:27:44.52,5.416,0.086,1.942,0.102,2459432.682972,0.0013263,7.3166764,1.7e-05,3.255,0.633,3.490819,0.003452,3210.0,3.17906,,,1221.82,1647.0,45.0,348.481,6.6785,8730.0,979.1,,,,,,,,,"14,15,41",2019-09-03,2022-12-12,2022-12-16 12:08:26,TIC 1969293164 also in pixel; no stellar radius,1162,1,False,False,True -375542276,1163.01,,3,4,3,3,3,4,4,38.2,294.1,28.9,6,1,2,PC,PC,9.47751,0.006,,1,spoc-s14-s55-b0A-PC,UNKNOWN,19:36:22.02,19:38:21.32,-2.002,0.4,-11.779,0.401,2459441.801256,0.0002846,3.07716123135664,1.3343268e-06,2.69143190741385,0.020047113,5.118573,0.044229,4703.28443456327,40.735252,,,2636.86544148312,1827.64457506952,135.27336,148.342,6.8725,9311.3,708.9,,,,,,,,,"14,40,41,54",2019-09-03,2023-03-14,2023-03-24 12:12:10,,1163,1,False,False,True -16102323,1164.01,,5,5,5,5,5,5,5,,,80.82,4,1,0,EB,FP,9.329701,0.21,,1,qlp-s55-ffi,QLP,20:29:20.79,37:30:30.82,2.318,0.048,-4.536,0.069,2459822.312844,0.0018258,3.2077145,1.6e-05,2.708,0.267,10.517272,0.170247,9640.0,156.791,,,,,95.0,827.868,23.69,,,,,,,,,,,"14,15,41,55",2019-09-03,2022-10-03,2022-12-14 12:09:24,retired as TFOP FP/NEB,1164,1,False,False,False -458478250,1165.01,,5,5,5,5,5,5,5,248.3,275.1,317.0,0,1,0,KP,KP,9.76703,0.006,,1,qlp-s50-tois,UNKNOWN,15:28:35.19,66:21:31.35,0.434,0.039,-12.217,0.041,2459689.76947,4.8e-05,2.2552852,3e-07,2.06,0.015,23.065451,0.000535,21020.0,0.492437,14.7605,0.713136,553.23,1351.0,1175.0,126.261,0.3515,5787.0,109.9,4.5,0.08,0.96,0.05,,,1.071,0.137689,"14,15,16,17,21,23,41,47,48,49,50,54",2019-08-27,2023-03-15,2023-03-15 00:00:00,KELT-23 A b,1165,1,False,False,True -138361973,1166.01,,5,5,5,5,5,5,5,13.4,92.4,12.79,2,2,0,PC,FP,9.7604,0.006,,1,qlp,QLP,19:35:03.6,37:32:18.92,-2.77,0.041,-79.214,0.042,2458684.93372,0.00596,1.88327,0.00072,2.472,0.285,0.92,0.001707,846.992,1.57182,3.79016,0.187917,,,12.0,153.743,0.593,5900.4,71.9,4.39,0.08,1.18,0.03,,,1.14,0.154189,14,2019-09-03,2019-09-03,2022-12-14 12:09:24,,1166,1,False,False,True -232967666,1167.01,,5,5,5,5,5,5,5,5.2,46.1,22.02,0,6,2,PC,FP,10.3874,0.006,,1,qlp,QLP,13:12:36.57,71:37:05.3,-61.39,2.0,2.78,2.0,2458689.11633,0.00382,15.196,0.0,1.792,0.678,2.14101,0.120893,1970.0,111.34,4.96345,,,,12.0,209.618,,5807.0,,,,1.14,,,,,,19,2019-08-27,2020-05-20,2022-12-14 12:09:24,Period is likely 2x7.6 days,1167,1,False,False,True -41330864,1168.01,,5,5,5,5,5,5,5,146.8,166.0,317.0,2,1,0,PC,FP,10.381,0.006,,1,qlp,QLP,20:06:50.51,38:25:51.68,8.657,0.046,-3.67,0.048,2458684.84464,0.00063,2.136,9e-05,1.74,0.083,11.64003,1.774293,10663.6,1632.85,17.6596,6.92415,1607.76,1764.0,65.0,274.162,2.1655,5969.0,73.5,4.17,0.09,1.55,0.04,,,1.199,0.176391,14,2019-09-03,2019-09-03,2022-12-14 12:09:24,,1168,1,False,False,False -302518439,1169.01,,3,4,3,4,4,4,3,106.4,173.6,317.0,9,1,5,PC,PC,10.6405,0.007,,1,qlp-s47-tois,QLP,08:56:28.81,72:31:59.79,-5.684,0.035,7.67,0.039,2459941.429888,0.0006003796,6.7075429,3.4e-06,2.125,0.081,13.019728,0.098861,11920.0,91.0502,17.4647,2.59032,225.822,1079.0,145.0,259.0,1.6565,6134.3,420.6,,,1.24,0.16,,,,,"14,20,26,40,47,60",2019-08-27,2023-05-25,2023-05-25 00:00:00,V-shaped; large; close neighbor (TIC 802647158),1169,1,False,False,True -294176967,1170.01,,5,5,5,5,5,5,5,24.8,70.1,90.36,3,2,8,PC,FP,10.349,0.007,,1,qlp,QLP,20:03:13.23,52:02:27.03,-5.735,0.075,-5.495,0.092,2458683.48115,0.00364,0.91397,0.0002,1.955,0.187,0.96,0.001374,883.802,1.26527,10.9073,0.484489,12286.1,2933.0,28.0,880.107,28.165,7875.0,92.1,3.61,0.08,3.34,0.08,,,1.82,0.276144,14,2019-08-27,2019-08-27,2022-12-14 12:09:24,,1170,1,False,False,True -101929303,1171.01,,5,5,5,5,5,5,5,25.4,38.8,317.0,1,2,6,PC,FP,10.3075,0.012,,1,qlp,QLP,19:57:05.73,35:59:18.09,3.425,0.046,0.583,0.048,2458684.23414,0.00372,11.18644,0.0046,3.227,0.448,4.550004,2.432307,4181.94,2237.73,14.9183,10.942,,,17.0,482.763,6.2675,7266.0,195.8,4.06,0.08,2.1,0.11,,,1.75,0.282844,14,2019-09-03,2019-09-03,2022-12-14 12:09:24,Could be on neighbor,1171,1,False,False,False -1717732429,1172.01,,5,5,5,5,5,5,5,,,317.0,0,1,0,PC,FP,10.3018,0.007,,1,qlp,QLP,18:49:53.89,55:15:59,0.76,0.181,-8.188,0.171,2458687.79632,0.00299,7.85694,0.00223,5.935,0.766,21.470038,0.024747,19580.4,22.7926,,,,,58.0,875.061,74.2245,,,,,,,,,,,"14,19",2019-08-27,2019-08-27,2022-12-14 12:09:24,TFOP FP,1172,1,False,False,True -232967440,1173.01,,3,4,4,3,4,4,4,41.3,182.4,63.57,5,12,4,PC,PC,10.2938,0.006,,1,qlp-s48-ffi,UNKNOWN,13:10:43.94,70:46:04.84,57.651,0.055,-92.555,0.042,2459635.344659,0.000366,7.0643995,4.8e-06,2.421,0.161,9.454377,0.000613,8670.0,0.564281,9.3403,0.526238,93.8255,867.0,206.0,132.353,0.4595,5429.6,292.5,4.44,0.08,0.96,0.05,,,0.917,0.117705,"14,15,21,22,41,47,48",2019-08-27,2022-03-24,2022-12-14 12:09:24,,1173,1,False,False,True -154089169,1174.01,,2,4,2,2,4,4,4,2.9,44.9,6.21,2,18,6,PC,PC,10.2549,0.006,,1,qlp-s49-ffi,QLP,13:56:52.12,68:37:05.56,-81.077,0.052,45.498,0.042,2459657.031001,0.0023878,8.9534549,3.52e-05,2.709,0.261,0.977603,0.000948,900.0,0.872913,2.37092,0.170715,44.6135,720.0,21.0,94.6375,0.2501,5029.5,59.9,4.61,0.09,0.76,0.05,,,0.85,0.100358,"14,15,21,22,41,48,49",2019-08-27,2022-05-19,2022-12-14 12:09:24,Possible L1 candidate,1174,1,False,False,True -30329585,1175.01,,5,5,5,5,5,5,5,10.3,64.7,26.68,0,6,6,EB,FP,10.2026,0.006,,1,qlp,UNKNOWN,19:16:57.29,31:19:24.87,-9.775,0.038,-45.409,0.051,2459437.549479,0.0015185,7.5022708,3.68e-05,2.605,0.189,1.912579,0.001408,1760.0,1.29686,5.55812,0.293328,129.866,940.0,27.0,216.517,1.216,6229.0,129.8,4.31,0.08,1.27,0.06,,,1.203,0.166977,"14,40,41",2019-09-03,2021-11-22,2022-12-14 12:09:24,offset to TIC 30329564; TFOP FP; retired as NEB,1175,1,False,False,True -230088370,1176.01,,4,4,4,4,4,4,4,26.6,110.3,109.48,8,3,5,PC,PC,10.1772,0.008,,1,qlp-s56-ffi,UNKNOWN,16:29:25.6,71:30:21.14,-16.259,0.033,5.101,0.036,2459843.997294,0.0003098,14.0077482,6.4e-06,5.759,0.04,6.719744,0.028561,6170.0,26.305,12.764,0.537652,200.505,1048.0,173.0,295.561,1.773,6557.7,83.3,4.18,0.09,1.57,0.07,,,1.38,0.232595,"14,15,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,54,55,56,57",2019-08-27,2022-12-13,2022-12-16 12:08:26,fast rotating host,1176,1,False,False,True -169177766,1177.01,,5,5,5,5,5,5,5,10.1,61.1,31.31,1,1,0,PC,FP,10.1617,0.006,,1,qlp,QLP,19:49:12.01,41:19:36.64,1.815,0.06,0.92,0.062,2458684.33812,0.00785,1.69127,0.0011,3.206,0.526,0.78,0.001808,718.149,1.66519,,,,,13.0,602.899,13.5555,9121.5,227.1,4.21,,,,,,2.572,,14,2019-09-03,2019-09-03,2022-12-14 12:09:24,Could be on neighbor,1177,1,False,False,False -359496368,1178.01,,5,5,5,5,5,5,5,5.1,9.4,2.85,0,1,6,EB,FP,10.1358,0.007,,1,qlp-s14-ffi,UNKNOWN,18:36:24.25,55:23:30.41,184.868,0.04,-42.647,0.041,2458685.17855,0.00935,2.6659,0.00196,3.507,0.406,0.64,0.383904,589.288,353.526,1.34277,1.04178,353.396,1207.0,12.0,36.7224,0.0276,4043.4,90.3,4.69,0.01,0.5,0.02,,,0.552175,0.0206375,"14,15,16,18,19",2019-08-27,2022-06-01,2022-12-14 12:09:24,shallow V-shaped transit; TFOP FP,1178,1,False,False,True -148914726,1179.01,,5,5,5,5,4,5,5,49.0,195.7,20.1,9,4,4,PC,APC,10.1313,0.006,,1,spoc-s14-s41-b0A-APC,UNKNOWN,12:28:13.42,67:14:24.15,-6.578,0.042,13.823,0.031,2459635.869545,0.0003669,1.2615293,7e-07,1.12439554468262,0.02029878,2.842834,0.048801,2614.92230649053,44.945942,4.72153000511027,0.30420333,708.183764897466,1315.69808069017,55.88356,86.444,0.15065,4927.9,85.3,4.57,0.08,0.775123000144958,0.0488191,,,0.81,0.0916421,"14,15,21,22,41,48",2019-08-27,2022-07-12,2022-12-14 12:09:24,TFOPWG BEB/APC; small secondary,1179,1,False,False,True -158002130,1180.01,,1,4,4,1,3,4,4,4.8,66.1,9.04,6,13,3,PC,PC,10.112,0.006,,1,qlp-s60-ffi,UNKNOWN,14:18:13.39,82:11:37.55,84.408,0.045,-64.898,0.043,2459950.326327,0.0011209,9.686741,1.33e-05,2.443,0.227,1.802732,0.050147,1659.0,46.186,2.96379,0.217059,22.197,604.0,47.0,72.0238,0.13235,4738.1,139.3,4.59,0.1,0.73,0.05,,,0.75,0.0934299,"14,19,20,21,26,40,41,47,48,53,59,60",2019-08-27,2023-02-27,2023-04-26 00:00:00,L1 candidate,1180,1,False,False,True -229510866,1181.01,,4,5,5,4,4,4,4,119.4,121.9,317.0,12,16,5,CP,CP,10.079,0.009,,1,qlp-s59-ffi,QLP,19:48:51.8,64:21:15.66,-5.676,0.084,0.188,0.066,2459933.703375,0.0001437,2.1031942,5e-07,3.957,0.083,7.754813,0.024122,7117.0,22.2169,16.733,0.749521,3212.53,2097.0,513.0,302.819,3.502,6122.0,124.7,3.93,0.08,1.93,0.09,,,1.16,0.164212,"14,15,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59",2019-08-27,2023-02-09,2023-02-25 12:10:55,TOI-1181 b,1181,1,False,False,True -341544930,1182.01,,5,5,5,5,5,5,5,,,317.0,1,12,2,PC,FP,10.0049,0.006,,1,qlp,QLP,13:26:27.52,65:18:22.84,-21.314,1.32,18.923,1.467,2458689.7917,0.00095,7.64245,0.00063,2.684,0.152,5.719998,0.080567,5254.46,74.2019,18.5438,2.6428,491.512,1311.0,102.0,,,6496.7,255.1,,,2.33,0.18,,,,,14,2019-08-27,2019-08-27,2022-12-14 12:09:24,TFOPWG FP,1182,1,False,False,True -258777137,1183.01,,5,5,5,5,5,5,5,127.6,387.2,123.99,0,6,2,EB,FP,9.9478,0.007,,1,spoc-s14-b02,UNKNOWN,19:06:59.31,71:42:44.56,-20.36,2.0,17.32,2.0,2458686.00278,0.00063,5.92932,0.00022,3.285777,0.219,15.370073,0.284444,14056.629845,261.9487,13.770992,0.1923506,223.142123624208,985.746264636009,78.9192,112.868,,5095.6,1241.5,,,1.06469,,,,,,"14,15,16,17,19",2019-08-27,2022-02-07,2022-12-14 12:09:24,may also be on 1718201850; TFOPWG FP Retired as NEB,1183,1,False,False,True -233087860,1184.01,,1,4,4,4,4,1,4,5.3,67.2,5.97,7,10,8,PC,PC,9.9469,0.006,,1,qlp-s60-ffi,UNKNOWN,18:08:49.08,60:40:43.62,64.887,0.042,138.082,0.045,2459960.510672,0.0005207,5.7484316,4.3e-06,1.641,0.118,1.163447,0.024561,1071.0,22.6214,2.30502,0.188342,24.4164,619.0,52.0,58.5946,0.0779,4534.0,127.6,4.61,0.1,0.69,0.06,,,0.71,0.084812,"14,15,16,17,18,19,20,21,22,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2019-08-27,2023-02-27,2023-03-03 12:11:24,multiple stars in pixel; variable host,1184,1,False,False,True -83210867,1185.01,,5,5,5,5,5,5,5,18.5,73.2,22.8,6,1,2,PC,FP,9.94025,0.006,,1,qlp,QLP,19:49:50.26,34:49:46.8,19.777,0.045,11.228,0.045,2458684.47451,0.0039,1.19573,0.00033,1.569,0.273,0.868937,0.003,800.0,2.7632,5.07792,0.39585,1731.95,1797.0,12.0,246.798,1.7075,5997.0,149.9,4.0,0.08,1.73,0.08,,,1.105,0.142795,14,2019-09-03,2020-05-20,2022-12-14 12:09:24,Could be on neighbor,1185,1,False,False,False -289539327,1186.01,,5,5,5,5,2,5,5,68.3,113.6,317.0,0,2,2,PC,APC,9.92402,0.006,,1,qlp-s55-ffi,QLP,16:46:32.03,65:42:54.13,-23.07,0.056,31.142,0.056,2459817.020033,0.0021321,11.246367,5.02e-05,7.721,0.226,9.804908,0.000335,8990.0,0.308967,19.4912,0.872579,426.613,1266.0,204.0,294.85,2.4105,6115.7,343.6,3.89,0.08,2.01,0.09,,,1.143,0.152388,"14,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55",2019-08-27,2022-10-06,2022-12-14 12:09:24,TFOPWG SB1/APC; strong secondary; too large for insolation; possible eccentric EB,1186,1,False,False,True -372757221,1187.01,,3,4,3,3,4,4,4,8.8,62.1,13.87,3,3,4,PC,PC,9.9002,0.006,,1,spoc-s14-s60-b0A-PC,QLP,10:51:34.36,81:19:19.83,-2.083,0.197,-9.042,0.166,2459604.464822,0.0011598,2.59423585108458,8.430809e-06,1.09738464606441,0.28523293,0.760053,0.043747,699.78944993882,40.291935,3.79700509184976,2.8627813,1807.05895913504,1662.88735257165,16.95264,221.071,4.997,6389.0,124.4,4.26,0.09,1.3965699672699,0.0671156,,,1.28,0.196602,"14,20,21,26,40,41,47,53,60",2019-08-27,2023-05-25,2023-06-16 12:14:51,V-shaped; variable host; a second star ~0.17'' south of the brighter target and ~2 mag fainter in K,1187,1,False,False,True -15247229,1188.01,,5,5,5,5,5,5,5,26.6,130.6,86.69,1,1,0,PC,FP,9.886581,0.006,,1,qlp,QLP,20:26:55.4,38:55:56.17,6.103,0.055,2.194,0.06,2458687.19253,0.00166,8.5112,0.00138,3.486,0.185,4.539995,1.766974,4172.76,1626.12,,,,,47.0,347.452,4.149,8156.0,169.3,4.35,0.08,,,,,2.031,0.316121,14,2019-09-03,2019-09-03,2022-12-14 12:09:24,Could be on neighbor,1188,1,False,False,True -112026224,1189.01,,3,4,3,4,3,4,4,,,71.2,5,4,5,PC,PC,9.8744,0.007,,1,qlp-s41-tois,QLP,19:28:53.58,24:12:04.28,-20.73,2.0,-57.98,2.0,2459441.286476,0.0010364,3.9687994,1.34e-05,1.07,0.367,1.912579,0.019529,1760.0,17.9866,,,,,19.0,,,5286.9,447.0,,,,,,,,,"14,40,41",2019-09-03,2022-02-15,2022-12-14 12:09:24,v-shaped; crowded field,1189,1,False,False,True -287196418,1190.01,,5,5,5,5,1,5,5,86.1,108.5,317.0,0,0,0,PC,APC,9.80529,0.006,,1,qlp-s60-ffi,UNKNOWN,19:30:56.19,59:24:13.87,0.983,0.045,0.492,0.044,2459955.293687,0.0001745,3.6950117,1.1e-06,4.342,0.389,8.576356,0.062536,7868.0,57.5964,14.9299,0.613754,2182.08,1904.0,227.0,280.948,1.884,7106.7,186.5,4.2,0.08,1.63,0.07,,,1.532,0.249804,"14,16,17,20,21,23,24,26,40,41,47,49,50,51,53,54,55,56,57,58,59,60",2019-08-27,2023-02-27,2023-03-03 12:11:24,variable host star; TFOP APC/BEB,1190,1,False,False,True -237185205,1191.01,,5,5,5,5,5,5,5,75.0,183.8,317.0,1,1,6,EB,FP,9.7831,0.009,,1,qlp,QLP,18:54:06.41,37:43:12.05,1.209,0.034,-2.212,0.035,2459441.423236,0.0010996,15.7335693,5.12e-05,3.288,0.224,2.761278,1.028387,2540.0,946.731,24.3218,7.54273,367.588,1219.0,42.0,355.809,2.417,6800.0,134.4,3.91,0.08,2.21,0.09,,,1.46,0.243078,"14,26,40,41",2019-08-27,2021-10-18,2022-12-14 12:09:24,TFOP FP; retired as NEB; centroid offset centered on offset to TIC 237194795; v-shaped; large for 15 day period,1191,1,False,False,True -158276040,1192.01,,3,5,5,3,4,4,4,1.1,192.4,317.0,0,4,6,PC,APC,10.4999,0.006,,1,qlp-s53-ffi,QLP,19:06:12.01,44:04:50.88,-6.94,1.938,-18.91,1.096,2459422.336857,0.016191486,735.044718,0.0012938804,3.856,0.095,15.935551,2.363221,14570.0,2174.24,32.3005,,46.3232,,92.0,283.025,,6479.3,,,,1.28,,-0.176,0.012,,,"14,26,40,41,53",2019-09-17,2023-03-16,2023-03-24 12:12:10,real period likely shorter than max period of ~735 days; V-shaped; Rp > 30Re; TFOP SM/APC,1192,1,False,False,True -89643259,1193.01,,5,5,5,5,5,5,5,39.3,126.4,89.27,3,2,4,PC,FP,10.4813,0.006,,1,qlp,QLP,20:05:38.61,33:02:57.14,7.326,1.4,-5.412,1.389,2458684.20475,0.00255,2.22223,0.00043,2.381,0.21,3.300002,1.592292,3034.8,1465.48,22.2948,15.5174,,,22.0,501.963,,7166.8,140.0,,,3.68,0.14,,,,,14,2019-09-03,2019-09-03,2022-12-14 12:09:24,,1193,1,False,False,True -147950620,1194.01,,3,4,4,3,4,4,4,69.2,215.4,59.15,16,31,4,PC,PC,10.4782,0.006,,1,qlp-s48-tois,UNKNOWN,11:11:17.16,69:57:53.19,79.486,0.045,15.428,0.044,2459632.287997,0.0001554,2.3106444,7e-07,1.317,0.086,7.659681,0.000116,7030.0,0.10698,8.88618,0.500776,234.537,1090.0,230.0,149.667,0.652,5339.9,155.2,4.41,0.09,0.99,0.06,,,0.918,0.118409,"14,20,21,40,41,47,48",2019-08-27,2022-07-12,2022-12-14 12:09:24,,1194,1,False,False,True -24364065,1195.01,,5,5,5,5,5,5,5,27.2,45.1,119.41,3,1,4,PC,FP,10.4717,0.011,,1,qlp,QLP,19:24:28.91,33:16:25.33,-7.067,0.04,-2.648,0.05,2458686.84696,0.00588,4.05135,0.00238,2.4,0.421,1.23,0.004414,1132.23,4.06526,14.2359,0.960524,,,10.0,500.014,7.3165,4974.4,77.4,,,3.85,0.12,,,,,14,2019-09-03,2019-09-03,2022-12-14 12:09:24,,1195,1,False,False,True -69068526,1196.01,,3,4,3,4,4,4,4,49.3,62.4,317.0,3,2,5,PC,PC,10.4318,0.008,,1,qlp-s54-tois,UNKNOWN,19:26:49.85,17:48:31.45,0.136,0.075,-0.736,0.06,2459785.498161,0.0009139,5.5376617,9.5e-06,2.517,0.394,5.867947,0.391127,5390.0,360.176,15.6557,4.37239,351.929,1206.0,59.0,424.442,10.406,6689.0,154.1,3.96,0.09,2.06,0.1,,,1.417,0.236016,"14,40,54",2019-09-03,2022-11-30,2022-12-14 12:09:24,multiple stars in pixel; evolved host,1196,1,False,False,True -92677094,1197.01,,3,4,3,3,4,4,4,52.6,61.3,317.0,5,5,5,PC,PC,10.4247,0.006,,1,qlp-s54-tois,QLP,19:33:04.4,15:44:10.09,8.576,0.072,-0.501,0.056,2459787.132209,0.0011302,4.5960377,9.3e-06,4.744,0.155,5.442298,0.124877,5000.0,115.009,16.2166,2.56736,2340.04,1937.0,18.0,405.634,6.408,7649.0,290.1,4.04,0.08,2.12,0.07,,,1.788,0.296602,"14,40,54",2019-09-03,2022-11-30,2022-12-14 12:09:24,variable host; multiple stars in pixel,1197,1,False,False,True -203189770,1198.01,,5,5,5,5,5,5,5,83.7,151.6,317.0,0,0,0,KP,KP,10.4219,0.006,,1,spoc-s14-s55-b0A-KP,QLP,20:19:12.01,32:34:51.76,2.239,0.043,-0.113,0.047,2459821.253803,0.0032967,3.61277330994474,3.347423e-06,4.10058140854036,0.0234172,11.772595,0.054639,10784.3876751021,50.32301,18.5290444302511,0.6281554,3669.0866318217,1984.99419530041,211.0957,470.878,6.3855,8324.0,258.9,4.28,0.08,1.71134996414185,0.0575729,,,2.053,0.307864,"14,15,41,55",2019-09-03,2023-03-15,2023-03-24 12:12:10,KELT 21 b,1198,1,False,False,True -99869022,1199.01,,3,4,4,3,4,4,4,43.4,122.4,80.06,14,10,5,PC,PC,10.4221,0.006,,1,qlp-s48-ffi,UNKNOWN,11:07:31.36,61:21:09.26,-4.019,0.038,-33.35,0.045,2459618.796703,0.000599,3.6714634,4.1e-06,2.149,0.22,4.72235,0.000837,4340.0,0.770616,10.678,0.55726,324.114,1182.0,96.0,248.427,1.7795,5618.0,122.1,4.06,0.08,1.54,0.08,,,0.99,0.127451,"14,21,41,48",2019-08-27,2022-03-23,2022-12-14 12:09:24,see observing notes regarding possible SB2,1199,1,False,False,True -288185138,1200.01,,5,5,5,5,5,5,5,55.1,177.0,41.18,4,3,0,PC,FP,10.402,0.006,,1,qlp,QLP,14:51:21.94,82:57:08.13,-32.468,0.111,28.147,0.083,2458683.82537,0.00094,0.83515,5e-05,1.069,0.161,2.130131,0.03102,1960.0,28.5702,7.17826,0.798085,7547.82,2596.0,39.0,224.444,1.993,6105.0,142.2,4.31,0.08,1.24,0.06,,,1.149,0.153486,"14,19",2019-08-27,2020-05-20,2022-12-14 12:09:24,EB; v-shaped; odd-even transit difference,1200,1,False,False,True -29960110,1201.01,,2,5,5,2,4,4,4,9.8,95.8,5.57,3,6,13,PC,CP,10.9473,0.007,,1,spoc,UNKNOWN,02:48:59.45,-14:32:14.22,164.059,0.059,46.626,0.063,2458411.670877,0.0007329533,2.49197708495188,7.121616e-06,1.43381409016892,0.28704116,2.275871,0.145877,2093.95942014684,134.34839,2.21875850704585,0.9862666,39.6452663744451,639.98174261374,17.341845,37.8871,0.0516,3948.0,159.0,4.68962,0.389814,0.482387989759445,0.0146884,,,0.480382,0.0205473,"4,31",2019-01-31,2021-07-14,2022-12-14 12:09:24,visual binary; SG1 confirmed that TOI 1201 is the correct source of the TCE (not TOI 393),1201,1,False,False,True -327017634,1202.01,,5,5,5,5,5,5,5,,,317.0,0,0,2,PC,FP,8.386,0.009,,1,spoc-s01s13-b02,SPOC,14:01:42.57,-63:51:09.52,4.131,0.032,4.432,0.043,2458614.434411,0.002147,0.0,0.0,2.726775,0.502544,0.953841,0.11439,878.134108,105.351654,1.710706,1.250816,9.52129406780723,448.016226946492,7.8378444,818.829,20.7165,3773.0,163.0,4.438,,0.577983,0.089121,,,,,"11,12",2019-08-26,2023-04-04,2023-04-04 00:00:00,Single transit,1202,1,False,True,True -23434737,1203.01,,1,4,4,1,4,4,4,3.7,64.7,9.11,1,3,1,CP,CP,7.9995,0.006,,1,spoc-s01-s36-b0A-CPKP,SPOC,11:12:54.42,-34:24:24.97,292.931,0.048,-44.783,0.05,2458553.062116,0.0030005102,25.5195306914712,0.0039688037,6.68774512927699,0.2689892,0.606418,0.03487,558.375863689352,32.11596,2.96414609843449,0.27015966,45.6335701520282,662.889074777367,17.002897,64.9943,0.18965,5742.22,30.4499,4.29,0.08,1.17321002483368,0.0504221,-0.39,0.05,1.03,0.124138,"9,10,36,63",2019-08-26,2023-05-03,2023-05-03 00:00:00,validated planet,1203,1,False,False,True -467666275,1204.01,,1,4,1,2,3,4,4,6.4,54.3,4.75,3,2,3,PC,PC,8.004,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,11:16:28.59,-60:34:03.63,50.005,0.053,43.596,0.044,2458569.930968,0.0013828934,1.38123795486613,1.1729587e-05,2.33893493261706,0.36109483,0.136646,0.014665,125.847851900547,13.506947,2.02160335148419,2.6967528,5767.21989064767,2222.60034363269,9.785704,106.505,0.3725,6711.0,201.0,4.06358,0.321009,1.77567994594574,0.0832613,,,1.1,0.14231,"10,11,37",2019-08-26,2022-03-21,2022-12-14 12:09:24,,1204,1,False,False,True -287776397,1205.01,,1,4,1,1,3,4,4,3.9,21.2,12.62,0,2,1,PC,PC,8.3902,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,08:28:30.72,-74:57:17.02,-18.648,0.037,19.627,0.046,2458383.241223,0.0031378712,2.39227028059072,2.5569936e-05,9.00534252090447,0.2505459,0.069028,0.007847,63.5751409919177,7.2273498,3.59059227977842,0.44561133,18015.5142019209,2954.82262098143,9.076408,309.932,2.0765,6090.0,193.0,3.29864,0.341742,4.1956000328064,0.181862,,,1.27,0.195512,"3,6,10,11,12,13,30,33,36,37,39",2019-08-26,2022-03-21,2022-12-14 12:09:24,Out-of-transit baseline is not flat; bad transit shape; likely SV,1205,1,False,False,True -308034948,1206.01,,5,5,5,5,5,5,5,30.5,60.5,317.0,0,0,0,PC,FP,8.6014,0.012,,1,spoc,SPOC,12:01:18.17,-60:12:01.58,-6.538,0.045,-1.401,0.041,2458569.713498,0.001331,0.831542,3.9e-05,1.985538,0.244436,0.270349,0.023383,248.969585,21.536388,1.881684,2.170925,3776.60953647891,1999.37966590071,10.881971,1698.55,92.265,5824.0,165.0,4.438,,1.1512,1.1512,,,,,"10,11",2019-08-26,2019-08-26,2022-12-14 12:09:24,Possible background EB,1206,1,False,False,True -364393429,1207.01,,1,5,5,1,3,4,4,1.1,4.5,0.89,3,2,3,PC,PC,9.2397,0.006,,1,qlp-s62-ffi,SPOC,07:46:22.64,-64:03:21.63,-194.669,0.047,171.244,0.044,2460010.235965,0.0082979,2.6282308,1.78e-05,1.585,0.436,0.127039,0.011012,117.0,10.1424,0.977346,0.0889644,395.486,1242.0,10.0,113.758,0.3465,6282.0,196.0,4.37809,0.287013,1.11,0.05,,,1.1,0.141992,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,37,38,39,61,62",2019-08-26,2023-04-12,2023-04-25 12:12:35,weak signal; centroid offsets scattered around target; sub-Earth Rp,1207,1,False,False,True -273985865,1208.01,,1,4,1,1,3,4,4,2.6,33.1,3.96,6,2,2,PC,PC,10.5924,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,02:02:02.1,-83:13:40.66,9.213,0.036,40.384,0.037,2458327.484315,0.0017539704,3.42389985377885,1.7084452e-05,2.13028066813976,0.44993356,0.49377,0.048902,454.675128366187,45.039215,1.81672609884574,1.443021,294.312817657479,1056.38455688144,10.138013,134.757,0.3595,5626.0,188.0,4.56195,0.291123,0.823019027709961,0.0405528,,,0.98,0.128614,"1,12,13,27,28,39",2019-08-26,2022-03-21,2022-12-14 12:09:24,potential multi; single transit at ~2380.5 TBJD; check TIC 273985864,1208,1,True,False,True -273985865,1208.02,,1,4,1,1,3,4,4,1.7,30.4,5.89,6,2,2,PC,PC,10.5924,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,02:02:02.1,-83:13:40.66,9.213,0.036,40.384,0.037,2458331.119531,0.0021704885,10.9830288336801,4.4061966e-05,3.68112758666292,0.40239856,0.836209,0.068159,769.880352056627,62.77516,2.2927952186028,1.397018,62.2120362108584,716.289118444425,11.406921,134.757,0.3595,5626.0,188.0,4.56195,0.291123,0.823019027709961,0.0405528,,,0.98,0.128614,"1,12,13,27,28,39",2021-07-08,2022-03-22,2022-12-14 12:09:24,near 3:1 resonance with TOI 1208.01; 5.6 arcsec companion,1208,2,True,False,True -273985865,1208.03,TIC 273985865.03,1,4,1,1,3,4,4,1.1,25.4,5.75,6,2,2,PC,PC,10.5924,0.006,,3,spoc-s01-s39-b0A-PC,SPOC,02:02:02.1,-83:13:40.66,9.213,0.036,40.384,0.037,2458341.801726,0.0038333486,17.7264490394487,0.00010948634,3.44047185216713,0.8499528,0.812187,0.089735,747.772549921805,82.645226,2.26166396542232,2.1681116,32.86055688668,610.644541527497,7.355008,134.757,0.3595,5626.0,188.0,4.56195,0.291123,0.823019027709961,0.0405528,,,0.98,0.128614,"1,12,13,27,28,39",2022-04-20,2022-04-20,2022-12-14 12:09:24,potential multi; check nearby TIC 273985864 (Tmag~ 12.252),1208,3,True,False,True -30037565,1209.01,,1,4,1,1,3,4,4,0.9,16.2,8.55,1,4,3,PC,PC,9.597,0.006,,1,qlp-s63-ffi,SPOC,04:54:10.06,-70:22:44.79,43.445,0.052,46.983,0.072,2459965.880456,0.0062339,40.7194269,0.0002347,3.908,0.638,0.419175,0.02863,386.0,26.369,2.85789,0.18297,8.77014,479.0,12.0,173.833,0.8615,5914.0,40.3051,3.98,0.056569,1.56,0.07,-0.2,0.0636396,1.08,0.137748,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,29,30,31,32,33,34,35,36,37,39,61,62,63",2019-08-26,2023-05-11,2023-06-16 12:14:51,Crowded field. Potential multi. Slight depth aperture correlation.,1209,1,False,False,True -33878688,1210.01,,5,5,5,5,5,5,5,0.1,12.3,5.37,4,1,1,PC,FP,11.1762,0.006,,1,qlp,SPOC,04:24:53.27,-73:20:00.66,-21.388,0.033,-39.668,0.038,2459187.35945,0.0160266,79.3737538,0.0023152,5.38,1.863,1.333016,0.00946,1227.0,8.71249,2.17338,0.281548,3.14253,370.0,100.0,144.133,0.424,5168.33,64.7007,4.60584,0.146885,0.77,0.05,-0.168765,0.0628267,0.88,0.107894,"1,2,3,5,6,7,8,9,10,11,12,13,27,28,29,30,31",2019-08-26,2021-02-01,2022-12-14 12:09:24,Potential egress detected on nearby star with SG1 suggesting possible NEB but not high-enough SNR to be sure.,1210,1,False,False,True -50312495,1211.01,,1,4,4,1,3,4,4,2.4,34.8,10.0,2,4,5,PC,PC,9.8135,0.006,,1,spoc,QLP,02:04:42.94,-73:07:36.33,83.342,0.041,94.563,0.037,2458363.509844,0.0036112277,18.1663638352852,0.00012048007,2.74388848762494,0.3421785,0.678154,0.057918,624.407709248865,53.343296,3.13185092460542,0.54740447,62.0904043334043,715.938754009843,10.168601,133.335,0.394,5572.9,104.0,3.83,0.16,1.13929998874664,0.0660502,-0.78,0.11,0.98,0.121512,"2,13,27,28,29",2019-08-26,2021-07-15,2022-12-14 12:09:24,,1211,1,False,False,True -389924075,1212.01,,1,4,1,1,3,4,4,0.2,11.4,7.42,0,2,3,PC,PC,10.4016,0.006,,1,spoc-s01s13-b02,SPOC,05:51:29.8,-70:59:30.51,-14.187,0.052,-5.031,0.075,2458402.036518,0.035247967,105.585089257481,0.021523317,11.6068811411791,1.370779,0.502716,0.071318,462.91163248943,65.684204,2.5033334889163,0.82992214,8.0478579781689,429.57581774531,7.122355,190.986,1.003,5909.57,40.9135,4.26154,0.112826,1.1142,0.163001,-0.302155,0.0459112,1.07,0.137516,"1,2,4,5,6,7,8,9,10,11,12,39",2019-08-26,2023-01-24,2023-01-24 00:00:00,low SNR; close to momentum dumps,1212,1,False,False,True -399144800,1213.01,,4,4,4,5,5,5,5,8.6,81.3,53.74,2,1,1,PC,FP,10.6392,0.006,,1,spoc,SPOC,10:52:47.72,-67:23:14.9,-100.262,0.049,79.575,0.041,2458576.18845,0.002091,27.214103,0.003204,3.93466,0.183941,5.376968,0.459359,4940.12749,422.99606,8.317461,1.882191,,,26.603718,161.33,0.6765,6270.0,196.0,4.54537,0.423983,0.977522,0.190396,,,0.95,0.121383,"10,11",2019-08-26,2019-08-26,2022-12-14 12:09:24,Possible EB; V-shaped; crowded field,1213,1,False,False,True -451606970,1214.01,,1,4,1,1,1,4,4,1.2,25.2,5.55,6,2,0,PC,PC,10.0329,0.006,,1,qlp,UNKNOWN,19:00:11.88,-84:26:53.47,18.399,0.037,12.092,0.038,2459363.415803,0.0054343,19.1805928,0.0002241,3.763,0.774,0.597319,0.001156,550.0,1.06456,2.22109,0.166201,29.0951,611.01,12.0,107.048,0.2525,5262.4,76.0,3.98,0.12,0.94,0.05,-0.19,0.1,0.9,0.118482,"12,13,27,39",2019-08-26,2021-08-26,2022-12-14 12:09:24,potential multi,1214,1,False,False,True -453260209,1215.01,,4,4,4,4,3,4,4,4.4,13.9,0.74,4,0,1,PC,PC,10.42,0.008,,1,spoc-s01-s39-b0A-PC,UNKNOWN,09:47:30.2,-77:17:48.54,-131.355,0.036,-117.929,0.033,2458570.396765,0.0010635643,1.21244843087486,1.0203518e-05,0.967846851699006,0.27075273,0.440697,0.053239,405.814758490906,49.03328,0.879419,0.99191,336.210187663211,1092.12529701998,10.846634,34.6633,0.02245,3751.0,68.0,4.75718,0.346969,0.518,0.077,,,,,"10,11,12,37,38,39",2019-08-26,2022-03-21,2022-12-14 12:09:24,visual binary consisting of 2 M dwarfs; high proper motion star,1215,1,False,False,True -141527965,1216.01,,1,4,1,1,3,4,4,0.5,3.0,0.67,0,1,1,PC,PC,11.546,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,05:50:51.56,-75:41:18.83,36.729,0.042,80.421,0.058,2458325.444105,0.0046212133,4.5539838571695,4.6338322e-05,7.35396856099748,0.4749738,0.220624,0.021822,203.181492137979,20.098732,0.902543970679705,0.53505176,54.8433350673556,694.06590966369,9.595429,99.5413,0.2875,4280.0,171.0,4.61209,0.2,0.635811984539032,0.0770502,,,0.67,0.0795145,"1,2,3,4,5,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2019-08-26,2022-03-21,2022-12-14 12:09:24,weak signal; detected with SPOC Y1 multisector; very small Rp (~0.9 Re); scattered centroids not towards a particular star,1216,1,False,False,True -248092710,1217.01,,3,4,3,3,3,4,4,7.5,28.7,105.34,3,2,3,PC,PC,9.6517,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,12:53:02.53,-44:05:57.7,-23.424,0.081,-0.764,0.083,2458574.940733,0.0049592312,41.4856124503181,0.00048378215,6.68993682731798,0.4075069,1.042538,0.094845,959.752229082511,87.35132,12.5121956014158,0.9374495,271.196017023816,1035.00053977834,9.258001,463.223,10.75,6354.0,197.0,4.24472,2.00827,3.4868700504303,0.171218,,,1.24,0.184721,"10,11,37",2019-08-26,2022-03-21,2022-12-14 12:09:24,,1217,1,False,False,True -294781547,1218.01,,1,4,4,1,3,4,4,1.2,20.4,5.11,3,3,5,PC,PC,10.3869,0.006,,1,spoc,UNKNOWN,04:45:56.19,-68:45:42.5,7.985,0.045,13.172,0.056,2459383.435216,0.005796,13.7736661526299,6.8205576e-05,3.01315159248151,0.31732866,0.365723,0.031915,336.78629897126,29.394316,2.11053453754028,0.3569595,67.2841715358583,730.462586761106,11.143481,135.689,0.5025,5455.96,48.9052,4.46737,0.12098,1.01824998855591,0.0517361,-0.0173639,0.0475523,0.95,0.117618,"1,2,3,4,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,36,37,38,39",2019-08-26,2021-11-09,2023-06-02 00:00:00,Crowded field. Epoch is from qlp-s39-tois; other parameters from spoc-s01-s39 multisector.,1218,1,False,False,True -294981566,1219.01,,1,4,1,1,3,4,4,9.8,55.0,18.6,2,2,5,PC,PC,10.1207,0.006,,1,qlp-s63-ffi,SPOC,04:49:19.81,-67:22:07.48,-0.018,0.042,9.008,0.057,2460037.337171,0.006605,1.9142593,1.31e-05,2.596,0.938,0.271468,0.519418,250.0,478.287,4.51841,1.623,72936.7,4578.0,24.0,301.291,2.2225,6734.0,202.0,4.18582,0.417147,1.59,0.06,,,1.6,0.271058,"1,3,4,5,6,7,8,9,10,11,13,27,28,30,31,32,33,34,35,36,37,38,39,61,62,63",2019-08-26,2023-05-11,2023-06-16 12:14:51,Crowded field; v-shaped; slight depth aperture correlation; possible secondary and phase modulations,1219,1,False,False,True -319259194,1220.01,,3,5,5,3,3,4,4,5.6,43.3,78.64,0,1,1,PC,APC,9.5298,0.006,,1,spoc-s01-s39-b0A-APC,UNKNOWN,04:46:36.19,-78:33:41.78,16.229,0.051,4.771,0.06,2458439.581182,0.001581999,70.360660848941,0.00020761903,1.36466848549344,0.14030538,1.702198,0.357126,1566.55375177287,328.87143,10.5351973089952,3.5793877,52.1125371172893,685.259876949007,10.799876,273.698,2.3495,6308.0,196.0,3.98679,0.403476,2.09822010993958,0.0961233,,,1.33,0.225986,"5,8,9,11,12,13,27,28,29,31,32,35,38,39",2019-08-26,2023-01-24,2023-01-26 12:09:41,Possible stellar variability; two stars in pixel; TFOP APC,1220,1,False,False,True -349095149,1221.01,,1,4,1,1,3,4,1,0.4,20.8,9.92,6,2,3,PC,PC,10.0564,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,07:11:41.05,-65:30:31.88,0.473,0.044,39.508,0.046,2459137.643395,0.0085045,91.6814336,0.0019886,8.61907886316835,0.40959358,0.806153,0.040867,742.219090543294,37.639496,3.11722452764307,0.22665016,5.99447156268896,399.077713827065,15.093276,138.411,0.3865,5802.0,190.0,4.44521,0.305694,1.01813995838165,0.0490778,,,1.01,0.128814,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,37,38,39,61,62,63",2019-08-26,2023-05-11,2023-05-11 00:00:00,Some centroid variation but not towards a particular star,1221,1,False,False,True -374997123,1222.01,,1,5,5,1,3,4,4,1.4,18.1,6.21,2,2,5,PC,PC,10.3014,0.006,,1,spoc,UNKNOWN,06:36:53.95,-63:04:45.78,9.839,0.05,-1.893,0.063,2459369.308376,0.0041387,10.1943985000856,4.7265807e-05,2.11859670379443,0.34724292,0.30489,0.027536,280.774455720834,25.361452,2.3673560980635,1.140463,231.110795179202,994.431350691477,11.764134,226.932,1.4835,6082.0,193.0,4.33287,0.305263,1.3266099691391,0.0595629,,,1.13,0.14421,"1,2,3,4,5,6,7,9,10,11,12,13,27,29,30,31,32,33,34,35,36,37,39",2019-08-26,2021-11-09,2022-12-14 12:09:24,TFOP work in progress; epoch is from qlp-s39-tois,1222,1,False,False,True -382437043,1223.01,,5,5,5,5,5,5,5,2.0,19.8,10.42,1,2,3,PC,FP,9.3109,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,07:48:51.57,-63:43:12.45,-19.934,0.092,27.4,0.08,2458337.744507,0.002015903,14.6432449385087,5.759924e-05,2.55686185420669,0.3680237,0.248047,0.022423,228.433640637243,20.652351,3.20915800717252,1.9384159,391.19979823187,1134.27772924837,9.592547,237.7,2.593,6516.0,199.0,3.99366,0.364731,2.0417799949646,0.0960201,,,1.3,0.205342,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,37,38,39",2019-08-26,2022-03-21,2023-03-05 12:02:49,Some centroid offset across sectors. TFOP work in progress.,1223,1,False,False,True -299798795,1224.01,,1,4,1,1,3,4,4,5.1,82.1,5.41,15,1,1,PC,PC,11.556,0.008,,1,spoc-s01-s39-b0A-PC,UNKNOWN,02:28:47.48,-80:53:56.78,159.883,0.072,27.053,0.066,2459363.916519,0.0019433626,4.1782736433066,7.756445e-06,1.73615467632169,0.11411071,2.818997,0.187499,2593.02463915497,172.6776,2.18322351970725,0.1912491,13.9294931046999,492.723842281598,15.8648815,37.3312,0.06,3442.0,64.0,4.893,0.382128,0.404403001070023,0.0120014,,,0.396442,0.020234,"1,13,27,28,39",2019-08-26,2022-03-21,2022-12-14 12:09:24,other possible transit like events in the lightcurve; variable star,1224,1,False,False,True -150428703,1225.01,,1,4,1,1,3,4,4,1.5,22.6,10.16,3,1,3,PC,PC,11.7582,0.006,,1,spoc,UNKNOWN,06:28:39.91,-64:35:47.16,-19.835,0.045,5.896,0.046,2459386.830133,0.0063242,13.8967874319912,0.00015406148,4.52609933040652,0.36709192,0.871536,0.089231,802.391945711593,82.181564,3.16170794142907,0.27698752,52.3817394033735,686.143144450617,10.748107,252.615,1.313,5522.87,125.0,4.67156,0.2,0.888162970542908,0.0508468,-0.0112057,0.1,0.97,0.121845,"4,5,6,7,9,10,11,12,13,27,28,29,30,31,32,33,34,36,37,38,39",2019-08-26,2021-11-09,2022-12-14 12:09:24,SPOC multisector detection; epoch from qlp-s39-tois; other parameters from spoc-s01-s39 multisector,1225,1,True,False,True -150428703,1225.02,,1,4,1,1,3,4,4,1.5,19.9,6.96,3,1,3,PC,PC,11.7582,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,06:28:39.91,-64:35:47.16,-19.835,0.045,5.896,0.046,2458414.550258,0.0026009523,8.12127446821999,4.0668936e-05,3.12142458789844,0.29569826,0.712165,0.065179,655.712709562954,60.03006,2.53039342560006,0.35807905,107.209569144382,820.688101976897,9.676985,252.615,1.313,5522.87,125.0,4.67156,0.2,0.888162970542908,0.0508468,-0.0112057,0.1,0.97,0.121845,"4,5,6,7,9,10,11,12,13,27,28,29,30,31,32,33,34,36,37,38,39",2021-07-19,2022-03-21,2022-12-14 12:09:24,potential multi,1225,2,True,False,True -177115354,1226.01,,1,4,4,1,3,4,4,2.0,21.0,5.9,5,1,1,PC,PC,11.5514,0.006,,1,spoc,UNKNOWN,06:55:01.16,-69:52:01.67,-8.818,0.036,-3.172,0.039,2458438.453218,0.0013312525,3.92880345668607,1.4257898e-05,1.60641283392509,0.49551862,0.570832,0.059608,525.617467000497,54.899704,2.29737331849274,3.0907683,376.458942894687,1123.43811505647,11.458598,257.93,1.18,5668.15,125.0,4.52573,0.2,0.986943006515503,0.0490577,0.128964,0.1,1.01,0.132671,"5,6,7,8,10,13,27,28,29,30,32,33,35,36,37,38,39",2019-08-26,2021-11-05,2022-12-14 12:09:24,low SNR L1 candidate from SPOC multisector,1226,1,False,False,True -360156606,1227.01,,3,4,4,3,4,4,4,0.6,53.2,35.01,13,0,4,PC,CP,13.802,0.008,,1,spoc-s01-s39-b0A-PC,SPOC,12:27:04.17,-72:27:06.66,-40.266,0.097,-10.642,0.081,2458617.476078,0.0031832955,27.3633430327955,0.00019993087,4.14010897196977,0.35928208,23.766762,1.869635,21652.1498082299,1720.5153,6.54483248522178,0.5408184,0.834475633151415,243.766018817888,12.302529,100.641,0.5695,3050.0,,4.438,,0.441280007362366,0.013263,,,0.437175,0.0203843,"11,12,38",2019-08-26,2022-03-21,2022-12-14 12:09:24,now have stellar radius,1227,1,False,False,True -300038935,1228.01,,2,4,2,2,4,4,4,0.9,18.1,8.04,0,3,1,CP,CP,9.0963,0.006,,1,qlp-s63-ffi,SPOC,07:11:22.48,-68:50:00.03,-0.918,0.054,35.033,0.055,2460004.167379,0.011088,29.0498314,0.0002648,6.988,1.181,0.372471,0.016771,343.0,15.4461,2.76077,0.136045,252.974,1111.0,20.0,272.217,2.19,8208.0,222.0,4.25979,0.378798,1.8,0.05,,,2.13,0.318429,"1,2,3,4,5,6,7,8,9,10,11,12,13,28,29,30,31,32,33,34,35,36,38,39,61,62,63",2019-08-26,2023-05-11,2023-06-16 12:14:51,HD 56414 b,1228,1,False,False,True -140760434,1229.01,,5,5,5,5,3,5,5,26.4,71.9,317.0,0,3,1,PC,APC,10.779,0.006,,1,spoc-s01-s36-b0A,SPOC/QLP,04:56:31.29,-74:55:13.2,9.26,2.134,26.132,2.73,2459970.491644,0.0025319092,31.8132264129237,4.0412702e-05,11.2567164009311,0.04278848,12.535663,0.060582,11479.3755469826,55.79626,21.6314983788041,0.090372145,48.4375724468448,672.845484092922,215.36266,254.584,,6028.84,44.1073,3.96199,0.118683,1.98892998695374,,0.0445224,0.0469213,,,"11,12,13,28,29,30,31,32,33,34,35,36,61",2019-08-26,2023-07-12,2023-07-12 00:00:00,TFOP APC/SB1,1229,1,False,False,True -287156968,1230.01,,2,4,2,2,4,4,4,1.3,26.2,7.55,1,3,1,PC,CP,9.6245,0.006,,1,spoc-s01-s39-b0A-CP,UNKNOWN,07:52:31.1,-83:49:30.23,20.314,0.038,-77.04,0.049,2458620.317112,0.003581192,25.0566859872997,0.00024538647,6.70838746746946,0.44950137,0.538453,0.036016,495.810611559697,33.17182,2.65412566237512,0.5580837,53.1401879119133,688.613481595078,14.120031,143.138,0.4455,5696.0,188.0,4.26563,0.273635,1.15280997753143,0.0536432,,,1.14,0.155961,"11,12,13,27,38,39",2019-08-26,2021-12-08,2022-12-14 12:09:24,verified planet candidate,1230,1,False,False,True -447061717,1231.01,,2,5,5,2,4,4,4,2.3,127.0,13.34,8,2,5,PC,CP,10.2565,0.007,,1,spoc,QLP,10:26:59.34,-52:28:04.34,-89.046,0.141,361.603,0.186,2458563.889063,0.0006053679,24.245582212415,3.584256e-05,3.24735259351102,0.08247211,6.833948,0.120093,6274.53106925195,110.60372,3.7097594879475,0.16766258,1.95064255487698,301.414522425642,56.2112,27.6227,0.0609,3535.0,112.0,4.84874,0.46471,0.46527099609375,0.014057,,,0.462709,0.0204544,"9,10,36",2019-08-26,2021-07-14,2022-12-14 12:09:24,TOI-1231 b,1231,1,False,False,True -364395234,1232.01,TIC 364395234.01,3,4,4,3,3,4,4,13.7,71.1,81.0,5,0,1,PC,PC,11.7835,0.006,,1,qlp,SPOC/QLP,07:46:00.34,-61:52:47.26,-2.334,0.047,26.14,0.046,2459356.538461,0.0009773,14.2545346,1.83e-05,4.974,0.174,7.954945,0.00172,7300.0,1.5841,10.759,0.548982,219.312,1072.0,43.0,328.604,2.3665,5739.0,189.0,4.28235,0.517461,1.1,0.05,,,1.05,0.133005,"1,3,4,5,6,7,8,9,10,11,13,27,28,30,31,33,34,35,36,37,38",2019-08-26,2021-11-10,2022-12-14 12:09:24,,1232,1,False,False,True -260647166,1233.01,,1,4,4,1,4,4,4,4.4,77.3,7.4,32,4,5,CP,CP,8.6522,0.006,,1,spoc-s01-s39-b0A-CP,SPOC,12:26:17.78,-51:21:46.99,-70.434,0.056,-49.865,0.043,2459308.481159,0.0021338316,14.1758947254494,3.6982172e-05,3.75438268018992,0.2981036,0.985354,0.051041,907.132452873569,47.009396,2.62316413154445,0.70052356,53.879509528625,690.996198271322,15.42892,64.5978,0.19375,5723.87,49.567,4.438,,0.864172995090485,0.038593,,,1.02,0.125314,"10,11,37",2019-08-26,2022-03-30,2022-12-14 12:09:24,HD 108236 d / TOI-1233.01,1233,1,True,False,True -260647166,1233.02,,1,4,4,1,4,4,4,4.3,84.1,9.31,32,4,5,CP,CP,8.6522,0.006,,2,spoc-s01-s39-b0A-CP,SPOC,12:26:17.78,-51:21:46.99,-70.434,0.056,-49.865,0.043,2459311.402774,0.0021112864,19.5901578092393,4.3838372e-05,4.00286096971457,0.19348109,1.284825,0.057766,1182.66786413379,53.20346,3.00264280997374,0.43376216,35.0031417546046,620.363883860034,19.270168,64.5978,0.19375,5723.87,49.567,4.438,,0.864172995090485,0.038593,,,1.02,0.125314,"10,11,37",2019-08-26,2022-03-30,2022-12-14 12:09:24,HD 108236 e/TOI 1233.02,1233,2,True,False,True -260647166,1233.03,,1,4,4,1,4,4,4,5.1,74.2,4.89,32,4,5,CP,CP,8.6522,0.006,,3,spoc-s01-s39-b0A-CP,SPOC,12:26:17.78,-51:21:46.99,-70.434,0.056,-49.865,0.043,2459310.632995,0.002245718,6.20362188553473,1.9735595e-05,3.0109800105516,0.3032236,0.596129,0.03615,548.904439934666,33.294434,2.05674802449622,0.8290422,162.167509425773,910.145259240341,18.416348,64.5978,0.19375,5723.87,49.567,4.438,,0.864172995090485,0.038593,,,1.02,0.125314,"10,11,37",2019-08-26,2022-03-30,2022-12-14 12:09:24,HD 108236 c / TOI 1233.03,1233,3,True,False,True -260647166,1233.04,,1,5,5,1,4,4,4,4.0,60.7,3.03,32,4,5,CP,CP,8.6522,0.006,,4,spoc-s01-s39-b0A-CP,SPOC,12:26:17.78,-51:21:46.99,-70.434,0.056,-49.865,0.043,2458572.107559,0.0014581286,3.79588997084369,2.1116364e-05,2.46028564832258,0.5248255,0.344806,0.038622,317.527292830481,35.57154,1.55313498878187,1.950819,312.180749549799,1072.06539893981,10.611289,64.5978,0.19375,5723.87,49.567,4.438,,0.864172995090485,0.038593,,,1.02,0.125314,"10,11,37",2019-08-26,2022-03-30,2022-12-14 12:09:24,HD 108236 b / 1233.04,1233,4,True,False,True -90504905,1234.01,,3,4,4,3,2,4,4,19.8,103.2,23.63,7,0,2,PC,PC,13.7991,0.008,,1,spoc-s14-b02,SPOC,19:22:17.34,26:19:10.18,-29.235,0.059,-14.449,0.063,2458685.613152,0.0053327708,2.26453861145203,0.0010603992,3.81937014012583,0.4799231,16.431406,1.895756,15019.9420902933,1744.5321,5.19367635806677,0.5849404,34.1873897077144,616.717447540327,7.442371,104.912,0.4445,3443.0,157.0,4.81617,0.00428335,0.411471,0.012407,,,0.404369,0.0203876,"14,40",2019-10-17,2022-03-28,2022-12-14 12:09:24,Period may be at another multiple,1234,1,False,False,True -103633434,1235.01,,1,4,4,1,4,4,4,6.4,71.2,4.23,5,6,10,CP,CP,9.91924,0.007,,1,qlp-s60-ffi,SPOC,10:08:52.38,69:16:35.83,196.631,0.04,17.369,0.047,2459961.59944,0.0020211,3.4446812,1.03e-05,1.845,0.552,0.841772,0.072588,775.0,66.8538,1.88823,0.101761,134.671,949.0,23.0,39.6345,0.0478,3912.0,157.0,4.62642,0.0114063,0.63,0.02,,,0.611578,0.0202794,"14,20,21,40,41,47,60",2019-10-17,2023-02-27,2023-03-03 12:11:24,TOI-1235 b,1235,1,False,False,True -120757718,1236.01,,5,5,5,5,5,5,5,111.4,301.9,108.82,0,0,0,KP,KP,11.0248,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,19:04:09.81,36:37:57.13,-32.207,0.046,-20.401,0.046,2459422.690639,0.0002431802,3.03007145826677,4.80485e-07,2.5466671376467,0.010609142,23.924875,0.088368,21794.6136956278,81.38665,12.752989173481,0.68132544,318.458185847777,1077.41459353966,327.5781,159.658,0.733,5242.82,110.777,4.52404,0.0808874,0.857369005680084,0.045686,0.0414032,0.0370742,0.896,0.107192,"14,40,41,53,54",2019-10-17,2023-03-15,2023-03-24 12:12:10,TrES-1 b,1236,1,False,False,True -120960812,1237.01,,5,5,5,5,5,5,5,4.6,35.5,21.8,0,129,6,KP,KP,10.2768,0.006,,1,qlp-s54-ffi,SPOC,19:06:33.21,39:29:16.45,-0.455,0.04,6.169,0.044,2459781.665928,0.0037874,12.72038,0.0001319,2.401,0.372,1.16236,0.00282,1070.0,2.59688,4.96046,0.394461,41.1042,705.0,13.0,243.249,1.4055,6212.0,132.796,4.17664,0.0924886,1.48,0.09,-0.01,0.1,1.196,0.174207,"14,40,41,53,54",2019-10-17,2022-10-05,2022-12-14 12:09:24,Kepler-25 c,1237,1,True,False,True -120960812,1237.02,,5,5,5,5,5,5,5,2.6,25.8,9.15,0,129,6,KP,KP,10.2768,0.006,,2,spoc-s14-s55-b0A-KP,SPOC,19:06:33.21,39:29:16.45,-0.455,0.04,6.169,0.044,2458685.409943,0.0027240294,6.23875501334555,3.0611034e-05,3.61785672529817,0.482282,0.405672,0.039767,373.568113846832,36.626076,2.97282834387617,1.2901354,587.129075947598,1255.46076987133,9.259248,243.249,1.4055,6212.0,132.796,4.17664,0.0924886,1.47767996788025,0.0878593,-0.01,0.1,1.196,0.174207,"14,40,41,53,54",2022-06-02,2023-03-15,2023-03-24 12:12:10,Kepler-25 b,1237,2,True,False,True -153951307,1238.01,,2,4,4,2,4,4,4,5.8,53.7,6.24,4,2,8,PC,PC,11.2582,0.007,,1,qlp-s49-tois,SPOC/QLP,13:25:31.76,68:50:09.84,-4.963,0.052,-45.922,0.053,2459659.536902,0.0025958,3.2947591,1.21e-05,1.655,0.265,1.434119,0.002142,1320.0,1.97257,2.36106,0.118456,44.5658,719.0,21.0,70.7145,0.12055,3853.0,157.0,4.63168,0.010987,0.62,0.02,,,0.606665,0.0201108,"14,15,21,22,41,49",2019-10-17,2022-07-13,2022-12-14 12:09:24,potential multi,1238,1,True,False,True -153951307,1238.02,,2,4,4,2,4,4,4,5.2,6.3,2.37,4,2,8,PC,PC,11.2582,0.007,,2,qlp-s49-tois,SPOC,13:25:31.76,68:50:09.84,-4.963,0.052,-45.922,0.053,2459662.769331,0.0038725,0.7645787,4e-06,1.08,0.285,0.412658,0.002608,380.0,2.40229,1.33541,0.1132,398.218,1244.0,9.0,70.7145,0.12055,3853.0,157.0,4.63168,0.010987,0.62,0.02,,,0.606665,0.0201108,"14,15,21,22,41,49",2019-11-15,2022-08-19,2022-12-14 12:09:24,TOI 1238 c,1238,2,True,False,True -154716798,1239.01,,2,4,2,2,4,4,4,6.1,65.1,19.25,8,5,3,CP,CP,10.7192,0.006,,1,spoc-s14-s60-b0A-CP,SPOC,10:32:02.71,84:01:49.36,-26.182,0.043,2.141,0.042,2459604.095801,0.0012757,12.6396981809105,1.5323858e-05,3.38307016093858,0.086212866,3.580882,0.123812,3292.68128637588,114.02858,4.60251624420615,0.33088568,39.6563976529739,640.026660114251,27.144175,126.903,0.4395,5217.0,128.364,4.59186,0.0842146,0.789425015449524,0.0435527,,,0.888,0.109824,"14,20,26,40,47,53,59",2019-10-17,2023-06-13,2023-06-16 12:14:51,TOI 1239 b (Giacalone+2021),1239,1,False,False,True -158170594,1240.01,,5,5,5,5,5,5,5,26.1,57.3,119.35,0,3,1,KP,KP,13.8046,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,19:04:26.47,43:40:51.46,-1.691,0.03,7.017,0.032,2459421.32991,0.0017901955,1.72085545094936,2.6333819e-06,1.83464091474227,0.08741208,10.927651,0.344193,10014.258740094,316.96338,13.4646314100489,0.70833164,2259.38966758133,1758.39942941394,34.395763,1086.24,19.16,5832.83,96.06,4.20893,,1.33402001857758,,0.371,0.092,1.05,,"14,26,40,41,53,55",2019-10-17,2023-03-15,2023-03-24 12:12:10,Kepler-412 b,1240,1,False,False,True -159107668,1241.01,,3,4,4,3,4,4,4,8.3,28.5,45.27,5,33,19,PC,PC,11.1634,0.008,,1,spoc-s14-s41-b0A-PC,SPOC,19:18:57.54,44:38:50.45,2.831,0.15,-10.813,0.154,2459421.236112,0.0031315,4.78025969477922,1.6466798e-05,1.45886577118574,0.5069863,1.103076,0.106929,1015.45500425554,98.48061,7.6126429295816,7.273695,1770.01513442647,1654.29895160095,14.010956,546.522,24.466,5826.0,155.529,3.7213,0.0931907,2.33872008323669,0.172542,0.12,0.1,1.05,0.13373,"14,15,40,41",2019-10-17,2022-02-15,2022-12-14 12:09:24,matched to KOI 5.01 (Kepler PC); triple star system,1241,1,False,False,True -198212955,1242.01,,1,4,1,1,4,4,4,12.0,63.6,4.93,10,4,6,PC,PC,11.598,0.006,,1,qlp-s49-tois,SPOC,16:34:12.79,60:11:45.34,1.525,0.049,-39.808,0.052,2459664.126568,0.0010607,0.3814849,6e-07,0.565,0.154,0.619046,0.005104,570.0,4.70096,2.0605,0.255519,931.396,1539.0,27.0,110.015,0.364,4255.0,128.2,4.55641,0.106625,0.71,0.07,,,0.665,0.0831565,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,48,49",2019-10-17,2022-08-19,2022-12-14 12:09:24,Possible L1 candidate; very short period,1242,1,False,False,True -219698776,1243.01,,2,4,4,2,4,4,4,4.6,67.2,5.47,10,2,7,PC,PC,11.1966,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,09:02:55.83,71:38:11.1,-100.404,0.04,-142.946,0.048,2459598.143164,0.0019616,4.65951692268813,8.162405e-06,0.901182068655105,0.19003154,1.874698,0.149552,1725.17062589876,137.73328,2.19615072748226,0.5582007,17.2664038094902,519.900485452084,14.432014,43.1865,0.0613,3489.0,157.0,4.74553,0.00760071,0.490729004144669,0.014421,,,0.488819,0.0201716,"14,20,40,47,53,60",2019-10-17,2023-05-25,2023-06-16 12:14:51,L1 candidate,1243,1,False,False,True -219850915,1244.01,,1,4,1,1,4,4,4,2.7,36.2,5.8,5,9,7,PC,PC,11.0157,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,17:05:07.09,69:31:08.73,-56.411,0.045,-66.5,0.047,2459913.810947,0.003685006,6.40028074824178,1.0382737e-05,2.15598747353993,0.1579858,1.115191,0.038034,1026.6018729023,35.029545,2.27303010409283,0.84500456,56.4368797003924,699.05363470217,28.111683,102.551,0.24,4599.0,123.0,4.58487,0.0932913,0.720551013946533,0.0534824,,,0.728,0.0836433,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,59",2019-10-17,2023-03-16,2023-03-24 12:12:10,L1 candidate,1244,1,False,False,True -229781583,1245.01,,1,4,1,1,4,4,4,3.2,42.0,6.31,7,0,5,PC,PC,12.1819,0.007,,1,qlp-s52-tois,SPOC,18:54:08.53,69:38:00.72,-9.435,0.034,54.067,0.04,2459764.329317,0.001816,4.8204512,1.22e-05,1.756,0.181,2.097496,0.001623,1930.0,1.49496,2.36747,0.0993507,17.8782,572.0,20.0,80.0982,0.11875,3692.0,157.0,4.71598,0.00882482,0.52,0.02,,,0.521792,0.0202308,"14,15,16,17,18,19,20,21,22,23,25,26,40,41,47,48,49,50,51,52",2019-10-17,2022-10-04,2022-12-14 12:09:24,Potential L1 candidate,1245,1,False,False,True -230127302,1246.01,,1,4,2,1,4,4,4,2.9,39.3,17.74,9,15,6,CP,CP,11.1802,0.006,,1,spoc-s14-s55-b0A-CP,SPOC,16:44:27.81,70:25:47.97,-48.024,0.047,81.928,0.051,2459733.643821,0.0043228,18.6548828810169,0.00010550051,5.44314509917649,0.23184176,1.624874,0.161369,1495.44494728176,148.61504,4.38698775057375,0.5200952,27.832077008609,585.809154164463,23.855204,169.422,0.671,5141.0,122.049,4.49143,0.0842768,0.876154005527496,0.051,,,0.868,0.105417,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,55",2019-10-17,2023-02-23,2023-02-25 12:10:55,TOI-1246 d,1246,1,True,False,True -230127302,1246.02,,1,4,2,1,4,4,4,5.5,48.9,10.83,9,15,6,CP,CP,11.1802,0.006,,2,spoc-s14-s60-b0A-CP,SPOC,16:44:27.81,70:25:47.97,-48.024,0.047,81.928,0.051,2459737.587215,0.0020169,4.30745132484352,4.9797477e-06,2.33791957547369,0.07733442,1.189361,0.032565,1094.84194953462,29.993288,3.28198792824821,0.2242451,196.475535785033,954.875762878566,35.282627,169.422,0.671,5141.0,122.049,4.49143,0.0842768,0.876154005527496,0.051,,,0.868,0.105417,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,55,56,57,58,59,60",2019-10-17,2023-06-13,2023-06-16 12:14:51,TOI-1246 b; confirmed multi,1246,2,True,False,True -230127302,1246.03,,1,4,2,1,4,4,4,2.4,29.6,6.58,9,15,6,CP,CP,11.1802,0.006,,3,spoc-s14-s60-b0A-CP,SPOC,16:44:27.81,70:25:47.97,-48.024,0.047,81.928,0.051,2459740.304262,0.0026101,5.90412784204916,1.0616182e-05,2.76783127597578,0.24960689,0.840606,0.033949,773.926646811741,31.268017,2.44894535286704,0.93253917,129.041078120681,859.610566498464,23.98417,169.422,0.671,5141.0,122.049,4.49143,0.0842768,0.876154005527496,0.051,,,0.868,0.105417,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,55,56,57,58,59,60",2019-11-15,2023-06-13,2023-06-16 12:14:51,TOI-1246 c,1246,3,True,False,True -230127302,1246.04,TIC 230127302.04,2,4,2,2,4,4,4,0.7,23.3,10.61,9,15,6,CP,CP,11.1802,0.006,,4,spoc-s14-s60-b0A-CP,SPOC,16:44:27.81,70:25:47.97,-48.024,0.047,81.928,0.051,2458700.697302,0.0027322455,37.9251983365383,0.00012524855,3.53452194751861,0.39733,1.489336,0.085594,1370.78885385772,78.83223,3.24164295940348,1.1774186,10.8068346238815,462.428269632085,16.44205,169.422,0.671,5141.0,122.049,4.49143,0.0842768,0.876154005527496,0.051,,,0.868,0.105417,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,55,56,57,58,59,60",2020-07-16,2023-06-13,2023-06-16 12:14:51,TOI-1246 e/.04,1246,4,True,False,True -232540264,1247.01,,2,4,2,2,4,4,4,2.4,44.2,5.31,2,22,3,PC,PC,8.4724,0.006,,1,qlp-s56-ffi,SPOC,15:11:28.29,71:50:28.67,-189.064,0.053,80.263,0.044,2459834.142221,0.0026676,15.9235242,6.11e-05,3.883,0.376,0.42352,0.020604,390.0,18.9766,2.16731,0.11202,47.7441,732.0,27.0,73.8713,0.14365,5711.85,106.3,4.38315,0.0689493,1.08,0.05,-0.19,0.07,1.02,0.122847,"14,15,16,20,21,22,26,40,41,47,49,53,56",2019-10-17,2022-12-05,2022-12-16 12:08:26,potential L1 planet; other possible unrelated transits in LC,1247,1,False,False,True -232612416,1248.01,,3,4,4,3,4,4,4,23.4,110.2,36.56,12,9,5,PC,PC,11.1153,0.006,,1,spoc,SPOC/QLP,17:16:05.66,63:06:20.19,-2.867,0.047,-81.029,0.042,2459768.439523,0.0002829,4.36015357349674,1.6947921e-06,2.2646706697289,0.022081785,6.065596,0.03646,5571.04449540881,33.58029,6.71386886069135,0.37471664,202.073902884374,961.606315487614,140.17354,168.735,0.5995,5227.0,119.505,4.50479,0.0814786,0.87413102388382,0.0475929,,,0.891,0.112337,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50",2019-10-17,2022-10-04,2022-12-14 12:09:24,,1248,1,False,False,True -232976128,1249.01,,1,4,1,1,4,4,4,3.0,40.1,10.36,0,14,5,PC,PC,10.2108,0.006,,1,qlp-s49-ffi,SPOC,13:22:14.78,66:18:30.72,-14.785,0.052,-46.313,0.042,2459662.233399,0.0027015,13.0791729,5.61e-05,2.928,0.465,1.053675,0.001542,970.0,1.42043,3.19898,0.20845,36.7346,685.0,21.0,139.49,0.535,5453.0,117.875,4.41707,0.0794538,1.0,0.05,,,0.952,0.124441,"14,15,21,22,41,48,49",2019-10-17,2022-05-19,2022-12-14 12:09:24,,1249,1,False,False,True -233059608,1250.01,,5,5,5,5,5,5,5,36.7,252.3,14.11,2,4,2,V,FA,6.895,0.006,,1,spoc-s14-b02,SPOC,17:59:13.77,64:08:33.52,16.484,0.07,15.481,0.07,2458683.642967,0.0017532121,1.44150441658437,0.00016725689,0.927452380984427,0.32538947,0.594405,0.070468,547.317273629585,64.90167,3.83452088900034,3.9494371,5519.18449998091,2198.30768241866,7.2832127,66.3631,0.14805,6603.0,80.0,4.438,,1.58365,0.0635955,,,1.38,0.232049,14,2019-10-17,2023-05-10,2023-05-10 00:00:00,Nearby bright star,1250,1,False,False,True -233120979,1251.01,,3,5,5,3,4,4,4,45.9,183.9,73.36,10,19,4,PC,APC,10.6479,0.006,,1,qlp-s52-tois,SPOC/QLP,18:14:07.02,62:51:29.68,-17.9,3.3,-3.0,3.4,2459759.178675,0.0001791,5.9630544,1.5e-06,2.951,0.029,12.009271,0.000269,11000.0,0.248193,10.0859,,112.667,,298.0,185.952,,5273.0,,4.438,,0.94,,,,,,"14,15,16,18,19,20,21,22,23,24,25,26,40,41,48,49,51,52",2019-10-17,2022-10-04,2022-12-14 12:09:24,,1251,1,False,False,True -233211762,1252.01,,3,4,4,3,4,4,4,24.9,110.5,15.14,16,3,2,PC,PC,12.0623,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,17:46:44.66,70:47:04.21,-10.63,2.0,26.99,2.0,2459662.042876,0.0003672,1.12197149508784,1.3631511e-06,0.822612107351014,0.048536025,4.349086,0.085,3997.64459160281,78.284676,3.99684166210792,0.66921306,1132.4612950332,1479.53618615343,64.59633,123.8346,,5780.0,,4.67672,0.325367,0.624000012874603,0.087,,,0.674,0.113,"14,15,16,17,18,19,21,22,24,25,26,41,47,48,49,51,52,53,54,55",2019-10-17,2023-03-14,2023-03-24 12:12:10,V-shaped; variable host star; possibly synchronized,1252,1,False,False,True -233684822,1253.01,,5,5,5,5,5,5,5,7.0,48.0,14.42,4,10,4,O,FP,9.89947,0.006,,1,qlp-s56-ffi,SPOC/QLP,17:23:36.69,64:51:44.51,-30.786,0.042,29.555,0.042,2459845.069186,0.0014226,4.6756782,9.9e-06,1.903,0.193,0.749417,0.034043,690.0,31.3545,3.88187,0.215748,124.145,929.0,29.0,185.23,0.7705,5779.0,188.0,4.88162,0.361611,1.45,0.07,,,1.0,0.125785,"14,15,16,17,18,19,21,22,23,24,25,26,40,41,48,49,51,52,53,54,55,56",2019-10-17,2022-11-07,2022-12-14 12:09:24,slightly evolved star; 2 stars in pixel; Retired as NPC on TIC 233684823,1253,1,False,False,True -236714379,1254.01,,3,4,3,3,4,4,4,47.6,149.9,35.4,6,6,6,PC,PC,10.794,0.006,,1,spoc-s14-s60-b0A-PC,SPOC/QLP,15:56:48.35,65:53:19.82,-13.864,0.042,-39.587,0.052,2459716.011222,0.0002338,1.01801139006513,6.638847e-07,1.13536389329344,0.010715968,2.847218,0.026242,2618.9492168263,24.16985,6.5875996964439,0.34685823,2488.20146003171,1801.32109378495,118.722534,199.039,1.049,5451.0,125.913,4.33923,0.0801804,1.09329998493195,0.0570678,,,0.952,0.11962,"14,15,16,17,18,20,21,22,23,24,40,41,47,48,49,50,51,53,54,55,56,57,58",2019-10-17,2023-05-19,2023-06-16 12:14:51,V-shaped; possible odd-even; 2 stars in pixel; possible large-amplitude phase modulation at 2x orbital period,1254,1,False,False,True -237222864,1255.01,,1,5,5,1,4,4,4,5.0,70.4,7.99,1,25,5,CP,CP,9.1416,0.006,,1,qlp-s60-ffi,UNKNOWN,19:44:58.71,74:03:46.29,18.618,0.036,28.014,0.046,2459946.900065,0.0008206,10.288898,1.21e-05,1.472,0.524,0.925442,0.05426,852.0,49.9736,2.75739,0.185664,33.7486,671.0,43.0,65.9501,0.1013,5126.0,124.385,4.49772,0.0845762,0.87,0.05,,,0.86,0.104376,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,55,56,57,58,59,60",2019-10-17,2023-02-27,2023-03-03 12:11:24,HIP 97166 b / TOI 1255 b,1255,1,False,False,True -274762761,1256.01,,5,5,5,5,5,5,5,71.9,527.7,15.73,1,1,3,PC,FP,13.5608,0.008,,1,spoc,SPOC,20:05:23.13,38:13:41.97,-213.45,2.0,-576.64,2.0,2458683.947476,0.004218996,1.03324411383409,0.00032380797,3.80178363450511,0.3347664,28.726915,2.129666,26111.5081972147,1959.5728,4.08798801940722,8.41243,16.7778791399222,516.183377492501,8.785042,,,2972.0,157.0,5.15741,0.0425173,0.156193,0.00469252,,,0.12784,0.0200328,"14,15",2019-10-17,2019-10-17,2022-12-14 12:09:24,TFOP FP,1256,1,False,False,True -278348461,1257.01,,5,5,5,5,5,5,5,69.8,88.1,317.0,0,0,0,KP,KP,9.87463,0.006,,1,qlp-s55-ffi,SPOC,20:12:46.9,18:06:17.2,16.395,0.056,-12.938,0.044,2459820.977365,0.0003167,5.4526479,3.7e-06,3.401,0.065,8.447231,0.000292,7750.0,0.269391,14.5502,0.67124,433.78,1271.0,147.0,249.325,2.774,6509.0,117.198,4.17233,0.0865922,1.57,0.07,0.08,0.05,1.336,0.217385,"14,41,54,55",2019-10-17,2022-10-04,2022-12-14 12:09:24,HAT-P-34 b,1257,1,False,False,True -288132261,1258.01,,2,4,2,2,3,4,4,4.8,47.1,12.85,2,13,2,PC,PC,9.13619,0.006,,1,qlp-s60-ffi,SPOC,13:57:56.24,79:34:59.96,-30.956,0.047,30.681,0.037,2459943.717587,0.002662,10.2613222,3.7e-05,4.874,1.033,0.77006,0.022171,709.0,20.4201,3.62419,0.18616,293.345,1152.0,34.0,154.944,0.521,6124.0,126.553,4.15391,0.0809288,1.49,0.07,,,1.157,0.159362,"14,20,21,26,40,41,47,48,53,60",2019-10-17,2023-02-27,2023-03-03 12:11:24,possible depth-aperture correlation,1258,1,False,False,True -288735205,1259.01,,3,5,5,3,4,4,4,116.0,315.5,105.95,7,1,2,CP,CP,11.1534,0.006,,1,spoc-s14-s60-b0A-CP,SPOC,18:48:24.04,79:15:23.31,-5.658,0.04,100.203,0.047,2459764.874089,6.74e-05,3.47797762846933,2.0129826e-07,2.51034887489644,0.0042163334,29.742106,0.038241,27021.693242358,35.22068,12.5541925450089,0.8909824,153.138897114813,897.203849600513,902.9762,118.106,0.3735,4699.0,129.561,4.54638,0.0920064,0.765000998973846,0.0542789,,,0.751,0.0862556,"14,17,18,19,20,21,24,25,26,40,41,47,48,50,51,52,53,54,55,58,59,60",2019-10-17,2023-06-13,2023-06-16 12:14:51,TOI-1259 A b,1259,1,False,False,True -355867695,1260.01,,2,5,5,2,4,4,4,7.6,64.4,7.19,7,2,6,CP,CP,10.8116,0.006,,1,spoc-s14-s50-b0A-PC,SPOC,10:28:34.58,65:51:15.11,-177.236,0.037,-81.772,0.044,2459634.760516,0.0039029,3.12746344589069,7.316175e-06,1.98126946443944,0.19414476,1.446987,0.074488,1331.83692998239,68.603745,2.5802895659067,0.80342484,103.26759982068,813.037861654266,17.032537,73.5977,0.1604,4225.0,135.544,4.5756,0.1122,0.69343101978302,0.0690804,,,0.66,0.0825376,"14,21,41,47,48",2019-10-17,2022-11-09,2022-12-14 12:09:24,TOI-1260 b / TOI-1260.01,1260,1,True,False,True -355867695,1260.02,,2,5,5,2,4,4,4,4.2,53.7,8.13,7,2,6,CP,CP,10.8116,0.006,,2,spoc-s14-s50-b0A-CP,SPOC,10:28:34.58,65:51:15.11,-177.236,0.037,-81.772,0.044,2458686.119718,0.0010350184,7.49316133323679,1.695653e-05,1.93392950682202,0.25977242,1.793648,0.101993,1650.64704966477,93.93474,2.77336735218525,1.4571416,32.2107097957174,607.602879445189,15.933478,73.5977,0.1604,4225.0,135.544,4.5756,0.1122,0.69343101978302,0.0690804,,,0.66,0.0825376,"14,21,41,47,48",2019-10-17,2022-11-09,2022-12-14 12:09:24,TOI-1260 c / TOI 1260.02,1260,2,True,False,True -355867695,1260.03,TIC 355867695.03,3,5,5,3,4,4,4,0.7,43.5,14.09,7,2,6,PC,CP,10.8116,0.006,,3,spoc-s14-s50-b0A-PC,SPOC,10:28:34.58,65:51:15.11,-177.236,0.037,-81.772,0.044,2458879.323459,0.0066083833,49.8251659648395,0.0005767721,3.87149763824641,0.3720089,2.238278,0.220101,2059.40690368267,202.70015,3.8319134922927,0.4818024,2.57605659986122,323.116101128763,10.817838,73.5977,0.1604,4225.0,135.544,4.5756,0.1122,0.69343101978302,0.0690804,,,0.66,0.0825376,"14,21,41,47,48",2022-02-28,2022-11-09,2022-12-14 12:09:24,now have period for 1260.03; P. ~ 49.8 days,1260,3,True,False,True -356311210,1261.01,,1,4,1,3,4,4,4,2.7,38.0,13.95,3,3,10,PC,PC,10.6965,0.007,,1,spoc-s14-s60-b0A,SPOC,17:52:03.86,53:43:50.52,-4.385,0.042,18.216,0.041,2459628.771413,0.0040823,18.0574016082718,3.9164137e-05,3.59217696420656,0.13993236,1.301554,0.057307,1198.05721281664,52.78039,3.80926625174897,0.2625163,58.1250403415565,704.223585901658,19.749617,199.964,0.8515,5897.0,130.326,4.45922,0.0794702,1.00999999046326,0.0490678,,,1.071,0.134105,"14,17,18,20,21,24,25,26,40,41,47,48,50,51,52,53,54,55,56,57,58,59,60",2019-10-17,2023-05-25,2023-06-16 12:14:51,potential L1 planet; variable star,1261,1,False,False,True -365938305,1262.01,,2,5,5,2,3,4,4,1.5,33.6,5.69,0,5,2,PC,PC,9.5966,0.006,,1,qlp-s60-ffi,UNKNOWN,12:02:54.36,74:03:39.63,-168.724,0.042,-29.722,0.037,2459946.5685,0.0050861,20.8776201,0.0002201,3.634,0.599,0.821127,0.042935,756.0,39.5435,2.25179,0.147372,20.1422,590.0,20.0,93.2276,0.18145,5396.0,121.99,4.50457,0.0812179,0.9,0.05,,,0.94,0.11604,"14,20,21,40,41,47,48,60",2019-10-17,2023-02-27,2023-03-03 12:11:24,,1262,1,False,False,True -406672232,1263.01,,3,4,4,3,4,4,4,8.8,14.0,2.39,2,7,5,PC,PC,8.5325,0.006,,1,qlp-s41-ffi,SPOC,20:37:24.87,22:39:15.72,54.072,0.056,-57.845,0.062,2459445.579966,0.0018337,1.0228925,6.6e-06,1.156,0.205,0.228029,0.000731,210.0,0.673588,1.35281,0.110924,670.032,1417.0,13.0,46.5539,0.0783,5098.0,125.822,4.54682,0.0834493,0.82,0.05,,,0.86,0.0985563,"14,41",2019-10-17,2022-02-15,2022-12-14 12:09:24,potential L1 candidate,1263,1,False,False,True -416195870,1264.01,,3,4,3,3,4,4,4,55.3,183.6,47.99,10,3,6,PC,PC,10.634,0.008,,1,qlp-s52-tois,SPOC/QLP,19:08:58.1,57:20:38.85,12.159,0.046,-13.194,0.052,2459765.819264,0.0002532,2.7441672,1e-06,1.418,0.168,6.151805,0.000197,5650.0,0.181862,7.84317,0.519602,172.233,1009.0,190.0,141.755,0.5485,5040.0,134.474,4.38482,0.0895632,0.97,0.06,,,0.84,0.0988493,"14,15,16,17,19,20,22,23,25,26,40,41,47,49,50,52",2019-10-17,2022-10-04,2022-12-14 12:09:24,2 stars in pixel,1264,1,False,False,True -424865156,1265.01,,5,5,5,5,5,5,5,106.0,121.1,317.0,0,1,3,KP,KP,10.0274,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,19:28:59.33,47:58:10.35,-18.281,0.038,8.91,0.037,2459443.199443,0.0029031,2.20473725726412,4.7386948e-07,3.97672631897031,0.012858977,7.113768,0.0225,6530.6044983321,20.723417,16.8192478431328,0.6873013,4831.11963913762,2126.33504836114,341.97046,341.079,2.414,6532.23,109.214,3.96818,0.0816647,1.9935599565506,0.0812563,0.232601,0.0260692,1.347,0.217247,"14,15,40,41,54,55",2019-10-17,2023-03-15,2023-03-24 12:12:10,HAT-P-7 b/Kepler-2 b,1265,1,False,False,True -467179528,1266.01,,1,5,5,1,4,4,4,2.6,74.1,6.67,8,3,7,CP,CP,11.0402,0.007,,1,spoc-s14-s50-b0A-CP,SPOC/QLP,13:11:59.18,65:50:01.31,-150.652,0.041,-25.368,0.039,2459649.751299,0.0011874,10.8948420981743,1.2215573e-05,2.07193939554612,0.13021943,3.445492,0.090157,3168.38535839801,83.03396,2.46914139899506,0.28267094,5.51374709308415,390.824211198732,37.82544,36.0118,0.0295,3618.0,157.0,4.79432,0.00537588,0.435665994882584,0.0129388,,,0.431082,0.0202618,"14,15,21,22,41,48,49",2019-10-17,2022-11-09,2022-12-14 12:09:24,TOI-1266 b / TOI 1266.01,1266,1,True,False,True -467179528,1266.02,,2,5,5,2,4,4,4,0.7,44.3,4.32,8,3,7,CP,CP,11.0402,0.007,,2,spoc-s14-s50-b0A-CP,SPOC,13:11:59.18,65:50:01.31,-150.652,0.041,-25.368,0.039,2459630.046434,0.0024653,18.8016111099805,5.320233e-05,1.90935241025175,0.24637721,1.832953,0.121261,1686.78810332636,111.67929,1.91122822688092,0.31726363,2.66367565516906,325.829262141869,15.856179,36.0118,0.0295,3618.0,157.0,4.79432,0.00537588,0.435665994882584,0.0129388,,,0.431082,0.0202618,"14,15,21,22,41,48,49",2019-11-15,2022-11-09,2022-12-14 12:09:24,TOI-1266 c / TOI 1266.02,1266,2,True,False,True -158561566,1267.01,,5,5,5,5,5,5,5,9.2,35.1,69.0,0,11,40,KP,KP,11.636,0.036,,1,spoc-s14-s55-b0A-KP,SPOC,19:10:50.12,47:19:58.98,,,,,2459425.412816,0.004636351,6.79009811134125,1.4470468e-05,6.07865762764848,0.1479155,2.345739,0.061485,2158.17335676616,56.62805,9.75484809118296,0.5910394,477.528997902093,1192.2564671939,29.824783,,,6378.0,25.0,4.438,,2.0006799697876,0.103465,0.07,0.1,,,"14,15,26,40,41,53,54,55",2019-10-17,2023-03-15,2023-03-24 12:12:10,Kepler-14 b,1267,1,False,False,True -142394656,1268.01,,3,5,5,3,4,4,4,43.2,202.8,64.04,10,21,7,CP,CP,10.1495,0.006,,1,qlp-s49-ffi,SPOC/QLP,13:13:33.26,62:18:19.37,-66.989,0.077,-15.318,0.065,2459658.043864,0.0002133,8.1577318,3.5e-06,3.79,0.029,11.284957,0.000195,10340.0,0.179179,9.31728,0.554994,90.601,859.0,323.0,109.557,0.5425,5091.2,83.2,4.47,0.08,0.9,0.05,,,0.87,0.105344,"15,21,22,41,48,49",2019-10-17,2022-05-19,2022-12-14 12:09:24,TOI-1268 b / TOI-1268.01,1268,1,False,False,True -198241702,1269.01,,1,4,1,2,4,4,4,2.8,33.0,5.78,12,13,6,PC,PC,10.9897,0.006,,1,qlp-s52-tois,UNKNOWN,16:38:47.19,64:33:33.05,-40.011,0.038,107.858,0.056,2459766.867309,0.0018602,4.2530084,1.43e-05,2.399,0.187,0.738552,0.000597,680.0,0.549572,2.27163,0.139557,213.799,1065.0,25.0,172.138,0.693,5591.0,185.0,4.38111,,0.85,0.05,,,0.969,0.128979,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52",2019-10-17,2022-11-18,2022-12-14 12:09:24,potential multi,1269,1,True,False,True -198241702,1269.02,,1,4,1,2,4,4,4,1.5,24.9,5.6,12,13,6,PC,PC,10.9897,0.006,,2,qlp-s52-tois,SPOC,16:38:47.19,64:33:33.05,-40.011,0.038,107.858,0.056,2459739.097032,0.0034659,9.2378703,5.34e-05,2.535,0.305,0.716822,0.001024,660.0,0.942831,2.22995,0.14957,54.6767,757.0,13.0,172.138,0.693,5591.0,185.0,4.38111,,0.85,0.05,,,0.969,0.128979,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52",2020-02-26,2022-11-18,2022-12-14 12:09:24,Level 1 candidate; potential multi,1269,2,True,False,True -237200747,1270.01,,5,5,5,5,5,5,5,60.4,162.1,317.0,0,2,0,PC,FP,11.463,0.006,,1,qlp-s49-tois,SPOC/QLP,19:32:07.8,74:53:27.86,-12.978,0.045,-13.983,0.041,2459695.445887,0.0004704223,14.3034613,2.6e-06,3.135,0.01,54.366054,0.00026,48840.0,0.239763,18.4949,1.14648,15.38,551.0,573.0,171.138,0.664,5056.6,91.3,4.53,0.09,0.83,0.05,,,0.843,0.1037,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,51",2019-10-17,2022-07-15,2022-12-14 12:09:24,TFOP SB1/APC; see observing notes; strong secondary; too large for insolation,1270,1,False,False,True -286923464,1271.01,,5,5,5,5,5,5,5,136.6,353.1,114.56,0,6,2,KP,KP,7.4556,0.006,,1,qlp-s49-ffi,SPOC/QLP,13:34:02.39,53:43:41.48,-85.877,0.052,-78.913,0.038,2459657.449461,0.0012213,6.1349783,1.65e-05,5.661,0.775,4.199051,0.001484,3860.0,1.36645,13.1383,0.760486,861.554,1509.0,66.0,92.2589,0.2358,5828.7,80.0,3.84,0.08,2.05,0.11,0.211367,0.0109545,1.05,0.136204,"15,16,22,49",2019-10-17,2022-05-19,2022-12-14 12:09:24,HD 118203 b,1271,1,False,False,True -417948359,1272.01,,3,5,5,3,4,4,4,15.1,85.2,19.15,5,15,3,PC,PC,11.0244,0.006,,1,qlp-s49-tois,SPOC/QLP,13:16:47.09,49:51:39.81,-63.3,0.033,4.659,0.03,2459661.401357,0.001733,3.3159772,7.4e-06,1.494,0.364,3.011662,0.005287,2770.0,4.86911,4.5947,0.346084,120.595,923.0,35.0,137.572,0.402,4972.7,61.9,4.54,0.09,0.81,0.05,,,0.825,0.0987782,"15,16,22,49",2019-10-17,2022-07-13,2023-03-03 00:00:00,2 stars in pixel,1272,1,False,False,True -445859771,1273.01,,3,4,4,3,4,4,4,44.5,167.4,63.77,6,3,5,PC,PC,10.418,0.006,,1,qlp-s50-tois,SPOC/QLP,14:16:29.01,58:23:24.91,37.07,0.081,-44.439,0.072,2459684.920137,0.0015226,4.6313014,8.8e-06,1.435,0.232,5.289542,0.084423,4860.0,77.7533,9.34848,1.12279,225.013,1078.0,11.0,177.118,1.214,5736.0,164.8,4.39,0.07,1.07,0.05,,,1.015,0.12369,"15,16,22,23,48,50",2019-10-17,2022-09-07,2022-12-14 12:09:24,v-shaped,1273,1,False,False,True -459969957,1274.01,,3,4,3,3,4,4,4,10.3,82.2,65.35,7,3,3,PC,PC,11.8994,0.006,,1,qlp-s52-tois,SPOC/QLP,16:59:15.88,65:44:50.78,-72.167,0.063,74.449,0.056,2459736.340774,0.0004208,19.3203478,1.26e-05,4.215,0.074,15.208613,0.000711,13910.0,0.655116,9.38964,0.690442,13.544,534.0,192.0,178.141,0.957,4968.1,172.4,4.5,0.1,0.8,0.06,,,0.747,0.0899751,"14,15,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,54,55",2019-10-17,2022-10-11,2022-12-14 12:09:24,,1274,1,False,False,True -13499636,1275.01,,5,5,5,5,5,5,5,5.9,62.4,17.09,3,2,4,PC,FA,10.5954,0.006,,1,spoc,SPOC,21:20:48.46,28:03:20.98,52.835,0.06,19.537,0.067,2458714.596964,0.0071867397,11.3246821431207,0.010262233,5.97041357430429,0.4890376,2.105745,0.271795,1937.58297208206,250.30127,4.29172255714392,0.4109325,59.1706101793609,707.369388155268,7.1837444,138.591,0.823,5518.0,130.133,4.59176,0.0831556,0.824734,0.044294,,,0.969,0.129091,15,2019-10-17,2019-10-17,2023-06-18 12:02:57,Possible single transit (first event).,1275,1,False,False,True -43064903,1276.01,,5,5,5,5,5,5,5,1.0,11.0,2.38,3,0,3,EB,FA,12.5405,0.007,,1,spoc-s14-s41-b0A-PC,SPOC,20:10:40.59,40:40:07.06,294.477,0.084,-86.018,0.09,2459770.682182,0.004226021,6.26116895033486,1.6366235e-05,2.03691881749237,0.44735876,4.357129,0.451294,4005.0228080017,415.5704,1.34683189626535,0.45888957,6.98169450386235,414.581539551025,11.06697,24.5209,0.03105,3145.0,157.0,5.04431,0.0229453,0.211256995797157,0.00620513,,,0.180245,0.0200314,"15,41",2019-10-17,2022-10-06,2022-12-14 12:09:24,TFOP FA; retired as NEB,1276,1,False,False,True -153949511,1277.01,,5,5,5,5,5,5,5,,,10.53,4,6,6,IS,FA,9.76775,0.006,,1,spoc-s15-b02,SPOC,11:30:59.47,66:47:47.51,-50.76,0.034,-14.091,0.042,2458729.542462,0.0027175895,0.0,0.0,4.6,0.43440467,1.527584,0.15908,1405.96750707293,146.50763,3.22877243723143,1.0754806,45.1713283679484,661.203989207828,9.520958,100.772,0.2265,5544.0,120.311,4.5609,0.0776004,0.857648,0.0429648,,,0.976,0.122166,15,2019-10-17,2022-11-15,2022-12-14 12:09:24,Single transit at ~1729.54 TBJD found to be FA,1277,1,True,True,True -153949511,1277.02,,2,4,2,2,4,4,4,2.4,44.1,7.31,4,6,6,PC,PC,9.76775,0.006,,2,qlp-s48-ffi,SPOC,11:30:59.47,66:47:47.51,-50.76,0.034,-14.091,0.042,2459635.748796,0.002594,14.856058,8.16e-05,3.675,0.203,1.042807,0.000724,960.0,0.667242,2.61253,0.15188,40.1759,701.0,25.0,100.772,0.2265,5544.0,120.311,4.5609,0.0776004,0.86,0.04,,,0.976,0.122166,"14,15,21,47,48",2019-11-15,2022-06-28,2022-12-14 12:09:24,period updated to ~14.9 days with qlp-s48-ffi from previous period of ~37 days; possible additional TCE near ~1692 but also near momentum dump,1277,2,True,False,True -163539739,1278.01,,4,5,5,4,4,4,4,14.1,151.8,56.78,2,1,2,CP,CP,11.7819,0.007,,1,spoc-s14-s60-b0A-CP,SPOC,21:21:54.83,35:38:55.05,-89.556,0.035,-46.868,0.039,2459826.540249,0.0016755871,14.4751062310922,1.7885159e-05,1.61824838856528,0.09846702,10.493789,0.486191,9618.57985337733,447.69815,8.69761725570081,9.471797,6.54021745029495,407.866275032417,23.134491,75.5759,0.15495,3841.0,157.0,4.69364,0.00934387,0.55035001039505,0.0160576,,,0.545569,0.0200982,"15,55,56",2019-10-17,2023-06-13,2023-06-16 12:14:51,TOI-1278 b,1278,1,False,False,True -224297258,1279.01,,1,4,1,3,4,4,4,4.6,60.8,9.8,4,16,8,PC,PC,9.99454,0.006,,1,qlp-s49-tois,UNKNOWN,12:20:15.09,56:12:05.07,-130.485,0.038,60.603,0.034,2459659.673503,0.0018282,9.6142606,4.97e-05,2.86,0.768,1.292795,0.004618,1190.0,4.25367,3.09223,0.245228,104.51,890.0,16.0,107.055,0.285,5477.0,120.112,4.5707,0.0797127,0.84,0.04,,,0.959,0.1255,"15,21,22,41,48,49",2019-10-17,2022-08-19,2022-12-14 12:09:24,potential L1 candidate; some TCEs contaminated by scattered light,1279,1,False,False,True -230017324,1280.01,,2,4,2,2,4,4,4,4.3,57.1,10.36,6,3,4,PC,PC,10.6355,0.006,,1,qlp-s52-tois,SPOC,19:25:51.68,61:46:34.15,18.992,0.044,-23.14,0.043,2459757.491873,0.001225,9.692636,2.08e-05,2.773,0.198,1.999595,0.000645,1840.0,0.594197,3.21431,0.252417,28.0951,641.0,43.0,92.4381,0.1706,4665.0,128.1,4.56182,0.0958392,0.75,0.06,,,0.74,0.0884118,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,52",2019-10-17,2022-11-15,2022-12-14 12:09:24,two stars in pixel,1280,1,False,False,True -232971294,1281.01,,2,4,2,2,4,4,4,2.8,32.0,7.07,1,4,6,PC,PC,9.6635,0.007,,1,qlp-s47-ffi,UNKNOWN,13:17:46.23,71:43:15.78,-13.194,0.043,-12.668,0.035,2459597.187575,0.005103,6.3908823,5.13e-05,3.695,0.339,0.390935,0.000424,360.0,0.390871,2.54868,0.147148,379.279,1229.0,17.0,178.259,0.667,6191.0,127.462,4.27017,0.0829287,1.32,0.06,,,1.19,0.168726,"14,15,20,22,40,41,47",2019-10-17,2022-03-02,2022-12-14 12:09:24,,1281,1,False,False,True -236445129,1282.01,,5,5,5,5,5,5,5,139.0,147.8,317.0,0,5,0,KP,KP,11.4373,0.012,,1,spoc-s14-s55-b0A-KP,SPOC,20:57:04.45,31:39:39.67,5.581,0.035,2.409,0.04,2459445.892853,0.0003007,0.968992717542034,5.0251236e-07,2.54963090157357,0.015029644,14.793564,0.096765,13532.9710157306,89.12011,17.1331258180889,0.7765522,6992.03282301646,2332.22590084332,210.73773,444.586,5.5075,6430.0,139.015,4.25113,0.0892557,1.41398000717163,0.0637136,,,1.3,0.208018,"15,41,55",2019-10-17,2023-03-15,2023-03-24 12:12:10,KELT 16 b,1282,1,False,False,True -266593143,1283.01,,5,5,5,5,5,5,5,66.2,324.1,89.54,0,1,0,KP,KP,9.7525,0.006,,1,qlp-55-ffi,SPOC,21:38:08.63,30:29:17.48,-80.395,0.158,-126.972,0.148,2459836.036852,0.0001429,10.3385897,3.4e-06,3.912,0.029,19.732337,0.149937,18010.0,138.088,11.3892,0.533243,65.6836,793.0,326.0,92.3831,0.48265,5336.96,105.031,4.55466,0.0770342,0.84,0.04,0.0512329,0.0280899,0.92,0.116568,"15,55,56",2019-10-17,2022-11-09,2022-12-14 12:09:24,HAT-P-17 b,1283,1,False,False,True -267561446,1284.01,,5,5,5,5,5,5,5,8.5,53.8,7.09,2,0,0,PC,FP,12.5313,0.007,,1,spoc,SPOC,20:46:03.28,56:52:01.74,50.569,0.045,188.287,0.033,2458711.815604,0.0033457698,1.283251,0.00030643985,2.012261,0.3679059,2.131565,0.148548,1961.318203,136.80847,2.558112,0.8317096,172.025291271902,923.672098519679,11.733728,110.246,0.224,3855.0,157.0,4.68499,0.00984891,0.560391,0.0165845,,,0.554506,0.0202462,"15,16",2019-10-17,2019-10-17,2022-12-14 12:09:24,Potential L1 candidate; check 267561450,1284,1,False,False,True -274662200,1285.01,,5,5,5,5,5,5,5,11.3,84.1,4.15,1,0,0,PC,FP,10.9313,0.007,,1,spoc,SPOC,21:07:28.14,46:51:55.34,24.522,0.049,98.034,0.045,2458712.3664,0.0026089381,1.22843879165983,0.000257302,1.91901180477847,0.65036553,1.33573,0.140692,1229.49651247718,129.57385,1.86626299475715,1.8184054,118.280234591723,841.100311605962,11.960702,41.9934,0.04955,3526.0,157.0,4.71105,0.00888535,0.53023,0.015565,,,0.527126,0.0201622,"15,16",2019-10-17,2019-10-17,2022-12-14 12:09:24,TFOP FP,1285,1,False,False,True -277507814,1286.01,,5,5,5,5,2,5,5,25.0,99.9,24.6,7,19,2,PC,APC,10.1653,0.006,,1,qlp-s57-ffi,SPOC,20:43:48.87,59:34:35.86,4.308,0.045,5.852,0.043,2459837.613667,0.0007811,0.616694,8e-07,0.761,0.167,0.738552,0.086196,680.0,79.3864,5.32912,0.3187,3384.82,2124.0,35.0,278.771,1.735,6588.0,247.617,4.1855,0.0974791,1.57,0.07,,,1.372,0.253846,"15,16,17,55,56,57",2019-10-17,2022-12-13,2022-12-16 12:08:26,TFOP APC/RV0,1286,1,False,False,True -352764091,1287.01,,2,4,2,3,4,4,4,4.1,51.2,6.93,0,7,18,PC,PC,8.593,0.006,,1,spoc-s14s26-b0A,SPOC,20:34:59.43,63:28:29.78,33.773,0.059,-88.306,0.054,2459828.256927,0.0034528775,9.59728071567095,0.0001519135,5.04109519966352,0.3988508,0.459516,0.026817,423.140301759979,24.69869,2.52488729790907,0.8939897,193.230373514467,950.908211883559,17.482388,92.7225,0.23245,5891.0,124.622,4.30161,0.0816856,1.21037,0.0578543,,,1.07,0.140071,"15,16,17,18,24,48,55,56",2019-10-17,2022-12-07,2022-12-14 12:09:24,Centroid offset; check neighbors; very crowded. Some transits affected by momentum dumps and scattered light,1287,1,False,False,True -365733349,1288.01,,4,5,5,4,4,4,4,26.2,137.3,22.49,10,29,18,CP,CP,9.93119,0.006,,1,qlp-s56-ffi,SPOC,20:52:40.09,65:36:31.62,43.253,0.057,-68.614,0.056,2459851.686676,0.002232,2.6998316,4.8e-06,2.125,0.065,2.336846,0.090241,2150.0,83.1115,5.02677,0.275941,603.304,1380.0,73.0,114.865,0.3215,6180.0,362.01,4.57956,0.106778,0.92,0.05,,,1.181,0.199742,"15,16,17,18,24,56,57",2019-10-17,2022-12-13,2023-03-03 12:03:03,TOI-1288 b,1288,1,False,False,True -408203470,1289.01,,5,5,5,5,5,5,5,13.4,79.0,5.49,2,0,2,PC,FP,12.9984,0.007,,1,spoc,SPOC,20:28:50.63,33:24:50.25,-76.25,2.0,-117.93,2.0,2458711.410631,0.0021663792,0.581321957121083,9.82467e-05,1.32611770331108,0.5156573,3.487117,0.40266,3206.60100155666,370.79492,2.20148861235589,1.4735351,194.517815786072,952.488181491714,8.015348,89.21544,,3446.0,157.0,4.83941,0.00296261,0.38621,0.0118685,,,0.375832,0.0205222,15,2019-10-17,2019-10-17,2022-12-14 12:09:24,short period; possible stellar variability; possible centroid offset,1289,1,False,False,True -417676622,1290.01,,5,5,5,5,5,5,5,3.4,35.8,6.53,0,82,6,KP,KP,9.50898,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,19:24:07.75,49:02:24.77,-7.334,0.039,-10.43,0.048,2459817.147194,0.004301,5.39876079705815,1.6985252e-05,3.21796331537972,0.34293124,0.379773,0.024025,349.722436004931,22.127155,2.43818666666086,1.01639,447.31550800262,1172.93308956111,13.988014,144.166,0.435,5875.23,137.941,4.26474,0.0802204,1.25931000709534,0.0682412,0.12598,0.00399349,1.064,0.134549,"14,15,40,41,54,55",2019-10-17,2023-03-15,2023-03-24 12:12:10,Kepler-68 b,1290,1,False,False,True -198186769,1291.01,,3,4,3,3,4,4,4,4.2,24.6,22.58,0,3,4,PC,PC,10.8722,0.006,,1,qlp-s52-tois,QLP,16:23:16.32,62:55:30.44,-5.999,0.043,13.59,0.052,2459734.427241,0.0030353,7.16199,3.16e-05,7.668,0.348,0.868937,0.000185,800.0,0.170833,5.05452,0.244184,1230.42,1649.0,31.0,428.123,4.5455,6229.0,123.8,4.0,0.08,1.81,0.08,,,1.2,0.181195,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,59",2019-10-17,2023-03-16,2023-03-16 00:00:00,radius may be underestimated due to detrending,1291,1,False,False,True -199688472,1292.01,,5,5,5,5,5,5,5,682.8,1044.0,317.0,1,2,0,EB,FP,9.84566,0.006,,1,spoc-s14s23-b0A,QLP,16:52:33.68,57:58:26.94,3.224,0.246,33.814,0.301,2459768.890998,0.0001976,1.44119,2e-05,2.39597827403558,0.0058340286,13.590417,0.022969,12439.2222229771,21.155413,27.2377851452954,2.1190026,3347.40486413288,1939.97802399162,320.0,190.403,4.476,5672.9,168.9,4.13,0.08,1.46056,0.079598,,,1.038,0.130808,"14,15,16,17,18,19,20,21,22,23,25,26,40,41,47,48,49,50,51,52,53",2019-10-17,2022-08-22,2022-12-14 12:09:24,odd-even indicates likely FP; TFOP FP,1292,1,False,False,True -202504234,1293.01,,2,4,4,2,4,4,4,9.8,62.7,13.59,5,2,9,PC,PC,10.8605,0.006,,1,qlp-s50-tois,QLP,15:21:14.42,63:33:55.03,20.745,0.038,-37.786,0.052,2459689.485255,0.0012194,1.6849938,2.7e-06,0.916,0.174,1.075411,0.00188,990.0,1.73121,3.76716,0.241205,342.918,1198.0,25.0,239.983,1.52,5923.0,128.1,4.38,0.08,1.11,0.05,,,1.08,0.138624,"14,15,16,21,22,23,41,48,50",2019-10-17,2022-12-12,2022-12-16 12:08:26,multiple stars in pixel,1293,1,False,False,True -219015370,1294.01,,3,4,3,3,4,4,4,25.3,78.5,65.29,3,13,3,PC,PC,10.9458,0.007,,1,qlp-s49-tois,QLP,14:52:22.23,70:28:35.61,-19.069,0.047,-2.555,0.045,2459663.161776,0.000592,3.9152737,4e-06,2.562,0.118,3.643322,0.00058,3350.0,0.534017,9.43435,0.490566,311.498,1170.0,91.0,332.648,2.286,5714.0,126.4,4.05,0.08,1.58,0.08,,,1.02,0.130472,"14,15,16,20,21,22,40,41,47,48,49",2019-10-17,2022-07-13,2022-12-14 12:09:24,evolved host,1294,1,False,False,True -219852584,1295.01,,3,4,3,3,4,4,4,65.5,73.5,317.0,10,3,3,PC,PC,10.7973,0.007,,1,spoc-s14-s55-b0A-PC,QLP,17:06:41.33,67:52:17.41,-7.353,0.045,8.48,0.058,2459913.379043,0.00048649238,3.19688379720634,7.26853e-07,3.75336974536129,0.012103042,8.675925,0.024612,7958.98065603973,22.66786,14.9685778715543,0.6826442,1843.13299083382,1671.12492866693,363.3126,388.227,4.4475,6470.0,129.5,4.15,0.09,1.59714996814728,0.0727236,,,1.32,0.207623,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55",2019-10-17,2023-03-16,2023-03-24 12:12:10,likely hot Jupiter; cleared by SG2,1295,1,False,False,True -219854185,1296.01,,3,5,5,3,4,4,4,59.1,54.0,317.0,11,12,4,CP,CP,10.8041,0.006,,1,spoc-s14-s60-b0A-CP,QLP,17:07:04.95,70:14:18.53,-21.245,0.042,-6.793,0.046,2459766.962599,0.0002603,3.94436676121469,9.677898e-07,4.865214628506,0.016331166,7.334424,0.021966,6732.48845397836,20.23155,14.5727196030152,0.7854702,1078.59869876138,1461.62082636324,339.06192,323.265,2.821,5494.0,125.8,3.93,0.08,1.75475001335144,0.0942867,,,0.963,0.124632,"14,15,16,17,18,19,20,22,23,24,25,26,40,47,48,49,50,52,53,54,55,56,57,58,59,60",2019-10-17,2023-06-13,2023-06-16 12:14:51,TOI-1296 b / TOI-1296.01,1296,1,False,False,True -229536616,1297.01,,5,5,5,5,5,5,5,79.6,91.8,317.0,2,10,3,PC,FP,10.9873,0.014,,1,qlp,QLP,13:03:17.07,67:49:24.37,-13.9,1.9,5.9,2.1,2458686.93866,0.0005,3.93034,7e-05,3.667,0.052,10.610002,0.000632,9724.58,0.581995,14.8838,,815.91,,140.0,283.32,,6292.0,,,,1.37,,,,,,15,2019-10-17,2019-10-17,2022-12-14 12:09:24,TFOP FP,1297,1,False,False,True -237104103,1298.01,,3,5,5,3,4,4,4,26.5,84.7,69.72,7,12,4,CP,CP,10.9585,0.006,,1,spoc-s14-s60-b0A-CP,QLP,16:05:17.5,70:11:24.14,-36.41,0.035,43.934,0.035,2459764.419877,0.0004049,4.53713613061262,1.7956002e-06,4.0421550482811,0.028003458,4.569429,0.026092,4199.75587538028,24.031218,9.81535127815012,0.4877107,732.007704816315,1326.62648274056,169.72237,319.036,1.9895,5731.0,124.6,4.1,0.08,1.48668003082275,0.0724271,,,1.02,0.12403,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,59,60",2019-10-17,2023-06-13,2023-06-16 12:14:51,TOI-1298 b (Moutou+2021),1298,1,False,False,True -258777134,1299.01,,5,5,5,5,5,5,5,148.2,189.9,317.0,2,0,0,EB,FP,10.451,0.0,,1,qlp-s47-ffi,QLP,19:06:59.49,71:42:48.96,,,,,2459599.130762,0.0005592,5.929405,8.4e-06,3.719,0.398,17.964738,0.230343,16410.0,212.131,,,,,381.0,,,,,,,,,,,,,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47",2019-10-17,2022-02-07,2022-12-14 12:09:24,2 stars in the pixel; TFOP FP,1299,1,False,False,True -293687315,1300.01,,5,5,5,5,5,5,5,122.8,166.5,317.0,1,0,2,KP,KP,9.823,0.008,,1,qlp-s50-tois,QLP,14:26:05.72,59:26:39.38,-19.45,0.044,6.179,0.042,2459690.555487,0.0001782,2.8716968,9e-07,4.541,0.023,9.465329,4.3e-05,8680.0,0.039269,18.3265,0.756373,3310.78,2113.0,363.0,321.376,2.4895,6840.0,128.8,4.05,0.09,1.91,0.08,,,1.48,0.258165,"15,16,22,23,48,50",2019-10-17,2022-09-07,2022-12-14 12:09:24,KELT-18 b,1300,1,False,False,True -356867115,1301.01,,1,4,1,1,4,4,4,4.5,52.9,7.22,2,5,7,PC,PC,10.5216,0.006,,1,spoc-s14-s60-b0A-PC,QLP,18:23:27.01,71:34:54.29,-43.319,0.04,85.838,0.045,2459710.294209,0.0015701,6.09640744087736,5.6762365e-06,2.3632965070759,0.09108779,1.241151,0.034747,1142.48917449077,32.002934,2.58568530696171,0.29829618,69.8633505546635,737.364291430121,32.207333,90.8693,0.18925,4820.4,31.6,4.6,0.09,0.731698989868164,0.0479774,,,0.77,0.0878583,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,53,54,55,56,57,58,60",2019-10-17,2023-05-17,2023-06-16 12:14:51,L1 candidate; variable host,1301,1,True,False,True -356867115,1301.02,,1,5,5,1,4,4,4,,,16.86,2,5,7,PC,PC,10.5216,0.006,,2,spoc-s14-s50-b0A-PC,SPOC,18:23:27.01,71:34:54.29,-43.319,0.04,85.838,0.045,2458999.462385,0.00979401,0.0,0.0,8.05557091784835,0.5309882,2.329633,0.313424,2143.37122665314,288.6327,4.25825503960031,0.44333413,0.234706862591186,177.521597164491,7.658764,90.8693,0.18925,4820.4,31.6,4.6,0.09,0.731698989868164,0.0479774,,,0.77,0.0878583,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50",2022-11-16,2022-11-15,2022-12-14 12:09:24,single transit in potential multi,1301,2,True,True,True -441797803,1302.01,,3,4,3,3,3,4,4,54.3,70.9,317.0,9,5,2,PC,PC,10.6724,0.006,,1,qlp-s52-tois,QLP,17:37:30.95,73:15:40.3,-5.07,0.038,24.524,0.048,2459738.402777,0.0002165,5.6666168,1.8e-06,3.604,0.031,10.670766,0.000134,9780.0,0.123059,14.8589,0.622276,442.536,1277.0,333.0,339.455,2.765,6530.0,122.3,4.23,0.08,1.47,0.06,,,1.346,0.219691,"14,15,16,17,18,19,21,22,24,25,41,47,48,49,50,51,52",2019-10-17,2022-10-04,2022-12-14 12:09:24,TRES SG2 observations consistent with hot Jupiter,1302,1,False,False,True -185405474,1303.01,,5,5,5,5,5,5,5,127.7,156.9,317.0,1,2,0,PC,FP,9.87278,0.006,,1,qlp,QLP,20:06:52.24,45:29:57.22,6.48,0.044,7.159,0.04,2458684.13635,0.00222,1.56029,0.00012,2.751,0.095,1.836446,0.558829,1690.0,514.568,18.4825,5.76818,38412.5,3900.0,43.0,387.708,3.995,6897.0,143.0,3.89,0.09,2.29,0.09,,,1.5,0.260237,"14,15",2019-10-17,2020-05-20,2022-12-14 12:09:24,1-sigma centroid offset; possible secondary,1303,1,False,False,False -186000935,1304.01,,5,5,5,5,5,5,5,10.2,71.7,22.96,0,3,4,PC,FP,9.76577,0.006,,1,qlp-s41-tois,QLP,20:12:17.51,44:29:45.16,-40.227,0.036,-75.628,0.041,2459434.724903,0.0020295,8.8734854,4.31e-05,3.325,1.084,1.553714,0.007963,1430.0,7.33395,5.10094,0.41591,282.782,1142.0,28.0,156.338,0.539,5992.0,131.1,4.34,0.08,1.18,0.05,,,1.104,0.145704,"14,15,41",2019-10-17,2022-02-10,2022-12-14 12:09:24,centroid offset centered on another star,1304,1,False,False,True -232679662,1305.01,,5,5,5,5,5,5,5,188.8,593.2,317.0,0,0,2,PC,FP,10.3018,0.007,,1,qlp,QLP,18:49:53.89,55:15:59,0.76,0.181,-8.188,0.171,2458687.79935,0.00338,7.85021,0.00111,7.038,0.305,16.090033,0.020022,14710.2,18.4412,,,,,40.0,875.061,74.2245,,,,,,,,,,,"15,19",2019-10-17,2019-10-17,2022-12-14 12:09:24,TFOP FP; Might be on other star; possible secondary and odd-even,1305,1,False,False,True -233735068,1306.01,,5,5,5,5,5,5,5,87.7,117.0,317.0,0,2,3,EB,FP,10.0194,0.007,,1,qlp-s56-ffi,QLP,18:29:54.45,61:02:58.2,-3.507,0.064,8.286,0.054,2459852.045455,0.0003984,7.6869063,4.9e-06,4.652,0.146,4.896839,0.292144,4500.0,269.038,23.7824,,655.022,1409.0,218.0,364.477,3.2885,5147.3,155.8,,,3.07,,,,,,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56",2019-10-17,2022-11-07,2022-12-14 12:09:24,TFOP FP,1306,1,False,False,True -236815160,1307.01,,3,5,5,3,4,4,4,,,47.71,8,2,4,PC,APC,10.7967,0.006,,1,qlp-s52-tois,QLP,18:54:33,59:45:47.5,-0.2,3.9,29.6,4.1,2459764.134636,0.0002445,2.534612,9e-07,1.978,0.128,5.644495,0.035809,5185.28151631241,32.980328,,,336.934,1193.0,231.0,,,5009.6,67.6,,,,,,,,,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2019-10-17,2023-04-25,2023-04-28 12:12:06,Teff = 5000 + plx = 1.5 indicate subgiant or giant; no stellar parameters; 650 ppm secondary likely too deep to be consistent with planetary companion,1307,1,False,False,True -277014266,1308.01,,5,5,5,5,5,5,5,130.2,157.1,317.0,0,1,0,PC,FP,10.6168,0.006,,1,qlp-s41-tois,QLP,20:25:42.2,53:33:41.82,-11.176,0.05,-3.928,0.047,2459446.290468,0.0025542,1.3797091,6.2e-06,2.352,0.106,1.434119,0.502649,1320.0,462.85,22.2329,6.4039,28702.5,3626.0,43.0,543.011,7.554,5924.0,302.8,3.68,0.09,2.67,0.13,,,1.245,0.193191,"14,15,16,41",2019-10-17,2022-02-15,2022-12-14 12:09:24,centroid offset centered on another star; likely EB,1308,1,False,False,True -287190564,1309.01,,5,5,5,5,5,5,5,28.3,101.0,83.07,1,0,0,PC,FP,10.6229,0.011,,1,qlp,QLP,19:30:01.24,54:06:30.61,-1.508,0.058,-1.715,0.053,2458684.76284,0.00206,1.49861,0.00012,2.871,0.147,2.378857,0.061928,2188.61,57.0363,,,90202.8,4828.0,36.0,686.879,13.8835,8590.0,388.2,4.12,0.07,,,,,2.21,0.310945,15,2019-10-17,2019-10-17,2022-12-14 12:09:24,TFOP FP,1309,1,False,False,True -294179389,1310.01,,5,5,5,5,5,5,5,74.3,191.0,96.91,3,2,0,PC,FP,10.5742,0.006,,1,qlp,QLP,20:03:21.27,53:17:44.23,9.671,0.173,-14.426,0.128,2458685.4705,0.00043,2.6796,3e-05,2.771,0.056,8.272171,0.00038,7590.0,0.350176,11.8862,0.593028,823.434,1492.0,120.0,247.975,4.665,5938.0,140.8,4.23,0.08,1.32,0.07,,,1.084,0.145624,"14,15,16",2019-10-17,2020-05-20,2022-12-14 12:09:24,FP from TFOP; 2 stars in pixel; source of transits is TOI 1454.01; possible synchronization,1310,1,False,False,True -378159598,1311.01,,5,5,5,5,3,5,5,107.3,298.9,317.0,2,2,2,PC,APC,10.5819,0.008,,1,spoc-s14-s41-b0A-PC,QLP,19:38:53.46,41:33:54.56,5.862,0.049,6.005,0.046,2459392.644018,0.00056855776,6.14064169453538,0.00011029016,2.3525427896652,0.04233572,10.294946,0.174642,9437.1831552678,160.83826,26.5174686485461,6.229911,2040.10724756745,1714.08754503918,87.12355,556.813,8.3835,8298.0,276.1,4.19,0.08,1.87493002414703,0.0668316,,,1.99,0.30631,"15,40,41",2019-10-17,2022-02-10,2022-12-14 12:09:24,Very large for period; likely EB; small secondary; v-shaped; TFOPWG SB1/APC,1311,1,False,False,True -405904232,1312.01,,4,4,4,5,3,5,5,28.4,97.0,109.15,3,14,2,PC,PC,10.1098,0.006,,1,qlp-s56-ffi,QLP,20:06:15.03,52:09:51.05,7.431,0.041,11.922,0.044,2459840.185839,0.0005074,11.0765119,9.9e-06,4.692,0.14,4.78778,0.054362,4400.0,50.0679,12.8076,0.578892,189.348,1033.0,61.0,316.176,2.1845,6460.0,546.3,4.0,0.08,1.86,0.08,,,1.26,0.192838,"14,15,16,41,54,55,56",2019-10-17,2022-12-05,2022-12-16 12:08:26,potential brown dwarf,1312,1,False,False,True -11111899,1313.01,,5,5,5,5,5,5,5,48.2,175.6,46.81,2,1,0,PC,FP,9.6996,0.006,,1,qlp,QLP,20:15:17.96,36:39:06.5,5.7,1.3,0.9,1.3,2458684.28928,0.00249,0.61944,5e-05,1.582,0.175,1.690004,0.001935,1555.34,1.78212,6.24412,0.557919,18444.2,3246.0,33.0,303.313,,7812.5,329.0,,,1.44,0.12,,,,,15,2019-10-17,2019-10-17,2022-12-14 12:09:24,,1313,1,False,False,True -136848581,1314.01,,5,5,5,5,5,5,5,20.8,49.9,47.01,2,3,4,PC,FP,9.90482,0.006,,1,qlp,QLP,21:10:59.5,43:33:06.82,-7.239,0.046,-13.254,0.047,2458713.1408,0.00517,2.63999,0.00043,2.824,0.382,0.901535,0.001149,830.0,1.05871,7.79276,,632.614,1397.0,16.0,285.36,2.3665,5155.0,122.0,,,2.72,,,,,,"15,16",2019-10-17,2020-05-20,2022-12-14 12:09:24,Noisy evolved star; low SNR transit,1314,1,False,False,True -137284119,1315.01,,5,5,5,5,5,5,5,80.8,118.4,317.0,1,2,2,EB,FP,9.14819,0.006,,1,qlp,QLP,21:12:56.44,46:16:05.13,10.95,0.05,3.826,0.052,2459820.409101,0.0025115,2.5778717,2.37e-05,3.472,0.176,1.097148,0.157504,1010.0,145.056,18.687,4.23299,62241.5,4400.0,32.0,453.744,6.4355,8321.0,197.5,3.75,0.08,3.16,0.11,,,2.052,0.323077,"15,16,55",2019-10-17,2022-10-03,2022-12-14 12:09:24,TFOP FP; retired as NEB,1315,1,False,False,True -15565627,1316.01,,5,5,5,5,5,5,5,15.2,52.6,55.39,2,2,4,PC,FP,10.3332,0.021,,1,qlp,QLP,20:28:04,39:52:37.67,-5.507,0.044,-13.746,0.044,2458684.06072,0.00539,3.80509,0.00058,3.347,0.645,1.390633,0.002418,1280.0,2.2275,8.57193,0.655497,1214.11,1644.0,16.0,434.962,5.073,6555.5,142.0,3.83,0.1,2.35,0.15,0.067,0.012,1.36,0.23,"14,15",2019-10-17,2020-05-20,2022-12-14 12:09:24,Slight aperture depth correlation,1316,1,False,False,False -165523947,1317.01,,5,5,5,5,5,5,5,73.7,118.7,317.0,2,2,4,PC,FP,10.2918,0.016,,1,qlp,QLP,21:07:15.33,40:10:01.82,-0.481,0.039,-3.616,0.037,2458711.85776,0.00738,2.99041,0.00173,3.952,0.445,1.401504,0.655103,1290.0,603.19,24.2511,9.66611,54264.3,4252.0,11.0,697.116,12.704,8542.0,204.7,3.66,0.08,3.56,0.12,,,2.13,0.335611,15,2019-10-17,2020-05-20,2022-12-14 12:09:24,,1317,1,False,False,True -167092385,1318.01,,3,4,3,3,4,4,4,10.8,54.1,35.56,0,1,6,PC,PC,10.151,0.018,,1,qlp-s55-ffi,QLP,21:14:53.91,38:05:39.24,4.6,1.6,3.1,1.7,2459819.043694,0.0043281,4.9864441,2.97e-05,2.179,0.424,1.314536,0.003705,1210.0,3.41218,,,,,13.0,343.728,,,,,,,,,,,,"15,55",2019-10-17,2022-11-09,2022-12-14 12:09:24,no stellar parameters; likely F star host; equally bright star <1 arcsec away,1318,1,False,False,True -167098530,1319.01,,5,5,5,5,5,5,5,25.7,160.3,8.82,3,4,0,EB,FP,9.3213,0.006,,1,qlp-s55-ffi,QLP,21:14:30.51,40:01:01.26,51.963,0.043,77.173,0.047,2459823.85374,0.0013008,0.890967,1.7e-06,1.784,0.338,1.194967,0.002186,1100.0,2.01346,2.89678,0.213538,3225.32,2099.0,23.0,73.6326,0.1672,5159.2,91.4,4.5,0.08,0.87,0.05,,,0.88,0.105495,"15,55",2019-10-17,2022-10-03,2022-12-14 12:09:24,TFOP FP / NEB,1319,1,False,False,True -167403519,1320.01,,3,4,4,3,4,4,4,38.0,121.7,86.71,5,3,4,PC,PC,10.334,0.038,,1,qlp-s56-ffi,QLP,21:17:18,38:06:17.48,-4.5,1.6,-15.0,1.6,2459849.281408,0.0006947,3.9729661,5.7e-06,3.709,0.053,4.28625,0.096656,3940.0,89.0198,,,,,42.0,340.289,,,,,,,,,,,,"15,55,56",2019-10-17,2022-12-05,2022-12-16 12:08:26,no stellar parameters; likely F star host,1320,1,False,False,True -195199644,1321.01,,5,5,5,5,5,5,5,,,317.0,1,2,5,PC,FP,10.0849,0.015,,1,qlp,QLP,20:54:08.75,37:47:21.68,1.71,0.039,-0.348,0.049,2458712.25971,0.0023,1.19888,0.00025,1.558,0.206,1.270001,0.002043,1169.03,1.88168,20.5525,1.59543,3694.96,2172.0,17.0,1139.32,36.615,7315.0,243.8,,,5.46,0.36,,,,,15,2019-10-17,2019-10-17,2022-12-14 12:09:24,Large and slight depth-aperture correlation,1321,1,False,False,True -240450679,1322.01,,5,5,5,5,3,5,5,77.3,164.8,317.0,0,1,2,PC,APC,10.0819,0.01,,1,qlp,QLP,21:34:06.57,46:55:54.39,1.396,0.063,-3.34,0.066,2458711.44969,0.00104,3.37644,0.00031,1.437,0.263,6.305993,0.014758,5791.2,13.5921,,,1059.26,1589.0,33.0,713.725,18.6495,8639.7,475.7,3.96,0.07,,,,,2.54,0.336473,15,2019-10-17,2019-10-17,2022-12-14 12:09:24,TFOP FP,1322,1,False,False,False -256886630,1323.01,,5,5,5,5,5,5,5,18.5,99.0,33.93,0,1,4,EB,FP,8.26618,0.006,,1,qlp,QLP,21:57:32.42,41:26:58.23,8.026,0.049,-0.029,0.053,2458713.20059,0.00597,2.03905,0.00116,2.26,0.948,0.466967,0.011479,430.0,10.5726,6.42307,0.974662,26394.8,3550.0,11.0,301.421,3.148,9003.0,188.7,3.94,0.07,2.68,0.07,,,2.273,0.337582,"15,16",2019-10-17,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as NEB,1323,1,False,False,True -266688542,1324.01,,5,5,5,5,5,5,5,12.4,58.5,27.8,0,1,6,PC,FP,10.1894,0.008,,1,spoc-s56-b0A,QLP,21:24:05.71,46:23:04.82,-11.834,0.052,-15.942,0.05,2459827.236649,0.0025110273,2.94182701445777,0.0005284509,3.53580596060707,0.34997374,1.048627,0.090414,965.354495220424,83.27134,5.71481412055261,1.3338754,3006.93365026552,1888.64664227509,9.222927,339.736,3.9305,6854.0,347.9,4.1,0.1,1.78824996948242,0.074397,,,1.484,0.295157,"15,16,56",2019-10-17,2022-12-08,2023-05-24 12:02:58,centroid offset on TIC 266688547 in spoc s56,1324,1,False,False,True -274942910,1325.01,,5,5,5,5,5,5,5,17.6,115.2,5.66,1,1,0,PC,FP,9.9809,0.006,,1,qlp,QLP,21:31:42.38,41:47:50.87,172.202,0.042,108.043,0.047,2458711.99618,0.00483,1.07922,0.00042,2.393,0.239,1.02,0.00201,939.014,1.85104,2.27684,0.15601,1258.65,1659.0,15.0,52.4946,0.0719,4349.3,114.1,4.62,0.1,0.68,0.04,,,0.68,0.0847477,15,2019-10-17,2019-10-17,2022-12-14 12:09:24,Slight depth-aperture correlation but scatter also increased; potential L1 candidate,1325,1,False,False,False -275111900,1326.01,,5,5,5,5,5,5,5,,,317.0,0,2,2,PC,FP,8.6746,0.006,,1,qlp-s55-tois,QLP,21:32:49.64,39:04:19.91,-6.9,1.6,-8.4,1.7,2459823.091016,0.0002526,8.0428575,3e-06,9.504,0.071,20.528696,0.208939,18730.0,192.421,,,6718.53,2522.0,17.0,285.587,,8286.0,179.0,,,,,,,,,"15,16,55",2019-10-17,2022-12-07,2023-05-24 12:02:58,eccentric EB in qlp-s55-tois; previously released on secondaries,1326,1,False,False,True -312083267,1327.01,,3,5,5,3,4,4,4,39.5,50.0,317.0,1,2,4,PC,APC,8.38189,0.006,,1,qlp-s41-tois,QLP,20:13:10.85,36:43:31.75,0.684,0.059,-0.593,0.061,2459443.029938,0.001424,3.9392124,1.07e-05,1.849,0.178,1.521096,0.00108,1400.0,0.994377,14.6713,0.659508,967.265,1553.0,40.0,457.792,7.786,8715.0,408.0,3.55,0.08,4.12,0.13,,,2.185,0.330967,"14,15,41",2019-10-17,2022-02-15,2022-12-14 12:09:24,synchronized variability; large and v-shaped,1327,1,False,False,True -330332501,1328.01,,5,5,5,5,5,5,5,9.9,42.0,34.34,0,3,4,PC,FP,10.3599,0.03,,1,qlp-s55-tois,QLP,21:00:26.49,46:03:37.61,-8.94,0.052,-23.17,0.044,2459819.789519,0.0046357,4.0157492,2.09e-05,2.706,0.422,1.249315,0.103139,1150.0,94.9901,6.47219,0.464065,669.61,1417.0,15.0,397.905,4.9305,6585.0,233.8,3.94,0.09,2.07,0.09,,,1.37,0.236728,"15,16,55",2019-10-17,2022-12-07,2023-05-24 12:02:59,centroid offset to N in qlp-s55,1328,1,False,False,True -345996087,1329.01,,5,5,5,5,5,5,5,20.4,86.2,44.95,2,2,4,PC,FP,10.2835,0.006,,1,qlp,QLP,21:49:55.21,44:04:48.22,-8.622,0.045,-16.864,0.047,2458712.72322,0.00808,2.01976,0.00179,3.394,0.614,4.312248,0.560708,3963.85,516.298,7.3626,0.517527,5926.69,2444.0,12.0,398.627,4.673,7274.6,109.7,4.18,0.08,1.72,0.05,,,1.743,0.288543,15,2019-10-17,2019-10-17,2022-12-14 12:09:24,,1329,1,False,False,False -357457104,1330.01,,5,5,5,5,5,5,5,,,8.38,2,0,2,EB,FP,9.521,0.136,,1,qlp-s56-tois,QLP,21:02:09.82,45:46:32.67,,,,,2459852.148977,0.0031516,1.748054,6.1e-06,2.122,0.38,0.727687,0.048648,670.0,44.8055,,,,,18.0,,,,,,,,,,,,,"15,16,55,56",2019-10-17,2023-02-05,2023-02-09 12:10:04,No stellar radius; Likely giant based on color. Symbiotic binary from literature.,1330,1,False,False,True -387664866,1331.01,,5,5,5,5,5,5,5,31.6,78.1,93.37,0,2,1,PC,FP,9.08409,0.006,,1,qlp,QLP,21:34:11.67,50:28:53.2,0.224,0.052,-12.908,0.046,2458712.51758,0.00458,2.65646,0.00109,2.475,0.355,0.84,0.00275,773.369,2.53298,12.1711,0.791407,948.066,1545.0,11.0,402.661,4.927,6135.4,94.9,3.4,0.11,3.98,0.12,,,1.333,0.27907,15,2019-10-17,2019-10-17,2022-12-14 12:09:24,,1331,1,False,False,False -387664868,1332.01,,5,5,5,5,5,5,5,34.3,52.5,317.0,2,2,0,PC,FP,10.8823,0.013,,1,qlp,QLP,21:34:12.09,50:28:54.72,-1.68,0.051,3.077,0.047,2458712.51369,0.00498,2.65688,0.00121,2.615,0.342,2.130001,0.005606,1959.88,5.16302,,,,,10.0,645.841,12.841,,,,,,,,,1.57,,15,2019-10-17,2019-10-17,2022-12-14 12:09:24,,1332,1,False,False,False -395171208,1333.01,,3,5,5,3,4,4,4,108.8,134.5,317.0,10,17,5,CP,CP,9.03527,0.006,,1,qlp-s56-ffi,QLP,21:40:03.49,48:24:24.36,-9.81,0.05,-10.501,0.046,2459847.968306,0.0003886,4.7201912,2.3e-06,4.416,0.093,7.309842,0.066395,6710.0,61.15,15.2105,0.652801,1112.85,1609.0,162.0,200.492,1.195,6696.0,240.6,4.08,0.09,1.8,0.08,,,1.42,0.261268,"15,16,56",2019-10-17,2022-12-05,2022-12-16 12:08:26,TOI 1333 b,1333,1,False,False,False -42123111,1334.01,,5,5,5,5,5,5,5,,,317.0,0,3,4,PC,FP,9.5526,0.017,,1,qlp,QLP,20:08:52.82,38:14:42.8,0.381,0.055,-1.826,0.066,2458686.4671,0.00263,4.03349,0.00044,2.684,0.277,1.662448,0.001646,1530.0,1.51615,23.4514,,5512.68,2400.0,15.0,1276.26,57.545,11348.0,127.0,,,6.37,,,,,,"14,15",2019-10-17,2020-05-20,2022-12-14 12:09:24,,1334,1,False,False,True -89759617,1335.01,,5,5,5,5,5,5,5,35.6,44.0,317.0,1,1,4,EB,FP,10.4806,0.02,,1,qlp,QLP,20:06:15.52,35:35:18.22,1.452,0.089,-2.185,0.098,2459817.659426,0.0019694,3.3295394,1.16e-05,2.77,0.4,2.848362,0.00616,2620.0,5.67339,14.3988,0.921482,2238.0,1916.0,29.0,624.639,21.972,7965.0,194.3,3.98,0.08,2.35,0.11,,,1.92,0.304229,"14,15,41,54,55",2019-10-17,2022-10-03,2022-12-14 12:09:24,TFOP FP; retired as NEB,1335,1,False,False,True -92783821,1336.01,,5,5,5,5,5,5,5,34.7,97.9,125.25,0,3,4,PC,FP,10.2115,0.017,,1,qlp,QLP,20:12:04.16,35:31:28.66,-11.969,0.047,-8.381,0.049,2459442.068334,0.002196,3.8615978,1.59e-05,1.678,0.371,1.108016,0.208784,1020.0,192.279,13.8394,3.77713,2320.32,1933.0,14.0,524.29,8.182,7396.0,174.0,3.89,0.08,2.45,0.09,,,1.69,0.278006,"14,15,41",2019-10-17,2021-11-23,2022-12-14 12:09:24,likely eccentric EB; 1000ppm secondary;,1336,1,False,False,True -160708862,1337.01,,3,5,5,3,5,4,5,125.8,269.1,317.0,0,1,3,PC,KP,9.8787,0.006,,1,qlp-s38-tois,QLP,15:09:04.88,-42:42:17.88,-10.011,0.123,-5.653,0.097,2459358.767146,0.0003877,3.3448404,3.6e-06,3.322,0.104,14.537179,0.001269,13300.0,1.16841,20.8091,0.807,4587.45,2292.0,148.0,427.678,11.068,9364.0,179.1,4.32,0.07,1.76,0.07,,,2.38,0.325231,"11,38",2019-10-29,2022-10-04,2022-12-14 12:09:24,KELT-26 b; (Rodriguez Martinez et al; arxiv:1912.01017.pdf); WASP-178 b,1337,1,False,False,True -260128333,1338.01,,3,5,5,3,4,4,4,1.3,18.3,47.69,0,1,3,CP,CP,11.4881,0.006,,1,spoc-s01-s39-b0A-CP,SPOC,06:08:31.94,-59:32:27.55,-12.258,0.037,34.405,0.041,2458579.042507,0.0051024016,95.2,0.0,11.6316864122452,0.4795903,2.826657,0.230598,2600.06160504333,212.36592,7.84988907968414,0.7399995,0.993831621754979,254.652504801893,11.846099,399.017,3.1375,5723.2,57.0,3.6,0.08,1.51811003684998,0.0699799,-0.4,0.09,1.02,0.122643,"4,5,6,7,8,9,10,11,12,27,28,29,30,31,32,34,35,36,37,38,39",2019-10-29,2022-04-20,2022-12-14 12:09:24,period confirmed 95.2 days (Veselin B. Kostov et al 2020); TOI-1338 b; circumbinary planet,1338,1,False,False,True -269701147,1339.01,,1,5,5,1,4,4,4,11.2,130.3,10.72,7,31,6,CP,CP,8.2929,0.006,,1,qlp-s60-ffi,SPOC/QLP,20:08:06.15,66:51:01.08,150.256,0.044,-63.909,0.047,2459958.600433,0.0003903,8.8803059,4.3e-06,2.773,0.045,1.355845,0.015517,1248.0,14.2917,3.26045,0.16558,58.6203,770.0,72.0,53.6089,0.0732,5555.7,313.7,4.49,0.08,0.92,0.05,,,0.95,0.119246,"15,16,17,18,19,21,22,24,25,41,48,49,51,52,55,56,59,60",2019-10-30,2023-02-27,2023-03-03 12:11:24,HD 191939 b / TOI 1339.01,1339,1,True,False,True -269701147,1339.02,,1,5,5,1,4,4,4,2.4,63.4,7.1,7,31,6,CP,CP,8.2929,0.006,,2,qlp-s60-ffi,SPOC,20:08:06.15,66:51:01.08,150.256,0.044,-63.909,0.047,2459926.412481,0.0015868,28.5800894,9.63e-05,4.038,0.28,0.977603,0.024053,900.0,22.1538,2.55979,0.13622,12.8234,527.0,37.0,53.6089,0.0732,5555.7,313.7,4.49,0.08,0.92,0.05,,,0.95,0.119246,"15,16,17,18,19,21,22,24,25,41,48,49,51,52,55,56,59,60",2019-10-30,2023-02-27,2023-03-03 12:11:24,HD 191939 c / TOI 1339.02,1339,2,True,False,True -269701147,1339.03,,1,4,1,2,4,4,4,1.9,59.2,7.37,7,31,6,CP,CP,8.2929,0.006,,3,qlp-s60-ffi,SPOC,20:08:06.15,66:51:01.08,150.256,0.044,-63.909,0.047,2459894.122244,0.0016494,38.3522501,9.55e-05,5.317,1.191,0.926528,0.043604,853.0,40.1597,2.6167,0.153369,25.3934,625.0,38.0,53.6089,0.0732,5555.7,313.7,4.49,0.08,0.92,0.05,,,0.95,0.119246,"15,16,17,18,19,21,22,24,25,41,48,49,51,52,55,56,59,60",2019-11-15,2023-02-27,2023-04-06 00:00:00,HD 191939 d,1339,3,True,False,True -233681149,1340.01,,5,5,5,5,5,5,5,8.6,62.6,25.04,0,1,0,PC,FP,10.8037,0.006,,1,spoc,SPOC/QLP,17:21:27.55,65:00:44.21,-16.36,0.055,94.627,0.062,2458683.689629,0.0050492533,8.58746679748599,0.004981359,5.14589018606087,0.3955153,2.070097,0.369993,1904.8131483768,340.71796,5.37447210340339,0.9241127,152.04294978324,895.594300828721,10.186884,208.687,1.072,5929.0,124.812,4.48275,0.0787278,0.987583,0.0471407,,,1.081,0.143386,"14,15,16,17,18",2019-10-30,2020-05-05,2022-12-14 12:09:24,Centroid offset centered on 233681148; very likely EB; TFOP FP,1340,1,False,False,True -233390838,1341.01,,5,5,5,5,5,5,5,779.9,3296.8,317.0,0,0,0,EB,FP,9.53591,0.006,,1,qlp-s57-ffi,QLP,20:06:14.22,59:29:26.77,-3.228,0.056,-21.612,0.065,2459820.572994,0.0009098,6.4474918,4.9e-06,2.643,0.27,10.111715,6.202132,9270.0,5696.09,48.9878,2.86097,720.601,1443.0,231.0,236.568,1.558,6477.6,101.6,4.13,0.09,1.69,0.07,,,1.407,0.243717,"14,15,16,17,41,55,57",2019-10-30,2022-12-05,2022-12-16 12:08:26,significant secondary in spoc-s14-s41 multisector (849 ppm); retired as EB,1341,1,False,False,True -256621916,1342.01,,5,5,5,5,5,5,5,,,119.24,1,2,4,PC,FP,10.4243,0.007,,1,qlp,QLP,20:01:57.21,60:14:46.92,8.4,2.3,-16.6,2.2,2458684.47562,0.00112,1.41354,6e-05,1.213,0.293,16.664629,0.699141,15231.5,643.725,,,5133.26,2358.0,72.0,,,5869.0,253.3,,,,,,,,,"15,16",2019-10-30,2019-10-30,2022-12-14 12:09:24,TFOP FP,1342,1,False,False,True -358631536,1343.01,,5,5,5,5,5,5,5,5.1,42.1,15.58,0,1,4,PC,FP,10.0062,0.006,,1,qlp,QLP,21:10:18.11,48:27:51.42,3.666,0.28,-1.221,0.135,2458714.78744,0.00978,3.40304,0.00101,5.03,1.443,0.532141,0.006895,490.0,6.35029,4.06282,0.653818,67721.9,4494.0,12.0,400.034,10.639,9622.0,756.2,4.39,0.15,1.65,0.19,,,2.452,0.409721,"15,16",2019-10-30,2020-05-20,2022-12-14 12:09:24,Some depth-aperture correlation; crowded field,1343,1,False,False,True -1400770435,1344.01,,5,5,5,5,5,5,5,64.4,260.3,110.83,0,0,0,EB,FP,8.88797,0.006,,1,qlp-s51-ffi,QLP,17:39:50.77,56:04:44.31,-4.979,0.038,13.371,0.041,2459703.333022,0.000209,13.7431768,4.4e-06,2.337,0.079,5.529597,0.025403,5080.0,23.3964,13.1594,1.02434,90.496,859.0,243.0,121.182,0.27,5941.5,161.9,4.23,0.08,1.37,0.07,,,,,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51",2019-10-30,2022-06-06,2022-12-14 12:09:24,TICv8 JOIN; refer to TOI 1140.01 (TIC 320525204); v-shaped,1344,1,False,False,True -160487753,1345.01,,3,4,3,3,3,4,4,17.9,14.5,317.0,0,3,2,PC,PC,10.8049,0.007,,1,qlp,QLP,15:52:07.63,74:24:24.27,0.719,0.036,11.14,0.035,2458715.45948,0.01811,8.47134,0.00488,6.989,1.941,0.586456,0.201769,540.0,185.819,16.9325,,3465.35,2137.0,9.0,788.93,11.542,5146.0,122.0,,,4.88,,,,,,"15,16,19",2019-10-30,2020-05-20,2022-12-14 12:09:24,Marginal,1345,1,False,False,True -219852882,1346.01,,2,4,2,2,4,4,4,4.4,48.4,7.8,9,7,9,PC,PC,10.7261,0.006,,1,spoc-s14-s55-b0A-PC,QLP,17:06:29.44,68:50:35.89,-20.12,0.04,89.886,0.043,2459766.224945,0.0023013,5.50255772450521,1.5220237e-05,3.17110076667725,0.14562029,0.917511,0.051222,844.7022675774,47.17633,2.70497972395814,0.20770392,102.664400775252,811.847988032722,16.889906,115.45,0.322,4965.0,124.0,4.56,0.09,0.784108996391296,0.0494724,,,0.819,0.096527,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54",2019-10-30,2023-03-14,2023-03-24 12:12:10,potential multi,1346,1,True,False,True -219852882,1346.02,,2,4,2,2,4,4,4,8.3,64.6,6.93,9,7,9,PC,PC,10.7261,0.006,,2,spoc-s14-s55-b0A-PC,SPOC,17:06:29.44,68:50:35.89,-20.12,0.04,89.886,0.043,2459741.887113,0.0015195,1.76225372590622,4.6134805e-06,0.877971078587436,0.09457917,0.79674,0.047961,733.555082176944,44.17279,2.52358178713497,0.28278598,468.541542493689,1186.6066429484,14.216063,115.45,0.322,4965.0,124.0,4.56,0.09,0.784108996391296,0.0494724,,,0.819,0.096527,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54",2020-02-21,2023-03-14,2023-03-24 12:12:10,Candidate interior to TOI 1346.01 (5.5d),1346,2,True,False,True -229747848,1347.01,,2,4,2,2,4,4,4,4.9,45.9,3.73,6,13,3,PC,PC,10.7157,0.007,,1,spoc-s14-s60-b0A-PC,QLP,18:41:18.4,70:17:24.19,-6.335,0.11,26.221,0.078,2459664.026959,0.0007359,0.847421801745099,4.784683e-06,0.875876445310838,0.115039274,0.460877,0.031627,424.393284831207,29.129574,1.75365438158192,1.371646,1876.13154887077,1678.55498136637,24.57215,147.476,1.0425,5300.0,143.2,4.56,0.08,0.846387028694153,0.0434397,,,0.945,0.120799,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,55,56,57,58,59,60",2019-10-30,2023-05-19,2023-06-16 12:14:51,potential multi,1347,1,True,False,True -229747848,1347.02,,2,4,4,2,4,4,4,1.5,23.1,3.25,6,13,3,PC,PC,10.7157,0.007,,2,spoc-s14-s60-b0A-PC,SPOC,18:41:18.4,70:17:24.19,-6.335,0.11,26.221,0.078,2459656.582609,0.0076054,4.84204381617427,1.6740332e-05,2.41056484817336,0.29696023,0.34604,0.033708,318.663839224601,31.045536,1.61774045380717,0.6245401,183.66419954783,938.91413481794,8.874897,147.476,1.0425,5300.0,143.2,4.56,0.08,0.846387028694153,0.0434397,,,0.945,0.120799,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,55,56,57,58,59,60",2020-07-16,2023-05-19,2023-06-16 12:14:51,potential L1 candidate in multi-planet system; low SNR,1347,2,True,False,True -229770036,1348.01,,5,5,5,5,5,5,5,4.4,36.6,4.42,0,1,0,PC,FP,10.6666,0.006,,1,qlp,QLP,18:48:41.61,70:50:24.69,-63.053,0.074,114.601,0.093,2458684.50173,0.00575,2.14056,0.00023,2.029,0.369,0.386408,0.037684,355.831580346638,34.70787,1.83828,0.167472,316.156,1174.0,12.0,101.713,0.5015,4567.0,143.3,4.39,0.1,0.84,0.05,,,0.706,0.0838938,16,2019-10-30,2019-10-30,2022-12-14 12:09:24,Low SNR; potential level 1 candidate; TFOP FP,1348,1,False,False,True -272635712,1349.01,,5,5,5,5,4,5,5,2.7,35.1,8.02,0,3,4,PC,APC,9.34822,0.006,,1,qlp-s16-ffi_s,QLP,15:24:38.91,67:27:53.1,23.918,0.127,-46.859,0.131,2458693.57405,0.00871,12.71672,0.00223,2.529,0.466,0.421484,0.001742,388.126,1.60411,2.7546,0.37246,34.1387,673.0,9.0,130.242,1.246,5711.1,365.0,4.24,0.07,1.27,0.15,,,1.028,0.124952,16,2019-10-30,2021-12-07,2022-12-14 12:09:24,Low SNR; potential level 1 candidate; TFOP APC previously retired as SB2,1349,1,False,False,True -233953967,1350.01,,3,4,3,4,4,4,4,34.1,37.0,317.0,0,2,3,PC,PC,10.3589,0.006,,1,qlp-s56-tois,QLP,20:21:34.84,56:27:45.56,5.775,0.041,6.967,0.041,2459851.288394,0.0026763,5.5402372,3.34e-05,7.713,0.605,2.946339,0.099454,2710.0,91.5963,17.4013,0.874591,2282.41,1925.0,34.0,598.635,7.655,6415.0,152.8,3.49,0.09,3.39,0.15,,,1.291,0.208573,"14,15,16,41,55,56",2019-10-30,2023-02-06,2023-02-09 12:10:04,star is a pulsator,1350,1,False,False,True -1718201850,1351.01,,5,5,5,5,1,5,5,58.5,216.0,94.3,0,0,0,PC,APC,10.3267,0.02,,1,qlp-s59-ffi,QLP,19:06:59.17,71:42:43.9,-42.869,1.094,2.803,1.441,2459931.177771,0.0001328,5.9294091,1.2e-06,2.984,0.103,16.054551,0.228914,14678.0,210.815,,,,,399.0,125.308,16.6305,,,,,,,,,,,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,53,54,55,56,57,58,59",2019-10-30,2023-02-09,2023-02-25 12:10:55,variable star; unknown stellar radius; likely too large to be PC and secondary is too large to be PC; TFOP APC/SB1,1351,1,False,False,True -336740528,1352.01,,5,5,5,5,2,5,5,48.4,50.8,317.0,0,5,2,PC,APC,10.4209,0.006,,1,qlp,QLP,22:18:57.25,61:08:56.36,14.02,1.44,12.843,1.483,2458740.6261,0.00133,5.29625,0.00054,3.07,0.134,5.16,0.002171,4741.26,1.99973,14.6325,2.04104,360.497,1213.0,57.0,315.0431,,5958.7,484.3,,,1.93,0.29,,,,,"16,17",2019-10-30,2019-10-30,2022-12-14 12:09:24,,1352,1,False,False,False -279177746,1353.01,,3,4,3,3,4,4,4,16.3,77.6,56.81,2,2,6,PC,PC,10.1503,0.075,,1,qlp-s56-ffi,QLP,20:55:32.44,46:30:07.51,-0.511,0.062,3.17,0.055,2459850.822161,0.0015707,4.4350026,1.03e-05,1.888,0.656,1.271055,0.234242,1170.0,215.722,8.69525,0.846701,2060.1,1876.0,14.0,464.209,8.1325,9706.0,667.9,4.29,0.12,1.87,0.14,,,2.48,0.387116,"15,16,55,56",2019-10-30,2022-11-15,2022-12-14 12:09:24,centroid offset to N,1353,1,False,False,True -365683032,1354.01,,5,5,5,5,5,5,5,68.9,493.8,38.85,0,1,2,EB,FP,8.78822,0.01,,1,qlp,QLP,20:48:43.19,51:54:38.51,6.909,0.081,3.48,0.073,2458716.30091,0.01164,1.42904,0.00048,3.291,0.452,1.314536,0.174037,1210.0,160.281,6.96344,,164126.0,5607.0,10.0,245.776,2.9185,9224.0,163.0,4.37,,1.65,,,,2.338,,"15,16",2019-10-30,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as NEB,1354,1,False,False,False -372264750,1355.01,,3,4,4,3,3,4,4,137.9,204.4,317.0,5,43,2,PC,PC,8.65269,0.006,,1,spoc-s14-s60-b0A-PC,QLP,22:05:13.83,66:46:31.07,15.593,0.049,7.409,0.056,2459853.582179,0.00021745985,2.17027250858943,1.4386629e-05,2.14178532478465,0.010588246,5.613382,0.033834,5156.7735358688,31.161726,15.2590586365742,0.55680114,11706.9549101345,2652.96020783211,186.95218,248.148,1.6655,9218.0,636.1,4.27,0.09,1.85274994373322,0.0672563,,,2.336,0.387125,"16,17,18,24,57,58",2019-10-30,2023-05-19,2023-06-16 12:14:51,likely eccentric EB (https://ui.adsabs.harvard.edu/abs/2021A%26A...652A.120I/abstract),1355,1,False,False,False -277566483,1356.01,,3,4,3,3,4,4,4,,,74.81,1,0,4,PC,PC,8.9468,0.044,,1,qlp-s57-tois,QLP,20:44:46.7,54:30:07.78,-3.497,0.21,-5.428,0.164,2459849.242233,0.0003972,24.2544697,1.78e-05,17.486,0.221,9.598957,0.032526,8802.0,29.9571,,,1556.33,1749.0,202.0,4772.59,1787.66,8381.3,409.2,,,,,,,,,"15,16,55,56,57",2019-10-30,2023-05-18,2023-06-16 12:14:51,no stellar radius; distant B8 host star; likely too large to be a planetary companion,1356,1,False,False,True -357972447,1357.01,,5,5,5,5,5,5,5,9.2,63.3,7.42,2,3,6,PC,FP,10.2193,0.006,,1,qlp,QLP,21:07:49.39,50:30:03.18,-16.389,0.064,-11.604,0.066,2458715.16964,0.0043,0.33759,5e-05,1.32,0.189,0.412658,0.000873,380.0,0.804295,2.62231,0.167743,35657.2,3828.0,13.0,254.401,2.292,7387.0,515.6,4.39,0.1,1.37,0.05,,,1.683,0.309446,"15,16",2019-10-30,2020-05-20,2022-12-14 12:09:24,Very likely EB,1357,1,False,False,True -275501623,1358.01,,5,5,5,5,5,5,5,11.1,77.5,22.95,0,1,2,EB,FP,8.63701,0.006,,1,qlp,QLP,21:20:27.87,61:07:12.9,5.307,0.103,3.776,0.087,2458739.59911,0.00213,1.67346,2e-05,2.54,0.181,0.42352,0.000385,390.0,0.354149,5.10182,,19786.3,3304.0,25.0,356.681,5.825,10445.0,124.0,4.09,,2.45,,,,2.695,,"16,17,24",2019-10-30,2021-04-26,2022-12-14 12:09:24,TFOP FP; retired as EB,1358,1,False,False,False -416624606,1359.01,,5,5,5,5,5,5,5,60.9,126.3,118.5,1,2,2,EB,FP,10.2732,0.024,,1,qlp-s55-ffi,QLP,20:40:09.13,50:19:25.47,3.547,0.057,-39.384,0.049,2459821.804188,0.0013119,2.5152549,4.4e-06,2.386,0.193,2.032227,0.141642,1870.0,130.449,13.4294,2.72798,4740.94,2311.0,48.0,335.203,3.774,5915.0,191.0,3.82,0.09,2.11,0.1,,,1.08,0.15545,"15,16,41,55",2019-10-30,2022-10-03,2022-12-14 12:09:24,TFOP FP; retired as EB,1359,1,False,False,True -330468175,1360.01,,5,5,5,5,5,5,5,10.5,54.9,23.56,5,1,5,PC,FP,10.0146,0.021,,1,qlp,QLP,21:00:39.89,47:47:09.57,2.27,0.051,0.104,0.053,2458739.28,0.0077,0.70902,0.00036,2.49,0.287,0.619046,0.001297,570.0,1.19453,5.18865,0.325913,65312.0,4453.0,19.0,533.615,8.445,8999.0,297.4,4.05,0.07,2.36,0.07,,,2.27,0.32272,"15,16",2019-10-30,2020-05-20,2022-12-14 12:09:24,Raw light curve aperture 2 and 3 look like they have different depths. Possible depth/aperture correlation and EB.,1360,1,False,False,True -277447970,1361.01,,3,4,3,3,4,4,4,58.5,171.9,99.8,8,5,2,PC,PC,10.2202,0.006,,1,spoc-s14-s60-b0A-PC,QLP,21:23:19.08,52:48:52.92,1.433,0.048,-8.256,0.045,2459834.553052,0.0009833,2.23740513691552,2.9407496e-05,3.43712712737483,0.031249614,5.275013,0.086759,4846.68293462609,79.90452,12.1197509852157,0.5023214,4061.59793552902,2036.07598702,48.692356,339.994,3.1195,7050.0,166.7,4.19,0.09,1.66349995136261,0.0661658,,,1.558,0.270324,"15,16,56,57",2019-10-30,2023-05-19,2023-06-16 12:14:51,rapidly rotating variable host star; multiple stars in pixel,1361,1,False,False,False -395142888,1362.01,,3,4,3,3,3,4,4,,,317.0,1,1,4,PC,PC,9.7736,0.032,,1,qlp-s57-tois,QLP,22:21:12.2,59:33:38.93,-1.229,0.065,-1.765,0.063,2459878.416822,0.0020314,1.917366,6.1e-06,1.436,0.845,0.702699,0.119301,647.0,109.874,19.7712,,5127.51,2357.0,15.0,975.533,39.1355,8129.0,122.0,,,7.39,,,,,,"16,17,24,57",2019-10-30,2023-05-01,2023-05-01 00:00:00,Variable star; crowded field; v-shaped,1362,1,False,False,False -230017325,1363.01,,5,5,5,5,5,5,5,15.7,37.3,121.27,0,3,4,O,FP,10.3843,0.007,,1,qlp-s49-ffi,QLP,19:25:52.59,61:46:33.85,-6.849,0.06,-8.871,0.046,2459660.567695,0.0017445,9.6926628,2.83e-05,2.816,0.621,1.36889,0.001212,1260.0,1.11591,13.6064,0.785019,162.451,994.0,33.0,615.12,10.067,6012.0,128.6,3.39,0.08,3.51,0.17,,,1.11,0.154299,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49",2019-10-30,2022-04-11,2022-12-14 12:09:24,TFOP FP; retired as NPC; signal on 230017324.01 (TOI-1280.01),1363,1,False,False,True -26880783,1364.01,,3,4,3,3,4,4,4,21.8,89.8,67.01,0,1,4,PC,PC,9.2118,0.007,,1,qlp-s56-tois,QLP,19:33:46.46,53:27:52.3,-3.099,0.07,-7.254,0.072,2459851.84551,0.0004722,1.7753641,1.8e-06,2.026,0.114,0.890669,0.022105,820.0,20.3591,9.60123,0.332382,7764.48,2615.0,55.0,595.288,12.256,9598.0,143.1,3.81,0.06,3.23,0.1,,,2.45,0.324978,"16,40,54,55,56",2019-10-30,2023-02-05,2023-02-09 12:10:04,two stars in pixel; close neighbor TIC 1883302922,1364,1,False,False,True -367099243,1365.01,,5,5,5,5,5,5,5,301.6,463.1,317.0,2,2,0,PC,FP,10.4849,0.006,,1,qlp,QLP,21:10:55,72:36:55.28,-25.691,0.047,-13.894,0.045,2458739.49847,0.00101,1.8286,0.00015,3.464,0.065,28.447784,1.402145,25861.1,1290.59,22.8859,5.28396,13385.3,2996.0,108.0,244.318,1.586,6046.3,179.4,4.43,0.11,1.29,0.08,,,1.484,0.320987,"16,17,18,19",2019-10-30,2019-10-30,2022-12-14 12:09:24,V-shaped; depth-aperture correlation; TFOP FP,1365,1,False,False,True -120602501,1366.01,,5,5,5,5,4,5,5,314.9,887.9,317.0,0,2,4,PC,APC,8.48216,0.006,,1,spoc-s56-b0A,SPOC/QLP,22:30:44.84,40:00:13.55,64.486,0.036,-47.157,0.047,2459830.772785,0.00039286475,14.8622023380242,0.0005411489,3.68670612611687,0.034662228,12.107034,0.096091,11089.0487418368,88.49961,29.6987311869876,5.7474203,202.618589996682,962.253660290361,95.51404,118.59,0.437,5705.0,185.1,3.97,0.07,1.73363995552063,0.0842312,,,1.02,0.127522,"16,56",2019-10-30,2022-12-05,2022-12-16 12:08:26,clear eccentric EB,1366,1,False,False,True -129539786,1367.01,,5,5,5,5,5,5,5,20.4,93.3,25.38,1,1,4,EB,FP,9.24102,0.006,,1,qlp-s56-ffi,QLP,22:55:48.87,39:38:42.42,-55.543,0.038,-28.177,0.038,2459850.248203,0.0019066,2.0881134,7e-06,2.307,0.54,0.792877,0.096709,730.0,89.0682,5.41738,0.375371,8383.12,2665.0,28.0,195.858,1.1855,6255.8,330.7,4.11,0.09,1.7,0.08,,,1.355,0.228951,"16,56",2019-10-30,2022-11-07,2022-12-14 12:09:24,TFOP FP; retired as NEB,1367,1,False,False,False -136971594,1368.01,,5,5,5,5,5,5,5,9.5,59.4,9.06,2,4,5,PC,FP,9.1384,0.006,,1,qlp,QLP,21:11:51.87,43:35:34.26,-96.263,0.046,-2.55,0.051,2458711.81369,0.00474,1.25562,0.00024,2.304,0.293,0.314909,0.000802,290.0,0.738273,2.95064,0.21712,2790.4,2024.0,10.0,158.181,0.7595,5717.0,132.4,3.97,0.07,1.72,0.08,,,1.02,0.122812,"15,16",2019-10-30,2020-05-20,2022-12-14 12:09:24,Low SNR; some depth-aperture correlation,1368,1,False,False,True -155005217,1369.01,,5,5,5,5,5,5,5,5.5,39.8,31.51,1,2,5,PC,FP,10.4216,0.01,,1,qlp-s56-ffi,QLP,23:00:58.52,42:32:57.54,-1.704,0.095,0.007,0.099,2459867.206961,0.0015706,7.6047417,0.0003056,5.23,0.542,1.303666,0.071122,1200.0,65.5037,6.14418,0.369492,2393.29,1948.0,24.0,516.299,21.2785,9139.0,167.7,4.29,0.08,1.8,0.09,,,2.31,0.340576,"16,56,57",2019-10-30,2022-12-13,2023-05-24 12:02:54,clear primary/secondary eclipses,1369,1,False,False,False -155114483,1370.01,,5,5,5,5,5,5,5,43.5,184.5,88.19,4,1,4,EB,FP,9.25068,0.006,,1,qlp-s57-ffi,QLP,23:02:59.63,44:33:53.45,12.325,0.044,-9.1,0.045,2459877.368408,0.0005164,5.2651271,4.6e-06,2.463,0.261,3.752266,0.180737,3450.0,166.451,11.2446,0.411863,2619.14,1993.0,93.0,275.493,2.3225,8728.0,161.6,4.32,0.07,1.7,0.05,,,2.189,0.329227,"16,17,57",2019-10-30,2022-12-05,2022-12-16 12:08:26,Possible secondary; two stars in pixel; >3 sigma centroid offset,1370,1,False,False,True -162130054,1371.01,,5,5,5,5,4,5,5,387.1,1157.6,317.0,3,4,2,PC,APC,9.948,0.008,,1,qlp-s56-ffi,QLP,22:04:28.25,31:01:07.56,4.53,0.057,-1.516,0.07,2459848.525293,0.0026813,5.0095595,1.85e-05,3.353,0.595,9.487235,10.012333,8700.0,9179.31,36.2553,4.94011,2088.59,1883.0,156.0,302.295,3.712,6527.0,154.1,4.11,0.09,1.75,0.07,,,1.46,0.242983,"15,16,56",2019-10-30,2022-12-05,2022-12-16 12:08:26,possible 180 ppm secondary; large and v-shaped,1371,1,False,False,False -164150539,1372.01,,5,5,5,5,5,5,5,21.0,79.3,51.4,3,2,2,O,FP,10.3126,0.006,,1,qlp-s56-ffi,QLP,22:23:00.86,30:34:21.81,7.989,0.07,3.749,0.085,2459850.543759,0.0015925,6.1600888,1.35e-05,1.67,0.585,1.216706,0.209536,1120.0,192.971,8.22262,0.523202,143.457,964.0,14.0,244.043,3.7655,5772.0,123.2,4.07,0.08,1.55,0.07,,,1.034,0.132868,"16,56",2019-10-30,2022-11-07,2022-12-14 12:09:24,Minor depth-aperture correlation; actual signal on TOI 2375.01,1372,1,False,False,False -176899385,1373.01,,5,5,5,5,5,5,5,92.0,116.0,317.0,0,0,4,KP,KP,9.995771,0.006,,1,qlp-s57-ffi,QLP,23:39:05.78,42:27:57.55,-20.075,0.074,3.123,0.049,2459880.674867,0.000304,3.8529962,1.7e-06,3.36,0.234,9.969258,0.161343,9140.0,148.591,15.6058,0.861961,1669.87,1780.0,172.0,275.358,3.5905,6893.4,147.5,4.22,0.1,1.57,0.09,-0.0340897,0.0272165,1.499,0.260248,"16,17,57",2019-10-30,2022-12-15,2022-12-16 12:08:26,HAT-P-6 b,1373,1,False,False,False -190430205,1374.01,,5,5,5,5,5,5,5,13.9,42.8,76.51,1,1,3,EB,FP,9.8261,0.011,,1,qlp,QLP,21:39:41.4,46:13:12.78,-2.152,0.059,-1.765,0.051,2458712.06866,0.0107,1.06884,0.00034,2.512,0.474,0.510416,0.001853,470.0,1.70665,10.3628,0.812198,32361.2,3736.0,11.0,1013.56,29.319,9222.0,179.0,3.42,0.07,4.94,0.19,,,2.34,0.307761,"15,16",2019-10-30,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as NEB,1374,1,False,False,False -190442486,1375.01,,5,5,5,5,5,5,5,8.2,50.8,28.37,1,2,1,EB,FP,10.4568,0.016,,1,qlp-s56-ffi,QLP,21:39:44.53,41:57:02.86,16.048,0.041,1.949,0.042,2459850.13104,0.0031994,5.4561177,2.47e-05,3.1,0.633,1.477606,0.098115,1360.0,90.3633,5.78741,0.295284,796.96,1480.0,17.0,365.168,3.815,7465.0,170.4,4.31,0.08,1.51,0.05,,,1.71,0.276418,"15,16,56",2019-10-30,2022-11-07,2022-12-14 12:09:24,Minor depth-aperture correlation; TFOP NEB/FP,1375,1,False,False,False -190743990,1376.01,,5,5,5,5,5,5,5,11.0,55.7,16.15,2,2,6,PC,FP,10.2566,0.006,,1,spoc-s56-b0A,QLP,21:43:08.91,45:38:48.5,-7.587,0.049,-20.957,0.054,2459826.438539,0.002328961,1.73700441533361,0.00026103092,1.43402097920633,0.4392003,0.803296,0.074353,739.589189029772,68.47884,4.15172386317357,2.7242944,2883.88823625523,1869.02175258992,9.46226,240.012,1.8065,6026.0,128.9,4.16,0.08,1.45050001144409,0.0640654,,,1.117,0.146874,"15,16,56",2019-10-30,2022-12-08,2023-05-24 12:02:55,centroid offset on TIC 190743999 in spoc-s56,1376,1,False,False,False -240613164,1377.01,,5,5,5,5,5,5,5,,,129.24,2,1,0,PC,FP,10.1441,0.009,,1,qlp,QLP,21:45:13.25,45:48:45.17,-4.045,0.057,-4.784,0.057,2458712.05324,0.00122,1.99143,8e-05,4.136,0.071,18.335475,0.702229,16745.8,646.568,,,108701.0,5058.0,65.0,4984.88,921.355,9458.2,455.4,,,,,,,,,16,2019-10-30,2019-10-30,2022-12-14 12:09:24,no Rs; could be off target,1377,1,False,False,False -249812036,1378.01,,3,5,5,3,4,4,4,266.6,1024.6,317.0,1,2,6,PC,APC,9.624,0.013,,1,qlp-s56-ffi,QLP,22:39:08.53,49:25:35.62,5.235,0.047,-3.878,0.047,2459850.624241,0.0005232,5.7785318,5.1e-06,2.348,0.575,5.431386,9.449394,4990.0,8665.45,42.6903,10.5937,2264.51,1921.0,81.0,547.399,9.159,8224.0,161.9,3.81,0.07,2.92,0.1,,,2.02,0.296627,"16,17,56",2019-10-30,2022-12-05,2022-12-16 12:08:26,TFOP SB1/APC; too big; V-shaped; secondary; 2 stars in pixel,1378,1,False,False,False -252490659,1379.01,,5,5,5,5,3,5,5,0.5,67.6,317.0,0,1,2,PC,APC,10.3842,0.006,,1,qlp-s16-ffi,QLP,22:57:26.35,53:08:27.01,-1.37,0.051,-12.577,0.051,2459871.438619,0.0023509772,1132.02446857086,0.0,4.119,0.273,19.855292,1.933897,18121.2,1779.6,30.6957,9.6565,449.947,1283.0,33.0,366.242,4.5155,5984.0,82.8,3.98,0.08,2.07,0.06,,,1.333,0.20471,"16,57",2019-10-30,2023-01-30,2023-02-09 12:10:04,max P=1132.02 d; actual period likely shorter; too large for long period; TFOP APC/SB2,1379,1,False,False,False -274170255,1380.01,,5,5,5,5,5,5,5,28.1,53.3,54.63,0,2,3,EB,FP,9.32845,0.006,,1,qlp,QLP,21:05:47.12,46:50:42.54,19.689,0.046,2.774,0.047,2458712.04951,0.0055,1.41072,0.00028,2.623,0.4,0.543004,0.001148,500.0,1.05689,8.4993,,2001.09,1863.0,14.0,305.674,2.7495,5197.0,122.0,,,3.84,,,,,,"15,16",2019-10-30,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as NEB,1380,1,False,False,True -275722992,1381.01,,3,4,3,3,4,4,4,17.7,63.8,111.51,1,1,4,PC,PC,10.379,0.019,,1,qlp-s56-ffi,QLP,21:15:08.39,44:53:58.84,-4.862,0.066,-8.024,0.053,2459843.682687,0.0026093,6.5602603,2.74e-05,3.452,0.921,1.934333,0.255326,1780.0,235.136,12.927,0.845744,7503.18,2592.0,27.0,737.108,18.431,9976.0,352.0,4.01,0.06,2.62,0.08,,,2.55,0.362462,"15,16,55,56",2019-10-30,2022-11-09,2022-12-14 12:09:24,2 stars in pixel,1381,1,False,False,True -276360911,1382.01,,5,5,5,5,5,5,5,108.6,282.2,83.22,2,1,1,PC,FA,9.62426,0.006,,1,qlp,QLP,21:56:12.83,55:44:27.52,12.362,0.053,3.363,0.056,2458738.89623,0.00188,0.44482,5e-05,1.058,0.174,1.749444,0.00793,1610.0,7.30347,10.8884,0.742264,14152.2,3038.0,11.0,285.666,2.732,7184.0,558.2,4.1,0.12,1.88,0.08,,,1.607,0.374496,"16,17",2019-10-30,2020-05-20,2022-12-14 12:09:24,,1382,1,False,False,False -313506357,1383.01,,5,5,5,5,5,5,5,108.4,294.4,83.01,1,1,0,EB,FP,9.5621,0.006,,1,qlp-s57-ffi,QLP,23:11:01.81,45:56:01.28,45.999,0.044,0.128,0.039,2459880.029372,0.0032042,1.532703,1.46e-05,2.698,0.543,1.358019,2.298405,1250.0,2114.67,10.8699,2.32743,26916.4,3568.0,47.0,178.003,0.896,6023.1,122.1,4.24,0.09,1.39,0.06,,,1.215,0.184841,"16,17,57",2019-10-30,2022-12-12,2022-12-16 12:08:26,TFOP FP/NEB,1383,1,False,False,True -328167090,1384.01,,5,5,5,5,5,5,5,20.6,65.6,21.34,1,2,2,EB,FP,10.0009,0.006,,1,qlp-s57-ffi,QLP,22:06:39.23,55:41:10.52,-2.097,0.061,-9.395,0.048,2459880.756663,0.002129,0.7131492,3.7e-06,2.428,0.601,0.488691,0.060769,450.0,55.9689,4.89712,,18159.7,3234.0,26.0,235.218,1.7195,5128.9,90.1,3.88,,1.93,,,,1.034,,"16,17,56,57",2019-10-30,2022-12-12,2022-12-16 12:08:26,TFOP FP,1384,1,False,False,False -329864959,1385.01,,5,5,5,5,5,5,5,251.4,837.5,317.0,1,1,4,PC,FP,8.437,0.023,,1,qlp,QLP,22:12:58.81,53:59:04.27,4.7,1.2,-5.3,1.3,2458739.96744,0.00077,4.52318,0.00024,5.099,0.148,27.609959,0.004434,25109.1,4.08384,,,,,191.0,324.346,,,,,,,,,,,,"16,17",2019-10-30,2019-10-30,2022-12-14 12:09:24,TFOP FP,1385,1,False,False,True -343019899,1386.01,,3,5,5,3,4,4,4,,,35.12,0,22,4,PC,PC,10.0618,0.006,,1,qlp,QLP,22:18:00.98,54:19:08.56,55.052,0.05,10.638,0.044,2458752.31132,0.00193,0.0,0.0,5.694,0.842,4.079164,0.002161,3750.0,1.99008,6.551,0.370296,,,18.0,146.858,0.6835,5769.0,146.5,4.43,0.08,1.03,0.05,,,1.033,0.128555,"16,17",2019-10-30,2020-05-20,2022-12-14 12:09:24,single transit,1386,1,False,True,False -343442463,1387.01,,5,5,5,5,5,5,5,16.3,104.7,15.39,1,1,6,PC,FP,8.95861,0.006,,1,qlp,QLP,22:46:04.49,55:09:46.56,14.058,0.074,-1.994,0.061,2458739.5222,0.0029,0.78381,0.00015,1.443,0.189,0.46273,0.001257,426.099,1.1574,3.89595,0.236466,9401.36,2743.0,18.0,239.688,2.551,7842.0,120.2,4.22,0.08,1.72,0.05,,,1.921,0.297438,16,2019-10-30,2019-10-30,2022-12-14 12:09:24,,1387,1,False,False,False -346338552,1388.01,,5,5,5,5,5,5,5,127.5,153.2,317.0,0,0,0,KP,KP,9.76031,0.006,,1,qlp-s56-ffi,QLP,22:57:46.89,38:40:29.71,32.384,0.041,-41.751,0.044,2459847.336508,0.0002303,4.4653014,1.5e-06,2.494,0.044,16.144911,0.26996,14760.0,248.611,14.5338,0.656282,243.703,1100.0,149.0,158.979,0.971,6051.2,106.5,4.35,0.08,1.18,0.05,0.15784,0.00681689,1.126,0.150085,"16,56",2019-10-30,2022-11-15,2022-12-14 12:09:24,HAT-P-1b,1388,1,False,False,False -353038705,1389.01,,3,4,3,3,4,4,4,,,7.41,9,2,10,PC,PC,9.957501,0.006,,1,qlp-s56-ffi,QLP,22:12:31.67,31:21:52.8,1.0,1.9,-2.6,1.9,2459851.063533,0.0017933,3.062624,8.1e-06,1.767,0.382,0.62991,0.069019,580.0,63.567,,,204.269,1053.0,14.0,,,5086.8,115.6,,,,,,,,,"15,16,56",2019-10-30,2022-11-15,2022-12-14 12:09:24,no stellar radius; potentially too large,1389,1,False,False,False -365389353,1390.01,,5,5,5,5,5,5,5,15.8,54.3,57.4,1,2,1,PC,FP,10.3093,0.02,,1,qlp,QLP,21:35:27.51,51:19:24.88,7.911,0.068,4.41,0.063,2458716.35354,0.00331,2.63725,0.00033,2.87,0.225,1.379761,0.001519,1270.0,1.39929,8.74081,0.485284,2643.68,1997.0,14.0,523.373,12.7995,7495.0,195.4,3.88,0.09,2.5,0.1,,,1.73,0.291997,"15,16",2019-10-30,2020-05-20,2022-12-14 12:09:24,Minor depth-aperture correlation,1390,1,False,False,False -389182138,1391.01,,5,5,5,5,5,5,5,6.9,61.5,7.11,4,6,5,PC,FP,10.4602,0.006,,1,qlp,QLP,22:54:32.41,54:09:42.53,-94.07,0.049,9.95,0.048,2458740.10705,0.005,2.72687,0.0005,2.467,0.521,1.064543,0.002898,980.0,2.66879,2.54653,0.202683,543.502,1345.0,11.0,115.746,0.4265,5256.0,125.8,4.59,0.08,0.79,0.04,,,0.899,0.113743,"16,17",2019-10-30,2020-05-20,2022-12-14 12:09:24,Potential level 1 candidate,1391,1,False,False,False -416987878,1392.01,,5,5,5,5,5,5,5,12.1,44.8,54.56,2,1,2,PC,FP,10.399,0.029,,1,qlp,QLP,21:31:34.11,50:19:14.57,1.791,0.047,-2.781,0.049,2458712.7665,0.00452,2.86876,0.00042,2.422,0.362,1.118885,0.002364,1030.0,2.17774,8.48351,0.518841,2571.69,1983.0,12.0,594.193,10.8995,8342.0,285.2,3.9,0.08,2.65,0.09,,,2.06,0.32162,"15,16",2019-10-30,2020-05-20,2022-12-14 12:09:24,,1392,1,False,False,False -430528566,1393.01,,5,5,5,5,5,5,5,23.6,71.0,52.57,1,1,10,PC,FP,10.1993,0.006,,1,qlp-s57-tois,QLP,22:12:41.1,52:54:03.19,2.078,0.05,-17.708,0.049,2459880.995538,0.0009091,0.5590256,1.7e-06,0.688,0.131,0.716822,0.114995,660.0,105.909,4.22851,,2015.68,1866.0,15.0,248.79,2.1445,,,,,1.35,,,,1.338,,"16,17,56,57",2019-10-30,2023-05-01,2023-05-24 12:02:56,significant odd-even; centroid offset towards brighter stars in pixel,1393,1,False,False,False -431156009,1394.01,,5,5,5,5,5,5,5,8.8,60.8,14.04,0,5,8,PC,FP,9.44275,0.006,,1,qlp-s57-ffi,QLP,22:41:34.99,51:57:55.03,47.604,0.075,15.882,0.071,2459877.111743,0.0033699,2.9581592,2.72e-05,3.666,0.385,0.597319,0.032481,550.0,29.9157,3.82886,0.202166,1781.68,1809.0,21.0,195.022,1.5465,6294.0,142.8,4.13,0.09,1.58,0.07,,,1.234,0.190372,"16,17,57",2019-10-30,2022-12-13,2023-05-24 12:02:53,L1 candidate,1394,1,False,False,False -468472950,1395.01,,5,5,5,5,5,5,5,8.2,48.8,11.63,2,2,7,PC,FP,10.1277,0.006,,1,qlp,QLP,21:25:07.97,40:53:16.16,-3.082,0.107,-6.903,0.09,2458712.35831,0.00523,0.98736,0.00017,1.464,0.252,0.401797,0.001333,370.0,1.22746,3.41784,0.282621,2591.32,1987.0,10.0,279.953,6.32,6301.3,135.2,4.07,0.09,1.69,0.1,0.0,0.009,1.237,0.176353,"15,16",2019-10-30,2020-05-20,2022-12-14 12:09:24,possible NEB,1395,1,False,False,True -468845640,1396.01,,5,5,5,5,5,5,5,34.1,135.9,34.8,1,2,2,PC,FP,10.3217,0.006,,1,qlp,QLP,22:31:20.18,53:47:45.79,84.014,0.227,18.619,0.32,2458741.72914,0.00222,3.99307,0.00063,4.783,0.567,4.234813,0.003755,3892.81,3.4588,6.35126,0.329438,1282.52,1667.0,49.0,102.931,1.5595,4731.1,101.1,4.35,0.09,0.93,0.04,,,0.752,0.0919386,"16,17",2019-10-30,2019-10-30,2022-12-14 12:09:24,TFOP FP,1396,1,False,False,False -64553698,1397.01,,5,5,5,5,5,5,5,188.8,485.5,317.0,1,5,2,EB,FP,10.1799,0.006,,1,qlp-s57-ffi,QLP,22:33:48.71,57:33:48.74,50.046,0.054,6.338,0.053,2458965.050909,0.0006871,8.6795072,4.22e-05,3.628,0.846,11.0875,18.65155,10160.0,17032.0,24.132,5.63409,578.958,1366.0,128.0,194.993,1.2205,6057.0,140.2,4.43,0.09,1.14,0.05,,,1.263,0.20174,"16,17,24,57",2019-10-30,2022-12-12,2022-12-16 12:08:26,TFOP FP/NEB,1397,1,False,False,False -66445643,1398.01,,5,5,5,5,4,5,5,17.5,64.9,110.64,0,2,6,PC,APC,8.6291,0.008,,1,qlp-s57-ffi,QLP,22:45:32.71,48:09:41.6,-2.432,0.071,-6.636,0.066,2459870.229606,0.0016139,6.5560894,1.98e-05,2.676,0.444,0.836339,0.04499,770.0,41.4364,12.8821,0.642672,1165.27,1627.0,31.0,648.398,19.9495,8918.0,182.9,3.51,0.07,4.58,0.18,,,2.45,0.334139,"16,17,56,57",2019-10-30,2022-12-13,2022-12-16 12:08:26,TFOP SB1/APC,1398,1,False,False,False -66783360,1399.01,,5,5,5,5,5,5,5,24.6,105.9,29.45,2,2,3,PC,FP,10.2107,0.006,,1,qlp-s57-tois,QLP,22:47:53.02,49:55:05.06,18.039,0.078,0.467,0.07,2459881.30632,0.0015101,1.3812787,3.5e-06,2.4,0.746,1.709208,0.596572,1573.0,549.312,5.91488,1.10109,24595.6,3488.0,30.0,252.396,3.0125,6483.0,147.9,4.28,0.08,1.38,0.06,,,1.323,0.210341,"16,17,57",2019-10-30,2023-05-01,2023-05-24 12:02:58,centroid offset centered on another star in spoc-s57-b0A,1399,1,False,False,False -258801269,1400.01,,5,5,5,5,5,5,5,31.0,92.9,96.14,0,2,6,PC,FP,10.938,0.007,,1,qlp,QLP,19:08:06.02,66:17:26.51,4.723,0.06,-12.459,0.073,2458689.02568,0.00479,5.48923,0.00073,3.29,0.476,0.98847,0.653529,910.0,601.741,11.8401,4.4113,2592.62,1987.0,19.0,370.791,5.6625,6004.0,116.9,4.06,0.07,1.62,0.07,,,1.11,0.138547,"14,15,16,17,18,19",2019-10-30,2020-05-20,2022-12-14 12:09:24,,1400,1,False,False,True -259126549,1401.01,,5,5,5,5,5,5,5,107.5,231.2,317.0,0,1,2,EB,FP,10.9828,0.006,,1,qlp-s49-tois,QLP,19:25:38.84,69:06:46.73,0.9,2.0,-6.4,2.1,2459658.948928,0.0001639,7.3845072,1.9e-06,4.531,0.045,27.666647,0.000669,25160.0,0.616532,23.6091,,514.397,,686.0,383.166,,6149.2,239.7,,,1.43,,,,,,"14,15,16,18,19,20,21,22,23,24,25,26,40,41,47,48,49",2019-10-30,2022-07-12,2022-12-14 12:09:24,strong secondary; large for insolation,1401,1,False,False,True -259129875,1402.01,,5,5,5,5,5,5,5,19.4,70.5,36.41,3,2,2,PC,FP,10.5896,0.007,,1,qlp,QLP,19:27:31.26,68:00:52.9,2.859,0.051,7.618,0.046,2458684.09715,0.00151,0.43889,1e-05,0.947,0.245,0.705958,0.002246,650.0,2.06904,6.69456,0.458256,14357.3,3049.0,27.0,576.745,8.5765,7111.0,125.5,3.91,0.09,2.32,0.1,,,1.58,0.269773,"14,15,16,17,18,19",2019-10-30,2020-05-20,2022-12-14 12:09:24,Likely EB,1402,1,False,False,True -328750515,1403.01,,5,5,5,5,5,5,5,82.4,102.6,317.0,4,1,1,EB,FP,10.7387,0.006,,1,spoc-s56-b0A,QLP,22:09:08.9,57:56:20.3,4.333,0.06,6.381,0.054,2459825.344785,0.005291578,2.33596224707241,0.00080751005,6.01656841700047,0.41946667,3.334252,0.185038,3066.24927491273,170.41193,18.3852988662301,19.547457,7363.48308376303,2362.60203078891,11.78653,482.603,9.0575,7577.0,141.5,4.05,0.08,2.07800006866455,0.0756332,,,1.759,0.277908,"16,17,56",2019-10-30,2022-12-08,2022-12-16 12:08:26,TFOP FP/NEB,1403,1,False,False,False -352239069,1404.01,,2,4,2,2,4,4,4,1.6,22.6,6.01,6,3,8,PC,PC,10.9425,0.006,,1,qlp-s58-tois,QLP,19:28:47.06,58:36:53.15,2.189,0.039,1.72,0.037,2459908.512546,0.0032007,6.8674054,3.27e-05,3.488,0.659,0.846118,0.039632,779.0,36.5019,2.4024,0.142701,297.944,1157.0,23.0,247.074,1.2355,6051.5,118.3,4.48,0.08,1.03,0.04,,,1.174,0.158696,"14,15,16,17,20,23,24,26,40,41,47,50,53,54,55,56,57,58",2019-10-30,2023-07-06,2023-07-06 00:00:00,potential multi; variable host,1404,1,True,False,True -352239069,1404.02,,3,4,3,3,4,4,4,2.5,33.7,13.74,6,3,8,PC,PC,10.9425,0.006,,2,qlp-s58-tois,SPOC,19:28:47.06,58:36:53.15,2.189,0.039,1.72,0.037,2459908.522961,0.0020763,14.431887,5.13e-05,3.265,0.29,1.833184,0.060311,1687.0,55.5468,3.73311,0.188441,52.4908,749.0,30.0,247.074,1.2355,6051.5,118.3,4.48,0.08,1.03,0.04,,,1.174,0.158696,"14,15,16,17,20,23,24,26,40,41,47,50,53,54,55,56,57,58",2022-02-28,2023-07-06,2023-07-06 00:00:00,potential multi; variable host,1404,2,True,False,True -387834907,1405.01,,5,5,5,5,5,5,5,,,79.53,0,3,4,EB,FP,8.4239,0.006,,1,qlp-s16-ffi,QLP,21:02:40.59,70:04:49.08,3.4,1.5,-1.7,1.5,2458739.88011,0.00199,12.64001,0.00298,6.893,0.425,10.31818,0.605243,9458.38,557.294,,,703.834,1434.0,75.0,,,5195.1,502.3,,,,,,,,,"16,17",2019-10-30,2022-07-18,2022-12-14 12:09:24,TFOP FP; Need stellar radius; possible secondary at ~0.2; second transit in s17 happens just after start of orbit,1405,1,False,False,True -231736113,1406.01,,3,5,5,3,4,4,5,12.7,64.8,65.38,0,16,2,PC,CP,11.4266,0.006,,1,qlp,QLP,05:28:30.71,-48:24:32.64,0.889,0.057,-21.885,0.066,2459218.231402,0.001159,10.5739824,2.24e-05,4.04,0.16,5.944363,0.001046,5460.0,0.963427,9.43898,0.456139,171.146,1007.0,51.0,414.23,5.0325,6519.0,135.5,4.36,0.08,1.27,0.06,,,1.34,0.215594,"4,5,6,31,32,33",2019-10-31,2021-02-19,2022-12-14 12:09:24,Confirmed brown dwarf; paper led by Theron Carmichael,1406,1,False,False,True -69747919,1407.01,,1,5,5,1,5,4,5,3.1,43.5,4.87,0,3,4,KP,KP,7.7275,0.006,,1,spoc-s42-s46-b0A,CTOI,22:26:18.27,-18:00:41.99,73.606,0.105,-114.505,0.093,2459085.39112,0.01294,9.97833192740438,6.104167e-05,4.22817105879977,0.43826023,0.194608,0.019485,179.224845640238,17.946602,2.05153324191462,0.9935112,300.964662335944,1062.30353355159,8.511921,80.8994,0.4704,6073.5,6064.9,4.1,0.3,1.4713100194931,0.0695252,,,1.16,0.157273,"2,28",2019-10-31,2022-07-15,2022-12-14 12:09:24,K2-167 b,1407,1,False,False,True -364186197,1408.01,,3,4,3,3,4,4,4,40.0,167.0,47.42,18,14,2,PC,PC,8.82374,0.006,,1,qlp-s59-ffi,SPOC/QLP,20:54:02.65,72:34:50.32,11.808,0.045,28.759,0.045,2459935.531318,0.0003281,4.4247132,2.5e-06,1.132,0.08,1.06889,0.080745,984.0,74.366,7.84974,0.618814,173.884,1011.0,61.0,139.484,0.4175,6594.0,709.2,4.23,0.16,1.49,0.11,,,1.375,0.406981,"16,17,18,19,24,25,52,57,58,59",2019-11-06,2023-02-09,2023-02-25 12:10:55,period drift between Y2 and Y4/Y5,1408,1,False,False,True -115771549,1409.01,,5,5,5,5,4,5,5,,,317.0,0,1,3,PC,APC,8.3764,0.006,,1,qlp-s56-ffi,SPOC/QLP,22:39:15.82,33:53:22.05,-9.2,1.0,-6.3,1.1,2459844.125039,0.0004156,4.7182888,3.3e-06,4.046,0.244,3.262104,0.060226,3000.0,55.4688,15.2763,1.29682,876.886,1516.0,136.0,83.2324,,6112.0,254.6,,,2.74,0.23,,,,,"16,56",2019-11-06,2022-12-05,2022-12-16 12:08:26,TFOP APC/SM,1409,1,False,False,True -199444169,1410.01,,1,4,4,1,4,4,4,27.3,139.5,11.65,6,15,8,PC,PC,10.1917,0.006,,1,qlp-s56-ffi,SPOC/QLP,22:19:31.88,42:33:37.13,-67.417,0.04,10.385,0.043,2459850.737058,0.0010871,1.2168732,5.25e-05,0.86,0.116,1.347148,0.150522,1240.0,138.626,3.43106,0.30991,153.719,980.0,23.0,72.7512,0.1604,4634.6,106.7,4.51,0.1,0.78,0.06,,,0.71,0.085434,"16,56",2019-11-06,2022-12-05,2022-12-16 12:08:26,potential L1 planet,1410,1,False,False,True -116483514,1411.01,,1,5,5,1,4,4,4,8.8,12.6,2.63,8,16,6,CP,CP,9.1043,0.006,,1,qlp-s51-ffi,SPOC/QLP,15:31:47.05,47:03:19.98,154.795,0.037,-298.481,0.048,2459715.250846,0.0016772,1.4520464,3.6e-06,1.474,0.243,0.412658,0.000612,380.0,0.564092,1.4286,0.143907,277.805,1137.0,14.0,32.4778,0.0225,4184.0,124.368,4.57376,0.107379,0.69,0.06,,,0.65,0.0805444,"16,23,24,50,51",2019-11-06,2022-06-24,2022-12-14 12:09:24,TOI-1411 b / TOI-1411.01,1411,1,False,False,True -116483734,1412.01,,5,5,5,5,4,5,5,36.5,176.4,39.09,5,2,3,PC,APC,11.0997,0.006,,1,qlp-s51-tois,SPOC,15:32:15.8,47:51:38.69,122.467,0.085,-70.663,0.102,2459714.075511,0.0006678,4.731977,5.1e-06,0.361,0.118,3.774056,0.294397,3470.0,271.113,6.97384,1.37589,3.01841,367.0,25.0,81.0643,0.3566,4223.45,133.402,4.61744,0.110498,0.66,0.06,-0.173769,0.0128292,0.66,0.0798661,"16,23,24,50,51",2019-11-06,2022-09-02,2022-12-14 12:09:24,,1412,1,False,False,True -119700084,1413.01,,2,4,2,2,4,4,4,23.2,134.1,31.56,5,5,9,PC,PC,10.1188,0.006,,1,spoc-s56-b0A,SPOC,22:13:00.76,37:37:39.27,37.32,0.073,-38.196,0.112,2459829.698976,0.0015829098,6.11821285129936,0.00085346506,0.667144093941722,0.17293526,1.961731,0.366279,1805.1895772547,337.29852,6.15798909551569,22.368395,149.029955334835,891.124004153391,9.082013,115.417,1.1235,5427.0,141.322,4.51461,0.0830557,0.890109002590179,0.0504724,,,0.945,0.122506,"16,56",2019-11-06,2022-12-05,2022-12-16 12:08:26,centroid offset; but inconsistent with previous s16 centroid; possible EB,1413,1,False,False,True -125442121,1414.01,,3,5,5,3,4,4,4,81.5,117.4,317.0,7,2,4,PC,APC,11.029,0.009,,1,spoc-s57-b0A,SPOC,23:26:19.13,38:33:10.58,3.164,0.051,-8.173,0.044,2459853.583682,0.0007086269,3.01978069802938,0.00013546534,3.58967627868191,0.04126978,13.126044,0.479417,12016.7483850898,441.46234,17.9176077206487,0.8406648,2558.71988045883,1813.95051586222,20.143562,460.951,7.9325,7128.0,132.115,4.23768,0.0865097,1.58815002441406,0.0671156,,,1.59,0.274116,"16,57",2019-11-06,2023-01-30,2023-02-09 12:10:04,Possible EB and very active star; fast rotator,1414,1,False,False,True -148782377,1415.01,,1,4,1,3,4,4,4,9.4,82.8,20.55,2,3,3,PC,PC,8.39816,0.006,,1,spoc,SPOC,14:36:08.89,42:22:42.45,-59.935,0.033,42.482,0.039,2458933.177794,0.0015533798,14.4193583271004,0.0022573632,5.16357089463853,0.19997068,1.184207,0.068483,1090.10017671685,63.073494,4.78358250213271,0.48797905,186.899215777587,943.021554256226,16.147219,112.152,0.3305,6383.0,130.424,4.24518,0.0861785,1.41048,0.0649246,,,1.276,0.192886,23,2019-11-06,2020-05-07,2022-12-14 12:09:24,variable star,1415,1,False,False,True -158025009,1416.01,,1,4,4,1,4,4,4,8.4,80.6,2.9,6,42,5,PC,PC,9.0739,0.006,,1,qlp-s50-tois,SPOC/QLP,14:27:41.64,41:57:10.75,-92.338,0.032,-101.247,0.037,2459689.405799,0.0027278,1.0697611,3.7e-06,1.376,0.146,0.369213,0.000484,340.0,0.445919,1.50924,0.116196,765.756,1465.0,18.0,55.0135,0.07735,4946.0,128.622,4.53834,0.0914034,0.8,0.05,,,0.81,0.10277,"16,23,50",2019-11-06,2022-12-12,2023-01-22 00:00:00,L1 candidate; two stars in pixel,1416,1,False,False,True -164173105,1417.01,,3,5,5,3,4,4,5,315.0,532.2,317.0,3,13,7,CP,CP,8.51017,0.007,,1,spoc-s14-s60-b0A-CP,SPOC,22:23:18.07,35:02:05.71,10.685,0.073,-18.496,0.068,2459827.0017,0.0003710292,3.07264339866713,1.102023e-06,2.26024850361495,0.012122935,11.429227,0.187876,10471.4949697089,173.02533,19.9197756533583,0.90261143,2446.88487141568,1793.79633982641,60.761208,151.528,1.042,7164.0,169.486,4.25661,0.0837602,1.55831003189087,0.0589573,,,1.599,0.269045,"16,56",2019-11-06,2023-06-13,2023-06-16 12:14:51,transits consistent with planetary nature despite strong stellar variability,1417,1,False,False,True -224600500,1418.01,,5,5,5,5,5,5,5,3.6,48.4,3.54,0,1,2,V,FA,6.76754,0.007,,1,spoc-s14-s50-b0A-PC,SPOC,16:59:50.06,58:27:45.48,-10.013,0.08,11.018,0.077,2458684.277966,0.0013443873,0.6763235099057,3.3119493e-05,4.91645896917736,0.10486649,0.032748,0.002112,30.1617976927031,1.9449273,1.70003495994846,0.2746406,42572.1587374879,3663.54194078117,14.117514,161.067,0.8595,8475.0,142.024,3.82228,0.0711894,2.94864988327026,0.0857588,,,2.106,0.311364,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50",2019-11-06,2022-10-04,2022-12-14 12:09:24,,1418,1,False,False,True -311035838,1419.01,,5,5,5,5,5,5,5,87.2,276.8,72.76,0,0,1,KP,KP,10.7164,0.006,,1,qlp-s49-tois,SPOC/QLP,13:44:22.56,48:01:42.83,-19.746,0.034,-24.008,0.038,2459661.5681,0.0001852,2.8997405,9e-07,1.849,0.027,15.043468,0.000918,13760.0,0.845474,10.0433,0.564205,176.587,1015.0,191.0,134.554,0.4785,5224.0,118.05,4.55801,0.0804107,0.82,0.05,0.41,0.08,0.89,0.106514,"16,22,49",2019-11-06,2022-07-13,2022-12-14 12:09:24,HAT-P-3 b,1419,1,False,False,True -321857016,1420.01,,3,4,4,3,4,4,4,45.5,168.2,99.39,11,11,4,PC,PC,11.2287,0.006,,1,spoc-s14s26-b0A,SPOC,21:31:46.03,66:20:56.42,45.326,0.045,32.042,0.044,2459830.458192,0.0004811554,6.95611336692387,1.5284942e-05,3.36280033167644,0.034057118,17.500372,0.13878,15989.2311010423,127.81271,12.0908229704812,0.69774693,136.955769381442,872.498788445795,124.317764,201.918,0.9145,5387.0,136.579,4.46259,0.0853171,0.940037,0.0535176,,,0.935,0.117864,"16,24,56",2019-11-06,2022-12-06,2022-12-14 12:09:24,,1420,1,False,False,True -329277372,1421.01,,5,5,5,5,1,5,5,68.7,563.7,32.49,0,2,0,PC,APC,10.5998,0.006,,1,spoc-s14-s60-b0A-APC,SPOC,22:10:31.3,57:16:56.77,4.661,2.214,25.274,2.297,2459854.509943,0.0003952412,2.88796748610944,7.0587324e-05,3.662639922842,0.0111914985,25.807519,0.234773,23489.331408356,216.21097,,,634.21923737457,1279.91050127688,115.41917,74.2281,7.3284,5780.0,,4.438,,,,,,,,"16,17,56,57",2019-11-06,2023-04-25,2023-04-28 12:12:06,Likely EB given star is pulsating and therefore likely > 2 Rsun which would give possible Rp of ~35 Re; TFOP APC/SB1; no stellar radius,1421,1,False,False,True -333473672,1422.01,,1,5,5,1,4,4,4,4.3,51.8,14.19,0,18,8,CP,CP,10.1308,0.006,,1,spoc-s14-s60-b0A-CP,SPOC,23:36:57.8,39:38:21.41,-67.547,0.041,-31.087,0.031,2459864.063759,0.0046431,13.001789009595,4.4874934e-05,4.48473217259691,0.22194713,1.45541,0.078094,1339.58376636582,71.92465,3.84804999005971,0.3972419,90.5150930081881,786.683425282818,16.339954,155.141,0.66,5914.0,125.3,4.46,0.08,1.00826001167297,0.0466332,,,1.076,0.141953,"16,17,57",2019-11-06,2023-06-13,2023-06-16 12:14:51,TOI-1422 b,1422,1,False,False,True -346418409,1423.01,,5,5,5,5,5,5,5,41.6,182.7,33.84,7,17,7,PC,FP,10.9243,0.006,,1,spoc,SPOC,22:58:26.32,39:39:31.36,-79.05,0.044,-38.029,0.045,2458740.961818,0.0034901253,2.75565318083079,0.00084044365,3.39672818822985,0.23230256,3.103621,0.166421,2854.45892881993,153.26804,6.41455193551932,7.742217,207.238636810788,967.692625181043,15.16427,112.383,0.459,4993.0,127.12,4.66918,0.0887258,0.696945,0.04299,,,0.827,0.103223,16,2019-11-06,2019-11-06,2022-12-14 12:09:24,some odd-even,1423,1,False,False,True -418959198,1424.01,,2,4,2,2,4,4,4,9.5,76.9,12.23,1,3,10,PC,PC,10.5152,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,22:59:37.74,36:31:03.6,3.639,0.041,5.359,0.051,2459827.504099,0.003595862,4.8962483678637,1.614971e-05,2.3624180129156,0.20173548,1.288479,0.115299,1186.02899254673,106.18893,3.52464678875798,0.32920432,95.0808510386148,796.421571559574,11.5034075,86.8203,0.2944,4528.99,104.619,4.48318,0.0859122,0.799965023994446,0.0529221,-0.0636122,0.0225416,0.71,0.0819022,"16,56",2019-11-06,2023-05-18,2023-06-16 12:14:51,L1 candidate; multiple stars in pixel; slightly asymmetric transit shape,1424,1,False,False,True -350132371,1425.01,,3,5,5,3,3,4,4,213.0,435.5,107.47,11,4,1,PC,APC,9.25755,0.006,,1,spoc-s14-s60-b0A-APC,QLP,21:56:21.93,68:59:52.92,39.456,0.287,-35.754,0.28,2459853.500357,0.00024233194,1.03182712648022,4.901848e-07,1.51583044933959,0.006813451,5.744366,0.033227,5276.78515563308,30.602589,12.6596594057522,0.6387192,6047.88021010703,2249.16100195988,290.384,153.904,3.6525,5810.6,66.9,4.13,0.08,1.4943300485611,0.0751885,,,1.105,0.148163,"16,17,18,24,57,58",2019-11-12,2023-04-25,2023-04-28 12:12:06,some odd-even; v-shaped; synchronized; a/R* ~ 2.6,1425,1,False,False,True -128501004,1426.01,,5,5,5,5,5,5,5,6.7,59.1,4.14,2,0,0,PC,FP,9.76952,0.006,,1,qlp,QLP,22:36:08.02,37:50:27.75,-65.606,0.084,57.654,0.139,2458739.0012,0.00029,0.78999,2e-05,1.153,0.029,6.261001,0.302963,5750.0,279.0,1.99,0.37,5497.38,2398.0,54.0,129.284,1.5525,5558.0,103.5,4.43,0.08,1.1,0.04,,,1.04,0.137463,16,2019-11-12,2019-11-12,2022-12-14 12:09:24,v-shaped,1426,1,False,False,True -2041563029,1427.01,,5,5,5,5,5,5,5,54.6,417.2,83.89,2,1,0,PC,FP,10.0526,0.006,,1,qlp,QLP,23:06:04.19,43:53:55.08,-2.799,2.2,-37.636,2.02,2458747.00971,0.0003,12.80758,0.00023,3.596,0.083,29.843665,0.007576,27112.7,6.97744,11.4222,0.505247,28.4034,643.0,123.0,72.6157,7.92175,5094.4,106.1,,,0.63,0.03,,,,,16,2019-11-12,2019-11-12,2022-12-14 12:09:24,could be a multi-planet system or an EB,1427,1,False,False,False -377304435,1428.01,,5,5,5,5,5,5,5,17.3,55.2,111.37,0,0,0,PC,FP,10.8475,0.008,,1,qlp,QLP,19:08:12.04,55:18:13.29,-4.773,0.046,4.565,0.046,2458691.56061,0.00632,11.35626,0.00118,6.047,0.638,2.38037,0.063589,2190.0,58.5655,12.9372,1.89571,1493.65,1731.0,21.0,504.976,6.2375,6314.0,134.8,3.87,0.09,2.14,0.1,,,1.24,0.190396,"14,15,16,19",2019-11-12,2020-05-20,2022-12-14 12:09:24,Retired as TFOP NEB,1428,1,False,False,True -138968089,1429.01,,5,5,5,5,5,5,5,13.0,48.5,20.97,1,0,0,PC,FP,11.6459,0.006,,1,spoc,SPOC,19:40:24.26,40:59:12.2,-2.194,0.041,6.889,0.04,2458711.558151,0.0023535418,0.64125576252515,0.000109216875,1.11610815676246,0.6985211,1.118379,0.170167,1029.53483332511,156.71747,4.84120196238956,7.962996,10373.5192117055,2573.95694707926,7.2701707,435.255,4.5665,5854.65,147.439,4.1262,0.0861579,1.47292,0.0925879,0.102,0.014,1.058,0.135285,15,2019-11-14,2019-11-14,2022-12-14 12:09:24,KOI-272; Kepler PC,1429,1,False,False,True -293954617,1430.01,,2,4,2,2,4,4,4,5.5,84.7,4.63,6,30,5,PC,PC,8.3879,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,20:02:27.71,53:22:38.79,164.816,0.05,145.473,0.047,2459850.501174,0.0013096,7.4341024127423,8.818795e-06,2.7116194799649,0.13057277,0.665911,0.028979,613.139031194249,26.690212,1.99007825451939,0.4093095,72.5452009274369,744.340965654547,22.074696,41.1706,0.0414,5064.0,119.118,4.57887,0.0847109,0.783990025520325,0.0462663,,,0.85,0.103082,"14,15,16,41,54,55,56",2019-11-14,2023-05-19,2023-06-16 12:14:51,potential L1 planet,1430,1,False,False,True -375506058,1431.01,,3,5,5,3,4,4,4,233.6,331.3,317.0,12,12,2,CP,CP,7.79824,0.006,,1,spoc-s14-s60-b0A-CP,SPOC,21:04:48.89,55:35:16.88,11.737,0.078,23.869,0.064,2459881.427373,0.0005491,2.65023238737267,2.5918177e-07,2.50279308992359,0.0053609763,6.30822,0.015988,5793.23902697356,14.725698,16.7365450492738,0.53567135,5400.87605051982,2186.43113015514,520.5487,148.925,1.027,7400.0,189.5,4.11,0.08,1.93656003475189,0.0619095,,,1.758,0.29612,"15,16,55,56,57",2019-11-14,2023-06-13,2023-06-16 12:14:51,TOI-1431 b,1431,1,False,False,True -256783784,1432.01,,1,4,1,1,4,4,4,3.8,51.6,5.52,4,5,7,PC,PC,9.4653,0.006,,1,qlp-s56-ffi,SPOC,21:57:36.43,36:19:17.05,42.513,0.044,-43.798,0.071,2459851.690817,0.0024311,6.1095756,2.52e-05,2.441,0.333,0.553867,0.047051,510.0,43.3345,2.19963,0.151391,117.102,916.0,12.0,95.1757,0.39625,5587.0,126.4,4.51,0.08,0.91,0.05,,,0.99,0.131033,"15,16,56",2019-11-14,2022-12-05,2022-12-16 12:08:26,,1432,1,False,False,True -13684720,1433.01,,3,5,5,3,4,4,4,85.4,630.1,317.0,4,2,2,PC,APC,12.4647,0.007,,1,spoc-s14-s41-b0A-APC,SPOC,20:22:09.18,36:03:53.22,44.041,0.062,49.286,0.066,2458695.011233,0.0003250798,12.4379715248344,8.244738e-06,1.71378145974007,0.023019461,143.35962,3.436014,123693.260159881,3159.6838,24.647829729457,46.010494,3.48680619583747,348.51919466456,70.54381,67.9631,0.1825,3275.0,157.0,4.75761,0.00710533,0.47699698805809,0.0140438,,,0.474868,0.020189,"14,15,41",2019-11-14,2022-02-10,2022-12-14 12:09:24,TFOPWG SB2/APC; v-shaped; crowded field; too large,1433,1,False,False,True -138588540,1434.01,,2,4,2,2,4,4,4,1.7,70.1,4.78,1,14,7,PC,PC,8.0621,0.006,,1,spoc-s14s16-b0A,SPOC,11:45:31.34,65:32:28.73,1.358,0.049,76.389,0.044,2458703.403139,0.002017885,29.902663013458,0.0024973517,3.69937328505564,0.41097245,0.826123,0.08185,760.597720754238,75.38388,2.02945629479193,0.93802106,12.0207983326856,474.900992677282,10.5646515,37.7873,0.03945,5393.86,139.682,4.67802,0.0889914,0.735511,0.0446382,,,0.94,0.125546,"14,15,21,41",2019-11-14,2022-06-29,2022-12-14 12:09:24,critical L1 candidate; TFOP under investigation; 2 of 3 transits in spoc s14-23 are on momentum dumps,1434,1,False,False,True -153976959,1435.01,,2,5,5,2,4,4,4,4.2,6.9,1.99,4,11,5,PC,PC,9.9802,0.006,,1,qlp-s49-tois,SPOC,13:34:09.11,67:37:16.43,89.429,0.048,-98.354,0.038,2459663.474105,0.0030835,0.6858278,5.2e-06,1.169,0.22,0.217169,0.000957,200.0,0.881709,1.216,0.111106,1568.58,1753.0,11.0,92.8659,0.19045,5142.0,122.712,4.54622,0.085477,0.82,0.05,,,0.87,0.108208,"14,15,22,41,48,49",2019-11-14,2022-08-19,2022-12-14 12:09:24,weak transit shape; potential stellar variability;,1435,1,False,False,True -154383539,1436.01,,2,5,5,2,4,4,4,3.6,5.3,2.64,3,11,4,PC,PC,11.0906,0.006,,1,spoc-s14-s50-b0A-PC,SPOC,14:22:24.52,55:20:03.33,-39.877,0.043,135.926,0.042,2459690.565813,0.0038005,0.867588348400582,1.15195235e-05,1.38149534569689,0.29119006,0.349103,0.037866,321.48409325254,34.87502,1.43024233396102,1.0788049,1118.05899808334,1474.8095115343,10.646988,131.601,0.4555,5011.22,102.681,4.6136,0.0774824,0.745239973068237,0.0389146,-0.139143,0.0288309,0.832,0.0956565,"15,16,22,23,49,50",2019-11-14,2022-12-12,2022-12-16 12:08:26,L1 candidate,1436,1,False,False,True -198356533,1437.01,,2,4,4,2,4,4,4,1.6,30.8,5.14,0,22,6,PC,PC,8.69378,0.006,,1,qlp-s58-ffi,SPOC,17:04:33.3,56:50:33.18,10.709,0.032,-20.199,0.038,2459906.552227,0.0024492,18.84101,8.65e-05,5.82,0.815,0.304049,0.012256,280.0,11.2879,2.11414,0.106412,104.735,891.0,21.0,103.297,0.183,6093.0,124.709,4.32207,0.0785303,1.22,0.05,,,1.144,0.152159,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58",2019-11-14,2023-02-03,2023-02-18 00:00:00,L1 candidate; variable host,1437,1,False,False,True -229650439,1438.01,,2,4,2,2,3,4,4,6.6,65.8,9.65,1,12,5,PC,PC,10.3237,0.006,,1,qlp-s58-ffi,SPOC,18:43:41.71,74:56:16.2,-23.084,0.039,53.295,0.04,2459901.727282,0.0011927,5.1396634,9.1e-06,0.766,0.371,0.738552,0.274804,680.0,253.072,3.08154,0.373318,53.8627,754.0,18.0,110.513,0.25,5374.0,183.0,5.96065,0.332801,0.82,0.05,,,0.9,0.111979,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,53,54,55,56,57,58,60",2019-11-14,2023-02-27,2023-02-27 00:00:00,potential multi,1438,1,True,False,True -229650439,1438.02,,1,4,1,1,3,4,4,2.4,37.7,6.2,1,12,5,PC,PC,10.3237,0.006,,2,qlp-s60-ffi,SPOC,18:43:41.71,74:56:16.2,-23.084,0.039,53.295,0.04,2459953.278936,0.0018243,9.4280907,2.44e-05,1.355,0.302,0.854811,0.066529,787.0,61.2734,2.37465,0.169083,13.1589,530.0,18.0,110.513,0.25,5374.0,183.0,5.96065,0.332801,0.82,0.05,,,0.9,0.111979,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,53,54,55,56,57,58,60",2020-02-21,2023-02-27,2023-03-03 12:11:24,potential multi,1438,2,True,False,True -232982558,1439.01,,3,4,4,3,4,4,4,1.6,20.1,13.04,0,13,3,PC,PC,9.98671,0.006,,1,qlp-s57-ffi,SPOC,16:07:03.34,67:52:39.51,-0.587,0.062,-20.618,0.079,2459864.518772,0.0037596,27.6439289,0.0001617,5.265,0.674,0.489777,0.025817,451.0,23.7781,3.64999,0.203888,32.947,667.0,15.0,230.306,2.3345,5873.0,123.835,4.043,0.0782199,1.62,0.08,,,1.063,0.135876,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57",2019-11-14,2022-12-13,2022-12-16 12:08:26,2 stars in pixel; potential L1 planet,1439,1,False,False,True -233617847,1440.01,,2,4,2,2,4,4,4,1.8,24.8,8.02,0,1,4,PC,PC,9.80972,0.008,,1,qlp-s60-ffi,SPOC,18:55:10.69,64:31:52.93,5.121,0.119,7.189,0.084,2459956.401035,0.0054017,15.5174519,0.0001366,5.322,0.731,0.471312,0.020174,434.0,18.5805,2.43592,0.167012,207.048,1056.0,19.0,237.152,2.6445,5780.0,,4.438,,1.34,0.08,,,,,"14,15,16,17,18,20,21,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,57,58,59,60",2019-11-14,2023-02-27,2023-03-03 12:11:24,Three bright stars within TESS pixel; potential multi and L1 candidate,1440,1,True,False,True -233617847,1440.02,,2,4,2,2,4,4,4,1.3,18.3,3.26,0,1,4,PC,PC,9.80972,0.008,,2,spoc-s14-s60-b0A-PC,SPOC,18:55:10.69,64:31:52.93,5.121,0.119,7.189,0.084,2459656.057163,0.0138385,4.62742058605696,2.6198748e-05,4.65825734044037,0.2895078,0.165494,0.016945,152.414292428404,15.607096,1.43332,0.137271,557.816351060026,1239.48866537389,9.551655,237.152,2.6445,5780.0,,4.438,,1.34,0.08,,,,,"14,15,16,17,18,20,21,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,57,58,59,60",2020-09-23,2023-05-25,2023-05-25 00:00:00,low SNR; potential multi,1440,2,True,False,True -233951353,1441.01,,2,4,2,2,4,4,4,1.2,22.1,5.94,1,8,6,PC,PC,9.48477,0.006,,1,qlp-s55-ffi,SPOC,20:21:39.1,58:08:26.98,-24.562,0.068,-83.286,0.069,2459800.03515,0.0116236,22.0922114,0.0003416,5.185,0.821,0.358352,0.001247,330.0,1.1481,2.30169,0.184721,51.9857,748.0,9.0,141.133,0.7425,5885.0,201.605,4.27782,0.0879743,1.24,0.06,,,1.067,0.158727,"14,15,16,17,41,55",2019-11-14,2022-11-09,2022-12-14 12:09:24,,1441,1,False,False,True -235683377,1442.01,,2,4,4,2,4,4,4,9.5,13.0,1.77,9,0,3,CP,CP,12.4934,0.007,,1,spoc-s14-s55-b0A-CP,SPOC,19:09:10.1,74:10:27.39,82.064,0.065,462.813,0.066,2459768.708421,0.0007204,0.40906805810863,3.7168254e-06,0.616572589630407,0.09830363,1.391969,0.067133,1281.22946645435,61.829594,1.18337788438282,0.2699512,207.024243613572,967.442252888542,30.293798,41.1659,0.06165,3328.0,157.0,4.91612,0.00465389,0.308798998594284,0.00922995,,,0.286682,0.0201815,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55",2019-11-14,2023-02-22,2023-02-25 12:10:55,TOI-1442 b,1442,1,False,False,True -237232044,1443.01,,2,4,2,2,4,4,4,1.1,34.6,5.34,0,14,3,PC,PC,9.9377,0.006,,1,qlp-s60-ffi,SPOC,19:49:35.68,76:08:21.04,-88.066,0.047,21.781,0.056,2459917.360815,0.0024043,23.5406772,9.26e-05,4.094,0.364,1.129753,0.043515,1040.0,40.0778,2.17048,0.140065,16.369,560.0,29.0,85.8034,0.2054,5236.0,125.328,4.63898,0.0858843,0.75,0.04,,,0.89,0.112315,"14,16,17,18,19,20,23,24,25,26,40,47,49,50,52,53,54,57,58,59,60",2019-11-14,2023-02-27,2023-03-03 12:11:24,faint star 0.5 arcsec away,1443,1,False,False,True -258514800,1444.01,,2,5,5,2,4,4,4,6.3,56.2,3.16,1,16,3,CP,CP,10.1522,0.006,,1,spoc-s14-s55-b0A-CP,SPOC,20:21:53.98,70:56:37.34,46.402,0.035,-20.689,0.034,2458711.365492,0.0007339223,0.470280074918344,5.9178387e-06,1.41086467006075,0.14614886,0.232581,0.015845,214.192244995233,14.593391,1.58905126431362,0.20889829,5028.50964604488,2147.72944586989,17.420979,125.463,0.336,5466.0,121.494,4.48625,0.0772158,0.924989998340607,0.0470452,,,0.956,0.11332,"15,16,17,18,19,22,24,25,26,49,52,58,59",2019-11-14,2023-02-23,2023-02-25 12:10:55,TOI-1444 b,1444,1,False,False,True -259172391,1445.01,,2,4,2,3,4,4,4,1.9,26.4,7.69,3,3,5,PC,PC,10.6074,0.006,,1,qlp-s52-tois,SPOC,19:31:04.26,71:29:50.49,4.791,0.046,-6.731,0.059,2459767.018169,0.0040917,9.8130697,5.69e-05,3.91,0.337,0.684229,0.000524,630.0,0.482368,2.67352,0.1451,175.261,1013.0,19.0,215.246,1.077,6240.0,153.608,4.46607,0.0900542,1.06,0.05,,,1.208,0.195498,"14,15,16,17,18,19,20,21,22,23,25,26,40,41,47,48,49,50,51,52",2019-11-14,2022-10-24,2022-12-14 12:09:24,variable host; potential multi,1445,1,True,False,True -259172391,1445.02,,2,4,2,2,4,4,4,2.0,25.2,5.29,3,3,5,PC,PC,10.6074,0.006,,2,qlp-s52-tois,SPOC,19:31:04.26,71:29:50.49,4.791,0.046,-6.731,0.059,2459740.829189,0.0038541,4.7842093,3.02e-05,2.947,0.303,0.42352,0.000489,390.0,0.450419,2.14401,0.124344,428.772,1267.0,10.0,215.246,1.077,6240.0,153.608,4.46607,0.0900542,1.06,0.05,,,1.208,0.195498,"14,15,16,17,18,19,20,21,22,23,25,26,40,41,47,48,49,50,51,52",2020-07-16,2022-10-24,2022-12-14 12:09:24,potential multi; close to 2:1 resonance,1445,2,True,False,True -294471966,1446.01,,2,4,2,2,4,4,4,3.0,36.9,6.69,1,3,7,PC,PC,10.7502,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,20:08:00.35,51:21:42.46,9.093,0.045,-25.93,0.052,2458689.364498,0.0020581072,6.3170656618624,2.3258925e-05,2.44669540600278,0.26879466,0.74761,0.061772,688.33759770555,56.892185,2.47205156686813,0.35720453,108.322065069423,822.808903118927,12.026308,133.863,0.4375,5180.0,101.324,4.54308,0.0765937,0.830309987068176,0.0398744,0.201,0.024,0.878,0.102184,"14,15,16,41,54,55",2019-11-14,2023-03-14,2023-03-24 12:12:10,,1446,1,True,False,True -294471966,1446.02,,2,4,2,2,4,4,4,1.8,25.7,3.59,1,3,7,PC,PC,10.7502,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,20:08:00.35,51:21:42.46,9.093,0.045,-25.93,0.052,2458685.433408,0.0020438796,4.50573867941481,1.9369194e-05,1.88567497968259,0.4555105,0.465604,0.058049,428.745645466759,53.46363,1.71331213224153,2.74371,169.974113750613,920.906304024186,8.001607,133.863,0.4375,5180.0,101.324,4.54308,0.0765937,0.830309987068176,0.0398744,0.201,0.024,0.878,0.102184,"14,15,16,41,54,55,56",2023-03-02,2023-05-19,2023-06-16 12:14:51,low SNR; potential multi,1446,2,True,False,True -298073824,1447.01,,3,5,5,3,3,4,4,3.3,24.0,8.46,0,3,5,PC,APC,8.1033,0.006,,1,qlp-s53-tois,SPOC,13:25:20.84,75:58:57.77,-7.486,0.046,-1.625,0.043,2459754.50673,0.0164713,1.2272251,3.37e-05,3.528,0.776,0.04343,0.006938,40.0,6.39038,2.8374,,15033.0,,10.0,309.2709,,6906.0,,4.438,,4.12,,,,,,"14,15,20,21,40,41,47,48,53",2019-11-14,2022-11-30,2022-12-14 12:09:24,Possibly stellar variability; possible phase modulations (~10s of ppm),1447,1,False,False,True -343628284,1448.01,,2,4,4,2,4,4,4,1.6,44.4,7.46,4,1,5,PC,PC,13.1717,0.007,,1,spoc-s57-b0A,SPOC,21:05:17.76,57:46:15.94,-15.721,0.074,-64.779,0.065,2459857.185608,0.0054910127,8.09708185596449,0.0026823257,3.12785200022151,0.65918344,5.140159,0.653181,4723.07243764194,601.42126,2.63540427655515,0.835383,5.36322753762497,388.129189354761,7.6244526,73.3345,0.17285,3391.0,157.0,4.84373,0.0021442,0.381585985422134,0.0113779,,,0.370553,0.0202547,"15,16,57",2019-11-14,2023-01-30,2023-02-09 12:10:04,There is scattered light which may have caused the centroid shift.,1448,1,False,False,True -356158613,1449.01,,5,5,5,5,5,5,5,,,12.03,17,2,5,PC,FA,10.745,0.033,,1,spoc-s14-s55-b0A-PC,SPOC,20:02:50.08,39:40:06.14,146.31,0.044,51.616,0.044,2458713.009359,0.0055065784,0.0,0.0,3.41772503783303,0.34943599,2.355692,0.516141,2167.32073740585,475.2706,3.49242897275255,0.6816561,1.31246848819892,272.987003113362,9.648746,56.3228,0.0867,5780.0,,4.64751,0.0177883,0.604385018348694,0.0249697,,,0.591652,0.0246673,"14,15,41,54,55",2019-11-14,2023-03-14,2023-03-24 12:12:10,single transit,1449,1,True,True,True -356158613,1449.02,,1,4,1,2,4,4,4,4.6,49.6,3.24,17,2,5,PC,PC,10.745,0.033,,2,spoc-s14-s55-b0A-PC,SPOC,20:02:50.08,39:40:06.14,146.31,0.044,51.616,0.044,2458683.580594,0.001140328,2.36918487736744,8.631766e-06,1.68403743137054,0.55001986,0.759533,0.090861,699.311340204027,83.682495,1.61420100665226,2.003733,427.983130720338,1160.04920929578,11.532655,56.3228,0.0867,5780.0,,4.64751,0.0177883,0.604385018348694,0.0249697,,,0.591652,0.0246673,"14,15,41,54,55",2019-11-14,2023-03-14,2023-03-24 12:12:10,potential multi; crowded field,1449,2,True,False,True -377293776,1450.01,,2,4,4,2,4,4,4,4.5,12.6,1.33,7,3,8,PC,PC,10.0306,0.007,,1,spoc-s14-s55-b0A-PC,SPOC,19:07:24.98,59:05:11.85,69.923,0.055,160.881,0.055,2459662.335574,0.001976,2.04392678076552,4.062587e-06,1.00893699022404,0.1464526,0.505194,0.025402,465.192987490552,23.395939,1.09248075777287,0.37498668,44.9492523573585,660.389816588802,23.923962,22.4467,0.01315,3407.0,157.0,4.7606,0.00697081,0.473603010177612,0.0139457,,,0.471371,0.0201897,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,55",2019-11-14,2023-03-14,2023-06-10 00:00:00,L1 candidate; 2 stars in pixel; other star is TIC 1717871768 (Tmag = 13.41),1450,1,False,False,True -417931607,1451.01,,2,5,5,2,4,4,4,2.4,44.5,6.67,1,26,6,PC,PC,8.9989,0.006,,1,qlp-s48-tois,SPOC,12:26:05.83,61:15:32.14,-5.716,0.038,-26.87,0.035,2459620.434272,0.0034058,16.5379353,9.78e-05,2.755,0.584,0.575593,0.000973,530.0,0.896087,2.47266,0.164395,29.7295,650.0,17.0,91.9362,0.21725,5781.0,130.458,4.43068,0.0794308,1.03,0.05,,,1.04,0.131855,"14,15,21,22,41,48",2019-11-14,2022-07-07,2022-12-14 12:09:24,potential L1 planet,1451,1,False,False,True -420112589,1452.01,,2,4,2,2,4,4,4,0.6,53.5,3.25,3,0,3,CP,CP,12.295,0.007,,1,spoc-s14-s60-b0A-CP,SPOC,19:20:41.75,73:11:42.39,7.83,0.077,-73.913,0.086,2459731.359311,0.0034263,11.0619937445918,1.5271762e-05,1.75877767131505,0.17191255,3.533427,0.167159,3249.11643336922,153.94768,1.61849437577191,0.22460696,2.0225025178351,304.152938956668,19.909908,30.5212,0.0391,3248.0,157.0,4.95407,0.00680159,0.275364011526108,0.00934128,,,0.24878,0.0207334,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,54,55,56,57,58,59,60",2019-11-14,2023-06-13,2023-06-16 12:14:51,TOI-1452 b,1452,1,False,False,True -198390247,1453.01,,2,4,2,2,4,4,4,3.5,51.4,5.21,6,4,6,PC,PC,10.1426,0.006,,1,qlp-s60-ffi,SPOC/QLP,17:12:53.58,57:11:52,-71.005,0.036,-0.024,0.039,2459962.007569,0.0012599,6.58868,9.9e-06,1.671,0.116,0.976516,0.032322,899.0,29.7692,2.13501,0.150193,26.7681,633.0,35.0,78.7415,0.11935,4920.0,127.0,4.64,0.09,0.71,0.05,,,0.81,0.0962979,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,56,57,59,60",2019-11-14,2023-02-27,2023-03-03 12:11:24,possible multi,1453,1,True,False,True -198390247,1453.02,,2,4,2,2,4,4,4,1.5,4.5,1.8,6,4,6,PC,PC,10.1426,0.006,,2,qlp-s60-ffi,SPOC,17:12:53.58,57:11:52,-71.005,0.036,-0.024,0.039,2459962.284551,0.0032792,4.3135116,1.86e-05,1.884,0.935,0.309479,0.028949,285.0,26.6623,1.18824,0.105363,146.602,969.0,14.0,78.7415,0.11935,4920.0,127.0,4.64,0.09,0.71,0.05,,,0.81,0.0962979,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,56,57,59,60",2020-02-21,2023-02-27,2023-03-03 12:11:24,potential multi; slight depth-aperture correlation,1453,2,True,False,True -294179385,1454.01,,3,4,4,3,4,4,4,86.4,218.5,128.25,6,3,7,PC,PC,11.1612,0.006,,1,qlp-s41-tois,QLP,20:03:22.15,53:17:39.05,7.356,0.062,-13.367,0.051,2459770.637199,0.00055803795,2.679411,2.1e-06,2.836,0.043,15.373784,0.000943,14060.0,0.868754,13.999,0.679875,888.614,1521.0,142.0,289.372,2.668,6075.0,137.6,4.38,0.08,1.14,0.05,,,1.136,0.159092,"14,15,16,41,54",2019-11-18,2022-10-11,2022-12-14 12:09:24,match to FP TOI 1310.01; this is the correct source,1454,1,False,False,True -387259626,1455.01,,5,5,5,5,3,5,5,508.6,1430.9,317.0,2,2,2,PC,APC,10.1543,0.006,,1,qlp-s52-tois,QLP,20:34:40.87,66:26:25.38,33.7,0.039,20.793,0.04,2459852.060009,0.000793,3.623143,2.9e-06,3.431,0.375,19.776564,0.986887,18050.0,908.544,34.0676,4.69417,2840.57,2033.0,491.0,245.692,1.151,6458.8,157.5,4.32,0.09,1.35,0.06,,,1.378,0.24071,"15,16,17,18,24,25,52,56",2019-11-21,2022-12-05,2022-12-14 12:09:24,Could be large object if on 387259617; 4.8 sigma odd/even; secondary eclipse consistent with a ultrahot Jupiter; large ; TFOP SB1/APC,1455,1,False,False,True -199376584,1456.01,,3,5,5,3,4,4,4,47.8,279.1,74.17,1,26,3,CP,CP,8.0417,0.006,,1,qlp-s55-ffi,QLP,20:26:57.87,33:44:39.8,-36.869,0.042,-14.651,0.04,2459814.965519,0.0003073,18.711674,1.23e-05,6.146,0.071,6.850849,0.000112,6290.0,0.103014,10.1733,0.450847,95.266,870.0,266.0,80.6665,0.19125,6125.0,122.2,4.29,0.08,1.27,0.06,,,1.16,0.161728,"14,15,41,55",2019-11-21,2022-11-09,2022-12-14 12:09:24,HD 332231 b,1456,1,False,False,True -176860064,1457.01,,5,5,5,5,1,5,5,,,26.45,0,1,0,PC,APC,7.1145,0.006,,1,qlp-s57-ffi,SPOC/QLP,23:39:20.8,45:43:11.46,-4.6,1.1,-10.7,1.1,2459875.927247,0.0013685,6.3768548,3.14e-05,2.452,0.21,2.815705,0.361428,2590.0,332.832,,,774.775,1469.0,94.0,41.2482,,6393.0,280.6,,,,,,,,,"17,57",2019-12-05,2022-12-13,2022-12-16 12:08:26,v-shaped; no stellar parameters; host may be a giant star,1457,1,False,False,True -191284318,1458.01,,5,5,5,5,5,5,5,112.0,285.6,131.18,0,1,1,KP,KP,10.374,0.006,,1,spoc-s57-b0A,SPOC/QLP,00:38:17.53,42:27:47.15,-21.564,0.081,-4.588,0.149,2459855.001291,0.00028525738,2.77592252129908,4.9002407e-05,3.00278443748612,0.022340756,13.913988,0.091508,12733.4911778921,84.27889,14.235101014044,0.7287306,1186.35418677765,1496.83297274999,135.20555,226.637,4.388,6140.0,125.7,4.32,0.08,1.24181997776031,0.0629548,0.12,0.08,1.164,0.160159,"17,57",2019-12-05,2023-01-20,2023-01-26 12:09:41,HAT-P-16 b,1458,1,False,False,True -16920150,1459.01,,5,5,5,5,5,5,5,3.0,43.7,6.79,2,3,5,PC,FA,10.1583,0.006,,1,spoc,SPOC,01:17:26.83,26:44:45.42,55.636,0.072,-51.974,0.07,2458765.545981,0.0045762593,9.15593402361673,0.0031593652,3.14120217238704,0.8620384,0.986558,0.135285,908.241256215217,124.59452,2.49490922786496,2.5167987,66.1504005707602,727.365786682157,7.5956173,101.358,0.417,5219.0,133.609,4.55718,0.0853711,0.82204,0.047289,,,0.889,0.115541,17,2019-12-05,2019-12-05,2023-07-05 12:02:58,,1459,1,False,False,True -17005768,1460.01,,5,5,5,5,4,5,5,82.3,265.8,115.19,1,2,5,PC,APC,9.9176,0.006,,1,qlp-s57-ffi,SPOC,01:22:26.55,26:55:32.62,14.4,1.8,-4.7,1.8,2459880.592672,0.000474,6.8424955,6.2e-06,3.002,0.225,9.038269,2.013866,8290.0,1853.12,13.2084,,439.995,,62.0,150.102,,5766.0,,4.438,,1.13,,,,,,"17,57",2019-12-05,2022-12-13,2022-12-16 12:08:26,possible flaring host star,1460,1,False,False,True -44631965,1461.01,,5,5,5,5,2,5,5,122.1,184.7,317.0,1,0,1,PC,APC,11.3805,0.008,,1,spoc,SPOC,01:28:56.73,35:51:53.47,31.744,0.113,9.327,0.195,2458767.317052,0.00047231515,3.56867765785675,0.00014979139,2.58111785314769,0.029443653,22.06908,0.290018,20121.1854663641,267.08032,20.2503750895707,1.2539213,876.963913021592,1387.92238468262,79.08283,359.959,15.2915,6046.0,127.034,4.26929,0.0885618,1.28529,0.0787688,,,1.12,0.147646,17,2019-12-05,2019-12-05,2022-12-14 12:09:24,,1461,1,False,False,True -188768068,1462.01,,2,5,5,2,4,4,4,8.6,17.9,2.21,0,19,2,CP,CP,5.8961,0.006,,1,qlp-s60-ffi,SPOC,17:25:23.9,52:47:25.7,-91.047,0.055,-49.639,0.059,2459959.563044,0.0018769,2.1779465,6.7e-06,2.101,0.247,0.121609,0.004262,112.0,3.92507,1.28476,0.0673155,802.727,1482.0,31.0,27.0498,0.0215,5801.89,124.625,4.25132,0.0751595,1.26,0.06,,,1.04,0.131541,"17,20,24,25,26,40,47,50,51,53,54,57,60",2019-12-05,2023-02-27,2023-03-03 12:11:24,HD 158259 b,1462,1,False,False,True -190998418,1463.01,,5,5,5,5,5,5,5,46.6,124.4,99.4,0,0,0,KP,KP,12.0401,0.008,,1,spoc-s57-b0A,SPOC,00:28:12.94,42:03:40.84,0.919,0.064,-6.509,0.1,2459856.144266,0.0007072609,2.87910228613891,0.00012501773,2.74976833578452,0.058875646,12.477717,0.20457,11426.6170088394,188.39821,12.0920506465919,0.7181252,693.232008107003,1308.69788722906,43.08094,367.658,7.922,5583.0,127.666,4.33946,0.0771526,1.11459994316101,0.0614975,,,0.99,0.12069,"17,57",2019-12-05,2023-01-30,2023-02-09 12:10:04,Qatar-5 b,1463,1,False,False,True -229944666,1464.01,,2,4,2,4,4,4,4,2.0,30.0,6.85,4,3,5,PC,PC,10.8597,0.007,,1,qlp-s49-tois,SPOC,19:13:32.39,62:12:11.25,14.258,0.046,13.052,0.051,2459643.724417,0.0043591,11.3126774,7.89e-05,2.62,0.314,0.847205,0.00134,780.0,1.23453,2.4924,0.17736,31.5192,660.0,13.0,151.654,0.5295,5290.0,129.841,4.53286,0.0861306,0.85,0.05,,,0.909,0.115465,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49",2019-12-05,2022-08-19,2022-12-14 12:09:24,half of the sectors have significant centroid offset in s14-s41,1464,1,False,False,True -236887394,1465.01,,5,5,5,5,5,5,5,143.2,299.7,105.07,0,0,2,KP,KP,11.8478,0.006,,1,qlp-s51-tois,SPOC,20:13:31.65,65:09:44.39,12.636,0.048,58.17,0.041,2459717.423096,0.0001255,1.4200248,3e-07,1.431,0.124,26.07514,0.002288,23730.0,2.10693,12.5242,0.748036,382.328,1231.0,424.0,185.615,0.801,4910.0,108.354,4.57248,0.0828462,0.77,0.05,0.2,0.1,0.804,0.0974869,"15,16,17,18,21,24,25,41,48,51,55",2019-12-05,2023-03-15,2023-03-15 00:00:00,Qatar-1 b,1465,1,False,False,True -237086564,1466.01,,1,4,4,1,4,4,4,7.9,54.3,6.39,11,3,7,PC,PC,11.0278,0.006,,1,qlp-s55-tois,SPOC,20:29:35.17,61:33:02.61,71.523,0.047,67.97,0.042,2459823.877249,0.0034836,1.8718991,8e-06,1.475,0.299,0.999337,0.09387,920.0,86.4538,2.40733,0.800205,167.099,1001.0,15.0,86.5783,0.1684,4201.0,125.587,4.5079,0.110712,0.75,0.07,,,0.66,0.082238,"15,17,24,55",2019-12-05,2022-12-07,2022-12-16 12:08:26,potential L1 candidate,1466,1,False,False,True -240968774,1467.01,,3,4,4,3,4,4,4,3.5,64.4,4.17,3,12,7,PC,PC,10.5977,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,01:16:27.51,49:13:59.3,108.394,0.069,-149.059,0.055,2458766.989118,0.0011211189,5.97113566694453,1.3706746e-05,1.54786707055186,0.384534,1.561443,0.118342,1437.108602693,108.99147,1.87211450466785,1.216491,18.0882455179684,525.979551738445,12.412292,37.4418,0.05465,3834.0,157.0,4.74552,0.00770691,0.490736991167068,0.0145151,,,0.488826,0.0202394,"17,18,58",2019-12-05,2023-05-19,2023-06-16 12:14:51,,1467,1,False,False,True -243185500,1468.01,,1,5,5,1,4,4,4,1.0,74.2,4.72,20,6,9,PC,CP,10.8858,0.008,,1,spoc-s01-s46-b0A,SPOC,01:06:36.93,19:13:29.71,-41.465,0.227,-222.697,0.103,2459450.356025,0.0014795243,15.5324384891986,3.260733e-05,1.76407174720282,0.26032037,3.194039,0.162414,2937.49532135865,149.57779,2.01357598536411,0.55100846,2.13991876520286,308.474359638833,19.714228,24.7399,0.0468,3382.0,157.0,4.85532,0.00108728,0.369305998086929,0.010922,,,0.356472,0.020177,"17,42,43",2019-12-05,2022-07-15,2023-03-03 12:03:02,possible multi,1468,1,True,False,True -243185500,1468.02,,3,5,5,3,4,4,4,7.3,14.8,2.72,20,6,9,PC,CP,10.8858,0.008,,2,spoc-s01-s46-b0A,SPOC,01:06:36.93,19:13:29.71,-41.465,0.227,-222.697,0.103,2459448.308156,0.0015203289,1.88053101731743,6.7970254e-06,1.19116842909093,0.15375616,1.318892,0.108248,1214.00665931907,99.69469,1.4548629228926,0.17426977,35.7280633389598,623.551198755523,15.640335,24.7399,0.0468,3382.0,157.0,4.85532,0.00108728,0.369305998086929,0.010922,,,0.356472,0.020177,"17,42,43",2019-12-05,2022-07-15,2023-03-03 12:03:00,potential multi,1468,2,True,False,True -283722336,1469.01,,5,5,5,5,5,5,5,28.4,56.8,2.4,0,10,2,KP,KP,4.6278,0.007,,1,spoc-s57-b0A,SPOC,23:13:20.93,57:10:10.65,2074.52,0.137,294.936,0.123,2459854.66819,0.0007237028,3.0929673875288,0.00014894047,0.93157038768455,0.1117986,0.268766,0.012864,247.511982633579,11.848184,1.35361726412756,0.34232193,192.927876123615,950.535837361854,17.47232,6.53127,0.003845,4884.29,142.835,4.59034,0.0990508,0.750598013401031,0.0575351,0.095686,0.0208131,0.8,0.096888,"17,24,57",2019-12-05,2023-01-31,2023-02-09 12:10:04,HD 219134 b,1469,1,True,False,True -283722336,1469.02,,5,5,5,5,5,5,5,14.0,40.7,2.18,0,10,2,KP,KP,4.6278,0.007,,2,qlp-s57-ffi,SPOC,23:13:20.93,57:10:10.65,2074.52,0.137,294.936,0.123,2459868.871705,0.0010461,6.7650278,1.42e-05,1.444,0.275,0.238888,0.014603,220.0,13.4494,1.27931,0.104404,32.4433,664.0,24.0,6.53127,0.003845,4884.29,142.835,4.59034,0.0990508,0.75,0.06,0.095686,0.0208131,0.8,0.096888,"17,24,57",2019-12-05,2023-01-31,2023-02-09 12:10:04,HD 219134 c,1469,2,True,False,True -284441182,1470.01,,2,5,5,2,4,4,4,7.2,70.5,5.49,7,3,7,PC,CP,11.4752,0.007,,1,spoc-s58-b0A,SPOC,00:40:21.39,61:12:48.19,48.576,0.044,-55.602,0.043,2459883.443614,0.002269791,2.52728224243905,0.00038589767,1.26586097030192,0.41272178,2.007739,0.212469,1847.4872235657,195.67229,2.2007181499311,1.1227379,45.3608213669348,661.896336049759,7.901595,51.9503,0.0745,3624.0,157.0,4.74607,0.00772316,0.490119993686676,0.0145314,,,0.488207,0.0202643,"17,18,24,58",2019-12-05,2023-02-21,2023-06-16 12:02:55,crowded field; L1 candidate,1470,1,False,False,True -306263608,1471.01,,3,5,5,3,4,4,4,6.5,100.8,14.54,7,32,8,PC,CP,8.5725,0.006,,1,qlp-s43-tois,SPOC,02:03:37.2,21:16:52.78,158.824,0.069,107.675,0.06,2459473.701796,0.0009557,20.7729752,7.96e-05,4.821,0.189,1.749444,0.000388,1610.0,0.357195,3.91842,0.190647,37.3427,688.0,35.0,67.5478,0.15625,5625.56,114.232,4.46798,0.0745542,0.97,0.04,,,1.0,0.128083,"17,42,43",2019-12-05,2022-04-19,2023-05-23 12:02:57,potential multi,1471,1,True,False,True -306263608,1471.02,,3,5,5,3,4,4,4,0.0,26.6,11.68,7,32,8,PC,CP,8.5725,0.006,,2,spoc-s01-s46-b0A,SPOC/QLP,02:03:37.2,21:16:52.78,158.824,0.069,107.675,0.06,2458779.190119,0.0017324799,683.328173079769,0.00042282513,6.5572928209488,0.21579932,1.350665,0.058184,1243.23491399715,53.58769,3.43167974692569,0.35929757,3.957139805937,359.720425217954,7.1028357,67.5478,0.15625,5625.56,114.232,4.46798,0.0745542,0.966153979301453,0.0443216,,,1.0,0.128083,"17,42,43",2022-03-24,2022-04-20,2023-05-23 12:02:58,potential multi; previously a single now a duo with max period of ~683 days,1471,2,True,False,True -306955329,1472.01,,3,4,4,3,4,4,4,10.4,74.6,18.37,3,12,6,PC,PC,10.5508,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,00:56:27.42,48:38:15.06,103.372,0.093,-13.429,0.092,2459885.568784,0.002879173,6.36341055157919,8.345735e-06,2.69230204489141,0.11023128,2.574829,0.105945,2368.69520266162,97.57373,4.478469845752,0.37447014,110.020069858168,826.014609539811,20.85026,121.84,1.317,5103.0,131.442,4.50257,0.0887877,0.859483003616333,0.0540654,,,0.857,0.107804,"17,57,58",2019-12-05,2023-05-18,2023-06-16 12:14:51,possible unrelated transit near TBJD 2877; variable host,1472,1,False,False,True -352413427,1473.01,,1,4,1,1,4,4,4,6.2,81.3,5.34,1,33,12,PC,PC,8.297,0.006,,1,qlp-s57-ffi,SPOC,01:02:23.55,37:11:07.58,-9.876,0.068,-10.13,0.064,2459873.225009,0.0016465,5.254492,1.9e-05,2.958,0.43,0.456105,0.027882,420.0,25.6797,2.16083,0.118904,317.956,1176.0,18.0,67.6203,0.20465,5958.0,121.256,4.48217,0.0757701,0.99,0.04,,,1.09,0.142073,"17,57",2019-12-05,2022-12-13,2022-12-16 12:08:26,L1 candidate,1473,1,False,False,True -427654774,1474.01,,5,5,5,5,5,5,5,4.7,84.7,13.41,2,0,0,PC,FP,14.1431,0.008,,1,spoc,SPOC,23:17:09.38,70:11:26.07,136.449,0.073,129.094,0.061,2458765.042474,0.003387887,5.222621,0.0014355369,4.6936290484816,0.6133603,17.366607,2.182041,15867.9920175369,2007.716,3.72160154867344,0.3812006,2.79085837659531,329.650849473633,8.069622,83.8106,0.3077,3453.0,157.0,4.95337,0.00864275,0.275946,0.00848293,,,0.249431,0.0202596,"17,18",2019-12-05,2019-12-05,2022-12-14 12:09:24,3-sigma centroid offset towards another star.,1474,1,False,False,True -431514478,1475.01,,1,4,1,3,4,4,4,7.6,66.0,24.43,3,1,5,PC,PC,8.77994,0.006,,1,spoc,SPOC,23:48:00.31,49:47:25.92,13.987,0.055,-0.414,0.047,2458767.618296,0.0017830785,8.49535132634527,0.0012701285,0.906055458598115,0.4871705,0.780368,0.10452,718.486944789073,96.2614,5.29616992031407,5.2599535,2555.30624680163,1813.34520704192,8.222785,294.237,3.405,10012.0,185.641,4.29876,0.0639379,1.88016,0.0501608,,,2.565,0.341555,17,2019-12-05,2019-12-05,2023-05-30 00:00:00,Significant scattered light; only two transits; period could be doubled; second transit deeper than the first one; low priority,1475,1,False,False,True -432549364,1476.01,,5,5,5,5,5,5,5,102.6,255.0,100.05,0,0,2,KP,KP,10.2242,0.006,,1,spoc-s17-b02,SPOC/QLP,00:01:26.9,39:23:01.66,-9.771,0.055,-7.679,0.042,2458765.533801,0.00029897763,1.21750886518977,2.7541135e-05,2.73129892349872,0.028347816,7.175923,0.081136,6587.47593356041,74.7258,12.1383897707538,0.62173665,5879.56444678016,2233.34613989387,84.048904,268.43,3.023,6596.04,156.59,4.2467,0.0916891,1.46216,0.0728015,0.131,0.009,1.376,0.226968,"17,57",2019-12-05,2022-12-13,2022-12-14 12:09:24,KELT 1b,1476,1,False,False,True -240681314,1477.01,,5,5,5,5,5,5,5,110.1,145.5,317.0,0,0,0,KP,KP,10.6496,0.006,,1,spoc-s57-b0A,SPOC,00:37:50.1,51:17:19.6,-6.883,0.068,2.689,0.046,2459855.931978,0.00054777006,2.73248092340943,9.5258445e-05,2.21393408356751,0.03064199,10.416724,0.269918,9548.28060119954,248.573,18.2785374900777,0.9596931,2531.13355415507,1809.04143758591,84.82118,370.284,7.7775,6695.0,131.35,4.17494,0.094521,1.61270999908447,0.0774221,,,1.419,0.248268,"17,57",2019-12-05,2023-01-30,2023-02-09 12:10:04,WASP-93 b,1477,1,False,False,True -409794137,1478.01,,3,5,5,3,4,4,4,51.2,212.4,102.44,2,39,7,CP,CP,10.2042,0.006,,1,qlp-s61-ffi,QLP,08:25:44.1,-13:33:34.37,-8.277,0.058,67.943,0.046,2459982.236347,0.0011443,10.1802014,1.52e-05,4.613,0.834,12.558316,3.242698,11500.0,2982.18,12.3422,1.6935,261.013,1119.0,118.0,152.892,0.91,5623.0,125.6,4.4,0.08,1.04,0.05,,,0.996,0.124568,"7,8,34,61",2019-12-05,2023-03-27,2023-03-31 12:12:24,TOI-1478 b,1478,1,False,False,True -421308357,1479.01,,5,5,5,5,5,5,5,39.7,83.4,317.0,1,0,0,EB,FP,10.364,0.007,,1,qlp-s58-ffi,QLP,19:15:16.34,57:45:38.05,-2.124,0.043,2.593,0.044,2459919.533458,0.0006184,16.6824015,1.91e-05,3.048,0.285,5.507772,0.832442,5060.0,766.414,22.4993,1.7402,155.745,984.0,129.0,531.96,7.076,6423.0,83.8,3.74,0.09,2.63,0.12,,,1.38,0.229392,"14,15,16,17,19,20,22,23,24,26,40,41,47,49,50,53,54,55,56,57,58",2019-12-05,2023-01-23,2023-01-26 12:09:41,V-shaped. Highly likely EB. Rp>40Re. TFOP FP/EB,1479,1,False,False,True -335483600,1480.01,,5,5,5,5,5,5,5,,,56.74,8,1,6,PC,FP,8.7514,0.025,,1,spoc-s57-b0A,QLP,22:10:27.27,63:33:01.98,-0.181,0.423,-2.683,0.44,2459855.711395,0.0004687518,3.35409702513287,0.00010888845,1.90444742334937,0.030377133,6.925487,0.141085,6358.30932150129,129.93565,,,11694.4579881724,2652.25192978633,50.71672,893.093,285.67,8181.0,188.8,,,,,,,,,"16,17,57",2019-12-05,2023-01-31,2023-05-24 12:02:57,highly variable star; no stellar radius; system is published EB (https://ui.adsabs.harvard.edu/abs/2021yCat..36520120I/abstract),1480,1,False,False,False -197650870,1481.01,,5,5,5,5,5,5,5,17.1,21.1,317.0,1,2,4,PC,FP,10.3209,0.007,,1,qlp-s57-tois,QLP,22:26:49.22,52:13:40.23,2.924,0.096,-3.436,0.092,2459876.527585,0.0020251,4.3725833,2.01e-05,1.562,0.353,1.623303,0.128,1494.0,117.885,14.8833,1.18894,492.418,1312.0,15.0,1026.12,56.009,8332.0,129.9,3.54,0.09,4.02,0.24,,,2.06,0.307398,"16,17,56,57",2019-12-05,2023-05-04,2023-05-24 12:02:56,strong stellar variability; apparent odd-even may be due to bad detrending; possibly synchronized; likely too large,1481,1,False,False,False -252616865,1482.01,,3,4,3,3,4,4,4,61.2,79.1,317.0,4,5,8,PC,PC,10.0687,0.006,,1,qlp-s57-ffi,QLP,23:03:58.77,52:33:45.7,31.629,0.05,10.924,0.041,2459872.298444,0.0016023,5.7121916,2.92e-05,4.643,0.229,8.20653,0.428907,7530.0,394.96,15.3652,0.800588,913.6,1531.0,145.0,318.277,2.953,6720.0,174.1,4.09,0.09,1.79,0.07,,,1.43,0.239364,"16,17,57",2019-12-05,2022-12-13,2022-12-16 12:08:26,,1482,1,False,False,False -452803785,1483.01,,5,5,5,5,5,5,5,19.8,102.5,37.21,0,3,2,EB,FP,10.4935,0.006,,1,qlp-s56-ffi,QLP,22:33:44.41,52:38:10.81,20.218,0.046,0.439,0.055,2459844.552858,0.0037272,5.0037857,2.87e-05,4.154,0.571,2.119253,0.446752,1950.0,411.389,6.77338,0.539051,2812.53,2028.0,23.0,209.69,1.336,6109.0,156.1,4.42,0.09,1.09,0.05,,,1.15,0.168641,"16,17,56",2019-12-05,2022-11-07,2022-12-14 12:09:24,Some centroid offset; retired as TFOP FP/NEB,1483,1,False,False,False -67309890,1484.01,,5,5,5,5,5,5,5,32.5,88.0,54.29,1,1,0,PC,FP,10.2108,0.006,,1,qlp,QLP,22:52:37.49,48:33:00.04,-26.298,0.08,-17.376,0.065,2458739.46756,0.00281,1.16237,0.00022,1.33,0.185,1.300002,0.001792,1196.63,1.65083,8.9478,0.625932,1285.31,1668.0,25.0,368.134,5.24,5843.7,198.1,3.82,0.08,2.35,0.16,,,1.186,0.169052,"16,17",2019-12-05,2019-12-05,2022-12-14 12:09:24,,1484,1,False,False,False -377191482,1485.01,,5,5,5,5,5,5,5,,,26.87,1,2,3,PC,FA,8.8052,0.006,,1,qlp-s49-tois,QLP,19:03:44.91,59:09:50.67,2.004,0.06,4.538,0.052,2459673.206852,0.0808216,2.9551881,0.0003434,1.361,1.717,0.249748,0.02076,230.0,19.1207,5.60201,,158.866,989.0,9.0,386.266,4.2045,5054.0,122.0,,,6.17,,,,,,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49",2019-12-05,2022-08-16,2022-12-14 12:09:24,Giant star; likely SV,1485,1,False,False,True -233541860,1486.01,,5,5,5,5,5,5,5,14.9,13.9,2.46,0,1,0,PC,FP,9.9592,0.006,,1,qlp,QLP,18:44:47.49,62:41:08.32,-33.816,0.056,56.652,0.051,2458683.602,0.00129,0.26665,1e-05,0.98,0.096,0.33,0.000415,303.895,0.382018,1.21358,0.109004,3174.99,2091.0,20.0,44.3531,0.0525,4154.0,173.4,4.53,0.12,0.63,0.05,,,0.63,0.0827222,"14,15,16,17",2019-12-05,2019-12-05,2022-12-14 12:09:24,Potential level 1 candidate; 3 stars in pixel; TFOP FP,1486,1,False,False,True -459978312,1487.01,,3,4,3,5,5,5,5,,,317.0,0,4,2,PC,FA,5.28906,0.006,,1,qlp,QLP,17:02:15.7,64:36:03.21,-20.716,0.063,35.41,0.081,2458684.88739,0.01246,23.28798,0.00355,3.462,0.859,0.130296,0.001773,120.0,1.63296,14.6492,,11.0443,507.0,8.0,110.923,0.4225,5047.0,122.0,,,8.95,,,,,,"14,15,16,17,18,19",2019-12-05,2020-05-20,2022-12-14 12:09:24,Likely FP around evolved star,1487,1,False,False,True -198457103,1488.01,,5,5,5,5,5,5,5,3.3,6.3,2.54,0,2,1,V,FA,8.07023,0.006,,1,spoc-s14-s55-b0A-PC,QLP,17:27:41.05,57:30:38.01,-12.787,0.046,13.763,0.048,2458683.442832,0.00078194856,0.472105418556428,7.594985e-06,1.69955146412342,0.071996115,0.049096,0.004048,45.218513157096,3.728347,1.39888660135817,0.26139084,47943.4214221209,3774.00095293085,14.797877,160.832,0.574,7269.0,124.5,4.08,0.08,1.93752002716064,0.0721105,,,1.638,0.277712,"14,15,16,17,18,19,20,21,22,23,24,26,40,41,47,48,49,50,51,52,53,54,55",2019-12-05,2023-05-02,2023-05-06 12:13:45,rapid rotator; TFOP FA; retired as SV,1488,1,False,False,True -219751469,1489.01,,5,5,5,5,5,5,5,,,122.07,0,2,7,PC,FA,8.2285,0.007,,1,qlp,QLP,17:24:47.96,61:25:24.68,-8.914,0.048,22.411,0.048,2458690.04921,0.02254,6.98301,0.00234,3.472,0.903,0.293188,0.002219,270.0,2.04376,13.6402,,148.818,973.0,8.0,411.532,4.479,5118.0,122.0,,,8.4,,,,,,"14,15,16,17,18,19",2019-12-05,2020-05-20,2023-02-07 12:02:46,Possibly wrong period; some odd-even,1489,1,False,False,True -283474780,1490.01,,3,4,4,3,4,4,4,,,97.91,0,2,9,PC,APC,8.39511,0.006,,1,qlp,QLP,00:52:04.24,36:23:34.85,51.364,0.071,17.95,0.075,2458765.91435,0.01417,3.9943,0.00339,4.876,0.872,0.597319,0.002088,550.0,1.9233,11.9767,,746.666,1456.0,9.0,247.112,2.886,4939.0,122.0,,,5.11,,,,,,17,2019-12-05,2020-05-20,2023-06-18 12:02:55,Variability in the star,1490,1,False,False,True -53875855,1491.01,,3,4,3,3,4,4,4,14.1,71.7,26.44,2,3,6,PC,PC,10.3996,0.006,,1,qlp-s57-tois,QLP,00:58:36.71,34:08:52.95,36.605,0.057,-50.223,0.058,2459873.774209,0.0012165,4.4902667,1.2e-05,2.758,0.269,2.731889,0.089925,2513.0,82.8209,5.56985,0.302512,322.83,1180.0,24.0,204.881,1.587,5899.0,139.7,4.29,0.08,1.23,0.06,,,1.071,0.135311,"17,57",2019-12-05,2023-05-01,2023-05-06 12:13:45,~2 sigma odd-even in spoc-s57,1491,1,False,False,False -354594208,1492.01,,5,5,5,5,5,5,5,16.8,101.0,11.93,1,4,1,PC,FP,9.76119,0.006,,1,qlp,QLP,00:07:33.07,32:26:15.11,-4.488,0.051,-56.056,0.025,2458765.22813,0.00379,0.86673,0.00021,1.089,0.223,0.72,0.003182,662.925,2.93055,3.54647,0.369081,1519.96,1739.0,9.0,163.083,1.187,5904.0,249.1,4.31,0.07,1.25,0.1,-0.196,0.011,1.119,0.143321,17,2019-12-05,2019-12-05,2022-12-14 12:09:24,,1492,1,False,False,True -15692883,1493.01,,3,5,5,3,4,4,4,65.2,73.7,317.0,1,3,3,CP,CP,9.7116,0.01,,1,qlp-tois-update,QLP,01:09:53.94,25:40:53.94,-24.173,0.091,-10.702,0.074,2459881.926957,0.0010469,5.14124,0.00096,5.405,0.802,4.035572,0.00496,3710.0,4.56814,18.0411,1.10742,1594.76,1760.0,10.0,371.414,6.1705,6064.0,131.7,3.57,0.08,2.9,0.14,,,1.13,0.1522,"17,57",2019-12-05,2022-12-13,2022-12-14 12:09:24,WASP-187 b,1493,1,False,False,False -411608801,1494.01,,3,5,5,3,4,4,4,54.2,166.9,112.14,1,3,1,CP,CP,10.3002,0.009,,1,spoc-s14-s60-b0A-CP,QLP,01:15:58.87,21:37:00.86,21.672,0.078,-9.221,0.068,2459856.416547,0.0005794543,5.02679955085562,6.8691393e-06,2.75404398713115,0.03586621,6.925156,0.080676,6358.00607016155,74.30245,12.9814740779782,0.5946677,853.135481107791,1378.39678227359,80.41539,278.514,3.347,6434.0,129.5,4.21,0.09,1.47827994823456,0.0664975,,,1.3,0.207602,"17,42,57",2019-12-05,2023-06-13,2023-06-16 12:14:51,WASP-186 b,1494,1,False,False,True -431148743,1495.01,,5,5,5,5,5,5,5,,,6.42,1,0,0,EB,FP,8.706101,0.008,,1,qlp-s57-ffi,QLP,22:19:55.51,53:39:44.99,-6.492,0.126,-2.622,0.121,2459879.808473,0.0016243,2.6277641,1.39e-05,2.997,0.947,0.532141,1.211826,490.0,1115.51,,,1344.6,1687.0,27.0,1610.79,205.365,3294.0,11.9,,,,,,,,,"16,17,56,57",2019-12-05,2022-12-07,2022-12-16 12:08:26,Gaia parameters suggest star is a giant; transiting object likely too large; TFOP FP/NEB,1495,1,False,False,False -384045439,1496.01,,5,5,5,5,5,5,5,70.1,393.9,91.91,1,1,0,PC,FP,10.0478,0.006,,1,qlp,QLP,21:49:06.23,53:17:37.56,174.708,0.053,10.008,0.045,2458743.87066,0.00189,10.82661,0.00064,6.877,0.274,6.413894,1.281099,5890.0,1179.24,11.5303,2.66157,760.667,1463.0,39.0,78.3164,0.1766,5113.0,122.4,4.71,0.09,0.68,0.04,,,0.86,0.104235,"16,17",2019-12-05,2020-05-20,2022-12-14 12:09:24,Period is 21.65 days,1496,1,False,False,False -371673488,1497.01,,5,5,5,5,5,5,5,7.2,57.0,13.17,2,2,1,PC,FP,9.95717,0.006,,1,qlp,QLP,22:52:55.97,59:51:03.42,4.326,0.044,-2.168,0.043,2458765.48081,0.00557,0.8158,0.00035,2.353,0.351,0.42352,0.000936,390.0,0.861988,3.69088,0.232336,41590.9,3978.0,11.0,405.174,4.5835,8911.0,721.2,4.26,0.09,1.85,0.07,,,2.245,0.383082,"16,17",2019-12-05,2020-05-20,2022-12-14 12:09:24,Variable star; slight depth-aperture correlation,1497,1,False,False,False -316402246,1498.01,,5,5,5,5,5,5,5,89.8,262.3,96.32,3,0,0,EB,FP,9.6788,0.006,,1,qlp-s57-ffi,QLP,21:27:53.64,54:31:11.34,12.323,0.071,16.871,0.071,2459836.924148,0.0033566,1.4014167,9e-06,3.661,0.17,2.968113,0.389151,2730.0,358.357,11.8932,0.575633,81940.9,4713.0,113.0,265.402,2.8785,8014.0,142.1,4.32,0.07,1.6,0.05,,,1.94,0.299502,"15,16,17,56,57",2019-12-05,2022-12-12,2022-12-16 12:08:26,TFOP FP/NEB,1498,1,False,False,False -414870287,1499.01,,5,5,5,5,5,5,5,,,317.0,0,1,2,PC,FP,7.8165,0.026,,1,qlp,QLP,22:27:29.44,59:26:01.64,-3.186,0.1,-2.419,0.09,2458740.8589,0.00625,4.95898,0.00107,1.831,0.342,0.25,0.001214,230.232,1.11859,,,12.992,528.0,10.0,2509.86,350.175,3295.0,43.9,,,,,,,,,"16,17",2019-12-05,2019-12-05,2022-12-14 12:09:24,Likely giant; Rs < 10 Rsun will save it as a PC.,1499,1,False,False,False -377420580,1500.01,,5,5,5,5,5,5,5,11.1,75.8,6.9,1,2,0,PC,FP,10.1871,0.006,,1,qlp,QLP,22:47:51.54,60:10:25.08,82.14,2.0,29.76,2.0,2458765.58299,0.00811,1.4166,0.00071,2.331,0.32,0.771146,0.001783,710.0,1.64235,,,1283.11,1667.0,12.0,89.156,,4980.0,108.9,,,,,,,,,"16,17",2019-12-05,2020-05-20,2022-12-14 12:09:24,Matched with 377420603; two stars in the same pixel; depth-aperture correlation; low priority; likely BEB,1500,1,False,False,False -329145325,1501.01,,5,5,5,5,5,5,5,57.9,174.1,74.31,6,1,1,EB,FP,10.4089,0.006,,1,qlp-s57-ffi,QLP,22:10:51.02,59:39:01.99,-14.044,0.054,-9.229,0.047,2459882.024875,0.0012906,1.077774,3e-06,2.682,0.305,2.913679,0.895897,2680.0,824.811,10.1773,1.29281,61535.5,4387.0,49.0,351.079,3.241,7274.0,508.9,4.25,0.11,1.58,0.06,,,1.64,0.369883,"16,17,24,56,57",2019-12-05,2022-12-12,2022-12-16 12:08:26,Crowded field; TFOP FP/NEB,1501,1,False,False,False -410528770,1502.01,,5,5,5,5,5,5,5,31.6,72.9,86.63,1,1,1,EB,FP,10.4824,0.006,,1,qlp-s56-ffi,QLP,21:52:51.82,60:34:08.96,18.067,0.053,11.915,0.045,2459847.780759,0.0031112,2.7536237,2.6e-05,2.39,0.391,1.586333,0.300289,1460.0,276.538,11.1685,1.04857,529.9,2565.0,37.0,387.982,4.5045,5647.0,144.2,3.68,0.08,2.41,0.13,,,1.002,0.128522,"16,17,24,56",2019-12-05,2022-11-07,2022-12-14 12:09:24,V-shaped and some odd-even; retired as TFOP FP,1502,1,False,False,False -428065977,1503.01,,5,5,5,5,5,5,5,20.4,91.9,30.75,0,3,6,EB,FP,10.2347,0.012,,1,qlp-s57-ffi,QLP,22:36:28.89,52:06:56.57,11.473,0.098,-10.365,0.067,2459881.652761,0.0052089,1.6534102,1.16e-05,3.102,0.858,0.651637,0.958862,600.0,882.755,6.07704,1.88336,58331.7,4329.0,16.0,289.116,4.3655,6928.0,149.8,4.29,0.09,1.46,0.06,,,1.51,0.264733,"16,17,57",2019-12-05,2022-12-12,2022-12-16 12:08:26,TFOP FP/NEB,1503,1,False,False,False -326114850,1504.01,,5,5,5,5,5,5,5,10.5,64.2,13.17,1,4,2,PC,FP,9.98645,0.006,,1,qlp,QLP,22:06:16.78,52:42:06.9,39.91,0.084,-4.587,0.061,2458739.37807,0.00347,1.24564,0.00017,1.353,0.313,0.684229,0.001872,630.0,1.72437,3.69201,0.278543,1633.84,1771.0,12.0,231.273,2.5675,6194.0,130.4,4.16,0.08,1.5,0.07,,,1.187,0.165927,"16,17",2019-12-05,2020-05-20,2022-12-14 12:09:24,Potential level 1 candidate,1504,1,False,False,False -331034236,1505.01,,5,5,5,5,5,5,5,25.7,93.3,46.66,0,3,2,EB,FP,9.27116,0.006,,1,spoc-s14-s60-b0A-PC,QLP,21:44:21.96,58:33:05.64,-34.822,0.058,-26.776,0.05,2459826.907985,0.0071095536,3.42725489399743,0.0007628435,5.90839271685218,0.4892343,0.618468,0.073406,569.46770990948,67.60695,7.75037360037953,6.953522,2690.61400285028,1836.88767040979,12.627819,236.734,1.4865,6338.0,144.5,3.9,0.09,2.07070994377136,0.0909045,,,1.254,0.192238,"16,17,56,57",2019-12-05,2023-05-19,2023-06-16 12:14:51,retired as TFOP FP/NEB,1505,1,False,False,False -64836837,1506.01,,5,5,5,5,5,5,5,15.3,53.2,131.02,0,1,2,PC,FP,9.8115,0.017,,1,qlp-s57-tois,QLP,22:35:11.17,55:01:51.69,-6.332,0.072,-5.368,0.061,2459877.490516,0.0031355,10.9115675,3.99e-05,2.452,0.492,1.909316,0.128338,1757.0,118.197,14.2226,0.791233,278.682,1138.0,16.0,705.851,19.4175,9195.0,235.0,3.75,0.07,3.37,0.13,,,2.33,0.31877,"16,17,57",2019-12-05,2023-05-01,2023-05-24 12:02:52,Likely Jupiter sized; centroid offset centered on another star in spoc-s57-b0A,1506,1,False,False,False -430677414,1507.01,,5,5,5,5,5,5,5,89.1,355.5,48.74,1,1,0,PC,FP,8.41718,0.006,,1,qlp,QLP,22:14:40.73,53:14:22.4,-9.914,0.057,-13.263,0.053,2458738.93048,0.00115,0.46741,2e-05,1.25,0.02,1.73,0.484771,1592.12,446.391,7.77804,4.12785,137211.0,5361.0,53.0,195.542,1.4165,7960.5,143.8,4.23,0.08,1.77,0.06,,,2.014,0.311572,"16,17",2019-12-05,2019-12-05,2022-12-14 12:09:24,high frequency variability in the star; TFOP FP,1507,1,False,False,True -415741431,1508.01,,5,5,5,5,5,5,5,16.7,41.4,95.88,0,1,1,PC,FP,10.471,0.02,,1,qlp-s57-tois,QLP,22:36:34.64,58:16:33.82,-5.469,0.06,-2.752,0.049,2459878.866866,0.0051106,2.1575124,1.22e-05,2.236,0.449,0.597319,0.086379,550.0,79.5547,11.8527,0.765591,4213.12,2244.0,11.0,852.233,25.219,8326.0,230.8,3.58,0.08,3.87,0.15,,,2.05,0.313483,"16,17,24,57",2019-12-05,2023-05-11,2023-06-16 12:14:51,Crowded field; centroid offset and depth aperture correlation in qlp-s57-tois,1508,1,False,False,False -272828463,1509.01,,5,5,5,5,5,5,5,154.2,201.3,317.0,1,1,0,PC,FP,9.42218,0.006,,1,qlp,QLP,23:46:21.32,60:29:13.29,8.864,0.041,-2.664,0.035,2458765.04057,0.00202,0.78877,5e-05,1.577,0.042,1.466734,0.31494,1350.0,290.028,19.4628,5.52926,93169.2,4867.0,39.0,431.14,4.9715,7856.0,606.1,3.78,0.1,2.91,0.14,,,1.872,0.398265,"17,18",2019-12-05,2020-05-20,2022-12-14 12:09:24,Likely EB; depth-aperture correlation; V-shaped,1509,1,False,False,False -377739433,1510.01,,5,5,5,5,5,5,5,12.9,33.9,40.31,0,2,1,EB,FP,10.1975,0.022,,1,qlp,QLP,23:14:17.81,65:57:28.7,34.183,0.049,6.027,0.048,2458764.82522,0.00555,1.23852,0.00023,3.138,0.383,0.477829,0.001032,440.0,0.95017,7.11712,0.485025,9304.06,2736.0,14.0,500.543,7.8005,6524.0,188.4,3.5,0.09,3.4,0.15,,,1.34,0.238065,"17,18",2019-12-05,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as NEB,1510,1,False,False,False -376682699,1511.01,,5,5,5,5,5,5,5,197.3,400.5,317.0,1,1,0,PC,FP,10.381,0.027,,1,qlp,QLP,22:41:24.54,69:04:28.01,4.381,0.047,-0.315,0.044,2458765.15299,0.00113,1.10264,5e-05,2.419,0.045,3.196766,0.807189,2940.0,743.172,24.3905,6.03547,143773.0,5424.0,75.0,544.233,7.681,9218.0,397.9,4.21,0.07,2.0,0.06,,,2.34,0.338867,"17,18",2019-12-05,2020-05-20,2022-12-14 12:09:24,Some centroid offset; 2 stars in pixel,1511,1,False,False,False -434718964,1512.01,,5,5,5,5,5,5,5,,,36.91,0,0,2,EB,FP,10.262,1.0,,1,spoc-s14-s60-b0A-PC,QLP,23:01:57.14,64:04:02.41,,,,,2459854.931268,0.004935281,1.59722602032646,0.00023338028,5.37217218514805,0.33115005,4.17085,0.182971,3834.12606206956,168.50876,,,1397.01431946706,1559.26511979468,15.772523,,,,,,,,,,,,,"17,18,57,58",2019-12-05,2023-05-19,2023-06-16 12:14:51,No stellar info; could be evolved or a small star; if evolved then likely EB; centroid offset centered near another star in spoc-s57; TFOP FP/NEB,1512,1,False,False,False -269509393,1513.01,,5,5,5,5,5,5,5,9.2,49.0,15.64,1,2,1,PC,FP,10.2866,0.006,,1,qlp,QLP,23:21:29.71,60:10:32.29,49.053,0.042,11.522,0.039,2458764.84417,0.00698,1.76589,0.00087,3.807,0.82,0.792877,0.002468,730.0,2.27349,4.06597,0.31643,6579.97,2509.0,14.0,275.906,2.0795,6221.0,156.4,4.13,0.09,1.55,0.07,,,1.2,0.179987,17,2019-12-05,2020-05-20,2022-12-14 12:09:24,Slight depth-aperture correlation,1513,1,False,False,False -270238522,1514.01,,5,5,5,5,5,5,5,78.1,214.5,95.12,0,2,0,EB,FP,7.5586,0.006,,1,qlp,QLP,23:26:35.62,64:18:16.92,-4.361,0.052,-5.185,0.055,2458765.47636,0.00629,1.36991,0.00028,4.156,0.285,1.271055,0.00131,1170.0,1.20653,11.8886,0.65532,18625.3,3254.0,20.0,242.006,1.9745,7339.8,150.7,3.56,0.08,3.64,0.15,,,1.736,0.298772,"17,18",2019-12-05,2021-03-26,2022-12-14 12:09:24,TFOP FP; retired as NEB,1514,1,False,False,False -470709084,1515.01,,5,5,5,5,5,5,5,14.6,40.8,46.25,2,2,1,PC,FP,10.4433,0.006,,1,qlp,QLP,23:49:28.34,61:40:58.15,-0.929,0.045,13.53,0.048,2458764.91445,0.00521,3.66328,0.0009,2.255,0.492,1.173229,0.002944,1080.0,2.71134,7.71234,,548.091,1347.0,14.0,337.288,3.4055,6370.0,122.0,3.81,,2.32,,,,1.27,,"17,18",2019-12-05,2020-05-20,2022-12-14 12:09:24,Possible depth-aperture correlation,1515,1,False,False,False -376637093,1516.01,,3,5,5,3,4,4,4,176.2,223.2,317.0,7,2,2,CP,CP,10.377,0.006,,1,qlp-s57-ffi,QLP,22:40:20.31,69:30:13.43,16.223,0.041,-1.325,0.041,2459881.740794,0.0011567,2.0560142,3.7e-06,2.8,0.079,9.224403,0.820956,8460.0,755.843,17.0319,0.840879,1979.69,1858.0,86.0,247.054,1.361,6485.0,136.0,4.37,0.09,1.24,0.05,,,1.324,0.221627,"17,18,24,25,57",2019-12-05,2023-01-31,2023-02-09 12:10:04,TOI-1516 b,1516,1,False,False,False -455962313,1517.01,,5,5,5,5,5,5,5,10.4,60.4,19.54,0,3,0,PC,FP,9.599,0.043,,1,qlp,QLP,22:40:08.78,65:26:23.02,-0.9,2.2,-8.2,2.3,2458766.04222,0.00387,4.51083,0.0006,2.391,0.442,0.934135,0.001879,860.0,1.73092,,,,,18.0,184.762,,,,,,,,,,,,"17,18",2019-12-05,2020-05-20,2022-12-14 12:09:24,Retired as TFOP NEB FP; no stellar parameters; could be twice the period,1517,1,False,False,False -427761355,1518.01,,3,5,5,3,4,4,4,247.3,406.5,317.0,7,24,3,CP,CP,8.75127,0.006,,1,spoc-s14-s60-b0A-CP,QLP,23:29:04.2,67:02:05.3,-7.444,0.055,-4.884,0.053,2459854.41458,0.00012404767,1.90260596148192,7.4082222e-06,2.36536933853578,0.0059376196,9.799419,0.031905,8984.98972711091,29.384718,19.5765039645059,1.506559,17123.0054989896,2917.52609126199,365.49207,225.888,1.678,9918.0,1388.8,4.32,0.15,1.82240998744965,0.140201,,,2.537,0.504057,"17,18,57,58",2019-12-05,2023-06-13,2023-06-16 12:14:51,TOI-1518 b,1518,1,False,False,False -272049972,1519.01,,5,5,5,5,5,5,5,55.3,158.7,61.11,1,2,0,EB,FP,10.1914,0.006,,1,qlp-s57-ffi,QLP,23:41:40,62:55:17.35,1.9,2.7,-7.2,2.7,2458981.242084,0.0034432,1.0960111,3.13e-05,3.167,0.235,2.336846,0.103058,2150.0,94.9153,9.05714,,14474.6,,50.0,294.851,,6083.0,116.7,,,1.58,,,,,,"17,18,24,57",2019-12-05,2022-12-12,2022-12-16 12:08:26,TFOP FP/NEB,1519,1,False,False,False -269238073,1520.01,,3,4,3,3,4,4,4,18.9,88.0,39.09,1,3,4,PC,PC,9.68805,0.006,,1,qlp-s57-tois,QLP,23:20:55.86,62:09:40.25,27.666,0.045,8.25,0.035,2459878.512429,0.0059728,6.1461734,4.75e-05,5.386,1.558,1.123232,1.295035,1034.0,1192.06,6.96236,2.36488,8177.52,2649.0,21.0,196.55,1.0125,6153.0,155.5,4.15,0.08,1.5,0.07,,,1.169,0.165587,"17,18,24,57",2019-12-05,2023-05-01,2023-05-06 12:13:45,Slight depth-aperture correlation,1520,1,False,False,False -366074069,1521.01,,3,4,3,3,3,4,4,79.9,88.5,317.0,7,2,4,PC,PC,9.78876,0.006,,1,qlp-s25-ffi,QLP,23:47:04.94,69:02:58.28,-6.51,0.044,-11.243,0.042,2458768.08764,0.00054,4.18129,1e-05,4.677,0.257,5.507772,0.000329,5060.0,0.303232,16.9878,0.816697,1481.18,1728.0,140.0,317.752,2.623,6146.0,188.9,3.78,0.09,2.31,0.11,,,1.166,0.186211,"17,18,24,25,58",2019-12-05,2023-02-03,2023-02-09 12:10:04,Match to equally bright TIC 366074071,1521,1,False,False,False -367102581,1522.01,,5,5,5,5,5,5,5,8.9,56.5,21.54,2,2,2,EB,FP,9.39575,0.006,,1,qlp-s52-ffi,QLP,20:57:04.57,78:40:29.7,15.377,0.193,22.668,0.21,2459739.798591,0.0030837,2.9798592,9.1e-06,2.737,0.762,0.62991,0.002105,580.0,1.93891,4.92227,0.332283,8878.81,2704.0,31.0,303.976,9.687,9024.0,335.2,4.24,0.07,1.89,0.06,,,2.279,0.330123,"17,18,19,20,24,25,26,52",2019-12-05,2022-09-28,2022-12-14 12:09:24,multiple stars in pixel; TFOP FP; retired as NEB,1522,1,False,False,True -387413037,1523.01,,5,5,5,5,5,5,5,6.8,43.4,23.59,0,0,0,PC,FP,10.3197,0.006,,1,qlp,QLP,20:44:56.77,69:09:06.51,-8.477,0.039,-15.788,0.039,2458738.95028,0.00535,6.72694,0.00104,2.649,0.433,1.16236,0.002928,1070.0,2.69667,5.19273,0.351604,264.81,1123.0,13.0,305.758,1.911,6745.0,164.6,4.23,0.09,1.53,0.06,,,1.44,0.247168,"16,17,18,19",2019-12-05,2020-05-20,2022-12-14 12:09:24,TFOP FP; possible timing variations,1523,1,False,False,True -314338017,1524.01,,5,5,5,5,5,5,5,,,317.0,1,2,1,EB,FP,9.1325,0.033,,1,qlp-s56-ffi,QLP,21:16:34.79,58:46:22.11,-2.003,0.057,-4.812,0.048,2459837.025075,0.0114498,10.9554897,0.0001421,6.772,2.42,0.401797,0.717065,370.0,660.223,22.7316,,20081.6,3316.0,13.0,792.79,17.6605,8522.0,122.0,,,6.79,,,,,,"15,16,17,56",2019-12-05,2022-11-07,2022-12-14 12:09:24,Some odd-even; retired as TFOP FP,1524,1,False,False,False -276380902,1525.01,,5,5,5,5,5,5,5,11.3,46.4,38.04,2,1,0,EB,FP,10.3202,0.015,,1,qlp-tois-update,QLP,20:32:15.79,58:19:44.04,1.248,0.096,-2.493,0.077,2459821.79395,0.0045155,0.61724,6e-05,1.228,0.22,0.510416,0.00152,470.0,1.3999,6.8685,0.494089,26097.4,3540.0,15.0,799.447,25.305,9603.0,251.9,3.83,0.07,3.14,0.13,,,2.45,0.330519,"15,16,17,41,55",2019-12-05,2022-10-03,2022-12-14 12:09:24,a/r = 1.3; outside star; retired as NEB,1525,1,False,False,True -313761775,1526.01,,5,5,5,5,5,5,5,13.4,52.0,26.26,2,5,2,PC,FP,9.693811,0.006,,1,qlp,QLP,21:13:23.42,56:56:37.44,-29.564,0.058,-19.113,0.05,2458716.35218,0.00384,1.53127,0.00011,1.301,0.302,0.510416,0.001807,470.0,1.66395,5.51493,0.417825,978.546,1558.0,11.0,320.06,2.6215,6298.0,299.8,3.77,0.11,2.38,0.11,,,1.235,0.245621,"15,16,17",2019-12-05,2020-05-20,2022-12-14 12:09:24,Variable star; some depth-aperture correlation,1526,1,False,False,False -202375913,1527.01,,3,4,3,3,4,4,4,39.6,49.1,317.0,2,10,5,PC,PC,9.6968,0.009,,1,qlp-s57-tois,QLP,00:23:51.71,51:28:05.85,-0.388,0.075,-1.885,0.058,2459871.876895,0.0021782,5.0625891,2.51e-05,3.69,0.598,3.135787,0.137186,2884.0,126.345,15.2343,0.693857,1582.94,1757.0,38.0,482.203,10.767,7664.0,135.0,3.81,0.08,2.76,0.1,,,1.79,0.289066,"17,57",2019-12-05,2023-05-01,2023-05-06 12:13:45,,1527,1,False,False,False -285543785,1528.01,,3,5,5,3,4,4,4,61.2,129.6,317.0,4,1,6,PC,APC,9.716,0.033,,1,qlp-s58-ffi,QLP,00:52:53.29,60:53:30.07,-4.2,3.2,0.4,3.1,2459905.158718,0.0006462,9.9385027,1.39e-05,3.991,0.552,8.655152,7.39387,7940.0,6786.87,,,,,124.0,392.878,,,,,,,,,,,,"17,18,24,58",2019-12-05,2023-02-03,2023-02-09 12:10:04,No stellar information; v-shaped; likely too large; variable host; TFOP APC/VPC-/RR,1528,1,False,False,False -312259170,1529.01,,5,5,5,5,5,5,5,67.5,96.2,317.0,3,1,1,PC,FP,10.4049,0.031,,1,qlp,QLP,00:44:10.27,59:27:52.19,0.435,0.042,-0.934,0.037,2458764.94054,0.00115,0.8229,3e-05,2.068,0.213,2.891906,0.004967,2660.0,4.5744,,,59083.0,4343.0,61.0,969.594,30.5625,8078.0,156.3,3.8,0.09,,,,,2.77,0.392718,"17,18",2019-12-05,2019-12-05,2022-12-14 12:09:24,Some odd-even,1529,1,False,False,False -312469860,1530.01,,5,5,5,5,5,5,5,39.4,127.9,32.65,1,2,0,PC,FP,9.9475,0.006,,1,qlp,QLP,00:51:31.54,55:42:39.33,16.0,3.8,-23.9,3.4,2458764.79362,0.0013,0.50261,2e-05,1.127,0.237,1.216706,0.003221,1120.0,2.96692,6.28067,,15525.5,,31.0,257.461,,6941.0,,,,1.67,,,,,,"17,18",2019-12-05,2020-05-20,2022-12-14 12:09:24,Significant secondary; likely EB; Slight depth-aperture correlation; variable star,1530,1,False,False,False -312678993,1531.01,,3,5,5,3,4,4,4,,,57.0,6,5,6,PC,APC,8.3593,0.008,,1,spoc-s58-b0A,QLP,00:54:23.36,54:31:40.83,-5.3,1.1,-5.1,1.1,2459882.497022,0.00028512278,0.517520353372638,1.0437424e-05,1.04336671790082,0.09224114,1.464522,0.050586,1347.96555703395,46.59074,,,6277.49121536712,2270.21128393851,22.974854,,,5095.6,158.4,,,,,,,,,"17,18,58",2019-12-05,2023-02-23,2023-02-25 12:10:55,V-shaped; TFOP RV0/APC; very close equally bright neighbor; Gaia DR2 Rstar=2.18 Rstar,1531,1,False,False,False -327579226,1532.01,,3,4,4,3,4,4,4,35.2,140.7,99.25,4,3,3,PC,PC,10.1786,0.006,,1,qlp-s58-ffi,QLP,00:18:56.7,57:12:02.26,13.935,0.04,-5.6,0.035,2459893.867372,0.0005125,8.9054092,7.2e-06,2.577,0.457,7.189611,0.289066,6600.0,266.204,12.0619,0.573714,145.71,967.0,96.0,259.563,2.074,6659.0,172.5,4.29,0.09,1.41,0.06,,,1.404,0.245071,"17,18,24,57,58",2019-12-05,2023-02-03,2023-02-09 12:10:04,,1532,1,False,False,False -345143460,1533.01,,3,4,3,3,4,4,4,8.0,68.4,8.96,1,6,5,PC,PC,10.1128,0.006,,1,qlp-s57-ffi,QLP,23:40:59.21,57:29:06.87,19.799,0.045,-34.45,0.047,2459877.675475,0.0017165,3.6458044,1.13e-05,1.805,0.244,1.097148,0.063408,1010.0,58.3995,2.93655,0.197499,119.869,921.0,17.0,100.051,0.2983,5053.0,119.9,4.48,0.08,0.88,0.05,,,0.843,0.100169,"17,24,57",2019-12-05,2022-12-13,2022-12-16 12:08:26,Single transit-like feature at ~1782 TBJD,1533,1,True,False,False -345143460,1533.02,,3,4,3,3,4,4,4,26.3,148.9,40.29,1,6,5,PC,PC,10.1128,0.006,,2,spoc-s57-b0A,SPOC,23:40:59.21,57:29:06.87,19.799,0.045,-34.45,0.047,2459853.888385,0.0015477556,8.06297012470867,0.00085014367,1.0940991261662,0.1455799,2.520362,0.243819,2318.64673560485,224.5404,7.10887829391597,14.6810875,81.6603608011493,766.694897894015,11.559609,100.051,0.2983,5053.0,119.9,4.48,0.08,0.879455983638763,0.0521709,,,0.843,0.100169,57,2023-03-23,2023-03-23,2023-03-26 12:03:22,potential multi,1533,2,True,False,False -354600221,1534.01,,5,5,5,5,5,5,5,10.4,58.6,14.75,1,3,4,PC,FP,9.867621,0.006,,1,qlp,QLP,00:24:17.92,57:52:54.19,3.131,0.04,-11.769,0.037,2458764.81698,0.00675,1.41853,0.00029,2.728,0.707,0.608183,0.002118,560.0,1.95042,3.93221,0.315846,6293.46,2481.0,13.0,241.204,1.829,6329.0,158.7,4.08,0.09,1.68,0.08,,,1.25,0.200894,"17,18",2019-12-05,2020-05-20,2022-12-14 12:09:24,Secondary eclipse; likely EB,1534,1,False,False,False -420288086,1535.01,,5,5,5,5,5,5,5,24.2,34.8,317.0,1,1,1,EB,FP,10.4397,0.024,,1,qlp-s58-ffi,QLP,00:43:51.05,61:50:08.25,-5.237,0.036,0.061,0.039,2459906.577796,0.0015009,6.5344463,1.46e-05,2.774,0.317,3.523496,0.168109,3240.0,154.822,15.3823,0.684556,982.822,1559.0,51.0,694.491,12.687,7715.3,362.3,3.96,0.07,2.67,0.09,,,2.37,0.333724,"17,18,24,58",2019-12-05,2023-01-18,2023-01-26 12:09:41,TFOP NEB/FP,1535,1,False,False,False -445137888,1536.01,,5,5,5,5,5,5,5,13.7,57.1,60.48,1,2,3,PC,FP,10.3654,0.033,,1,spoc-s58-b0A,QLP,00:45:12.58,56:04:12.21,-0.129,0.082,-1.659,0.086,2459882.951315,0.0038898839,2.01365303367417,0.00048759262,2.12149074006696,0.19407736,0.893817,0.08343,822.89742515972,76.83918,9.02690737856047,1.0058509,38859.7127334147,3580.92022515484,10.465393,795.905,74.344,10310.0,617.1,4.01,0.1,2.67712998390198,0.257347,,,2.65,0.38616,"17,18,58",2019-12-05,2023-02-23,2023-04-19 12:02:51,Some depth-aperture correlation; strong centroid offset towards another star in spoc-s58-b0A,1536,1,False,False,False -173612049,1537.01,,3,4,3,3,4,4,4,4.5,46.6,10.58,2,6,4,PC,PC,10.473,0.006,,1,qlp-s57-ffi,QLP,23:14:19.55,44:30:31.53,-19.88,0.057,-21.305,0.051,2459874.874599,0.0031235,6.4902646,2.88e-05,2.545,0.479,1.173229,0.086993,1080.0,80.1201,3.24146,0.208758,159.69,990.0,16.0,165.589,1.0385,5999.0,169.8,4.52,0.08,0.96,0.05,,,1.106,0.144548,"16,17,57",2019-12-05,2022-12-13,2022-12-16 12:08:26,L1 candidate,1537,1,False,False,True -177244357,1538.01,,3,4,3,3,4,4,4,14.8,92.9,27.2,0,7,3,PC,PC,9.8931,0.006,,1,qlp,QLP,23:47:58.97,47:39:20.16,-10.168,0.034,-19.819,0.027,2458768.84707,0.00567,6.54692,0.00492,4.589,0.638,2.608899,0.007968,2400.0,7.33841,5.62882,0.417552,483.652,1306.0,10.0,160.251,0.6395,6034.0,121.7,4.39,0.08,1.12,0.05,,,1.12,0.14439,17,2019-12-05,2020-05-20,2022-12-14 12:09:24,Low priority; other very long transit-like features in the raw light curve; period could be double,1538,1,False,False,True -252636888,1539.01,,5,5,5,5,5,5,5,17.2,41.0,66.56,1,2,1,EB,FP,10.4116,0.014,,1,qlp-s57-ffi,QLP,23:06:04.38,52:47:13.25,-18.88,0.047,-17.713,0.055,2459880.28094,0.0065773,2.590266,2.02e-05,4.378,1.496,0.760281,0.171072,700.0,157.551,9.54526,1.14071,13184.6,2985.0,18.0,530.347,8.8575,5855.0,146.4,3.45,0.08,3.22,0.16,,,1.06,0.12964,"16,17,57",2019-12-05,2022-12-12,2022-12-16 12:08:26,TFOP FP/NEB,1539,1,False,False,False -318746829,1540.01,,5,5,5,5,5,5,5,,,30.34,0,0,2,PC,FP,10.4234,0.023,,1,qlp,QLP,23:18:52.47,56:00:30.95,-1.562,0.106,-3.328,0.094,2458769.3971,0.00287,5.23121,0.00326,3.826,0.673,3.31,0.005589,3043.98,5.1476,,,19.367,584.0,23.0,2537.64,506.585,3593.0,178.4,,,,,,,,,17,2019-12-05,2020-07-09,2022-12-14 12:09:24,TFOP NEB; possible secondary; Gaia parameters suggest star is a giant,1540,1,False,False,False -319068154,1541.01,,5,5,5,5,5,5,5,47.3,75.8,317.0,1,1,0,PC,FP,9.7436,0.006,,1,qlp,QLP,23:20:26.12,55:31:26.8,-6.7,1.5,-3.1,1.5,2458767.31768,0.00269,3.79738,0.00089,1.673,0.438,3.283885,0.038379,3020.0,35.3473,15.4506,,3462.21,,17.0,581.487,,9500.0,,,,2.36,,,,,,17,2019-12-05,2020-05-20,2022-12-14 12:09:24,Slight depth-aperture correlation; transit looks asymmetric,1541,1,False,False,False -367607434,1542.01,,5,5,5,5,5,5,5,14.8,46.3,36.52,0,4,2,IS,FA,8.40348,0.006,,1,qlp,QLP,23:15:29.98,46:34:33.68,-13.724,0.048,7.838,0.041,2458744.44353,0.01089,8.2916,0.00371,3.361,0.976,0.510416,0.002535,470.0,2.3346,6.71582,,109.067,900.0,9.0,161.65,0.792,5119.0,122.0,,,3.1,,,,,,"16,17",2019-12-05,2020-05-20,2022-12-14 12:09:24,momentum dump according to astronet,1542,1,False,False,True -431585347,1543.01,,5,5,5,5,5,5,5,7.9,44.8,39.68,0,1,6,PC,FP,10.06,0.008,,1,qlp,QLP,23:50:41.77,50:21:17.86,-8.031,0.058,-5.705,0.044,2458766.20793,0.00682,5.13664,0.00317,4.45,1.002,1.010204,0.003493,930.0,3.21692,7.04152,0.518367,5106.92,2355.0,11.0,605.832,14.031,9238.0,145.1,4.08,0.07,2.32,0.08,,,2.34,0.335234,17,2019-12-05,2020-05-20,2022-12-14 12:09:24,,1543,1,False,False,False -455791689,1544.01,,3,4,3,3,4,4,4,20.5,101.8,12.43,5,1,4,PC,PC,10.4143,0.006,,1,qlp-s57-tois,QLP,23:05:23.37,46:54:11.22,-8.539,1.963,-2.661,1.318,2459881.292526,0.0015581,1.2918411,2.6e-06,1.308,0.354,1.275403,0.094325,1174.0,86.8731,,,409.541,1253.0,20.0,454.3057,119.268,4630.4,97.1,,,,,,,,,"16,17,57",2019-12-05,2023-05-01,2023-05-06 12:13:45,Variable star; possibly synchronized; need stellar radius; centroid offset in spoc-s57,1544,1,False,False,False -127425841,1545.01,,5,5,5,5,5,5,5,27.1,99.3,46.6,0,1,2,EB,FP,9.83204,0.006,,1,qlp-s57-ffi,QLP,00:24:07.35,40:09:56.05,-11.617,0.062,-11.108,0.043,2459880.31948,0.0008324,1.5166573,7e-06,1.607,0.255,1.727694,0.094521,1590.0,87.0534,7.73846,0.425139,2422.33,1954.0,40.0,355.69,5.5275,6905.3,169.9,4.03,0.09,2.0,0.08,0.113,0.009,1.572,0.269776,"17,57",2019-12-05,2022-12-07,2022-12-16 12:08:26,V-shaped; TFOP FP/EB,1545,1,False,False,False -194203348,1546.01,,2,4,2,2,4,4,4,9.0,59.7,9.46,1,2,7,PC,PC,9.87731,0.006,,1,qlp,QLP,00:04:47.24,41:35:37.97,-23.294,0.134,-29.277,0.083,2458764.83324,0.00821,1.13345,0.0006,1.894,0.435,0.532141,0.002045,490.0,1.8831,3.03424,0.268139,3611.25,2159.0,9.0,210.101,5.846,6223.0,106.3,4.23,0.08,1.4,0.08,-0.144,0.01,1.201,0.172024,17,2019-12-05,2020-05-20,2022-12-14 12:09:24,Potential level 1; some depth-aperture correlation,1546,1,False,False,False -409520860,1547.01,,5,5,5,5,5,5,5,10.9,62.7,11.29,1,5,0,PC,FP,10.3973,0.006,,1,qlp,QLP,23:41:48.45,37:11:11.64,-0.11,0.054,-16.194,0.039,2458765.11416,0.00614,0.71933,0.00023,1.474,0.341,0.52,0.00285,478.823,2.62489,3.45648,0.319342,3964.33,2210.0,10.0,241.296,2.4755,5758.0,162.6,4.21,0.08,1.44,0.08,,,1.148,0.152774,17,2019-12-05,2019-12-05,2022-12-14 12:09:24,Likely SV; low SNR,1547,1,False,False,False -440100539,1548.01,,5,5,5,5,5,5,5,5.6,65.3,11.16,1,12,7,PC,FA,8.7282,0.006,,1,qlp,QLP,00:17:26.04,42:16:55.93,81.016,0.059,-27.725,0.032,2458769.32363,0.00996,12.6017,0.00585,4.835,0.791,0.868937,0.002284,800.0,2.10335,3.34292,0.265927,135.068,949.0,10.0,96.5232,0.4433,5861.6,141.6,4.3,0.09,1.21,0.07,-0.296,0.024,1.06,0.134674,17,2019-12-05,2020-05-20,2023-06-18 12:02:57,Potential level 1 candidate; could be half the period,1548,1,False,False,True -191146556,1549.01,,5,5,5,5,5,5,5,286.8,515.9,317.0,1,2,0,EB,FP,10.3959,0.008,,1,qlp-s57-ffi,QLP,00:33:13.05,46:20:25.1,-8.443,0.051,-6.785,0.04,2459881.330991,0.0010265,2.5798051,2.15e-05,3.413,0.479,6.250081,6.661047,5740.0,6116.27,25.2815,3.44346,7814.19,2619.0,80.0,282.833,3.011,6116.5,210.9,4.18,0.08,1.49,0.07,,,1.22,0.178379,"17,57",2019-12-05,2022-12-12,2022-12-16 12:08:26,slight odd-even; TFOP FP/NEB,1549,1,False,False,False -241065596,1550.01,,5,5,5,5,5,5,5,62.9,74.9,317.0,1,2,0,PC,FP,10.2936,0.007,,1,qlp,QLP,01:26:56.69,49:23:19.15,1.485,0.063,-0.782,0.075,2458765.12677,0.00124,1.62315,8e-05,1.438,0.074,2.685086,0.00184,2470.0,1.69438,20.948,1.88966,1004.5,1568.0,30.0,816.238,26.308,6628.0,293.4,3.43,0.09,4.06,0.35,0.136,0.046,1.54,0.274362,"17,18",2019-12-05,2019-12-05,2022-12-14 12:09:24,,1550,1,False,False,False -288348498,1551.01,,3,4,3,3,4,4,4,20.7,85.7,34.26,4,3,3,PC,PC,9.967,0.008,,1,qlp,QLP,01:18:48.09,41:30:22,-11.252,0.069,-16.638,0.076,2458765.11138,0.00229,1.67546,0.00029,1.202,0.196,1.358019,0.002885,1250.0,2.65702,6.44889,0.417778,855.787,1506.0,13.0,313.229,5.0305,6745.5,110.1,4.09,0.09,1.78,0.07,-0.0652228,0.00604645,1.44,0.238541,17,2019-12-05,2020-05-20,2022-12-14 12:09:24,,1551,1,False,False,False -326919774,1552.01,,5,5,5,5,5,5,5,12.7,53.0,74.72,0,2,4,PC,FP,8.19,0.007,,1,qlp,QLP,01:31:53.51,46:23:59.37,-5.702,0.129,-4.439,0.099,2458771.77219,0.00876,7.57193,0.00278,2.656,0.597,0.456105,0.002143,420.0,1.97351,10.2119,0.852754,795.635,1479.0,11.0,519.941,18.4675,9146.0,140.2,3.45,0.07,4.72,0.2,,,2.32,0.31402,"17,18",2019-12-05,2020-05-20,2023-01-24 12:02:46,Variable star,1552,1,False,False,True -327341626,1553.01,,5,5,5,5,2,5,5,63.4,98.0,317.0,1,2,1,PC,APC,10.3478,0.007,,1,qlp-s58-ffi,QLP,01:38:45.72,42:40:39.86,10.862,0.109,-10.268,0.186,2459908.543488,0.0005152,5.9382147,4.4e-06,2.293,0.319,7.09125,0.604618,6510.0,556.719,18.7642,1.48533,622.074,1391.0,92.0,441.44,22.9885,6775.5,129.2,3.97,0.1,2.09,0.14,,,1.47,0.26164,"17,18,58",2019-12-05,2023-02-03,2023-02-09 12:10:04,TFOP SB1/APC,1553,1,False,False,False -299158887,1554.01,,5,5,5,5,5,5,5,10.9,73.2,33.46,0,5,7,KP,KP,11.0579,0.006,,1,spoc-s14-s55-b0A-KP,SPOC/QLP,19:16:54.31,49:32:53.81,14.337,0.048,23.364,0.04,2459444.896746,0.0012034,9.43415890796681,1.0601267e-05,2.8505348174715,0.079547934,4.353752,0.10622,4001.92493502686,97.82721,6.37340640629715,0.41521633,96.5333103238234,799.445844467435,32.31501,194.033,0.954,5450.4,272.0,4.48,0.09,0.938167989253998,0.0554422,0.09,0.1,0.964,0.126452,"14,15,40,41,53,54,55",2019-12-06,2023-03-15,2023-03-24 12:12:10,Kepler-63 b,1554,1,False,False,True -441732151,1555.01,,5,5,5,5,5,5,5,97.1,303.5,73.4,2,0,0,PC,FP,10.1688,0.006,,1,qlp,QLP,17:11:30.42,72:08:08,1.411,0.07,11.342,0.089,2458712.08879,0.00037,2.09989,7e-05,0.908,0.066,30.093341,1.306296,27336.4,1202.42,10.1564,1.58125,422.491,1263.0,77.0,169.788,1.4485,6025.3,331.7,4.46,0.08,1.04,0.11,,,1.134,0.149833,"15,16,17,18,19",2019-12-19,2019-12-19,2022-12-14 12:09:24,secondary; synchronized; TFOP FP,1555,1,False,False,True -405794804,1556.01,,5,5,5,5,5,5,5,46.5,171.9,62.48,1,0,0,EB,FP,9.79455,0.006,,1,qlp-tois-update,QLP,21:38:51.46,65:02:21.02,8.796,0.05,3.611,0.048,2458740.21873,0.00074,1.44127,2e-05,2.605,0.299,2.989888,0.000557,2750.0,0.512875,9.20279,0.314565,22433.7,3409.0,90.0,315.386,2.524,8009.0,436.9,4.29,0.08,1.65,0.05,,,1.934,0.333972,"16,17,18,24,56,57",2019-12-19,2022-12-05,2022-12-14 12:09:24,centroid offset; TFOP FP/NEB,1556,1,False,False,False -320506985,1557.01,,5,5,5,5,5,5,5,15.9,59.6,21.99,1,2,8,EB,FP,10.4925,0.006,,1,qlp,QLP,00:32:39.26,54:39:16.54,18.638,0.042,-1.434,0.042,2458765.31897,0.00557,1.08697,0.00021,1.967,0.367,0.934135,0.003361,860.0,3.09574,4.98445,0.414572,2889.01,2042.0,11.0,285.876,2.987,5751.0,167.7,4.0,0.08,1.69,0.09,,,1.028,0.129024,"17,18",2019-12-19,2020-05-20,2022-12-14 12:09:24,TFOP FP; retired as NEB,1557,1,False,False,False -117322779,1558.01,,5,5,5,5,5,5,5,,,10.87,3,0,1,PC,FP,10.485,0.033,,1,qlp,QLP,03:13:24.54,49:47:01.53,,,,,2458791.07301,0.00363,0.68601,0.0002,1.614,0.276,0.98847,0.001623,910.0,1.49444,,,,,21.0,,,,,,,,,,,,,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,,1558,1,False,False,False -241040309,1559.01,,3,4,3,3,4,4,4,12.9,52.9,62.35,2,1,9,PC,PC,10.3978,0.009,,1,qlp-s58-tois,QLP,01:22:52.18,48:57:19.31,3.798,0.085,-6.27,0.09,2459904.889359,0.0012776,3.4648951,6.9e-06,1.046,0.251,1.454775,0.131498,1339.0,121.107,9.72728,0.677133,374.648,1225.0,15.0,685.251,26.3785,8455.3,109.4,3.95,0.08,2.54,0.12,-0.273,0.021,2.1,0.323077,"17,18,58",2019-12-19,2023-06-27,2023-06-27 00:00:00,,1559,1,False,False,False -241076290,1560.01,,3,4,4,3,4,4,4,25.1,118.6,32.62,2,1,6,PC,PC,10.1942,0.007,,1,spoc-s58-b0A,QLP,01:56:07.89,52:35:07.74,3.483,0.119,-4.865,0.139,2459882.378835,0.0003872937,0.258000647136198,8.668655e-06,0.535135600336654,0.113524236,0.88277,0.045885,812.731032463306,42.260746,6.2776081114933,2.2770362,238125.935921208,5634.05944030519,16.15648,560.222,22.793,9035.0,204.2,4.16,0.08,2.08686995506287,0.101281,,,2.283,0.31736,"18,58",2019-12-19,2023-02-23,2023-02-25 12:10:55,two stars in pixel; a/Rs~1,1560,1,False,False,False -245462406,1561.01,,5,5,5,5,5,5,5,31.7,61.3,116.18,1,1,2,PC,FP,10.2948,0.015,,1,qlp,QLP,02:35:17.21,55:42:11.58,7.133,0.066,-7.668,0.071,2458791.81704,0.00647,2.27456,0.00108,3.32,0.688,1.108016,0.080862,1020.0,74.4735,13.266,3.23854,21521.5,3374.0,16.0,551.666,10.336,6777.0,159.7,3.55,0.09,3.35,0.16,,,1.45,0.252064,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,Slightly V-shaped,1561,1,False,False,False -249862365,1562.01,,5,5,5,5,5,5,5,15.8,84.9,14.81,1,3,3,PC,FP,9.10226,0.006,,1,qlp,QLP,02:32:29.52,52:42:14.73,41.218,0.08,-46.098,0.068,2458791.5299,0.00594,0.98999,0.00047,2.05,0.553,0.456105,0.002428,420.0,2.23588,3.95137,0.349131,7729.29,2612.0,13.0,184.69,1.2895,6208.0,172.9,3.99,0.08,1.84,0.08,,,1.194,0.175866,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,Significant odd-even; likely EB,1562,1,False,False,False -249945230,1563.01,,3,5,5,3,4,4,4,,,21.41,0,10,6,PC,PC,9.4397,0.006,,1,qlp-s58-tois,QLP,02:35:14.45,48:16:25.55,115.886,0.083,-98.373,0.081,2458805.455547,1.05e-05,1098.2258586,1.2e-06,6.121,0.008,4.892477,0.119061,4496.0,109.653,5.13949,0.420189,0.0125876,93.0,57.0,51.0409,0.10865,4582.0,131.0,4.55,0.1,0.74,0.06,,,0.72,0.0857764,"18,58",2019-12-19,2023-06-27,2023-06-27 00:00:00,previous single transit; additional transit in s58; actual period likely shorter than max period of ~1098.2 days,1563,1,False,False,True -250724252,1564.01,,5,5,5,5,2,5,5,216.0,356.6,317.0,3,1,2,PC,APC,10.2845,0.006,,1,spoc-s58-b0A,QLP,02:14:01.26,53:07:17.43,1.2,1.9,-7.4,1.9,2459882.553468,0.00054561265,0.55967011917542,1.8679582e-05,2.34898861223437,0.040599365,4.404802,0.063218,4048.75400455971,58.2242,23.3403843367799,5.952571,59920.8903180378,3990.38054087403,24.114838,574.869,,8368.0,111.2,,,2.29785990715027,,,,,,"18,58",2019-12-19,2023-02-21,2023-02-25 12:10:55,V-shaped; TFOP BEB/APC; possible phase modulations,1564,1,False,False,False -251384275,1565.01,,3,5,5,3,4,4,4,0.7,53.6,317.0,0,1,7,PC,PC,9.2085,0.006,,1,qlp-tois-update,QLP,02:58:52.86,58:44:06.88,-3.5,3.1,-1.2,3.0,2459907.730268,0.004470916,1099.25603849035,0.006300348,5.661,0.447,3.229435,1.227934,2970.0,1130.33,23.8658,,,,36.0,328.658,,8494.0,,,,2.18,,,,,,"18,58",2019-12-19,2023-02-15,2023-02-25 12:10:55,alerted as single but now have two transits; max P~1099; may be too large to be planetary,1565,1,False,False,False -256414077,1566.01,,5,5,5,5,5,5,5,23.3,75.6,49.42,1,2,0,PC,FP,10.5907,0.008,,1,qlp,QLP,01:02:25.56,60:42:55.88,-1.996,0.156,-2.246,0.159,2458793.38207,0.00423,3.01106,0.0008,3.073,0.226,1.757296,0.002538,1617.22,2.33785,7.20703,1.30585,1281.74,1666.0,18.0,377.17,18.481,6516.0,559.8,,,1.63,0.29,,,1.441,,18,2019-12-19,2019-12-19,2022-12-14 12:09:24,,1566,1,False,False,False -259151170,1567.01,,3,5,5,3,3,4,4,,,317.0,0,9,1,PC,APC,10.374,0.006,,1,qlp,QLP,03:21:23.01,52:41:31.6,121.807,0.069,-92.923,0.055,2458808.52242,0.0,0.0,0.0,4.149,0.042,60.846167,0.001292,54500.0,1.19002,21.0557,1.45218,,,295.0,86.1112,0.24515,4503.5,105.7,4.42,0.09,0.86,0.06,0.013,0.032,0.71,0.081009,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,single transit; close in epoch to TIC 251384275 but with no underlying systematic linking the two,1567,1,False,True,False -284050395,1568.01,,5,5,5,5,5,5,5,191.1,487.2,77.22,8,2,1,PC,FP,9.74734,0.006,,1,qlp,QLP,00:35:57.57,65:01:33.73,114.792,0.047,-33.288,0.05,2458765.47569,0.00137,1.35932,6e-05,2.831,0.053,3.087878,0.569333,2840.0,524.238,10.3751,2.44543,15609.5,3113.0,72.0,104.358,0.339,5421.0,130.6,4.46,0.08,0.94,0.05,,,0.944,0.114837,"17,18",2019-12-19,2020-05-20,2022-12-14 12:09:24,check neighbors,1568,1,False,False,False -285666479,1569.01,,5,5,5,5,2,5,5,21.5,40.1,107.25,0,2,1,PC,APC,10.424,0.012,,1,qlp,QLP,02:54:26.56,52:04:15.71,-3.594,0.072,-4.127,0.069,2458791.98363,0.00513,1.71614,0.00072,2.038,0.285,0.740126,0.002297,681.449,2.11556,14.1349,0.928386,958.34,1550.0,13.0,755.795,20.5135,5511.5,96.2,3.28,0.09,4.92,0.17,,,1.35,0.226137,18,2019-12-19,2019-12-19,2022-12-14 12:09:24,,1569,1,False,False,False -285674856,1570.01,,5,5,5,5,5,5,5,16.5,85.5,27.13,2,2,4,PC,FP,9.4883,0.012,,1,qlp,QLP,03:32:47.11,51:53:04.21,1.126,0.083,-14.844,0.068,2458790.81038,0.01327,1.74626,0.00163,3.88,0.608,1.205837,0.004741,1110.0,4.3667,5.62786,0.44852,17804.9,3218.0,12.0,294.123,3.143,8348.0,154.7,4.24,0.07,1.8,0.06,,,2.06,0.311562,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,other features at different periods in the BLS,1570,1,False,False,False -285677945,1571.01,,5,5,5,5,5,5,5,16.1,57.2,27.73,2,3,0,PC,FP,10.2353,0.029,,1,qlp,QLP,03:32:23.75,50:29:56.55,-0.061,0.088,2.251,0.077,2458791.56106,0.00558,1.2427,0.00049,1.563,0.315,0.720891,0.002921,663.745,2.69023,6.05271,0.461873,1263.34,1660.0,11.0,317.968,4.8455,5624.8,119.0,3.92,0.1,2.14,0.09,,,1.24,0.215485,18,2019-12-19,2019-12-19,2022-12-14 12:09:24,Possible depth aperture correlation,1571,1,False,False,False -292321872,1572.01,,5,5,5,5,5,5,5,89.6,194.1,317.0,0,0,0,PC,FP,10.4562,0.007,,1,qlp,QLP,02:07:36.53,45:30:00.56,-3.046,0.084,-3.82,0.091,2458794.15217,0.00354,8.66698,0.00261,6.104,0.507,10.752236,1.124645,9854.3,1035.3,27.4804,9.09318,2647.36,1998.0,41.0,505.331,16.141,6322.2,217.0,3.77,0.09,2.52,0.17,,,1.32,0.209952,18,2019-12-19,2019-12-19,2022-12-14 12:09:24,Asymmetric transit shape; uncertain period,1572,1,False,False,True -302773669,1573.01,,5,5,5,5,5,5,5,74.0,327.8,112.36,0,3,4,KP,KP,7.6353,0.006,,1,qlp-s59-ffi,QLP,02:49:44.79,71:45:11.12,90.982,0.064,-33.197,0.062,2459912.325678,0.0008428,21.2169065,0.0004306,3.057,0.139,6.54387,0.333507,6009.0,307.124,12.9873,0.743583,17.4359,569.0,177.0,78.0863,0.239,5925.0,89.5,4.1,0.08,1.55,0.08,0.2,0.1,1.1,0.142761,"18,19,25,52,59",2019-12-19,2023-02-09,2023-02-25 12:10:55,HD 17156 b,1573,1,False,False,True -307111282,1574.01,,5,5,5,5,5,5,5,,,89.0,0,3,0,PC,FP,10.2978,0.006,,1,qlp,QLP,00:58:33.63,50:56:11.14,84.427,0.079,51.422,0.065,2458804.60057,0.0,0.0,0.0,9.597,0.401,8.108077,0.002404,7440.0,2.21459,11.3282,0.565644,,,47.0,186.665,1.237,5791.0,150.2,4.29,0.08,1.21,0.06,,,1.039,0.13435,"17,18",2019-12-19,2020-05-20,2022-12-14 12:09:24,single transit; other signals in raw lc between 1780-1785 BJD,1574,1,False,True,True -316254876,1575.01,,5,5,5,5,5,5,5,71.0,161.1,102.54,3,2,0,EB,FP,10.3775,0.006,,1,qlp-s59-ffi,QLP,03:27:57.32,54:51:56.22,22.779,0.072,-16.16,0.074,2459935.126364,0.0021817,2.4611008,6.3e-06,3.13,0.923,1.950648,3.189775,1795.0,2933.58,12.3334,3.87047,8632.97,2685.0,28.0,248.563,2.359,5429.5,28.3,4.01,0.1,1.63,0.09,,,0.978,0.170015,"18,19,59",2019-12-19,2023-01-24,2023-01-26 12:09:41,TFOP FP/retired as NEB,1575,1,False,False,False -327011842,1576.01,,3,4,3,3,4,4,4,,,68.11,5,3,5,PC,PC,9.7828,0.007,,1,spoc-s58-b0A,QLP,01:33:52.05,45:00:37.18,18.596,0.094,1.104,0.09,2459883.106456,0.0028005766,0.783879044456585,0.00014983246,1.48709657293689,0.34133878,0.298092,0.041709,274.515637307869,38.414635,9.68132528613224,7.4107375,6087.06825011322,2252.79561630543,7.2438393,493.702,14.842,4975.0,122.0,,,5.38746976852417,,,,,,"17,18,58",2019-12-19,2023-02-23,2023-02-25 12:10:55,centroid centered between two fainter stars to E; possible phase modulation,1576,1,False,False,False -332154944,1577.01,,5,5,5,5,5,5,5,42.3,180.8,24.41,0,2,0,PC,FP,9.60027,0.006,,1,qlp,QLP,01:17:06.87,57:30:51.23,63.025,0.038,-25.533,0.045,2458791.36882,0.00096,0.99837,7e-05,1.632,0.084,2.968113,0.000807,2730.0,0.743409,5.29489,0.268196,2465.96,1963.0,82.0,143.575,0.636,6082.0,141.4,4.39,0.08,1.13,0.05,,,1.139,0.157936,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,Check neighbor 332154930,1577,1,False,False,False -348135793,1578.01,,5,5,5,5,5,5,5,115.2,124.2,317.0,1,2,2,PC,FP,10.1042,0.006,,1,qlp,QLP,02:17:30.47,56:25:17.36,2.649,0.07,-5.512,0.079,2458791.58678,0.00162,1.97741,0.00024,6.549,0.076,5.95528,0.003237,5470.0,2.98176,17.5768,0.859208,46143.6,4083.0,68.0,341.514,4.847,6742.0,156.0,3.95,0.09,2.11,0.09,,,1.439,0.259024,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,Difference images failed. Possible depth aperture correlation between 2 and 3.,1578,1,False,False,False -354400186,1579.01,,5,5,5,5,5,5,5,175.9,691.0,317.0,4,2,0,PC,FP,9.7745,0.009,,1,qlp,QLP,01:50:57.13,48:21:08.34,5.02,0.119,-6.988,0.174,2458794.28172,0.00084,9.07768,0.00056,2.78,0.101,21.017751,0.622415,19171.9,573.101,,,1012.12,1571.0,71.0,524.755,26.8925,8393.7,405.5,4.01,0.08,,,,,2.24,0.318532,18,2019-12-19,2019-12-19,2022-12-14 12:09:24,likely EB; Rs 2.5; Rp ~26,1579,1,False,False,False -354469661,1580.01,,3,5,5,3,5,4,5,122.4,158.8,317.0,0,5,2,CP,KP,9.17925,0.006,,1,qlp-s58-ffi,QLP,01:53:07.82,52:03:14.12,26.511,0.106,6.165,0.075,2459904.860416,0.0014146,4.7947729,1.94e-05,4.774,0.128,7.419155,0.204397,6810.0,188.239,18.5565,0.875362,1006.54,1569.0,188.0,233.22,2.657,6333.0,152.2,3.86,0.08,2.18,0.1,,,1.252,0.183161,"18,58",2019-12-19,2023-02-03,2023-02-09 12:10:04,HAT-P-60 b,1580,1,False,False,False -370759867,1581.01,,3,5,5,3,4,4,4,,,317.0,0,4,5,PC,PC,9.76978,0.006,,1,qlp,QLP,01:52:39.25,55:11:09.49,44.517,0.084,-14.626,0.09,2458810.30671,0.0,0.0,0.0,4.23,0.253,9.169654,3.03065,8410.0,2787.44,18.6201,5.67282,,,45.0,124.547,0.631,5865.0,139.6,4.49,0.08,0.97,0.05,,,1.061,0.134861,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,Single transit,1581,1,False,True,False -374400599,1582.01,,5,5,5,5,5,5,5,254.4,494.2,317.0,1,1,0,PC,FP,10.0188,0.006,,1,qlp,QLP,02:18:47.49,64:21:22.98,-4.588,0.033,-2.918,0.051,2458791.8149,0.00212,1.89253,0.00027,3.451,0.089,15.439749,1.02351,14119.9,942.243,26.7733,6.95592,28527.4,3620.0,70.0,386.181,4.9215,6904.3,96.1,4.05,0.08,2.05,0.06,,,1.72,0.275968,18,2019-12-19,2019-12-19,2022-12-14 12:09:24,,1582,1,False,False,True -403256331,1583.01,,5,5,5,5,5,5,5,9.2,33.2,72.41,0,1,4,PC,FP,9.5425,0.013,,1,qlp,QLP,00:16:59.84,58:40:45.31,0.654,0.038,-2.856,0.036,2458765.82123,0.00642,3.77188,0.00076,2.923,0.459,0.488691,0.001113,450.0,1.02536,10.0329,0.616291,5181.65,2363.0,11.0,867.296,21.8335,10097.0,249.5,3.52,0.07,4.62,0.16,,,2.59,0.340593,"17,18",2019-12-19,2020-05-20,2022-12-14 12:09:24,planet roughly 10 Re; check neighbors; possible stellar variability,1583,1,False,False,False -418987806,1584.01,,5,5,5,5,5,5,5,178.4,233.3,317.0,1,2,1,PC,FP,9.27904,0.006,,1,qlp,QLP,00:26:04.66,63:19:09.88,-13.0,0.041,-0.308,0.038,2458791.06276,0.00273,0.88654,0.00019,1.679,0.037,0.945002,0.282085,870.0,259.776,24.9348,7.63992,64431.5,4438.0,32.0,479.659,6.5305,6919.0,178.4,3.36,0.09,4.27,0.17,,,1.509,0.265816,"17,18",2019-12-19,2020-05-20,2022-12-14 12:09:24,likely EB,1584,1,False,False,False -444415148,1585.01,,5,5,5,5,5,5,5,,,79.67,0,1,5,PC,FP,8.9676,0.012,,1,qlp,QLP,00:25:14.14,62:32:35.21,-4.209,0.044,-3.54,0.04,2458764.8746,0.0042,1.83641,0.00032,2.222,0.256,0.510416,0.000747,470.0,0.687592,10.6176,,9124.8,2722.0,11.0,670.885,14.034,9542.0,123.0,,,5.03,,,,,,"17,18",2019-12-19,2020-05-20,2022-12-14 12:09:24,,1585,1,False,False,False -445144327,1586.01,,3,4,3,3,4,4,4,,,317.0,0,2,5,PC,PC,10.4396,0.009,,1,qlp,QLP,00:44:56.2,58:42:43.41,1.262,0.042,-4.767,0.042,2458765.67889,0.01083,1.80794,0.00062,2.17,0.606,0.586456,0.003749,540.0,3.4526,20.9267,,550.041,1349.0,9.0,800.464,19.244,4628.0,122.0,,,8.61,,,,,,"17,18",2019-12-19,2020-05-20,2022-12-14 12:09:24,large star and large companion,1586,1,False,False,False -458914949,1587.01,,5,5,5,5,5,5,5,7.1,34.1,57.12,5,8,6,EB,FP,10.2543,0.022,,1,qlp-s59-ffi,QLP,03:13:41.62,61:54:28.19,14.079,0.048,-12.14,0.06,2459924.681114,0.0043759,12.5343031,7.81e-05,4.572,1.127,1.648312,0.104952,1517.0,96.6598,8.71775,0.52282,463.57,1292.0,20.0,563.997,11.627,7275.0,123.0,3.91,0.08,2.51,0.09,,,1.87,0.292356,"18,19,58,59",2019-12-19,2023-02-03,2023-02-09 12:10:04,Centroid offset; depth-aperture correlation; NEB/TFOP FP,1587,1,False,False,False -50120414,1588.01,,3,4,3,3,4,4,4,,,317.0,1,2,5,PC,PC,8.951,0.023,,1,qlp-s58-ffi,QLP,02:39:33.86,62:25:59.9,-3.244,0.037,-1.135,0.05,2459932.266567,0.0017502,3.581083,1e-05,3.454,0.54,0.825473,0.035681,760.0,32.8629,17.1017,,6158.1,2467.0,22.0,742.441,16.128,9503.0,123.0,,,5.96,,,,,,"18,58,59",2019-12-19,2023-02-15,2023-02-16 00:00:00,active star; slightly large planet candidate; somewhat crowded field,1588,1,False,False,True -52041724,1589.01,,5,5,5,5,5,5,5,,,317.0,0,3,0,PC,FP,9.87542,0.006,,1,qlp,QLP,00:56:28.68,65:40:44.54,-0.493,0.127,11.141,0.124,2458800.80678,0.00053,0.0,0.0,4.026,0.251,13.822174,0.002222,12650.0,2.04692,21.6371,0.998404,,,82.0,278.829,7.176,7455.0,409.9,4.17,0.1,1.78,0.08,,,1.71,0.321401,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,single transit superimposed on BEB; large,1589,1,False,True,True -71854745,1590.01,,5,5,5,5,5,5,5,22.2,82.5,100.57,1,1,1,PC,FP,10.2146,0.01,,1,qlp,QLP,01:45:11.86,54:34:06.39,0.568,0.142,-3.837,0.118,2458793.51014,0.00691,3.10315,0.00208,3.535,0.674,1.912655,0.230948,1760.07,212.688,,,50910.7,4184.0,11.0,749.127,37.15,9050.3,228.4,3.96,0.08,,,,,2.34,0.320893,18,2019-12-19,2019-12-19,2022-12-14 12:09:24,Slightly crowded field; uncertain planet radius,1590,1,False,False,False -82010657,1591.01,,5,5,5,5,5,5,5,,,77.42,0,8,2,PC,FP,9.64805,0.006,,1,qlp,QLP,03:15:00.76,60:14:17.5,26.702,0.049,-8.408,0.065,2458807.93693,0.0,0.0,0.0,8.06,1.26,3.272994,0.007421,3010.0,6.83528,10.4319,0.612529,,,37.0,282.1,4.316,7519.0,236.8,4.22,0.08,1.7,0.06,,,1.736,0.285244,"18,19",2019-12-19,2020-05-20,2022-12-14 12:09:24,single event,1591,1,False,True,False -186599508,1592.01,,5,5,5,5,5,5,5,10.8,60.6,20.83,1,2,2,PC,FP,9.76636,0.006,,1,spoc,QLP,03:00:21.23,39:04:05.76,93.001,0.101,-71.02,0.078,2458794.89641,0.0022952901,5.63180736609691,0.0012073622,3.45530922990191,0.38354772,1.288608,0.088259,1186.14818725504,81.28653,4.82176923752549,1.5592829,474.491912238237,1190.35624057235,11.390572,170.592,1.987,5669.9,133.9,4.16,0.08,1.38826,0.0715829,,,1.02,0.129636,18,2019-12-19,2019-12-19,2022-12-14 12:09:24,check neighbors,1592,1,False,False,True -192372961,1593.01,,5,5,5,5,5,5,5,26.8,55.6,96.85,1,1,4,PC,FP,9.1222,0.007,,1,qlp,QLP,03:02:23.61,43:11:01.69,10.679,0.074,-11.741,0.067,2458792.29644,0.00617,2.06313,0.00099,2.157,0.485,0.651637,0.002786,600.0,2.56623,11.9118,0.988067,1866.39,1831.0,9.0,550.183,12.998,6716.5,99.8,3.24,0.09,4.77,0.21,0.453,0.023,1.43,0.241989,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,large pc around large star (Rs 6.1),1593,1,False,False,False -201154493,1594.01,,5,5,5,5,5,5,5,17.7,51.7,86.17,0,1,3,PC,FP,9.7479,0.013,,1,qlp,QLP,03:44:34.4,41:03:51.66,2.194,0.104,-4.724,0.066,2458792.1989,0.00408,1.51233,0.00057,2.59,0.367,0.695094,0.001449,640.0,1.33455,11.1245,0.819877,18303.0,3240.0,12.0,831.907,38.8525,9447.0,218.6,3.54,0.08,4.35,0.24,,,2.4,0.330983,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,odd/even,1594,1,False,False,False -385105624,1595.01,,5,5,5,5,5,5,5,47.5,127.2,62.12,1,3,0,PC,FP,10.4511,0.006,,1,qlp,QLP,03:23:13.94,46:40:55.61,15.52,0.071,-16.13,0.063,2458793.37454,0.00139,1.74903,0.00026,1.851,0.485,3.686899,0.01186,3390.0,10.9233,9.17868,1.04321,2080.28,1881.0,41.0,295.452,3.238,6222.3,147.0,4.15,0.11,1.53,0.15,-0.003,0.013,1.2,0.167627,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,V-shaped; secondary which is also consistent with the secondary from a Hot Jupiter; could be on TIC 642958048. Check neighbors.,1595,1,False,False,False -431899140,1596.01,,3,4,3,3,4,4,4,31.7,66.4,123.06,0,2,5,PC,PC,10.0888,0.02,,1,qlp-tois-update,QLP,03:44:53.41,45:30:25.88,-0.869,0.123,-0.576,0.086,2459928.934925,0.0030948,1.97656,0.0007,3.102,0.758,1.216706,0.005306,1120.0,4.88661,13.6974,1.24199,24091.5,3470.0,21.0,710.919,26.476,7962.9,130.5,3.6,0.1,3.62,0.23,0.089,0.017,1.92,0.30957,"18,59",2019-12-19,2023-02-03,2023-02-03 00:00:00,Possible centroid offset to east towards TIC 431899136,1596,1,False,False,False -68152139,1597.01,,5,5,5,5,5,5,5,21.8,87.4,19.71,2,8,0,PC,FP,10.1342,0.01,,1,qlp,QLP,02:57:36.43,40:01:00.13,-35.041,0.088,-13.655,0.082,2458792.46525,0.00272,0.73772,0.00018,1.057,0.158,1.064543,0.002387,980.0,2.19839,4.68288,0.332822,1958.84,1853.0,17.0,226.234,3.595,6001.0,133.4,4.14,0.08,1.49,0.07,,,1.11,0.141495,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,,1597,1,False,False,False -67418624,1598.01,,3,5,5,3,4,4,4,24.6,111.6,17.3,2,55,8,PC,PC,8.6344,0.006,,1,qlp-s58-ffi,QLP,01:54:38.48,37:00:18.15,-16.028,0.098,-19.231,0.094,2459908.034555,0.0008066,1.1020719,2.6e-06,0.864,0.326,0.62991,0.059655,580.0,54.9429,4.33066,0.301666,958.145,1549.0,30.0,143.239,1.33,6011.0,194.8,4.04,0.08,1.73,0.08,,,1.192,0.174171,"18,58",2019-12-19,2023-02-21,2023-02-25 12:10:55,v-shaped,1598,1,False,False,True -129979528,1599.01,,5,5,5,5,5,5,5,507.8,721.7,317.0,0,0,0,KP,KP,7.87611,0.006,,1,spoc-s58-b0A,QLP,02:26:51.06,37:33:01.6,-0.976,0.118,-8.977,0.105,2459883.198788,0.00020759186,1.21983821253186,1.6717846e-05,2.83418044250338,0.009721714,13.283601,0.11099,12160.10960429,102.21993,18.2179311434236,0.6672307,9392.04710086675,2510.78667440973,89.686646,121.944,0.9905,7398.5,157.7,4.25,0.08,1.60241997241974,0.0582111,,,1.653,0.268246,"18,58",2019-12-19,2023-02-21,2023-02-25 12:10:55,WASP-33 b,1599,1,False,False,True -187029841,1600.01,,5,5,5,5,5,5,5,46.6,149.3,33.37,2,3,0,PC,FP,9.66027,0.006,,1,qlp,QLP,02:18:13.43,38:28:43.77,7.486,0.165,-15.684,0.215,2458791.80096,0.00173,0.36113,5e-05,1.87,0.187,1.053675,0.001035,970.0,0.952825,6.69136,0.509829,2677.39,2003.0,31.0,252.419,10.38,6056.9,236.7,3.99,0.1,1.95,0.15,-0.217,0.014,1.227,0.197847,18,2019-12-19,2019-12-19,2022-12-14 12:09:24,a/Rs only slightly bigger than 1; short period,1600,1,False,False,False -139375960,1601.01,,3,5,5,3,4,4,4,49.1,48.9,317.0,8,29,6,PC,CP,10.1035,0.007,,1,qlp,QLP,02:33:26.78,41:00:48.36,21.708,0.095,-0.874,0.09,2458793.27728,0.00127,5.33155,0.00052,6.191,0.15,4.591502,0.000508,4220.0,0.467679,14.6101,0.793698,1071.42,1593.0,77.0,336.608,8.1935,5917.0,125.8,3.78,0.08,2.22,0.12,,,1.08,0.136101,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,Difference image shows an offset orbit 1.,1601,1,False,False,False -129991079,1602.01,,5,5,5,5,5,5,5,5.9,53.1,14.5,2,3,4,PC,FA,10.4375,0.006,,1,qlp,QLP,02:28:31.78,40:53:28.51,18.147,0.083,-24.997,0.076,2458792.50412,0.01002,6.15952,0.00486,3.834,0.887,1.336278,0.005888,1230.0,5.42282,3.90515,0.327005,487.519,1309.0,9.0,208.771,3.0245,6175.9,111.3,4.44,0.08,1.09,0.05,0.095,0.013,1.179,0.164639,18,2019-12-19,2020-05-20,2023-01-16 12:02:39,2 stars in pixel; correlation with stellar variability,1602,1,False,False,False -73448352,1603.01,,3,5,5,3,5,4,5,72.7,87.1,317.0,0,0,2,KP,KP,10.1868,0.006,,1,qlp-s58-ffi,QLP,02:33:13.94,30:21:37.63,-13.885,0.093,-10.911,0.083,2459901.664829,0.0004662,4.7321727,4.3e-06,2.794,0.748,7.867451,0.552254,7220.0,508.515,15.0238,0.834941,740.466,1453.0,100.0,282.096,4.751,6739.0,107.5,4.21,0.08,1.56,0.07,-0.026,0.012,1.438,0.235108,"18,58",2019-12-19,2023-02-03,2023-02-09 12:10:04,HAT-P-47 b (https://arxiv.org/abs/1606.04556v1,1603,1,False,False,False -118301361,1604.01,,5,5,5,5,5,5,5,110.0,162.1,317.0,0,3,5,PC,FP,9.08054,0.006,,1,qlp,QLP,02:16:47.01,29:34:13.7,6.464,0.093,-5.574,0.089,2458793.39828,0.00388,3.46608,0.00112,4.403,0.28,1.760319,0.48112,1620.0,443.03,20.8363,7.04558,23536.1,3450.0,31.0,380.062,7.3015,7249.8,123.1,3.69,0.08,3.02,0.13,0.434,0.132,1.631,0.27088,18,2019-12-19,2020-05-20,2022-12-14 12:09:24,Possible signature of exomoon ~6 hours before the primary transit.,1604,1,False,False,False -101037590,1605.01,,3,4,4,3,4,4,4,147.7,241.1,317.0,8,42,8,PC,PC,9.62924,0.006,,1,qlp-s58-ffi,QLP,03:37:55.41,33:04:47.63,-40.365,0.106,8.767,0.062,2459896.132645,0.0008413,8.7094632,1.45e-05,3.027,0.693,4.907746,7.792781,4510.0,7151.72,20.9625,5.3577,327.472,1185.0,76.0,159.748,1.5125,5597.0,146.5,4.03,0.08,1.59,0.08,,,0.989,0.126476,"18,58",2019-12-19,2023-02-03,2023-02-09 12:10:04,v-shaped,1605,1,False,False,False -125735470,1606.01,,5,5,5,5,4,5,5,47.2,173.2,49.44,0,5,4,PC,APC,9.08995,0.007,,1,qlp-s44-ffi,QLP,03:46:38.47,27:28:17.48,-1.071,0.1,-20.686,0.081,2459521.626105,0.0004499,4.7126743,1.14e-05,1.297,0.197,1.80382,0.007407,1660.0,6.82179,8.14703,0.784022,212.04,1063.0,44.0,143.312,1.81,5626.5,213.9,,,1.62,0.13,,,,,"18,42,43,44",2019-12-19,2022-01-10,2022-12-14 12:09:24,TICv8 SPLIT on TIC 640763859 and 640763860; TFOP APC; initial RVs indicate mass is ~115 Mjup,1606,1,False,False,True -26433869,1607.01,,5,5,5,5,5,5,5,,,317.0,1,13,2,EB,FP,8.4107,0.008,,1,qlp,QLP,03:47:15.44,30:08:58.19,3.816,0.099,-3.391,0.058,2459471.339568,0.0017018,1.0357235,5.5e-06,1.366,0.335,0.521278,0.000974,480.0,0.897231,15.828,,1358.51,1691.0,18.0,329.591,7.032,4963.0,122.0,,,7.83,,,,,,"18,42",2019-12-19,2021-10-12,2022-12-14 12:09:24,small depth aperture correlation; large planet candidate; TFOP FP; retired as NEB,1607,1,False,False,False -138017750,1608.01,,5,5,5,5,3,5,5,228.3,499.2,125.99,0,2,2,PC,APC,7.42812,0.006,,1,spoc-s58-b0A,QLP,03:23:12.28,33:04:41.28,109.242,0.111,-58.264,0.096,2459882.938772,0.00044460446,2.47272889897545,7.2922914e-05,2.44066229452164,0.020254102,3.269802,0.047615,3007.06871551788,43.85444,13.9005086136031,0.59063685,4007.66067302038,2029.28238385406,72.28438,100.635,0.8968,6057.7,67.1,3.84,0.08,2.12802004814148,0.0886028,,,1.148,0.151763,"18,58",2019-12-19,2023-02-21,2023-02-25 12:10:55,active star; TFOP SB1/APC,1608,1,False,False,True -229951289,1609.01,,5,5,5,5,5,5,5,2.0,32.1,7.74,0,5,2,PC,FA,10.2572,0.006,,1,qlp,QLP,19:14:42.1,60:40:15.41,-2.93,0.053,-19.382,0.061,2458692.73536,0.01036,13.3118,0.00203,4.492,0.616,0.814608,0.00251,750.0,2.31143,2.67981,0.201427,109.875,901.0,9.0,165.808,0.7695,6011.0,123.1,4.5,0.08,0.98,0.04,,,1.111,0.15299,"14,15,16,17,18,19",2019-12-19,2020-05-20,2022-12-14 12:09:24,potential L1 candidate,1609,1,False,False,True -219776325,1610.01,,2,4,4,2,4,4,4,3.8,34.6,6.52,5,5,6,PC,PC,10.3727,0.006,,1,qlp-s59-ffi,QLP,17:34:10.42,61:07:17.3,3.627,0.041,42.121,0.048,2459934.586215,0.0019329,2.5288078,5.9e-06,1.383,0.414,0.39528,0.032638,364.0,30.0599,2.44479,0.156392,648.06,1405.0,18.0,191.957,0.7715,5740.2,119.6,4.3,0.08,1.19,0.06,0.187804,0.0123305,1.026,0.131102,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,59",2019-12-19,2023-02-09,2023-02-25 12:10:55,L1 candidate; variable host,1610,1,False,False,True -264678534,1611.01,,1,5,5,1,4,4,4,5.8,123.8,6.47,3,25,3,CP,CP,7.5825,0.006,,1,qlp-s60-ffi,QLP,21:40:48.39,84:20:01.54,345.178,0.067,63.044,0.07,2459930.614606,0.0007782,16.2017359,1.93e-05,2.811,0.729,0.98847,0.031152,910.0,28.6921,2.42374,0.171769,26.6327,632.0,54.0,28.2938,0.0312,5071.0,141.3,4.58,0.09,0.78,0.05,-0.07,0.1,0.85,0.105302,"18,19,20,25,26,40,52,53,58,59,60",2019-12-19,2023-02-27,2023-03-03 12:11:24,HD 207897 b,1611,1,False,False,True -268403451,1612.01,,5,5,5,5,5,5,5,114.3,119.8,317.0,0,0,0,KP,KP,10.0521,0.006,,1,qlp-s60-ffi,QLP,18:29:54.74,85:13:59.95,-15.354,0.038,24.461,0.054,2459962.467056,0.0001619,2.8641324,7e-07,2.493,0.181,10.475613,0.233351,9602.0,214.901,15.3798,0.748208,670.49,1417.0,315.0,234.149,1.1875,6082.0,137.7,4.13,0.08,1.53,0.07,,,1.139,0.156619,"18,19,20,25,26,40,47,52,53,59,60",2019-12-19,2023-02-27,2023-03-03 12:11:24,XO-7b (arXiv:1912.02821),1612,1,False,False,True -272625214,1613.01,,5,5,5,5,5,5,5,8.6,50.8,25.69,0,3,1,EB,FP,10.4641,0.006,,1,qlp-s57-ffi,QLP,23:45:16.46,62:08:33.72,15.96,0.054,0.67,0.045,2458979.490719,0.007091,5.2469991,0.0002597,3.45,0.46,1.281925,0.11442,1180.0,105.379,5.46087,0.343567,604.151,1381.0,16.0,304.76,3.193,6651.0,139.9,4.27,0.09,1.44,0.06,,,1.4,0.232588,"17,18,24,57",2019-12-19,2022-12-07,2022-12-16 12:08:26,crowded field; brighter star nearby,1613,1,False,False,False -317397615,1614.01,,5,5,5,5,5,5,5,33.2,48.3,70.44,2,1,0,PC,FP,10.2351,0.006,,1,qlp,QLP,23:19:11.12,75:01:04.31,-5.462,0.045,-18.639,0.044,2458765.40805,0.00285,0.74374,8e-05,1.571,0.26,0.662501,0.001326,610.0,1.22152,9.88119,,2623.74,1993.0,18.0,423.272,4.72,5182.0,122.0,,,4.04,,,,,,"17,18,19",2019-12-19,2020-05-20,2022-12-14 12:09:24,Likely EB; a/Rs close to 1; check neighbors,1614,1,False,False,True -317507345,1615.01,,5,5,5,5,5,5,5,241.1,520.2,317.0,1,2,0,PC,FP,9.68708,0.006,,1,qlp,QLP,23:24:41.93,77:37:37.61,12.588,0.054,2.736,0.047,2458794.76292,0.00059,3.94018,0.00016,1.991,0.076,17.35779,0.112186,15860.0,103.322,24.0533,2.25373,942.43,1543.0,107.0,260.494,2.111,7170.0,213.8,4.31,0.08,1.52,0.09,,,1.69,0.284802,"18,19",2019-12-19,2019-12-19,2022-12-14 12:09:24,ExoFOP FP; Retired as SB1 ,1615,1,False,False,True -322054600,1616.01,,3,4,3,3,4,4,4,15.4,72.2,23.25,2,2,3,PC,PC,10.4505,0.006,,1,qlp-s57-tois,QLP,21:35:28.84,68:59:14.3,-2.787,0.058,-13.286,0.049,2459879.726398,0.0013367,1.3432989,2.4e-06,0.684,0.343,1.090627,0.179225,1004.0,165.059,5.14071,0.464901,898.75,1525.0,17.0,304.408,2.3795,6713.0,189.7,4.27,0.09,1.45,0.06,,,1.427,0.25502,"17,18,24,25,57",2019-12-19,2023-05-04,2023-05-06 12:13:45,2 stars in pixel,1616,1,False,False,True -322202434,1617.01,,5,5,5,5,5,5,5,3.6,37.1,3.35,1,2,0,PC,FP,10.2505,0.006,,1,spoc,QLP,21:41:18.01,68:48:25.93,51.799,0.044,29.15,0.044,2458739.31801,0.0013933957,1.40145406164402,1.9531608e-05,1.36299658299998,0.32969347,0.319923,0.037184,294.616807763336,34.247444,1.6469902161643,2.4091113,1255.22447749537,1518.09901846358,10.408893,133.496,0.4335,5521.0,182.2,4.48,0.08,0.942619,0.0473292,,,0.97,0.121539,"16,17,18,24,25",2019-12-19,2020-09-23,2022-12-14 12:09:24,potential synchronization in s18; some depth-aperture correlation; TFOP FP,1617,1,False,False,True -376838000,1618.01,,5,5,5,5,5,5,5,8.6,50.9,24.64,0,1,0,PC,FP,9.9272,0.033,,1,qlp,QLP,22:43:38.32,69:05:30.94,11.937,0.055,2.525,0.049,2458765.05965,0.0045,2.1679,0.00031,1.39,0.551,0.608183,0.005979,560.0,5.50695,5.32848,0.574709,10508.5,2820.0,11.0,451.796,6.61,10596.0,671.7,4.27,0.09,2.0,0.1,,,2.74,0.417143,"17,18",2019-12-19,2020-05-20,2022-12-14 12:09:24,TFOP retired as NEB; some depth-aperture correlation,1618,1,False,False,False -377144784,1619.01,,3,4,3,3,3,4,4,26.7,34.4,91.18,0,2,1,PC,PC,10.0552,0.006,,1,qlp-s57-ffi,QLP,22:49:46.54,68:15:03.85,68.76,0.048,3.244,0.044,2459882.666507,0.007469098,2.386701,1.09e-05,2.911,0.846,0.619046,0.06109,570.0,56.2644,11.5,,1567.81,1753.0,21.0,396.201,4.0995,5017.0,122.0,,,4.73,,,,,,"17,18,24,57,58",2019-12-19,2023-05-19,2023-05-19 00:00:00,depth aperture correlation; ~300 ppm secondary at half phase in spoc-s14-s60 multisector; offset towards dimmer neighbors in,1619,1,False,False,False -378291076,1620.01,,2,4,2,2,4,4,4,5.3,46.2,7.36,1,3,4,PC,PC,9.53523,0.006,,1,qlp-s24-ffi,QLP,23:52:51.27,61:21:36.93,12.29,0.04,-14.458,0.032,2458766.51294,0.00598,1.59818,6e-05,2.011,0.327,0.347491,0.001126,320.0,1.03679,2.61407,0.202882,2311.12,1931.0,12.0,207.505,1.044,6594.0,142.3,4.23,0.09,1.49,0.07,,,1.375,0.241061,"17,18,24",2019-12-19,2023-05-04,2023-05-06 12:13:45,,1620,1,False,False,False -387260717,1621.01,,2,4,2,2,3,4,4,0.8,2.6,2.4,1,2,4,PC,PC,9.97595,0.006,,1,qlp-s49-tois,QLP,20:37:23.72,70:57:14.72,10.531,0.071,-20.418,0.067,2459659.579362,0.0354633,6.453624,0.0002925,3.582,0.664,0.217169,0.001081,200.0,0.995244,1.35756,0.123577,680.81,1423.0,7.0,161.088,0.778,7257.0,418.7,4.64,0.11,1.02,0.04,,,1.634,0.324757,"16,17,18,19,22,24,25,49",2019-12-19,2022-08-16,2022-12-14 12:09:24,low SNR,1621,1,False,False,True -388076005,1622.01,,5,5,5,5,5,5,5,6.4,65.5,4.75,0,1,0,EB,FP,9.39435,0.006,,1,qlp-s57-ffi,QLP,21:12:11.95,68:03:08.89,54.237,0.038,29.051,0.044,2459880.690181,0.0023969,1.7126115,7.6e-06,3.128,0.491,0.369213,0.023239,340.0,21.404,2.01928,0.114591,4528.0,2285.0,27.0,113.845,0.291,5932.2,71.4,4.48,0.08,1.0,0.05,,,1.107,0.143434,"16,18,24,25,56,57",2019-12-19,2022-12-12,2022-12-16 12:08:26,check 1981348402 - no stellar information; TFOP FP/NEB,1622,1,False,False,True -407394748,1623.01,,5,5,5,5,1,5,5,35.9,146.4,36.73,0,3,0,PC,APC,9.5287,0.006,,1,qlp-s59-ffi,QLP,00:21:40.96,77:52:48.25,17.7,1.7,10.0,1.8,2459935.743492,0.0003753,0.7522768,5e-07,1.076,0.175,1.383023,0.07351,1273.0,67.7029,6.74658,,12016.8,,74.0,280.381,,7325.2,111.9,,,1.77,,,,,,"18,19,24,25,52,58,59",2019-12-19,2023-02-09,2023-02-25 12:10:55,2 stars in pixel; TFOP SB2/APC; possible depth-aperture correlation,1623,1,False,False,True -461387302,1624.01,,5,5,5,5,5,5,5,3.4,34.3,9.59,0,4,0,PC,FP,10.2763,0.006,,1,qlp,QLP,00:12:05.23,66:39:01.88,19.05,0.046,-8.532,0.045,2458765.95018,0.01061,5.80783,0.00195,4.91,0.871,0.608183,0.001245,560.0,1.14635,3.06399,0.200374,1025.36,1576.0,11.0,234.455,1.54,6406.0,179.8,4.34,0.09,1.27,0.06,,,1.287,0.22142,"17,18",2019-12-19,2020-05-20,2022-12-14 12:09:24,Centroid offset; significant depth-aperture correlation; TFOP NEB,1624,1,False,False,False -470852531,1625.01,,5,5,5,5,5,5,5,11.2,61.4,16.51,1,3,2,PC,FP,10.2918,0.006,,1,qlp,QLP,23:58:57.88,61:33:14.72,37.502,0.052,-13.408,0.071,2458765.53404,0.00394,1.49446,0.00023,2.114,0.367,0.966735,0.001739,890.0,1.6014,4.21366,0.272462,3024.1,2065.0,19.0,269.476,2.3625,6587.0,163.9,4.27,0.09,1.43,0.06,,,1.372,0.230037,"17,18",2019-12-19,2020-05-20,2022-12-14 12:09:24,shallow secondary eclipse might be due to a planet,1625,1,False,False,False -157586003,1626.01,,5,5,5,5,5,5,5,42.4,43.1,317.0,0,0,0,KP,KP,12.0545,0.007,,1,spoc-s14-s55-b0A-KP,QLP,18:37:02.99,40:01:07.29,8.779,0.044,0.25,0.043,2459391.184996,0.0012664439,3.33261886913099,2.834383e-06,3.56200655566395,0.04588533,9.06072,0.104592,8310.50661615291,96.32783,15.639908242491,0.8105998,1512.99737636181,1590.66708061928,87.40124,610.176,8.8895,5768.2,140.0,4.0,0.07,1.6948299407959,0.0842764,,,1.05,0.129602,"26,40,53,54",2020-01-14,2023-03-15,2023-03-24 12:12:10,WASP-153 b,1626,1,False,False,True -424435940,1627.01,,5,5,5,5,5,5,5,58.6,181.1,120.6,0,0,0,KP,KP,11.2311,0.007,,1,spoc-s14-s55-b0A-KP,QLP,18:18:48.3,45:10:19.99,32.58,0.04,47.14,0.043,2459393.375248,0.00044334034,5.0172146023149,1.880353e-06,3.73633007478987,0.018188106,15.568672,0.069285,14236.9594002568,63.811466,13.5478018944835,0.61860496,404.711185991506,1143.9473896154,215.28627,290.404,1.819,5930.0,435.4,4.4,0.08,1.10012996196747,0.0500402,,,1.12,0.147767,"25,26,40,52,53,54",2020-01-14,2023-03-15,2023-03-24 12:12:10,WASP-58 b,1627,1,False,False,True -284475976,1628.01,,5,5,5,5,5,5,5,91.4,109.2,317.0,0,0,0,KP,KP,11.1541,0.007,,1,spoc-s14-s55-b0A-KP,QLP,19:24:38.97,55:28:22.9,6.141,0.039,-27.969,0.041,2459825.459527,0.0004746404,2.14363640030623,6.88549e-07,3.15393487302238,0.015432841,10.03912,0.043271,9203.75527432507,39.85365,18.0537588202043,0.9524189,3410.26011847847,1949.02148289583,257.01456,454.144,4.423,6148.0,140.8,4.01,0.08,1.77060997486115,0.0931859,0.18,0.1,1.17,0.149347,"23,26,40,41,53,54,55,56",2020-01-14,2023-03-15,2023-03-24 12:12:10,WASP-48 b,1628,1,False,False,True -310003988,1629.01,,5,5,5,5,5,5,5,60.9,75.3,317.0,0,0,0,KP,KP,11.191,0.007,,1,qlp-s50-tois,QLP,14:59:29.49,46:57:36.36,5.323,0.038,-7.851,0.047,2459686.204782,0.000712,4.5421594,4.8e-06,4.294,0.293,10.648837,0.002245,9760.0,2.06738,17.3816,0.944499,821.405,1491.0,97.0,435.156,4.3895,5939.3,133.1,4.0,0.08,1.73,0.09,0.279287,0.0122386,1.08,0.13826,"16,23,24,50",2020-01-14,2022-12-12,2022-12-16 12:08:26,WASP-113 b,1629,1,False,False,True -317597583,1630.01,,2,4,4,2,3,4,4,3.7,64.0,6.43,3,2,3,PC,PC,8.9943,0.006,,1,qlp-s59-ffi,SPOC/QLP,23:28:04,75:33:09.38,-5.247,0.048,-34.379,0.039,2459931.224512,0.001764,12.0557544,2.98e-05,1.958,0.3,0.886322,0.045046,816.0,41.4876,2.41188,0.141788,17.7993,572.0,23.0,66.0929,0.12895,5504.0,129.9,4.58,0.08,0.83,0.04,,,0.95,0.125199,"17,18,19,24,25,52,58,59",2020-01-14,2023-02-03,2023-02-09 12:10:04,L1 candidate; two stars in pixel,1630,1,False,False,True -29054413,1631.01,,2,4,2,2,4,4,4,2.0,31.6,8.44,7,4,8,PC,APC,10.4289,0.006,,1,spoc-s01-s46-b0A,SPOC,03:23:39.95,25:02:52.57,19.764,0.085,-31.774,0.057,2458795.511502,0.0023326322,15.2521891769035,0.0016143622,1.34635140108067,0.9639249,0.946363,0.192062,871.25274456616,176.88022,2.83465850118945,7.237937,129.620497217113,860.573899852889,7.141052,140.065,0.89,5473.0,148.926,4.46488,0.0803515,0.949021995067596,0.0504498,,,0.958,0.118175,"18,44",2020-01-14,2022-07-15,2022-12-14 12:09:24,period could be half (7.626 d),1631,1,False,False,True -51024887,1632.01,,5,5,5,5,5,5,5,8.8,387.5,49.75,3,0,0,PC,FP,14.9885,0.011,,1,spoc,SPOC,02:48:37.25,62:11:21.33,112.945,0.128,-104.348,0.161,2458797.344998,0.0040512625,8.24918714462144,0.0031995191,4.98078465701191,0.34420857,135.988871,12.120702,117724.028261351,11101.498,8.0476983653632,35.753082,1.15526028899799,264.417205368086,16.019594,41.5305,0.15765,2990.0,158.0,5.13581,0.0381304,0.165066,0.0050239,,,0.135848,0.0200515,18,2020-01-14,2020-01-14,2022-12-14 12:09:24,Check neighbors,1632,1,False,False,True -165551882,1633.01,,5,5,5,5,5,5,5,0.7,44.9,4.34,2,0,2,V,FA,12.5441,0.007,,1,spoc-s18-b02,SPOC,17:47:04.16,57:13:35.98,135.163,0.06,441.578,0.062,2458798.104217,0.0042393273,12.1582803806071,0.005804952,2.14068366931483,0.7304905,3.731322,0.559792,3430.77626376343,515.45435,1.91602774539161,1.0555835,2.67415241324056,326.149178244604,7.3275914,48.049,0.06325,3429.0,157.0,4.90092,0.00321302,0.3232,0.00954308,,,0.303245,0.0201268,18,2020-01-14,2023-05-15,2023-06-18 00:00:00,TFOP FA,1633,1,False,False,True -201186294,1634.01,,1,5,5,1,4,4,4,14.4,105.9,4.01,11,3,10,PC,CP,11.0136,0.007,,1,spoc,SPOC,03:45:33.75,37:06:44.21,81.643,0.081,13.486,0.058,2458791.515001,0.0013370865,0.989330011005163,0.00010554207,1.03576145099967,0.3979622,1.651215,0.144301,1519.66958700741,132.89734,1.83038541096635,1.7299397,122.215026174179,848.009857892309,10.747845,35.2736,0.05265,3455.0,157.0,4.76798,0.00654032,0.465258,0.0136292,,,0.462696,0.0201353,18,2020-01-14,2020-01-14,2022-12-14 12:09:24,Level one candidate,1634,1,False,False,True -230086768,1635.01,,5,5,5,5,5,5,5,3.3,179.7,127.97,0,0,2,PC,FP,13.4447,0.007,,1,spoc,SPOC,16:26:29.78,66:08:39.21,-48.099,0.056,141.604,0.061,2458736.130549,0.000490096,34.9272723614214,0.00034786598,2.70245179514591,0.0345804,125.278428,2.283908,108977.586282899,2101.3462,14.0292151246601,0.5962152,0.817114762095136,242.48814638125,93.32716,89.6716,0.26635,3496.0,63.0,4.9,,0.389199,0.0116133,,,0.379236,0.0202686,"15,16,17,18,19",2020-01-14,2020-10-07,2022-12-14 12:09:24,TFOP FP,1635,1,False,False,True -269892793,1636.01,,3,5,5,3,4,4,4,335.1,381.2,317.0,6,2,3,PC,APC,11.9056,0.006,,1,spoc-s58-b0A,SPOC,02:57:10.31,33:18:45.56,23.799,0.24,-7.395,0.214,2459882.483425,0.00029227135,1.77290915945665,3.216448e-05,1.83802759438128,0.024091378,28.963352,0.242147,26323.5653120527,223.00052,18.8092563020623,8.570163,317.783169703882,1076.84320687476,114.980415,152.983,3.3105,4769.0,128.627,4.64845,0.0974705,0.68784099817276,0.0515126,,,0.768,0.0946756,"18,58",2020-01-14,2023-02-21,2023-02-25 12:10:55,Large; v-shaped; ~12 sigma odd-even in spoc-s58-b0A,1636,1,False,False,True -286355915,1637.01,,5,5,5,5,2,5,5,85.1,113.2,317.0,1,2,2,PC,APC,10.6479,0.009,,1,spoc-s14-s60-b0A-APC,SPOC,02:31:34.38,34:22:08.13,-3.814,0.091,2.129,0.081,2459885.666366,0.0005433973,4.07668395215913,1.8589126e-06,4.41321809513611,0.029778235,11.416315,0.092933,10459.7272290437,85.59089,17.5223181566287,0.77676964,1443.08833889456,1571.96538623317,106.9362,374.442,6.276,6531.44,109.703,4.13711,0.0874493,1.64302003383636,0.0721885,-0.356,0.014,1.35,0.224253,"18,58",2020-01-14,2023-06-13,2023-06-16 12:14:51,strong secondary; large; TFOP SB1/APC,1637,1,False,False,True -312862941,1638.01,,3,4,4,3,4,4,4,52.2,135.5,29.46,8,0,5,PC,PC,12.1312,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,01:01:17.17,55:41:52.84,-28.063,0.034,14.603,0.038,2459908.44105,0.0006818,0.915062301311702,8.864068e-06,0.666272846396489,0.051903915,4.68411,0.352148,4304.93222240706,324.28793,5.38690404413207,0.3441965,357.948417887303,1109.36602538113,17.75692,126.283,0.4825,3810.0,157.0,4.56875,0.0122909,0.70123702287674,0.0205528,,,0.664367,0.0201471,"17,18,58",2020-01-14,2023-06-26,2023-06-26 00:00:00,potential phase synchronization,1638,1,False,False,True -348673213,1639.01,,5,5,5,5,5,5,5,14.1,62.9,11.7,3,3,9,PC,FP,12.974,0.007,,1,spoc,SPOC,02:23:13.76,56:34:12.05,20.893,0.046,-34.883,0.056,2458791.468047,0.0027830303,0.901465043293428,0.00019155408,2.55621546285242,0.38258508,3.432618,0.262084,3156.56582644838,241.35936,3.43481272590363,0.9978432,325.547024068366,1083.36096172022,8.927408,153.986,0.6375,3896.0,157.0,4.64192,0.0112232,0.611023,0.0183221,,,0.59699,0.0203778,18,2020-01-14,2020-01-14,2022-12-14 12:09:24,Level one candidate; check neighbors; crowded field,1639,1,False,False,True -396562848,1640.01,,1,4,1,1,4,4,4,8.9,22.6,2.52,11,1,4,CP,CP,11.0548,0.007,,1,spoc-s14-s60-b0A-CP,SPOC,02:57:21.33,76:33:05.06,691.036,0.051,-399.685,0.052,2459767.373106,0.0012409,1.94954033783942,3.247484e-06,0.806061814694175,0.04871664,2.270741,0.094104,2089.24441152356,86.66906,1.39292173370646,0.070706606,23.3722044042806,560.782779062696,24.536419,18.2276,0.011,3414.0,157.0,4.97292,0.0116277,0.26018700003624,0.00784341,,,0.231967,0.0201494,"18,19,25,26,52,53,59",2020-01-14,2023-06-13,2023-06-16 12:14:51,LHS 1478 b,1640,1,False,False,True -422923265,1641.01,,3,4,3,3,4,4,4,27.1,93.6,109.97,4,1,12,PC,PC,9.616,0.007,,1,qlp-s58-ffi,SPOC,02:40:58.94,42:52:16.49,2.118,0.25,-6.461,0.238,2459906.863602,0.0008751,1.8646725,3.3e-06,1.028,0.456,0.619046,0.132786,570.0,122.293,12.8352,2.0753,3903.88,2202.0,16.0,769.138,112.928,9898.0,151.436,3.77846,0.143563,3.4,0.52,,,2.53,0.351827,"18,58",2020-01-14,2023-02-21,2023-02-25 12:10:55,variable host star,1641,1,False,False,True -229940491,1642.01,,3,5,5,3,3,4,4,23.8,75.5,317.0,1,1,1,PC,APC,11.1169,0.006,,1,qlp-s52-tois,SPOC,19:12:11.88,63:39:25.42,6.087,0.057,22.075,0.049,2459747.914171,0.0009827,37.4590076,5.53e-05,2.863,0.161,6.370208,1.240184,5850.0,1141.6,20.3559,5.64696,15.6505,554.0,48.0,338.948,3.4525,5730.0,122.969,4.09817,0.0779368,1.5,0.07,,,1.023,0.124582,"14,15,16,17,18,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52",2020-01-14,2022-10-04,2022-12-14 12:09:24,TFOP SB2/APC,1642,1,False,False,True -298647682,1643.01,,2,4,2,2,4,4,4,4.1,91.1,7.85,1,12,4,PC,PC,8.6628,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,18:09:03.42,53:13:03.82,-50.733,0.051,22.153,0.046,2459815.953155,0.0008573,20.0795217156577,1.4697915e-05,1.21865544417303,0.10810019,1.157507,0.040377,1065.53557065685,37.188328,2.71704621332241,0.55210614,15.8594326797458,508.96938689754,21.899092,40.6988,0.03935,4763.0,130.968,4.54306,0.0944384,0.77758401632309,0.0571432,,,0.77,0.0879609,"14,15,18,21,24,25,26,40,41,48,51,52,54,55,58,59,60",2020-01-24,2023-05-19,2023-06-16 12:14:51,v-shaped; two stars in pixel; variable host,1643,1,False,False,True -22843856,1644.01,,5,5,5,5,5,5,5,119.7,298.9,87.41,1,1,0,EB,FP,9.8203,0.006,,1,qlp-s44-ffi,SPOC,02:36:01.57,25:35:18.46,4.7,2.1,-17.0,2.1,2459521.618633,0.0010878,1.8497201,8.8e-06,1.757,0.21,6.261001,0.008366,5750.0,7.70571,11.2477,,2139.72,,107.0,163.49,,6019.0,,4.438,,1.24,,,,,,"18,42,43,44",2020-01-24,2021-12-08,2022-12-14 12:09:24,V-shaped; seems to be synchronized with variability; TFOP FP; retired as SB2,1644,1,False,False,True -184679932,1645.01,,5,5,5,5,5,5,5,320.1,404.5,317.0,1,1,0,EB,FP,9.25319,0.006,,1,spoc-s18-tier3,SPOC,02:09:10.59,40:24:06.99,20.364,0.071,-14.744,0.081,2458791.425546,0.00011528159,2.17214162392028,1.9389081e-05,2.74808232874544,0.008388367,19.571535,0.082567,17864.5520776003,76.04454,18.0850347166027,0.8086398,1872.52891353618,1677.74859056003,219.95511,146.653,0.8685,6198.0,125.762,4.27912,0.0816488,1.30937,0.0584171,,,1.189,0.166853,18,2020-01-24,2021-12-08,2022-12-14 12:09:24,synchronized; retired as SB1,1645,1,False,False,True -387527558,1646.01,,5,5,5,5,5,5,5,29.6,170.5,38.63,1,0,0,IS,FA,13.0367,0.007,,1,spoc-s18-tier3,SPOC,20:49:18.5,70:47:47.78,33.323,0.049,58.22,0.056,2458794.103356,0.0018817907,3.6239090118,0.0027476253,2.65680115643423,0.1899665,29.695383,2.179582,26979.8210455556,2005.456,6.93471365142963,0.46860772,4.61683933191927,373.85736429386,13.211304,82.1294,0.20165,3514.0,157.0,4.81377,0.00423785,0.414101,0.0123306,,,0.407305,0.0202724,18,2020-01-24,2021-12-08,2022-12-14 12:09:24,TFOP FA,1646,1,False,False,True -154927364,1647.01,,5,5,5,5,5,5,5,108.6,182.6,317.0,0,3,2,EB,FP,10.249,0.007,,1,qlp-s53-ffi,QLP,13:51:29.81,84:04:17.81,-14.658,0.052,8.105,0.052,2459763.040717,0.000253,6.9743673,2.9e-06,2.672,0.065,11.833635,0.003195,10840.0,2.94277,22.0018,1.102,342.043,1198.0,116.0,306.502,3.1535,5821.7,96.2,3.97,0.08,1.86,0.09,,,1.166,0.156134,"14,19,20,21,26,40,41,47,53",2020-01-29,2022-08-17,2022-12-14 12:09:24,Radius too large; follow-up suggests a low-mass binary companion; retired as FP/SB1,1647,1,False,False,True -376353509,1648.01,,2,4,4,2,4,4,4,5.4,62.6,7.49,3,3,5,PC,PC,9.5831,0.006,,1,qlp-s59-ffi,QLP,03:01:36.28,69:13:47.72,16.325,0.036,5.432,0.05,2459925.343324,0.002279,7.3315597,2.07e-05,1.23,0.318,0.931962,0.079977,858.0,73.6587,2.6278,0.213125,15.1551,549.0,16.0,69.835,0.1643,4871.6,52.4,4.48,0.09,0.84,0.06,,,0.78,0.0927652,"18,19,25,52,59",2020-01-29,2023-02-09,2023-02-25 12:10:55,L1 candidate,1648,1,False,False,True -116608612,1649.01,,5,5,5,5,2,5,5,181.7,348.8,317.0,0,2,2,PC,APC,9.17041,0.006,,1,qlp-s59-ffi,QLP,05:42:39.17,35:11:08.55,-2.544,0.081,-20.51,0.062,2459930.581372,0.0011497,3.4557842,8.7e-06,2.368,0.445,6.65966,5.675817,6115.0,5213.98,20.5846,4.88582,5261.78,2372.0,160.0,267.683,3.777,8170.0,258.8,4.24,0.08,1.78,0.06,,,1.996,0.317733,"19,43,44,45,59",2020-01-29,2023-02-09,2023-02-25 12:10:55,TFOP SB1/APC; possibly synchronized; possible secondary; possible centroid offset,1649,1,False,False,True -122485078,1650.01,,5,5,5,5,5,5,5,13.7,41.7,86.56,1,1,2,PC,FP,10.0106,0.006,,1,qlp,QLP,05:07:24.31,36:16:30.31,3.558,0.076,-0.776,0.047,2458822.09874,0.00422,9.1505,0.0034,2.986,0.385,1.488478,0.003093,1370.0,2.84901,11.1497,0.696148,272.763,1132.0,13.0,463.156,9.894,7719.0,139.9,3.74,0.08,3.02,0.11,,,1.817,0.287543,"18,19",2020-01-29,2020-01-29,2022-12-14 12:09:24,,1650,1,False,False,False -138168780,1651.01,,5,5,5,5,5,5,5,141.1,208.2,317.0,0,1,2,KP,KP,9.88278,0.006,,1,qlp-s60-ffi,SPOC/QLP,06:19:10.31,73:49:39.24,-16.643,0.055,-22.593,0.111,2459962.142173,0.0001022,3.7649921,5e-07,2.663,0.016,16.235279,0.098826,14842.0,91.0184,17.7429,0.72972,588.305,1372.0,425.0,235.479,2.418,6724.0,164.0,4.29,0.09,1.42,0.06,,,1.432,0.259705,"19,20,26,40,53,59,60",2020-01-29,2023-02-27,2023-03-03 12:11:24,XO-6 b,1651,1,False,False,True -154867950,1652.01,,2,4,2,2,3,4,4,16.7,79.2,10.49,5,12,2,PC,PC,8.68013,0.006,,1,qlp-s47-tois,QLP,12:33:25.13,84:40:44.24,-124.769,0.039,-43.92,0.036,2459606.320754,0.0014235,0.6664948,1.6e-06,1.38,0.143,0.282328,0.000306,260.0,0.281876,3.217,0.21665,2681.48,2004.0,34.0,130.942,0.357,5329.0,131.1,3.8,0.08,1.99,0.11,,,0.919,0.113387,"14,19,20,21,26,40,41,47,53",2020-01-29,2022-11-18,2022-12-14 12:09:24,possibly SV; possible centroid offset,1652,1,False,False,True -156724719,1653.01,,3,4,3,3,4,4,4,,,40.91,3,1,11,PC,PC,9.353,0.006,,1,qlp-s59-ffi,QLP,04:48:07.64,39:58:00.97,1.4,1.5,-7.0,1.5,2459935.725734,0.0011327,10.9568574,1.6e-05,3.574,0.701,4.708174,5.615702,4327.0,5158.9,,,867.782,1512.0,50.0,408.36,,7106.5,152.6,,,,,,,,,"18,19,59",2020-01-29,2023-02-09,2023-02-25 12:10:55,no stellar radius; Gaia plx=1.3; host star is rapidly rotating hot star,1653,1,False,False,False -258829450,1654.01,,2,4,2,2,4,4,4,4.7,35.9,8.69,0,1,6,PC,PC,10.1556,0.006,,1,qlp-s60-ffi,QLP,19:10:39.97,66:46:05.1,5.504,0.218,-18.433,0.251,2459962.439333,0.0024828,1.8347927,6.3e-06,2.423,0.527,0.255178,0.016046,235.0,14.779,,,,,19.0,304.865,12.8035,5286.9,723.2,,,,,,,,,"14,15,16,17,18,19,20,21,22,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2020-01-29,2023-02-27,2023-03-03 12:11:24,L1 candidate; visual binary; no stellar radius but other parameters indicate host is likely an F star,1654,1,False,False,True -266500992,1655.01,,1,4,1,1,4,4,4,8.3,57.0,12.79,5,2,10,PC,PC,10.3309,0.006,,1,qlp-s59-ffi,QLP,04:04:41.34,52:15:25.17,5.89,0.071,-16.735,0.048,2459934.44938,0.0024119,3.2786557,1.29e-05,2.73,0.34,1.112364,0.07456,1024.0,68.6697,3.63296,0.253374,447.627,1281.0,17.0,165.314,0.987,5411.0,153.9,4.29,0.09,1.15,0.06,,,0.941,0.117143,"18,19,59",2020-01-29,2023-02-03,2023-02-09 12:10:04,L1 candidate,1655,1,False,False,False -267694283,1656.01,,5,5,5,5,3,5,5,0.4,102.1,317.0,0,1,2,PC,APC,8.54941,0.006,,1,qlp-s59-ffi,QLP,04:12:55.2,53:41:13.38,-2.732,0.084,-31.536,0.07,2459935.313412,0.0007875,1112.7562924,3.2e-05,9.386,1.271,7.265027,6.885507,6669.0,6321.72,20.062,3.15545,617.103,1388.0,126.0,106.477,0.6835,6324.0,127.6,4.34,0.09,1.26,0.06,-0.102,0.076,1.248,0.184731,"18,19,59",2020-01-29,2023-02-03,2023-02-09 12:10:04,TFOP APC/SB2; v-shaped; alerted as a single but now have a second transit; max periiod ~1112 days but true period is likely shorter,1656,1,False,False,False -27677846,1657.01,,5,5,5,5,5,5,5,47.7,253.6,39.7,1,10,0,EB,FP,9.5668,0.006,,1,qlp-s59-ffi,QLP,04:25:28.83,46:21:57.25,-59.115,0.092,9.559,0.042,2459936.359525,0.0022534,5.6309047,1.78e-05,3.877,1.142,1.828833,3.447076,1683.0,3169.84,7.00844,1.77046,2320.13,1933.0,24.0,78.7137,0.33005,5304.0,123.0,4.6,0.08,0.79,0.04,,,0.91,0.111594,"18,19,59",2020-01-29,2023-01-24,2023-01-26 12:09:41,V-shaped; slight odd-even; shoulders before/after ingress/egress; TFOP/NEB,1657,1,False,False,False -286561122,1658.01,,3,4,3,3,4,4,4,25.8,58.2,51.24,1,2,11,PC,PC,10.2674,0.006,,1,spoc-s59-b0A,QLP,04:23:30.29,35:29:42.39,-2.883,0.124,-12.716,0.08,2459910.5579,0.0029651416,0.680343277777045,0.00012601256,2.06741640327177,0.18646808,0.614239,0.047725,565.575422308829,43.955204,8.18880408860068,0.6728079,71174.0244493323,4165.81644782454,10.149446,506.864,12.112,7325.5,136.6,3.71,0.09,2.9787700176239,0.17593,0.275,0.02,1.66,0.275158,"18,19,59",2020-01-29,2023-03-16,2023-03-24 12:12:10,very short orbital period possibly too close to the star; a/Rstar = 1.3; centroid offset on another star in spoc-s59,1658,1,False,False,False -288631580,1659.01,,2,4,2,2,3,4,4,3.1,41.5,5.41,3,4,4,PC,PC,9.56906,0.006,,1,spoc-s14-s60-b0A-PC,QLP,18:31:42.05,82:18:21.42,6.721,0.039,47.712,0.04,2459757.356321,0.0029369,5.87755477968584,1.2762102e-05,2.90276407796453,0.16188574,0.447728,0.033168,412.288133672293,30.548046,2.18229042684032,0.3097249,267.170624864969,1031.13831846822,12.683007,122.494,0.307,5977.0,130.6,4.47,0.08,1.00567996501923,0.0478392,,,1.098,0.139672,"14,18,19,20,24,25,26,40,41,47,52,53,58,59,60",2020-01-29,2023-05-19,2023-06-16 12:14:51,potential multi; variable host star,1659,1,True,False,True -288631580,1659.02,,1,4,1,1,3,4,4,1.3,3.6,1.89,3,4,4,PC,PC,9.56906,0.006,,2,qlp-s58-tois,QLP,18:31:42.05,82:18:21.42,6.721,0.039,47.712,0.04,2459907.339882,0.0048588,3.3985674,2.49e-05,2.197,0.545,0.185677,0.017384,171.0,16.0108,1.18609,0.100029,456.908,1288.0,10.0,122.494,0.307,5977.0,130.6,4.47,0.08,1.01,0.05,,,1.098,0.139672,"14,18,19,20,24,25,26,40,41,47,52,53,58",2022-07-28,2023-07-06,2023-07-06 00:00:00,potential multi; potential L1 planet; low SNR,1659,2,True,False,True -311121985,1660.01,,5,5,5,5,5,5,5,12.1,72.7,13.52,2,4,0,PC,FP,9.00007,0.006,,1,qlp,QLP,05:42:19.51,49:30:48.43,26.89,0.1,-70.465,0.082,2458818.07142,0.00543,1.3567,0.00049,2.11,0.296,0.445243,0.001215,410.0,1.11925,3.73817,0.270907,3045.37,2069.0,13.0,187.823,2.1665,6375.0,159.4,4.0,0.09,1.86,0.08,,,1.272,0.192704,"18,19",2020-01-29,2020-01-29,2022-12-14 12:09:24,,1660,1,False,False,True -312122956,1661.01,,5,5,5,5,5,5,5,,,12.48,0,1,9,PC,FP,10.1283,0.072,,1,qlp-s45-ffi,QLP,05:53:54.23,30:26:45.75,1.027,0.203,-4.059,0.16,2459547.065465,0.0021039,2.0492064,1.58e-05,3.417,0.144,1.118885,0.061156,1030.0,56.325,,,,,38.0,4488.38,1671.21,,,,,,,,,,,"19,43,44,45",2020-01-29,2022-03-10,2022-12-14 12:09:24,Gaia Teff = 8000 K; Gaia distance from parallax may not be reliable; host likely giant; strong centroid offset in SPOC towards TIC 312122953,1661,1,False,False,True -339538183,1662.01,,5,5,5,5,5,5,5,57.1,168.8,90.02,5,1,5,EB,FP,9.7053,0.006,,1,qlp-s59-ffi,QLP,06:13:16.54,63:41:06.03,-4.99,0.961,0.594,1.224,2459935.390685,0.0016876,2.6093167,2.5e-05,1.175,0.35,2.15624,1.629262,1984.0,1499.48,11.4272,,526.719,,49.0,294.292,,7235.0,,,,1.78,,,,,,"18,19,20,59",2020-01-29,2023-01-23,2023-01-26 12:09:41,large; non-synchronized stellar activity; secondary (200ppm); TFOP FP/EB,1662,1,False,False,False -353367071,1663.01,,5,5,5,5,5,5,5,59.2,165.1,121.39,1,1,5,PC,FP,9.84095,0.006,,1,qlp,QLP,05:59:44.36,33:30:25.09,-3.075,0.12,-6.438,0.093,2458819.39874,0.00213,2.37532,0.00039,2.957,0.245,2.108374,0.16298,1940.0,150.099,13.5855,3.05985,24634.5,3490.0,24.0,402.261,8.8495,7895.7,147.4,4.06,0.1,2.11,0.17,-0.104,0.019,1.888,0.290804,"18,19",2020-01-29,2020-01-29,2022-12-14 12:09:24,,1663,1,False,False,True -353782445,1664.01,,2,4,4,2,4,4,4,3.5,41.9,9.94,1,7,6,PC,PC,9.17708,0.006,,1,qlp-s59-ffi,QLP,18:27:45.09,55:45:20.71,-11.857,0.043,27.282,0.044,2459920.042566,0.0029966,11.8351133,4.33e-05,2.639,0.78,0.333372,0.140634,307.0,129.52,3.1253,0.47049,555.627,1352.0,15.0,143.031,0.3945,6225.0,193.0,5.06078,0.333649,1.34,0.06,,,1.17,0.167775,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,51,52,53,54,55,56,57,58,59",2020-01-29,2023-02-03,2023-02-09 12:10:04,L1 candidate,1664,1,False,False,True -354006740,1665.01,,5,5,5,5,5,5,5,376.5,909.1,105.97,1,45,4,PC,FP,6.4018,0.006,,1,qlp,QLP,05:53:28.57,37:20:21.88,-45.908,0.083,83.682,0.067,2458819.00417,0.0022,1.76406,0.00029,3.086,0.077,0.945002,0.223557,870.0,205.882,12.3762,3.48063,40901.7,3961.0,34.0,66.5241,0.23325,6481.7,362.6,,,2.03,0.22,,,,,"18,19",2020-01-29,2020-01-29,2022-12-14 12:09:24,very crowded field; v-shaped; matches to 723801895 which is 0.1 mag and 723801891 which is 1.8 mag fainter,1665,1,False,False,False -368536386,1666.01,,5,5,5,5,5,5,5,9.1,45.0,23.66,1,2,2,PC,FP,10.3693,0.006,,1,qlp,QLP,05:57:40.84,36:45:56.9,-2.947,0.075,-1.976,0.061,2458818.74012,0.00948,1.69433,0.00183,2.169,0.563,0.705958,0.004021,650.0,3.70354,5.20733,0.47039,3651.29,2165.0,10.0,428.948,6.985,7185.0,269.0,4.04,0.09,2.0,0.08,,,1.607,0.288327,"18,19",2020-01-29,2020-01-29,2022-12-14 12:09:24,,1666,1,False,False,False -409183335,1667.01,,5,5,5,5,5,5,5,278.5,506.9,317.0,0,2,0,PC,FP,9.7229,0.014,,1,qlp,QLP,05:27:13.88,38:35:50.83,-0.5,1.7,-17.0,1.7,2458818.22815,0.00124,3.32125,0.00032,4.304,0.127,6.271921,1.210423,5760.0,1114.22,25.5824,,12389.8,,86.0,225.941,,7174.0,,,,1.76,,,,,,"18,19",2020-01-29,2020-01-29,2022-12-14 12:09:24,,1667,1,False,False,False -417705690,1668.01,,5,5,5,5,5,5,5,13.9,89.1,13.79,0,1,0,PC,FP,10.0233,0.006,,1,qlp,QLP,23:14:25.81,76:56:03.55,4.034,0.08,10.082,0.064,2458957.43883,0.00512,2.36332,0.00044,3.671,0.538,0.836339,0.036972,770.0,34.0518,3.79344,0.692873,11293.9,2871.0,19.0,130.543,0.5625,5420.0,119.5,4.38,0.08,1.04,0.05,,,0.944,0.119611,25,2020-01-29,2020-07-28,2022-12-14 12:09:24,retired as TFOP FP; potential centroid offset; minor depth-aperture correlation,1668,1,False,False,True -428679607,1669.01,,2,4,2,2,3,4,4,6.0,54.1,6.1,1,12,8,PC,PC,9.52906,0.006,,1,qlp-s60-ffi,SPOC/QLP,03:03:49.55,83:35:14.74,91.732,0.046,-34.432,0.046,2459958.651386,0.0016732,2.680061,6.6e-06,1.81,0.264,0.520192,0.028646,479.0,26.384,2.34221,0.137433,335.45,1192.0,19.0,111.276,0.3695,5550.0,134.2,4.37,0.08,1.07,0.05,,,0.977,0.123553,"19,20,25,26,52,53,59,60",2020-01-29,2023-02-27,2023-03-03 12:11:24,L1 candidate,1669,1,False,False,True -441739020,1670.01,,1,4,1,3,4,4,4,14.7,119.3,86.22,4,11,7,CP,CP,9.4682,0.006,,1,qlp-s60-ffi,SPOC,17:16:04.14,72:09:40.25,-6.094,0.05,5.154,0.049,2459932.635411,0.0004529,40.7501378,3.49e-05,5.245,0.987,6.838831,0.237079,6279.0,218.334,11.1017,0.522655,32.4373,664.0,170.0,168.067,0.687,6453.0,195.0,5.20004,0.374851,1.31,0.06,,,1.258,0.187763,"14,15,16,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,55,56,57,58,59,60",2020-01-29,2023-02-27,2023-04-06 00:00:00,TOI 1670 c/.01,1670,1,True,False,True -441739020,1670.02,,2,5,5,2,4,4,4,1.5,23.6,5.2,4,11,7,CP,CP,9.4682,0.006,,2,qlp-s60-ffi,SPOC,17:16:04.14,72:09:40.25,-6.094,0.05,5.154,0.049,2459941.145403,0.0041073,10.983694,6.38e-05,2.702,0.661,0.310565,0.023667,286.0,21.7976,2.12744,0.141011,86.151,848.0,13.0,168.067,0.687,6453.0,195.0,5.20004,0.374851,1.31,0.06,,,1.258,0.187763,"14,15,16,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,55,56,57,58,59,60",2020-07-16,2023-02-27,2023-03-03 12:11:24,TOI-1670 b / TOI 1670.02,1670,2,True,False,True -441739020,1670.03,TIC 441739020.03,1,4,1,1,3,4,4,0.3,16.4,9.05,4,11,7,PC,PC,9.4682,0.006,,3,spoc-s14-s60-b0A-CP,SPOC,17:16:04.14,72:09:40.25,-6.094,0.05,5.154,0.049,2458822.89838,0.005510094,123.058602823705,0.001050542,9.73165871151029,0.6779064,0.52697,0.047503,485.239366274436,43.751137,2.95384226175456,0.7356122,9.14308967349679,443.499356864514,10.614001,168.067,0.687,6453.0,195.0,5.20004,0.374851,1.31225001811981,0.0568342,,,1.258,0.187763,"15,16,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,55,56,57,58,59,60",2022-02-28,2023-06-13,2023-06-16 12:14:51,3:1 resonance; potential multi,1670,3,True,False,True -459903429,1671.01,,5,5,5,5,5,5,5,31.2,59.1,94.69,0,3,2,PC,FA,8.71289,0.006,,1,qlp,QLP,08:43:52.65,86:13:42.23,20.373,0.045,2.504,0.045,2458821.04876,0.00413,8.13664,0.00331,2.084,0.348,0.912402,0.003138,840.0,2.89007,11.75,,29.5076,649.0,9.0,221.791,1.2735,4913.0,122.0,,,3.96,,,,,,"18,19",2020-01-29,2020-01-29,2022-12-14 12:09:24,might be 2x period,1671,1,False,False,True -468828873,1672.01,,5,5,5,5,5,5,5,9.0,41.5,23.35,1,2,5,EB,FP,10.045,0.009,,1,qlp-s60-ffi,QLP,06:07:29.29,66:51:27.72,-19.652,0.06,-36.157,0.073,2459957.440794,0.0023666,3.8954139,1.44e-05,2.832,0.416,0.989556,0.044039,911.0,40.5608,5.15915,0.301122,566.299,1359.0,21.0,281.902,4.53,6064.0,132.1,3.94,0.08,1.89,0.09,,,1.13,0.143753,"18,19,20,59,60",2020-01-29,2023-02-13,2023-02-25 12:10:55,TFOP NEB/FP on 468828877; flux depth aperture correlation,1672,1,False,False,False -470315428,1673.01,,5,5,5,5,5,5,5,18.3,79.2,20.36,2,1,4,PC,FP,10.2851,0.006,,1,qlp,QLP,04:18:35.64,52:51:54.12,19.482,1.018,20.031,1.084,2458818.19746,0.00313,1.08625,0.00036,2.534,0.268,1.205837,0.00168,1110.0,1.54697,4.65122,0.714178,4081.88,2226.0,17.0,222.358,50.771,5562.6,419.2,,,1.4,0.21,,,,,"18,19",2020-01-29,2020-01-29,2022-12-14 12:09:24,Matches to a nearby star 668056616 at Tmag=10.3,1673,1,False,False,False -73104318,1674.01,,5,5,5,5,5,5,5,65.8,57.6,317.0,0,2,0,PC,FP,9.46925,0.006,,1,qlp,QLP,04:06:53.18,58:27:55.63,15.3,0.056,-14.916,0.047,2458822.59324,0.00237,7.45494,0.00138,3.465,0.612,2.478305,0.077525,2280.0,71.4002,15.1922,,479.468,1303.0,19.0,201.645,1.3645,5029.7,16.7,,,2.45,,-0.504,0.014,,,"18,19",2020-01-29,2020-01-29,2022-12-14 12:09:24,could be 2x period; likely there is a background EB with distinctly shorter period from transiting event,1674,1,False,False,False -81831095,1675.01,,3,4,3,3,4,4,4,30.9,103.5,76.46,2,1,9,PC,PC,9.9944,0.024,,1,qlp-s59-ffi,QLP,03:11:13.59,61:45:44.59,-3.246,0.043,-1.418,0.053,2459935.218205,0.0011865,3.133084,4.9e-06,1.237,0.402,1.29497,1.207108,1192.0,1111.17,10.3743,2.76485,2269.81,1922.0,19.0,399.401,5.3,7478.0,216.5,4.05,0.08,2.06,0.07,,,1.72,0.286965,"18,19,58,59",2020-01-29,2023-02-03,2023-02-09 12:10:04,,1675,1,False,False,False -8400842,1676.01,,5,5,5,5,5,5,5,132.2,166.8,317.0,0,0,0,KP,KP,9.441,0.006,,1,qlp-s59-ffi,SPOC/QLP,04:21:52.7,57:49:01.95,-2.516,0.083,4.003,0.085,2459936.097333,0.000229,3.1915241,1.6e-06,2.712,0.136,9.524474,0.151335,8734.0,139.375,16.3994,1.63229,1033.99,1579.0,202.0,213.053,2.691,6673.0,150.4,4.13,0.12,1.69,0.17,-0.04,0.1,1.41,0.248085,"19,59",2020-01-29,2023-02-09,2023-02-25 12:10:55,XO-3 b,1676,1,False,False,True -87090944,1677.01,,3,4,3,3,4,4,4,26.6,99.3,21.0,11,4,7,PC,PC,10.1089,0.006,,1,spoc-s59-b0A,QLP,03:53:56.78,58:58:05.88,73.759,0.108,-68.847,0.113,2459910.373493,0.0008715252,0.643580709863076,3.8836606e-05,0.665932152850396,0.19767338,0.952262,0.066573,876.680779366343,61.314438,4.84528125985797,1.7552295,10949.2435223896,2608.95013402501,13.187748,197.14,2.989,5919.7,109.0,4.12,0.08,1.4930499792099,0.088387,-0.277,0.014,1.078,0.129962,"19,59",2020-01-29,2023-03-16,2023-03-24 12:12:10,v-shaped,1677,1,False,False,False -96291218,1678.01,,5,5,5,5,5,5,5,41.3,78.8,317.0,2,1,9,EB,FP,10.3614,0.006,,1,qlp-s44-ffi,QLP,04:52:08.35,30:16:49.39,-6.1,2.5,-3.7,2.5,2459917.090821,0.0007733,13.7058173,2.36e-05,2.691,0.139,6.413894,0.045862,5890.0,42.2392,19.6282,,1451.63,,54.0,391.546,,8001.0,,,,2.05,,,,,,"18,19,43,4459",2020-01-29,2023-02-03,2023-02-09 12:10:04,strong secondary; phase modulations; v-shaped; large; TFOP EB/FP,1678,1,False,False,True -9837861,1679.01,,5,5,5,5,5,5,5,13.7,39.2,18.25,0,2,0,PC,FP,9.9021,0.006,,1,qlp,QLP,04:42:11.66,54:17:31.41,2.972,0.067,-2.506,0.055,2458817.9375,0.00588,0.65725,0.00027,1.998,0.243,0.33663,0.000692,310.0,0.637728,4.46803,,5418.41,2390.0,10.0,299.399,4.3855,5235.5,16.3,,,2.68,,0.104,0.0146903,,,"18,19",2020-01-29,2020-01-29,2022-12-14 12:09:24,Possibly variability; check 9837855,1679,1,False,False,False -259168516,1680.01,,2,4,4,2,4,4,4,1.2,9.0,2.61,11,0,5,PC,PC,13.3081,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,19:29:15.35,65:58:25.69,56.574,0.104,-131.332,0.094,2459657.394071,0.0027612,4.80265608124775,5.3177664e-06,1.16586476629033,0.16402517,4.742105,0.195948,4358.11576778206,180.45848,1.42024592024071,0.3005025,4.45109692472094,370.455897029126,26.47739,37.2209,0.06155,3231.0,157.0,5.04064,0.0219142,0.213458999991417,0.00640239,,,0.182476,0.0200755,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59",2020-01-30,2023-05-25,2023-06-16 12:14:51,,1680,1,False,False,True -321041369,1681.01,,1,4,1,1,4,4,4,79.6,260.3,52.82,11,3,9,PC,PC,10.4445,0.006,,1,qlp-s59-ffi,SPOC/QLP,05:26:41.05,56:57:49.01,-38.239,0.049,5.613,0.051,2459934.602468,0.0011774,1.5379289,2.7e-06,0.724,0.358,1.20801,5.528975,1112.0,5079.43,8.379,3.17708,1075.86,1595.0,14.0,153.896,0.7695,5672.5,145.4,4.51,0.08,0.93,0.05,-0.131,0.0212132,1.008,0.12934,"19,59",2020-01-30,2023-02-03,2023-02-09 12:10:04,V-shaped; some small centroid offset,1681,1,False,False,True -367366318,1682.01,,5,5,5,5,5,5,5,279.2,372.5,317.0,0,0,2,KP,KP,8.14847,0.006,,1,qlp-s59-ffi,SPOC/QLP,05:13:10.94,33:19:04.63,10.622,0.082,-49.779,0.058,2459935.037733,7.31e-05,2.7347653,5e-07,3.208,0.025,10.036101,0.02308,9201.0,21.2572,17.7508,0.730718,1747.63,1801.0,566.0,136.681,0.931,6767.9,115.7,4.1,0.09,1.77,0.07,,,1.45,0.248342,"19,43,44,45,59",2020-01-30,2023-02-09,2023-02-25 12:10:55,KELT-7 b,1682,1,False,False,True -58542531,1683.01,,1,4,4,1,4,4,4,12.1,100.2,7.38,8,4,13,PC,PC,9.794,0.006,,1,qlp-s44-ffi,SPOC/QLP,04:23:55.12,27:49:20.53,-16.02,0.115,-40.952,0.078,2459522.699899,0.0011061,3.0575356,9.4e-06,1.318,0.385,0.999337,0.004716,920.0,4.34385,2.6382,0.276387,163.056,995.0,21.0,51.1884,0.1389,4402.0,126.1,4.59,0.11,0.7,0.06,,,0.69,0.0862442,"19,43,44",2020-01-30,2022-01-07,2022-12-14 12:09:24,potential L1 candidate,1683,1,False,False,True -85031598,1684.01,,3,4,3,3,4,4,4,137.9,236.1,64.27,3,6,12,PC,PC,7.3543,0.006,,1,qlp-s59-ffi,SPOC/QLP,04:21:23.06,62:14:42.74,30.853,0.064,-127.329,0.059,2459934.444775,0.0007398,1.1549928,2.2e-06,0.939,0.27,0.878716,0.075299,809.0,69.3502,9.37111,,763.37,1464.0,30.0,87.5878,0.34815,4815.0,122.0,,,2.99,,,,,,"19,59",2020-01-30,2023-02-09,2023-02-25 12:10:55,slightly v-shaped,1684,1,False,False,True -28900646,1685.01,,1,5,5,1,4,4,4,19.8,124.9,4.35,8,4,11,CP,CP,11.1117,0.007,,1,spoc-s14-s60-b0A-CP,SPOC,04:34:22.55,43:02:13.34,37.818,0.096,-86.912,0.059,2459910.938093,0.0017795281,0.669144914216613,9.728104e-06,0.992163136341835,0.098100126,1.362771,0.099528,1254.37119318744,91.66477,1.92004069815713,0.14984521,204.691052152923,964.704854969071,13.492256,37.6153,0.07265,3457.0,157.0,4.7705,0.00663534,0.462408006191254,0.013731,,,0.459708,0.0202729,"19,59",2020-01-30,2023-06-13,2023-06-16 12:14:51,TOI-1685 b,1685,1,False,False,True -102672709,1686.01,,2,4,2,2,4,4,4,4.8,40.3,13.45,0,4,4,PC,PC,9.86671,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,04:06:55.47,66:07:10.56,9.278,0.032,-5.304,0.05,2458818.597826,0.0020528147,6.70532598406713,3.374788e-05,3.73029366935807,0.6950537,0.677346,0.058852,623.664476190979,54.203457,3.72946479398921,2.2071571,505.306559501385,1209.22880391677,11.2107315,209.153,1.7115,6141.0,223.518,4.17616,0.0950537,1.45858001708984,0.0689849,,,1.164,0.199376,"19,59",2020-01-30,2023-05-19,2023-06-16 12:14:51,multiple stars in pixel,1686,1,False,False,True -103448870,1687.01,,1,4,1,3,3,4,4,6.4,68.5,14.6,5,2,6,PC,PC,9.83739,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,04:27:20.4,73:01:25.28,21.003,0.035,-39.06,0.041,2458816.843505,0.0017346995,10.2596321705401,3.0577827e-05,1.82348908005539,0.13080183,1.17423,0.103983,1080.92131650721,95.767586,3.91307346294403,0.28923586,106.74688950697,819.801213453364,11.165363,124.854,0.461,5734.0,157.223,4.4674,0.0767968,0.978325009346008,0.0471558,,,1.024,0.131096,"19,25,26,52,53",2020-01-30,2023-03-09,2023-03-24 12:12:10,L1 candidate,1687,1,False,False,True -121966220,1688.01,,5,5,5,5,1,5,5,75.5,116.0,317.0,0,0,1,PC,APC,10.8001,0.006,,1,spoc-s59-b0A,SPOC,05:03:11.48,41:47:08.82,13.3,0.082,-11.25,0.059,2459914.901064,0.0008807402,6.71719125367884,0.00047332147,7.50372079004548,0.0725633,9.96785,0.106951,9138.71507095074,98.50088,22.8756579685538,1.1757971,1148.70112930829,1484.81214629678,91.46608,472.704,9.135,5843.0,170.189,3.7177,0.0858957,2.35290002822876,0.118236,,,1.054,0.145363,"19,59",2020-01-30,2023-03-06,2023-03-24 12:12:10,possibly too large for insolation,1688,1,False,False,True -198384408,1689.01,,5,5,5,5,5,5,5,8.7,124.7,4.85,0,3,5,V,FA,6.3196,0.006,,1,spoc-s19-b02,SPOC,17:11:08.42,56:39:32.04,-14.298,0.611,-60.333,0.761,2458823.255936,0.003739113,9.12381011959331,0.0053042974,5.1188391119771,0.34257415,0.307659,0.035808,283.324086990691,32.979588,2.0471843690411,0.49013633,148.745590444784,890.698609973666,8.011808,26.9148,0.1874,5470.16,101.004,4.30008,0.0737781,1.1485,0.0496106,,,0.96,0.124713,19,2020-01-30,2023-05-26,2023-05-26 00:00:00,Potentially on the neighboring star; possibly has a stellar companion; retired as TFOP FA,1689,1,False,False,True -267574918,1690.01,,1,5,5,1,4,4,4,0.0,212.9,1.16,1,0,0,CP,CP,16.338,0.006,,1,spoc-s14-s60-b0A-CP,SPOC,18:57:39.76,53:30:32.49,240.759,0.148,-52.514,0.143,2459419.987351,0.03462824,1.40793693333245,3.3866268e-06,0.306353056989598,0.024809992,719.731119,23.214061,484643.744138852,21153.988,,,1652.8943345294,1626.22645713026,25.483854,24.7359,0.0434,5780.0,,4.438,,,,,,,,"14,15,19,22,26,40,41,49,53,54,55,56,59",2020-01-30,2023-06-13,2023-06-16 12:14:51,WD 1856+534 b,1690,1,False,False,True -268334473,1691.01,,1,4,1,1,3,4,4,2.8,45.0,8.98,1,13,3,PC,PC,9.52636,0.006,,1,qlp-s59-ffi,SPOC,18:09:36.99,86:51:37.23,-25.645,0.048,161.959,0.05,2459922.72627,0.002208,16.7369141,6.38e-05,4.613,0.255,1.209097,0.03566,1113.0,32.8436,2.92728,0.160216,58.9993,772.0,32.0,111.445,0.3685,5759.0,186.802,4.44767,0.0798184,1.0,0.05,,,1.031,0.143191,"19,20,25,26,40,47,52,53,59",2020-01-30,2023-02-09,2023-02-25 12:10:55,L1 candidate,1691,1,False,False,True -288636342,1692.01,,3,4,3,3,4,4,4,2.9,25.6,21.83,6,4,2,PC,PC,10.741,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,18:37:51.45,78:36:40,-5.886,0.053,-4.637,0.062,2459725.018258,0.0035639,17.7286607938036,4.7309284e-05,6.44278678935885,0.21889417,1.180252,0.032563,1086.46181394313,29.99085,4.95723068272433,0.40437758,161.743390348523,909.549595651405,29.940884,341.119,3.8725,6554.0,144.208,4.24316,0.090455,1.45796000957489,0.0685126,,,1.357,0.2276,"14,15,17,18,19,20,21,23,24,25,26,40,41,47,48,50,51,52,53,54,55,57,58,59,60",2020-01-30,2023-05-19,2023-06-16 12:14:51,potential multi,1692,1,True,False,True -288636342,1692.02,TIC 288636342.02,3,4,3,3,4,4,4,3.9,34.9,42.33,6,4,2,PC,PC,10.741,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,18:37:51.45,78:36:40,-5.886,0.053,-4.637,0.062,2459717.485849,0.0021195,32.2079697882339,9.922328e-05,7.51995801343607,0.12019643,2.619014,0.053168,2409.29431573856,48.96818,7.31780891964536,0.3977602,72.9642265068394,793.0,45.034405,341.119,3.8725,6554.0,144.208,4.24316,0.090455,1.45796000957489,0.0685126,,,1.357,0.2276,"14,15,17,18,19,20,21,23,24,25,26,40,41,47,48,50,51,52,53,54,55,57,58,59,60",2020-09-11,2023-05-19,2023-06-16 12:14:51,outer companion to 1692.01; transits close to momentum dump and data gap,1692,2,True,False,True -353475866,1693.01,,2,4,2,2,4,4,4,6.4,11.2,2.59,8,4,4,CP,CP,10.6714,0.007,,1,spoc-s01-s46-b0A,SPOC,06:01:14,34:46:23.13,-22.762,0.084,-17.765,0.069,2459549.097296,0.001889,1.7666834,1.91e-05,1.37099299728315,0.23229665,0.892781,0.064442,821.943728046024,59.351128,1.41544615005876,0.42482212,57.0207447387534,700.854668973381,14.64027,30.7947,0.0391,3474.0,157.0,4.77152,0.00661752,0.461259990930557,0.0137244,,,0.4585,0.020293,"19,43,44,45",2020-01-30,2022-07-15,2022-12-14 12:09:24,potential L1 planet around bright M dwarf star,1693,1,False,False,True -396740648,1694.01,,3,5,5,3,4,4,4,22.1,114.3,25.89,7,11,5,PC,CP,10.7424,0.006,,1,spoc,SPOC,06:30:59.69,66:21:38.14,46.512,0.037,-20.362,0.046,2458843.657627,0.0009874341,3.77012960886973,0.00026957458,2.85120563457313,0.10558969,4.745447,0.118273,4361.18010817049,108.92766,5.4800265832157,0.46199888,195.288169585226,953.419593194318,26.865028,124.68,0.587,5058.0,122.082,4.53907,0.0868076,0.81833,0.0476885,,,0.845,0.108916,"19,20",2020-01-30,2020-02-19,2022-12-14 12:09:24,,1694,1,False,False,True -422756130,1695.01,,2,5,5,2,4,4,4,4.6,57.4,3.9,6,3,6,CP,CP,11.0294,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,01:27:41.22,72:17:47.81,71.707,0.055,40.475,0.062,2458791.519137,0.0006383377,3.1342945619236,5.8707283e-06,1.21587959150705,0.33217213,1.285845,0.083004,1183.6060713481,76.446625,1.79929660611783,1.3256298,34.5537032510597,618.362863114811,19.041552,45.1309,0.06805,3575.0,157.0,4.72334,0.0086441,0.516104996204376,0.0153254,,,0.513745,0.0202836,"18,19,24,25,52,58,59",2020-01-30,2023-05-22,2023-06-16 12:14:51,TOI-1695 b,1695,1,False,False,True -470381900,1696.01,,1,5,5,1,4,4,4,8.6,98.7,10.21,4,1,10,CP,CP,13.9664,0.007,,1,spoc-s59-b0A,SPOC,04:21:07.36,48:49:11.39,12.93,0.127,-19.178,0.078,2459911.832125,0.0021197035,2.50052909832679,0.00037064744,0.880986494659664,0.3441977,13.744487,1.720999,12579.350475778,1583.843,3.17138532451465,1.1981618,13.8080730876402,491.646575914131,7.788581,64.9172,0.35625,3181.0,157.0,4.94798,0.00806131,0.280474990606308,0.00857285,,,0.254505,0.0202442,"19,59",2020-01-30,2023-03-06,2023-03-24 12:12:10,TOI-1696 b,1696,1,False,False,True -1884091865,1697.01,,3,4,3,3,4,4,4,2.4,35.0,7.6,2,0,5,PC,PC,11.1744,0.006,,1,qlp-s52-tois,SPOC,19:20:26.13,61:05:07.61,44.402,0.047,91.791,0.048,2459755.174741,0.0026457,10.716524,4.17e-05,3.075,0.276,1.390633,0.001025,1280.0,0.944507,2.34185,0.253242,19.7169,587.0,27.0,83.7441,0.15465,4067.0,118.044,4.50609,0.111005,0.65,0.07,,,0.64,0.0817178,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52",2020-01-30,2022-10-04,2022-12-14 12:09:24,two real stars in pixel (TIC 229976631 is a phantom),1697,1,False,False,True -190223929,1698.01,,3,4,3,3,4,4,4,14.9,24.7,317.0,3,0,4,PC,PC,11.1018,0.008,,1,qlp,QLP,06:34:00.71,41:54:02.82,-2.596,0.073,-7.177,0.066,2458847.69726,0.00269,17.04198,0.0012,1.578,0.349,3.828534,0.012819,3520.0,11.8065,,,236.097,1092.0,13.0,756.791,27.2675,7697.2,112.2,,,,,,,,,20,2020-02-19,2020-02-19,2022-12-14 12:09:24,matches with 703728672 with 3 arcsec separation; could be planetary on companion as well; Gaia Rstar = 2.3 Rsun; period could be half (8.5 days),1698,1,False,False,False -22705558,1699.01,,2,4,2,2,4,4,4,4.0,36.8,9.33,3,3,5,PC,PC,10.8756,0.006,,1,spoc-s14-s60-b0A-PC,QLP,08:20:45.3,46:12:12.98,-5.154,0.071,-25.685,0.053,2459606.910667,0.0047745,4.54700553104027,5.252775e-05,2.38292297329643,0.70722294,0.883863,0.104657,813.737072479186,96.38792,3.0070741368658,3.0622876,341.451434314582,1096.35697749705,8.185801,205.283,1.9335,5654.4,132.3,4.41,0.08,1.03909003734589,0.0568342,0.139,0.017,1.004,0.13286,"20,47,60",2020-02-19,2023-05-19,2023-06-16 12:14:51,L1 candidate; low SNR,1699,1,False,False,True -23650642,1700.01,,5,5,5,5,5,5,5,12.9,75.8,12.14,1,1,1,PC,FP,10.8219,0.007,,1,qlp,QLP,08:24:21.27,42:06:17.05,26.602,0.084,-59.738,0.052,2458843.38029,0.00428,1.12355,0.00039,1.611,0.479,1.108016,0.005274,1020.0,4.85789,3.49799,0.294974,2963.42,2055.0,12.0,189.762,1.891,5524.0,107.6,4.41,0.07,1.01,0.05,0.00660561,0.0200052,0.97,0.124259,20,2020-02-19,2020-02-19,2022-12-14 12:09:24,small centroid offset; potential odd-even,1700,1,False,False,True -274215536,1701.01,,3,4,4,3,4,4,4,31.9,117.1,21.7,9,16,8,PC,PC,10.9263,0.006,,1,qlp,QLP,06:39:35.57,42:07:52.82,7.743,0.066,-53.417,0.059,2458843.37293,0.00208,1.33418,0.00021,1.115,0.308,2.685086,0.010226,2470.0,9.41862,4.94538,0.439061,470.116,1297.0,19.0,123.643,0.71,4685.1,111.6,4.42,0.09,0.88,0.06,0.287,0.052,0.747,0.0865692,20,2020-02-19,2020-02-19,2022-12-14 12:09:24,slightly v-shaped; small depth-aperture correlation,1701,1,False,False,False -371210825,1702.01,,5,5,5,5,5,5,5,23.9,96.1,8.99,3,0,2,PC,FP,10.9894,0.006,,1,qlp,QLP,07:26:14.24,32:23:01.77,-42.674,0.179,-74.653,0.16,2458842.74962,0.00292,0.40312,0.0001,0.853,0.323,1.086279,0.015864,1000.0,14.6108,2.95177,0.440428,1215.98,1645.0,11.0,103.107,1.187,4252.9,105.3,4.37,0.09,0.89,0.07,-0.214058,0.037983,0.665,0.0751074,20,2020-02-19,2020-02-19,2022-12-14 12:09:24,potential L1 candidate; ultra short period,1702,1,False,False,True -453387619,1703.01,,3,4,4,3,4,4,4,27.6,110.1,24.62,6,2,9,PC,PC,10.6414,0.006,,1,spoc-s14-s60-b0A-PC,QLP,07:35:29.85,49:28:41.04,-19.978,0.07,-33.776,0.05,2459605.526737,0.0005118,1.20161049762591,4.1517847e-06,0.649836642235431,0.15999112,2.625093,0.132661,2414.87911883065,122.17787,5.32104971183661,2.8951168,2266.07724532364,1759.69916126146,26.397255,198.501,2.0215,5747.6,140.5,4.39,0.08,1.07532000541687,0.0620201,0.540347,0.0175272,1.028,0.129129,"20,47,60",2020-02-19,2023-05-25,2023-06-16 12:14:51,V-shaped; variable host,1703,1,False,False,True -95129101,1704.01,,5,5,5,5,5,5,5,13.0,66.3,34.66,0,1,9,PC,FP,10.8508,0.007,,1,qlp-s46-tois,QLP,07:39:43.89,28:07:12.53,3.12,0.089,-4.992,0.075,2459575.195833,0.0011667,3.929983,1.51e-05,2.153,0.167,2.467423,0.001659,2270.0,1.5283,6.51515,0.363202,398.651,1244.0,29.0,343.469,5.973,6621.9,137.7,4.33,0.09,1.34,0.06,-0.011,0.01,1.39,0.227293,"20,44,45,46",2020-02-19,2022-03-07,2022-12-14 12:09:24,v-shaped; Centroids show source is TIC 95129100,1704,1,False,False,True -137500798,1705.01,,5,5,5,5,5,5,5,4.7,33.7,26.3,2,1,3,EB,FP,10.3042,0.007,,1,qlp-s60-ffi,QLP,08:50:32.4,82:55:37.63,-4.83,0.039,-17.892,0.042,2459958.51428,0.0073762,13.2051436,0.0001335,5.904,2.428,0.771146,0.660956,710.0,608.578,5.53247,1.86982,2769.76,2021.0,18.0,335.518,2.892,6653.0,124.9,4.14,0.09,1.67,0.07,,,1.4,0.243274,"19,20,26,40,47,53,59,60",2020-02-19,2023-05-15,2023-05-15 00:00:00,possible secondary at phase 0.45; centroid offset to NW on TIC 37500799,1705,1,False,False,True -230377505,1706.01,,2,4,2,2,4,4,4,2.3,29.2,4.79,1,6,5,PC,PC,10.486,0.006,,1,qlp-s60-ffi,SPOC/QLP,19:00:49.34,60:14:01.22,-15.349,0.061,-51.114,0.057,2459958.872507,0.0021562,4.515617,1.52e-05,2.598,0.482,0.489777,0.026443,451.0,24.355,2.04103,0.124757,267.175,1126.0,22.0,161.185,0.657,5617.0,125.1,4.47,0.08,0.97,0.05,,,0.994,0.124065,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,56,57,58,59,60",2020-02-19,2023-02-27,2023-03-03 12:11:24,L1 candidate; potential multi,1706,1,True,False,True -230377505,1706.02,,2,4,2,2,4,4,4,1.0,17.8,3.13,1,6,5,PC,PC,10.486,0.006,,2,qlp-s60-ffi,SPOC,19:00:49.34,60:14:01.22,-15.349,0.061,-51.114,0.057,2459949.096524,0.0051271,7.4058749,5.67e-05,2.531,0.722,0.36161,0.030682,333.0,28.259,1.58771,0.129472,103.378,888.0,11.0,161.185,0.657,5617.0,125.1,4.47,0.08,0.97,0.05,,,0.994,0.124065,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,56,57,58,59,60",2020-09-23,2023-02-27,2023-03-03 12:11:24,potential multi,1706,2,True,False,True -240148934,1707.01,,5,5,5,5,5,5,5,21.3,90.4,34.77,1,1,7,EB,FP,10.3135,0.006,,1,qlp-s20-ffi,QLP,06:45:31.72,31:27:55.92,18.699,0.081,-28.382,0.068,2458843.26677,0.00401,2.02365,0.00075,2.585,0.448,1.858198,0.00261,1710.0,2.40429,5.96472,0.381378,2411.54,1952.0,15.0,291.007,5.6945,6582.0,123.8,4.24,0.09,1.48,0.07,,,1.37,0.225354,20,2020-02-19,2022-03-10,2022-12-14 12:09:24,slight depth/aperture correlation; missing transit; retired as NEB,1707,1,False,False,True -241173474,1708.01,,3,5,5,3,4,4,4,19.6,101.3,63.14,4,2,5,PC,APC,10.388,0.006,,1,qlp,QLP,07:44:25.75,43:00:32.68,-0.437,0.074,-27.325,0.041,2458853.1211,0.00154,11.44192,0.00099,3.841,0.637,5.998949,0.003378,5510.0,3.11154,9.64245,0.498673,170.262,1006.0,47.0,235.782,2.5055,6259.0,123.6,4.34,0.08,1.24,0.06,,,1.217,0.176427,20,2020-02-19,2020-02-19,2022-12-14 12:09:24,,1708,1,False,False,True -29119552,1709.01,,3,4,4,3,4,4,4,85.8,128.8,317.0,8,1,7,PC,PC,10.2061,0.006,,1,qlp-s47-ffi,QLP,07:54:31.16,45:48:28.23,3.526,0.153,-40.416,0.097,2459597.198308,0.0007089,7.6288424,1.6e-05,3.311,0.309,11.844612,0.002022,10850.0,1.86229,18.0261,1.059,338.345,1194.0,157.0,268.655,8.506,6157.0,134.0,4.1,0.09,1.6,0.09,,,1.171,0.15984,"20,47,60",2020-02-19,2023-02-27,2023-02-27 00:00:00,possible secondary; possibly too big for insolation,1709,1,False,False,True -445805961,1710.01,,3,5,5,3,4,4,4,12.2,132.8,33.02,2,22,5,CP,CP,8.9134,0.006,,1,qlp-s60-ffi,QLP,06:17:08.12,76:12:39.67,59.837,0.037,55.61,0.044,2459905.429843,0.0019617,24.2833357,0.0001209,6.212,1.509,3.338337,0.484078,3070.0,445.753,6.34442,0.509821,139.864,958.0,81.0,81.2271,0.17695,5675.0,125.8,4.46,0.08,0.98,0.05,,,1.01,0.128534,"19,20,26,40,53,59,60",2020-02-19,2023-02-27,2023-03-03 12:11:24,TOI-1710 b,1710,1,False,False,True -461662295,1711.01,,5,5,5,5,5,5,5,25.3,145.1,46.6,0,3,1,PC,FP,9.92871,0.006,,1,qlp,QLP,08:17:47.2,51:00:37.33,-39.008,0.057,-48.908,0.044,2458844.85466,0.00472,10.2558,0.0046,5.088,0.309,6.250081,0.001002,5740.0,0.923177,7.44683,0.405057,126.859,934.0,66.0,112.978,0.4275,5326.0,120.0,4.43,0.08,0.97,0.05,,,0.918,0.120378,20,2020-02-19,2020-02-19,2022-12-14 12:09:24,Gaia RV error is 7 km/s; check for secondaries; period could be 2x; observed transits could be secondaries,1711,1,False,False,True -67926921,1712.01,,5,5,5,5,5,5,5,65.7,92.9,317.0,2,3,5,PC,FP,9.9841,0.006,,1,qlp-s47-tois,QLP,08:31:46.97,44:49:56.33,-1.527,0.064,-6.598,0.05,2459606.849596,0.0005817,3.566276,4.4e-06,4.197,0.105,4.209951,0.000345,3870.0,0.317992,20.2251,0.859403,1949.16,1851.0,54.0,574.264,13.792,6831.4,98.6,3.61,0.09,3.17,0.13,-0.249923,0.00668965,1.48,0.258801,"20,47",2020-02-19,2022-06-28,2023-02-06 12:03:45,TFOP SB2/APC; Hot host star; likely too large to be planetary; possible phase modulations,1712,1,False,False,True -15863518,1713.01,,3,4,3,3,4,4,4,22.2,106.5,10.8,16,16,7,PC,PC,10.618,0.006,,1,spoc-s14-s60-b0A-PC,SPOC/QLP,06:42:04.94,39:50:34.45,-9.896,0.09,-64.258,0.079,2458842.70969,0.00034319723,0.557256453479509,8.818959e-06,0.567130431804011,0.1579211,1.302276,0.094872,1198.72124170657,87.37656,3.27617819259255,3.6646776,3415.37277606716,1949.75156519786,16.33464,138.371,0.93,5097.6,102.7,4.42,0.08,0.945999979972839,0.0538694,0.471968,0.0198114,0.856,0.100592,"20,60",2020-02-19,2023-05-25,2023-06-16 12:14:51,v-shaped,1713,1,False,False,True -239154970,1714.01,,5,5,5,5,5,5,5,105.1,158.0,317.0,0,0,2,KP,KP,10.7131,0.008,,1,qlp-s47-tois,SPOC/QLP,07:32:44.22,33:50:06.08,0.096,0.073,-2.647,0.07,2459603.425538,0.0001597,3.4744763,1.9e-06,4.258,0.018,14.119119,0.000108,12920.0,0.0996836,19.6131,0.810264,1701.38,1789.0,267.0,396.11,7.5075,6642.3,107.3,4.14,0.09,1.67,0.07,0.021,0.01,1.4,0.236512,"20,44,45,46,47",2020-02-19,2022-06-28,2022-12-14 12:09:24,HAT-P-33 b,1714,1,False,False,True -142090065,1715.01,,3,4,3,3,3,4,4,15.8,100.0,20.75,5,5,1,PC,PC,9.01249,0.006,,1,spoc-s14-s60-b0A-PC,SPOC/QLP,05:16:17.64,79:44:15.82,-6.382,0.051,13.103,0.066,2459738.517459,0.0011386,2.82693563713078,2.6106343e-06,1.16923664859652,0.09165718,1.032977,0.03171,950.954438150217,29.205482,4.81122091375147,0.80754805,2458.62770726063,1795.944627784,34.44793,182.907,1.2905,7072.0,131.2,4.28,0.09,1.50581002235413,0.0587262,,,1.566,0.274503,"19,20,25,26,40,52,53,59,60",2020-02-19,2023-05-19,2023-06-16 12:14:51,V-shaped; close neighbor TIC 142090063 w/ Tmag~11; ~150 ppm secondary at phase 0.56,1715,1,False,False,True -14336130,1716.01,,1,4,1,1,4,4,4,4.7,53.8,8.08,1,22,9,PC,PC,8.82897,0.006,,1,qlp-s60-ffi,SPOC/QLP,07:00:20,56:49:27.1,50.84,0.088,-55.918,0.062,2459959.217063,0.0030913,8.0823313,4.03e-05,3.26,0.57,0.602751,0.03309,555.0,30.4763,2.77252,0.182718,160.826,992.0,18.0,104.158,0.81,5878.6,140.7,4.28,0.08,1.24,0.07,0.09,0.131,1.065,0.138125,"20,47,60",2020-02-19,2023-02-27,2023-03-03 12:11:24,potential L1 planet,1716,1,False,False,True -149833117,1717.01,,3,4,3,3,4,4,4,92.3,281.7,106.97,5,10,4,PC,PC,9.52339,0.006,,1,qlp-s60-ffi,SPOC/QLP,06:58:30.85,67:40:38.41,1.214,0.053,9.711,0.059,2459962.005599,0.0012844,4.0524036,2.07e-05,2.091,0.205,8.910183,0.248812,8173.0,229.138,12.6674,0.584198,354.083,1208.0,43.0,188.086,1.895,6578.0,122.8,4.31,0.09,1.36,0.06,,,1.368,0.227737,"20,47,60",2020-02-19,2023-02-27,2023-03-03 12:11:24,variable star; multiple stars in pixel,1717,1,False,False,True -257241363,1718.01,,3,4,4,3,4,4,4,26.4,185.6,16.84,2,3,8,PC,PC,8.2558,0.006,,1,spoc-s14-s60-b0A-PC,SPOC/QLP,07:28:04.33,30:19:18.24,-22.04,0.069,-155.884,0.063,2459596.690884,0.0003038,5.5870529622351,2.43964e-06,3.03020816047055,0.03142877,1.982614,0.017168,1824.3890055446,15.812121,4.25473711608015,0.25845048,182.575539434112,937.519690083762,116.95965,52.3044,0.0936,5378.0,134.6,4.46,0.08,0.939284980297089,0.0550377,0.2,0.1,0.93,0.117997,"20,44,45,46,47,60",2020-02-19,2023-05-22,2023-06-18 00:00:00,,1718,1,False,False,True -293617835,1719.01,,3,4,4,3,4,4,4,68.8,139.5,113.63,2,24,10,PC,PC,7.7649,0.006,,1,qlp-s47-tois,SPOC/QLP,09:01:11.39,55:51:35.78,-9.671,0.315,-1.008,0.274,2459604.65008,0.0018389,2.7552506,1.01e-05,1.447,0.338,0.390935,0.099337,360.0,91.4889,13.096,4.45681,3294.06,2110.0,17.0,227.754,10.2645,6096.4,111.7,3.26,0.09,4.17,0.26,,,1.14,0.147561,"20,21,47",2020-02-19,2022-06-28,2022-12-14 12:09:24,large (~4 Rsun) bright and variable star; v-shaped; potentially large PC,1719,1,False,False,True -356473034,1720.01,,5,5,5,5,5,5,5,129.5,305.2,115.1,0,0,1,KP,KP,10.4467,0.006,,1,qlp-s60-ffi,SPOC/QLP,07:48:06.42,50:13:30.53,-29.731,0.083,-154.272,0.05,2459957.574412,0.0002035,2.6158597,9e-07,2.517,0.06,14.606505,0.147582,13363.0,135.919,13.1204,0.946292,428.036,1267.0,172.0,154.273,1.446,5267.0,152.7,4.32,0.1,1.08,0.08,0.38,0.1,0.902,0.114612,"20,47,60",2020-02-19,2023-02-27,2023-03-03 12:11:24,XO-2 N b,1720,1,False,False,True -51234631,1721.01,,5,5,5,5,5,5,5,85.3,103.5,317.0,0,1,2,KP,KP,10.1653,0.006,,1,qlp-s60-ffi,SPOC/QLP,07:21:33.13,58:16:05.19,-16.989,0.056,5.31,0.05,2459959.896362,0.0002873,4.1250622,1.9e-06,4.297,0.039,9.689877,0.061472,8885.0,56.6166,15.6616,0.876195,1036.53,1580.0,110.0,272.655,2.8845,6304.0,139.5,4.11,0.09,1.62,0.09,-0.03,0.1,1.238,0.186019,"20,47,60",2020-02-19,2023-02-27,2023-03-03 12:11:24,XO-4 B,1721,1,False,False,True -85242435,1722.01,,3,4,3,3,4,4,4,6.7,70.0,14.39,3,3,7,PC,PC,9.52682,0.006,,1,qlp-s60-ffi,SPOC/QLP,07:37:22.85,61:09:14.13,-8.62,0.053,-58.853,0.053,2459958.322763,0.0013506,9.605241,1.88e-05,3.628,0.079,1.561325,0.039479,1437.0,36.3604,3.86469,0.188322,136.86,952.0,27.0,136.419,0.8415,6137.0,125.2,4.43,0.08,1.09,0.05,,,1.162,0.158244,"20,47,60",2020-02-19,2023-02-27,2023-03-03 12:11:24,somewhat variable host star,1722,1,False,False,True -71431780,1723.01,,2,4,2,2,4,4,4,3.8,53.9,9.25,4,20,8,PC,PC,9.09942,0.006,,1,qlp-s47-ffi,SPOC,07:47:11.33,68:28:36.06,5.04,0.03,12.326,0.046,2459593.937883,0.0322238,13.7265216,0.0006622,3.608,0.325,0.825473,0.001354,760.0,1.24685,2.99997,0.196235,55.838,761.0,14.0,100.727,0.2915,5777.0,124.977,4.38035,0.0725402,1.09,0.05,,,1.035,0.126798,"20,26,47",2020-02-19,2022-03-02,2022-12-14 12:09:24,no difference image in QLP s47,1723,1,False,False,True -81212286,1724.01,,5,5,5,5,5,5,5,13.6,92.5,4.59,9,0,8,PC,FP,12.507,0.008,,1,spoc,SPOC,08:28:07.82,56:25:39.1,-88.814,0.053,-7.645,0.052,2458843.027821,0.0020229782,0.685080805288586,9.90565e-05,1.05658868353125,0.5722773,2.909017,0.368086,2675.71766622605,338.96216,1.98063582512353,2.0170252,170.82953348617,922.062772886118,7.6018205,58.3171,0.1227,3541.0,157.0,4.8452,0.00212178,0.380019,0.0113954,,,0.368761,0.0203001,20,2020-02-19,2020-02-19,2022-12-14 12:09:24,centroid offset towards a brighter star (TIC 81212289).,1724,1,False,False,True -86396382,1725.01,,5,5,5,5,5,5,5,243.1,336.9,317.0,25,1,0,KP,KP,11.0967,0.013,,1,qlp-s45-tois,SPOC,06:30:32.79,29:40:20.16,-1.58,0.068,-6.958,0.058,2459550.243082,0.0001201,1.0914167,5e-07,2.774,0.103,18.715616,0.000201,17090.0,0.185527,23.9976,1.1164,5597.87,2409.0,429.0,427.246,5.9855,6154.0,105.682,4.02046,0.0803026,1.75,0.08,0.21,0.1,1.17,0.160593,"20,43,44,45",2020-02-19,2022-03-10,2022-12-14 12:09:24,WASP-12 b,1725,1,False,False,True -130181866,1726.01,,1,4,1,2,4,4,4,15.6,223.0,5.67,5,17,3,CP,CP,6.2683,0.006,,1,spoc-s14-s50-b0A-CP,SPOC,07:49:55.05,27:21:47.28,-10.027,0.085,-11.314,0.049,2459598.814684,0.0009055,7.10791120555159,8.345263e-06,3.37504670012603,0.06275908,0.54659,0.019522,503.301412460597,17.98008,2.24289991251561,0.1537758,145.57127915085,885.908103249729,25.38275,22.4035,0.0225,5694.11,153.429,4.53108,0.085452,0.902931988239288,0.0547111,0.0169559,0.0168932,1.01,0.128574,"20,44,45,46,47",2020-02-19,2022-11-09,2022-12-14 12:09:24,HD 63433 b,1726,1,True,False,True -130181866,1726.02,,1,4,1,2,4,4,4,8.6,187.1,7.16,5,17,3,CP,CP,6.2683,0.006,,2,spoc-s01-s50-b0A,SPOC,07:49:55.05,27:21:47.28,-10.027,0.085,-11.314,0.049,2459583.637103,0.0009975048,20.5438153321812,2.359128e-05,4.05379193159982,0.11268908,0.868265,0.027355,799.381713281805,25.194975,2.57342830751905,0.30035052,35.3582058518901,621.93114304247,25.08834,22.4035,0.0225,5694.11,153.429,4.53108,0.085452,0.902931988239288,0.0547111,0.0169559,0.0168932,1.01,0.128574,"20,44,45,46,47",2020-02-20,2022-11-09,2022-12-14 12:09:24,multi; HD 63433 c; potential ephemeris drift,1726,2,True,False,True -241225337,1727.01,,2,4,2,2,4,4,4,6.5,58.7,5.48,6,7,9,PC,PC,9.75149,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,06:14:14.05,53:08:09.33,2.193,0.083,-57.132,0.084,2458842.784934,0.001267988,1.83087816125574,1.2823365e-05,1.57649055046841,0.39453956,0.504519,0.092601,464.571365702851,85.28502,2.19883210680607,2.1533735,990.691333324846,1430.88371347701,7.910985,115.362,0.613,5566.0,147.029,4.44006,0.076621,0.98869001865387,0.0525879,,,0.982,0.122454,"20,60",2020-02-19,2023-05-17,2023-06-16 12:14:51,low SNR,1727,1,False,False,True -285048486,1728.01,,3,5,5,3,4,4,4,28.6,148.1,21.88,6,3,2,CP,CP,10.7921,0.007,,1,qlp-s47-tois,SPOC,08:02:26.8,64:47:49.75,104.078,0.044,52.92,0.046,2459604.399093,0.0005321,3.4913952,4.3e-06,1.763,0.259,5.878863,0.001382,5400.0,1.27243,4.9395,0.165713,44.3221,718.0,68.0,60.798,0.13635,3907.0,157.0,4.62346,0.011365,0.63,0.02,,,0.614339,0.0202201,"20,47",2020-02-19,2022-06-28,2022-12-14 12:09:24,TOI-1728 b,1728,1,False,False,True -298666530,1729.01,,5,5,5,5,5,5,5,167.2,1470.4,0.3,9,0,0,PC,FP,18.3324,0.016,,1,spoc,SPOC,18:33:35.98,58:12:19.9,11.763,0.347,135.724,0.43,2458842.505715,0.0013579031,0.573208668815365,5.899943e-05,0.458237603330967,0.14889674,614.222321,118.717542,432048.734396131,103577.016,,,,,8.575673,151.383,4.632,5780.0,,4.438,,,,,,,,20,2020-02-19,2020-02-19,2022-12-14 12:09:24,Possible planet around a white dwarf!,1729,1,False,False,True -318022259,1730.01,,1,4,1,2,4,4,4,7.4,105.4,8.1,21,5,9,PC,PC,10.3595,0.007,,1,qlp-s60-ffi,SPOC,07:11:27.8,48:19:40.56,-93.076,0.091,-570.552,0.082,2459952.635271,0.0024431,6.2262315,2.77e-05,2.239,0.772,1.616779,1.677803,1488.0,1544.12,2.75524,0.963981,114.271,910.0,16.0,35.6917,0.0833,3691.0,157.0,4.70931,0.00914374,0.53,0.02,,,0.529004,0.0202865,"20,47,60",2020-02-19,2023-02-27,2023-03-03 12:11:24,potential multi,1730,1,True,False,True -318022259,1730.02,,1,4,1,2,4,4,4,5.7,9.9,2.81,21,5,9,PC,PC,10.3595,0.007,,2,qlp-s60-ffi,SPOC,07:11:27.8,48:19:40.56,-93.076,0.091,-570.552,0.082,2459961.132517,0.0034359,2.1555232,9.2e-06,1.445,0.724,0.805915,0.097595,742.0,89.8839,1.47809,0.113091,132.347,944.0,12.0,35.6917,0.0833,3691.0,157.0,4.70931,0.00914374,0.53,0.02,,,0.529004,0.0202865,"20,47,60",2020-02-19,2023-02-27,2023-03-03 12:11:24,potential multi,1730,2,True,False,True -318022259,1730.03,,1,4,1,1,4,4,4,2.5,69.9,6.57,21,5,9,PC,PC,10.3595,0.007,,3,qlp-s60-ffi,QLP,07:11:27.8,48:19:40.56,-93.076,0.091,-570.552,0.082,2459598.372283,0.0023637,12.5739572,0.0012622,2.722,0.298,2.358608,0.12887,2170.0,118.687,2.4359,0.11049,6.20302,439.0,12.0,35.6917,0.0833,3691.0,157.0,4.70931,0.00914374,0.53,0.02,,,0.529004,0.0202865,"20,47,60",2022-03-01,2023-02-27,2023-03-03 12:11:24,close to 2:1 resonance with TOI 1730.01; potential L1 planet in a multi,1730,3,True,False,True -371234684,1731.01,,5,5,5,5,5,5,5,55.6,71.7,317.0,0,0,0,KP,KP,11.7946,0.007,,1,qlp-s47-tois,SPOC,07:20:40.44,37:08:26.14,-9.63,0.071,-13.043,0.064,2459603.86508,0.0005119,3.9228042,4.3e-06,3.205,0.097,15.274679,0.001449,13970.0,1.33437,15.8493,0.873536,583.697,1369.0,103.0,455.203,8.8015,6193.0,137.448,4.2858,0.0913953,1.3,0.07,0.08,0.1,1.19,0.178206,"20,47",2020-02-19,2022-06-28,2022-12-14 12:09:24,HAT-P-9 b,1731,1,False,False,True -470987100,1732.01,,2,4,2,2,4,4,4,4.0,43.0,5.59,5,2,5,PC,PC,11.3266,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,07:27:12.35,53:02:42.97,-6.753,0.061,42.185,0.052,2459601.239901,0.002775,4.11922311925856,1.42968365e-05,2.18416745681967,0.5088356,1.343348,0.101321,1236.5042452328,93.31554,2.22366292235637,1.6888051,44.2458262058573,657.790848155263,12.32325,74.7599,0.23155,3876.0,157.0,4.62394,0.011413,0.63257098197937,0.0187445,,,0.613891,0.0202526,"20,47,60",2020-02-19,2023-05-25,2023-06-16 12:14:51,potential L1 planet,1732,1,False,False,True -53427308,1733.01,,5,5,5,5,5,5,5,12.7,58.1,33.6,1,2,2,PC,FP,10.379,0.006,,1,qlp,QLP,07:55:31.62,54:35:47.76,-20.703,0.061,-8.957,0.054,2458844.7654,0.004,5.80322,0.00192,1.569,0.23,1.858198,0.005059,1710.0,4.65989,6.3744,0.474266,61.8583,781.0,13.0,251.27,2.552,5846.0,128.1,4.11,0.07,1.5,0.07,,,1.055,0.129194,20,2020-02-20,2020-02-20,2022-12-14 12:09:24,Small depth-aperture correlation; odd/even not reliable because fit fails; short transit duration for a big star; steep ingress and shallow egress could be due to disintegrating planet,1733,1,False,False,True -224596152,1734.01,,2,4,2,2,4,4,4,1.0,24.3,7.83,1,3,5,PC,PC,10.2713,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,16:58:00.79,57:18:18.95,44.042,0.036,-43.679,0.041,2458688.866362,0.003314786,28.8745077780318,0.00011769409,4.48497652469351,0.22685488,0.634808,0.032835,584.508913288429,30.241476,2.71228823725826,0.1963155,28.0202950725568,586.797055150249,18.608006,156.571,0.4535,5773.0,119.624,4.46229,0.0746802,0.988897979259491,0.0466307,,,1.034,0.122,"14,15,16,17,18,19,20,22,23,24,25,26,40,41,47,48,49,50,52,53,54,55,56,57,58,59,60",2020-02-27,2023-05-19,2023-06-16 12:14:51,,1734,1,False,False,True -365673804,1735.01,,1,4,1,1,4,4,4,3.1,47.3,5.85,2,7,6,PC,PC,8.3412,0.006,,1,qlp-s58-ffi,SPOC,20:53:21.4,64:13:45,41.989,0.06,52.687,0.048,2459897.427225,0.0023465,10.3857972,3.78e-05,3.142,0.434,0.33663,0.020488,310.0,18.8702,2.28473,0.124295,120.411,922.0,16.0,99.4495,0.25155,6439.0,119.798,4.35142,0.084906,1.26,0.05,,,1.3,0.198959,"15,16,17,18,24,56,57,58",2020-02-27,2023-02-03,2023-02-09 12:10:04,crowded field,1735,1,False,False,True -408618999,1736.01,,1,4,4,1,4,4,4,5.7,55.7,7.69,2,19,4,PC,PC,8.3302,0.006,,1,qlp-s59-ffi,SPOC,02:53:44.27,69:06:04.84,-46.293,0.039,-14.413,0.055,2459924.49044,0.0025592,7.0731059,2.71e-05,3.851,0.245,0.472398,0.01917,435.0,17.6559,2.6869,0.155422,216.17,1068.0,23.0,88.9482,0.32085,5656.0,122.561,4.1408,0.0786724,1.41,0.07,,,1.0,0.130334,"18,19,25,52,58,59",2020-02-27,2023-02-03,2023-02-09 12:10:04,,1736,1,False,False,True -233009109,1737.01,,2,5,5,2,4,4,4,2.1,25.9,8.23,1,6,6,PC,PC,8.57502,0.006,,1,qlp-s58-ffi,SPOC/QLP,16:33:00.78,72:55:31.92,24.069,0.037,-53.965,0.047,2459930.641921,0.0032714,14.4479443,7.69e-05,6.16,0.528,0.217169,0.008671,200.0,7.98667,2.79779,0.132001,268.305,1127.0,19.0,177.63,0.677,6669.0,127.5,4.01,0.09,1.95,0.08,,,1.408,0.237152,"15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58",2020-02-27,2023-02-03,2023-02-09 12:10:04,L1 candidate; variable host,1737,1,False,False,True -104208182,1738.01,,2,4,2,2,4,4,4,9.3,52.1,17.7,2,2,7,PC,PC,12.4851,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,03:38:00.52,50:57:18.41,26.655,0.048,-86.188,0.037,2458792.656633,0.001633744,3.69858165052609,1.3993961e-05,1.54742050728208,0.18553336,3.329433,0.345949,3061.82384449818,318.57974,4.3816478104217,0.4041094,59.7654849195553,709.140617925166,9.83872,142.042,0.498,3948.0,157.0,4.59404,0.011821,0.669200003147125,0.0196139,,,0.641329,0.020142,"18,19,59",2020-02-27,2023-05-19,2023-06-16 12:14:51,,1738,1,False,False,True -159418353,1739.01,,2,4,2,2,3,4,4,2.3,38.6,4.08,4,4,3,PC,PC,9.812,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,16:00:41.4,83:15:31.17,-132.915,0.038,107.827,0.038,2459631.820523,0.0030342,8.30329783725283,1.7560737e-05,1.89117270427455,0.1691388,0.608584,0.038739,560.369879916064,35.678978,1.84726929393533,0.9920949,53.6867533141896,690.377350418545,13.010287,70.9819,0.10305,4814.0,124.993,4.54519,0.0935899,0.780707001686096,0.0535628,,,0.78,0.094964,"14,19,20,21,25,26,40,41,47,52,53,59",2020-02-27,2023-05-25,2023-06-16 12:14:51,L1 candidate,1739,1,False,False,True -174041208,1740.01,,2,4,2,2,4,4,4,1.2,28.2,6.64,1,3,8,PC,PC,10.4274,0.006,,1,spoc,SPOC,23:24:04.32,43:22:36.01,68.426,0.098,-46.552,0.084,2458741.058614,0.0048732203,19.4284190322106,0.0037161424,3.57271543464574,0.797823,0.923717,0.118055,850.412788256018,108.72698,2.46164623322786,1.9440622,27.1745152507771,582.317981533803,8.218374,114.046,1.063,5366.0,157.99,4.56253,0.0815015,0.835173,0.0467638,,,0.929,0.120382,"16,17",2020-02-27,2020-02-27,2022-12-14 12:09:24,period could be 2x,1740,1,False,False,True -198206613,1741.01,,2,4,2,2,4,4,4,0.8,3.8,2.45,3,3,3,PC,PC,10.5783,0.006,,1,qlp-s56-tois,SPOC,16:28:10.43,63:29:56.75,-130.618,0.042,127.237,0.059,2459852.091929,0.0028896,10.9406641,5.32e-05,2.175,0.368,0.477829,0.040616,440.0,37.4077,1.36492,0.136596,10.665,503.0,11.0,61.9251,0.0995,4324.0,126.843,4.697,0.104525,0.61,0.05,,,0.68,0.0816675,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56",2020-02-27,2023-02-06,2023-02-09 12:10:04,,1741,1,False,False,True -219857012,1742.01,,1,4,4,1,4,4,4,1.5,33.5,4.22,2,30,3,PC,PC,8.2865,0.006,,1,qlp-s60-ffi,SPOC/QLP,17:09:18.93,71:52:36.02,24.2,0.042,63.269,0.054,2459937.685627,0.0033886,21.2691725,0.0001254,5.78,1.525,0.35618,0.016394,328.0,15.0989,1.88729,0.112294,74.9225,819.0,28.0,72.8871,0.1194,5707.0,124.634,4.31886,0.0771701,1.16,0.06,,,1.02,0.126497,"15,16,17,18,19,20,21,22,23,24,25,26,40,47,48,49,50,51,52,53,54,55,56,58,59,60",2020-02-27,2023-02-27,2023-03-21 00:00:00,L1 planet,1742,1,False,False,True -219860288,1743.01,,1,4,1,1,4,4,4,8.7,138.5,10.96,10,0,3,PC,PC,12.4251,0.007,,1,qlp-s49-tois,SPOC,17:10:59.36,71:52:19.93,66.979,0.088,188.773,0.087,2459660.494212,0.0022429,4.2660553,1.4e-05,0.69,0.301,1.847322,1.728945,1700.0,1591.15,3.30511,1.40785,10.8837,506.0,11.0,41.2758,0.0887,3281.0,157.0,4.90415,0.00361744,0.32,0.01,,,0.299659,0.0201029,"15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49",2020-02-27,2022-08-19,2022-12-14 12:09:24,slightly v-shaped; potential L1 candidate,1743,1,False,False,True -229455001,1744.01,,3,4,3,3,4,4,4,2.1,37.4,7.44,0,7,4,PC,PC,9.01932,0.006,,1,qlp-s60-ffi,SPOC,19:37:09.86,60:52:52.69,-1.548,0.058,-18.707,0.049,2459908.384661,0.0022018,22.341674,9.21e-05,2.677,1.149,0.495209,0.047581,456.0,43.8226,2.63354,0.176545,37.8353,690.0,20.0,114.39,0.415,6179.0,124.697,4.3969,0.0828215,1.14,0.05,,,1.181,0.164577,"14,15,16,17,18,19,20,21,23,25,26,40,41,47,48,49,50,51,53,54,55,56,57,58,59,60",2020-02-27,2023-02-27,2023-03-03 12:11:24,inconsistent centroid offset; two stars in pixel; possible unrelated dip at ~1848 TBJD,1744,1,False,False,True -232635922,1745.01,,2,4,2,2,4,4,4,4.8,68.6,11.75,0,0,7,PC,PC,12.7963,0.008,,1,spoc-s14-s60-b0A-PC,SPOC,18:44:32.71,54:56:59.64,-114.192,0.093,-49.263,0.097,2459653.478364,0.0045755,5.9848710165382,1.6876244e-05,2.2695614064723,0.20378387,2.808933,0.211938,2583.77882624411,195.18314,3.44435025287855,4.0503216,13.8196716734023,519.0,16.766644,84.0287,0.3351,3759.0,157.0,4.80439,0.00478617,0.424468010663986,0.0126086,,,0.418805,0.0202568,"14,15,16,18,19,22,25,26,40,41,48,49,52,53,55,56,57,58,59,60",2020-02-27,2023-05-19,2023-06-16 12:14:51,slightly v-shaped; very close neighboring TIC 1717744910; possible depth aperture correlation; ~500 ppm secondary,1745,1,False,False,True -232650365,1746.01,,1,4,1,2,4,4,4,3.1,7.3,2.78,7,0,5,PC,PC,11.9589,0.018,,1,spoc-s14-s50-b0A-PC,SPOC,18:47:04.25,54:54:38.45,0.71,2.0,71.59,2.0,2458684.784378,0.0009874731,2.52533226920333,1.1101902e-05,0.989828985433435,0.45784393,1.367338,0.156482,1258.57185593081,144.11441,1.47615028195172,1.7663056,26.1017752265872,576.484003637236,10.498972,62.55347,,3340.0,157.0,4.81708,0.00724115,0.410465002059937,0.0147749,,,0.403244,0.0222963,"14,15,16,19,22,25,26,40,41,49",2020-02-27,2023-02-06,2023-02-09 12:10:04,V-shaped,1746,1,True,False,True -232650365,1746.02,,1,4,1,1,4,4,4,1.7,5.8,2.44,7,0,5,PC,PC,11.9589,0.018,,2,spoc-s14-s60-b0A-PC,SPOC,18:47:04.25,54:54:38.45,0.71,2.0,71.59,2.0,2459660.640991,0.0054925,3.87768154096526,1.0184988e-05,1.02975423446246,0.48020497,1.170958,0.143186,1077.91055073842,131.87047,1.36580695837791,1.7800511,14.7343810627083,499.692376731036,10.7988615,62.55347,,3340.0,157.0,4.81708,0.00724115,0.410465002059937,0.0147749,,,0.403244,0.0222963,"14,15,16,19,22,25,26,40,41,49,52,53,54,55,56,57,58,59,60",2022-02-28,2023-05-25,2023-06-16 12:14:51,potential multi; near 3:2 resonance,1746,2,True,False,True -233071822,1747.01,,2,4,4,2,4,4,4,16.3,109.6,11.4,3,4,4,PC,PC,10.4302,0.006,,1,qlp-s59-ffi,SPOC,18:03:13.45,60:40:30.69,-56.939,0.034,-106.347,0.041,2459935.588141,0.0017636,2.7546587,6.6e-06,0.785,0.336,0.387677,1.309297,357.0,1205.18,3.39178,1.08161,264.009,1122.0,11.0,70.1306,0.0875,4435.0,120.688,4.58929,0.0983592,0.7,0.06,,,0.69,0.0820989,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51,52,54,55,56,58,59",2020-02-27,2023-02-09,2023-02-25 12:10:55,possible depth aperture correlation,1747,1,False,False,True -233071926,1748.01,,2,4,4,2,4,4,4,3.3,35.9,2.96,5,2,4,PC,PC,10.5657,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,18:02:57.43,60:25:03.5,15.971,0.042,72.644,0.041,2459662.449114,0.0029499,1.83186225535088,5.1451516e-06,1.42111718364683,0.10206552,0.437772,0.02972,403.121972580815,27.372877,1.52990070728152,0.8987717,404.922745899622,1144.09685791892,18.16277,101.084,0.1965,4837.0,178.0,4.51662,0.354642,0.768226027488708,0.0516382,,,0.795,0.0925717,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51,52,54,55,56,58,59,60",2020-02-27,2023-05-19,2023-06-16 12:14:51,,1748,1,False,False,True -233602827,1749.01,,1,5,5,1,4,4,4,2.1,28.8,4.66,4,1,2,CP,CP,12.2574,0.007,,1,spoc-s14-s60-b0A-CP,SPOC,18:50:56.93,64:25:10.08,-54.402,0.023,61.827,0.026,2459763.323055,0.0027939,4.48913668477699,8.228225e-06,1.88333766515746,0.2825689,1.381051,0.063517,1271.18670232623,58.49921,1.99802983225913,1.0064696,36.1538987791072,625.400946257185,21.233028,99.5561,0.1172,3959.0,157.0,4.68416,0.00982267,0.561356008052826,0.0165649,,,0.555356,0.0202155,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,57,58,59,60",2020-02-27,2023-06-13,2023-06-16 12:14:51,TOI-1749 c / TOI 1749.01,1749,1,True,False,True -233602827,1749.02,,1,5,5,1,4,4,4,1.3,26.6,5.7,4,1,2,CP,CP,12.2574,0.007,,2,spoc-s14-s60-b0A-CP,SPOC,18:50:56.93,64:25:10.08,-54.402,0.023,61.827,0.026,2459647.515197,0.0033828,9.04470385496473,1.6702928e-05,1.76531479184096,0.3585741,1.750533,0.094715,1611.00101877725,87.23222,2.24937460876106,1.3561225,14.2073509192359,495.162818682254,17.26894,99.5561,0.1172,3959.0,157.0,4.68416,0.00982267,0.561356008052826,0.0165649,,,0.555356,0.0202155,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,57,58,59,60",2020-02-27,2023-06-02,2023-06-16 12:14:51,TOI-1749 d / TOI-1749.02; multi,1749,2,True,False,True -233602827,1749.03,,5,5,5,5,5,5,5,1.6,3.2,2.36,4,1,2,CP,KP,12.2574,0.007,,3,spoc-s14-s60-b0A-CP,SPOC,18:50:56.93,64:25:10.08,-54.402,0.023,61.827,0.026,2458684.354953,0.0010544867,2.38890510103569,9.959496e-06,1.03240902060808,0.29452005,0.618884,0.071978,569.851177133293,66.292,1.33994008416724,2.0260444,83.837897666032,771.755697583122,8.726385,99.5561,0.1172,3959.0,157.0,4.68416,0.00982267,0.561356008052826,0.0165649,,,0.555356,0.0202155,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,57,58,59,60",2023-03-23,2023-06-02,2023-06-16 12:14:51,TOI-1749 b / TOI-1749.03; multi,1749,3,True,False,True -237099296,1750.01,,2,4,2,2,4,4,4,1.5,23.7,7.38,2,4,4,PC,PC,11.7077,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,16:01:12.47,68:56:14.28,48.652,0.046,-36.374,0.051,2459663.822557,0.0044911,11.3373613975694,2.155542e-05,2.86113193631509,0.26875362,1.297193,0.053643,1194.04516172424,49.405815,2.61949403915254,1.0738811,33.3520231552455,612.915064088704,23.582283,162.46,0.8385,4765.0,123.903,4.55138,0.0929274,0.768675029277802,0.0541206,,,0.767,0.0928027,"14,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2020-02-27,2023-05-25,2023-06-16 12:14:51,L1 candidate,1750,1,False,False,True -287080092,1751.01,,1,4,4,1,4,4,4,1.1,26.6,6.5,0,19,8,PC,PC,8.80616,0.006,,1,qlp-s59-ffi,SPOC,16:13:57.32,63:32:00.71,8.353,0.041,-172.81,0.047,2459932.629169,0.0030373,37.4685522,0.0002174,7.267,1.544,0.47457,0.01724,437.0,15.8789,2.43283,0.123764,75.1889,820.0,29.0,113.335,0.292,6114.0,122.03,4.293,0.0838503,1.27,0.06,,,1.152,0.1689,"15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59",2020-02-27,2023-02-09,2023-04-18 00:00:00,L1 candidate; possible unrelated transits near TBJD 2717 and 2749,1751,1,False,False,True -287139872,1752.01,,1,4,4,1,4,4,4,5.3,38.3,3.91,7,0,5,PC,PC,12.7463,0.008,,1,spoc-s14-s60-b0A-PC,SPOC,16:53:50.76,60:42:34.63,-171.252,0.061,125.196,0.062,2459662.731174,0.0023391,0.935189077550389,5.7909137e-06,0.769464937792613,0.19851498,1.249627,0.091688,1150.28711558521,84.44421,1.80329352986338,1.3499643,194.172874446824,952.065635028463,19.779213,103.021,0.3355,3652.0,157.0,4.71387,0.00897414,0.526987016201019,0.0156406,,,0.524085,0.0202784,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,55,56,57,58,59,60",2020-02-27,2023-05-25,2023-06-16 12:14:51,L1 candidate; potential multi,1752,1,True,False,True -287139872,1752.02,,1,4,1,1,4,4,4,0.2,17.2,6.45,7,0,5,PC,PC,12.7463,0.008,,2,spoc-s14-s60-b0A-PC,SPOC,16:53:50.76,60:42:34.63,-171.252,0.061,125.196,0.062,2458704.636574,0.010628937,32.7135406170529,0.00045082436,5.07546697500936,0.6944944,1.596402,0.19989,1469.25987877351,184.0885,2.42028371319677,0.24975602,1.69727048841054,291.110261607473,9.142073,103.021,0.3355,3652.0,157.0,4.71387,0.00897414,0.526987016201019,0.0156406,,,0.524085,0.0202784,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,55,56,57,58,59,60",2022-02-28,2023-05-19,2023-06-16 12:14:51,low SNR; potential multi,1752,2,True,False,True -289580577,1753.01,,2,4,2,2,4,4,4,2.5,27.8,7.37,4,10,5,PC,PC,11.2078,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,16:49:52.76,61:10:24.88,-1.585,0.075,12.548,0.074,2459653.733754,0.0034438,5.38462389660919,1.1786725e-05,3.26172961705255,0.1596112,0.684979,0.02734,630.690131349834,25.18058,2.6170633387085,0.25181937,237.995959800992,1001.75644609803,23.091486,226.671,2.699,5700.0,130.299,4.48088,0.0795665,0.959021985530853,0.0498041,,,1.015,0.131911,"14,15,16,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,58,59,60",2020-02-27,2023-05-25,2023-06-16 12:14:51,L1 candidate,1753,1,False,False,True -332477926,1754.01,,1,4,1,1,4,4,4,1.3,35.5,8.39,5,2,6,PC,PC,11.7229,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,17:42:22.63,57:26:51.97,-8.123,0.051,-12.378,0.047,2459662.802223,0.0034167,16.2143216884247,6.849222e-05,3.83952494493376,0.20868565,1.688227,0.089343,1553.70643385554,82.28461,2.82350745588676,0.14136812,6.30616387333345,404.167197189424,20.657053,81.5511,0.15135,3849.0,157.0,4.65688,0.0106348,0.593294978141785,0.0175759,,,0.582584,0.0202531,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,57,58,59,60",2020-02-27,2023-05-25,2023-06-16 12:14:51,L1 candidate; v-shaped,1754,1,False,False,True -356978132,1755.01,,5,5,5,5,2,5,5,22.0,97.6,317.0,1,3,2,PC,APC,9.90051,0.006,,1,qlp-s52-tois,SPOC,18:15:07.61,56:52:41.17,9.751,0.036,-39.905,0.039,2459681.861928,0.0008967,60.1849546,8.31e-05,2.618,0.14,3.719582,1.504037,3420.0,1384.31,17.6582,5.26001,10.432,500.0,47.0,205.933,0.7935,6499.0,129.287,4.35362,0.0884507,1.27,0.06,,,1.331,0.212652,"14,15,16,17,18,19,20,21,22,24,25,26,40,41,47,48,49,50,51,52",2020-02-27,2022-12-08,2022-12-16 12:08:26,v-shaped; grazing,1755,1,False,False,True -364074068,1756.01,,2,4,4,2,4,4,4,2.6,30.0,3.57,4,2,4,PC,PC,12.0948,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,20:25:18.91,77:38:11.08,-12.577,0.028,52.096,0.025,2458764.851874,0.0011853226,2.78301136608212,8.9497225e-06,1.74062950244565,0.55205333,0.995277,0.085408,916.264070077732,78.660675,1.7104602676289,1.8643507,55.5823764483296,696.392407280989,13.553055,86.7159,0.11135,3756.0,157.0,4.68309,0.00975251,0.562606990337372,0.0165054,,,0.556454,0.0201546,"17,18,19,24,40,50,52,53,57,58,59,60",2020-02-27,2023-05-19,2023-06-16 12:14:51,slightly v-shaped; L1 candidate,1756,1,False,False,True -367753709,1757.01,,2,4,2,2,3,4,4,3.2,31.4,3.46,2,3,2,PC,PC,11.2906,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,17:01:36.17,79:04:01.65,-52.333,0.048,39.466,0.063,2459633.261116,0.0025282,2.12568697665264,5.904732e-06,1.46496640757542,0.113381825,0.619791,0.039833,570.68588278482,36.686863,1.67800729560068,0.90585065,209.881498802837,970.763164675644,16.531008,104.346,0.274,4428.0,128.048,4.57977,0.100683,0.707158982753754,0.0603317,,,0.693,0.0816628,"14,15,18,19,20,21,22,24,25,26,40,41,47,48,51,52,53,55,58,59,60",2020-02-27,2023-06-02,2023-06-16 12:14:51,L1 candidate; possible multi,1757,1,True,False,True -367753709,1757.02,,2,4,2,2,3,4,4,1.6,22.8,3.3,2,3,2,PC,PC,11.2906,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,17:01:36.17,79:04:01.65,-52.333,0.048,39.466,0.063,2458685.759866,0.0012338352,5.00971134077727,1.4321918e-05,0.945710652095698,0.17472076,0.608634,0.073991,560.415962062173,68.14584,1.63165744757059,2.202738,66.9200570489094,729.472333542331,8.224073,104.346,0.274,4428.0,128.048,4.57977,0.100683,0.707158982753754,0.0603317,,,0.693,0.0816628,"14,15,18,19,20,21,22,24,25,26,40,41,47,48,51,52,53,55,58,59,60",2023-03-23,2023-05-19,2023-06-16 12:14:51,low SNR; potential multi; two stars in pixel,1757,2,True,False,True -367858035,1758.01,,1,4,1,1,3,4,4,2.8,54.3,11.43,5,12,5,PC,PC,10.0907,0.006,,1,qlp-s59-ffi,SPOC,23:38:57.98,75:41:06.83,-82.642,0.059,25.158,0.051,2459924.771388,0.0016475,20.7050858,4.74e-05,3.388,0.204,1.990893,0.056886,1832.0,52.3923,3.40565,0.205199,13.2586,531.0,29.0,96.6215,0.34215,5169.0,121.543,4.57,0.0825764,0.81,0.05,,,0.88,0.105339,"18,19,24,25,52,58,59",2020-02-27,2023-02-03,2023-02-09 12:10:04,L1 candidate,1758,1,False,False,True -408636441,1759.01,TIC 408636441.01,1,5,5,1,4,4,4,2.8,76.3,9.79,7,16,3,CP,CP,9.92838,0.007,,1,qlp-s57-ffi,SPOC,21:47:24.4,62:45:13.74,-173.47,0.056,-10.46,0.048,2459876.46386,0.0014083,18.8500111,3.72e-05,3.407,0.307,2.565366,0.089773,2360.0,82.681,3.10635,0.111424,5.79936,432.0,34.0,40.0654,0.0423,3960.0,157.0,4.62853,0.0112399,0.63,0.02,,,0.609617,0.0202124,"16,17,24,56,57,58",2020-02-27,2023-02-03,2023-02-09 12:10:04,TOI-1759 b,1759,1,False,False,True -420112587,1760.01,,5,5,5,5,5,5,5,1.4,110.1,7.5,1,0,0,PC,FP,12.4989,0.008,,1,spoc,SPOC,19:20:41.75,73:11:45.58,6.983,0.086,-81.876,0.095,2458691.531496,0.003781858,11.0626659826953,0.00048970914,2.08421564591642,0.30094072,5.396336,0.765231,4957.87809419977,704.5552,2.64370214239555,4.0930066,1.76288565395275,293.88389385813,10.327715,30.5373,0.04315,3212.0,157.0,4.98029,0.0125638,0.254522,0.00770836,,,0.225771,0.020157,"14,15,16,17,19",2020-02-27,2020-02-27,2022-12-14 12:09:24,v-shaped; close visual binary,1760,1,False,False,True -424391516,1761.01,,2,4,2,2,3,4,4,1.2,18.7,6.46,0,3,2,PC,PC,10.5951,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,18:46:18.63,75:18:12.12,16.211,0.037,25.568,0.041,2459714.913736,0.0089562,11.5922513199797,4.0438623e-05,3.48689466298574,0.35090774,0.405232,0.029804,373.162557312991,27.45041,2.42308864711891,0.68486065,174.346684061674,926.772572519031,13.062716,242.537,1.347,6311.0,146.415,4.37813,0.0873301,1.19406998157501,0.0529648,,,1.242,0.184323,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,53,54,55,56,57,58,60",2020-02-27,2023-05-19,2023-06-16 12:14:51,L1 candidate,1761,1,False,False,True -435680451,1762.01,,2,4,2,2,3,4,4,2.2,35.9,15.66,1,2,3,PC,PC,10.5949,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,01:11:39.6,79:09:55.77,45.345,0.044,-21.595,0.044,2458810.921261,0.00217449,24.1412289941159,6.8320966e-05,3.06976496565349,0.2244694,1.752467,0.155163,1612.77954256261,142.89993,4.07706888375659,0.4369835,38.9416122038004,637.12292395229,9.9471655,174.195,0.763,6156.0,262.277,4.55262,0.0987859,0.948419988155365,0.0468844,,,1.171,0.193839,"18,19,52,58,59",2020-02-27,2023-05-19,2023-06-16 12:14:51,,1762,1,False,False,True -441739871,1763.01,,2,4,4,2,4,4,4,3.0,38.4,5.9,3,0,4,PC,PC,12.8123,0.007,,1,qlp-s49-tois,SPOC,17:18:15.4,74:18:09.8,-4.965,0.052,-38.32,0.064,2459657.048337,0.0043902,3.7979081,2.3e-05,0.642,0.348,1.597206,0.080661,1470.0,74.2888,2.28065,0.453369,3.40655,378.0,8.0,88.0677,0.22285,3520.0,157.0,4.76125,0.00700592,0.47,0.01,,,0.470612,0.020231,"14,15,16,17,18,19,20,21,22,23,24,25,26,41,47,48,49",2020-02-27,2022-08-19,2023-06-16 00:00:00,,1763,1,False,False,True -1551345500,1764.01,,3,4,3,3,3,4,4,6.8,206.5,68.39,1,0,3,PC,PC,11.2018,0.006,,1,qlp-s52-tois,SPOC,18:29:10.32,55:18:47.19,147.326,0.05,-10.353,0.053,2459744.020242,0.0005792,47.3860753,3.75e-05,1.81,0.146,21.436373,0.042644,19550.0,39.2758,9.77368,0.91955,0.636581,248.0,91.0,87.2876,0.20525,4415.0,124.062,4.69831,0.100589,0.62,0.05,,,0.69,0.0829498,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,51,52",2020-02-27,2022-10-04,2022-12-14 12:09:24,v-shaped; multiple stars in pixel,1764,1,False,False,True -272672133,1765.01,,3,4,4,3,4,4,4,14.3,69.5,27.58,9,3,5,PC,PC,11.7176,0.006,,1,qlp-s50-tois,SPOC/QLP,15:36:58.03,67:27:09.28,-34.737,0.034,26.803,0.036,2459690.102516,0.0006575,3.493958,3.8e-06,1.961,0.115,3.970187,0.000933,3650.0,0.859075,5.65971,0.346438,156.241,984.0,77.0,229.44,1.0135,5203.4,186.0,4.47,0.09,0.9,0.05,,,0.884,0.108956,"14,15,16,17,20,21,22,23,40,41,47,48,49,50,54",2020-03-12,2023-03-14,2023-03-15 00:00:00,,1765,1,False,False,True -67666096,1766.01,,5,5,5,5,5,5,5,169.6,202.9,317.0,0,0,2,KP,KP,9.43351,0.006,,1,qlp-s48-ffi,SPOC/QLP,09:54:34.35,40:23:16.6,-28.328,0.198,-24.411,0.227,2459635.207263,0.0015413,2.7033942,5.1e-06,2.927,0.16,11.284957,0.002071,10340.0,1.90766,16.72,0.893416,1704.57,1790.0,222.0,210.252,5.4075,6518.0,123.7,4.15,0.09,1.61,0.08,,,1.34,0.219363,"21,48",2020-03-12,2022-03-24,2022-12-14 12:09:24,KELT-3 b,1766,1,False,False,True -8767448,1767.01,,5,5,5,5,5,5,5,104.5,124.0,317.0,0,0,2,KP,KP,9.98111,0.006,,1,qlp-s48-ffi,SPOC/QLP,09:20:24.71,33:52:56.38,-2.155,0.079,-20.319,0.073,2458892.510627,0.0005681,4.3532339,0.0001972,3.869,0.144,11.208164,0.001268,10270.0,1.16817,16.2509,0.937069,617.309,1388.0,144.0,227.537,3.069,5914.0,145.7,4.07,0.09,1.59,0.09,0.05,0.1,1.076,0.133346,"21,48",2020-03-12,2022-03-23,2022-12-14 12:09:24,WASP-13 b,1767,1,False,False,True -137906197,1768.01,,1,4,1,1,4,4,4,3.7,42.0,8.54,3,4,8,PC,PC,9.91008,0.006,,1,qlp-s48-tois,SPOC/QLP,10:08:24.67,55:32:23.86,-21.636,0.051,-26.851,0.048,2459627.02424,0.0042219,7.3376973,7.04e-05,4.012,0.822,0.738552,0.002095,680.0,1.92917,2.86575,0.211144,332.275,1189.0,14.0,157.597,0.8285,5994.0,121.0,4.4,0.08,1.1,0.05,,,1.104,0.147925,"21,48",2020-03-12,2022-07-12,2022-12-14 12:09:24,2 stars in pixel; possible depth-aperture correlation,1768,1,False,False,True -287225295,1769.01,,1,5,5,1,4,4,4,28.3,171.4,9.32,7,4,6,PC,APC,9.4819,0.006,,1,qlp-s47-tois,SPOC/QLP,09:36:00.08,51:36:28.02,-16.952,0.044,48.001,0.043,2459606.763284,0.0009609,0.6097552,1.3e-06,0.433,0.089,0.653586,0.056356,601.794223119365,51.904087,2.99971,0.252329,356.138,1210.0,26.0,90.6965,0.2298,5493.0,123.5,4.52,0.08,0.89,0.05,,,0.96,0.125462,"21,47",2020-03-12,2022-06-28,2022-12-14 12:09:24,V-shaped; significant odd-even,1769,1,False,False,True -457138169,1770.01,,5,5,5,5,5,5,5,53.0,195.4,35.46,7,1,6,PC,FP,9.22437,0.006,,1,spoc-s14-s50-b0A-PC,SPOC/QLP,09:25:28.31,50:54:31.95,-28.379,0.047,8.392,0.044,2459605.893177,0.0031418,1.09245357642221,3.925065e-06,1.22457849262174,0.0698552,0.949979,0.068246,874.580103977764,62.854668,6.59350263697545,3.981952,5898.98182259645,2235.18777794783,22.716997,163.438,0.81,6273.0,117.4,4.2,0.08,1.44877994060516,0.0595603,,,1.224,0.175965,"21,47",2020-03-12,2022-11-15,2023-04-01 12:02:43,TIC 457138168 (Tmag ~13.915) nearby; v-shaped,1770,1,False,False,True -252479260,1771.01,,5,5,5,5,5,5,5,228.2,581.9,112.53,0,0,2,KP,KP,9.007,0.006,,1,qlp-s48-tois,SPOC/QLP,10:22:43.55,50:07:43.36,-26.182,0.057,83.727,0.066,2459629.717062,8.76e-05,3.2122325,6e-07,2.655,0.023,15.880463,9.1e-05,14520.0,0.0834096,12.9848,0.654241,325.569,1183.0,371.0,81.7647,0.2497,5357.7,112.4,4.37,0.08,1.04,0.05,0.282809,0.0423999,0.93,0.116828,"21,48",2020-03-12,2022-07-07,2022-12-14 12:09:24,HAT-P-22 b,1771,1,False,False,True -85293053,1772.01,,1,4,1,1,4,4,4,5.0,60.3,8.44,1,6,6,PC,PC,9.3523,0.006,,1,spoc-s14-s50-b0A-PC,SPOC/QLP,10:27:21.05,34:23:27.42,-39.423,0.073,-19.086,0.077,2459628.849872,0.0048806,8.05422072638224,3.299683e-05,3.02871611944131,0.25937888,0.767688,0.057532,706.816530691621,52.987804,2.83377057383276,0.4985287,140.23327051347,877.67254926431,12.536335,97.7562,0.5952,5583.1,110.4,4.44,0.08,0.99525398015976,0.04551,0.128242,0.0123812,0.99,0.126087,"21,48",2020-03-12,2022-11-15,2022-12-14 12:09:24,potential multi,1772,1,True,False,True -85293053,1772.02,TIC 85293053.02,3,5,5,3,4,4,4,,,20.13,1,6,6,PC,PC,9.3523,0.006,,2,spoc-s48-b02,SPOC,10:27:21.05,34:23:27.42,-39.423,0.073,-19.086,0.077,2459618.707643,0.004261573,0.0,0.0,5.34897486317528,0.18679307,2.350822,0.123147,2162.84493126748,113.41642,4.72636440294921,0.39756808,102.578033381409,811.677190450293,23.54239,97.7562,0.5952,5583.1,110.4,4.44,0.08,0.99525398015976,0.04551,0.128242,0.0123812,0.99,0.126087,48,2022-03-24,2022-03-24,2022-12-14 12:09:24,single transit; exterior to .01,1772,2,True,True,True -332064670,1773.01,,5,5,5,5,5,5,5,71.4,490.3,4.33,0,10,2,KP,KP,5.2058,0.006,,1,spoc-s01-s46-b0A,SPOC/QLP,08:52:35.24,28:19:47.34,-485.872,0.134,-233.651,0.109,2459577.776735,0.000428,0.736545815150004,1.0139275e-06,1.55501601019909,0.027332455,0.407227,0.00536,374.999203886748,4.9371557,1.91507178421826,0.21438564,2657.83433496404,1831.26724072643,52.179123,12.5855,0.01235,5250.0,147.6,4.42,0.09,0.963514983654022,0.0654472,0.35,0.1,0.9,0.115017,"21,44,45,46",2020-03-12,2022-07-15,2022-12-14 12:09:24,55 Cnc e,1773,1,False,False,True -4897275,1774.01,,1,4,4,1,4,4,4,5.3,85.1,7.97,1,5,3,PC,CP,7.6474,0.006,,1,spoc-s21-b02,SPOC,09:52:38.86,35:06:39.63,264.673,0.087,-150.27,0.073,2458872.341155,0.002249323,16.710042174913,0.0032803328,5.40046516776682,0.3893613,0.668245,0.050101,615.287363110693,46.144043,2.73966156734624,0.7620626,73.7609474825912,747.440060941775,11.938421,53.974,0.20425,5853.7,106.531,4.38636,0.0701936,1.09271,0.0444724,,,1.06,0.13005,"21,48",2020-03-12,2022-11-09,2022-12-14 12:09:24,still only two transits as of s48; transit that would have been in s48 landed in data gap,1774,1,False,False,True -9348006,1775.01,,3,4,4,3,4,4,4,22.6,132.8,56.69,9,9,6,PC,PC,10.9184,0.007,,1,qlp-s48-tois,SPOC,10:00:27.62,39:27:27.9,-5.839,0.052,-15.296,0.051,2459635.364326,0.0007263,10.2405483,1.4e-05,3.538,0.111,10.85718,0.001496,9950.0,1.37762,8.69623,0.527794,55.4426,760.0,68.0,149.234,0.9475,5251.0,129.898,4.54337,0.0872397,0.84,0.05,,,0.898,0.112957,"21,48",2020-03-12,2022-07-12,2023-02-22 00:00:00,,1775,1,False,False,True -21535395,1776.01,,2,5,5,2,4,4,4,5.6,12.3,2.55,2,19,6,PC,PC,7.6586,0.006,,1,spoc,SPOC,10:59:06.55,40:59:01.39,214.702,0.084,25.647,0.106,2458871.488566,0.0030677693,2.8009914707958,0.00058950053,1.49853987456756,0.36903906,0.222442,0.030028,204.855332544592,27.656855,1.40339154895225,1.9496018,560.334922376079,1240.8853925002,7.390294,44.647,0.15285,5723.87,104.62,4.49543,0.0705593,0.945408,0.0387764,,,1.02,0.126763,21,2020-03-12,2020-03-12,2022-12-14 12:09:24,bright star,1776,1,False,False,True -29191624,1777.01,,2,4,2,2,4,4,4,1.8,38.4,4.0,0,5,7,PC,PC,8.737001,0.006,,1,qlp-s48-tois,SPOC,10:07:13.69,46:06:53.57,-0.714,0.058,-22.108,0.056,2459635.116524,0.006528,14.6503935,0.0002236,2.08,0.465,0.358352,0.002342,330.0,2.15699,1.81908,0.174393,18.7938,580.0,7.0,79.7665,0.33105,5859.45,101.754,4.4776,0.0720788,0.98,0.04,,,1.06,0.133432,"21,48",2020-03-12,2022-06-29,2022-12-14 12:09:24,low SNR,1777,1,False,False,True -39699648,1778.01,,1,4,1,1,4,4,4,5.6,60.1,7.87,2,18,5,PC,PC,8.4594,0.006,,1,spoc,SPOC,09:07:06.63,46:40:20.73,-68.542,0.051,-40.838,0.05,2458876.025023,0.0029517577,6.51595066707795,0.0015533104,2.53343092705777,0.6371884,0.471947,0.045143,434.584346788962,41.577324,2.82997127691931,2.8941534,414.067919401336,1150.5027089768,10.820062,99.451,0.36195,6023.0,126.762,4.23995,0.081398,1.32944,0.0616834,,,1.12,0.143852,21,2020-03-12,2020-03-12,2022-12-14 12:09:24,,1778,1,False,False,True -67646988,1779.01,,5,5,5,5,5,5,5,253.8,857.8,82.57,1,0,0,KP,KP,12.4368,0.007,,1,qlp-s48-tois,SPOC,09:51:04.45,35:58:06.8,-100.975,0.142,-171.822,0.126,2459633.119867,0.0003654,1.8817191,9e-07,1.236,,113.513431,0.000804,99270.0,0.740199,10.9698,0.330624,22.5072,606.0,111.0,33.928,0.15965,3138.0,157.0,4.91873,0.00487072,0.31,0.01,,,0.283907,0.0202027,"21,48",2020-03-12,2022-06-29,2022-12-14 12:09:24,LP 261-75 b; BD from Irwin et al. 2018 with measured mass,1779,1,False,False,True -99834717,1780.01,,5,5,5,5,5,5,5,58.0,148.3,74.84,0,0,0,KP,KP,12.212,0.007,,1,qlp-s48-tois,SPOC,11:00:40.13,64:57:49.84,-22.389,0.044,-32.425,0.046,2459632.745042,0.0003659,1.7063264,1.1e-06,1.359,0.056,11.987315,0.001964,10980.0,1.80935,10.1999,0.689338,235.772,1091.0,57.0,262.706,2.595,4974.0,130.639,4.44059,0.0931488,0.9,0.06,,,0.82,0.100709,"14,21,41,47,48",2020-03-12,2022-06-29,2022-12-14 12:09:24,KPS-1 b,1780,1,False,False,True -137881699,1781.01,,5,5,5,5,5,5,5,28.3,28.9,317.0,0,0,0,KP,KP,12.5119,0.007,,1,qlp-s48-tois,SPOC,10:02:17.43,53:57:02.97,-9.381,0.039,-15.255,0.05,2459633.496924,0.0015478,2.9720774,8.9e-06,4.41,0.16,7.014753,0.00235,6440.0,2.16409,15.6498,0.946034,1939.51,1848.0,28.0,935.456,23.769,6101.12,142.809,3.92024,0.0886018,1.95,0.11,0.136938,0.0119585,1.15,0.156612,"21,48",2020-03-12,2022-06-29,2022-12-14 12:09:24,HAT-P-66,1781,1,False,False,True -160045097,1782.01,,1,4,1,1,3,4,4,3.8,43.1,6.68,10,3,3,PC,PC,11.3069,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,14:12:18.91,74:24:42.45,-79.455,0.042,39.548,0.033,2459635.737444,0.0021984,4.9877056237819,1.0248703e-05,2.27691074222847,0.15424217,1.295339,0.069288,1192.33981983428,63.814247,2.47030768006154,0.39980054,56.0452278193233,697.837669799212,16.066872,95.2649,0.1813,4336.0,121.303,4.62012,0.0989097,0.668693006038666,0.0560352,,,0.68,0.0774836,"14,20,21,22,40,41,47,48,53,60",2020-03-12,2023-05-25,2023-06-16 12:14:51,potential multi,1782,1,True,False,True -160045097,1782.02,,2,4,4,2,3,4,4,6.0,49.6,5.18,10,3,3,PC,PC,11.3069,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,14:12:18.91,74:24:42.45,-79.455,0.042,39.548,0.033,2459632.816808,0.0023354,1.82902939880296,6.309852e-06,1.66790977219127,0.12955068,0.76555,0.056877,704.849393302529,52.384716,2.12683751057302,0.24079674,213.523399461228,974.947249405691,15.420817,95.2649,0.1813,4336.0,121.303,4.62012,0.0989097,0.668693006038666,0.0560352,,,0.68,0.0774836,"14,20,21,22,40,41,47,48,53,60",2020-07-16,2023-05-25,2023-06-16 12:14:51,TOI 1782.02; potential multi,1782,2,True,False,True -160045097,1782.03,,1,4,1,1,3,4,4,1.4,35.9,9.16,10,3,3,PC,PC,11.3069,0.006,,3,spoc-s14-s60-b0A-PC,SPOC,14:12:18.91,74:24:42.45,-79.455,0.042,39.548,0.033,2459625.059505,0.003548,18.7559764648518,0.00010186187,2.55507050354788,0.26412636,1.637241,0.149896,1506.81833100173,138.04994,2.97375359911059,0.4100799,9.58414740359629,448.753780919666,9.890216,95.2649,0.1813,4336.0,121.303,4.62012,0.0989097,0.668693006038666,0.0560352,,,0.68,0.0774836,"14,15,20,21,22,40,41,47,48,53,60",2022-02-28,2023-05-25,2023-06-16 12:14:51,new candidate in potential multi; low SNR,1782,3,True,False,True -229938290,1783.01,,2,4,4,2,4,4,4,11.3,90.3,5.84,2,2,5,PC,PC,9.2742,0.006,,1,spoc,SPOC,19:10:43.44,64:09:13.18,3.633,0.059,74.309,0.051,2458871.091166,0.0022109193,1.41986588683862,0.0002172002,1.30584973473734,0.3714191,0.505214,0.051569,465.210620481054,47.49546,2.28227756255247,1.6871891,1263.18325308689,1520.49970208925,8.185986,88.3983,0.19485,5406.0,128.465,4.42475,0.08266,0.984511,0.0541985,,,0.94,0.119473,21,2020-03-12,2020-03-12,2022-12-14 12:09:24,Scattered light; shoulder on egress; check bright neighbor (TIC 1718009391).,1783,1,False,False,True -241196395,1784.01,,3,5,5,3,4,4,4,38.9,170.2,36.71,3,2,3,PC,APC,9.61433,0.006,,1,qlp-s48-ffi,SPOC,10:14:11.92,29:05:07.89,-35.035,0.094,-10.469,0.106,2459633.75904,0.0011025,2.0937563,7.3e-06,0.433,0.073,1.358019,0.364827,1250.0,335.962,6.75578,2.48623,175.656,1014.0,14.0,171.945,1.6395,6435.69,109.221,4.3758,0.0838182,1.23,0.05,-0.238012,0.026101,1.301,0.201338,"21,48",2020-03-12,2022-03-24,2022-12-14 12:09:24,V-shaped; TFOP SB1/APC,1784,1,False,False,True -230386259,1785.01,,3,4,3,3,4,4,4,2.4,14.4,16.86,1,2,5,PC,PC,9.6746,0.007,,1,qlp-s60-ffi,QLP,19:02:54.85,63:56:55.86,-3.749,0.045,-12.882,0.047,2459944.890087,0.0055718,11.0023133,8.42e-05,5.305,0.706,0.323598,0.014621,298.0,13.466,4.25882,0.254562,261.664,1120.0,21.0,384.225,3.58,6264.0,192.0,4.25903,,2.87,0.13,,,1.19,0.170873,"14,15,16,17,18,20,21,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,57,58,59,60",2020-03-12,2023-02-27,2023-03-03 12:11:24,evolved variable host,1785,1,False,False,True -86280613,1786.01,,5,5,5,5,5,5,5,106.4,201.1,317.0,2,4,1,PC,FP,9.5173,0.007,,1,qlp,QLP,09:26:53.06,61:41:56.39,-12.552,0.045,-19.926,0.044,2458851.5904,0.00129,9.5727,0.00044,2.507,0.148,3.730477,0.878865,3430.0,809.137,20.6825,5.80914,451.638,1284.0,57.0,248.695,2.059,6505.0,129.6,4.04,0.09,1.83,0.08,,,1.33,0.215726,"20,21",2020-03-12,2020-03-12,2022-12-14 12:09:24,v shaped,1786,1,False,False,True -372730331,1787.01,,3,4,3,3,4,4,4,166.7,429.2,317.0,3,2,5,PC,PC,10.3774,0.007,,1,qlp-s48-ffi,QLP,10:09:19.31,39:09:44.68,14.865,0.128,-30.222,0.15,2459627.995561,0.0005098,8.7046669,9.6e-06,2.58,0.083,10.539198,0.709968,9660.0,653.691,28.8458,4.96891,313.381,1172.0,103.0,327.863,11.5545,6427.0,130.1,4.11,0.09,1.67,0.1,,,1.3,0.195755,"21,48",2020-03-12,2022-03-24,2022-12-14 12:09:24,large for insolation; v-shaped; likely EB,1787,1,False,False,True -450327768,1788.01,,5,5,5,5,5,5,5,46.4,158.2,77.23,6,2,2,PC,FP,10.1883,0.007,,1,qlp,QLP,10:40:55.01,35:54:48.07,-48.379,0.082,-72.308,0.073,2458875.04671,0.00069,5.34326,0.00028,1.426,0.096,7.605011,0.003726,6980.0,3.43158,10.4171,0.594114,52.9343,751.0,70.0,191.532,2.375,5776.0,131.0,4.25,0.08,1.26,0.06,,,1.035,0.127192,21,2020-03-12,2020-03-12,2022-12-14 12:09:24,,1788,1,False,False,True -172518755,1789.01,,3,5,5,3,4,4,4,122.6,129.2,317.0,4,49,8,CP,CP,9.1824,0.006,,1,spoc-s14-s50-b0A-CP,QLP,09:30:58.42,26:32:23.98,-7.999,0.073,-39.545,0.064,2459630.911267,0.0003625,3.20868893481646,2.4237135e-05,2.24213290315313,0.04133972,2.810081,0.057409,2584.83366165385,52.874016,16.8553458048103,3.0818992,3000.05418024639,1887.56547025532,66.68102,229.067,2.364,5971.4,110.4,3.77,0.07,2.25662994384766,0.0968015,0.316,0.035,1.1,0.144717,"21,44,45,46,48",2020-03-12,2022-11-09,2022-12-14 12:09:24,TOI-1789 b,1789,1,False,False,True -310981412,1790.01,,5,5,5,5,5,5,5,1.5,26.6,4.78,1,4,6,PC,FA,10.2728,0.006,,1,qlp,QLP,10:45:42.67,69:12:02.81,-23.372,0.037,-1.811,0.048,2458684.16048,0.00806,9.62517,0.00067,3.725,0.786,0.586456,0.00266,540.0,2.44971,2.03371,0.184439,170.739,1007.0,9.0,164.178,0.641,6149.0,129.6,4.57,0.08,0.93,0.04,,,1.167,0.163886,"14,20,21",2020-03-12,2020-03-12,2022-12-14 12:09:24,2.3 sigma odd-even,1790,1,False,False,True -233684293,1791.01,,5,5,5,5,5,5,5,0.9,12.2,11.05,0,9,4,PC,FA,9.05769,0.006,,1,qlp-s49-tois,QLP,17:23:03.09,63:06:38.67,-20.567,0.05,-6.634,0.051,2459658.579318,0.0571946,48.4788764,0.0034167,8.563,6.844,0.347491,0.023125,320.0,21.2991,3.32727,1.2612,301.867,1161.0,9.0,247.435,1.5055,6153.0,132.1,3.72,0.08,2.47,0.11,,,1.169,0.159547,"14,15,16,17,18,19,20,21,22,23,25,26,40,41,47,48,49",2020-03-12,2022-08-16,2022-12-14 12:09:24,weak shape with 8 events; likely SV,1791,1,False,False,True -29191596,1792.01,,3,4,3,4,4,4,4,1.4,4.5,2.21,0,8,8,PC,PC,8.676,0.006,,1,qlp-s48-tois,QLP,10:06:52.81,45:52:59.98,-123.738,0.063,-49.059,0.055,2459629.386516,0.0151979,8.8164887,0.0002842,3.895,0.969,0.184591,0.001954,170.0,1.80002,1.28915,0.158338,149.167,973.0,6.0,69.3223,0.24525,5502.5,112.2,4.43,0.07,0.99,0.05,0.120465,0.0124072,0.97,0.122626,"21,48",2020-03-12,2022-07-08,2022-12-14 12:09:24,multiple stars in target pixel; potential centroid offset; low SNR,1792,1,False,False,True -304142124,1793.01,TIC 304142124.01,1,4,1,3,4,4,4,4.0,121.3,17.51,20,3,3,CP,CP,7.8436,0.006,,1,qlp-s63-ffi,QLP,10:59:25.52,-56:37:24.8,-416.88,0.083,-119.71,0.075,2460017.429225,0.0008872,55.087,0.02,5.709,0.735,2.727535,0.0994,2509.0,91.5469,4.36639,0.243913,16.5899,562.0,82.0,36.9941,0.0688,5175.0,51.9,4.51,0.04,0.87,0.04,0.207904,0.0396491,0.87,0.0999353,"10,36,37,63",2020-03-16,2023-05-10,2023-06-16 12:14:51,HD 95338 b ,1793,1,False,False,True -286916251,1794.01,,2,4,2,2,4,4,4,3.4,35.5,9.12,5,15,8,PC,PC,9.69924,0.006,,1,qlp-s49-tois,SPOC/QLP,13:33:35.4,49:03:39.04,-33.034,0.033,-68.024,0.034,2459661.993638,0.0064631,8.765603,7.36e-05,3.552,0.435,0.575593,0.000881,530.0,0.81171,2.96768,0.190302,134.543,948.0,10.0,155.791,0.6215,5707.0,115.695,4.21803,0.0721788,1.3,0.06,,,1.017,0.119612,"15,16,22,23,49",2020-04-15,2022-08-19,2022-12-14 12:09:24,2 stars in pixel,1794,1,False,False,True -135083444,1795.01,,5,5,5,5,5,5,5,25.2,117.9,30.2,4,1,2,PC,FP,10.0721,0.006,,1,spoc,SPOC/QLP,12:17:28.06,19:50:23.96,-35.126,0.085,-3.673,0.047,2458899.610227,0.0034937563,2.79179110271932,0.00061345653,1.46642535066697,0.25793466,1.106904,0.190116,1018.97714334739,175.08829,6.00020658091707,14.255544,1003.83584360434,1435.60652726918,9.643813,183.175,1.6665,6071.0,120.4,4.36,0.08,1.16271,0.0536282,,,1.134,0.147676,22,2020-04-15,2020-04-15,2022-12-14 12:09:24,Possibly nearby EB; need SG1 to check,1795,1,False,False,True -138819293,1796.01,,5,5,5,5,5,5,5,99.3,767.5,13.97,0,0,2,KP,KP,8.40346,0.007,,1,spoc-s49-b0A,SPOC/QLP,11:42:12.13,26:42:11.04,895.047,0.128,-814.031,0.123,2459639.963332,0.00018952927,2.64388561055203,3.158837e-05,0.968928896407807,0.0148794195,6.976184,0.069974,6404.70514713927,64.446434,3.81211402798575,0.11891983,29.4322067883771,594.053359297008,99.782776,9.75321,0.00897,3456.0,157.0,4.8,,0.425431996583939,0.0125187,,,0.419868,0.0201679,"22,49",2020-04-15,2022-07-13,2022-12-14 12:09:24,GJ 436 b,1796,1,False,False,True -368435330,1797.01,TIC 368435330.01,1,5,5,1,4,4,4,11.7,107.7,9.25,2,28,7,PC,CP,8.6259,0.006,,1,qlp-s48-tois,SPOC/QLP,10:51:06.41,25:38:27.83,-92.839,0.09,-23.217,0.109,2459631.901476,0.0013533,3.6451549,1.4e-05,2.055,0.163,0.847205,0.000683,780.0,0.628693,2.99324,0.165456,283.719,1143.0,25.0,82.3432,0.3914,5922.0,120.4,4.43,0.08,1.05,0.05,,,1.08,0.141807,"22,48",2020-04-15,2022-07-12,2022-12-14 12:09:24,active star; potentially multi; 2 stars in pixel,1797,1,True,False,True -368435330,1797.02,,1,5,5,1,4,4,4,6.1,67.7,2.98,2,28,7,PC,CP,8.6259,0.006,,2,qlp-s48-tois,QLP,10:51:06.41,25:38:27.83,-92.839,0.09,-23.217,0.109,2459635.926283,0.0030015,1.0376109,8.2e-06,1.588,0.273,0.228029,0.000767,210.0,0.706273,1.53671,0.120057,2287.71,1926.0,11.0,82.3432,0.3914,5922.0,120.4,4.43,0.08,1.05,0.05,,,1.08,0.141807,"22,48",2022-03-24,2022-07-08,2022-12-14 12:09:24,potential multi-planet system,1797,2,True,False,True -198153540,1798.01,,2,4,2,2,4,4,4,2.5,36.5,5.79,4,13,3,PC,PC,10.5191,0.006,,1,qlp-s50-tois,SPOC/QLP,14:04:22.54,46:31:09.42,-27.345,0.034,-27.119,0.037,2459688.133816,0.004113,8.0215043,5.87e-05,2.979,0.6,0.945002,0.002078,870.0,1.9142,2.25689,0.164425,86.0527,848.0,15.0,113.181,0.3085,5165.2,103.5,4.59,0.08,0.78,0.04,0.137577,0.0125165,0.874,0.107671,"16,22,23,49,50",2020-04-15,2022-09-07,2022-12-14 12:09:24,possible multi; potential L1 candidate,1798,1,True,False,True -198153540,1798.02,,2,5,5,2,4,4,4,6.7,8.5,2.86,4,13,3,PC,PC,10.5191,0.006,,2,spoc-s14-s50-b0A-PC,SPOC,14:04:22.54,46:31:09.42,-27.345,0.034,-27.119,0.037,2459691.314372,0.0024038,0.437806915498539,9.124668e-06,1.30135591196485,0.20473142,0.283842,0.029565,261.3935914919,27.229898,1.49970400230468,0.28203925,3369.47510472189,1943.16783283327,12.684562,113.181,0.3085,5165.2,103.5,4.59,0.08,0.784618020057678,0.0392965,0.137577,0.0125165,0.874,0.107671,"16,22,23,49,50",2020-07-16,2022-12-12,2022-12-16 12:08:26,potential multi; period is likely too short and close to Roche lobe filling,1798,2,True,False,True -8967242,1799.01,,2,5,5,2,4,4,4,2.9,51.0,3.29,1,14,6,PC,PC,8.3662,0.006,,1,spoc,SPOC,11:08:55.9,34:18:10.85,-9.033,0.07,-40.835,0.069,2458904.815773,0.0039366665,7.09385304707861,0.0020860932,2.51076259145931,0.81207216,0.308651,0.04998,284.238113501594,46.032337,1.62771471360743,3.3778024,163.466135510318,911.96190786774,7.147946,62.1274,0.1956,5690.0,122.747,4.48062,0.0772114,0.956941,0.0464397,,,1.01,0.130027,22,2020-04-15,2020-04-15,2022-12-14 12:09:24,low SNR; possible instrument or systematic,1799,1,False,False,True -17993892,1800.01,,5,5,5,5,5,5,5,51.5,143.5,103.53,0,0,2,KP,KP,11.1065,0.007,,1,qlp-s48-tois,SPOC,11:25:05.98,41:01:40.87,-1.088,0.047,13.243,0.061,2459632.338336,0.0005015,4.1244833,4.4e-06,3.567,0.074,10.462458,0.001354,9590.0,1.24726,12.4249,0.670575,459.542,1289.0,131.0,277.278,3.1795,5634.0,125.032,4.24009,0.0810481,1.26,0.07,0.04,0.08,1.0,0.123995,"22,48",2020-04-15,2022-07-07,2022-12-14 12:09:24,HAT-P-21 b,1800,1,False,False,True -119584412,1801.01,,2,4,4,2,4,4,4,2.6,65.7,4.56,4,9,4,PC,PC,9.85623,0.007,,1,qlp-s49-ffi,SPOC,11:42:18.14,23:01:37.32,-205.015,0.169,41.426,0.395,2459648.619735,0.0029315,10.6439385,6.87e-05,2.713,0.385,1.347148,0.0024,1240.0,2.21031,1.98891,0.107449,10.7276,504.0,12.0,30.6796,0.1677,3815.0,157.0,4.69775,0.00975382,0.55,0.02,,,0.541272,0.0204295,"22,49",2020-04-15,2022-05-19,2022-12-14 12:09:24,period updated to ~10.64 days with qlp-s49-ffi,1801,1,False,False,True -138762614,1802.01,,2,4,2,2,4,4,4,1.3,39.3,6.85,5,3,4,PC,PC,11.1341,0.007,,1,spoc,SPOC,10:57:01.28,24:52:56.42,68.482,0.118,-20.501,0.208,2458904.154502,0.004145894,16.7961107288908,0.005796182,3.49893024815855,0.6141709,1.973789,0.220322,1816.27559846148,202.90366,2.50664566685147,1.018664,5.92040024381876,397.839148341534,8.492437,60.6931,0.2882,3859.0,157.0,4.66612,0.0103418,0.582436,0.0172029,,,0.573516,0.0202233,22,2020-04-15,2020-04-15,2022-12-14 12:09:24,2 transits; second transit is ramp-like; possibly instrument noise or systematic,1802,1,False,False,True -144401492,1803.01,,1,4,1,1,4,4,4,4.6,57.7,16.56,19,3,3,PC,PC,11.1476,0.006,,1,qlp-s49-tois,SPOC,11:52:11.07,35:10:18.48,-86.445,0.071,3.089,0.058,2459659.055645,0.0024665,12.8858629,6.25e-05,2.098,0.669,3.447251,0.013636,3170.0,12.5594,4.21693,0.450434,18.3406,576.0,18.0,119.24,0.9435,4868.61,159.921,4.6604,0.10984,0.69,0.06,0.114053,0.0126136,0.793,0.0971784,"22,49",2020-04-15,2022-08-16,2022-12-14 12:09:24,likely multi; additional transit events at 1917 and 1924,1803,1,True,False,True -144401492,1803.02,,1,4,1,1,4,4,4,4.5,52.1,9.21,19,3,3,PC,PC,11.1476,0.006,,2,qlp-s49-tois,SPOC,11:52:11.07,35:10:18.48,-86.445,0.071,3.089,0.058,2459659.815411,0.0035607,6.2932111,3.97e-05,2.188,0.432,1.966963,0.003808,1810.0,3.50736,2.98555,0.292688,58.2524,769.0,13.0,119.24,0.9435,4868.61,159.921,4.6604,0.10984,0.69,0.06,0.114053,0.0126136,0.793,0.0971784,"22,49",2020-04-15,2022-08-16,2022-12-14 12:09:24,potential multi,1803,2,True,False,True -148679712,1804.01,,2,4,2,2,4,4,4,4.3,41.7,7.94,2,3,5,PC,PC,10.1345,0.006,,1,qlp-s48-tois,SPOC,11:28:41.07,46:28:49.67,-4.622,0.036,-29.055,0.039,2459635.289375,0.0054511,4.924658,5.37e-05,2.752,0.473,0.662501,0.001889,610.0,1.73942,2.73374,0.195878,218.972,1071.0,11.0,139.11,0.6095,5428.81,99.5484,4.3631,0.072184,1.06,0.05,0.210717,0.0126478,0.946,0.116163,"22,48",2020-04-15,2022-06-29,2022-12-14 12:09:24,low SNR,1804,1,False,False,True -165763244,1805.01,,2,4,2,2,4,4,4,1.2,27.7,8.55,2,3,3,PC,PC,10.7939,0.006,,1,qlp-s51-tois,SPOC,15:28:33.72,55:11:07.15,54.161,0.037,-22.81,0.041,2459671.142071,0.0049215,24.0509437,0.0002156,3.25,0.455,1.118885,0.002285,1030.0,2.10494,2.87107,0.201794,10.5047,501.0,10.0,142.849,0.433,5232.43,112.583,4.52455,0.079683,0.86,0.04,-0.239,0.02,0.893,0.115042,"16,22,23,24,49,50,51",2020-04-15,2022-09-02,2022-12-14 12:09:24,,1805,1,False,False,True -166648874,1806.01,,1,4,1,2,4,4,4,0.9,48.1,8.47,16,0,5,PC,PC,12.6196,0.008,,1,spoc-s14-s50-b0A-PC,SPOC,11:04:28.36,30:27:30.87,-163.272,0.105,-40.435,0.131,2458909.543414,0.0022633546,15.1512050879928,0.00013577625,2.34381656278598,0.45733482,5.393528,0.594448,4955.30429195561,547.35736,2.84117990121045,0.83051205,2.1462128965214,308.700938363927,8.752779,55.5211,0.1999,3272.0,157.0,4.82521,0.0034367,0.401574999094009,0.0119287,,,0.393258,0.0202403,"22,48",2020-04-15,2023-03-17,2023-03-24 12:12:10,potential multi,1806,1,True,False,True -166648874,1806.02,,1,4,1,1,4,4,4,2.1,57.0,8.1,16,0,5,PC,PC,12.6196,0.008,,2,spoc-s14-s50-b0A-PC,SPOC,11:04:28.36,30:27:30.87,-163.272,0.105,-40.435,0.131,2458905.228249,0.0015391626,8.19607576215462,2.9190258e-05,1.48832265858591,0.42788842,5.114482,0.521668,4699.53444717405,480.3587,2.76636579248788,1.1999038,4.86923890915487,378.865465854749,7.978372,55.5211,0.1999,3272.0,157.0,4.82521,0.0034367,0.401574999094009,0.0119287,,,0.393258,0.0202403,"22,48",2022-11-16,2022-11-15,2022-12-14 12:09:24,potential multi,1806,2,True,False,True -166648874,1806.03,,2,4,2,2,4,4,4,14.4,84.1,4.07,16,0,5,PC,PC,12.6196,0.008,,3,spoc-s14-s50-b0A-PC,SPOC,11:04:28.36,30:27:30.87,-163.272,0.105,-40.435,0.131,2458899.698659,0.0010972138,0.501903071830712,1.8703056e-05,0.947042252878761,0.17262673,1.669591,0.22958,1536.56831347408,211.42867,1.84518623815888,0.24172047,201.732512596908,961.1999156055,7.1534896,55.5211,0.1999,3272.0,157.0,4.82521,0.0034367,0.401574999094009,0.0119287,,,0.393258,0.0202403,"22,48",2023-03-23,2023-03-23,2023-03-26 12:03:20,low SNR,1806,3,True,False,True -180695581,1807.01,,1,5,5,1,4,4,4,14.7,120.1,3.0,7,14,6,CP,CP,9.0363,0.006,,1,qlp-s49-tois,SPOC,13:25:07.83,38:55:20.52,-124.713,0.027,-27.377,0.039,2459664.070547,0.0015863,0.54937,1.5e-06,0.883,0.242,0.401797,0.001766,370.0,1.62646,1.53904,0.139876,1407.22,1706.0,17.0,42.5775,0.0621,4612.99,99.6652,4.56172,0.0838448,0.74,0.05,-0.0713156,0.0324292,0.73,0.085975,"22,23,49",2020-04-15,2022-07-19,2022-12-14 12:09:24,TOI-1807 b,1807,1,False,False,True -307734817,1808.01,,5,5,5,5,5,5,5,34.5,94.2,94.96,6,1,2,O,FP,11.6735,0.007,,1,spoc-s22-b02,SPOC,11:26:23.29,28:03:23.53,-17.679,0.099,-3.216,0.102,2458900.910995,0.001503657,2.1075001246516,0.00020323838,1.90934832052075,0.094434164,4.630945,0.20269,4256.17430078416,186.66696,11.7706127684733,0.88204616,3058.10882974846,1896.63160711381,19.646215,556.917,23.653,6351.66,143.862,4.13453,0.103412,1.59204,0.108061,-0.484283,0.0106545,1.26,0.198172,22,2020-04-15,2023-04-06,2023-04-06 00:00:00,centroid offset; TIC 307734818 is the true source; retired as TFOP FP/NEB,1808,1,False,False,True -347329162,1809.01,,5,5,5,5,5,5,5,45.4,139.9,105.3,0,0,2,KP,KP,11.5384,0.007,,1,qlp-s49-tois,SPOC,12:13:27.85,23:03:20.47,-36.695,0.077,2.792,0.051,2459659.915254,0.0006755,4.6170519,5.3e-06,3.555,0.226,13.338437,0.003108,12210.0,2.86261,12.4681,0.680313,447.82,1281.0,109.0,321.084,5.314,5797.0,121.229,4.36164,0.081426,1.11,0.06,0.43,0.04,1.04,0.13252,"22,49",2020-04-15,2022-07-13,2022-12-14 12:09:24,WASP-56 b,1809,1,False,False,True -373693175,1810.01,,5,5,5,5,5,5,5,145.9,132.3,317.0,0,0,3,KP,KP,11.6281,0.006,,1,qlp-s49-tois,SPOC,12:33:03.89,44:54:55.32,-11.641,0.028,8.065,0.034,2459662.70189,0.0001845,1.3273482,6e-07,2.083,0.065,20.66148,0.000487,18850.0,0.448136,15.4709,0.750927,1378.13,1697.0,248.0,294.419,2.252,5555.05,115.611,4.36832,0.075107,1.07,0.05,0.269388,0.01239,0.98,0.122548,"22,49",2020-04-15,2022-07-13,2022-12-14 12:09:24,HAT-P-36 b,1810,1,False,False,True -376524552,1811.01,,3,4,4,3,4,4,4,92.6,260.2,94.7,15,13,5,CP,CP,11.1237,0.006,,1,qlp-s49-tois,SPOC,12:35:41.37,27:12:51.76,-45.874,0.058,-10.766,0.035,2459661.050292,0.0002362,3.7130701,1.8e-06,1.654,0.046,21.502818,0.003586,19610.0,3.30322,11.7215,0.817683,55.9743,762.0,170.0,128.23,0.7075,4719.0,120.376,4.49738,0.0908426,0.81,0.06,,,0.756,0.0884888,"22,49",2020-04-15,2022-07-13,2022-12-14 12:09:24,TOI 1811 b,1811,1,False,False,True -207425167,1812.01,,1,4,1,3,4,4,4,,,39.66,39,2,5,PC,PC,11.6463,0.006,,1,spoc,SPOC,16:10:59.49,58:17:40.39,20.507,0.054,0.114,0.053,2458924.593048,0.0016048104,0.0,0.0,7.30275666282744,0.18674825,10.05681,0.281998,9219.89784287343,259.696,7.04308117314034,0.56731,25.1551128152483,571.184372762258,43.356834,172.534,0.9345,5059.36,146.23,4.62542,0.0991452,0.738692,0.0529272,0.00263019,0.0243261,0.84,0.103926,22,2020-04-17,2020-09-14,2022-12-14 12:09:24,Single transit; potential multi,1812,1,True,True,True -207425167,1812.02,,2,4,2,2,4,4,4,1.6,27.0,7.95,39,2,5,PC,PC,11.6463,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,16:10:59.49,58:17:40.39,20.507,0.054,0.114,0.053,2458902.48287,0.0021693972,11.6098181580488,4.180062e-05,3.56237047285699,0.43425682,1.511941,0.105756,1391.57954554085,97.39971,2.73714605795621,1.1333301,35.6962064291475,623.412154976365,13.273963,172.534,0.9345,5059.36,146.23,4.62542,0.0991452,0.738691985607147,0.0529272,0.00263019,0.0243261,0.84,0.103926,"22,23,25,49,50,51,52,56,58",2020-07-16,2023-05-18,2023-06-16 12:14:51,.02 in multiplanet system,1812,2,True,False,True -207425167,1812.03,,1,4,1,3,4,4,4,1.1,34.4,22.85,39,2,5,PC,PC,11.6463,0.006,,3,spoc-s14-s55-b0A-PC,QLP,16:10:59.49,58:17:40.39,20.507,0.054,0.114,0.053,2458909.510365,0.002370217,48.33202231625,0.0040631425,5.37369038021716,0.2599591,5.202318,0.252274,4780.0505500921,232.32579,5.09239593541383,0.5702999,2.11528717930571,307.582826737808,18.081045,172.534,0.9345,5059.36,146.23,4.62542,0.0991452,0.738691985607147,0.0529272,0.00263019,0.0243261,0.84,0.103926,"22,23,25,49,50,51,52",2020-04-17,2023-03-14,2023-03-24 12:12:10,Period updated to ~48.3 days with spoc-s14-s55-b0A multisector; TOI 1812.03; alerted as single but now have a period,1812,3,True,False,True -377290815,1813.01,,5,5,5,5,5,5,5,6.4,41.7,9.03,2,0,0,PC,FP,9.91892,0.006,,1,qlp,QLP,19:06:22.32,56:37:45.52,-13.704,0.045,-41.7,0.046,2458684.12719,0.00267,0.798,2e-05,0.679,0.27,0.206309,0.00544,190.0,5.01007,2.95586,0.469302,898.537,1525.0,10.0,285.002,1.661,6194.2,220.2,4.0,0.08,1.84,0.08,,,1.239,0.188028,"14,15,16,17,22",2020-04-17,2020-04-17,2022-12-14 12:09:24,V-shaped; low SNR,1813,1,False,False,True -160440924,1814.01,,3,4,3,3,3,4,4,4.5,17.0,23.22,1,1,3,PC,PC,10.8247,0.007,,1,spoc-s14-s60-b0A-PC,QLP,15:47:16.05,77:13:57.51,5.111,0.043,-20.299,0.042,2459653.488784,0.0098931,6.36846268332472,7.1050425e-05,6.34801494075779,0.4355346,0.500912,0.030803,461.250669068446,28.370127,5.14079014779244,1.8813915,216.061933926957,977.832154645405,14.952918,362.522,3.2405,4971.0,122.0,,,2.38949990272522,,,,,,"14,15,19,20,21,22,25,26,40,41,47,48,49,52,53,59,60",2020-04-17,2023-05-26,2023-06-16 12:14:51,,1814,1,False,False,True -233720539,1815.01,,3,5,5,3,4,4,4,76.7,102.1,317.0,5,2,3,PC,APC,10.8946,0.007,,1,qlp-s52-tois,QLP,18:25:31.03,63:29:17.17,1.579,0.052,0.632,0.051,2459854.632569,0.0007384068,2.555332,9e-07,5.14,0.018,7.134965,3.9e-05,6550.0,0.0361902,20.5128,0.940547,4328.46,2259.0,194.0,617.233,10.1765,6454.0,121.9,3.77,0.08,2.48,0.11,,,1.31,0.197182,"14,15,16,17,18,19,20,22,23,24,25,26,40,47,48,49,50,52,57",2020-04-17,2023-01-30,2023-01-31 00:00:00,~1000 ppm secondary transit; strong phase modulations; TFOP APC/VPC+/SB1,1815,1,False,False,True -237108272,1816.01,,5,5,5,5,5,5,5,1.5,28.6,6.49,0,2,4,IS,FA,9.303001,0.006,,1,qlp,QLP,17:08:33.47,78:35:13.4,10.3,1.3,14.6,1.3,2458688.28857,0.0299,22.7873,0.00345,5.334,1.018,0.445243,0.001599,410.0,1.47243,2.42982,,57.1127,,9.0,117.652,,5845.0,,,,1.16,,,,,,22,2020-04-17,2021-03-22,2022-12-14 12:09:24,FA caused by momentum dump and gap,1816,1,False,False,True -285094173,1817.01,,3,4,4,3,4,4,4,6.0,41.2,29.77,7,2,6,PC,PC,10.4966,0.007,,1,qlp-s49-ffi,QLP,12:26:19.65,46:28:14.97,-29.951,0.056,0.694,0.066,2459658.623168,0.0034829,13.398256,4.47e-05,1.909,0.314,1.586333,0.004637,1460.0,4.2707,5.93967,0.444688,87.625,852.0,12.0,276.417,3.6885,6131.3,131.5,4.18,0.09,1.45,0.07,-0.0524025,0.00863091,1.16,0.1675,"22,49",2020-04-17,2022-05-19,2023-04-30 00:00:00,period updated to maximum possible period; period could be half (~6.7 days) due to data gap; v-shaped,1817,1,False,False,True -330799746,1818.01,,3,4,3,3,4,4,4,19.2,69.9,67.81,3,11,8,PC,PC,10.9901,0.007,,1,qlp-s49-tois,QLP,12:52:31.48,34:54:03.7,23.706,0.052,-15.102,0.044,2459656.365708,0.0013928,5.5115037,1.35e-05,4.423,0.138,3.534389,0.000526,3250.0,0.484376,9.63687,0.431412,642.257,1402.0,31.0,401.96,6.7755,6236.9,103.1,4.09,0.08,1.63,0.07,-0.161623,0.00683763,1.21,0.165124,"22,49",2020-04-17,2022-07-13,2022-12-14 12:09:24,2 stars in pixel,1818,1,False,False,True -341815767,1819.01,,5,5,5,5,5,5,5,2.2,29.0,3.62,1,1,4,PC,FA,8.98018,0.006,,1,qlp,QLP,17:50:04.85,54:38:10.06,24.675,0.046,-11.924,0.038,2458685.5559,0.00685,3.09374,0.00014,2.451,0.347,0.162873,0.000549,150.0,0.505291,1.72207,0.136516,936.396,1541.0,9.0,160.295,0.51,6610.0,128.1,4.24,0.09,1.47,0.06,,,1.382,0.230537,22,2020-04-17,2020-04-17,2022-12-14 12:09:24,,1819,1,False,False,True -393831507,1820.01,,3,5,5,3,4,4,4,46.6,138.1,90.33,3,20,6,PC,CP,10.5268,0.006,,1,qlp-s49-tois,QLP,12:30:44.81,27:27:07.21,50.543,0.081,-33.934,0.082,2459661.328325,0.0006569,4.860673,6.4e-06,2.632,0.36,6.68697,0.00342,6140.0,3.15035,11.4272,0.5893,292.245,1151.0,77.0,248.504,3.597,5778.2,106.3,4.16,0.07,1.4,0.06,0.0180147,0.0247545,1.036,0.124896,"22,49",2020-04-17,2022-07-13,2023-03-03 12:02:56,,1820,1,False,False,True -82308728,1821.01,,5,5,5,5,5,5,5,13.0,206.2,6.52,0,6,2,KP,KP,6.9859,0.006,,1,qlp-s49-tois,QLP,11:14:33.04,25:42:38.15,-107.534,0.091,48.662,0.09,2459664.085255,0.0010928,9.4893231,3.57e-05,2.757,0.194,1.021072,0.00065,940.0,0.598519,2.4304,0.147205,41.924,708.0,26.0,21.5618,0.02535,5120.0,112.4,4.6,0.08,0.77,0.04,-0.24,0.1,0.86,0.105481,"22,49",2020-04-17,2022-08-16,2022-12-14 12:09:24,HD 97658 b,1821,1,False,False,True -9392421,1822.01,,3,5,5,3,4,4,4,36.8,44.4,317.0,3,8,5,PC,APC,10.7184,0.007,,1,qlp-s48-tois,QLP,11:11:06.68,39:31:36.02,4.76,0.061,-22.441,0.066,2459623.129601,0.0008842,9.6136615,1.68e-05,5.292,0.147,7.626879,0.000884,7000.0,0.814098,14.5701,0.8925,192.623,1037.0,67.0,312.52,5.7965,5637.7,139.1,3.97,0.09,1.71,0.1,-0.127,0.014,1.0,0.123367,"22,48",2020-04-17,2022-07-12,2022-12-14 12:09:24,TFOP APC/VPC+/SB1/SB2,1822,1,False,False,True -142381532,1823.01,,1,4,1,3,4,4,4,8.5,136.1,49.86,12,12,5,PC,PC,9.7722,0.006,,1,qlp-s49-ffi,QLP,13:04:52.73,63:45:11.74,-65.327,0.045,-123.081,0.033,2459646.704994,0.0006989,38.8135644,4.2e-05,5.818,0.224,10.440533,0.001122,9570.0,1.03376,8.03465,0.539436,7.40369,459.0,154.0,71.6456,0.11495,4760.0,117.2,4.49,0.09,0.82,0.05,,,0.77,0.0892913,"14,15,21,22,41,48,49",2020-04-17,2022-05-19,2022-12-14 12:09:24,period updated to ~38.8 days with qlp-s49,1823,1,False,False,True -142387023,1824.01,TIC 142387023.01,1,4,1,1,4,4,4,2.3,55.6,6.89,1,18,6,PC,PC,8.9754,0.006,,1,qlp-s49-ffi,SPOC/QLP,13:10:55.49,61:44:41.46,4.548,0.049,16.362,0.044,2459632.229972,0.0016562,22.8085984,8.37e-05,3.914,0.238,0.945002,0.000316,870.0,0.291074,2.50173,0.156426,15.1422,549.0,31.0,59.4314,0.1297,5182.0,127.3,4.55,0.08,0.82,0.05,,,0.88,0.111687,"15,21,22,41,48,49",2020-04-17,2022-05-19,2022-12-14 12:09:24,Three stars within pixel (TIC 142387024 - Tmag=15.3. TIC 142387022 - Tmag=13.1). L1 candidate; possibly active star,1824,1,False,False,True -229750058,1825.01,TIC 229750058.01,3,4,4,3,4,4,4,21.5,96.2,81.45,5,2,3,PC,PC,11.7204,0.006,,1,qlp-s52-tois,CTOI,18:42:43,66:18:11.2,-3.214,0.05,45.349,0.049,2459752.123396,0.0003869,10.1824299,5.8e-06,2.788,0.227,11.581209,0.005924,10610.0,5.4561,10.7723,0.593857,57.9125,768.0,171.0,285.509,1.699,5450.0,99.5,4.42,0.08,1.01,0.05,,,0.97,0.118718,"14,15,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55",2020-05-07,2023-03-14,2023-03-15 00:00:00,CTOI from Ethan Kruse; 2 stars in pixel,1825,1,False,False,True -229400092,1826.01,TIC 229400092.01,4,5,5,5,4,5,4,58.6,163.4,112.14,1,1,0,CP,CP,11.2086,0.006,,1,spoc-s14-s60-b0A-CP,CTOI,19:29:50.12,62:31:45.08,20.957,0.046,-6.056,0.043,2459761.726499,0.0001856,4.14198051011935,8.5777873e-07,2.38096543806476,0.011215462,11.055627,0.04289,10130.9411803801,39.502014,12.9812632210291,0.6613404,462.852991891201,1182.98848800801,278.4561,265.471,1.367,5418.3,109.0,4.31,0.08,1.15613996982574,0.058794,,,0.988,0.129799,"14,15,16,17,18,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,57,58,59,60",2020-05-07,2023-06-13,2023-06-16 12:14:51,CTOI from Ethan Kruse; HAT-P-59 b,1826,1,False,False,True -390651552,1827.01,,1,5,5,1,4,4,4,22.4,45.1,2.31,11,2,8,CP,CP,8.8223,0.007,,1,spoc-s14-s50-b0A-CP,SPOC,12:47:55.57,09:44:57.91,-1008.6,0.138,-459.8,0.079,2459691.149337,0.0012488,1.46711903473069,2.4535964e-06,1.00693130800535,0.10849214,1.684884,0.050243,1550.63236799172,46.27417,1.32413939669125,0.33019075,39.4922140395627,639.363176812534,34.38628,8.07426,0.004095,3297.0,157.0,4.89,,0.331472009420395,0.00983149,,,0.312792,0.0201625,"23,50",2020-05-07,2022-11-09,2022-12-14 12:09:24,,1827,1,False,False,True -232982938,1828.01,TIC 232982938.01,3,4,3,3,4,4,4,10.5,46.5,50.41,5,6,6,PC,PC,11.1315,0.007,,1,qlp-s52-tois,CTOI,16:06:14.94,69:37:18.49,-13.263,0.033,23.836,0.033,2459918.438376,0.0027238235,9.0941239,1.37e-05,4.389,0.15,2.793934,0.000205,2570.0,0.188625,8.09838,0.410657,180.272,1020.0,71.0,369.986,2.467,5759.8,165.5,4.07,0.08,1.56,0.08,,,1.04,0.127661,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,59",2020-05-07,2023-03-22,2023-03-24 12:12:10,CTOI from Ethan Kruse,1828,1,False,False,True -235905185,1829.01,,3,4,4,3,1,4,4,37.2,52.7,317.0,8,0,0,PC,PC,12.8784,0.008,,1,qlp-s52-tois,SPOC,19:23:30.58,78:45:15.18,-1.13,0.019,4.933,0.02,2459775.884516,0.0012824599,6.2895835,3.4e-06,3.044,0.054,26.709238,0.001907,24300.0,1.75643,15.9901,0.838556,124.221,930.0,167.0,479.529,2.4965,5565.0,123.891,4.41544,0.0754182,1.02,0.05,,,0.98,0.124959,"14,17,18,19,20,21,23,24,25,26,40,41,47,50,51,52,53,54",2020-05-07,2022-10-05,2022-12-14 12:09:24,weak secondary consistent with planetary nature; multiple stars in pixel,1829,1,False,False,True -20182165,1830.01,,5,5,5,5,5,5,5,395.8,797.8,317.0,1,19,6,EB,FP,7.0166,0.006,,1,qlp-s50-ffi,SPOC,15:04:43.5,38:36:19.35,-15.53,0.039,34.152,0.04,2459680.305818,0.0011899,9.7815625,2.01e-05,3.736,0.316,21.979127,0.008155,20040.0,7.51099,18.205,0.838453,225.192,1079.0,143.0,50.3098,0.0622,6327.16,117.066,4.37297,0.0817756,1.21,0.05,,,1.25,0.194689,"23,24,50",2020-05-07,2022-05-31,2022-12-14 12:09:24,TFOP FP; retired as SB1,1830,1,False,False,True -27194429,1831.01,,3,5,5,3,4,4,4,35.7,170.8,17.85,3,4,8,PC,APC,7.43229,0.006,,1,spoc-s50-b0A,SPOC,13:21:48.66,17:45:55.57,-23.385,0.099,-11.356,0.074,2459665.464633,0.0006518526,0.555324438209709,2.566868e-05,0.833665819853507,0.14554057,0.384098,0.023132,353.704517509702,21.305454,4.40338394739892,2.8197043,44853.3980885218,3711.66342414026,14.107591,128.273,0.7805,6864.0,129.967,3.89932,0.0876954,2.26817011833191,0.0954674,,,1.488,0.259169,"23,50",2020-05-07,2022-08-11,2022-12-14 12:09:24,large star; ~7 sigma odd even; likely EB,1831,1,False,False,True -307956397,1832.01,,3,4,3,3,4,4,4,16.7,67.5,45.22,7,0,4,PC,PC,12.9233,0.006,,1,qlp-s52-tois,SPOC,17:06:38.94,63:46:43.09,-17.393,0.03,13.12,0.035,2459765.040315,0.0006787,4.1508569,4.1e-06,2.19,0.095,9.487235,0.002337,8700.0,2.15203,7.61178,0.587876,81.7443,837.0,73.0,270.313,1.06,4652.0,127.88,4.52358,0.0942724,0.78,0.06,,,0.74,0.0838211,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,51,52",2020-05-07,2022-10-11,2022-12-14 12:09:24,two stars in pixel,1832,1,False,False,True -61098812,1833.01,,5,5,5,5,5,5,5,113.7,135.0,317.0,0,0,1,KP,KP,9.87229,0.006,,1,spoc-s14-s50-b0A,SPOC,13:41:49.02,-00:07:41.42,-10.892,0.089,-24.685,0.072,2459684.730994,0.0003916,3.69359967416772,1.602009e-06,4.46618496292979,0.021820154,9.356284,0.047813,8580.43189049065,44.036106,17.0086591483236,0.9107161,1639.1071763459,1622.82461887781,191.73415,251.303,4.4025,6097.47,137.577,3.99566,0.0856944,1.78076004981995,0.0949749,-0.118922,0.00863915,1.145,0.152424,"23,46,50",2020-05-07,2022-12-12,2022-12-16 12:08:26,WASP-54 b,1833,1,False,False,True -71612483,1834.01,,5,5,5,5,4,5,5,198.3,181.2,317.0,2,0,4,PC,APC,11.4951,0.006,,1,qlp-s50-tois,SPOC,13:29:10.62,31:24:06.9,-82.096,0.038,-7.129,0.032,2459689.763585,0.0002362,1.2164402,6e-07,1.847,0.065,16.905559,0.19254,15450.0,177.32,16.0243,1.7036,3477.13,2139.0,167.0,265.941,2.521,5610.0,121.632,4.42006,0.0763342,1.02,0.05,,,0.993,0.121877,"23,49,50",2020-05-07,2022-12-12,2022-12-16 12:08:26,V-shaped; slight odd-even,1834,1,False,False,True -347332255,1835.01,,2,5,5,2,4,4,4,7.7,118.2,3.99,2,8,5,PC,PC,7.6621,0.006,,1,spoc,SPOC,12:39:21.41,20:01:38.42,-81.959,0.083,-104.589,0.044,2458932.763635,0.0022330706,5.64195983597199,0.0011469718,3.08715015408809,0.42569625,0.590626,0.079082,543.838847968583,72.83464,1.82458442534573,1.2838765,119.417118083178,843.114184840056,8.795427,32.1585,0.05705,5297.0,107.552,4.61016,0.0776149,0.782479,0.0380352,,,0.91,0.112429,23,2020-05-07,2020-05-08,2023-04-22 00:00:00,period may be different; the transit at TJD 1932.8 and 1938.4 appears to be similar in depth and duration; the transit at TJD 1944.0 is coincident with a momentum dump; and can't be recovered from the data. There are three more possible single events near 1937.9 1947.5 and 1949.0. The 1949.0 event (in report for candidate .02) has the largest depth.,1835,1,True,False,True -347332255,1835.02,,2,5,5,2,4,4,4,,,7.0,2,8,5,PC,PC,7.6621,0.006,,2,spoc,SPOC,12:39:21.41,20:01:38.42,-81.959,0.083,-104.589,0.044,2458937.873023,0.002161166,0.0,0.0,3.945449758252,0.1838227,0.962914,0.091943,886.483823714136,84.678825,2.53989855446159,0.25255316,48.4006233708921,672.717132626937,7.8712387,32.1585,0.05705,5297.0,107.552,4.61016,0.0776149,0.782479,0.0380352,,,0.91,0.112429,23,2020-05-07,2020-05-08,2022-12-14 12:09:24,potential multi; other dips in the light curve; likely single transit,1835,2,True,True,True -207468071,1836.01,,1,4,1,3,4,4,4,12.9,79.3,51.2,6,13,8,PC,PC,9.29416,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,16:23:37.9,54:41:24.28,-38.232,0.045,73.206,0.049,2459646.492036,0.0015822,20.3808681388573,2.8873936e-05,6.65663357361778,0.072160356,2.557099,0.033051,2352.40402215434,30.440262,8.1853156456483,0.3638836,153.517596727181,897.758013379311,78.47192,191.649,0.9245,6351.0,118.9,4.12,0.08,1.61987996101379,0.0676734,,,1.261,0.183655,"16,17,23,24,25,49,50,51,52,56",2020-05-07,2023-05-25,2023-06-16 12:14:51,,1836,1,True,False,True -207468071,1836.02,,1,4,1,1,4,4,4,5.6,45.5,7.58,6,13,8,PC,PC,9.29416,0.006,,2,spoc-s14-s60-b0A-PC,QLP,16:23:37.9,54:41:24.28,-38.232,0.045,73.206,0.049,2459739.67016,0.0030935,1.77275327465351,8.148284e-06,1.53876791567003,0.21268731,0.254421,0.023372,234.303198969282,21.526093,2.66148466945585,1.009254,3983.43137965566,2026.20827475376,11.5287285,191.649,0.9245,6351.0,118.9,4.12,0.08,1.61987996101379,0.0676734,,,1.261,0.183655,"16,17,23,24,25,49,50,51,52,56",2022-07-28,2023-05-22,2023-06-16 12:14:51,period might be half,1836,2,True,False,True -144441148,1837.01,,3,5,5,3,4,4,4,28.7,112.5,47.41,2,2,8,PC,APC,8.70842,0.006,,1,spoc,SPOC,13:51:37.42,33:29:32.6,-50.001,0.165,-10.001,0.169,2458931.250769,0.0018116796,5.81822387671979,0.0006761738,1.19436576366652,0.13163379,1.161893,0.103976,1069.57099162997,95.76095,7.8231030569925,0.6971154,1053.4797409595,1453.03573987467,10.557839,159.375,4.1425,5961.28,133.557,3.87842,0.0850107,1.99038,0.111754,0.134111,0.00866906,1.092,0.141875,23,2020-05-07,2020-05-07,2022-12-14 12:09:24,Centroid offset at 3sigma; but consistent with a bright star.,1837,1,False,False,True -162689341,1838.01,,5,5,5,5,5,5,5,50.8,120.4,131.13,0,0,0,KP,KP,12.423,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,16:26:46.09,51:02:28.08,-5.666,0.038,11.996,0.045,2459717.232201,0.0006491,2.17470623850458,1.8346157e-06,2.84611104593092,0.027406367,12.199421,0.147063,11173.1929564224,135.44063,14.2318709749508,0.76472163,1622.25282542808,1618.63670474268,96.36039,575.889,6.456,6046.76,142.639,4.28918,0.0861511,1.25618994235992,0.0667387,0.062,0.028,1.12,0.1554,"23,24,25,50,51",2020-05-07,2023-03-15,2023-03-24 12:12:10,WASP-92 b,1838,1,False,False,True -381714186,1839.01,,2,5,5,2,4,4,4,11.3,81.5,7.7,12,19,5,PC,APC,10.2173,0.006,,1,spoc-s14-s50-b0A-APC,SPOC,13:07:19.95,05:51:07.36,-12.937,0.091,-61.362,0.054,2459690.241643,0.0025679,1.42380665982722,6.709638e-06,1.50095845538354,0.13449283,0.783148,0.067659,721.045857132951,62.314243,2.6855348175608,0.27595383,921.846662973458,1405.34975257206,13.531481,116.086,0.565,5382.69,146.214,4.55152,0.0926726,0.848098993301392,0.0548492,0.252,0.022,0.934,0.124596,"23,46,50",2020-05-07,2022-12-12,2022-12-16 12:08:26,potential L1 planet; v-shaped,1839,1,False,False,True -165987272,1840.01,,5,5,5,5,5,5,5,56.4,73.1,317.0,0,0,0,KP,KP,9.8469,0.007,,1,qlp-s49-ffi,SPOC,13:03:55.64,30:38:24.52,-5.106,0.052,15.64,0.046,2459658.642419,0.0006124,7.8456075,9.6e-06,5.892,0.521,7.648747,0.001508,7020.0,1.38932,14.2866,0.615803,718.188,1442.0,131.0,240.726,1.971,6266.0,104.702,4.08874,0.0783162,1.65,0.07,-0.16,0.1,1.22,0.181405,"23,49",2020-05-07,2022-05-19,2022-12-14 12:09:24,KELT-6 b,1840,1,False,False,True -168699373,1841.01,,5,5,5,5,5,5,5,56.2,65.0,317.0,0,0,0,KP,KP,12.4474,0.007,,1,qlp-s50-tois,SPOC,14:12:34.53,47:00:53.22,-29.681,0.025,11.079,0.028,2459688.443452,0.0005032,4.3011975,3.6e-06,2.982,0.064,24.208372,0.002808,22050.0,2.5858,15.3684,1.05306,185.119,1027.0,139.0,347.85,2.2125,5115.16,138.182,4.34437,0.0932394,1.03,0.07,0.367285,0.0096851,0.86,0.109367,"16,23,49,50",2020-05-07,2022-09-07,2022-12-14 12:09:24,HAT-P-44 b,1841,1,False,False,True -404505029,1842.01,,3,5,5,3,4,4,4,39.8,123.7,105.1,5,16,9,CP,CP,9.26733,0.006,,1,qlp-s50-ffi,SPOC,13:27:51.04,09:01:50.32,-23.976,0.092,-7.518,0.054,2459680.103432,0.0009588,9.5739531,2e-05,4.172,0.479,3.447251,0.000545,3170.0,0.502035,12.4956,0.586497,354.639,1208.0,58.0,223.465,2.238,6115.0,119.063,3.87646,0.0796686,2.05,0.09,,,1.153,0.152433,"23,50",2020-05-07,2022-05-31,2022-12-14 12:09:24,TOI-1842 b; confirmed in Wittenmyer et al. 2021,1842,1,False,False,True -258871793,1843.01,TIC 258871793.01,5,5,5,5,5,5,5,15.8,56.2,108.05,2,3,0,PC,FP,12.6445,0.007,,1,spoc,CTOI,19:11:34.75,66:19:41.03,0.744,0.032,-14.996,0.029,2458931.120722,0.001767002,9.14691215941384,0.00029544858,4.61849703613773,0.12056861,9.564011,0.223696,8770.09611823979,206.0101,12.7002633998,0.65836734,235.689213171668,999.320222983101,33.211414,627.627,6.267,5954.0,124.6,4.26,0.08,1.2752,0.0605402,,,1.09,0.139309,"23,24,25,26",2020-05-07,2020-09-11,2022-12-14 12:09:24,check nearby stars; ephemeris match to tic258871779; CTOI from Ethan Kruse,1843,1,False,False,True -198108326,1844.01,,5,5,5,5,5,5,5,84.2,245.4,86.65,0,0,0,KP,KP,11.7551,0.006,,1,qlp-s50-tois,SPOC,13:57:33.27,43:29:35.92,-134.791,0.03,-44.294,0.035,2459685.398095,0.000189,3.2130578,1e-06,2.169,0.035,24.741407,0.000877,22530.0,0.808113,11.0975,0.77922,118.075,918.0,211.0,142.751,0.4515,4652.87,115.904,4.61265,0.0882872,0.7,0.05,-0.0631697,0.0150349,0.74,0.083107,"16,23,49,50",2020-05-07,2022-09-07,2022-12-14 12:09:24,HAT-P-12 b,1844,1,False,False,True -272758199,1845.01,TIC 272758199.01,3,4,4,3,4,4,4,41.4,110.6,117.59,8,2,4,PC,PC,12.889,0.007,,1,spoc-s14-s60-b0A-PC,CTOI,15:49:16.1,71:26:34.6,-2.766,0.022,-19.059,0.024,2459666.132177,0.0012438835,3.66100257104256,1.1971007e-06,2.60474151067902,0.020104637,20.497076,0.115127,18701.4218317459,106.03056,13.3480688499296,0.7621915,305.21172590923,1066.0315379722,183.5606,418.239,2.53,5271.0,124.2,4.44,0.08,0.943401992321014,0.0535628,,,0.9,0.111332,"14,15,16,17,19,20,21,22,23,26,40,41,47,49,50,52,53,54,56,57,60",2020-05-07,2023-05-19,2023-06-16 12:14:51,CTOI from Ethan Kruse,1845,1,False,False,True -198385543,1846.01,,2,4,4,2,4,4,4,3.2,54.9,3.86,7,2,4,PC,PC,11.8467,0.008,,1,spoc-s14-s55-b0A-PC,SPOC,17:11:49.19,54:31:40.25,-61.625,0.115,211.315,0.092,2459884.349803,0.0025567953,3.93067462792567,7.234096e-06,1.43051415609098,0.15883589,1.779022,0.09284,1637.19842694826,85.50518,1.79020057546811,0.24769609,17.7418677825478,523.443226366455,19.41492,47.2496,0.0963,3512.0,157.0,4.81618,0.00391692,0.411451995372772,0.0121252,,,0.404348,0.020175,"17,20,23,24,25,26,40,47,50,51,52,53,54,58",2020-05-07,2023-03-22,2023-03-24 12:12:10,L1 candidate; possible secondary at phase 0.3; two stars in pixel,1846,1,False,False,True -54002556,1847.01,,3,5,5,3,5,4,5,5.1,66.9,59.85,16,3,3,KP,KP,11.6235,0.006,,1,qlp,QLP,01:34:05.15,-14:25:08.94,11.168,0.099,14.047,0.049,2458390.70655,0.00158,0.0,0.0,3.585,0.586,10.70366,0.014724,9810.0,13.5611,8.72158,0.639813,33.1635,668.0,29.0,190.422,1.7605,5076.0,127.7,4.53,0.09,0.83,0.05,,,0.85,0.0989404,20,2020-05-08,2021-12-06,2022-12-14 12:09:24,Single transit of NGTS-11 b at ~1390 TBJD; TCE at ~1402 TBJD is .02,1847,1,True,True,True -54002556,1847.02,,1,4,1,1,3,4,4,5.0,46.3,23.69,16,3,3,PC,PC,11.6235,0.006,,2,qlp,SPOC,01:34:05.15,-14:25:08.94,11.168,0.099,14.047,0.049,2459130.150082,0.0075846,12.7645811,0.000144,2.132,0.432,3.262104,0.007807,3000.0,7.19069,4.21676,0.359359,15.1947,550.0,1000.0,190.422,1.7605,5076.0,127.7,4.53,0.09,0.83,0.05,,,0.85,0.0989404,"3,30",2020-11-25,2020-11-25,2022-12-14 12:09:24,second candidate to confirmed planet TOI 1847.01 (confirmed planet TOI 1847.01 (NGTS-11b),1847,2,True,False,True -219824469,1848.01,,3,4,3,3,4,4,4,20.2,74.4,56.48,0,4,5,PC,PC,10.5038,0.007,,1,qlp-s49-tois,QLP,13:37:45.6,48:15:00.44,-41.754,0.044,6.45,0.037,2459661.07431,0.0022504,5.4809161,1.97e-05,5.031,0.648,3.011662,0.001874,2770.0,1.72638,8.64837,0.48336,856.944,1507.0,21.0,296.945,2.4375,5923.0,127.2,4.05,0.08,1.62,0.08,,,1.08,0.132907,"16,22,23,49",2020-05-08,2022-07-13,2022-12-14 12:09:24,match to 219824470,1848,1,False,False,True -23740089,1849.01,,3,5,5,3,4,4,4,49.7,114.5,317.0,7,3,8,PC,APC,10.4985,0.006,,1,qlp-s49-ffi,QLP,13:52:23.92,37:44:55,-6.014,0.076,15.687,0.115,2459662.4685,0.0014365,19.7258442,3.14e-05,2.578,0.173,3.46141,1.588149,3183.0,1461.67,17.1815,4.87047,236.592,1092.0,26.0,189.09,3.143,5595.0,127.5,4.32,0.08,1.14,0.06,,,0.989,0.125371,"23,49",2020-05-08,2022-05-19,2023-03-17 12:03:18,period updated to maximum possible period (~19.73 days); period may be half (~9.8 days) due to data gap,1849,1,False,False,True -149577217,1850.01,,3,5,5,3,4,4,4,92.4,130.8,317.0,2,1,3,PC,APC,10.626,0.006,,1,qlp,QLP,13:03:02.85,21:55:23.06,-30.718,0.088,-2.633,0.061,2458931.03559,0.0011,7.39143,0.00057,1.252,0.124,6.402972,2.149006,5880.0,1977.35,16.4641,5.61306,59.8747,774.0,39.0,171.205,1.307,5224.6,99.5,4.28,0.08,1.14,0.06,0.126,0.014,0.891,0.108105,23,2020-05-08,2020-05-08,2022-12-14 12:09:24,Large odd-even; but only 3 transits available. Need SG1 confirmation.,1850,1,False,False,False -378976682,1851.01,,3,5,5,3,4,3,3,21.8,86.3,72.35,4,0,5,PC,APC,13.1369,0.007,,1,qlp-s50-tois,QLP,13:10:59.67,06:41:11.63,-64.831,0.06,-23.251,0.038,2459688.751118,0.0018641,6.0179742,1.86e-05,1.278,0.359,15.208613,0.10337,13910.0,95.2026,10.0342,,16.6492,562.0,9.0,274.942,2.642,4567.0,123.0,4.53,,0.76,,,,0.72,,"23,50",2020-05-08,2022-09-07,2022-12-14 12:09:24,V-shaped; consistent with a grazing HJ,1851,1,False,False,True -219728669,1852.01,,3,4,4,3,4,4,4,43.3,106.8,120.33,6,0,3,PC,PC,13.4891,0.007,,1,qlp-s50-tois,QLP,13:08:17.29,23:07:15.37,-20.807,0.054,-9.79,0.039,2459690.342687,0.0015457,2.3601883,5.7e-06,2.455,0.108,23.553542,0.009238,21460.0,8.50863,13.4654,,505.623,1321.0,28.0,543.277,7.983,5356.0,122.0,4.49,,0.9,,,,0.93,,"23,50",2020-05-08,2022-09-07,2022-12-14 12:09:24,,1852,1,False,False,True -73540072,1853.01,,1,4,4,1,4,4,4,16.3,85.2,14.47,4,4,4,PC,PC,11.3719,0.006,,1,qlp-s50-tois,QLP,14:05:50.24,16:59:32.53,-45.626,0.065,-12.311,0.06,2459690.743436,0.0017567,1.2436239,4.6e-06,1.211,0.206,1.945209,0.004141,1790.0,3.81382,3.89334,0.284458,435.33,1272.0,18.0,165.105,1.0,4968.8,107.5,4.5,0.08,0.84,0.05,0.205368,0.0230127,0.82,0.0991917,"23,50",2020-05-08,2022-09-07,2022-12-14 12:09:24,possible slight odd-even,1853,1,False,False,True -157225097,1854.01,,3,4,4,3,4,4,4,52.9,124.0,108.02,2,0,5,PC,PC,13.0383,0.007,,1,spoc-s50-b0A,QLP,13:47:22.9,19:45:30.43,-7.311,0.046,-37.139,0.036,2459667.101712,0.0017884171,2.52673526406798,0.0002969803,2.26543625053991,0.096093394,19.217091,0.762138,17543.8769120108,701.709,12.6979759699181,0.4260542,333.041747698034,1089.5431103184,21.138418,346.457,2.837,4836.0,122.0,4.45,,0.871730983257294,,,,0.78,,"23,50",2020-05-08,2022-07-12,2022-12-14 12:09:24,,1854,1,False,False,True -81247740,1855.01,,3,4,4,3,4,4,4,372.9,410.8,317.0,9,9,8,PC,PC,10.6503,0.007,,1,qlp-s50-tois,QLP,13:41:24.95,17:41:12.74,-73.224,0.067,-80.738,0.062,2459690.637842,0.0002773,1.3641482,8e-07,0.952,0.052,8.523829,2.067211,7820.0,1902.16,19.5876,5.28743,852.162,1505.0,106.0,176.833,1.178,5347.0,121.0,4.33,0.08,1.08,0.06,,,0.92,0.111479,"23,50",2020-05-08,2022-12-12,2022-12-16 12:08:26,Grazing/V-shaped transit; large radius; nearby star(TIC 81247738) within one pixel,1855,1,False,False,True -224313733,1856.01,,3,4,3,3,4,4,4,1.3,59.9,99.95,2,2,8,PC,PC,10.9374,0.007,,1,qlp-s51-tois,QLP,15:36:23.79,57:53:26.66,-15.762,0.036,15.996,0.048,2459517.338757,0.0009772,197.0336254,0.0003266,7.338,0.219,12.997752,0.000508,11900.0,0.467556,12.0713,0.58185,1.65744,316.0,12.0,210.486,0.9345,5616.4,135.1,4.44,0.08,1.0,0.05,0.00160549,0.0123411,1.02,0.12655,"15,16,17,22,23,24,49,50,51",2020-05-08,2022-09-02,2022-12-14 12:09:24,period may be shorter than max period of ~197 days,1856,1,False,False,True -180652891,1857.01,,5,5,5,5,4,5,5,70.7,203.3,77.34,1,2,4,PC,APC,9.2427,0.007,,1,qlp-s49-tois,QLP,13:18:25.76,35:57:14.34,6.779,0.053,-1.198,0.048,2459663.219189,0.0003925,0.7759895,7e-07,1.135,0.149,2.663318,0.001216,2450.0,1.11965,10.4239,0.489315,5149.47,2359.0,89.0,317.527,3.8515,7218.0,125.0,3.94,0.09,2.26,0.09,,,1.62,0.277118,"23,49",2020-05-08,2022-07-13,2022-12-14 12:09:24,V-shaped; grazing; TFOP SB2/APC,1857,1,False,False,True -424733642,1858.01,,3,4,4,3,4,4,4,177.5,179.8,317.0,9,2,6,PC,PC,12.8777,0.006,,1,qlp-s50-tois,QLP,13:17:39.02,22:51:00.36,-25.718,0.054,3.186,0.042,2459691.122281,0.0006976,2.0912089,2.5e-06,1.144,0.082,22.777137,2.879191,20760.0,2648.32,18.3695,4.64625,126.014,933.0,54.0,205.385,1.012,4220.9,119.2,4.49,0.1,0.77,0.07,0.0767659,0.0686144,0.66,0.0820978,"23,50",2020-05-08,2022-09-07,2022-12-14 12:09:24,,1858,1,False,False,True -229742722,1859.01,TIC 229742722.01,3,5,5,3,4,4,4,7.3,73.8,86.51,4,11,4,PC,CP,9.93689,0.006,,1,qlp-s60-ffi,QLP,18:39:19.62,69:31:22.34,12.12,0.044,-12.156,0.041,2459868.841635,0.0012524,63.4834243,0.0001873,4.898,1.397,6.138702,0.272064,5638.0,250.549,11.1305,0.557028,11.9909,518.0,121.0,224.385,1.167,6415.0,131.3,4.26,0.09,1.4,0.06,,,1.291,0.197742,"14,15,16,17,18,19,20,22,23,25,26,40,41,47,48,49,50,52,53,54,55,56,57,59,60",2020-05-08,2023-02-27,2023-05-30 12:02:54,,1859,1,False,False,True -202426247,1860.01,,1,5,5,1,4,4,4,7.5,14.1,2.16,6,5,4,CP,CP,7.7885,0.006,,1,spoc-s14-s50-b0A-CP,SPOC,15:05:49.62,64:02:51.66,-122.326,0.064,110.588,0.058,2459691.172082,0.0016657,1.06620052030029,5.2956652e-06,1.42033794367533,0.09338087,0.176125,0.010755,162.203916092986,9.90539,1.27017318594022,0.3514479,1901.77836512232,1684.26229048289,17.557705,45.864,0.06465,5668.0,104.7,4.51,0.07,0.929849982261658,0.0387538,0.03,0.03,1.01,0.128338,"14,15,16,21,22,23,41,48,49,50",2020-05-18,2022-11-09,2023-03-03 00:00:00,TOI-1860 b,1860,1,False,False,True -323295479,1861.01,TIC 323295479.01,3,4,3,3,1,4,4,0.1,48.5,87.63,2,0,0,PC,PC,9.9486,0.006,,1,spoc-s01-s39-b0A-PC,UNKNOWN,08:43:12.03,-83:03:40.53,41.562,0.043,-59.759,0.036,2458622.925373,0.0008470317,742.52145,0.0,6.58698253149759,0.072681405,9.312375,0.098861,8540.33650846933,91.049866,11.2275098465326,0.591411,25.0128900204657,570.375310177036,86.75089,135.758,0.426,5490.0,148.2,4.45,0.33,1.06113004684448,0.0552212,,,1.01,0.126721,"11,12,13,38,39",2020-05-18,2022-03-21,2022-12-14 12:09:24,CTOI from Nora Eisner; previous single now duotransit; updated with longest possible period,1861,1,False,False,True -321668398,1862.01,TIC 321668398.01,3,5,5,3,4,4,4,20.1,64.0,90.55,1,0,0,CP,CP,11.5429,0.009,,1,spoc-s14-s60-b0A-CP,CTOI,17:37:03.12,53:01:16.59,-4.289,0.041,7.0,0.04,2459768.446771,0.0007575,5.64421124174708,4.7429385e-06,2.98099602274391,0.04843492,4.500136,0.060307,4136.20100626448,55.54282,11.4462895076189,0.5574402,854.707422898049,1379.03128406947,64.643135,527.995,5.7555,6310.0,141.7,4.1,0.09,1.63591003417969,0.0772688,,,1.24,0.193855,"14,17,20,21,24,25,26,40,41,47,50,51,52,53,54,57,58,60",2020-05-29,2023-06-13,2023-07-05 00:00:00,WASP-150 b published after CTOI by Ethan,1862,1,False,False,True -356919658,1863.01,TIC 356919658.01,5,5,5,5,5,5,5,39.9,124.9,62.53,1,0,0,PC,FP,11.2542,0.007,,1,qlp,CTOI,18:14:19.37,57:59:34.72,-4.935,0.036,20.049,0.048,2458683.89879,0.00117,1.42611,1e-05,1.788,0.112,2.053983,0.212536,1890.0,195.734,9.21032,2.0725,11388.0,2877.0,33.0,383.432,3.0235,6404.0,125.9,4.31,0.08,1.32,0.06,,,1.29,0.191859,20,2020-05-29,2020-10-07,2022-12-14 12:09:24,Likely EB; V-shaped; must be grazing if planet; there is a 300 ppm secondary consistent with a hot Jupiter; there is an ephemeris match to 356919654 but no depth/aperture correlation; need SG1 to check TIC 356919654; CTOI from Ethan Kruse,1863,1,False,False,True -229791084,1864.01,TIC 229791084.01,5,5,5,5,5,5,5,105.0,124.7,317.0,0,0,0,KP,KP,12.2856,0.007,,1,qlp-s52-tois,CTOI,18:57:46.54,69:34:15.01,-5.575,0.035,-3.373,0.044,2459766.543741,0.0001464,1.6453265,3e-07,2.59,0.011,21.170633,0.000149,19310.0,0.137604,19.0536,0.849766,1816.48,1818.0,465.0,559.068,6.021,6023.0,120.7,4.25,0.08,1.32,0.06,,,1.12,0.147144,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52",2020-05-29,2022-10-04,2022-12-14 12:09:24,Qatar-10 b; CTOI from Ethan Kruse,1864,1,False,False,True -207425203,1865.01,TIC 207425203.01,3,5,5,3,4,4,4,12.9,43.3,42.86,3,2,10,PC,APC,11.871,0.007,,1,qlp-s52-tois,CTOI,16:11:40.65,58:28:37.2,5.076,0.13,-10.072,0.153,2459742.663844,0.0017617,1.2239134,3e-06,1.037,0.166,1.521096,0.0033,1400.0,3.03983,7.38849,0.662645,861.54,1509.0,18.0,757.572,44.1285,6618.5,352.2,3.99,0.1,1.92,0.14,,,1.3,0.205684,"15,16,17,23,24,25,49,50,51,52",2020-05-29,2022-10-04,2022-12-14 12:09:24,V-shaped; CTOI from Ethan Kruse,1865,1,False,False,True -400430915,1866.01,TIC 400430915.01,3,4,3,3,1,4,4,13.8,39.9,84.36,2,1,0,PC,PC,12.6557,0.007,,1,spoc-s14-s50-b0A-PC,CTOI,19:41:31.73,57:19:32.39,1.219,0.041,0.463,0.034,2459797.900124,0.0033299252,2.18630947984743,1.9841893e-05,3.95769150918251,0.15512112,3.244193,0.121986,2983.55258228263,112.34668,10.9791817173565,0.69098353,4908.3013735633,2134.77719516996,20.042763,1152.5,26.175,6728.0,125.0,4.03,0.08,1.92153000831604,0.0863015,,,1.43,0.231367,"20,40,41,47,50,54,55",2020-05-29,2022-11-09,2022-12-14 12:09:24,CTOI from Ethan Kruse; weak odd-even and potential phase curve,1866,1,False,False,True -400476523,1867.01,TIC 400476523.01,5,5,5,5,5,5,5,19.2,44.7,317.0,1,2,1,PC,FP,12.2339,0.008,,1,qlp,CTOI,19:42:14.13,59:35:20.86,-3.497,0.053,-0.633,0.053,2458700.97371,0.00232,18.10671,0.00039,4.562,0.514,11.284957,0.090062,10340.0,82.9463,19.3734,1.90146,199.63,1047.0,42.0,775.054,15.06,6615.0,132.5,4.14,0.09,1.65,0.08,,,1.38,0.233352,20,2020-05-29,2020-05-29,2022-12-14 12:09:24,Likely EB; some depth-aperture correlation; need SG1 to clear the neighbors; ephemeris match to TIC 400428629; CTOI from Ethan Kruse,1867,1,False,False,True -230087585,1868.01,TIC 230087585.01,3,4,3,3,4,4,4,12.1,40.4,100.61,6,2,4,PC,PC,12.6053,0.008,,1,spoc-s14-s55-b0A-PC,CTOI,16:28:30.15,69:01:51.51,-2.096,0.135,14.467,0.134,2459940.409366,0.0020616192,8.82635791612815,1.32700925e-05,3.43185906483748,0.117548965,6.400513,0.120964,5877.74804001497,111.40541,12.177799584394,0.9154001,381.121648170917,1126.90071397572,48.30618,766.271,35.2075,6016.0,127.5,4.1,0.09,1.56043004989624,0.098877,,,1.11,0.144125,"14,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,51,52,53,54,55,60",2020-05-29,2023-03-22,2023-03-24 12:12:10,CTOI from Ethan Kruse,1868,1,False,False,True -299780329,1869.01,TIC 299780329.01,3,4,3,3,3,4,4,16.2,63.0,26.57,0,0,1,PC,PC,10.9679,0.006,,1,spoc-s01-s39-b0A-PC,CTOI,02:30:07.28,-79:45:23.62,11.464,0.044,-12.791,0.04,2459362.742783,0.0013697798,1.60243874712251,7.543205e-06,1.00900137662734,0.18253656,1.491307,0.088652,1372.60169046599,81.64774,5.56409160950296,1.3158159,2819.63384927323,1858.52295043241,17.802126,305.601,1.8945,5435.9,5567.0,4.2,0.1,1.39294004440308,0.0587311,0.244475,0.0668965,1.07,0.132864,"1,13,28,39",2020-05-29,2022-03-21,2022-12-14 12:09:24,v-shaped; low SNR; CTOI from Adina Feinstein; possible centroid offset towards TIC 299780329,1869,1,False,False,True -230375747,1870.01,TIC 230375747.01,3,4,4,3,3,4,4,39.8,49.3,317.0,7,1,3,PC,PC,12.8079,0.007,,1,spoc-s14-s55-b0A-PC,CTOI,19:00:04.96,63:25:47.39,-0.749,0.124,-1.828,0.116,2459694.209214,0.0021319727,2.76339168970877,1.3292155e-06,3.50616628111821,0.025404574,13.553,0.087682,12405.1873298543,80.754776,16.4097207258857,1.1075944,1824.58801782076,1666.90540264243,145.06374,876.378,44.53,6511.0,126.6,4.25,0.09,1.43103003501892,0.0962086,,,1.34,0.207092,"24,25,26,40,41,47,48,49,50,51,52,53,54,55",2020-05-29,2023-03-14,2023-03-24 12:12:10,CTOI from Ethan Kruse; two stars in pixel (neighbor is TIC 230375748); phase modulations; possible secondary,1870,1,False,False,True -233503636,1871.01,TIC 233503636.01,5,5,5,5,5,5,5,14.6,50.2,55.54,0,4,0,PC,FP,11.5906,0.012,,1,qlp,CTOI,16:44:56.57,77:20:38.54,2.762,0.046,-0.365,0.053,2458685.82187,0.00402,3.40612,0.0003,1.714,0.617,1.890826,0.082431,1740.0,75.9188,8.60495,1.64429,985.653,1560.0,13.0,526.243,6.3915,5955.3,102.7,4.06,0.08,1.67,0.08,,,1.17,0.165367,"14,15,16,18,19,20,21,22,24",2020-05-29,2020-07-27,2022-12-14 12:09:24,Depth-aperture correlation; stellar activity; CTOI from Ethan Kruse,1871,1,False,False,True -229490898,1872.01,TIC 229490898.01,3,4,3,3,3,4,4,26.2,75.2,87.38,6,2,2,PC,PC,11.9414,0.006,,1,qlp-s52-tois,CTOI,19:45:01.75,64:47:30.85,-5.967,1.381,-9.382,1.381,2459765.196316,0.0006756,2.2349708,2.2e-06,2.016,0.231,4.209951,0.005483,3870.0,5.04998,11.1799,,3419.38,,36.0,608.57,,6305.2,383.5,,,1.57,,,,,,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55",2020-05-29,2023-03-14,2023-03-15 00:00:00,V-shaped; CTOI from Ethan Kruse,1872,1,False,False,True -328933398,1873.01,TIC 328933398.01,3,4,3,3,3,4,4,2.0,34.0,14.78,5,2,4,PC,PC,10.7447,0.006,,1,qlp-s52-tois,CTOI,14:10:16.43,84:22:18.69,1.067,0.044,-2.419,0.037,2459753.685026,0.0038061,24.9341884,0.0001389,4.964,0.678,1.510223,0.001694,1390.0,1.55996,3.93465,0.232854,34.0216,672.0,16.0,182.014,0.805,5699.0,141.1,4.47,0.08,0.97,0.05,,,1.015,0.131731,"14,19,20,21,26,40,41,47,52",2020-05-29,2022-11-15,2022-12-14 12:09:24,CTOI from Nora Eisner,1873,1,True,False,True -328933398,1873.02,TIC 328933398.02,1,5,5,1,3,4,4,0.0,9.2,12.79,5,2,4,PC,PC,10.7447,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,14:10:16.43,84:22:18.69,1.067,0.044,-2.419,0.037,2458848.638767,0.0044550938,900.193098724326,0.0069491738,6.3963069164098,0.58928096,1.460742,0.129407,1344.48848818584,119.18114,3.61852360263806,0.8518884,0.265101697653363,183.009180707941,10.98663,182.014,0.805,5699.0,141.1,4.47,0.08,0.971674978733063,0.0471155,,,1.015,0.131731,"20,21,40,41,47,52,53,59,60",2020-07-15,2023-05-17,2023-06-16 12:14:51,actual period is likely much shorter than max period of ~900 days,1873,2,True,False,True -328933398,1873.03,,2,4,2,2,3,4,4,3.6,38.1,9.85,5,2,4,PC,PC,10.7447,0.006,,3,spoc-s14-s60-b0A-PC,SPOC,14:10:16.43,84:22:18.69,1.067,0.044,-2.419,0.037,2459583.708287,0.0060408674,7.00568049251826,2.4173321e-05,3.31821249026891,0.21294464,0.832965,0.042548,766.894461991216,39.187603,3.10392321793405,0.22486447,171.89357560837,923.495239305094,18.992094,182.014,0.805,5699.0,141.1,4.47,0.08,0.971674978733063,0.0471155,,,1.015,0.131731,"20,21,40,41,47,52,53,59,60",2020-10-11,2023-05-17,2023-06-16 12:14:51,potential multi,1873,3,True,False,True -232641326,1874.01,TIC 232641326.01,3,5,5,3,4,4,4,25.4,61.0,317.0,1,2,3,PC,APC,11.5816,0.007,,1,spoc-s14-s55-b0A-APC,CTOI,18:45:47.81,56:22:54.12,8.653,0.05,1.588,0.044,2459756.864289,0.0007104,17.8683998721462,3.523049e-05,5.6386950144778,0.05077606,12.226607,0.179402,11197.9522338976,165.22133,19.3843075226149,0.8403294,242.718213779673,1006.68904235164,74.492966,639.003,9.7765,7013.0,125.8,4.2,0.08,1.63558995723724,0.0695729,,,1.54,0.254108,"24,25,26,40,41,47,48,49,50,51,52,53,54,55",2020-05-29,2023-02-23,2023-02-25 12:10:55,TFOPWG SB1/APC; CTOI from Ethan Kruse; potentially too large for insolation,1874,1,False,False,True -233047097,1875.01,TIC 233047097.01,3,4,3,3,2,4,4,18.3,29.0,317.0,2,0,2,PC,PC,12.9417,0.007,,1,qlp-s52-tois,CTOI,17:54:38.62,60:21:23.08,-5.109,0.024,-9.682,0.025,2459857.086857,0.0015925483,11.3091849,1.42e-05,1.713,0.282,13.063682,0.019042,11960.0,17.5386,15.4356,0.956218,26.4473,631.0,37.0,677.874,5.2985,5817.0,128.5,4.27,0.08,1.25,0.06,,,1.05,0.128802,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,50,51,52",2020-05-29,2023-01-30,2023-02-09 12:10:04,V-shaped; CTOI from Ethan Kruse,1875,1,False,False,True -233078665,1876.01,TIC 233078665.01,3,4,3,3,2,4,4,9.4,33.2,91.1,1,2,2,PC,PC,12.8182,0.007,,1,spoc-s14-s60-b0A-PC,CTOI,18:06:26.85,62:10:36.3,-4.06,0.058,4.82,0.052,2459945.349797,0.0028820576,6.4827646827791,6.6991256e-06,2.29303592239289,0.09825397,4.505186,0.108811,4140.83294828344,100.21352,11.4873820496677,0.80305153,941.016456163601,1412.59951933296,38.61821,1119.32,31.54,6748.0,125.2,4.12,0.09,1.73025000095367,0.0862312,,,1.44,0.244621,"24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2020-05-29,2023-05-15,2023-06-16 12:14:51,CTOI from Ethan Kruse; ~750 ppm secondary in spoc-s14-s60-b0A-PC,1876,1,False,False,True -233497719,1877.01,TIC 233497719.01,3,5,5,3,1,4,4,40.2,47.7,317.0,6,2,0,PC,APC,12.8746,0.008,,1,qlp-s52-tois,CTOI,16:38:04.8,77:45:23.04,-4.924,0.023,39.626,0.03,2459766.145743,0.0003429,3.801591,1.9e-06,2.752,0.04,20.772145,0.001069,18950.0,0.984908,14.4297,0.657427,395.697,1242.0,162.0,565.519,4.5015,6051.0,127.3,4.48,0.08,1.01,0.05,,,1.13,0.153259,"14,15,16,18,19,20,21,22,24,25,26,40,41,47,48,49,51,52",2020-05-29,2022-10-04,2022-12-14 12:09:24,CTOI from Ethan Kruse; potential shallow secondary,1877,1,False,False,True -219762508,1878.01,TIC 219762508.01,3,4,3,3,4,4,4,9.6,40.9,38.97,3,2,4,PC,PC,12.9737,0.007,,1,spoc-s14-s55-b0A-PC,CTOI,17:30:25.26,63:07:22.85,4.282,0.057,-2.303,0.053,2459911.907728,0.003749723,3.2351012718965,4.334352e-06,0.964592157812367,0.13097769,4.323565,0.187959,3974.23191279391,173.1015,6.97058033961781,1.1605136,662.302264797641,1293.84964084627,24.670567,603.015,9.5615,5976.0,131.5,4.43,0.08,1.06446003913879,0.053701,,,1.1,0.143194,"14,15,16,17,18,19,20,22,23,24,25,26,40,41,47,48,49,50,52,53,54,55,56,57,58,59",2020-05-29,2023-03-22,2023-03-24 12:12:10,CTOI from Ethan Kruse,1878,1,False,False,True -243335710,1879.01,TIC 243335710.01,3,4,3,3,1,4,4,14.0,26.8,317.0,2,0,0,PC,PC,12.9935,0.008,,1,spoc-s14-s55-b0A-PC,CTOI,19:19:26.78,59:40:12.4,1.246,0.03,0.272,0.033,2459703.289921,0.00553986,13.7045951306737,4.980564e-05,5.85354119963955,0.106694415,11.03929,0.230189,10116.0470111224,211.98935,17.0437213763547,0.8148566,237.540431862851,1001.27675733875,48.77545,982.768,14.239,6531.0,126.2,4.22,0.09,1.49610996246338,0.0684875,,,1.35,0.216667,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,59",2020-05-29,2023-03-16,2023-03-24 12:12:10,CTOI from Ethan Kruse; possibly too large for period,1879,1,False,False,True -359357695,1880.01,TIC 359357695.01,3,4,3,3,3,4,4,61.1,170.2,53.92,7,0,2,PC,PC,13.0614,0.008,,1,spoc-s01-s39-b0A-PC,CTOI,12:10:54.28,-75:07:54.95,-39.401,0.094,-7.25,0.089,2459363.247029,0.0017694175,1.72626309490335,7.036324e-05,1.7729838229783,0.105738245,11.020562,0.541608,10098.9724163663,498.7152,8.43807569956838,7.1073465,46.8560782629108,667.28480222585,22.860867,102.608,0.613,3631.4,504.9,4.69,0.01,0.556057989597321,0.016711,,,0.550671,0.0204107,"11,12,38,39",2020-05-29,2022-03-22,2022-12-14 12:09:24,crowded field; v-shaped transits; CTOI from Luke Bouma; SG1 VPC and mentioned in Mann+2021 that has an Li double line suggestive of SB2,1880,1,False,False,True -59859387,1881.01,TIC 59859387.01,3,5,5,3,3,4,4,23.7,100.5,30.04,0,7,1,PC,PC,10.2761,0.006,,1,qlp-s61-ffi,CTOI,07:21:28.72,-45:34:03.85,-9.997,0.042,11.584,0.048,2459987.207387,0.0010274,1.1203828,1.2e-06,1.665,0.304,2.065949,0.115094,1901.0,106.0,5.96207,0.339687,4388.96,2267.0,47.0,294.281,2.179,6564.4,178.0,4.26,0.09,1.47,0.06,,,1.45,0.246946,"7,8,33,35,61",2020-05-29,2023-04-04,2023-04-07 12:13:06,V-shaped; some odd-even; crowded field; CTOI from Luke Bouma,1881,1,False,False,True -396368313,1882.01,TIC 396368313.01,3,4,4,3,3,4,4,40.5,60.5,317.0,3,0,1,PC,PC,11.2394,0.006,,1,spoc-s01-s39-b0A-PC,CTOI,14:11:21.41,-75:49:59.53,-6.75,0.063,-5.584,0.057,2459362.255492,0.0010584032,3.08984333867527,7.599722e-05,1.72530150820967,0.04889788,6.201303,0.256296,5695.33115055951,236.02916,14.7960305463931,1.5099621,6037.52043553553,2248.19720214002,40.84106,708.598,19.6255,8828.7,271.0,4.39,0.07,1.63131999969482,0.0630352,,,2.39,0.326025,"11,12,38,39",2020-05-29,2022-03-22,2022-12-14 12:09:24,crowded field; CTOI from Luke Bouma; v-shaped,1882,1,False,False,True -348755728,1883.01,TIC 348755728.01,3,4,4,3,2,4,4,12.8,83.3,29.34,7,0,3,PC,PC,13.3462,0.008,,1,spoc,CTOI,08:56:21.42,-12:55:50.32,30.75,0.106,3.168,0.192,2459256.846053,0.0026585974,4.50629892438368,0.00086939376,2.06377193998662,0.21284597,13.504324,1.140936,12360.9104189699,1050.2891,5.89944322794566,0.4822473,17.9440116945363,524.927874942839,10.966861,115.369,0.8545,3477.0,157.0,4.74303,0.008219,0.493575990200043,0.0149633,,,0.491671,0.0205038,"8,35",2020-05-29,2021-04-15,2022-12-14 12:09:24,Match to TOI 633; Will Waalkes and Zach Berta-Thompson observed a full on 20190425 and ruled out a transit on TOI 633 but confirmed a 9.6 ppt event on 348755728; CTOI from Karen Collins,1883,1,False,False,True -219879302,1884.01,TIC 219879302.01,3,4,4,3,4,4,4,17.5,75.0,68.55,10,2,3,PC,PC,12.6183,0.007,,1,qlp-s52-tois,CTOI,17:24:31.07,67:59:20.83,-0.326,0.021,-6.855,0.027,2459755.777237,0.0005572,6.7822711,5.5e-06,2.491,0.06,12.228856,0.001285,11200.0,1.18391,9.69244,0.574201,60.1185,775.0,106.0,340.55,1.354,5225.0,130.9,4.5,0.09,0.88,0.05,,,0.89,0.111069,"14,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52",2020-05-29,2022-10-04,2023-07-07 00:00:00,CTOI from Ethan Kruse; possible odd-even,1884,1,False,False,True -258510872,1885.01,TIC 258510872.01,3,4,3,3,3,4,4,21.9,56.1,129.58,8,7,1,PC,PC,11.9742,0.007,,1,qlp-s52-tois,CTOI,20:18:39.65,66:09:21.44,0.54,0.039,-3.806,0.04,2459736.999544,0.0009524,6.5440665,8e-06,3.777,0.096,6.599578,0.00055,6060.0,0.506475,14.1513,0.65761,318.224,1176.0,69.0,560.901,6.507,6232.0,123.2,4.03,0.08,1.76,0.08,,,1.2,0.168177,"15,16,17,18,21,22,24,25,48,51,52",2020-05-29,2022-12-12,2022-12-16 12:08:26,CTOI from Ethan Kruse,1885,1,False,False,True -403136415,1886.01,TIC 403136415.01,3,4,4,3,3,4,4,39.8,111.1,105.52,7,0,1,PC,PC,13.0934,0.006,,1,spoc,CTOI,22:14:14.33,-55:22:24.02,4.93,0.028,-8.523,0.033,2458326.378,0.00219,2.51280271774828,0.00020400355,2.54547130782565,0.0847265,19.162844,0.485856,17494.7892288969,447.3898,12.5236817286533,0.34279346,623.361404718752,1274.39696040684,24.671,529.373,5.9015,5744.0,122.0,4.51952,,0.924044,,,,1.03,,"1,28",2020-05-29,2020-10-01,2022-12-14 12:09:24,potential odd-even; centroid offset; CTOI from Kevin Collins,1886,1,False,False,True -229586455,1887.01,TIC 229586455.01,2,4,4,2,3,4,4,4.7,34.0,6.82,4,1,3,PC,PC,12.2415,0.006,,1,spoc-s14-s60-b0A-PC,CTOI,18:05:28.45,75:08:44.26,-34.046,0.029,88.331,0.038,2459884.269522,0.0033976773,2.20015834819389,4.3715268e-06,1.75644860690806,0.16358353,1.40759,0.057806,1295.59854425505,53.239758,2.50067824354817,1.031505,164.326250163753,913.15917238003,26.391085,138.272,0.32,4250.0,171.0,4.58048,,0.705729007720947,0.0664121,,,0.653,0.0759949,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2020-05-29,2023-05-25,2023-06-16 12:14:51,2 stars in pixel; CTOI from Ethan Kruse,1887,1,False,False,True -459997997,1888.01,TIC 459997997.01,5,5,5,5,5,5,5,20.3,77.5,90.81,1,2,0,EB,FP,10.4748,0.006,,1,qlp-s36-ffi,CTOI,10:25:00.01,-60:34:30.51,-21.982,0.048,9.122,0.043,2459328.032732,0.0022364,5.547485,2.54e-05,5.412,0.242,3.643322,0.00156,3350.0,1.43696,11.48,0.43171,3368.08,2122.0,23.0,521.829,6.945,7397.0,237.3,4.1,0.62,2.04,0.06,,,2.12,0.311293,"10,11,36",2020-05-29,2021-12-07,2022-12-14 12:09:24,TFOP FP; retired as NEB,1888,1,False,False,True -139771134,1889.01,TIC 139771134.01,3,4,3,3,3,4,4,76.7,167.5,58.54,8,0,1,PC,PC,12.5093,0.006,,1,spoc,CTOI,21:36:30.78,-52:30:47.16,20.985,0.027,-16.051,0.027,2459036.734021,0.0010074341,0.913469663245823,3.2675784e-05,1.12412243012748,0.08636562,5.17436,0.262106,4754.42304830195,241.37901,8.85588580465433,11.272981,831.165140882302,1369.43549300859,19.96266,211.794,0.867,4791.0,4675.9,,,0.771804988384247,0.0622764,0.160856,0.0877324,0.72,0.0856123,"1,27,28",2020-05-29,2021-10-04,2022-12-14 12:09:24,difference image reasonably consistent with target despite small nominal shift; V-shaped; some depth-aperture correlation; CTOI from Adina Feinstein,1889,1,False,False,True -288636599,1890.01,TIC 288636599.01,3,4,3,3,3,4,4,8.5,49.1,72.14,5,4,1,PC,PC,11.6819,0.013,,1,spoc-s14-s55-b0A-PC,CTOI,18:38:58.68,79:14:18.06,3.785,0.038,9.982,0.053,2459884.073661,0.0020999894,19.9676936259445,4.176379e-05,6.28049300228676,0.08595482,6.626171,0.085193,6084.34354251442,78.46292,10.0136343267719,0.51566106,78.6890951714164,759.623492419374,51.0,372.335,3.3275,5857.0,153.6,4.26,0.08,1.26949000358582,0.061191,,,1.06,0.137445,"14,17,18,19,20,21,24,25,26,40,41,47,48,50,51,52,53,54,55,58",2020-05-29,2023-03-22,2023-03-24 12:12:10,CTOI from Ethan Kruse,1890,1,False,False,True -139198430,1891.01,TIC 139198430.01,3,5,5,3,3,4,4,21.3,132.0,53.15,4,0,1,PC,APC,9.3059,0.006,,1,qlp,CTOI,23:02:31.44,-46:05:06.7,-24.1,1.3,-2.1,1.4,2459085.81882,0.00057,15.36179,2e-05,1.389,0.182,3.774056,0.003108,3470.0,2.86256,8.36864,,11.5248,,44.0,135.265,,5984.0,192.0,4.30752,2.00392,1.22,,,,,,"1,28",2020-05-29,2020-10-08,2022-12-14 12:09:24,Formerly a single; v-shaped; CTOI from Juha Lipponen,1891,1,False,False,True -63698669,1892.01,TIC 63698669.01,3,5,5,3,3,4,4,,,2.56,0,3,1,PC,PC,9.9312,0.006,,1,spoc,CTOI,00:20:39.68,-33:59:04.11,67.063,0.062,-13.027,0.047,2458364.632073,0.009577049,0.0,0.0,5.06896472470973,0.9111908,0.320254,0.05299,294.921390840167,48.804676,1.46823549408587,1.3190372,82.674814867087,769.06501804312,7.979284,97.4697,0.375,5256.0,183.0,4.55251,0.28354,0.831552,0.10714,,,0.95,0.120742,2,2020-05-29,2020-05-29,2022-12-14 12:09:24,second transit event is real single transit and others are spurious; CTOI from Planet Hunters TESS,1892,1,False,True,True -264544388,1893.01,TIC 264544388.01,3,5,5,3,3,4,4,,,14.93,0,1,3,PC,PC,8.43389,0.006,,1,spoc,CTOI,21:45:45.21,79:36:50.18,23.5,0.045,18.487,0.047,2458824.861486,0.011408773,0.0,0.0,16.2000200807119,0.85472685,0.608618,0.069312,560.400439318114,63.8369,3.96468982816082,0.2961185,95.4170226767927,797.124605062777,8.327036,134.912,0.4745,6996.0,129.479,4.29542,0.0844643,1.46151,0.0554825,,,1.538,0.259757,"17,18,19",2020-05-29,2020-05-29,2022-12-14 12:09:24,Single transit; noisy LC; high Gaia RV scatter; possibly seeing secondary eclipse; CTOI from Planet Hunters,1893,1,False,True,True -280865159,1894.01,TIC 280865159.01,3,5,5,3,3,4,4,0.0,17.1,33.18,0,1,3,PC,PC,10.7519,0.021,,1,spoc-s01-s39-b0A-PC,SPOC,06:43:11.66,-78:16:51.94,39.23,2.0,56.87,2.0,2458387.073001,0.006121742,739.242400693269,0.009019784,19.2382815161876,0.55819476,3.425894,0.110391,3150.39214353887,101.66869,6.34087208508914,0.22511087,0.362350807336499,197.88007116849,24.061493,178.372,,5611.0,187.0,4.37718,2.00393,1.06920003890991,,,,,,"1,3,4,5,6,7,8,10,11,12,13,27,28,30,31,32,33,34,35,36,37,38",2020-05-29,2022-03-22,2022-12-14 12:09:24,formerly a single transit; actual period likely shorter than 739.242 d,1894,1,False,False,True -384159646,1895.01,TIC 384159646.01,3,5,5,3,3,4,4,0.1,29.3,66.8,0,0,2,PC,PC,9.7556,0.006,,1,spoc-s01-s39-b0A-PC,CTOI,16:14:51.23,-81:40:50.15,-17.507,0.044,-31.801,0.048,2459362.934319,0.001512523,748.073941620923,0.0011630536,5.06520326924783,0.085997835,5.035698,0.120838,4627.3105593122,111.289764,9.57105164974633,0.4543167,1.02969466530838,256.919379970361,40.682007,206.229,1.188,6762.0,202.0,4.39031,0.377145,1.37387001514435,0.0567035,,,1.41,0.244622,"12,13,39",2020-05-29,2022-03-22,2022-12-14 12:09:24,CTOI from Planet Hunters; former single with retransit in s39; 748.074286 days is longest possible period; period likely shorter,1895,1,False,False,True -174302697,1896.01,TIC 174302697.01,3,5,5,3,4,4,4,,,59.67,0,4,4,PC,PC,8.88374,0.006,,1,spoc,CTOI,23:28:42.87,47:20:58.28,56.957,0.046,0.365,0.042,2458743.727014,0.002370027,0.0,0.0,16.104628186997,0.16959512,3.062315,0.125792,2816.52241847934,115.85219,8.95562872749283,0.43547082,254.640780176066,1018.83003309172,35.01022,169.851,0.914,6750.0,178.876,4.18569,0.0924767,1.60572,0.0682312,,,1.442,0.262859,"16,17",2020-05-29,2020-05-29,2022-12-14 12:09:24,Single transit; Rp based on first event is ~14 Re (DD); CTOI from Planet Hunters,1896,1,False,True,True -420645189,1897.01,TIC 420645189.01,5,5,5,5,5,5,5,61.8,446.7,317.0,0,4,1,PC,FP,10.1374,0.006,,1,qlp-s52-tois,CTOI,03:13:28.9,75:16:06.16,48.29,0.042,14.617,0.056,2459000.999918,0.000253,48.534039473,0.0003159,6.661,0.033,69.689697,0.001081,62170.0,0.995212,26.827,1.24227,0.0730269,144.0,295.0,158.493,0.8355,5937.0,142.24,4.44855,0.0775541,1.03,0.05,,,1.084,0.136359,"19,25,26,52",2020-05-29,2023-03-14,2023-05-24 12:02:56,alerted as a single; matches depth of additional transits at ~2729 and 2923 TBJD; likely 48.5 d EB with .01 as primaries and .02 as secondaries,1897,1,True,False,True -420645189,1897.02,,5,5,5,5,5,5,5,5.4,75.2,48.11,0,4,1,PC,FP,10.1374,0.006,,2,qlp-s52-tois,SPOC,03:13:28.9,75:16:06.16,48.29,0.042,14.617,0.056,2458837.476698,0.0016185,48.533862575,0.0021795,6.137,0.59,5.147716,0.003397,4730.0,3.1286,7.9008,0.415699,2.2453,341.0,33.0,158.493,0.8355,5937.0,142.24,4.44855,0.0775541,1.03,0.05,,,1.084,0.136359,"19,25,26,52",2020-10-07,2023-03-14,2023-05-24 12:02:55,alerted as a single but now have an additional transit of similar depth at ~2031 TBJD; likely 48.5 d EB with .01 as primaries and .02 as secondaries,1897,2,True,False,True -91987762,1898.01,TIC 91987762.01,1,4,1,3,4,4,4,20.9,171.1,62.1,8,14,7,PC,PC,7.4098,0.006,,1,qlp-s46-tois,CTOI,09:38:13.27,23:32:48.29,-64.433,0.106,-41.485,0.093,2459531.564033,0.0004563,45.5221234,8.89e-05,4.024,0.159,3.338337,0.000342,3070.0,0.315093,9.16745,0.463922,8.34463,473.0,103.0,79.6682,0.44,6303.91,141.811,4.11765,0.0924486,1.61,0.08,,,1.24,0.189831,"21,45,46",2020-05-29,2022-03-10,2022-12-14 12:09:24,CTOI from Planet Hunters; have period (~45 days) from s46,1898,1,False,False,True -172370679,1899.01,TIC 172370679.01,3,5,5,3,4,4,4,6.9,109.4,100.68,0,0,2,CP,CP,12.5826,0.007,,1,spoc-s14-s41-b0A-CP,CTOI,19:57:42.44,40:08:36.05,35.427,0.025,18.828,0.029,2459439.215254,0.012871722,29.0902271476588,7.391117e-05,4.67698256321417,0.10876425,41.568471,0.713033,37562.3332735779,656.51215,12.1826516713054,0.41291898,2.60060096518845,323.883019460935,62.05948,128.438,0.25,3854.0,157.0,4.63619,0.0110121,0.61786299943924,0.0181815,,,0.602425,0.0201818,"14,15,41,53",2020-05-29,2022-10-11,2022-12-14 12:09:24,alerted as single transit; now a duo-transit; CTOI from Planet Hunters; period updated to reflect period for TESS CP TOI-1899 b,1899,1,False,False,True -178879588,1900.01,,5,5,5,5,5,5,5,29.1,79.1,105.43,0,0,2,KP,KP,13.2554,0.008,,1,spoc,QLP,04:29:40.46,-28:11:49.97,5.777,0.022,16.81,0.029,2459145.468004,0.0013300353,3.05662771115638,0.00012200068,2.39263753754447,0.08565802,13.676503,0.364697,12517.5203529171,335.84195,12.5182693374265,0.31135896,606.663452667381,1265.77556512252,30.356386,623.232,6.0345,5735.0,122.0,4.41,,1.03865003585815,,,,1.02,,"31,32",2020-05-29,2021-12-01,2022-12-14 12:09:24,HATS-63 b,1900,1,False,False,True -19684256,1901.01,,5,5,5,5,5,5,5,74.8,71.0,317.0,0,0,0,KP,KP,13.1758,0.012,,1,qlp,QLP,09:20:21.02,-31:16:09.16,-20.014,0.03,21.252,0.032,2459278.312088,0.0005782,1.3666563,1.2e-06,1.967,0.056,23.120905,0.002448,21070.0,2.25504,15.437,,1310.22,1676.0,76.0,555.134,6.057,5790.4,89.4,4.44,,1.02,,-0.284288,0.0813642,1.04,,"8,9,35",2020-05-29,2021-06-11,2022-12-14 12:09:24,HATS-52 b,1901,1,False,False,True -272212970,1902.01,,5,5,5,5,5,5,5,46.8,50.5,317.0,0,0,0,KP,KP,13.174,0.006,,1,qlp-s37-tois,QLP,12:00:50.11,-46:08:11.11,-6.082,0.03,0.801,0.022,2459332.042845,0.0009266,1.6091845,2.9e-06,1.63,0.136,14.702248,0.009813,13450.0,9.03782,16.7675,,1054.66,1587.0,40.0,960.109,23.4625,6393.0,122.0,4.24,,1.43,,,,1.28,,"10,37",2020-05-29,2023-01-24,2023-01-26 12:09:41,HATS-67 b,1902,1,False,False,True -77156657,1903.01,,5,5,5,5,5,5,5,19.8,50.4,102.84,0,1,2,KP,KP,11.8831,0.006,,1,qlp-s32-tois,QLP,04:32:32.76,-38:58:05.87,-0.767,0.034,5.443,0.042,2459196.572151,0.0011825,3.8404319,9.7e-06,5.242,0.229,3.89391,0.000563,3580.0,0.518387,12.3434,0.592897,1599.92,1761.0,29.0,715.383,10.6205,5909.0,61.2,4.42,2.0,2.04,0.09,,,1.1,0.145795,"4,5,31,32",2020-05-29,2021-12-08,2022-12-14 12:09:24,WASP-159 b,1903,1,False,False,True -272213425,1904.01,,5,5,5,5,5,5,5,46.4,56.2,317.0,0,0,0,KP,KP,11.1138,0.006,,1,qlp-s37-tois,QLP,12:00:39.62,-45:47:58.04,-8.604,0.046,-2.95,0.035,2459327.622593,0.0007807,4.3247708,7.2e-06,4.267,0.158,6.949189,0.001055,6380.0,0.972063,17.0257,0.853523,1080.87,1597.0,17.0,564.409,11.2915,6457.0,134.1,3.9,0.09,2.13,0.1,,,1.31,0.215722,"10,37",2020-05-29,2023-01-24,2023-01-26 12:09:41,HATS-56 b,1904,1,False,False,True -429302040,1905.01,,4,4,4,5,5,5,5,126.8,415.5,107.46,7,1,8,KP,KP,10.418,0.006,,1,qlp,QLP,12:33:32.74,-10:08:46.37,-96.647,0.11,-9.483,0.058,2458574.14194,0.0002,5.72226,0.00011,2.648,0.03,28.099986,0.001419,25549.0,1.30739,12.8433,0.928107,37.0251,687.0,288.0,64.7414,0.26065,4233.2,164.2,4.64,,0.73,0.05,,,0.66,0.0799695,10,2020-05-29,2020-05-29,2023-03-19 00:00:00,WASP-107 b,1905,1,False,False,False -308098254,1906.01,,5,5,5,5,5,5,5,25.8,93.3,103.22,0,1,0,KP,KP,11.5688,0.006,,1,qlp,QLP,11:13:10.3,-17:39:28.01,6.008,0.077,-7.754,0.047,2459299.07674,0.0010038,9.6246665,1.75e-05,4.297,0.316,11.164285,0.002954,10230.0,2.72051,12.3182,0.681292,121.918,925.0,66.0,310.841,4.0695,5473.0,123.4,4.26,0.08,1.2,0.06,,,0.958,0.12502,"9,36",2020-05-29,2021-11-10,2022-12-14 12:09:24,WASP-162 b,1906,1,False,False,True -453789494,1907.01,,5,5,5,5,5,5,5,62.6,106.7,317.0,0,1,1,KP,KP,10.7316,0.006,,1,qlp-s38-tois,QLP,13:17:44.1,-47:14:15.27,-15.976,0.072,0.505,0.066,2459354.693899,0.0003075,5.4774433,4.4e-06,5.277,0.039,9.82682,0.00018,9010.0,0.165807,20.3433,0.98964,1506.5,1735.0,220.0,538.11,14.866,6942.0,195.8,3.94,0.61,2.09,0.1,,,1.61,0.275037,"11,37,38",2020-05-29,2022-10-04,2022-12-14 12:09:24,WASP-172 b,1907,1,False,False,True -37718056,1908.01,,5,5,5,5,5,5,5,32.8,89.5,110.02,0,1,3,KP,KP,11.7083,0.007,,1,qlp,QLP,00:16:35.12,-10:58:35.12,1.827,0.083,-1.504,0.042,2458384.09392,0.00142,3.65688,0.00053,3.542,0.138,7.670615,0.002537,7040.0,2.33649,12.8031,0.709584,903.013,1527.0,9.0,524.993,12.2925,6239.0,126.7,4.15,0.09,1.53,0.08,,,1.21,0.173333,3,2020-05-29,2020-05-29,2022-12-14 12:09:24,,1908,1,False,False,False -232038798,1909.01,,5,5,5,5,5,5,5,54.5,169.1,108.61,0,1,0,KP,KP,11.3187,0.006,,1,qlp,QLP,06:26:58.71,-46:49:16.91,0.077,0.042,20.496,0.038,2459252.138447,0.0002814,4.1536624,2.7e-06,1.702,0.151,13.448358,0.005587,12310.0,5.14588,12.7595,0.652224,278.886,1138.0,140.0,303.941,1.8995,5818.8,409.4,4.24,0.39,1.09,0.05,,,1.15,0.161447,"6,7,32,33,34",2020-05-29,2021-06-11,2022-12-14 12:09:24,WASP-168 b,1909,1,False,False,True -437261733,1910.01,,5,5,5,5,5,5,5,21.2,64.9,117.14,0,0,0,KP,KP,13.2958,0.007,,1,qlp,QLP,11:21:17.84,-22:23:17.44,-24.166,0.048,0.929,0.034,2459296.222791,0.0015289,5.4161129,1.65e-05,3.385,0.092,15.649124,0.004986,14310.0,4.59249,13.3752,,232.397,1087.0,26.0,642.884,13.6555,5652.0,122.0,4.36,,1.1,,,,1.0,,"9,36",2020-05-29,2021-11-10,2022-12-14 12:09:24,HATS-59 b,1910,1,False,False,True -44745133,1911.01,,5,5,5,5,5,5,5,8.8,29.9,71.06,0,0,2,KP,KP,12.5757,0.007,,1,qlp,QLP,04:06:37.87,-25:20:58.8,3.997,0.022,9.892,0.032,2459166.297772,0.0051682,7.8181434,6.37e-05,4.98,0.429,3.970187,0.003319,3650.0,3.05663,9.95177,0.589713,266.851,1125.0,15.0,679.761,8.625,5549.0,123.1,4.0,0.08,1.64,0.08,,,0.98,0.124723,"4,5,31",2020-05-29,2021-02-01,2022-12-14 12:09:24,,1911,1,False,False,True -50712784,1912.01,,5,5,5,5,5,5,5,45.1,134.7,119.32,0,1,0,KP,KP,10.5579,0.006,,1,qlp,QLP,08:25:21.08,-11:30:03.56,-5.388,0.049,-0.587,0.04,2459249.035676,0.000594,5.4053583,9.2e-06,4.859,0.118,7.375428,0.000529,6770.0,0.487159,13.4237,0.628467,857.119,1507.0,74.0,343.08,4.094,6410.0,128.8,4.14,0.09,1.59,0.07,,,1.289,0.199609,"7,34",2020-05-29,2021-06-11,2022-12-14 12:09:24,WASP-161 b,1912,1,False,False,True -53458803,1913.01,,5,5,5,5,5,5,5,46.0,119.2,112.59,0,0,0,KP,KP,11.8656,0.007,,1,spoc,QLP,06:51:23.38,-29:03:31.16,-16.382,0.034,-7.264,0.04,2459252.258036,0.0004812,3.34890381843444,7.0512135e-05,3.35462982188189,0.05028669,11.995191,0.147027,10987.1747675208,135.40771,13.0110380362637,0.67610633,740.224565970812,1330.33379282923,54.78575,389.57,3.9105,5711.0,124.0,4.27,0.07,1.22959005832672,0.0607839,,,1.02,0.118962,"6,7,33,34",2020-05-29,2021-10-07,2022-12-14 12:09:24,HATS-51 b,1913,1,False,False,True -53750200,1914.01,,5,5,5,5,5,5,5,17.1,52.5,91.85,0,0,0,KP,KP,12.2309,0.009,,1,spoc,QLP,06:54:04.17,-27:03:01.5,-0.139,0.037,-4.758,0.042,2459232.244495,0.0016370398,4.19334220896773,0.00017514675,1.82209959611083,0.17474404,5.228617,0.213598,4804.15726602902,196.71211,11.5425702311529,1.4339011,1300.31251920303,1531.55178406185,22.313007,737.668,13.944,6405.0,128.2,4.13,0.09,1.62776005268097,0.0730402,,,1.29,0.212058,"6,7,33,34",2020-05-29,2021-10-07,2022-12-14 12:09:24,HATS-41 b,1914,1,False,False,True -98283926,1915.01,,5,5,5,5,5,5,5,29.6,74.4,116.12,0,0,2,KP,KP,13.1472,0.006,,1,spoc,QLP,07:13:48.58,-33:26:14.45,0.759,0.026,-2.879,0.032,2459253.248463,0.0009503,2.29203483324914,8.126185e-05,3.181250652858,0.08811164,11.554093,0.225748,10585.2906021171,207.89972,13.2497141550456,0.34636796,1637.20580646625,1622.35379350421,32.916973,800.377,10.401,6208.0,122.0,4.31,,1.2652599811554,,,,1.19,,"7,33,34",2020-05-29,2021-10-07,2022-12-14 12:09:24,HATS-42 b,1915,1,False,False,True -98545929,1916.01,,5,5,5,5,5,5,5,21.4,25.9,317.0,0,0,0,KP,KP,12.4539,0.006,,1,spoc,QLP,07:16:25.09,-31:14:39.82,-2.42,0.045,2.44,0.047,2459251.405758,0.0016225,1.88819938783508,9.174938e-05,3.68065020315887,0.12110953,4.822253,0.131482,4431.61042725843,121.09209,14.5851064006397,0.97004694,14536.9873398789,2800.51789830895,19.96574,1458.83,65.705,8549.0,152.1,4.11,0.08,2.12127995491028,0.118809,,,2.13,0.31508,"7,33,34",2020-05-29,2021-10-07,2022-12-14 12:09:24,HATS-70 b,1916,1,False,False,True -339522221,1917.01,,5,5,5,5,5,5,5,73.4,74.5,317.0,0,0,1,KP,KP,12.0457,0.006,,1,qlp,QLP,19:46:45.23,-63:33:56.34,19.406,0.05,-12.796,0.045,2458655.29768,0.00125,1.82069,0.00016,3.049,0.118,13.481337,0.002931,12340.0,2.69921,15.6593,0.791515,2440.7,1958.0,83.0,514.555,10.008,6155.0,132.9,4.24,0.08,1.35,0.07,,,1.17,0.155332,13,2020-05-29,2020-05-29,2022-12-14 12:09:24,,1917,1,False,False,False -308425348,1918.01,TIC 308425348.01,5,5,5,5,5,5,5,11.8,54.4,39.68,0,1,2,EB,FP,12.2876,0.006,,1,qlp,QLP,11:10:19.88,-58:58:58.75,-10.042,0.053,4.282,0.044,2458571.7908,0.00869,3.39829,0.00088,2.634,0.407,4.72235,0.017052,4340.0,15.7058,7.06633,0.581413,662.808,1413.0,9.0,477.322,7.041,6271.0,133.8,4.45,0.08,1.09,0.05,,,1.22,0.176592,"10,11",2020-05-29,2021-02-12,2022-12-14 12:09:24,"Originally released as a KP, apparently in error. QLP s10 shows significant depth-aperture correlation. SAFFIs likely show an offset ~30",1918,1,False,False,True -102192004,1919.01,,5,5,5,5,5,5,5,86.3,135.5,317.0,0,0,1,KP,KP,11.3287,0.006,,1,qlp-s37-tois,QLP,13:03:10.56,-41:23:05.5,0.043,0.071,-5.784,0.112,2459328.761216,0.0006723,4.2337078,6.9e-06,2.008,0.133,8.38158,0.896569,7690.0,825.43,19.6222,4.72969,822.444,1491.0,60.0,410.149,10.13,6333.7,125.3,4.21,0.09,1.46,0.08,-0.1,0.12,1.25,0.185051,"10,11,37",2020-05-29,2023-01-24,2023-01-26 12:09:41,WASP-174 b,1919,1,False,False,True -363851359,1920.01,,5,5,5,5,5,5,5,17.8,46.5,78.77,0,1,0,KP,KP,13.2755,0.006,,1,qlp-s37-tois,QLP,13:22:32.37,-44:41:19.82,-3.451,0.054,-7.915,0.093,2459331.95356,0.0025113,2.5441537,1.13e-05,2.128,0.217,7.38636,0.008335,6780.0,7.67643,10.5577,,476.965,1301.0,1000.0,748.585,22.0285,5652.0,122.0,4.2,,1.31,,,,1.0,,"11,37",2020-05-29,2023-01-24,2023-01-26 12:09:41,,1920,1,False,False,True -112099249,1921.01,,5,5,5,5,5,5,5,27.6,30.7,317.0,0,0,1,KP,KP,12.1577,0.008,,1,qlp,QLP,13:58:04.08,-30:20:53.35,-4.362,0.06,-5.087,0.057,2458604.17084,0.00197,5.17958,0.00122,4.524,0.166,8.304992,0.002437,7620.0,2.24479,14.829,0.819083,669.018,1416.0,20.0,663.231,16.5585,6116.0,124.8,4.07,0.08,1.65,0.09,,,1.15,0.155871,11,2020-05-29,2020-05-29,2022-12-14 12:09:24,,1921,1,False,False,False -112604564,1922.01,,5,5,5,5,5,5,5,39.5,57.8,317.0,0,0,0,KP,KP,12.3213,0.01,,1,spoc,QLP,07:29:40.61,-29:56:16.5,2.67,0.134,-5.024,0.162,2459233.316814,0.001781212,4.5768651482226,0.00072010246,3.55927947011861,0.1493002,11.866005,0.56247,10869.4903086084,517.9199,19.1571222795841,1.9461098,1547.10138622705,1599.55597852585,16.512323,878.521,73.855,6687.0,136.3,4.09,0.11,1.78295,0.166623,,,1.42,0.243447,"7,34",2020-05-29,2021-03-11,2022-12-14 12:09:24,HATS-39 b,1922,1,False,False,True -114299824,1923.01,,5,5,5,5,5,5,5,21.7,72.9,98.96,0,0,0,KP,KP,12.9264,0.006,,1,qlp,QLP,07:37:08.01,-32:45:19.51,-6.283,0.026,0.531,0.031,2459250.356487,0.0043851,4.2041585,3.17e-05,2.124,0.334,13.195556,0.03056,12080.0,28.1462,12.1025,0.809459,355.909,1210.0,11.0,609.838,6.0405,6781.0,133.6,4.54,0.09,1.07,0.05,,,1.45,0.252809,"7,34",2020-05-29,2021-06-11,2022-12-14 12:09:24,HATS-55 b,1923,1,False,False,True -371443216,1924.01,TIC 371443216.01,5,5,5,5,5,5,5,233.3,378.8,317.0,0,4,0,KP,KP,8.0552,0.006,,1,qlp-s38-tois,QLP,09:50:19.22,-66:06:50.13,6.051,0.055,-15.398,0.051,2459358.688506,7.21e-05,2.8240691,5e-07,3.808,0.013,9.782996,1.4e-05,8970.0,0.0125358,17.7861,0.566327,4913.69,2332.0,591.0,170.696,0.933,8004.2,205.1,4.2,0.32,1.84,0.06,,,2.0,0.307835,"10,11,36,38",2020-05-29,2022-10-04,2022-12-14 12:09:24,MASCARA-4 b,1924,1,False,False,True -118956453,1925.01,,5,5,5,5,5,5,5,76.7,179.2,119.65,0,0,0,KP,KP,11.9397,0.006,,1,qlp,QLP,09:01:39.91,-20:43:13.33,-9.984,0.067,1.128,0.055,2459279.602393,0.0004058,2.3447752,1.7e-06,1.814,0.044,16.78426,0.002713,15340.0,2.49835,13.4487,0.743905,320.327,1178.0,97.0,305.603,3.6665,5515.0,133.4,4.39,0.08,1.04,0.06,,,0.969,0.126001,"8,35",2020-05-29,2021-06-11,2022-12-14 12:09:24,WASP-170 b,1925,1,False,False,True -143143769,1926.01,,5,5,5,5,5,5,5,5.8,37.5,9.44,0,0,0,KP,KP,12.3686,0.006,,1,spoc-s01-s36-b0A-CPKP,QLP,05:58:23.73,-30:48:42.48,-16.881,0.035,-7.371,0.036,2459175.372553,0.00252949,1.3372349230815,0.00011620556,1.70260976467707,0.62734777,1.332664,0.136543,1226.67605562449,125.75308,3.02657864201736,3.7305796,886.984111333286,1391.87011338494,9.910095,280.555,1.8105,5111.9,121.9,4.5,0.08,0.860256016254425,0.050804,-0.188957,0.0741647,0.859,0.102545,"6,32,33",2020-05-29,2021-12-09,2022-12-14 12:09:24,NGTS-4 b,1926,1,False,False,True -14344979,1927.01,,5,5,5,5,5,5,5,66.2,81.8,317.0,0,1,0,KP,KP,12.3353,0.007,,1,spoc-s01-s46-b0A,QLP,10:55:09.32,-00:44:13.44,-28.12,0.067,24.033,0.052,2459576.578656,0.0003136,4.11177228806481,7.233928e-06,2.12968901912732,0.025923423,24.245036,0.333462,22083.0234602132,307.08286,15.258204672994,0.7460637,268.717684914985,1032.62779788416,98.17942,325.377,3.932,5424.8,104.8,4.49,0.07,0.916163980960846,0.0434171,-0.49,0.0252237,0.94,0.111905,"9,35,45,46",2020-05-29,2022-07-15,2022-12-14 12:09:24,WASP-183 b,1927,1,False,False,True -207077681,1928.01,,5,5,5,5,5,5,5,73.8,58.2,317.0,0,1,1,KP,KP,12.3119,0.006,,1,spoc,QLP,21:23:03.09,-40:02:54.38,-3.337,0.125,-39.852,0.118,2459061.944577,0.0007090417,2.27857495182227,0.00013180774,2.15982499501818,0.05826318,14.910224,0.295156,13638.9588751358,271.81192,14.7731999073482,1.1305058,775.884856591129,1346.07441132681,29.033724,355.513,10.3715,4879.0,4879.8,4.5,2.0,1.21163,0.0878214,,,0.81,0.0967955,28,2020-05-29,2020-10-01,2022-12-14 12:09:24,WASP-144 b,1928,1,False,False,True -157266693,1929.01,,5,5,5,5,5,5,5,36.4,40.5,317.0,0,0,0,KP,KP,13.1648,0.006,,1,qlp,QLP,11:46:30.8,-33:51:36.27,-35.023,0.028,-4.597,0.022,2459329.357403,0.0006788,3.8537616,6.9e-06,3.392,0.136,20.440183,0.004082,18650.0,3.75954,14.7144,,471.61,1298.0,73.0,585.77,8.383,5697.0,122.0,4.39,,1.06,,,,1.01,,"10,36,37",2020-05-29,2021-11-10,2022-12-14 12:09:24,HATS-53 b,1929,1,False,False,True -160578764,1930.01,,5,5,5,5,5,5,5,38.5,97.3,110.21,0,0,0,KP,KP,12.1014,0.006,,1,qlp-s38-tois,QLP,14:54:38.09,-38:44:40.37,0.723,0.072,-1.53,0.063,2459355.488108,0.0008683,2.8786641,4.8e-06,2.207,0.078,9.498187,0.004386,8710.0,4.03981,12.863,0.793497,471.142,1297.0,45.0,508.885,16.1435,6017.0,133.0,4.22,0.08,1.35,0.08,,,1.11,0.147177,"11,38",2020-05-29,2022-10-04,2022-12-14 12:09:24,WASP-192 b,1930,1,False,False,True -162922904,1931.01,,5,5,5,5,5,5,5,16.1,42.8,89.31,0,0,0,KP,KP,12.0233,0.006,,1,qlp,QLP,11:27:22.81,-44:05:19.33,-8.427,0.045,-2.262,0.037,2459331.431765,0.0017149,3.8186276,1.7e-05,4.282,0.295,3.523496,0.001719,3240.0,1.58294,11.3749,0.650895,1200.24,1639.0,26.0,757.84,19.2795,6090.0,126.9,3.88,0.08,2.03,0.1,,,1.14,0.157535,"10,36,37",2020-05-29,2021-11-10,2022-12-14 12:09:24,WASP-171 b,1931,1,False,False,True -386259537,1932.01,,5,5,5,5,5,5,5,41.5,54.0,317.0,0,0,0,KP,KP,11.3299,0.007,,1,spoc,QLP,08:29:32.94,-12:56:41.17,-13.184,0.055,-3.821,0.072,2459228.937203,0.002445501,5.61077370946175,0.000892512,6.33848342972248,0.13103706,7.246107,0.182383,6651.68991692491,167.96667,18.3701735579629,1.0335122,1486.85789580685,1583.75177792991,20.09366,627.066,13.859,6013.5,210.8,4.17,1.75,2.21327,0.111191,,,1.17,0.159531,"7,8,34",2020-05-29,2021-03-11,2022-12-14 12:09:24,WASP-169 b,1932,1,False,False,True -172598832,1933.01,,5,5,5,5,5,5,5,18.2,18.9,317.0,0,0,0,KP,KP,12.941,0.007,,1,spoc,QLP,06:42:17.1,-29:46:36.41,-4.344,0.024,5.595,0.029,2459201.975798,0.0034967167,3.26331647416721,0.0008269975,5.28143373910057,0.29875922,5.454926,0.265991,5011.57250272436,244.95656,15.0902486248657,1.2484235,3163.37622170461,1912.74669849736,12.848363,1342.29,31.095,6561.0,127.4,3.93,0.09,2.08347,0.100789,,,1.36,0.230575,33,2020-05-29,2021-02-19,2022-12-14 12:09:24,,1933,1,False,False,True -125739286,1934.01,,5,5,5,5,5,5,5,87.5,127.9,317.0,0,0,0,KP,KP,10.5288,0.006,,1,qlp-s38-tois,QLP,14:20:29.46,-31:12:07.45,-21.736,0.093,-0.858,0.09,2459351.553003,0.0003127,4.5111234,3e-06,4.525,0.041,12.195915,0.000235,11170.0,0.216648,18.5483,0.961946,1085.35,1599.0,176.0,356.391,8.0225,6540.6,261.8,4.26,0.11,1.71,0.09,-0.29,0.1,1.34,0.218871,"11,38",2020-05-29,2022-10-04,2022-12-14 12:09:24,WASP-179 aka NGTS-2,1934,1,False,False,True -176685457,1935.01,,5,5,5,5,5,5,5,19.5,64.1,87.67,0,0,2,KP,KP,12.2682,0.007,,1,qlp,QLP,09:27:40.95,-19:20:51.53,-6.078,0.057,1.723,0.063,2459272.947539,0.0014894,4.4352884,1.28e-05,1.89,0.21,6.98197,0.005678,6410.0,5.22977,11.2110231199289,1.5134789,196.663,1365.12323866296,23.0,609.128,15.5615,6245.0,124.1,4.24,0.09,1.38,0.07,,,1.21,0.173616,"8,35",2020-05-29,2021-06-11,2022-12-14 12:09:24,NGTS-9b,1935,1,False,False,True -178289267,1936.01,,5,5,5,5,5,5,5,77.6,202.2,110.01,0,0,2,KP,KP,11.7076,0.007,,1,qlp,QLP,04:03:47.59,-19:03:24.55,-12.664,0.046,-14.115,0.04,2459167.711102,0.0002561,2.3506186,1e-06,2.369,0.032,17.446053,0.000347,15940.0,0.319376,12.801,0.662199,570.233,1361.0,160.0,279.485,3.084,5593.0,124.5,4.46,0.08,0.97,0.05,,,0.99,0.130149,"4,5,31",2020-05-29,2021-02-01,2022-12-14 12:09:24,HATS-57 b,1936,1,False,False,True -268301217,1937.01,TIC 268301217.01,3,4,4,3,3,4,4,113.0,86.1,317.0,1,0,3,PC,PC,12.4933,0.006,,1,qlp-s36-tois,CTOI,07:45:28.97,-52:22:59.73,-5.675,0.041,11.296,0.031,2459989.041517,0.00053834973,0.9466787,5e-07,1.09,0.121,18.05305,0.010791,16490.0,9.93893,14.6661,0.836152,1220.35,1646.0,110.0,415.135,2.909,5707.0,135.9,4.39,0.08,1.07,0.05,,,1.02,0.134052,"7,9,34,35,36,61,62",2020-06-02,2023-07-07,2023-07-07 00:00:00,TOI-1937 A b,1937,1,False,False,True -128449971,1938.01,,3,4,3,3,1,4,4,30.0,140.4,100.68,5,0,0,PC,PC,10.7347,0.006,,1,spoc,QLP,14:37:33.45,-42:01:45.84,-12.741,0.335,-18.953,0.245,2459346.075404,0.0022463729,12.7006348223962,0.003197946,2.59548588107168,0.2146687,6.14302,0.526939,5641.95451641731,485.21072,12.183247464403,11.153878,132.06464408042,864.602308719777,12.257067,245.295,14.687,6200.5,265.9,4.33,2.0,1.10563004016876,0.0868842,,,1.24,0.181621,"11,38",2020-06-17,2020-06-04,2022-12-14 12:09:24,first transit may not be real,1938,1,False,False,True -325172035,1939.01,,5,5,5,5,5,5,5,43.3,257.0,30.66,2,0,1,PC,FP,8.2376,0.6,,1,spoc,QLP,11:49:58.76,-63:56:56.65,-9.897,0.067,1.268,0.057,2459308.612847,0.0012564602,2.89702019618578,0.00026764677,4.15023360632483,0.081738316,3.350234,0.097519,3080.92393082621,89.813965,,,631.568793284368,1278.57119291459,39.63694,3847.17,621.77,8862.0,240.0,4.1,1.44,,,,,,,"10,11,37",2020-06-17,2021-07-09,2022-12-14 12:09:24,B8III host; transiting object likely too large; SPOC assuming solar radius,1939,1,False,False,True -7413227,1940.01,,3,4,3,3,3,4,4,273.8,485.9,317.0,0,3,2,PC,PC,9.46381,0.006,,1,qlp,QLP,14:10:35.48,-27:59:35.06,5.07,0.125,-2.616,0.172,2459359.556625,0.0008427,3.4158625,6.2e-06,1.8,0.07,2.249803,0.664994,2070.0,612.295,26.6801,6.11303,1663.15,1779.0,43.0,264.051,5.301,5986.0,105.7,3.66,0.37,2.19,0.11,,,1.176,0.161808,"11,38",2020-06-17,2021-07-28,2022-12-14 12:09:24,possible EB; V-shaped,1940,1,False,False,True -167009792,1941.01,,5,5,5,5,5,5,5,5.4,40.2,5.36,2,0,1,PC,FP,8.5122,0.006,,1,qlp,SPOC/QLP,06:20:24.49,-66:24:01.68,34.203,0.047,53.698,0.047,2458326.51089,0.00407,1.13305,1e-05,1.073,0.884,0.108579,0.003642,100.0,3.35467,2.16887,0.435629,925.999,1536.0,9.0,153.896,0.6075,5883.8,133.8,3.77,0.3,2.1,0.1,,,1.08,0.141361,"1,2,3,4,5,7,8,10,11,12,13,27,28,29",2020-06-17,2020-11-17,2022-12-14 12:09:24,possibly NEB or stellar variability,1941,1,False,False,True -308919449,1942.01,,5,5,5,5,5,5,5,2.6,4.7,2.59,2,2,1,EB,FP,9.8146,0.006,,1,qlp-s62-ffi,QLP,08:10:28.35,-65:51:08.56,-8.549,0.045,-7.848,0.046,2460012.02774,0.0037067,1.6563738,6.4e-06,1.741,0.23,0.267124,0.015498,246.0,14.2743,1.42047,0.0911265,1000.88,1566.0,19.0,130.335,0.3975,5614.1,76.6,4.34,0.29,1.02,0.05,,,1.06,0.13382,"1,2,4,5,8,9,10,11,12,28,29,31,32,34,35,36,37,38,61,62",2020-06-17,2023-03-22,2023-03-24 12:12:10,possibly stellar variability; TFOP FP; retired as NEB,1942,1,False,False,True -382980571,1943.01,,2,4,4,2,3,4,4,10.1,72.4,8.65,4,2,3,PC,PC,10.1598,0.006,,1,qlp,QLP,12:14:48.99,-63:05:12.18,-91.335,0.044,-24.515,0.044,2459359.816442,0.001455,1.742564,1.45e-05,1.72,0.131,0.803742,0.001769,740.0,1.62972,2.86502,0.193621,782.573,1473.0,19.0,129.892,0.552,5309.7,81.2,,,0.95,0.05,,,1.03,0.124484,"11,37,38",2020-06-17,2021-08-12,2022-12-14 12:09:24,crowded field; potential L1 planet,1943,1,False,False,True -461080504,1944.01,,5,5,5,5,5,5,5,94.2,210.9,317.0,1,0,1,PC,FP,10.9572,0.006,,1,spoc,QLP,10:38:19.21,-61:17:23.23,-20.972,0.051,7.572,0.048,2459285.44868,0.0037644133,6.09884706393276,0.0019955332,5.40881803874551,0.21667112,9.660003,0.606519,8857.72841475846,558.46826,24.994394460156,11.290005,1423.58183203086,1566.62610418388,14.772681,525.922,9.3505,7023.2,108.8,4.11,1.46,1.82219004631042,0.0691734,,,1.66,0.277649,"10,11,36",2020-06-17,2021-05-20,2022-12-14 12:09:24,Large centroid offset. Crowded field. Bad transit shape. Likely SV.,1944,1,False,False,True -357536526,1945.01,,5,5,5,5,5,5,5,30.9,83.8,45.09,1,0,1,PC,FP,10.6707,0.006,,1,qlp,QLP,09:10:39.09,-64:28:17.5,-14.832,0.047,-21.967,0.041,2458545.66094,0.00496,1.57363,0.00018,2.558,0.151,0.771146,0.198404,710.0,182.72,7.59717,2.4985,18801.9,3262.0,22.0,279.155,1.8855,5342.5,239.4,4.01,0.34,1.66,0.09,,,0.98,0.122252,"9,10,11",2020-06-17,2020-06-04,2022-12-14 12:09:24,still planet-sized if on 357536500; possible secondary,1945,1,False,False,True -127315102,1946.01,,5,5,5,5,5,5,5,114.7,218.6,317.0,1,0,0,EB,FP,8.4672,0.006,,1,qlp,QLP,14:29:07.11,-43:21:43.12,-33.265,0.124,-18.453,0.171,2459338.849888,0.0008609,10.8458712,2.35e-05,3.379,0.223,3.392792,0.241568,3120.0,222.468,21.6846,4.33655,878.752,1516.0,53.0,230.033,6.726,6670.3,270.7,4.29,0.62,2.56,0.13,,,1.54,0.260038,"11,38",2020-06-17,2021-10-05,2022-12-14 12:09:24,eccentric EB; retired as TFOP FP/NEB,1946,1,False,False,True -460140752,1947.01,,5,5,5,5,5,5,5,,,29.29,1,0,1,EB,FP,8.9301,0.006,,1,qlp-s64-ffi,QLP,10:26:57.23,-60:39:54.81,2.8,3.6,8.5,3.4,2460066.821944,0.000949,12.0077462,1.22e-05,2.818,0.303,3.176076,1.049247,2921.0,965.925,,,115.384,913.0,53.0,,,4990.7,253.6,,,,,,,,,"10,11,36,37,63,64",2020-06-17,2023-05-31,2023-06-16 12:14:51,Likely large star; TFOP FP/retired as NEB,1947,1,False,False,True -31268146,1948.01,,2,4,2,2,3,4,4,2.2,21.7,5.55,0,2,3,PC,PC,10.1302,0.006,,1,qlp-s62-ffi,QLP,05:52:17.12,-70:55:13.11,-11.765,0.103,-40.92,0.1,2460013.457382,0.0090229,3.6474778,3e-05,3.997,0.935,0.293188,0.018274,270.0,16.8309,2.22236,0.149581,1393.3,1702.0,18.0,219.482,3.382,5928.0,161.5,4.24,0.12,1.48,0.07,0.109784,0.0474794,1.11,0.141205,"1,2,4,5,6,7,8,9,10,11,12,27,28,29,30,31,32,34,35,36,37,38,39,61,62",2020-06-17,2023-04-12,2023-04-25 12:12:35,significant depth aperture correlation in qlp and centroid offset on another star (TIC 726278150) in spoc multi-sector,1948,1,False,False,True -334125713,1949.01,,3,4,4,3,3,4,4,113.4,155.4,317.0,5,3,1,PC,PC,9.4306,0.006,,1,qlp-s37-tois,QLP,12:11:05.31,-52:40:19.91,-13.264,0.041,-12.522,0.037,2459331.900044,0.0023722,4.6211026,2.26e-05,3.882,0.28,12.778012,0.009135,11700.0,8.41362,15.4381,0.776216,948.955,1546.0,17.0,200.156,1.246,6531.7,121.1,4.29,0.39,1.45,0.06,,,1.47,0.257713,"10,11,37",2020-06-17,2023-01-24,2023-01-26 12:09:41,,1949,1,False,False,False -327663613,1950.01,,5,5,5,5,5,5,5,16.2,97.1,30.73,0,0,1,EB,FP,8.4215,0.006,,1,qlp-s11-beta-cam3,QLP,12:39:14.42,-69:32:31.25,-13.675,0.059,-2.364,0.066,2458599.56984,0.00531,1.41144,0.00052,2.509,0.51,0.45,0.001419,414.379,1.30711,,,20094.8,3316.0,17.0,362.573,5.743,9208.0,149.4,3.85,0.49,,,,,2.61,0.340599,"1,2,3,4,5,6,7,8,9,10,11",2020-06-17,2021-12-07,2022-12-14 12:09:24,possible centroid offset; TFOP retired as NEB,1950,1,False,False,True -356590734,1951.01,,3,4,4,3,3,4,4,96.9,128.7,317.0,3,0,1,PC,PC,9.8722,0.006,,1,qlp-s39-tois,QLP,11:28:37.49,-78:48:05.71,-48.632,0.044,11.613,0.038,2459381.402207,0.0002095,4.8294029,2e-06,2.327,0.188,9.421521,0.004927,8640.0,4.53806,18.3984,0.932022,325.199,1183.0,205.0,278.462,1.971,5877.5,123.4,4.18,0.39,1.96,0.09,,,1.35,0.221505,"11,39",2020-06-17,2023-01-24,2023-01-26 12:09:41,large PC,1951,1,False,False,True -394509844,1952.01,,5,5,5,5,5,5,5,37.0,122.3,88.71,3,0,0,PC,FP,10.5,0.006,,1,qlp,QLP,10:19:59.09,-79:48:09.37,-29.071,0.044,-12.333,0.035,2458599.31398,0.00105,6.89132,0.00069,5.369,0.587,6.468504,0.002111,5940.0,1.94454,11.3151,0.581361,673.704,1419.0,82.0,241.981,1.3165,5488.0,84.4,4.14,0.36,1.41,0.07,,,1.06,0.139153,11,2020-06-17,2020-06-17,2022-12-14 12:09:24,need SG1 to check 394509842,1952,1,False,False,True -242536549,1953.01,,5,5,5,5,5,5,5,101.1,254.2,80.06,0,0,0,EB,FP,9.5187,0.006,,1,qlp,QLP,14:20:34.94,-41:58:59.95,-6.986,0.092,-3.886,0.074,2459359.132432,0.0005716,0.6923563,1.3e-06,0.803,0.101,0.879803,0.330544,810.0,304.396,10.6207,3.58922,14950.4,3080.0,25.0,253.478,3.3285,6422.1,205.8,3.86,0.57,1.85,0.08,,,1.4,0.231268,"11,38",2020-06-17,2021-10-05,2022-12-14 12:09:24,centroid offset closer to neighboring star; TFOP FP; retired as EB,1953,1,False,False,True -466113537,1954.01,,3,4,3,3,3,4,4,23.9,104.6,47.89,0,0,1,PC,PC,8.9718,0.006,,1,qlp,QLP,11:00:07.99,-59:58:42.27,-22.482,0.045,1.368,0.044,2458572.59809,0.00879,4.90427,0.0016,5.259,0.832,1.738569,0.005587,1600.0,5.1462,7.86596,0.594258,2027.06,1869.0,10.0,232.276,1.5305,7119.5,299.0,4.14,0.36,1.98,0.08,,,1.51,0.255081,"10,11",2020-06-17,2020-06-15,2022-12-14 12:09:24,crowded field.,1954,1,False,False,False -166184426,1955.01,TIC 166184426.01,5,5,5,5,5,5,5,1.0,98.9,5.65,7,1,1,PC,FP,11.1825,0.007,,1,qlp,QLP,13:44:25.22,-40:20:11.05,150.065,0.12,71.874,0.143,2458600.45092,0.00249,16.3152,0.00125,1.992,0.345,2.717739,0.348664,2500.0,321.08,2.23088,0.616582,26.312,630.0,13.0,22.4731,0.04095,3625.0,65.0,4.81,0.36,0.31,0.01,-0.494175,0.0860478,0.289172,0.0202044,11,2020-06-17,2020-06-15,2022-12-14 12:09:24,two stars in the same pixel,1955,1,False,False,True -334911765,1956.01,,5,5,5,5,5,5,5,17.7,93.8,14.24,3,0,0,PC,FP,10.4877,0.006,,1,qlp,QLP,14:15:54.82,-62:54:23.91,-59.783,0.035,-3.942,0.058,2458600.59694,0.0048,0.88958,0.00029,1.844,0.276,1.347148,0.003524,1240.0,3.24587,3.8492,0.281552,4433.23,2273.0,13.0,191.877,1.394,5586.2,77.6,4.21,0.33,1.11,0.05,,,1.13,0.148445,11,2020-06-17,2020-06-17,2022-12-14 12:09:24,Short period; crowded field,1956,1,False,False,True -302659412,1957.01,,2,4,2,2,3,4,4,2.8,26.6,13.11,2,1,1,PC,PC,9.4845,0.006,,1,qlp-s63-ffi,QLP,08:59:51.93,-67:57:20.15,-19.821,0.043,-15.188,0.037,2460025.908737,0.0078088,14.5189018,0.0001071,2.965,1.211,0.514761,0.060871,474.0,56.0623,3.66367,0.345354,55.7282,761.0,10.0,206.826,1.003,5844.8,50.4,4.13,0.36,1.79,0.09,,,1.1,0.14365,"9,10,11,36,38,63",2020-06-17,2023-05-10,2023-06-16 12:14:51,hint of centroid offset; slight depth aperture correlation,1957,1,False,False,True -356747847,1958.01,,3,4,3,3,3,4,4,,,317.0,0,0,1,PC,PC,9.9055,0.006,,1,qlp,SPOC,11:41:20.55,-78:09:46.83,-19.045,0.039,2.744,0.033,2459336.491983,0.0035041,14.6482374,9.72e-05,1.953,0.421,1.129753,0.002751,1040.0,2.53335,18.1297,,9.70045,491.0,12.0,496.731,5.8525,4851.6,190.4,,,5.42,,,,,,"11,12,38",2020-06-17,2021-08-12,2022-12-14 12:09:24,possible EB or large planet; period updated to 14.648 days with qlp-s38,1958,1,False,False,True -400323948,1959.01,,5,5,5,5,5,5,5,15.7,33.1,55.42,0,5,1,EB,FP,11.0897,0.006,,1,spoc,QLP,11:04:20.64,-67:59:30.6,7.241,0.04,14.358,0.039,2459336.010178,0.006813165,3.22428082457996,0.0016209363,4.31000768353036,0.49956045,0.943504,0.091655,868.621441418607,84.414024,8.57521120601903,1.4759883,527.61210994281,1222.35805383333,9.158857,407.801,3.7995,4866.2,129.7,,,2.6241500377655,,,,,,"11,37,38",2020-06-17,2021-08-19,2022-12-14 12:09:24,centroid offset centered nearer another star in SPOC s37 and s38; retired as TFOP FP/NEB,1959,1,False,False,True -318828309,1960.01,,3,4,3,3,3,4,4,6.1,28.3,28.02,0,0,1,PC,PC,9.1962,0.006,,1,qlp-s37-tois,QLP,11:33:15.4,-60:04:33.58,-7.938,0.055,4.624,0.046,2459330.051424,0.0085702,5.3418199,8.19e-05,4.99,0.508,0.358352,0.000775,330.0,0.714033,5.7387,0.384384,1467.54,1724.0,11.0,400.718,5.3345,6466.2,149.8,3.7,0.48,3.28,0.13,,,1.5,0.259306,"10,11,37",2020-06-17,2023-01-24,2023-01-26 12:09:41,centroid offset centered on another star; likely EB,1960,1,False,False,True -179319057,1961.01,,3,4,3,3,1,4,4,7.5,46.8,22.41,5,0,0,PC,PC,10.0032,0.006,,1,qlp,QLP,14:06:22.42,-40:31:26.07,-10.13,1.9,-7.316,1.216,2459352.079496,0.0024455,6.7018963,3.37e-05,1.874,0.232,1.03194,0.001717,950.0,1.58124,5.02216,,109.429,,12.0,240.34,,6231.8,183.8,4.21,1.97,1.52,,,,,,"11,38",2020-06-17,2021-07-28,2022-12-14 12:09:24,,1961,1,False,False,True -141663464,1962.01,,5,5,5,5,5,5,5,278.3,593.7,317.0,1,0,0,PC,FP,7.185,0.006,,1,qlp,QLP,15:14:30.99,-43:23:13.51,-6.688,0.114,-15.529,0.086,2458601.34368,0.00078,1.76447,0.00012,2.749,0.331,2.870134,0.000688,2640.0,0.633562,27.921,,17578.1,3207.0,55.0,326.628,5.9945,8049.0,395.5,3.3,0.5,5.08,,,,,,11,2020-06-17,2020-06-15,2022-12-14 12:09:24,TFOP FP; transit signal is coming from 141663460,1962,1,False,False,True -190271688,1963.01,,3,4,3,3,3,4,4,100.1,199.2,317.0,9,0,1,PC,PC,10.163,0.006,,1,qlp,QLP,14:45:22.44,-54:45:40.13,-15.989,0.251,-1.662,0.214,2459341.019296,0.0002706,12.6513671,7.1e-06,4.277,0.133,28.145669,0.007888,25590.0,7.26515,19.222,1.0641,106.575225072171,842.0,219.0,158.09,2.4435,5394.6,115.6,3.77,0.4,1.19,0.06,,,0.97,0.125112,"11,38",2020-06-17,2020-06-17,2022-12-14 12:09:24,1300 ppm secondary in spoc-s38,1963,1,False,False,True -242083025,1964.01,,3,4,3,3,3,4,4,28.1,91.3,38.36,1,0,1,PC,PC,10.7892,0.006,,1,qlp-s37-tois,QLP,13:26:34.13,-39:37:47.59,-19.251,0.075,3.228,0.076,2459331.419854,0.0008699,0.6467049,1.5e-06,0.992,0.341,1.379761,0.00983,1270.0,9.05382,6.88932,0.6454,7773.82,2615.0,26.0,405.208,7.3945,6308.3,161.0,4.0,0.58,1.71,0.08,,,1.36,0.225253,"11,37",2020-06-17,2023-01-24,2023-01-26 12:09:41,possible centroid offset; possible secondary,1964,1,False,False,True -295354126,1965.01,,5,5,5,5,5,5,5,,,10.57,0,1,1,EB,FP,8.177301,0.007,,1,qlp,QLP,14:52:36.47,-61:34:07.24,-6.158,0.052,-7.883,0.082,2459357.403106,0.0011556,2.2778177,6.5e-06,3.212,0.098,0.955869,0.326449,880.0,300.625,,,95451.3,4896.0,43.0,401.097,7.8685,9096.5,385.4,,,,,,,,,"11,12,38",2020-06-17,2021-08-12,2022-12-14 12:09:24,no stellar radius; B8IV/V host; odd-even + centroid offset centered on another star in SPOC s38; retired as TFOP FP/NEB,1965,1,False,False,True -242120884,1966.01,,3,4,3,3,3,4,4,25.8,98.7,25.89,2,0,1,PC,PC,9.0492,0.006,,1,spoc,QLP,13:59:55.81,-43:19:38.34,-39.221,0.08,1.386,0.071,2459334.472849,0.000678374,0.622875190656931,3.0775365e-05,0.877006584685882,0.18512277,0.582041,0.030725,535.936202135333,28.298826,5.48022318772662,3.974782,35835.2883122318,3509.1139838565,17.298529,254.169,3.1755,6390.7,260.2,3.83,0.44,2.30849003791809,0.103769,,,1.37,0.231378,"11,38",2020-06-17,2021-07-28,2022-12-14 12:09:24,Strong odd-even seen in spoc-s38 Tier 2 plots - likely EB; V-shaped; variable star,1966,1,False,False,True -320079492,1967.01,,2,4,2,2,3,4,4,39.2,123.3,22.85,6,1,1,PC,PC,9.9666,0.006,,1,qlp-s38-tois,QLP,11:39:22.81,-65:10:34.68,-133.217,0.041,27.071,0.041,2459359.763165,0.0007264,0.4262195,8e-07,0.45,0.145,0.619046,0.007076,570.0,6.51719,5.09474,0.488523,3290.2,2109.0,28.0,186.789,0.832,5343.0,121.3,4.1,0.31,1.5,0.07,,,1.01,0.126702,"11,37,38",2020-06-17,2022-10-04,2022-12-14 12:09:24,potential L1 candidate with Rp uncertainty,1967,1,False,False,True -210445631,1968.01,,3,5,5,3,3,4,4,60.1,161.7,125.97,5,0,1,PC,APC,10.52,0.006,,1,qlp,QLP,14:08:46.38,-56:19:20.43,-23.1,3.1,-9.1,2.9,2458601.95696,0.0012,3.97195,0.00036,4.297,0.32,8.359697,0.002898,7670.0,2.66893,13.8556,,1605.22,,73.0,357.686,,6535.3,317.7,4.2,1.92,1.55,,,,,,11,2020-06-17,2020-06-17,2022-12-14 12:09:24,crowded field,1968,1,False,False,False -293708935,1969.01,,5,5,5,5,5,5,5,12.6,90.0,10.73,0,0,0,PC,FP,8.5941,0.006,,1,spoc,QLP,14:49:20.06,-60:04:48.92,-153.952,0.035,-86.496,0.067,2458597.350807,0.0032556371,2.68559148108602,0.0005545512,2.04911873395611,0.3399045,0.530229,0.051918,488.240178785328,47.81683,3.57297122165842,1.3209385,1856.70048095233,1674.19180605616,9.359,106.955,0.394,5796.0,107.5,4.14,0.28,1.51715,0.176909,,,1.12,0.147828,11,2020-06-17,2020-07-21,2022-12-14 12:09:24,possible blend and likely FP; event is on 293708831,1969,1,False,False,True -162695785,1970.01,,3,4,4,3,3,4,4,91.5,118.5,317.0,5,2,1,PC,PC,11.0048,0.006,,1,qlp-s38-tois,QLP,12:42:52.89,-53:41:17.89,-18.984,0.075,-0.59,0.059,2459359.523348,0.0002397,2.5599662,1.4e-06,2.706,0.022,12.349646,0.000401,11310.0,0.369587,17.4735,0.893227,1362.9,1692.0,197.0,421.946,12.3725,6432.2,218.0,4.11,1.5,1.57,0.08,,,1.44,0.26102,"11,37,38",2020-06-17,2022-03-21,2022-12-14 12:09:24,possible secondary consistent with planet,1970,1,False,False,True -253132689,1971.01,,5,5,5,5,5,5,5,14.0,55.2,28.88,0,0,1,EB,FP,10.3345,0.006,,1,qlp-s64-ffi,QLP,12:59:04.75,-57:15:13.37,-6.326,0.072,-20.071,0.064,2460062.383323,0.0019982,3.217824,7.4e-06,1.735,0.259,1.39933,0.067774,1288.0,62.4203,5.84702,0.35263,227.191,1081.0,23.0,247.145,4.5195,5418.0,169.6,4.17,0.56,1.67,0.09,,,1.01,0.12931,"11,37,38,64",2020-06-17,2023-05-31,2023-06-16 12:14:51,TFOP FP/NEB; centroid offset centered nearby,1971,1,False,False,True -267414551,1972.01,,3,4,3,3,3,4,4,7.7,48.2,15.64,0,2,1,PC,PC,9.7472,0.006,,1,qlp,QLP,11:44:16.86,-59:54:42.67,-9.942,0.058,34.037,0.054,2458571.46158,0.00734,4.7631,0.00115,1.838,0.531,0.923268,0.005767,850.0,5.31129,4.06445,0.421733,184.105,1026.0,9.0,202.033,1.4435,6105.1,328.2,4.12,0.37,1.48,0.07,,,1.19,0.171905,"10,11",2020-06-17,2020-06-17,2022-12-14 12:09:24,crowded field. A hint of aperture dependent depth.,1972,1,False,False,True -47617161,1973.01,,3,4,4,3,3,4,4,39.0,136.8,61.39,8,2,1,PC,PC,10.7565,0.007,,1,qlp-s38-tois,QLP,14:41:42.43,-33:49:34.08,,,,,2459354.67126,0.0006518,3.9194733,6.7e-06,2.025,0.205,6.053538,0.002795,5560.0,2.57473,,,132.064,944.0,60.0,204.984,,5149.0,415.8,4.35,2.0,,,,,,,"11,38",2020-06-17,2022-10-04,2022-12-14 12:09:24,no TIC or Gaia stellar parameters,1973,1,False,False,True -295562522,1974.01,,3,5,5,3,3,4,4,69.5,73.3,317.0,4,2,1,PC,APC,10.5833,0.006,,1,qlp-s38-tois,QLP,11:25:30.81,-67:46:42.87,-13.795,0.045,12.604,0.039,2459354.324182,0.0009235,5.438218,1.1e-05,1.675,0.277,8.534772,0.080143,7830.0,73.8121,14.7798,1.6112,157.789,987.0,37.0,238.426,1.417,5342.0,124.0,4.09,0.36,1.49,0.08,,,0.98,0.120803,"10,11,37,38",2020-06-17,2022-10-04,2022-12-14 12:09:24,V-shaped; difference image result inconsistent between orbits; spectral disposition SB1,1974,1,False,False,True -467281353,1975.01,,5,5,5,5,5,5,5,9.6,46.9,16.36,8,2,1,PC,FP,10.2081,0.006,,1,qlp-s37-tois,QLP,11:12:18.26,-60:55:57.29,-65.356,0.047,13.636,0.045,2459332.170832,0.0044341,2.8319354,2.14e-05,3.21,0.391,0.847205,0.001159,780.0,1.06792,4.18335,0.276048,914.113,1531.0,18.0,205.367,1.249,5408.7,62.5,,,1.48,0.08,,,0.97,0.126883,"10,11,37",2020-06-17,2023-01-24,2023-01-27 12:02:31,crowded field,1975,1,False,False,True -329888006,1976.01,,3,5,5,3,3,4,4,78.1,318.8,66.02,3,1,1,PC,APC,8.8681,0.006,,1,qlp,QLP,14:11:23.19,-50:04:11.92,-21.2,1.5,-5.9,1.6,2459360.021406,0.0004662,7.6943096,8e-06,8.903,0.165,8.064323,0.000371,7400.0,0.341581,,,925.441,1536.0,105.0,201.2072,117.809,4956.8,100.5,,,,,,,,,"11,38",2020-06-17,2021-08-12,2022-12-14 12:09:24,no information of the star on TIC 8; see observing notes re: potential chromaticity; may not be main sequence star,1976,1,False,False,True -383531859,1977.01,,5,5,5,5,5,5,5,32.8,72.7,317.0,0,0,1,EB,FP,9.5918,0.006,,1,qlp,QLP,14:24:35.45,-60:23:00.96,-2.1,1.5,-2.2,1.5,2459352.185799,0.0025185,17.0614756,7.55e-05,3.384,0.341,2.968113,0.06056,2730.0,55.776,17.1048026705141,10.311735,425.866990397294,1158.61259207514,27.0,437.902,,9184.7,290.3,4.09,1.38,2.14182996749878,,,,,,"11,38",2020-06-17,2021-09-24,2022-12-14 12:09:24,crowded field; eccentric EB; TFOP FP; retired as NEB,1977,1,False,False,True -458856474,1978.01,,5,5,5,5,5,5,5,562.0,1064.0,317.0,6,0,1,PC,FP,5.666,0.6,,1,spoc,QLP,10:44:33.72,-59:44:15.39,-7.582,0.063,2.92,0.062,2459286.204593,0.0016991117,6.07833441485207,0.000910553,4.89045284994873,0.05943209,17.697958,0.771122,16168.2889130108,709.9779,16.9877964987968,2.356609,235.131008325955,998.728000814485,10.794149,2503.46,256.23,8719.5,297.6,4.08,1.27,1.0,,,,,,"10,11,36",2020-06-17,2020-06-15,2022-12-14 12:09:24,V* V560 Car; SB with P=6.0803; TFOP FP; retired as SEB1,1978,1,False,False,True -458857720,1979.01,,5,5,5,5,5,5,5,51.4,294.8,33.08,3,0,1,PC,FP,9.8678,0.007,,1,qlp,QLP,10:44:11.21,-59:55:30.61,-18.128,0.073,4.679,0.071,2458571.79697,0.00246,1.30924,0.0001,2.535,0.434,3.66511,0.011238,3370.0,10.3509,,,52079.9,4208.0,34.0,395.582,6.484,8832.5,149.0,4.26,0.63,,,,,,,"10,11",2020-06-17,2020-06-16,2022-12-14 12:09:24,crowded field,1979,1,False,False,True -127793615,1980.01,,5,5,5,5,5,5,5,39.4,56.3,317.0,0,0,0,PC,FP,10.9805,0.006,,1,qlp,QLP,14:33:04.82,-43:17:54.64,-28.197,0.136,-25.698,0.158,2458604.91156,0.00158,9.27898,0.00103,6.514,0.315,9.837776,0.002737,9020.0,2.52091,15.0807,0.893189,1058.72,1589.0,56.0,343.388,12.2075,5898.8,138.4,4.08,0.48,1.45,0.08,,,1.22,0.179734,11,2020-06-17,2020-06-17,2022-12-14 12:09:24,possibly 2x period,1980,1,False,False,True -378613125,1981.01,,3,4,3,3,3,4,4,6.1,41.8,22.21,0,0,1,PC,PC,10.001,0.006,,1,qlp-s64-ffi,QLP,10:22:21.75,-63:39:16.63,-13.642,0.058,4.457,0.054,2460063.136243,0.0041908,2.4763492,1.24e-05,3.593,0.533,0.644033,0.039418,593.0,36.3048,4.72716,0.258132,14633.4,3064.0,13.0,540.252,9.6545,8749.3,281.8,,,2.14,0.07,,,2.49,0.3148,"10,11,63,64",2020-06-17,2023-06-28,2023-06-28 00:00:00,possible centroid offset towards TIC 378613150,1981,1,False,False,False -437329044,1982.01,,3,4,4,3,4,4,4,15.1,84.9,70.29,7,20,3,PC,PC,10.1919,0.006,,1,qlp-s37-tois,QLP,13:50:20.36,-23:23:00.16,-29.626,0.071,-6.568,0.061,2459323.825798,0.0011629,17.1725007,3.7e-05,5.016,0.206,3.926599,0.000893,3610.0,0.822301,9.89011,0.430682,107.942,897.0,34.0,266.509,2.845,6617.0,235.2,4.21,0.39,1.41,0.06,,,1.393,0.216697,"11,37",2020-06-17,2023-01-24,2023-01-26 12:09:41,period may be half (~8.5 days),1982,1,False,False,True -89535068,1983.01,,5,5,5,5,5,5,5,15.4,88.1,29.12,1,0,1,EB,FP,10.3349,0.006,,1,spoc,QLP,08:29:07.45,-57:11:39.15,-16.422,0.052,-22.274,0.047,2459288.09218,0.0039844196,6.11109450729485,0.003965635,4.25663178803618,0.61395943,1.192959,0.169365,1098.15267195855,155.97885,5.87320797801241,11.9655285,249.203040979789,1013.346761687,18.0,162.148,0.816,5725.0,235.6,4.54,0.31,1.072350025177,0.0504698,-0.0475684,0.0654673,1.01,0.124883,"10,35,36",2020-06-17,2021-04-28,2022-12-14 12:09:24,TFOP FP; retired as NEB,1983,1,False,False,True -162246865,1984.01,,5,5,5,5,5,5,5,10.0,67.7,9.4,5,2,1,EB,FP,10.361,0.006,,1,qlp-s37-tois,QLP,11:15:29.17,-44:25:44.35,-12.725,0.05,-24.449,0.044,2459331.916143,0.0014833,0.5646193,2.1e-06,1.295,0.236,0.553867,0.000872,510.0,0.803011,3.01498,0.181048,8493.1,2674.0,23.0,252.81,2.018,6237.0,102.5,4.24,0.41,1.3,0.06,,,1.32,0.208669,"10,36,37",2020-06-17,2023-01-24,2023-01-26 12:09:41,V-shaped; possible centroid offset; retired as TFOP FP/NEB,1984,1,False,False,True -469212332,1985.01,,3,5,5,3,3,4,4,40.6,127.1,317.0,2,0,1,PC,APC,9.9681,0.007,,1,qlp-s37-ffi,QLP,09:53:33.73,-58:22:33.88,1.58,0.06,-0.841,0.056,2460027.634922,0.0013176,30.7864669,3.41e-05,3.466,0.144,9.541999,0.067441,8750.0,62.1135,23.8125,1.90419,112.151,861.0,87.0,332.321,3.4545,6101.8,153.7,,,2.05,0.06,,,1.85,0.283181,"9,10,36,37,63",2020-06-17,2023-05-10,2023-05-11 00:00:00,TFOP APC/BEB/SB2; v-shaped; large PC for insolation,1985,1,False,False,True -468997317,1986.01,,3,5,5,3,3,4,4,,,100.66,1,0,2,EB,APC,8.135,0.006,,1,spoc,SPOC/QLP,09:36:05.7,-51:44:40.73,-15.554,0.052,4.79,0.052,2459256.974533,0.0011878877,7.50438291556428,0.00061968726,4.89677710519152,0.05350605,13.634939,0.510168,12479.717683201,469.77145,,,177.529029309599,930.973017979197,22.283772,,,8613.8,1359.0,,,,,,,,,"9,10,35,36",2020-06-17,2021-05-10,2022-12-14 12:09:24,"no stellar radius; variable star; Host type is B9III. Too large with that radius, assuming solar radius in SPOC report; TFOP APC/EB",1986,1,False,False,True -349088467,1987.01,,5,5,5,5,4,5,5,57.1,126.6,97.64,0,2,3,PC,APC,9.62418,0.006,,1,qlp-s46-tois,QLP,12:21:19.65,-14:03:44.56,-28.097,0.14,-35.888,0.108,2459575.311006,0.0005823,2.5861465,3.1e-06,1.299,0.23,2.728624,0.004401,2510.0,4.05387,11.9748,0.835819,271.803,1131.0,70.0,273.491,6.227,5635.4,95.4,3.71,0.45,2.33,0.13,,,1.044,0.132311,"10,36,46",2020-06-17,2022-03-11,2022-12-14 12:09:24,TFOP SB2/APC; v-shaped,1987,1,False,False,True -161156159,1988.01,,5,5,5,5,5,5,5,20.9,60.0,42.13,1,0,1,EB,FP,10.1854,0.006,,1,qlp-s64-ffi,QLP,12:40:31.8,-48:44:27.25,4.353,0.055,0.291,0.053,2460064.293216,0.0016912,2.2818488,3.8e-06,3.973,0.427,1.611342,0.032816,1483.0,30.2245,7.2854,0.417761,2351.9,1940.0,33.0,299.378,7.0665,5368.0,124.8,,,2.15,0.12,,,1.0,0.123097,"10,11,37,64",2020-06-17,2023-05-31,2023-06-16 12:14:51,NEB on 161156158; centroid offset centered on another star,1988,1,False,False,True -324395151,1989.01,,5,5,5,5,5,5,5,48.8,239.7,47.76,6,0,1,PC,FP,10.2581,0.017,,1,spoc,QLP,11:47:27.92,-64:52:58.71,-6.47,0.036,0.078,0.036,2459309.575644,0.00090548734,3.45514790437396,0.00023969126,5.74447040435466,0.070289016,5.651528,0.096455,5191.72600144186,88.83485,,,499.344766637163,1205.64618213519,30.213356,1541.16,53.27,8046.5,252.7,4.12,1.5,,,,,,,"10,37",2020-06-17,2021-07-09,2022-12-14 12:09:24,spoc assuming solar radius; likely too large to be planetary if host is B8II,1989,1,False,False,True -457939414,1990.01,,5,5,5,5,5,5,5,86.0,263.2,95.18,0,0,3,PC,FP,10.1574,0.006,,1,spoc,QLP,10:34:40.95,-59:44:54.54,-15.942,0.046,7.618,0.045,2459281.710853,0.0040747663,3.78995239619699,0.0010899372,5.52684011419759,0.20403641,4.728279,0.342822,4345.43734321077,315.7013,11.7871267235434,6.0611277,602.159080942888,1263.41945336029,12.181036,171.127,0.725,5579.5,213.4,4.22,2.01,1.10456001758575,0.0517186,,,1.14,0.155013,"10,36",2020-06-17,2020-06-17,2022-12-14 12:09:24,Crowded field; secondary; synchronized; TFOP FP; retired as EB,1990,1,False,False,True -82707763,1991.01,,5,5,5,5,5,5,5,58.2,66.5,317.0,0,0,1,EB,FP,10.1405,0.006,,1,qlp-s64-ffi,QLP,11:19:50.07,-51:51:57.86,-45.152,0.042,-1.157,0.045,2460065.075037,0.0003572,6.6570835,3e-06,5.285,0.129,7.80621,0.064951,7164.0,59.8202,14.8934,0.684568,528.884,1336.0,175.0,268.254,2.1125,5805.6,289.6,4.13,0.32,1.73,0.08,,,1.12,0.141226,"10,37,63,64",2020-06-17,2023-05-31,2023-06-16 12:14:51,TFOP FP; retired as SEB1 ,1991,1,False,False,True -147340931,1992.01,,5,5,5,5,5,5,5,41.8,120.1,103.62,5,1,1,EB,FP,10.5287,0.006,,1,qlp,QLP,10:51:40.05,-44:59:05.07,0.555,0.046,-7.807,0.049,2458546.84554,0.00085,4.31224,0.00013,2.704,0.27,5.431386,0.002005,4990.0,1.84687,12.3576,0.582863,664.873,1414.0,67.0,375.933,4.541,,,,,1.72,0.07,,,1.44,0.251426,10,2020-06-17,2020-06-17,2022-12-14 12:09:24,same signal as 147340930; event is actually on 941340744,1992,1,False,False,True -453464017,1993.01,,5,5,5,5,5,5,5,142.6,218.4,317.0,5,0,1,EB,FP,10.248,0.006,,1,qlp,QLP,10:09:07.24,-72:47:53.22,-31.085,0.154,25.233,0.164,2459352.660686,0.0002088,3.9416903,1.6e-06,2.537,0.047,14.031127,0.00762,12840.0,7.0183,19.6321,1.01213,1460.48,1722.0,78.0,290.78,6.0225,6190.4,202.4,4.15,1.67,1.48,0.07,-0.0811697,0.0552446,1.48,0.258099,"10,11,12,37,38",2020-06-17,2021-10-05,2022-12-14 12:09:24,v-shaped; large; stellar variability; TFOP FP; retired as EB,1993,1,False,False,True -445903569,1994.01,,3,4,3,3,3,4,4,25.5,86.5,91.68,4,3,1,PC,PC,10.2396,0.006,,1,qlp-s63-ffi,QLP,09:48:41.9,-51:45:23.63,-13.547,0.058,-1.741,0.064,2460032.218521,0.0007366,4.0337201,3.3e-06,3.48,0.138,3.118365,0.047723,2868.0,43.9533,11.5159,0.399353,1910.26,1841.0,41.0,515.603,9.044,7369.0,219.0,4.27,0.65,2.22,0.07,,,1.88,0.295482,"9,10,36,62,63",2020-06-17,2023-05-11,2023-06-16 12:14:51,,1994,1,False,False,True -299023386,1995.01,,3,4,3,3,3,4,4,15.3,44.5,115.65,0,0,1,PC,PC,9.8153,0.01,,1,qlp-s37-tois,QLP,09:33:51.93,-53:33:41.92,-8.811,0.056,1.488,0.054,2459327.827796,0.0023656,3.1056464,1.47e-05,1.772,0.288,0.868937,0.001646,800.0,1.51611,13.2277,0.741141,949.504,1546.0,14.0,873.401,25.4465,7804.8,128.2,3.78,0.66,4.44,0.15,,,,,"9,10,35,37",2020-06-17,2023-01-24,2023-01-26 12:09:41,crowded field; period may be half (~1.55 days),1995,1,False,False,True -275384718,1996.01,,5,5,5,5,5,5,5,62.1,96.4,317.0,4,0,1,PC,FP,10.2372,0.006,,1,qlp,QLP,11:54:11.32,-46:53:48.79,-27.631,0.049,10.574,0.035,2458576.4335,0.00104,7.72433,0.00083,8.03,0.153,7.758093,0.000599,7120.0,0.551711,20.0285,0.96118,1173.53,1630.0,63.0,422.884,5.9355,6249.4,386.5,4.19,1.87,2.32,0.11,,,1.31,0.214583,10,2020-06-17,2020-06-17,2022-12-14 12:09:24,Period might be double,1996,1,False,False,True -142378043,1997.01,,3,4,3,3,4,4,4,15.7,73.4,23.08,4,3,2,PC,PC,9.8916,0.006,,1,qlp-s63-ffi,QLP,12:06:31.8,-31:38:44.57,8.129,0.05,-8.411,0.023,2460038.14653,0.0012663,1.8359766,2.8e-06,1.062,0.315,1.16562,0.086042,1073.0,79.2446,5.11603,0.349134,573.168,1363.0,22.0,254.439,2.327,6311.5,192.6,4.17,0.16,1.61,0.08,-0.11,0.12,1.33,0.20542,"10,37,63",2020-06-17,2023-05-11,2023-06-16 12:14:51,v-shaped,1997,1,False,False,True -429295277,1998.01,,5,5,5,5,5,5,5,17.9,81.3,19.1,0,1,1,PC,FP,10.186,0.006,,1,qlp,QLP,12:17:02.21,-51:04:30.55,18.224,0.057,-25.907,0.041,2458572.20786,0.00399,1.10833,0.00032,2.288,0.339,1.151491,0.001902,1060.0,1.75155,4.58274,0.286178,4415.23,2270.0,22.0,218.438,2.131,5972.0,208.3,4.08,0.17,1.4,0.06,-0.276956,0.0561165,1.11,0.139188,10,2020-06-17,2020-06-17,2022-12-14 12:09:24,minor centroid shift to the north west,1998,1,False,False,True -447206604,1999.01,,3,4,4,3,3,4,4,156.7,297.8,317.0,4,0,1,PC,APC,10.4109,0.006,,1,qlp-s63-ffi,QLP,10:27:58.83,-48:25:42.77,11.3,2.1,6.1,1.9,2460033.285881,0.0005934,7.2133579,6.1e-06,2.345,0.329,9.612102,8.332476,8814.0,7645.12,21.2234,,271.595,,91.0,183.691,,5843.0,32.0,4.33,2.0,1.16,,,,,,"9,10,36,63",2020-06-17,2023-05-05,2023-06-16 12:14:51,V-shaped. Large for insolation. Likely EB. See observing notes regarding BEB.,1999,1,False,False,True -371188886,2000.01,,1,4,1,3,3,4,4,21.2,100.5,53.17,14,12,5,CP,PC,10.3579,0.006,,1,qlp-s63-ffi,SPOC,09:45:35.3,-66:41:11.87,-73.323,0.045,12.578,0.049,2460031.897125,0.0009989,9.1270425,8.4e-06,3.62,1.107,5.003727,0.217829,4598.0,200.608,8.36201,0.469162,167.221,1001.0,77.0,175.713,0.757,5400.0,283.3,4.43,0.31,1.18,0.06,,,0.98,0.131459,"9,10,11,36,37,38,63",2020-06-17,2023-05-10,2023-06-16 12:14:51,TOI-2000 c; https://arxiv.org/abs/2209.14396,2000,1,True,False,True -371188886,2000.02,,1,4,4,1,3,4,4,3.7,32.4,6.69,14,12,5,CP,PC,10.3579,0.006,,2,qlp-s63-ffi,SPOC,09:45:35.3,-66:41:11.87,-73.323,0.045,12.578,0.049,2460038.819877,0.005565,3.098367,1.53e-05,1.963,0.556,0.538659,0.044495,496.0,40.9804,2.47118,0.187677,328.067,1185.0,12.0,175.713,0.757,5400.0,283.3,4.43,0.31,1.18,0.06,,,0.98,0.131459,"9,10,11,36,37,38,63",2022-03-24,2023-05-05,2023-06-16 12:14:51,TOI 2000 b (https://arxiv.org/abs/2209.14396),2000,2,True,False,True -118084044,2001.01,,3,4,3,3,3,4,4,119.2,209.3,317.0,2,0,1,PC,PC,8.9578,0.006,,1,spoc-s01-s39-b0A-PC,QLP,08:32:43.53,-58:34:31.84,-2.261,0.128,3.211,0.115,2459308.261735,0.0010195519,2.74345648851734,0.00012417391,1.77213694061149,0.08360659,1.648871,0.111173,1517.51363824487,102.388596,24.4152818446564,14.916622,22630.8684044473,3128.20390899839,20.877892,500.027,15.6525,7896.3,247.0,3.6,0.52,3.96114993095398,0.166342,,,1.81,0.299035,"8,9,10,35,36,37",2020-06-17,2022-03-22,2022-12-14 12:09:24,Large planet candidate. Aliasing from stellar variability; check nearby stars,2001,1,False,False,True -356453768,2002.01,,5,5,5,5,5,5,5,106.1,111.0,317.0,1,0,0,EB,FP,10.4879,0.006,,1,qlp-s62-ffi,QLP,08:56:45.65,-61:22:17.26,-70.24,0.051,0.73,0.051,2460011.151332,0.0014549,2.3330349,3.6e-06,3.005,0.905,3.038882,5.035371,2795.0,4627.01,15.6213,4.39727,12107.6,2951.0,45.0,296.179,2.3585,5986.5,131.0,4.32,0.44,1.56,0.07,-0.555712,0.0712926,1.21,0.175438,"9,10,35,36,37,62",2020-06-17,2023-03-27,2023-03-31 12:12:24,V-shaped; crowded field; TFOP FP; retired as NEB,2002,1,False,False,True -58463434,2003.01,,3,5,5,3,4,4,4,,,317.0,0,8,3,PC,PC,9.6569,0.011,,1,qlp,QLP,13:26:06.51,-27:24:45.21,-11.957,0.167,-11.202,0.148,2458579.36532,0.00128,0.0,0.0,3.529,0.19,4.199051,0.001502,3860.0,1.3836,15.7171,0.912323,194.656,1040.0,29.0,379.972,12.5925,7043.2,177.4,3.98,0.16,2.46,0.13,0.04,0.12,1.52,0.250605,10,2020-06-17,2020-06-17,2022-12-14 12:09:24,single event,2003,1,False,True,True -439610306,2004.01,,5,5,5,5,5,5,5,5.5,34.9,11.09,1,1,1,PC,FP,9.0607,0.006,,1,qlp,QLP,09:33:52.07,-55:10:32.75,-12.167,0.048,3.727,0.049,2458545.26565,0.01211,1.79988,0.00056,3.518,0.564,0.19545,0.000491,180.0,0.452551,3.32197,0.225957,6540.68,2505.0,11.0,258.885,1.9515,6136.9,97.0,3.85,0.42,2.46,0.1,,,1.49,0.246319,10,2020-06-17,2020-06-17,2022-12-14 12:09:24,,2004,1,False,False,True -147660886,2005.01,,3,4,4,3,3,4,4,19.0,78.3,100.76,8,23,1,PC,PC,9.4916,0.006,,1,qlp-s10-ffi-reprocessed,QLP,10:56:07.6,-43:22:36.11,-25.251,0.051,8.208,0.05,2458549.83383,0.00131,17.30714,0.00169,4.138,0.197,3.153209,0.001348,2900.0,1.242,12.2024,0.537913,110.956,904.0,36.0,328.475,3.667,6995.5,239.3,4.1,0.46,2.23,0.08,,,1.65,0.271228,"10,63",2020-06-17,2023-04-27,2023-04-27 00:00:00,,2005,1,False,False,True -41173048,2006.01,,5,5,5,5,5,5,5,8.9,13.2,73.79,0,0,2,V,FA,9.2225,0.006,,1,qlp,QLP,06:04:53.92,-69:21:37.16,8.246,0.05,22.049,0.052,2459194.004177,0.0207447,6.40938,0.0001988,2.356,0.586,0.304049,0.001254,280.0,1.15453,10.1474,,50.0267,740.0,13.0,485.257,6.2485,4650.0,84.7,2.54,0.14,8.3,,-0.32,0.09,,,"1,2,3,4,5,6,7,8,10,11,12,13,27,28,30,31",2020-06-17,2021-01-28,2022-12-14 12:09:24,evolved star; but difference images do not provide consistent centroid information to conclude it's a NEB,2006,1,False,False,True -219466784,2007.01,TIC 219466784.01,2,5,5,2,3,4,4,,,7.65,0,3,3,PC,PC,10.199,0.006,,1,spoc,CTOI,13:59:26.02,74:09:04.42,64.23,0.066,-63.374,0.052,2458872.68991,0.010845991,0.0,0.0,9.16540675024466,0.8202277,0.990943,0.108802,912.27629225308,100.205696,3.15639042676771,0.33183703,1.49523987921164,282.031402728221,9.195684,115.409,0.389,5249.0,124.629,4.48682,0.0820144,0.895408,0.0510955,,,0.897,0.114993,"14,20,21,22",2020-06-17,2020-06-17,2022-12-14 12:09:24,single transit; ~3 Re; multiple stars in pixel; CTOI from Planet Hunters,2007,1,False,True,True -70887357,2008.01,TIC 70887357.01,3,5,5,3,3,4,4,0.6,44.6,114.43,0,11,3,PC,PC,8.64807,0.006,,1,spoc,CTOI,04:15:25.83,-16:54:07.72,47.551,0.054,-30.747,0.053,2458454.33261,0.0017774756,723.834500848934,0.0025788723,7.38294601566422,0.121020645,3.392028,0.069598,3119.2983692711,64.100075,13.1361697149843,0.7173174,1.35726207542686,275.286984232388,67.21428,139.212,0.7375,5463.0,186.0,3.77778,0.281727,1.94771003723145,0.102432,,,0.992,0.123554,"5,32",2020-06-17,2021-07-15,2022-12-14 12:09:24,former single transit; now has second transit in Y3; period is longest alias; CTOI from Nora Eisner,2008,1,False,False,True -243187830,2009.01,TIC 243187830.01,2,5,5,2,4,4,4,0.0,35.6,5.66,0,10,8,PC,PC,7.3551,0.006,,1,spoc-s14-s60-b0A-PC,CTOI,01:07:37.99,22:57:10.33,103.07,0.111,-490.315,0.107,2458783.768755,0.0039839013,1071.08984480293,0.0003716722,2.17341336153742,0.46977004,0.939752,0.065057,865.169437955287,59.917755,2.24077845858363,0.91658,1.38802591133688,276.833818339439,13.903928,20.5272,0.0294,4755.33,99.563,4.62683,0.0808477,0.701498985290527,0.0400754,0.199069,0.0251533,0.76,0.0881912,"17,57",2020-06-17,2023-05-18,2023-06-16 12:14:51,CTOI from Nora Eisner; single transit in s17; additional transit in s57; actual period likely shorter than max period of ~1071 days,2009,1,False,False,True -26547036,2010.01,TIC 26547036.01,3,5,5,3,4,4,4,0.1,62.8,94.78,2,9,4,PC,PC,9.26693,0.006,,1,spoc-s14-s60-b0A-PC,CTOI,19:28:40.07,53:29:14.53,40.519,0.067,11.106,0.066,2459846.977285,0.006372369,1134.67239633331,5.085344e-05,8.68446227886302,0.041797563,12.755179,0.08945,11679.2159463996,82.38331,11.7582195461882,0.5836612,8.63471023534985,437.201548593604,129.00015,109.19,0.321,5842.0,129.228,4.39929,0.0793101,1.07351994514465,0.0529397,,,1.054,0.13542,"14,15,16,56",2020-06-17,2023-05-18,2023-06-16 12:14:51,roughly Jupiter size; multiple stars in pixel; CTOI from Planet Hunters; actual period likely shorter than max period of ~1134.7 days,2010,1,False,False,True -136916387,2011.01,,5,5,5,5,5,5,5,7.5,175.0,2.97,0,3,0,KP,KP,5.0494,0.006,,1,spoc,SPOC,15:21:45.63,-48:19:07.74,-1624.05,0.169,-276.024,0.133,2458631.7511,0.0014317269,0.0,0.0,3.03322475683032,0.25104392,0.414158,0.026953,381.381113709889,24.824268,1.8276647297787,0.5673485,41.4371027967705,647.093586215706,17.536465,14.682,0.01985,5739.0,25.0,4.51,0.028,0.903973,0.0433083,-0.26,0.1,1.03,0.127035,12,2020-06-17,2020-06-17,2022-12-14 12:09:24,nu 2 Lup; first event is a planet b transit; momentum dump at T0=1643 contaminates second planet b transit; second event is a single planet c transit,2011,1,True,True,True -136916387,2011.02,,5,5,5,5,5,5,5,10.2,257.9,7.19,0,3,0,KP,KP,5.0494,0.006,,2,spoc-s01-s39-b0A-KP,SPOC,15:21:45.63,-48:19:07.74,-1624.05,0.169,-276.024,0.133,2458650.894484,0.0009829825,27.5922345781114,0.0004318139,3.13936543625603,0.10269469,0.592905,0.02207,545.936326412644,20.327452,2.57853243952825,0.2011413,1.85752079848415,297.750960324582,25.376509,14.682,0.01985,5739.0,25.0,4.51,0.028,1.02606999874115,0.0451056,-0.26,0.1,1.03,0.127035,"12,38",2022-04-20,2022-04-20,2022-12-14 12:09:24,HD 136352 c / nu 2 Lup c; two events in SPOC report are ~689.8 days apart which is 25 times the correct period,2011,2,True,False,True -138294130,2012.01,,5,5,5,5,5,5,5,80.4,82.0,317.0,0,0,0,KP,KP,10.6506,0.006,,1,qlp-s51-tois,QLP,15:19:57.89,36:13:46.36,-21.661,0.035,-24.25,0.058,2459716.992394,0.0003859,3.0565259,2.6e-06,4.145,0.074,9.596767,0.000404,8800.0,0.371658,15.1633,0.70524,1438.0,1715.0,159.0,320.451,2.827,5981.0,117.3,4.07,0.08,1.6,0.07,0.275,0.0565685,1.1,0.142681,"24,50,51",2020-06-19,2022-09-02,2022-12-14 12:09:24,HAT-P-4 b,2012,1,False,False,True -188589164,2013.01,,2,5,5,2,4,4,4,4.6,18.5,1.35,5,2,10,PC,CP,10.2705,0.007,,1,spoc,QLP,15:58:18.62,35:24:29.21,-143.277,0.066,318.219,0.082,2458956.396322,0.0013538105,2.61627687236315,0.0001133327,1.13489302282895,0.39219263,1.21736,0.097742,1120.60141844857,90.019485,1.09728673742702,1.1053865,19.1060127953246,533.227164267394,14.412579,15.8095,0.00955,3352.0,157.0,4.8984,0.00276832,0.325635,0.00971841,,,0.306053,0.0201949,"24,25",2020-06-19,2020-09-23,2022-12-14 12:09:24,low SNR; potential L1,2013,1,False,False,True -198588220,2014.01,,5,5,5,5,5,5,5,122.2,203.1,317.0,0,0,0,KP,KP,9.63331,0.006,,1,spoc-s14-s55-b0A-KP,QLP,17:06:26.57,44:46:36.79,9.436,0.042,-18.185,0.046,2459694.026612,0.0008753391,4.81011413654116,2.1827507e-06,7.02845572744127,0.02217203,8.033923,0.04566,7372.207276348,42.053932,23.5795713615816,1.0475386,2884.57640703879,1869.13324192123,140.21031,371.686,3.53,6417.0,122.6,3.7,0.09,2.64809989929199,0.117203,,,1.292,0.209165,"24,26,51,52,53",2020-06-19,2023-03-15,2023-03-24 12:12:10,HAT-P-67 b,2014,1,False,False,True -368287008,2015.01,,1,4,1,1,4,4,4,26.5,218.9,25.62,34,0,10,PC,PC,12.8387,0.007,,1,qlp-s51-tois,SPOC,15:28:31.84,27:21:39.86,-56.166,0.066,63.966,0.067,2459712.928909,0.0029226,3.3491408,1.6e-05,1.207,0.25,7.856515,4.406476,7210.0,4050.29,5.37673,2.27494,31.0153,657.0,10.0,47.3444,0.11295,3223.0,157.0,4.89993,0.00294439,0.32,0.01,,,0.304345,0.0201868,"24,51",2020-06-19,2022-09-02,2022-12-14 12:09:24,Some odd-even,2015,1,False,False,True -219508169,2016.01,TIC 219508169.01,1,4,1,1,4,4,4,5.0,55.3,9.65,6,3,8,PC,PC,10.408,0.006,,1,qlp-s52-ffi,SPOC,16:27:11.34,42:41:15.96,-43.304,0.043,68.696,0.058,2459734.657881,0.0031999,6.8161204,3.77e-05,2.707,0.596,1.108016,0.002435,1020.0,2.24285,3.07719,0.233245,169.804,1005.0,14.0,115.834,0.352,5175.0,128.9,4.54,0.09,0.84,0.05,,,0.877,0.10677,"24,25,51,52",2020-09-11,2022-08-23,2022-12-14 12:09:24,potential multi,2016,1,True,False,True -219508169,2016.02,,2,4,2,2,4,4,4,9.1,72.3,8.79,6,3,8,PC,PC,10.408,0.006,,2,qlp-s52-ffi,QLP,16:27:11.34,42:41:15.96,-43.304,0.043,68.696,0.058,2459739.720258,0.0020617,2.459032,9.1e-06,1.856,0.473,1.173229,0.002581,1080.0,2.37736,2.91282,0.227739,489.853,1310.0,19.0,115.834,0.352,5175.0,128.9,4.54,0.09,0.84,0.05,,,0.877,0.10677,"24,25,51,52",2020-06-19,2022-08-23,2022-12-14 12:09:24,.02 in possible multi; stellar pulsations,2016,2,True,False,True -219508169,2016.03,,1,4,1,1,4,4,4,1.7,38.1,10.51,6,3,8,PC,PC,10.408,0.006,,3,qlp-s52-ffi,QLP,16:27:11.34,42:41:15.96,-43.304,0.043,68.696,0.058,2459735.445738,0.0070854,25.3369848,0.0005021,3.214,1.161,1.44499,0.01971,1330.0,18.1536,3.23582,0.439412,25.3267,624.0,10.0,115.834,0.352,5175.0,128.9,4.54,0.09,0.84,0.05,,,0.877,0.10677,"24,25,51,52",2022-07-28,2022-07-28,2022-12-14 12:09:24,potential multi,2016,3,True,False,True -357416482,2017.01,,5,5,5,5,5,5,5,257.4,368.5,317.0,1,1,0,PC,FP,8.2057,0.006,,1,spoc,SPOC,15:15:47.96,27:21:42.52,-52.439,0.071,9.647,0.057,2458955.90865,0.00018247588,5.49830341317139,7.163331e-05,2.268902385949,0.010426818,13.110599,0.088758,12002.6938254544,81.74576,16.8873960308172,0.08397445,479.363328953816,1193.3997746031,192.52672,115.605,,6362.6,,,,1.33874,,-0.049,0.012,,,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,TIC match 357416480 (12.5 TESS mag star); TFOP FP as an EB with a low mass M dwarf companion,2017,1,False,False,True -357501308,2018.01,,1,5,5,1,4,4,4,8.3,125.6,6.64,8,8,10,PC,CP,8.962,0.006,,1,qlp-s51-ffi,SPOC,15:19:20.99,29:12:28.36,-141.096,0.031,395.502,0.036,2459716.685958,0.0021296,7.4355668,3.48e-05,2.429,0.975,1.271055,0.015689,1170.0,14.4504,2.4515,0.398524,75.6724,821.0,21.0,27.9956,0.02135,4218.9,162.8,4.67,0.13,0.62,0.08,-0.812,0.163,0.66,0.0867542,"24,51",2020-06-19,2022-06-24,2023-06-16 12:02:45,potential L1 candidate,2018,1,False,False,True -159781361,2019.01,,3,4,3,3,4,4,4,7.4,43.1,30.94,4,14,6,PC,PC,9.6087,0.006,,1,spoc,SPOC,15:37:43.62,48:57:18.74,12.352,0.033,-46.466,0.048,2458958.287592,0.0039946106,15.3474527254014,0.0055765635,7.14834412076817,0.3740528,1.134086,0.061278,1043.98610686827,56.43737,6.08615552339399,0.70540226,194.754084699581,952.77728215137,15.71138,198.007,0.82,5588.0,124.973,3.92293,0.0807668,1.79774,0.0898141,,,0.987,0.126306,24,2020-06-19,2020-09-23,2022-12-14 12:09:24,,2019,1,False,False,True -39903405,2020.01,,5,5,5,5,5,5,5,101.8,324.6,107.51,0,1,0,KP,KP,8.27468,0.006,,1,spoc-s14-s55-b0A-KP,QLP,16:20:36.34,41:02:52.66,-10.312,0.041,-29.198,0.052,2459733.656279,0.0001875,5.63346620281635,1.4763871e-06,4.2342162100878,0.014564169,5.757999,0.028039,5289.27509518757,25.824373,12.6629901854834,0.49866143,965.907497604674,1421.84951394589,209.22649,127.774,0.424,6412.8,106.4,4.09,0.08,1.70392000675201,0.0666407,0.0535135,0.0406867,1.29,0.191555,"24,25,51,52",2020-06-19,2023-03-15,2023-03-24 12:12:10,HAT-P-2 b,2020,1,False,False,True -236312126,2021.01,,5,5,5,5,5,5,5,120.1,346.7,124.76,0,0,0,KP,KP,10.5484,0.006,,1,qlp-s51-tois,QLP,16:02:11.83,28:10:10.65,-17.422,0.034,14.82,0.043,2459713.291648,0.0003093,3.9415041,1.9e-06,2.866,0.057,23.409311,0.000774,21330.0,0.712596,13.8352,0.594068,321.85,1179.0,193.0,163.553,0.6195,5729.0,103.1,4.52,0.07,0.92,0.04,-0.08,0.1,1.023,0.125268,"24,25,51",2020-06-19,2022-09-02,2022-12-14 12:09:24,XO-1 b,2021,1,False,False,True -11996814,2022.01,,5,5,5,5,5,5,5,105.5,244.9,28.55,5,0,1,PC,FP,11.6484,0.007,,1,spoc,SPOC,02:04:40.93,65:17:21.59,-26.036,0.04,24.771,0.049,2458790.849435,0.0006703024,0.448734913893695,2.7561257e-06,2.87578965472215,0.09678356,3.885229,0.116084,3572.03280317624,106.911674,5.80544984309424,1.7503514,928.877465987635,1408.02172696015,20.763273,89.3047,0.23835,3975.0,157.0,4.62844,0.0110764,0.627144,0.0183442,,,0.609693,0.0201206,"18,24,25",2020-06-19,2020-09-23,2022-12-14 12:09:24,V-shaped; crowded field,2022,1,False,False,True -16884216,2023.01,,2,4,2,2,4,4,4,2.8,66.7,3.4,1,5,7,PC,PC,8.5049,0.006,,1,spoc,SPOC,15:31:27.2,33:54:09.06,42.582,0.036,112.198,0.047,2458964.128568,0.003645356,11.1900485650944,0.0049587097,2.97415066820208,0.5782486,0.616655,0.084199,567.79899387325,77.54692,1.66081823537412,1.7278615,31.1925730384186,602.743519571549,7.313857,36.9284,0.034,4958.0,122.161,4.66667,0.0900016,0.695992,0.0442211,,,0.82,0.100943,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,possibly a single at 1982; possible multi; low snr ~7 from spoc-s24,2023,1,False,False,True -255930614,2024.01,,5,5,5,5,5,5,5,108.2,384.0,52.3,0,3,0,KP,KP,7.6262,0.006,,1,spoc-s14-s55-b0A-KP,QLP,16:30:29.52,38:20:51.13,-77.899,0.048,52.564,0.056,2459739.793843,0.001687,2.87589027262905,9.282846e-07,3.28281973520495,0.014864243,3.161714,0.014191,2907.8105019957,13.070299,8.28753941547613,0.41477212,1529.98009357832,1595.11204555648,248.64551,75.8643,0.17365,6084.0,139.9,4.17,0.09,1.46043002605438,0.0726558,0.33,0.1,1.14,0.154399,"24,25,51,52",2020-06-19,2023-03-15,2023-03-24 12:12:10,HD 149026 b,2024,1,False,False,True -394050135,2025.01,,3,4,4,3,4,4,4,26.3,90.2,97.91,12,16,1,CP,CP,10.9461,0.006,,1,spoc-s14-s60-b0A-CP,QLP,18:51:10.86,82:14:43.49,2.791,0.036,-4.521,0.045,2459754.939635,0.0005663,8.87205415239541,1.1473829e-05,3.65933956061458,0.03968991,6.691664,0.063199,6144.29680101951,58.206493,11.9849812644622,0.5755136,343.717762479357,1098.17168952525,102.18961,335.985,2.417,6042.0,136.0,4.15,0.08,1.4799599647522,0.06901,,,1.123,0.159804,"14,18,19,20,24,25,26,40,47,52,53,58,59,60",2020-06-19,2023-06-13,2023-06-16 12:14:51,TOI 2025 b,2025,1,False,False,True -407059875,2026.01,,2,4,2,2,4,4,4,3.3,43.3,6.9,2,3,4,PC,PC,10.5782,0.006,,1,qlp-s58-tois,QLP,00:21:52.69,66:10:05.23,-47.349,0.046,-11.911,0.038,2459904.708769,0.0037431,7.1925327,3.5e-05,2.551,0.911,1.281925,0.127108,1180.0,117.064,2.5719,0.226756,75.7071,821.0,14.0,108.076,0.3155,5050.0,146.8,4.59,0.09,0.77,0.05,,,0.842,0.107524,"17,18,24,25,58",2020-06-19,2023-07-06,2023-07-06 00:00:00,L1 candidate; low SNR,2026,1,False,False,False -335996558,2027.01,,5,5,5,5,5,5,5,9.0,57.2,12.4,2,2,0,PC,FP,10.5027,0.006,,1,qlp,QLP,22:13:19.66,62:51:26.59,4.812,0.093,1.212,0.081,2458739.50775,0.00259,1.46329,2e-05,2.431,0.355,0.814608,0.001125,750.0,1.03585,3.54656,0.217751,3541.21,2149.0,24.0,238.061,2.459,6168.0,232.5,4.29,0.1,1.28,0.06,,,1.176,0.192148,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,Possibly in the Neptune desert!,2027,1,False,False,False -336456596,2028.01,,5,5,5,5,5,5,5,12.1,45.1,31.56,1,0,0,PC,FP,10.9141,0.041,,1,qlp,QLP,22:17:44.26,62:27:54.03,4.431,0.042,0.9,0.039,2458739.62994,0.00288,0.77871,1e-05,1.458,0.192,0.727687,0.001039,670.0,0.957405,6.16036,0.315609,10057.7,2789.0,16.0,609.996,8.9055,7751.0,349.7,4.0,0.09,2.25,0.07,,,1.83,0.325305,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,crowded field; check bright neighbors; minor depth-aperture correlation,2028,1,False,False,False -445254275,2029.01,,5,5,5,5,5,5,5,12.2,31.6,81.41,0,2,2,PC,FP,10.9415,0.016,,1,qlp,QLP,00:48:51.88,59:23:12.18,2.849,0.046,-1.879,0.043,2458767.19721,0.0042,2.57134,8e-05,3.824,0.911,0.999337,0.002896,920.0,2.66768,10.7406,0.826123,5344.87,2382.0,17.0,910.693,28.9095,7125.0,162.4,3.54,0.08,3.56,0.17,,,1.59,0.257996,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,potential centroid offset; some depth-aperture correlation; large star,2029,1,False,False,False -422656370,2030.01,,3,4,4,3,3,4,4,76.3,47.5,317.0,5,1,1,PC,APC,10.8489,0.022,,1,qlp-s57-tois,QLP,23:18:41.3,68:17:57.18,28.247,0.045,0.652,0.04,2459880.870498,0.000576,1.3254567,1e-06,0.975,0.289,3.659663,0.259434,3365.0,238.919,14.4076,0.916221,776.933,1470.0,43.0,367.355,3.4215,5778.0,186.2,3.74,0.08,2.29,0.12,,,1.04,0.135897,"17,18,24,25,57",2020-06-19,2023-05-01,2023-05-06 12:13:45,TFOP SM/APC; V-shaped and possibly synchronized,2030,1,False,False,False -470127886,2031.01,,3,4,4,3,3,4,4,56.3,183.5,121.42,13,10,2,PC,PC,10.7609,0.036,,1,spoc-s58-b0A,QLP,22:04:28.27,81:33:57.42,25.719,0.035,2.507,0.034,2459886.04634,0.00042562778,5.71560747457573,0.00016925864,4.05847974884111,0.032022387,13.372434,0.098485,12240.9298817259,90.70415,13.6015651428144,0.57216483,503.118545388183,1207.91766084486,117.25658,276.105,1.5315,6664.0,265.1,4.44,0.09,1.18444001674652,0.0492463,,,1.41,0.25329,"24,52,53,58",2020-06-19,2023-02-21,2023-02-25 12:10:55,,2031,1,False,False,True -470159478,2032.01,,3,4,3,3,3,4,4,19.8,81.1,120.16,1,1,4,PC,APC,10.9293,0.006,,1,qlp-s53-tois,QLP,22:13:14.82,81:44:23.02,9.1,2.3,2.1,2.4,2459737.544901,0.0018492,17.0096703,4.12e-05,2.228,0.488,5.147716,1.301144,4730.0,1197.68,13.5294,,63.3708,,31.0,293.0,,6542.0,,,,1.5,,,,,,"18,19,24,25,26,53",2020-06-19,2022-11-30,2022-12-14 12:09:24,V-shaped,2032,1,False,False,False -53617134,2033.01,,3,4,3,3,4,4,4,13.0,69.3,67.53,2,2,3,PC,PC,9.46221,0.006,,1,qlp-s58-ffi,QLP,01:10:43.22,65:14:58.73,24.971,0.045,-2.555,0.046,2459886.48905,0.0017535,18.8243105,4.29e-05,4.806,0.276,2.565366,0.001113,2360.0,1.02517,9.62606,0.426547,109.162,900.0,28.0,281.184,2.458,7014.0,163.9,4.05,0.09,1.95,0.07,,,1.544,0.267103,"18,24,25,58",2020-06-19,2023-01-19,2023-01-19 00:00:00,possible centroid offset; match to 53617127,2033,1,False,False,False -427279997,2034.01,,5,5,5,5,5,5,5,5.0,30.1,32.02,1,1,4,PC,FP,10.5682,0.013,,1,qlp,QLP,23:25:31.38,54:36:04.25,-1.535,0.075,-1.911,0.075,2458768.72753,0.00722,2.89453,0.00019,3.327,0.746,0.597319,0.002523,550.0,2.32422,6.20845,0.56928,9411.16,2743.0,9.0,909.511,44.8145,9714.0,228.9,3.98,0.08,2.68,0.15,,,2.48,0.340801,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,crowded field; 2 stars in pixel; minor depth-aperture correlation,2034,1,False,False,False -53709089,2035.01,,3,4,3,3,4,4,4,6.4,40.5,29.26,1,1,8,PC,PC,9.1196,0.006,,1,qlp,QLP,01:10:56.81,61:05:31.59,-3.0,1.8,-0.3,1.8,2458793.50485,0.00818,8.51226,0.00054,3.068,0.786,0.673365,0.002446,620.0,2.25319,5.90105,,872.772,,9.0,359.404,,9387.0,,,,2.35,,,,,,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,odd/even from qlp; check neighbor tic53709074,2035,1,False,False,False -368320811,2036.01,,3,4,3,3,4,4,4,16.8,77.4,21.47,6,3,9,PC,PC,8.97913,0.006,,1,qlp-s51-ffi,QLP,15:32:03.58,24:05:06.06,-17.558,0.042,15.161,0.037,2458981.359291,0.0036288,1.2583329,0.0003927,1.17,0.304,0.477829,0.002881,440.0,2.6534,4.91523,0.444234,1480.01,1727.0,10.0,231.827,1.6665,6549.0,134.3,3.89,0.09,2.18,0.09,,,1.354,0.218106,"24,51",2020-06-19,2022-06-24,2022-12-14 12:09:24,,2036,1,False,False,False -405559035,2037.01,,2,4,2,2,4,4,4,1.8,23.9,8.88,1,2,7,PC,PC,10.67,0.007,,1,qlp-s51-tois,QLP,15:39:26.71,55:09:12.59,-11.969,0.043,-23.747,0.05,2459706.726679,0.0069328,11.1518929,0.0001286,4.623,0.528,0.62991,0.001102,580.0,1.01531,2.91771,0.182861,206.982,1056.0,10.0,263.958,1.641,6319.0,123.0,4.38,0.09,1.19,0.05,,,1.25,0.190931,"16,22,23,24,49,50,51",2020-06-19,2022-09-02,2022-12-14 12:09:24,,2037,1,False,False,True -235937532,2038.01,,3,5,5,3,3,4,4,55.6,72.2,317.0,3,1,1,PC,APC,10.5352,0.008,,1,qlp-s52-tois,QLP,19:35:39.5,81:33:17.25,-2.776,0.061,-0.542,0.069,2459913.435645,0.0015477249,3.7321195,6.2e-06,5.738,0.448,4.547889,0.000515,4180.0,0.474694,19.158,0.937763,5711.67,2421.0,47.0,603.172,12.441,6570.0,124.8,3.68,0.09,2.8,0.13,,,1.36,0.220153,"18,20,24,25,26,40,47,52,59",2020-06-19,2023-03-16,2023-03-24 12:12:10,possible synchronization; photometric ellipsoidal variations indicating likely EB,2038,1,False,False,True -237071229,2039.01,,3,4,3,3,4,4,4,6.4,40.9,29.28,3,4,6,PC,PC,10.4719,0.006,,1,spoc-s14-s60-b0A-PC,QLP,20:28:05.46,61:52:17.08,-17.586,0.046,-19.725,0.042,2459876.153637,0.0027096,11.2485738637875,0.00033826297,3.69328969645474,0.16480732,1.501715,0.06154,1382.17481459038,56.67883,5.89189884837574,0.39569336,276.73276635396,1040.24322437874,20.235611,276.053,1.562,6308.0,190.4,4.19,0.09,1.47509002685547,0.0626834,,,1.24,0.201083,"15,17,24,55,56,57,58",2020-06-19,2023-05-19,2023-06-16 12:14:51,,2039,1,False,False,True -427730490,2040.01,,3,4,4,3,3,4,4,77.0,231.4,88.06,5,6,1,PC,PC,10.8407,0.006,,1,qlp-s52-tois,QLP,23:29:05.94,71:30:23.31,44.853,0.042,25.368,0.041,2459740.365261,0.0002599,3.8608551,1.3e-06,2.571,0.03,16.045735,0.000679,14670.0,0.625001,11.2224,0.679003,163.361,995.0,250.0,144.717,0.492,5019.0,166.0,4.43,0.09,0.92,0.06,,,0.834,0.105072,"17,18,24,25,52",2020-06-19,2022-12-12,2022-12-16 12:08:26,,2040,1,False,False,True -54364414,2041.01,,5,5,5,5,5,5,5,9.5,68.5,9.38,2,2,2,PC,FP,10.4608,0.006,,1,qlp,QLP,01:16:56.36,62:21:06.09,78.916,0.037,-13.737,0.048,2458792.09451,0.00283,1.37477,3e-05,1.601,0.129,1.042807,0.000997,960.0,0.918522,3.0101,0.184631,1122.82,1612.0,21.0,177.331,0.9395,5825.0,155.6,4.44,0.08,1.02,0.05,,,1.049,0.139565,25,2020-06-19,2020-07-28,2022-12-14 12:09:24,potential L1 candidate,2041,1,False,False,False -269424395,2042.01,,5,5,5,5,5,5,5,12.1,41.1,41.62,0,2,0,PC,FP,10.9518,0.006,,1,qlp,QLP,23:21:28.66,60:48:04.22,-8.563,0.043,-13.166,0.039,2458768.14945,0.00666,2.41872,9e-05,2.685,0.308,1.260185,0.002212,1160.0,2.03758,7.23529,0.483918,1660.52,1778.0,13.0,511.22,6.974,6535.0,459.3,3.9,0.12,2.16,0.1,,,1.348,0.303488,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,potential centroid offset,2042,1,False,False,False -346929661,2043.01,,1,4,1,1,4,4,4,3.5,37.6,14.04,1,2,7,PC,PC,10.1976,0.006,,1,qlp-s58-ffi,QLP,00:03:54.61,59:20:04.85,-3.071,0.043,-22.425,0.041,2459899.436498,0.0042166,12.0135482,6.6e-05,4.216,1.082,1.03194,0.07949,950.0,73.2102,3.82619,0.244955,160.237,991.0,15.0,203.562,1.209,6178.0,254.9,4.33,0.09,1.23,0.06,,,1.18,0.199306,"17,18,24,57,58",2020-06-19,2023-02-03,2023-02-09 12:10:04,crowded field; L1 candidate,2043,1,False,False,False -270333769,2044.01,,5,5,5,5,5,5,5,7.7,37.4,42.41,1,1,0,PC,FP,10.4887,0.064,,1,qlp,QLP,23:27:31.27,61:23:33.05,-5.884,0.059,-5.005,0.057,2458770.06672,0.00974,4.12066,0.00021,1.721,0.321,1.086279,0.003105,1000.0,2.85971,7.32494,0.588452,1378.26,1697.0,11.0,664.006,16.6285,9953.0,965.5,4.09,0.1,2.38,0.13,,,2.55,0.425871,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,Minor depth aperture correlation,2044,1,False,False,False -347013211,2045.01,,3,4,3,3,4,4,4,26.2,82.8,108.19,6,6,2,PC,PC,10.7799,0.006,,1,qlp-s57-tois,QLP,00:04:28.62,54:56:04.19,14.472,0.047,7.986,0.04,2459873.067934,0.0015469,9.07763,2.5e-05,5.928,0.293,6.437922,0.191391,5912.0,176.262,12.6842,0.708204,388.441,1236.0,32.0,366.962,4.7995,6125.9,120.7,4.03,0.08,1.72,0.09,0.072,0.013,1.157,0.157897,"17,24,57",2020-06-19,2023-05-01,2023-05-06 12:13:45,,2045,1,False,False,False -468574941,2046.01,,3,5,5,3,4,4,4,155.7,161.0,317.0,6,3,5,CP,CP,10.996,0.006,,1,spoc-s58-b0A,QLP,01:04:44.39,74:19:52.7,6.293,0.04,-9.958,0.041,2459882.348171,0.00019620606,1.49714467191895,1.806122e-05,2.40241593646533,0.014941894,17.80607,0.07741,16266.2491957707,71.29483,16.2528493679055,0.75672454,2643.65497503716,1828.81991856012,211.67122,289.668,2.208,6081.0,137.7,4.31,0.08,1.24319005012512,0.0575628,,,1.139,0.151562,"24,58",2020-06-19,2023-02-21,2023-02-25 12:10:55,TOI-2046 b,2046,1,False,False,False -363761216,2047.01,,5,5,5,5,5,5,5,73.7,98.9,317.0,8,46,0,EB,FP,10.4708,0.006,,1,qlp-s52-ffi,QLP,00:23:28.11,71:09:31.7,-6.964,0.085,-1.662,0.072,2459733.330675,0.0004892,7.4072431,6.7e-06,2.746,0.375,16.133891,0.002414,14750.0,2.22353,14.6114,0.763283,149.286,973.0,144.0,196.538,1.9575,5887.0,183.3,4.35,0.08,1.14,0.06,,,1.068,0.144627,"24,25,52",2020-06-19,2022-07-13,2022-12-14 12:09:24,some centroid offset; possibly on one of the nearby matches (363761230; 363761240; 363761244),2047,1,False,False,True -159873822,2048.01,,1,4,4,1,4,4,4,1.8,35.7,7.34,5,4,8,PC,CP,10.7545,0.006,,1,qlp-s51-tois,QLP,15:51:41.79,52:18:22.71,-10.393,0.038,-1.384,0.043,2459704.448013,0.0044815,13.7905315,9.1e-05,3.301,0.481,1.238445,0.002055,1140.0,1.89262,2.60168,0.17953,29.035,646.0,15.0,116.567,0.291,5021.6,104.2,4.6,0.08,0.76,0.04,0.101813,0.0174915,0.835,0.0990377,"16,23,24,50,51",2020-06-19,2022-09-02,2023-03-20 00:00:00,variable star; potential L1 candidate,2048,1,False,False,True -314835525,2049.01,,3,4,3,3,3,4,4,15.2,31.9,94.63,0,2,1,PC,PC,10.6568,0.012,,1,qlp,QLP,23:07:38.36,56:41:40.25,19.194,0.045,-0.356,0.037,2458768.86655,0.00585,5.30329,0.00022,3.707,0.395,1.303666,0.002644,1200.0,2.43495,11.7443,0.924438,473.142,1299.0,11.0,571.487,9.0355,6054.7,145.0,3.41,0.09,3.48,0.21,0.23,0.016,1.13,0.153753,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,shoulder before ingress and after egress,2049,1,False,False,False -316468545,2050.01,,2,4,4,2,4,4,4,1.7,34.3,5.09,2,3,5,PC,PC,9.70362,0.006,,1,qlp-s57-tois,QLP,21:35:37.99,65:26:15.13,20.968,0.059,2.08,0.054,2459856.371243,0.0060479,13.5971906,9.14e-05,2.713,1.102,0.623392,0.068266,574.0,62.8736,2.09614,0.171458,57.1337,765.0,11.0,113.725,0.3925,5985.0,155.5,4.59,0.08,0.88,0.04,,,1.101,0.153044,"16,17,18,24,56,57",2020-06-19,2023-05-01,2023-05-06 12:13:45,transit depth slightly underestimated in qlp-s57-tois,2050,1,False,False,False -375850439,2051.01,,1,4,1,3,4,4,4,6.3,32.3,26.63,0,1,2,PC,PC,10.6234,0.029,,1,spoc-s14-s60-b0A-PC,QLP,22:25:10.81,67:58:16.21,-1.41,0.066,-3.759,0.068,2459854.289501,0.0025035792,1.16333254424128,9.622877e-05,1.7800568817111,0.32128763,0.418042,0.037284,384.956681526635,34.33966,5.5717234325837,1.2488548,102177.353227269,4559.93247705015,10.114332,809.88,24.473,11265.0,684.1,4.07,0.09,2.6170699596405,0.15687,,,2.96,0.419488,"24,57,58",2020-06-19,2023-05-19,2023-06-16 12:14:51,asymmetric transit; likely variability; very hot star; possible centroid offset to N/NW; inconsistent between sectors,2051,1,False,False,False -1100766816,2052.01,,5,5,5,5,5,5,5,35.6,149.5,19.42,2,0,0,PC,FP,10.0943,0.008,,1,qlp,QLP,15:54:00.24,19:35:48.79,-66.932,0.113,-89.67,0.094,2458957.04205,0.00253,1.62263,0.0003,1.555,0.422,1.771194,0.007104,1630.0,6.54313,4.33692,1.05517,713.443,1439.0,18.0,115.724,1.0315,5016.1,577.2,,,1.01,0.24,,,,,24,2020-06-19,2020-07-28,2022-12-14 12:09:24,TFOP retired as NEB; slight offset in difference image; minor flux depth aperture correlation; tic match to 1100766815 and 445884778; latter is phantom tic,2052,1,False,False,True -315755496,2053.01,,5,5,5,5,5,5,5,,,317.0,1,2,1,EB,FP,10.5008,0.007,,1,spoc,QLP,20:41:19.53,82:26:07.09,-4.745,0.038,8.296,0.038,2459394.643317,0.002919175,4.27808,0.00013,1.95762054062335,0.44528735,1.191273,0.122149,1096.60135421076,112.49688,17.8096125430755,13.428784,528.551257027585,1222.90163902841,8.290148,583.511,7.1165,4772.0,122.0,,,5.27874994277954,,,,,,"24,40",2020-06-19,2021-10-26,2022-12-14 12:09:24,ephemeris match to 315755491; centroid offset to TIC 315755494; TFOP FP; retired as NEB,2053,1,False,False,True -378355116,2054.01,,5,5,5,5,5,5,5,7.8,30.1,29.24,2,2,3,EB,FP,10.7633,0.006,,1,qlp-s57-tois,QLP,23:52:59.61,60:28:54,-0.9,4.8,0.7,5.0,2459875.429386,0.005032,3.5684459,2.74e-05,2.934,0.6,1.019985,0.089621,939.0,82.5405,5.87762,4.13876,2297.53,1928.0,14.0,,,8124.0,221.0,,,2.08,1.46,,,,,"17,18,24,57",2020-06-19,2023-05-26,2023-06-16 12:14:51,Check nearby stars - possible NEB but no odd-even; centroid; or depth aperture. Lightcurve shows variability; retired as TFOP FP/NEB,2054,1,False,False,False -322062001,2055.01,,5,5,5,5,1,5,5,240.3,639.1,317.0,3,2,0,PC,APC,10.6526,0.006,,1,qlp-s57-tois,QLP,21:36:57.33,69:17:02.2,-5.7,1.9,-1.7,2.0,2459876.086576,0.000578,4.6981739,3.2e-06,2.36,0.442,8.082918,11.561017,7417.0,10591.6,31.434,,1344.6,,79.0,376.423,,6782.0,,,,1.61,,,,,,"17,18,24,25,57",2020-06-19,2023-05-01,2023-05-06 12:13:45,V-shaped; TFOP BEB/APC/ST3,2055,1,False,False,False -396356111,2056.01,,2,4,2,2,4,4,4,5.8,65.9,9.05,0,4,6,PC,PC,7.3307,0.006,,1,qlp,QLP,00:10:23.9,58:29:21.98,-98.605,0.051,-9.771,0.043,2458771.6773,0.00982,10.2207,0.00125,3.848,0.621,0.32577,0.001092,300.0,1.00594,2.95608,0.225695,226.74,1081.0,9.0,92.8913,0.3086,6748.7,121.0,4.13,0.09,1.72,0.07,,,1.44,0.245369,24,2020-06-19,2020-06-05,2022-12-14 12:09:24,weak signal; weak BLS; potential L1 candidate; 11.665 Tmag close-by companion (396356110) and a second close-by star (18.46 Tmag - TIC 604411285),2056,1,False,False,False -229888286,2057.01,,3,4,3,3,4,4,4,17.3,62.3,63.94,4,2,10,PC,PC,10.7165,0.008,,1,qlp-s51-tois,QLP,15:04:27.96,28:12:56.57,16.4,2.5,-14.8,2.5,2459707.620149,0.0020189,5.5986627,2.13e-05,4.926,0.239,2.706855,0.000947,2490.0,0.871979,9.34167,,724.387,,21.0,255.849,,6081.3,,,,1.84,,0.254591,0.0100895,,,"24,50,51",2020-06-19,2022-09-02,2022-12-14 12:09:24,ephemeris match to nearby star TIC 229888289 (Tmag~13.4),2057,1,False,False,True -326732851,2058.01,,5,5,5,5,5,5,5,36.1,40.4,130.33,2,2,0,PC,FP,10.5365,0.013,,1,qlp,QLP,23:58:42.79,62:37:33.26,2.128,0.049,-7.349,0.044,2458766.42257,0.00545,1.51567,5e-05,2.281,0.392,0.814608,0.001719,750.0,1.58325,14.18,,1102.82,1605.0,18.0,550.191,8.1875,4963.0,122.0,,,4.96,,,,,,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,crowded field; minor depth-aperture correlation,2058,1,False,False,False -403308915,2059.01,,5,5,5,5,5,5,5,5.9,39.9,19.82,3,1,4,EB,FP,10.1731,0.006,,1,qlp-s57-ffi,QLP,00:20:47.73,55:32:34.13,-8.586,0.047,-7.721,0.043,2459878.778991,0.0037262,3.7543552,1.71e-05,1.878,0.273,0.510416,0.064097,470.0,59.0334,4.6716,0.282353,931.407,1539.0,11.0,385.274,6.367,8398.0,145.4,4.27,0.07,1.75,0.06,,,2.079,0.305957,"17,24,57",2020-06-19,2022-12-05,2022-12-16 12:08:26,some depth-aperture correlation; TFOP FP/NEB,2059,1,False,False,False -285542903,2060.01,,5,5,5,5,5,5,5,7.3,30.1,49.42,0,1,3,PC,FP,9.8722,0.023,,1,spoc-s58-b0A,QLP,00:53:04.81,60:37:05.2,2.884,0.053,-1.087,0.055,2459883.837593,0.0043794643,2.26668082580425,0.000671872,2.95297202506296,0.41566435,0.351087,0.036246,323.310769245683,33.38325,8.01587030884792,1.8415614,74785.3850434614,4217.68297968079,8.025376,914.062,34.852,10125.0,419.5,3.62,0.07,4.14064979553223,0.175704,,,2.6,0.362384,"24,58",2020-06-19,2023-02-21,2023-04-23 12:02:56,bad transit shape; hot star (10000 K); potential SV; strong centroid offset towards other ~16 Tmag stars,2060,1,False,False,False -327577308,2061.01,,5,5,5,5,5,5,5,6.5,55.6,4.04,1,3,0,PC,FP,10.636,0.006,,1,qlp,QLP,00:18:59.45,56:22:01.44,181.062,0.041,8.715,0.037,2458766.42545,0.00426,1.45655,4e-05,1.51,0.375,0.62991,0.002548,580.0,2.34658,1.83776,0.18558,436.167,1273.0,9.0,78.9495,0.20345,4475.0,122.2,4.59,0.1,0.7,0.05,,,0.7,0.0831866,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,weak signal; crowded field; potential secondary; possible depth-aperture correlation,2061,1,False,False,False -373785851,2062.01,,5,5,5,5,5,5,5,36.5,96.3,114.46,1,1,2,PC,FP,10.155,0.006,,1,qlp,QLP,01:51:06.87,63:04:53.12,12.315,0.07,-4.252,0.075,2458795.9996,0.00234,4.04163,6e-05,1.719,0.219,3.37101,0.003123,3100.0,2.87669,13.1608,0.733872,304.098,1163.0,21.0,419.142,10.3525,6895.0,380.1,3.87,0.1,2.36,0.11,,,1.5,0.302938,25,2020-06-19,2020-07-28,2022-12-14 12:09:24,possible secondary; crowded field,2062,1,False,False,True -334811204,2063.01,,3,4,3,3,3,4,4,9.4,39.4,93.39,4,1,1,PC,PC,10.3499,0.006,,1,qlp,QLP,22:06:48.42,63:35:56.56,-2.549,0.042,-3.778,0.041,2458743.99764,0.00385,21.07626,0.00082,2.124,0.456,2.053983,0.008069,1890.0,7.43208,11.6504,0.84431,31.6166,660.0,11.0,514.968,6.0355,7577.0,491.6,3.9,0.09,2.46,0.09,,,1.759,0.323999,24,2020-06-19,2020-06-19,2022-12-14 12:09:24,,2063,1,False,False,False -115524421,2064.01,,5,5,5,5,5,5,5,17.6,89.2,59.39,0,1,0,KP,KP,11.5906,0.007,,1,qlp-s52-tois,QLP,16:56:31.32,44:18:09.13,-13.477,0.047,-27.061,0.046,2459735.852814,0.0008743,8.8036803,1.36e-05,2.997,0.287,9.114908,0.002816,8360.0,2.59361,8.9006,0.49633,72.699,813.0,51.0,246.353,1.565,5701.0,188.0,4.47,0.56,0.94,0.05,,,0.95,0.119232,"24,25,26,51,52",2020-06-19,2023-03-15,2023-03-24 12:12:10,WASP-148 b,2064,1,False,False,True -356710041,2065.01,TIC 356710041.01,3,5,5,3,4,4,4,,,77.47,0,4,6,PC,APC,9.0024,0.007,,1,spoc,CTOI,12:50:18.54,26:09:34.33,12.582,0.055,2.659,0.039,2458932.291437,0.0034089617,0.0,0.0,12.5551811643326,0.28876,1.457092,0.075032,1341.13095085062,69.10477,10.4432709916874,0.7342856,352.598949249598,1105.19777777234,22.965487,234.294,2.1745,5701.43,118.15,3.56597,0.0743608,2.75644993782043,0.13196,0.261546,0.0123429,1.02,0.125183,"23,49",2020-07-02,2023-02-10,2023-02-25 12:10:55,Rp ~ 15 Re; CTOI from Planet Hunters,2065,1,False,True,True -141663460,2066.01,,5,5,5,5,5,5,5,266.2,628.0,317.0,1,0,0,PC,FP,8.522,0.006,,1,qlp,QLP,15:14:31.67,-43:23:06.23,-6.984,0.127,-15.199,0.107,2458601.34368,0.00078,1.76442,5e-05,2.749,0.095,9.596767,0.002281,8800.0,2.10075,23.0,0.785358,17176.2,3189.0,54.0,326.04,7.135,9277.7,290.0,,,2.26,0.07,,,2.66,0.350717,11,2020-07-09,2020-07-09,2022-12-14 12:09:24,Large planet candidate around host star close to 141663464 (TOI 1962.01),2066,1,False,False,False -147951030,2067.01,,2,4,2,2,4,4,4,2.6,36.8,7.19,6,2,8,PC,PC,10.4547,0.006,,1,qlp-s60-ffi,SPOC,11:11:27.67,71:32:26.71,-47.469,0.057,-40.466,0.058,2459960.825545,0.0049773,8.812848,5.46e-05,2.356,1.309,0.983036,0.121983,905.0,112.344,2.58968,0.243587,109.341,900.0,13.0,138.308,0.7,5491.0,126.682,4.5359,0.0761074,0.88,0.05,,,0.962,0.118121,"14,20,21,41,47,48,60",2020-07-15,2023-02-27,2023-03-03 12:11:24,L1 candidate,2067,1,False,False,True -417931300,2068.01,,1,4,1,2,4,4,4,1.7,36.4,3.84,3,2,6,PC,PC,11.1806,0.007,,1,qlp-s48-tois,SPOC,12:25:05.65,60:25:06.04,-197.88,0.039,-6.197,0.033,2459623.464158,0.0048826,7.768982,5.77e-05,2.181,0.327,1.140622,0.002975,1050.0,2.74014,1.77405,0.111992,11.3921,511.0,11.0,52.9328,0.0586,3700.0,157.0,4.70036,0.00945482,0.54,0.02,,,0.538526,0.0202958,"14,15,21,22,41,48",2020-07-15,2022-06-29,2022-12-14 12:09:24,potential L1 planet,2068,1,False,False,True -198187049,2069.01,,2,4,2,2,4,4,4,2.0,9.2,1.15,1,2,7,PC,PC,7.9726,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,16:22:54.95,61:41:41.41,114.951,0.047,47.415,0.047,2458688.473496,0.0011570479,5.92142287655623,1.4316181e-05,2.46062077246702,0.14975698,0.152479,0.012244,140.42859212602,11.2766285,1.0470380758788,0.31575075,122.100483352581,847.811094282802,13.088792,38.6215,0.037,5268.0,125.279,4.56138,0.0826218,0.823126018047333,0.0473618,,,0.9,0.113806,"14,15,16,17,18,19,21,22,24,25,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59",2020-07-15,2023-04-24,2023-04-25 12:12:35,,2069,1,False,False,True -233182695,2070.01,,2,5,5,2,4,4,4,2.7,31.8,5.95,1,2,6,PC,PC,9.74428,0.006,,1,qlp-s49-ffi,SPOC,14:36:10.41,68:56:26.5,-9.672,0.082,18.091,0.061,2459654.784093,0.0028314,6.3838817,3.22e-05,1.68,0.332,0.390935,0.001039,360.0,0.956865,2.30075,0.166263,69.7857,805.0,12.0,148.003,0.7745,5849.0,123.43,4.33017,0.0759892,1.16,0.06,,,1.056,0.129035,"14,15,16,21,22,41,47,48,49",2020-07-15,2022-05-19,2022-12-14 12:09:24,,2070,1,False,False,True -198360694,2071.01,,2,4,2,2,4,4,4,2.4,27.7,7.23,2,3,6,PC,PC,11.04,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,17:06:24.28,57:39:39.72,-1.469,0.035,-15.734,0.041,2459659.620814,0.004937,5.67393360151783,1.0189277e-05,2.80741563479525,0.27902582,0.696482,0.032651,641.277923491799,30.072529,2.58758199347334,0.90747595,265.302480357311,1029.33105847772,21.806568,231.311,1.023,5873.3,139.832,4.46212,0.0810838,1.00285995006561,0.0538995,0.048,0.017,1.063,0.127493,"14,15,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2020-07-15,2023-05-19,2023-06-16 12:14:51,L1 candidate,2071,1,False,False,True -900715901,2072.01,,2,4,4,2,4,4,4,2.8,8.5,2.31,9,2,6,PC,PC,11.6434,0.006,,1,qlp-s48-tois,SPOC,11:35:56.77,75:32:47.86,-185.008,0.056,-87.324,0.05,2459635.550895,0.0030889,3.167981,1.76e-05,1.352,0.233,1.053675,0.003512,970.0,3.23504,,,31.7519,661.0,11.0,39.1185,0.04905,3546.0,119.826,4.93943,0.173715,,,,,,,"14,20,21,40,41,47,48",2020-07-15,2022-07-08,2022-12-14 12:09:24,potential L1 candidate; low snr; multiple stars in pixel; possible stellar variability,2072,1,False,False,True -441642457,2073.01,TIC 441642457.01,2,4,2,2,4,4,4,0.8,24.3,8.47,1,2,5,PC,PC,9.45253,0.006,,1,spoc-s14-s50-b0A-PC,SPOC,13:59:31.76,58:55:58.48,-82.55,0.041,-23.795,0.042,2458745.519019,0.003819812,53.1991438907095,0.00039338405,6.20242254828116,0.642232,0.64236,0.053265,591.460283470932,49.0575,2.83962330640876,1.1687869,16.5685990241825,514.566130010133,11.210143,123.946,0.3855,5729.0,120.914,4.32178,0.0737775,1.15631997585297,0.0541909,,,1.023,0.123838,"15,16,22,23,48,49",2020-07-15,2022-11-15,2022-12-14 12:09:24,period updated to ~53.2 days with spoc-s14-s50 data,2073,1,False,False,True -158075010,2074.01,,2,4,2,2,4,4,4,0.5,22.7,12.64,0,4,6,PC,PC,8.38689,0.006,,1,spoc,SPOC,14:32:44.25,43:45:23.14,-44.888,0.035,19.904,0.038,2458754.149159,0.0035022267,177.58305122878,0.005033746,4.79014425829153,0.37771565,0.495307,0.063984,456.090823416951,58.929592,3.59537307132677,0.7190103,9.16034871569246,443.708502843211,7.168755,131.275,0.4195,6594.0,133.174,4.16825,0.0859737,1.59978,0.0666708,,,1.375,0.217846,"16,23",2020-07-15,2020-07-12,2022-12-14 12:09:24,potential L1 candidate; only 2 transits so period not well constrained; no additional sectors for this target,2074,1,False,False,True -23814735,2075.01,,2,4,4,2,4,4,4,3.9,43.1,5.97,5,3,11,PC,PC,11.1345,0.006,,1,spoc-s14-s50-b0A-PC,SPOC,14:00:10.71,38:42:20.31,24.527,0.029,-30.637,0.041,2459690.292318,0.0054363,4.79816944690219,2.8504408e-05,2.14251232585188,0.37713936,1.141782,0.110079,1051.0675882311,101.38171,2.31335315016572,0.8039021,47.3415434245055,669.006523691415,9.001688,74.1469,0.15735,4065.0,120.25,4.59496,0.109961,0.667797029018402,0.0638743,,,0.64,0.0789216,"16,23,50",2020-07-15,2022-12-12,2023-05-23 00:00:00,potential L1 candidate; low snr,2075,1,False,False,True -27491137,2076.01,,1,4,4,1,4,4,4,6.1,102.2,6.41,13,14,6,CP,CP,8.3745,0.006,,1,spoc-s14-s50-b0A-CP,SPOC,14:29:34.08,39:47:25.44,-118.228,0.036,-6.973,0.048,2459675.695029,0.0017822,10.356359551487,2.0792342e-05,3.48149331250979,0.15268509,1.003621,0.0719,923.942126996727,66.21998,2.41032056391471,0.35092917,48.1191013906599,671.736777745184,12.489726,41.9091,0.0527,5149.6,81.7,4.6,0.09,0.772148013114929,0.0454673,,,0.87,0.108032,"16,23,50",2020-07-15,2022-11-09,2022-12-14 12:09:24,TOI-2076 b,2076,1,True,False,True -27491137,2076.02,,1,4,1,3,4,4,4,3.0,99.1,10.26,13,14,6,CP,CP,8.3745,0.006,,2,qlp-s50-tois,SPOC,14:29:34.08,39:47:25.44,-118.228,0.036,-6.973,0.048,2459675.93251,0.0014855,35.1257472,9.92e-05,2.839,0.372,2.245451,0.001238,2066.0,1.14053,3.17021,0.207547,3.78846,388.0,32.0,41.9091,0.0527,5149.6,81.7,4.6,0.09,0.77,0.05,,,0.87,0.108032,"16,23,50",2020-07-15,2022-09-07,2023-03-03 12:03:02,TOI-2076 d / TOI 2076.02; period updated to ~35 days with qlp-s50-tois,2076,2,True,False,True -27491137,2076.03,,1,4,1,5,4,5,5,7.7,147.9,13.85,13,14,6,CP,CP,8.3745,0.006,,3,qlp-s50-tois,SPOC/QLP,14:29:34.08,39:47:25.44,-118.228,0.036,-6.973,0.048,2459673.364369,0.0013713,21.0153047,5.72e-05,4.315,0.518,2.251979,0.001341,2072.0,1.23514,3.78219,0.24189,28.033,641.0,47.0,41.9091,0.0527,5149.6,81.7,4.6,0.09,0.77,0.05,,,0.87,0.108032,"16,23,50",2023-02-23,2023-02-23,2023-03-03 12:03:03,TOI-2076 c / TOI-2076.03,2076,3,True,False,True -230075227,2077.01,,2,4,4,2,4,4,4,1.7,29.4,2.92,2,3,6,PC,PC,9.7807,0.006,,1,qlp-s60-ffi,SPOC,16:17:30.47,68:53:40.79,-3.399,0.04,34.826,0.041,2459956.724111,0.0024143,6.1155762,2.3e-05,1.95,0.855,0.345319,0.031776,318.0,29.2666,1.52531,0.117897,98.0239,876.0,17.0,91.8282,0.17555,5284.0,122.558,4.54246,0.085154,0.85,0.05,,,0.91,0.117619,"14,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2020-07-15,2023-02-27,2023-03-03 12:11:24,variable host,2077,1,False,False,True -159244568,2078.01,,5,5,5,5,5,5,5,2.9,35.7,7.0,1,3,6,PC,FA,11.0372,0.006,,1,spoc,SPOC,15:08:43.19,82:26:48.93,35.892,0.04,-66.784,0.041,2458820.249587,0.0030809597,6.27724777675108,0.00042646774,1.53250135757547,0.6161359,0.989037,0.133206,910.521553643765,122.67958,2.53854406434194,2.4801824,105.278026977072,816.966378419423,7.383831,151.103,0.556,5244.0,118.782,4.58339,0.0801772,0.800741,0.0434623,,,0.896,0.111443,"19,21",2020-07-15,2020-07-15,2022-12-14 12:09:24,potential L1 candidate; low snr; crowded field,2078,1,False,False,True -224298134,2079.01,,1,4,1,2,4,4,4,4.6,8.4,1.93,7,2,5,PC,PC,10.8515,0.007,,1,qlp-s48-tois,SPOC,12:21:21.17,57:45:08.51,-149.355,0.043,-24.012,0.042,2459634.220669,0.002942,1.4923242,7.2e-06,1.063,0.287,0.597319,0.002377,550.0,2.18905,1.21108,0.085899,81.9599,838.0,10.0,37.066,0.04375,3577.0,157.0,4.75448,0.00718462,0.48,0.01,,,0.47851,0.0201508,"15,21,22,41,48",2020-07-15,2022-06-29,2022-12-14 12:09:24,bad transit shape (has a ramp); possibly stellar variability; possible multi,2079,1,True,False,True -224298134,2079.02,,2,4,2,2,4,4,4,1.9,54.3,4.41,7,2,5,PC,PC,10.8515,0.007,,2,qlp-s48-tois,SPOC,12:21:21.17,57:45:08.51,-149.355,0.043,-24.012,0.042,2459633.661001,0.0028873,9.3174072,4.11e-05,1.585,0.244,1.271055,0.003368,1170.0,3.10182,1.93397,0.109019,3.60844,383.0,10.0,37.066,0.04375,3577.0,157.0,4.75448,0.00718462,0.48,0.01,,,0.47851,0.0201508,"15,21,22,41,48",2022-02-28,2022-07-12,2022-12-14 12:09:24,potential multi,2079,2,True,False,True -367739494,2080.01,,2,4,2,2,3,4,4,0.3,20.6,9.61,3,3,3,PC,PC,11.4547,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,16:41:31.92,80:02:45.17,-18.769,0.036,64.767,0.05,2458689.532084,0.0045436053,63.5809449009002,0.00044942202,3.65613579982385,0.4726544,1.571658,0.182971,1446.50296444428,168.50865,3.05973461281373,0.5072698,3.15077781890857,339.800641498121,9.453484,141.436,0.449,4868.0,119.716,4.61964,0.0887982,0.722519993782043,0.046196,,,0.793,0.0959651,"14,15,19,20,21,25,26,40,41,47,48,52,53,55,59,60",2020-07-15,2023-05-19,2023-06-16 12:14:51,The period could be 2 times (127 d) or 3 times (190 days) as much; even transits more convincing than odd. Interesting target potentially in the habitable zone.,2080,1,False,False,True -321669174,2081.01,,2,4,4,2,4,4,4,1.2,31.8,4.46,7,2,4,CP,CP,11.642,0.007,,1,spoc-s14-s60-b0A-CP,SPOC,17:37:12.54,53:01:32.04,-111.988,0.042,-31.78,0.042,2459757.444606,0.0034541,10.5054361713606,2.1476137e-05,2.48504008962755,0.22968265,1.434773,0.072613,1320.60162530262,66.876884,1.94792901869319,0.3443212,8.25670014462087,432.335977742635,18.799452,62.3446,0.08335,3742.0,157.0,4.72382,0.00862431,0.515546977519989,0.0153071,,,0.513208,0.0202823,"14,17,20,21,24,25,26,40,41,47,50,52,53,54,57,58,60",2020-07-15,2023-06-13,2023-06-16 12:14:51,TOI-2081 b,2081,1,True,False,True -321669174,2081.02,,2,4,2,2,4,4,4,1.3,4.0,2.54,7,2,4,PC,PC,11.642,0.007,,2,spoc-s14-s60-b0A-CP,SPOC,17:37:12.54,53:01:32.04,-111.988,0.042,-31.78,0.042,2458686.965949,0.0020771383,5.10971968625831,1.951445e-05,1.63549759225856,0.28414625,0.586653,0.06926,540.181441138412,63.78863,1.39968482081059,0.21790844,21.5855207042948,549.743852982592,8.487083,62.3446,0.08335,3742.0,157.0,4.72382,0.00862431,0.515546977519989,0.0153071,,,0.513208,0.0202823,"14,17,20,21,24,25,26,40,41,47,50,52,53,54,57,58,60",2023-05-18,2023-05-18,2023-06-16 12:14:51,interior to TOI 2081 b; near 2:1 resonance; low SNR; possible offset towards TIC 1400693736,2081,2,True,False,True -160039081,2082.01,TIC 160039081.01,1,4,1,1,4,4,4,2.7,59.6,7.6,0,5,6,PC,PC,7.8206,0.006,,1,qlp-s51-tois,SPOC,16:06:19.49,53:30:52.71,69.846,0.048,-93.055,0.06,2459658.937811,0.0028181,30.200336,0.0001639,4.48,0.957,0.543004,0.00078,500.0,0.718458,2.66521,0.159896,28.0231,640.0,17.0,63.7194,0.11525,6004.0,117.657,4.36245,0.0741661,1.15,0.05,,,1.11,0.136639,"16,17,23,24,25,49,50,51",2020-07-15,2022-09-02,2022-12-14 12:09:24,light curve severely contaminated by systematics,2082,1,False,False,True -233633993,2083.01,,2,4,2,2,4,4,4,1.2,23.2,9.6,3,2,5,PC,PC,11.8737,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,18:59:04.26,60:09:16.04,25.806,0.044,60.92,0.043,2458695.867578,0.0035587351,17.9696390475004,8.3463885e-05,4.23881699764121,0.28858063,1.337406,0.076937,1231.03815181483,70.8589,3.05703422814742,0.35807592,14.1574454882039,494.727411481639,17.456623,146.594,0.5245,4410.0,124.828,4.507,0.10146,0.767286002635956,0.0642211,,,0.69,0.0845732,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,55,56,57,58,59,60",2020-07-15,2023-06-13,2023-06-16 12:14:51,Centroid scattered between sectors; crowded field,2083,1,False,False,True -441738827,2084.01,,2,4,4,2,3,4,4,1.2,22.6,4.91,7,0,2,PC,PC,13.3257,0.007,,1,qlp-s49-tois,SPOC,17:17:01.09,72:44:49.28,47.717,0.041,36.775,0.05,2459652.834382,0.0076751,6.0784031,6.58e-05,2.117,0.376,1.966963,0.009676,1810.0,8.91158,2.07448,0.16522,15.739,554.0,6.0,114.549,0.3405,3630.0,157.0,4.76664,0.00684404,0.47,0.01,,,0.464271,0.0202882,"15,16,18,19,20,21,22,23,24,25,47,48,49",2020-07-15,2022-08-16,2022-12-14 12:09:24,low SNR; weak transit shape,2084,1,True,False,True -441738827,2084.02,,5,5,5,5,5,5,5,1.3,27.5,7.18,7,0,2,PC,FP,13.3257,0.007,,2,spoc,SPOC,17:17:01.09,72:44:49.28,47.717,0.041,36.775,0.05,2458745.410754,0.0034610208,8.14902846389958,0.00018471242,2.32105531119281,0.3841846,3.099506,0.267755,2850.67951132013,246.58076,2.57814653153042,0.6007387,8.99020399440517,441.633629016763,10.60958,114.549,0.3405,3630.0,157.0,4.76664,0.00684404,0.466766,0.0138789,,,0.464271,0.0202882,"16,19,20,21,22,23,25,26",2020-07-15,2020-09-11,2022-12-14 12:09:24,TFOP FP (NEB),2084,2,True,False,True -103633672,2085.01,TIC 103633672.01,2,5,5,2,4,4,4,,,11.85,0,0,5,PC,PC,9.8499,0.006,,1,spoc-s14-s50-b0A-PC,SPOC,10:08:53.63,70:23:40.41,-33.703,0.047,-40.063,0.059,2458850.32085,0.003494489,0.0,0.0,6.79404145358295,0.3130823,2.048719,0.186797,1885.16090898336,172.03181,3.46104416492216,0.497022,1.40468345330832,277.660669318834,10.278564,84.5772,0.23065,5134.0,126.158,4.57244,0.0884481,0.799050986766815,0.0487588,,,0.87,0.107317,"14,20,21,40,41,47",2020-07-15,2022-11-15,2022-12-14 12:09:24,signal transit,2085,1,False,True,True -230387153,2086.01,TIC 230387153.01,2,4,2,2,4,4,4,0.5,15.5,8.09,4,2,7,PC,PC,11.316,0.006,,1,qlp-s56-tois,SPOC,19:03:41.2,65:47:08.42,15.932,0.056,63.447,0.046,2459772.489982,0.0077374,41.7540004,0.0004176,4.491,0.997,0.890669,0.077295,820.0,71.1892,2.75297,0.201589,7.9761,468.0,9.0,202.265,1.2415,5337.0,124.039,4.48036,0.0804313,0.91,0.05,,,0.921,0.114373,"14,15,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56",2020-07-15,2023-02-06,2023-02-09 12:10:04,possible multi in 2:1 resonance,2086,1,True,False,True -230387153,2086.02,,2,4,2,2,4,4,4,0.8,16.3,6.46,4,2,7,PC,PC,11.316,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,19:03:41.2,65:47:08.42,15.932,0.056,63.447,0.046,2459662.482575,0.009829,20.2616549832581,9.307219e-05,2.96851969690156,0.38825852,0.665704,0.059258,612.948546817462,54.577297,2.42060949428293,0.73090214,30.2935939259469,598.352967812554,10.653077,202.265,1.2415,5337.0,124.039,4.48036,0.0804313,0.914083003997803,0.0509548,,,0.921,0.114373,"14,15,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59",2020-09-23,2023-05-19,2023-06-16 12:14:51,potential multi near 2:1 resonance; weak transit shape,2086,2,True,False,True -219462190,2087.01,,2,5,5,2,3,4,4,,,5.77,0,5,3,PC,PC,10.0537,0.006,,1,spoc,SPOC,13:52:12.71,75:09:54.94,-14.785,0.05,-7.248,0.039,2458709.129054,0.011108528,0.0,0.0,16.0960466048946,0.8324055,0.595236,0.075745,548.082764971041,69.76123,2.26644822970795,0.47231916,7.63094481893307,423.900889460235,7.394593,131.542,0.416,5647.0,124.03,4.48001,0.0787141,0.953815,0.0489146,,,1.002,0.130217,"14,15,20,21,22",2020-07-15,2020-07-15,2022-12-14 12:09:24,variable star; single transit near BTJD 1790; other transits caused by systematics,2087,1,False,True,True -441765914,2088.01,TIC 441765914.01,1,4,1,1,3,4,4,0.2,20.5,12.16,0,10,4,PC,PC,10.8812,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,17:25:29.97,75:52:56.21,-18.935,0.044,-1.971,0.055,2459517.9957,0.0051861,124.729870031257,0.00056745345,7.29676916485988,0.28772092,1.936416,0.073354,1781.91600236247,67.559074,3.51309349977511,0.4456943,1.73377191830749,292.662946477479,26.024107,126.46,0.359,4902.0,123.229,4.5026,0.089012,0.831422984600067,0.0533367,,,0.802,0.0978188,"14,15,16,17,18,19,20,21,22,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2020-07-15,2023-05-26,2023-06-16 12:14:51,L1 candidate; one transit somewhat close to momentum dump,2088,1,False,False,True -341815197,2089.01,,2,4,2,2,4,4,4,0.3,15.7,7.54,0,2,5,PC,PC,11.5509,0.006,,1,qlp-s56-tois,SPOC,17:49:13.72,54:24:57.35,0.484,0.044,-3.654,0.038,2459790.282263,0.0050331,49.9950015,0.0004592,5.109,0.662,1.173229,0.097544,1080.0,89.8372,2.65286,0.201283,5.92112,434.0,12.0,187.927,0.6635,5274.27,126.47,4.61038,0.0882557,0.78,0.05,-0.06,0.078,0.904,0.114698,"14,15,17,18,20,21,23,24,25,26,40,41,47,48,50,51,52,53,54,55,56",2020-07-15,2023-02-06,2023-02-09 12:10:04,potential L1 planet,2089,1,False,False,True -233721037,2090.01,,2,4,2,2,4,4,4,0.3,11.7,13.15,0,3,6,PC,PC,8.80613,0.006,,1,spoc,SPOC,18:25:34.57,64:38:12.77,-9.763,0.05,33.89,0.049,2458715.333688,0.011392502,230.922119983671,0.015268166,15.8602661043912,0.9160727,0.309397,0.041294,284.924743401068,38.032257,3.67858048231007,0.9528093,10.5095659194275,459.214871636198,7.8939776,203.217,1.1105,6395.0,125.712,3.89312,0.0877001,2.1204,0.0945779,,,1.282,0.20271,"14,15,16,17,19,20,21,22,23,24,25,26",2020-07-15,2020-09-23,2022-12-14 12:09:24,First transit near a momentum dump; check the period; bright host; low SNR,2090,1,False,False,True -219778329,2091.01,,2,4,2,2,4,4,4,0.2,19.6,4.79,0,3,5,PC,PC,8.1529,0.006,,1,spoc-s14-s41-b0A-PC,SPOC,17:35:24.5,64:22:48.47,12.042,0.063,-74.434,0.054,2458742.87474,0.0054347753,177.21888710776,0.007756833,5.55906448783259,0.71145874,0.31972,0.040447,294.429628036174,37.251976,2.03231112944127,1.1323239,3.44528518231194,347.476984270182,7.953704,70.2105,0.13425,5809.0,121.651,4.33351,0.0737981,1.15024995803833,0.0543668,,,1.04,0.121487,"14,15,16,17,18,19,20,21,22,23,25,26,40,41",2020-07-15,2022-03-28,2022-12-14 12:09:24,The second transit is close to a momentum dump. Weak transit shape; potentially due to stellar variability. The planet candidate is in the habitable zone.,2091,1,False,False,True -393965778,2092.01,,2,4,2,2,4,4,4,3.7,35.0,7.63,1,3,9,PC,PC,10.6375,0.006,,1,qlp-s50-tois,SPOC,14:10:11.4,45:33:49.93,95.843,0.044,-29.282,0.047,2459687.380579,0.003385,4.3032437,3e-05,2.202,0.396,0.705958,0.001852,650.0,1.70612,2.66568,0.201109,195.793,1042.0,10.0,176.759,1.008,5468.73,114.582,4.37458,0.0792873,1.05,0.05,-0.122053,0.0124193,0.956,0.122767,"16,23,49,50",2020-07-15,2022-09-07,2022-12-14 12:09:24,potential L1 candidate,2092,1,False,False,True -402898317,2093.01,,2,4,2,2,4,4,4,0.3,19.6,5.59,2,3,7,PC,PC,10.6699,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,20:10:57.01,70:52:10.75,-36.894,0.043,55.129,0.046,2458751.624048,0.0034133035,53.8108713039137,0.00023485828,4.26550985477146,0.4254017,1.048426,0.070117,965.169662054076,64.578354,2.22490962806356,1.1120877,3.06469785398408,337.455620255448,13.02713,82.7982,0.1586,4455.0,125.547,4.55621,0.0998748,0.730261027812958,0.0598493,,,0.7,0.0838102,"15,16,17,18,19,20,22,23,24,25,40,48,49,50,52,53,55,56,57,58,59,60",2020-07-15,2023-05-19,2023-06-16 12:14:51,L1 candidate,2093,1,False,False,True -356016119,2094.01,,2,4,4,2,4,4,4,0.3,28.4,3.59,3,0,3,PC,PC,12.2669,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,16:56:34.21,70:01:38.34,-55.269,0.063,0.038,0.079,2458691.319362,0.0014442556,18.793174918788,3.8421596e-05,1.09889001841312,0.32580552,2.004706,0.190283,1844.6985474303,175.24152,1.71512708735031,0.6854407,1.85636580225475,297.704664550355,9.127365,50.0248,0.0837,3457.0,157.0,4.84825,0.00178,0.376774996519089,0.0112267,,,0.365046,0.0202439,"14,15,16,17,19,20,21,22,23,24,25,26,40,47,49,50,51,52,53,54,55,56,57,58,59,60",2020-07-15,2023-05-19,2023-06-16 12:14:51,L1 candidate,2094,1,False,False,True -235678745,2095.01,,2,5,5,2,4,4,4,0.3,3.6,2.13,6,1,4,PC,CP,11.0788,0.007,,1,qlp-s52-tois,SPOC,19:02:32.77,75:25:06.65,203.44,0.048,-21.318,0.047,2459752.69391,0.005565,17.6648787,0.0001405,2.61,0.369,0.727687,0.001905,670.0,1.75452,1.25125,0.0768311,3.28445,375.0,9.0,41.9176,0.05,3746.0,157.0,4.76979,0.00647892,0.46,0.01,,,0.460544,0.0201518,"14,15,16,17,18,19,20,21,22,23,24,26,40,41,47,48,49,50,51,52",2020-07-15,2022-10-23,2023-04-21 12:02:59,potential multi; small star,2095,1,True,False,True -235678745,2095.02,,2,5,5,2,4,4,4,0.2,3.3,2.32,6,1,4,PC,CP,11.0788,0.007,,2,qlp-s52-tois,SPOC,19:02:32.77,75:25:06.65,203.44,0.048,-21.318,0.047,2459718.493451,0.0061901,28.1722908,0.0002936,3.47,0.603,0.890669,0.002614,820.0,2.40765,1.31656,0.0879947,2.45492,348.0,9.0,41.9176,0.05,3746.0,157.0,4.76979,0.00647892,0.46,0.01,,,0.460544,0.0201518,"14,15,16,17,18,19,20,21,22,23,24,26,40,41,47,48,49,50,51,52",2020-07-15,2022-10-23,2023-04-21 12:02:59,second potential L1 candidate in potential multi,2095,2,True,False,True -142748283,2096.01,,2,4,4,2,4,4,4,2.4,56.0,3.27,5,0,3,PC,PC,13.4764,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,10:06:28.49,74:49:37.96,-26.044,0.076,-75.114,0.094,2459601.846172,0.0031127,3.11907156163725,1.2873729e-05,1.15859744654094,0.16846347,3.223536,0.546342,2964.58289114435,503.0731,1.62297956985344,0.20758255,10.084587060342,454.50041014115,8.965935,48.4809,0.098,3285.0,157.0,4.98992,0.014318,0.247330993413925,0.00734744,,,0.217977,0.0200839,"14,20,21,40,41,47,53,60",2020-07-15,2023-05-19,2023-06-16 12:14:51,L1 candidate in potential multi-planet system; low snr,2096,1,True,False,True -142748283,2096.02,,2,4,4,2,4,4,4,1.5,59.4,4.83,5,0,3,PC,PC,13.4764,0.007,,2,spoc-s14-s60-b0A-PC,SPOC,10:06:28.49,74:49:37.96,-26.044,0.076,-75.114,0.094,2458687.53823,0.001195639,6.38782015732006,1.4038233e-05,1.4551850733439,0.16032846,6.377871,0.462591,5857.01647044482,425.97147,2.04147104355437,0.18525308,3.87752849103573,357.897363375411,15.516945,48.4809,0.098,3285.0,157.0,4.98992,0.014318,0.247330993413925,0.00734744,,,0.217977,0.0200839,"14,20,21,40,41,47,53,60",2020-07-15,2023-05-19,2023-06-16 12:14:51,L1 candidate in possible multi-planet system,2096,2,True,False,True -279982557,2097.01,,5,5,5,5,5,5,5,2.2,24.4,3.45,4,3,1,PC,FP,11.6685,0.006,,1,spoc,SPOC,19:49:34.5,66:17:38.25,-29.674,0.043,13.444,0.042,2458712.393015,0.0022866041,1.78902172531801,3.6338784e-05,1.91905638067909,0.43343708,0.425285,0.045306,391.625166905334,41.727295,1.67418032227955,1.1330742,554.82611808639,1237.82421349877,9.167981,198.345,0.7935,5264.0,133.906,4.59586,0.0840356,0.791524,0.0447689,,,0.901,0.11385,"15,16,17,18,19,20,21,22,24",2020-07-15,2020-09-23,2022-12-14 12:09:24,low SNR potential L1 candidate; crowded field - check nearby stars,2097,1,False,False,True -356700488,2098.01,TIC 356700488.01,2,5,5,2,4,4,4,,,6.66,0,1,4,PC,PC,8.20773,0.006,,1,spoc-s14-s50-b0A-PC,SPOC,16:57:49.36,68:41:58.49,13.667,0.06,-20.542,0.077,2458756.674319,0.007979164,0.0,0.0,12.4131425608423,0.58513623,0.250659,0.029995,230.838701374898,27.625998,2.46618837020942,0.36479828,13.8234958524972,491.783803164955,8.0356455,148.944,0.669,7788.0,126.105,4.32577,0.074527,1.54577994346619,0.0435377,,,1.845,0.284571,"14,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50",2020-07-15,2022-11-15,2022-12-14 12:09:24,single transit at ~1757 TBJD,2098,1,False,True,True -230386397,2099.01,,5,5,5,5,5,5,5,2.5,48.4,14.75,3,2,5,EB,FP,11.2011,0.006,,1,qlp-s49-tois,SPOC,19:03:08.64,64:13:48.92,13.957,0.037,64.235,0.04,2459626.670376,0.0040686,19.5078657,0.0001229,4.603,0.754,1.923456,0.018941,1770.0,17.4455,3.92839,0.454226,61.4917,780.0,16.0,95.3985,0.1655,4316.0,115.142,4.56,0.0980273,0.71,0.06,,,0.67,0.0782599,"14,15,16,17,18,20,21,22,23,24,25,26,40,41,47,48,49",2020-07-15,2022-08-19,2022-12-14 12:09:24,centroid offset onto two fainter stars (TIC 230386395; TIC 230386399); retired as NEB,2099,1,False,False,True -219436394,2100.01,,2,4,2,2,4,5,5,1.3,29.3,9.66,1,3,6,PC,PC,10.8676,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,13:42:22.43,76:38:52.73,-48.068,0.042,3.251,0.041,2459605.640236,0.0039104,23.6573994144733,8.065959e-05,2.3087779898223,0.28356424,1.282942,0.079253,1180.93505671199,72.99173,3.06812208636828,0.71703935,23.5564567627431,561.884744953068,13.246354,163.982,0.6435,5535.0,122.408,4.57126,0.0790786,0.846615016460419,0.0426985,,,0.974,0.126383,"14,15,20,21,26,40,41,47,48,53,60",2020-07-15,2023-05-25,2023-06-16 12:14:51,L1 candidate,2100,1,False,False,True -165527918,2101.01,,1,4,1,2,4,4,4,2.0,26.9,7.03,1,3,7,PC,PC,10.6397,0.006,,1,qlp-s52-tois,QLP,17:44:32.09,54:05:27.5,12.459,0.037,-38.062,0.044,2459761.311616,0.0033354,9.0754002,4.94e-05,3.246,0.35,0.651637,0.000672,600.0,0.61883,2.55169,0.161189,97.37,875.0,17.0,178.427,0.591,5619.0,133.1,4.44,0.08,1.0,0.05,,,0.995,0.122326,"14,17,18,20,21,23,24,25,26,40,41,47,48,50,51,52",2020-07-15,2022-10-04,2022-12-14 12:09:24,potential L1 candidate,2101,1,False,False,True -289590465,2102.01,,2,4,2,2,4,4,4,1.6,22.8,5.18,9,3,5,PC,PC,11.4106,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,16:53:46.27,65:17:38.26,-11.609,0.046,-36.14,0.048,2458687.583784,0.0014944688,6.70602377486723,1.8094976e-05,1.67823649094399,0.26381028,0.589646,0.049556,542.93658078826,45.642166,2.1264700212769,0.46214166,100.779148829164,808.095002696251,11.08393,183.737,0.6945,5292.0,125.791,4.58201,0.084333,0.80781102180481,0.0452136,,,0.909,0.116601,"14,15,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,57,58,60",2020-07-15,2023-05-18,2023-06-16 12:14:51,L1 candidate,2102,1,False,False,True -160491359,2103.01,TIC 160491359.01,2,4,2,2,3,4,4,1.8,3.9,1.96,0,4,5,PC,PC,10.3366,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,15:56:04.06,73:04:26.11,-77.706,0.041,15.186,0.046,2459663.746739,0.0062176,2.66207276935833,1.1875506e-05,1.72350543132081,0.16360159,0.239974,0.021773,220.999421346124,20.053398,1.21721745503987,0.9033179,267.434979243825,1031.39329115276,11.092349,95.5156,0.1938,4884.0,123.5,4.54,0.09,0.799715995788574,0.0531859,,,0.8,0.0912405,"14,15,16,17,19,20,22,23,25,26,40,47,48,49,50,52,53,54",2020-07-15,2023-03-14,2023-03-24 12:12:10,inconsistent centroid shift; L1 candidate,2103,1,True,False,True -160491359,2103.02,,2,4,2,2,3,4,4,0.6,19.7,3.54,0,4,5,PC,PC,10.3366,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,15:56:04.06,73:04:26.11,-77.706,0.041,15.186,0.046,2458697.682402,0.006387116,20.2926467815124,0.00016555413,3.7402567280783,0.46829814,0.347426,0.040959,319.939519910182,37.72366,1.70049763089466,0.2695093,17.8262439839255,524.064463134438,7.6152134,95.5156,0.1938,4884.0,123.5,4.54,0.09,0.799715995788574,0.0531859,,,0.8,0.0912405,"14,15,16,17,19,20,22,23,25,26,40,47,48,49,50,52,53,54,56,59,60",2023-03-02,2023-05-19,2023-06-16 12:14:51,low SNR; potential multi,2103,2,True,False,True -367630162,2104.01,,2,4,2,2,4,4,4,3.1,41.7,2.96,6,4,5,PC,PC,10.0556,0.006,,1,qlp-s53-ffi,SPOC,10:06:26.93,83:05:16.22,-88.917,0.037,-132.175,0.035,2459766.777146,0.0031664,3.272306,1.82e-05,1.859,0.285,0.390935,0.000939,360.0,0.864661,1.45864,0.119503,149.019,973.0,9.0,76.7418,0.1274,4907.0,121.6,4.62,0.09,0.72,0.05,,,0.8,0.0897494,"14,19,20,26,40,47,53",2020-07-15,2022-09-02,2022-12-14 12:09:24,potential L1 candidate,2104,1,True,False,True -367630162,2104.02,,2,4,2,2,4,4,4,1.8,4.9,2.75,6,4,5,PC,PC,10.0556,0.006,,2,qlp-s53-tois,SPOC,10:06:26.93,83:05:16.22,-88.917,0.037,-132.175,0.035,2459763.051864,0.0039058,5.9043831,3.69e-05,2.573,0.547,0.445243,0.039507,410.0,36.3864,1.45725,0.12266,90.1242,858.0,9.0,76.7418,0.1274,4907.0,121.6,4.62,0.09,0.72,0.05,,,0.8,0.0897494,"14,19,20,26,40,47,53",2020-09-23,2022-11-30,2022-12-14 12:09:24,low MES potential multi,2104,2,True,False,True -367630162,2104.03,TIC 367630162.03,1,4,1,1,4,4,4,1.4,35.2,4.64,6,4,5,PC,PC,10.0556,0.006,,3,qlp-s53-tois,SPOC,10:06:26.93,83:05:16.22,-88.917,0.037,-132.175,0.035,2459759.01004,0.0043325,15.18089,0.0001093,2.862,0.673,0.738552,0.064117,680.0,59.0526,1.9835,0.158668,17.6206,570.0,9.0,76.7418,0.1274,4907.0,121.6,4.62,0.09,0.72,0.05,,,0.8,0.0897494,"14,19,20,26,40,47,53",2022-02-28,2022-11-30,2022-12-14 12:09:24,new candidate in multi; CTOI from Alton Spencer,2104,3,True,False,True -367630162,2104.04,TIC 367630162.04,1,4,1,1,4,4,4,2.3,5.9,1.44,6,4,5,PC,PC,10.0556,0.006,,4,qlp-s53-tois,SPOC,10:06:26.93,83:05:16.22,-88.917,0.037,-132.175,0.035,2458683.385446,0.0019295363,1.9803047,1.14e-05,1.693,0.282,0.358352,0.028626,330.0,26.3653,1.11012517061372,1.6911396,319.977,1178.0,8.166454,76.7418,0.1274,4907.0,121.6,4.62,0.09,0.72,0.05,,,0.8,0.0897494,"14,19,20,26,40,47,53",2022-02-28,2022-11-30,2022-12-14 12:09:24,4th super-earth candidate in potential multi; CTOI from Alton Spencer,2104,4,True,False,True -367630162,2104.05,TIC 367630162.05,1,4,1,1,4,4,4,1.6,32.9,3.47,6,4,5,PC,PC,10.0556,0.006,,5,spoc-s14-s50-b0A-PC,SPOC,10:06:26.93,83:05:16.22,-88.917,0.037,-132.175,0.035,2458687.794321,0.0043623303,9.56110995932098,8.353699e-05,3.01281106417084,0.42467156,0.414349,0.051763,381.556763958528,47.67415,1.67908764243569,0.27665547,40.5800926350629,643.721490342164,8.336283,76.7418,0.1274,4907.0,121.6,4.62,0.09,0.723757028579712,0.0465477,,,0.8,0.0897494,"14,19,20,26,40,47",2022-11-16,2022-11-15,2022-12-14 12:09:24,fifth candidate in multi-planet system,2104,5,True,False,True -156199502,2105.01,,2,4,2,2,4,4,4,1.7,36.0,5.61,1,3,6,PC,PC,9.8565,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,12:04:15.47,83:26:16.92,-250.6,0.047,88.434,0.036,2459422.272665,0.0038638,15.9152686047112,5.4445678e-05,1.13931109060336,0.40008643,0.708736,0.078811,652.557424821711,72.58472,2.22774790225942,2.4513698,23.4115602122682,561.018701790409,8.521751,72.9091,0.1173,4718.0,121.745,4.49012,0.0925532,0.821066975593567,0.0576634,,,0.76,0.0887946,"14,19,21,26,41,53,60",2020-07-15,2023-05-22,2023-06-16 12:14:51,L1 candidate; low SNR; two stars in pixel,2105,1,False,False,True -393911494,2106.01,,5,5,5,5,5,5,5,63.9,246.7,24.48,3,2,8,PC,FP,9.85649,0.006,,1,spoc,SPOC,13:48:42.83,44:54:42.31,-28.575,0.042,-63.889,0.06,2458899.861702,0.00057600526,0.633259258492003,1.3101966e-05,0.862201140572389,0.056651466,1.294382,0.082184,1191.45971951723,75.69162,5.30279043328529,3.7474084,4030.75124746515,2032.19907258183,22.733013,121.167,0.4895,5590.0,122.048,4.45374,0.0788276,0.976212,0.0483266,,,0.988,0.125293,"22,23",2020-07-15,2020-07-15,2022-12-14 12:09:24,check nearby star in pixel; odd/even in spoc s14-23,2106,1,False,False,True -446549906,2107.01,,3,4,4,3,3,4,4,111.2,268.2,130.66,4,21,1,PC,PC,11.3819,0.006,,1,qlp,QLP,19:07:11.17,-58:41:48.61,3.888,0.053,-8.107,0.049,2458654.61467,0.00051,2.45457,0.0,2.39,0.054,21.104208,0.004227,19250.0,3.89327,14.183,0.745426,508.468,1322.0,64.0,236.705,1.919,5565.0,124.9,4.45,0.08,0.97,0.05,,,0.98,0.123017,"13,27",2020-07-17,2020-10-12,2023-05-14 00:00:00,source of transit observed on 446549905 (TOI 1110.01),2107,1,False,False,False -347538174,2108.01,,3,5,5,3,4,5,5,278.0,720.0,317.0,0,2,5,PC,APC,10.223,0.008,,1,spoc-s52-b0A,QLP,16:29:55.58,21:29:42.58,-0.39,0.056,7.572,0.053,2459719.380198,0.0014984129,6.80196246322486,0.00078532216,2.91216511208304,0.11539279,16.922803,0.536387,15465.6374163198,493.90906,29.3148832389542,28.43558,501.941362795787,1207.21047712425,30.59839,251.884,2.739,6300.0,133.3,4.22,0.09,1.42268002033234,0.0666332,,,1.236,0.19245,"25,52",2020-07-28,2022-08-24,2022-12-14 12:09:24,very large PC; v-shaped; TFOP SB1,2108,1,False,False,True -392476080,2109.01,,3,4,4,3,4,4,4,219.7,202.3,317.0,23,83,6,CP,CP,9.78569,0.006,,1,qlp-s25-ffi,QLP,16:52:44.71,16:34:47.7,-8.449,0.043,-9.257,0.051,2458984.38888,0.00042,0.67249,2e-05,1.801,0.125,8.600432,0.002192,7890.0,2.01878,15.7288,0.739851,14429.0,3053.0,133.0,262.041,2.7255,6647.0,135.1,4.12,0.09,1.7,0.07,,,1.399,0.232463,25,2020-07-28,2022-04-05,2023-05-11 00:00:00,large; secondary; artifact TIC 392476079 close by,2109,1,False,False,True -394029948,2110.01,,5,5,5,5,5,5,5,1.3,23.0,10.43,1,3,4,PC,FA,9.69902,0.006,,1,qlp,QLP,18:48:55.11,78:34:08.21,27.204,0.046,20.522,0.041,2458687.55509,0.00851,32.76639,0.00245,6.089,0.782,0.543004,0.002089,500.0,1.92442,3.20531,0.260256,38.3962,693.0,9.0,182.323,0.7245,6073.0,134.0,4.21,0.08,1.39,0.07,,,1.135,0.157386,25,2020-07-28,2020-07-28,2022-12-14 12:09:24,potential L1 candidate,2110,1,False,False,True -356235833,2111.01,,5,5,5,5,5,5,5,13.7,108.0,6.63,0,2,0,PC,FP,9.1597,0.006,,1,spoc,SPOC,17:20:23.13,20:16:54.68,-51.299,0.028,-174.989,0.034,2458984.370747,0.0007791957,1.26934213988761,3.5820205e-05,1.01843521021704,0.18301749,0.680044,0.033918,626.147134796635,31.238977,2.45862793013376,1.5685664,1427.166028684,1567.61126046311,21.486248,83.1749,0.1674,5477.0,121.4,4.46,0.08,0.952786,0.048603,,,0.96,0.121748,"25,26",2020-07-28,2020-09-23,2022-12-14 12:09:24,TOI 2111 under investigation. Likely EB because of the centroid offset.,2111,1,False,False,True -427320001,2112.01,,1,4,1,1,4,4,4,12.2,114.2,18.41,0,1,5,PC,PC,7.1776,0.006,,1,spoc-s14-s60-b0A-PC,QLP,22:55:25.04,70:17:50.24,38.327,0.049,1.357,0.044,2459729.804553,0.001511069,14.0120582207748,0.0001565493,5.93486325620767,0.115316965,0.81626,0.046252,751.52030562109,42.59862,4.48351265595211,0.2879591,335.029517361553,1091.16522688616,14.043275,86.1058,0.19105,7184.0,121.9,4.25,0.08,1.58045995235443,0.0573015,,,1.61,0.270601,"52,57,58",2020-07-28,2023-05-19,2023-06-16 12:14:51,potential multi; bright pulsating host; potential TTVs,2112,1,True,False,True -427320001,2112.02,,3,4,3,3,4,4,4,2.5,67.5,26.47,0,1,5,PC,PC,7.1776,0.006,,2,spoc-s57-b0A,SPOC,22:55:25.04,70:17:50.24,38.327,0.049,1.357,0.044,2459856.006624,0.001380386,155.8237,0.001944738,10.6418460259721,0.124967374,1.264969,0.084107,1164.40060915192,77.46202,5.55219574295012,0.31037438,156.503230190282,902.091469498453,15.823791,86.1058,0.19105,7184.0,121.9,4.25,0.08,1.58045995235443,0.0573015,,,1.61,0.270601,"52,57",2022-07-28,2023-01-30,2023-02-09 12:10:04,released as a single transit but now have additional transit for max period = 155.8237 d; potential multi,2112,2,True,False,True -1400212743,2113.01,,3,4,3,3,4,4,4,7.6,52.3,15.67,0,0,5,PC,PC,10.5163,0.006,,1,qlp,QLP,17:49:25.1,40:27:25.58,-2.666,0.048,-63.694,0.061,2458984.22398,0.00888,5.24612,0.004,4.194,0.62,1.118885,0.003871,1030.0,3.56524,5.61881,1.29107,368.522,1220.0,9.0,250.755,1.8115,5286.9,691.4,,,1.76,0.39,,,,,25,2020-07-28,2020-07-28,2022-12-14 12:09:24,2 stars in pixel; 116159262 is a phantom tic,2113,1,False,False,True -9828416,2114.01,,3,4,3,5,2,5,5,48.2,53.8,317.0,3,8,3,PC,PC,9.8251,0.007,,1,qlp-s53-ffi,QLP,17:24:23.13,33:12:18.26,-7.865,0.04,-3.024,0.045,2459768.726495,0.0007284,6.2099663,7.6e-06,4.49,0.398,4.449767,0.000672,4090.0,0.618771,14.369,0.682371,1293.02,1670.0,76.0,317.845,2.447,6382.0,131.3,3.9,0.09,2.1,0.1,,,1.28,0.200026,"25,26,52,53",2020-07-28,2022-09-02,2022-12-14 12:09:24,,2114,1,False,False,True -54464870,2115.01,,5,5,5,5,5,5,5,4.7,48.8,9.45,0,2,4,PC,FP,8.29254,0.006,,1,qlp,QLP,01:18:22.89,63:32:42.31,-5.424,0.063,10.006,0.069,2458792.69036,0.00937,3.69443,0.00019,4.665,0.559,0.228029,0.000434,210.0,0.400177,3.02321,0.175769,5384.59,2386.0,12.0,213.097,2.6725,8153.0,224.6,4.09,0.08,2.11,0.07,,,1.99,0.302123,25,2020-07-28,2020-07-28,2022-12-14 12:09:24,potential L1 candidate,2115,1,False,False,False -422838133,2116.01,,5,5,5,5,5,5,5,3.8,33.2,10.87,0,3,1,EB,FP,9.68129,0.006,,1,qlp-s52-ffi,QLP,01:35:19.07,72:56:12.64,-5.951,0.04,1.354,0.045,2459741.534916,0.0075243,5.309031,5.68e-05,5.851,0.516,0.434381,0.000494,400.0,0.454895,3.29096,0.189683,2058.62,1876.0,10.0,239.945,1.52,6927.0,319.6,4.18,0.1,1.65,0.07,,,1.512,0.278628,"18,19,24,25,52",2020-07-28,2022-07-13,2022-12-14 12:09:24,slight depth-aperture correlation; possible centroid offset to SW; artifact TIC 289140634 close by; TFOP FP,2116,1,False,False,True -279212407,2117.01,,5,5,5,5,5,5,5,16.1,79.6,105.36,0,2,0,EB,FP,9.98272,0.006,,1,qlp-s52-ffi,QLP,01:42:45.71,65:53:44.77,26.394,0.042,-12.294,0.044,2458971.41863,0.0018495,28.6620782,0.0005842,4.351,0.338,2.82659,0.118814,2600.0,109.426,12.4971,2.06455,119.851,921.0,19.0,255.917,2.0205,6280.0,503.0,4.05,0.13,1.72,0.08,,,1.227,0.2905,"18,24,25,52",2020-07-28,2022-07-13,2022-12-14 12:09:24,slight depth aperture and a slight centroid offset towards NW,2117,1,False,False,True -17416749,2118.01,,5,5,5,5,5,5,5,11.9,63.3,16.88,0,5,9,PC,FP,8.63532,0.006,,1,qlp,QLP,16:08:48.24,35:41:28.09,-8.05,0.093,-26.801,0.132,2458956.56894,0.00399,2.34483,0.00033,1.417,0.353,0.401797,0.001383,370.0,1.27335,4.2647,0.322806,580.577,1367.0,11.0,186.825,2.2255,6398.0,126.4,3.89,0.09,2.13,0.09,,,1.283,0.189783,25,2020-07-28,2021-01-11,2022-12-14 12:09:24,Active star but clear and phased signal; some depth-aperture correlation; 2 stars in pixel; artifact TIC 17416751 close by,2118,1,False,False,True -236387002,2119.01,,3,5,5,3,4,4,5,138.7,732.2,107.76,4,7,2,CP,CP,10.3978,0.007,,1,qlp-s52-ffi,SPOC,16:17:43.17,26:18:15.16,-29.295,0.062,6.824,0.073,2459721.969425,0.0001588,7.2008624,2.2e-06,2.142,0.057,57.028981,0.091184,51170.0,83.9805,12.723,0.628659,11.7385,515.0,202.0,31.4006,0.0429,3606.0,157.0,4.74,0.01,0.5,0.01,,,0.496373,0.020288,"24,25,51,52",2020-07-29,2022-08-23,2022-12-14 12:09:24,confirmed brown dwarf,2119,1,False,False,True -389900760,2120.01,,3,4,4,3,3,4,4,3.7,126.0,7.46,6,1,3,PC,PC,12.8233,0.007,,1,spoc-s14-s55-b0A-PC,SPOC,01:34:01.76,65:30:50.36,306.282,0.065,-215.531,0.078,2458795.822874,0.0009971453,5.79981888817589,1.40004795e-05,1.01437401085988,0.101210885,9.341945,1.431186,8567.33902229268,1317.3026,2.63461242922817,0.39226365,3.73670952754909,354.602737839139,13.711875,32.1755,0.05285,3179.0,157.0,4.99978,0.0153626,0.24023300409317,0.00728193,,,0.210366,0.0201367,"18,24,25,52",2020-07-29,2023-03-09,2023-03-24 12:12:10,Short V-shaped transit. Multiple stars in pixel.,2120,1,False,False,True -88996391,2121.01,,5,5,5,5,2,5,5,146.5,349.3,103.79,3,3,4,PC,APC,11.9441,0.006,,1,spoc-s14s26-b0A,SPOC,17:35:46.65,36:11:47.37,-16.54,2.198,-23.999,2.198,2459718.98744,0.0018217972,2.3195653837478,3.472481e-05,2.02590857834737,0.03186156,21.390634,0.315316,19508.6953576373,290.3744,12.4030721801246,2.5790782,195.487990122864,953.673620791914,95.33814,,,4325.66,44.2312,4.438,,0.628365,0.0575012,-0.0245085,0.0420686,,,"25,26,52,53",2020-07-29,2022-11-18,2022-12-14 12:09:24,V-shaped and deep transit.,2121,1,False,False,True -311408969,2122.01,,5,5,5,5,5,5,5,45.7,50.8,317.0,0,0,0,KP,KP,12.658,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,17:37:05.64,25:43:52.13,7.393,0.018,-8.116,0.021,2459767.525934,0.0010416,3.58522837273409,3.3151002e-06,3.01972240538067,0.04476202,18.515952,0.219908,16909.2285380144,202.52211,14.5431828580075,0.72772807,547.171991573032,1233.53283483753,87.39749,511.388,3.6095,5852.0,126.792,4.40684,0.0787424,1.06725001335144,0.0521709,,,1.06,0.132448,"25,26,52,53",2020-07-29,2023-03-15,2023-03-24 12:12:10,HAT-P-55 b,2122,1,False,False,True -105840719,2123.01,,3,4,4,3,4,4,4,8.2,97.5,14.05,20,5,6,PC,PC,9.5373,0.006,,1,qlp-s51-ffi,SPOC,16:15:45.81,17:01:26.05,-37.284,0.038,-26.414,0.037,2459691.819821,0.0023041,10.3088372,4.71e-05,3.473,0.298,2.130131,0.001202,1960.0,1.10738,3.80877,0.227828,71.1658,809.0,20.0,86.2732,0.2289,5432.0,127.165,4.56341,0.0781863,0.84,0.05,,,0.95,0.11599,"25,51",2020-07-29,2022-06-24,2023-06-03 00:00:00,Highly variable star with PC,2123,1,False,False,True -159742538,2124.01,,5,5,5,5,5,5,5,85.3,126.8,317.0,0,0,0,KP,KP,11.1116,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,17:53:13.04,37:12:42.26,-6.482,0.044,-20.855,0.043,2459767.927156,0.0003835,3.5539283440893,2.0924242e-06,3.63413878980795,0.025066141,10.219544,0.060229,9368.38877042408,55.471012,21.202807626713,1.1076765,2276.29501872558,1761.67944289858,180.8058,515.98,6.935,6184.0,138.383,3.9042,0.0873166,2.00851988792419,0.104535,0.26,0.1,1.18,0.163107,"25,26,40,52,53",2020-07-29,2023-03-15,2023-03-24 12:12:10,TrES-4 b,2124,1,False,False,True -116242971,2125.01,,5,5,5,5,5,5,5,60.6,73.0,317.0,0,0,0,KP,KP,10.1213,0.008,,1,spoc-s14-s55-b0A-KP,QLP,17:50:33.72,36:34:12.63,-0.136,0.038,-10.962,0.045,2459760.489728,0.0014417,5.03163086670721,3.9821134e-06,5.60423820624872,0.033092603,5.938187,0.042704,5454.34348190918,39.33117,16.4901283054093,0.7625309,1766.84118836097,1653.55684070067,140.67812,368.03,3.1315,6350.0,133.7,3.87,0.08,2.16279006004333,0.0989498,,,1.26,0.181075,"25,26,40,53",2020-07-29,2023-03-15,2023-03-24 12:12:10,KELT-12 b,2125,1,False,False,True -116264089,2126.01,,5,5,5,5,5,5,5,235.7,250.9,317.0,0,0,1,KP,KP,11.7213,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,17:52:06.99,37:32:46.78,-24.529,0.037,34.809,0.041,2459391.063502,0.00021606899,1.30618801690067,3.300982e-07,1.41777456339178,0.0074705756,27.20596,0.158196,24746.2794438472,145.69313,16.7588829905186,1.2310016,1025.50218948749,1443.28940477917,329.90997,231.337,1.2955,5489.0,139.399,4.59342,0.0885229,0.820181012153625,0.0486935,-0.24,0.1,0.962,0.132489,"25,26,40,52,53",2020-07-29,2023-03-15,2023-03-24 12:12:10,TRES-3 b,2126,1,False,False,True -21744120,2127.01,,5,5,5,5,5,5,5,46.9,180.2,81.13,0,0,0,KP,KP,11.733,0.006,,1,spoc,SPOC,17:05:23.13,33:00:44.37,-14.073,0.034,-36.689,0.042,2458983.744992,0.00038474426,5.50806821746442,7.1658375e-05,2.63999947014186,0.034436543,23.691975,0.210452,21584.7573167274,193.81427,10.7299795003944,0.7361982,82.2406616223352,768.053368932309,112.98463,161.4,0.6075,4790.0,117.624,4.58765,0.0884501,0.740113,0.0496683,0.14,0.08,0.773,0.0905949,"25,26",2020-07-29,2020-09-23,2022-12-14 12:09:24,HAT-P-18 b,2127,1,False,False,True -21832928,2128.01,,2,4,2,2,4,4,4,7.6,124.5,7.43,1,18,11,PC,PC,6.6813,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,17:07:55.63,32:06:19.09,-162.014,0.038,-42.123,0.041,2458987.266354,0.0033906454,16.3413889020981,0.00012791951,5.37644805048291,0.26606703,0.404074,0.025919,372.097061819257,23.872057,2.62907902275773,0.14746214,86.2314650477653,777.206082436985,15.422834,36.578,0.03435,5991.11,101.692,4.37711,0.0725906,1.12505996227264,0.042211,-0.11,0.03,1.1,0.134605,"25,26,52",2020-07-29,2023-03-09,2023-03-24 12:12:10,L1 candidate with bright host,2128,1,False,False,True -101721385,2129.01,,5,5,5,5,5,5,5,88.3,105.1,317.0,0,0,0,KP,KP,9.54417,0.006,,1,qlp-s53-ffi,SPOC,17:20:27.88,38:14:31.81,2.241,0.042,-6.714,0.045,2459762.100336,0.0004222,4.627664,5.5e-06,2.306,0.228,6.741594,0.047117,6190.0,43.3954,14.3694,1.29133,1038.78,1581.0,161.0,222.663,1.2505,6727.6,123.7,4.22,0.09,1.55,0.07,0.126637,0.0526804,1.433,0.248358,"25,26,52,53",2020-07-29,2022-08-23,2022-12-14 12:09:24,HAT-P-14 b,2129,1,False,False,True -320798691,2130.01,,5,5,5,5,5,5,5,46.4,126.5,121.86,0,0,0,KP,KP,11.0269,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,18:06:09.04,26:25:35.78,-7.437,0.03,-13.402,0.037,2459010.827728,0.0006051416,5.00526050340238,7.094829e-06,4.90576462284046,0.049439706,8.32841,0.089487,7641.40409804106,82.416824,13.6314527589016,0.5997112,746.902456024435,1333.32407647945,99.076416,344.05,2.889,6115.0,128.697,4.16703,0.0816443,1.46701002120972,0.0633166,,,1.153,0.162159,"26,40,53",2020-08-07,2023-03-15,2023-03-24 12:12:10,HAT-P-31 b,2130,1,False,False,True -27848472,2131.01,,5,5,5,5,5,5,5,161.4,178.2,317.0,0,1,0,KP,KP,10.1058,0.006,,1,spoc-s14-s55-b0A-KP,QLP,18:34:31.62,35:39:41.15,-6.069,0.042,-21.745,0.049,2459771.157718,0.00017530729,1.8468372547281,3.5037522e-07,2.75791714469075,0.008385539,13.159943,0.038433,12047.5946062073,35.39704,15.6059469957152,0.80889845,2664.90350256447,1832.48370509819,399.30225,231.161,1.6365,6352.0,144.2,4.27,0.09,1.36116003990173,0.0704774,-0.04,0.1,1.261,0.193608,"26,40,53,54",2020-08-07,2023-03-15,2023-03-24 12:12:10,WASP-3 b,2131,1,False,False,True -358516596,2132.01,,5,5,5,5,5,5,5,231.7,321.9,317.0,0,0,0,KP,KP,10.2025,0.006,,1,spoc-s14-s55-b0A-KP,QLP,18:53:13.31,24:07:38.09,-14.583,0.03,-31.197,0.041,2459391.154184,0.00045708375,3.24404536626308,5.3987183e-06,3.6774272145435,0.03399909,16.422583,0.255609,15011.9381968929,235.3968,21.049846605203,1.2848113,983.309755560016,1428.21087790916,118.58496,197.572,1.0,5703.0,99.1,4.16,0.07,1.38951003551483,0.0603015,0.23,0.1,1.016,0.129725,"26,40,53,54",2020-08-07,2023-03-15,2023-03-24 12:12:10,KELT-8 b,2132,1,False,False,True -39200363,2133.01,,2,4,2,2,4,4,4,5.5,51.0,6.61,2,3,5,PC,PC,10.8571,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,17:24:58.52,32:47:54.23,-17.882,0.036,64.347,0.036,2458985.882828,0.0012399727,3.82665866538661,1.5854497e-05,2.0605848173056,0.31311378,1.283899,0.101224,1181.81542962279,93.22662,2.4536346940501,1.5022432,81.1071602256619,765.393110194118,11.508222,75.1973,0.1361,4175.0,123.3,4.54,0.11,0.716311991214752,0.0671683,,,0.65,0.0803712,"25,26,52,53",2020-08-07,2023-03-09,2023-03-24 12:12:10,,2133,1,False,False,True -75878355,2134.01,,1,4,4,1,4,4,4,15.8,195.0,9.81,30,5,8,PC,PC,7.7945,0.006,,1,qlp-s52-ffi,SPOC,18:07:44.52,39:04:22.54,54.371,0.052,-283.05,0.051,2459776.71381,0.00084987644,9.2292064,2.32e-05,2.927,0.085,1.695071,0.000319,1560.0,0.294085,3.09843,0.261692,25.7273,627.0,72.0,22.6202,0.01595,4406.0,123.336,4.50428,0.0980128,0.77,0.06,,,0.69,0.0790972,"26,40,52,54",2020-08-07,2022-10-11,2023-04-03 00:00:00,,2134,1,True,False,True -75878355,2134.02,TIC 75878355.02,1,4,1,3,4,4,4,,,47.67,30,5,8,PC,PC,7.7945,0.006,,2,qlp-s52-ffi,SPOC/QLP,18:07:44.52,39:04:22.54,54.371,0.052,-283.05,0.051,2459718.969576,0.0002504,0.0,0.0,5.109,0.045,10.550162,0.00027,9670.0,0.248797,7.85085,0.654158,8.23524,471.0,85.0,22.6202,0.01595,4406.0,123.336,4.50428,0.0980128,0.77,0.06,,,0.69,0.0790972,"26,40,52",2022-07-28,2022-07-28,2022-12-14 12:09:24,single transit immediately after data gap; potential multi,2134,2,True,True,True -76419763,2135.01,,5,5,5,5,5,5,5,78.4,196.6,126.64,0,0,0,KP,KP,11.3998,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,18:17:37.33,36:37:17.26,11.866,0.033,6.031,0.039,2459414.394742,0.0002515,2.78847226599223,1.0113333e-06,2.94624639999892,0.01782826,15.822828,0.078573,14467.6854046062,72.36582,13.943264469001,0.77938974,850.675419350001,1377.4020357763,214.61458,303.336,1.8015,5833.0,144.943,4.35385,0.0853583,1.1295599937439,0.0628719,0.11,0.1,1.051,0.135164,"26,40,53,54",2020-08-07,2023-03-15,2023-03-24 12:12:10,HAT-P-5 b,2135,1,False,False,True -336128819,2136.01,,2,5,5,2,4,4,4,2.4,80.4,5.36,7,0,6,PC,CP,11.7371,0.007,,1,spoc-s14-s41-b0A-PC,SPOC,18:44:42.32,36:33:47.27,-33.8,0.103,177.358,0.112,2459394.593726,0.002155869,7.85190820404635,3.6743193e-05,1.63187259568172,0.27211654,4.214266,0.289701,3873.95914916701,266.78912,2.17058026165306,0.5446732,4.89046879575074,379.277755825568,14.27448,33.3631,0.06425,3384.0,157.0,4.87998,0.000834811,0.343879997730255,0.0103308,,,0.327134,0.0202642,"26,40",2020-08-07,2022-02-15,2022-12-14 12:09:24,,2136,1,False,False,True -23059280,2137.01,,3,5,5,3,4,4,4,43.6,110.9,317.0,3,3,3,PC,APC,12.2186,0.006,,1,spoc-s14-s41-b0A-APC,SPOC,18:16:34.55,34:10:22.84,17.988,0.032,-9.101,0.038,2459393.08477,0.0005812681,14.1502268785682,2.7343367e-05,3.82644508569651,0.04327502,45.85985,0.452416,41358.8663922668,416.6034,18.6317683266025,1.2525848,34.4595551826568,617.941220550141,101.66401,244.755,1.1275,4882.0,123.99,4.45655,0.0865848,0.873951971530914,0.0582613,,,0.797,0.0942953,"26,40",2020-08-07,2022-02-15,2022-12-14 12:09:24,TFOPWG SB1/APC; possible EB; possible secondary; ambiguous radius,2137,1,False,False,True -336267424,2138.01,,5,5,5,5,5,5,5,190.1,363.3,317.0,4,2,1,EB,FP,12.5466,0.006,,1,spoc-s14-s55-b0A-APC,SPOC,18:46:38.86,41:33:36.07,1.395,0.075,-7.478,0.082,2458684.221959,0.00018496477,1.48218448305313,6.72061e-07,2.59568271772436,0.02584985,17.809389,0.153043,16269.256279263,140.9483,27.5079497721211,6.821365,4005.67585598038,2029.03108372928,168.65538,772.026,26.103,6835.31,137.219,4.37191,0.0939989,1.3128399848938,0.0728443,-0.169973,0.0134518,1.48,0.255652,"14,26,40,41,53,54",2020-08-07,2022-12-12,2022-12-16 12:08:26,large and V-shaped; significant odd-even; retired as TFOP EB,2138,1,False,False,True -308172249,2139.01,,5,5,5,5,5,5,5,111.3,208.8,127.49,0,0,0,KP,KP,12.4197,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,17:49:08.37,29:52:44.55,-18.197,0.022,-12.092,0.026,2459768.65359,0.0003239,1.4013784006976,8.9033915e-07,1.70427147488646,0.02165711,21.64148,0.245646,19735.2001266552,226.22255,13.9977477623792,0.9058741,917.410094908259,1403.65581193692,107.293,298.214,1.4135,4984.0,124.134,4.41028,0.0852564,0.934976994991302,0.0597739,,,0.82,0.0960542,"26,52,53",2020-08-07,2023-03-15,2023-03-24 12:12:10,WASP-135 b,2139,1,False,False,True -399860444,2140.01,TIC 399860444.01,5,5,5,5,5,5,5,122.8,309.1,123.98,0,2,10,KP,KP,10.854,0.006,,1,spoc-s14-s55-b0A-KP,QLP,19:07:14.05,49:18:59.12,5.219,0.043,1.619,0.043,2459012.510963,9.375683e-05,2.47061141800205,5.841553e-07,1.7944860211758,0.008252223,15.649912,0.078499,14310.7159757664,72.29766,13.7703405341296,0.5475148,817.565819281973,1363.79919927797,260.52148,215.32,1.0445,5854.0,101.6,4.45,0.07,1.01612997055054,0.0402412,-0.03,0.1,1.057,0.133502,"26,40,41,54,55",2020-08-07,2023-03-15,2023-03-24 12:12:10,TrES-2 b,2140,1,False,False,True -287256467,2141.01,,1,4,4,1,4,4,4,4.3,72.1,10.19,1,6,4,PC,PC,8.8975,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,17:15:02.96,18:20:25.24,52.121,0.056,-98.334,0.073,2458992.503041,0.0013573071,18.2615937224586,7.057988e-05,3.7116163079873,0.17879637,1.069231,0.049146,984.313000534435,45.26371,3.16694309297888,0.30140984,44.3386744393096,658.135664384677,19.046972,77.682,0.22505,5674.0,123.907,4.49483,0.0781668,0.94140899181366,0.0476533,,,1.01,0.129756,"25,26,52",2020-08-07,2023-03-09,2023-07-11 00:00:00,two transits close to momentum dumps,2141,1,False,False,True -44313455,2142.01,,2,4,4,2,4,4,4,1.3,60.2,3.04,10,1,7,PC,PC,11.0768,0.007,,1,spoc-s14-s55-b0A-PC,SPOC,17:48:11.19,15:58:48.39,-55.022,0.096,106.407,0.083,2459014.835542,0.0025236236,9.30043505367734,5.0959992e-05,2.3510062230233,0.39115328,1.733359,0.184714,1595.20886273715,170.11354,1.55503043132781,0.34175405,4.62792562602814,374.081595927995,9.754269,27.7525,0.0387,3472.0,157.0,4.86042,0.000786928,0.36396598815918,0.0108484,,,0.350325,0.0202325,"26,53",2020-08-07,2023-03-09,2023-06-12 00:00:00,,2142,1,False,False,True -103195323,2143.01,TIC 103195323.01,3,4,3,3,3,4,4,31.3,106.2,99.81,4,1,3,PC,PC,10.1041,0.011,,1,qlp-s53-ffi,SPOC,04:10:17.52,75:10:15.35,-3.914,0.039,7.041,0.041,2459934.358851,0.001242,5.589946,1.29e-05,5.032,0.327,4.177252,0.001454,3840.0,1.33946,12.1202,0.480443,1816.63,1818.0,29.0,378.684,3.58,7437.0,138.2,4.09,0.08,1.95,0.07,,,1.7,0.279341,"25,26,52,53,59",2020-08-07,2023-02-09,2023-02-09 00:00:00,pulsating host,2143,1,False,False,True -428988981,2144.01,,1,4,1,3,3,4,4,1.0,30.7,7.87,1,7,3,PC,PC,9.90667,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,23:21:00.75,79:26:30.42,74.093,0.041,77.67,0.036,2458791.633715,0.003184296,37.3408357550087,0.00024721696,5.64815790449986,0.38404176,0.961504,0.064355,885.186360889159,59.271515,2.71963640645413,0.44965675,13.1004062524742,485.22251046824,11.820479,105.806,0.2765,5452.0,126.524,4.53224,0.0820865,0.875452995300293,0.0474372,,,0.952,0.120035,"18,19,24,25,26,52",2020-08-07,2023-03-09,2023-03-24 12:12:10,,2144,1,False,False,True -88992642,2145.01,,3,4,4,3,4,4,4,35.2,104.6,100.73,4,26,6,PC,CP,8.55942,0.006,,1,qlp-s40-tois,SPOC,17:35:01.94,40:41:42.15,-6.512,0.035,-3.281,0.04,2459403.202703,0.0011501,10.2611053,4.65e-05,7.334,0.131,2.086617,0.000133,1920.0,0.122109,12.1819,0.559002,506.103,1321.0,74.0,224.731,1.097,6202.0,129.8,3.63,0.08,2.78,0.13,,,1.191,0.175148,"25,26,40",2020-08-07,2022-02-15,2022-12-14 12:09:24,weak centroid offset; bright host,2145,1,False,False,True -158916431,2146.01,,5,5,5,5,5,5,5,62.1,94.5,317.0,1,1,0,EB,FP,9.9094,0.007,,1,qlp-s53-ffi,QLP,17:59:57.6,29:39:18.63,-1.546,0.037,-8.573,0.042,2459765.039868,0.0007575,5.8924856,1.1e-05,3.134,0.146,4.929559,0.0181,4530.0,16.6706,17.4655,1.16352,1958.56,1853.0,60.0,402.908,4.1665,7272.0,126.3,4.0,0.09,2.13,0.08,,,1.64,0.273988,"26,40,52,53",2020-08-10,2022-08-24,2022-12-14 12:09:24,artifact TIC 158916429 close by,2146,1,False,False,True -341630071,2147.01,,3,4,4,3,3,4,4,10.4,67.5,73.88,5,4,2,PC,PC,10.7047,0.007,,1,spoc-s14-s60-b0A-PC,QLP,10:22:33.98,83:05:01.41,-19.848,0.046,1.719,0.052,2459599.176807,0.0011202,26.204978226299,9.2806105e-05,5.86353229514866,0.110857144,6.089767,0.10325,5593.18217841149,95.09231,10.1549699588142,0.534976,68.2927589852749,733.184734703639,58.936455,282.108,2.516,6115.0,128.3,4.25,0.08,1.33633005619049,0.0628392,,,1.15,0.154765,"14,19,20,26,40,47,53,60",2020-08-10,2023-05-22,2023-06-16 12:14:51,,2147,1,False,False,True -233569098,2148.01,,5,5,5,5,5,5,5,19.9,88.1,127.84,1,1,0,PC,FP,10.6746,0.007,,1,qlp,QLP,18:47:15.4,64:48:23.47,1.784,0.137,26.175,0.129,2458693.42328,0.00111,23.48522,0.00014,3.546,0.183,6.555885,0.021008,6020.0,19.3491,14.0152,1.01956,62.0856,782.0,53.0,299.668,5.442,5930.0,123.1,4.11,0.08,1.51,0.08,,,1.08,0.140484,"23,24,26",2020-08-10,2020-08-10,2022-12-14 12:09:24,V-shaped; other potential dips in LC,2148,1,False,False,True -1716467085,2149.01,,3,4,4,3,4,4,4,17.2,92.8,13.49,3,0,5,PC,PC,10.1099,0.007,,1,qlp-s41-ffi,QLP,19:02:23.16,42:30:26.69,13.345,0.052,15.465,0.085,2459445.886663,0.0010224,0.5847238,1.3e-06,0.951,0.24,0.597319,0.001786,550.0,1.64523,3.35818,0.752223,6121.72,2464.0,25.0,222.25,1.588,6020.0,139.3,4.18,0.08,1.27,0.28,,,1.11,0.150388,"14,26,40,41,53",2020-08-10,2022-08-31,2022-12-14 12:09:24,V-shaped; TIC 1716467086 1 arcsec away; TIC 1716467085 and 1716467086 are real stars unresolved in previous catalogs as phantom star TIC 352009983,2149,1,False,False,True -230267547,2150.01,,5,5,5,5,5,5,5,14.9,60.2,34.67,0,2,4,EB,FP,10.4288,0.006,,1,qlp-s53-ffi,QLP,17:38:21.87,18:28:25.95,7.895,0.041,10.06,0.055,2459768.269102,0.0018932,2.2263798,1.23e-05,2.863,0.23,1.379761,0.000983,1270.0,0.905012,6.51393,0.326362,2064.9,1877.0,25.0,370.536,3.975,6446.3,103.4,4.03,0.08,1.84,0.07,-0.015,0.013,1.306,0.202741,"26,52,53",2020-08-10,2022-08-17,2022-12-14 12:09:24,slight depth-aperture correlation; TFOP FP; retired as NEB,2150,1,False,False,True -23389848,2151.01,,5,5,5,5,5,5,5,38.7,55.2,317.0,0,3,0,PC,FP,10.142,0.006,,1,qlp,QLP,18:20:28.31,30:51:21.17,3.331,0.093,17.336,0.124,2459014.36854,0.00208,15.64643,0.0022,7.75,0.593,6.544962,0.001274,6010.0,1.17312,16.1126,0.887288,323.367,1181.0,43.0,277.934,3.9955,5660.0,128.7,3.86,0.08,1.95,0.1,,,1.005,0.126994,26,2020-08-10,2020-08-10,2022-12-14 12:09:24,possibly EB with primary transit in data gap; Gaia RV error = 5 km/s,2151,1,False,False,True -395393265,2152.01,,3,4,4,3,4,4,4,67.4,64.8,317.0,6,16,4,CP,CP,10.7053,0.006,,1,spoc-s58-b0A,QLP,01:45:21.35,77:47:24.44,27.643,0.04,-11.634,0.048,2459883.441847,0.00062917935,3.37728354061576,0.00014720649,3.64345138848678,0.044961117,7.863619,0.114823,7216.49613566062,105.75039,15.3058360743621,0.7087468,2195.78793278408,1745.89189191171,47.815075,303.006,3.0795,6688.0,148.6,4.11,0.09,1.7323499917984,0.0773467,,,1.416,0.240633,"26,58",2020-08-10,2023-02-21,2023-02-25 12:10:55,TOI 2152 b (confirmed in Rodriguez et al 2022),2152,1,False,False,False -406855039,2153.01,,5,5,5,5,5,5,5,8.0,37.1,16.75,0,2,5,EB,FP,9.54581,0.006,,1,spoc-s14-s55-b0A-PC,QLP,18:19:28.92,71:14:55.05,-2.157,0.047,18.334,0.071,2459391.951972,0.0017153875,2.71808350809971,2.2696464e-05,6.184292171672,0.16978851,0.357454,0.024184,329.172820500964,22.274033,4.24239463672472,0.38344386,3009.10755872302,1888.98790622858,12.856501,238.675,1.6105,5668.0,127.1,3.76,0.08,2.18059992790222,0.110729,,,1.007,0.125115,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,53,54,55",2020-08-10,2023-02-13,2023-02-25 12:10:55,centroid offset centered on TIC 406855040; TFOP FP/NEB,2153,1,False,False,True -428787891,2154.01,,3,4,4,3,4,4,4,90.4,111.8,317.0,7,11,1,CP,CP,10.6611,0.009,,1,spoc-s14-s60-b0A-CP,QLP,04:44:06.76,84:21:51.35,-10.783,0.036,15.218,0.043,2459768.102761,0.000245,3.82408264319209,2.6250875e-06,2.51725214951287,0.015033378,11.017423,0.07744,10096.109863326,71.32192,16.0547023778368,0.7449469,1005.89462587993,1436.3420386764,184.49054,296.46,2.1585,6243.0,133.5,4.24,0.08,1.38718998432159,0.0639749,,,1.21,0.172195,"19,20,25,26,40,52,53,59,60",2020-08-10,2023-06-13,2023-06-16 12:14:51,TOI-2154 b,2154,1,False,False,True -461591646,2155.01,,3,4,4,3,3,4,4,28.8,83.0,83.26,5,27,1,PC,PC,10.9939,0.01,,1,qlp-s52-tois,QLP,00:23:12.06,84:27:10.22,22.255,0.04,-1.251,0.042,2459913.983994,0.0012529343,3.7246883,4.5e-06,3.078,0.088,3.610641,0.00035,3320.0,0.321945,10.8811,0.506214,686.503,1426.0,64.0,416.077,3.8915,6144.0,131.6,4.02,0.08,1.74,0.08,,,1.17,0.168612,"18,19,20,25,26,52,59",2020-08-10,2023-03-06,2023-03-06 00:00:00,,2155,1,False,False,True -258402425,2156.01,,5,5,5,5,5,5,5,172.9,94.6,317.0,4,2,3,EB,FP,9.87437,0.006,,1,qlp,QLP,18:17:40,23:55:03.64,15.464,0.029,-17.322,0.046,2459011.05035,0.00358,0.67554,0.00016,0.922,0.174,0.738552,0.508417,680.0,468.16,15.6973,,7493.17,2591.0,11.0,253.011,1.8815,4872.0,122.0,,,2.74,,,,,,26,2020-08-10,2021-01-11,2022-12-14 12:09:24,Likely EB; evolved star; a/Rs under 2; artifact TIC 158367929 close by; offset near TIC 258402422; TFOP FP; retired as NEB,2156,1,False,False,True -298495970,2157.01,,3,5,5,3,4,4,4,79.8,129.5,317.0,1,2,4,PC,APC,10.7033,0.006,,1,qlp-s53-tois,QLP,17:26:52.25,25:50:57.37,-45.633,0.042,-11.332,0.042,2459764.110052,0.0004079,8.4249043,6.8e-06,2.311,0.143,23.70889,1.004882,21600.0,925.102,15.0361,0.817265,92.8193,864.0,120.0,178.43,0.9455,5756.0,125.4,4.51,0.08,0.93,0.05,,,1.03,0.129982,"25,26,53",2020-08-10,2022-11-30,2022-12-14 12:09:24,,2157,1,False,False,True -342642208,2158.01,,3,5,5,3,4,4,4,32.4,110.9,81.68,2,2,4,PC,CP,10.1669,0.006,,1,qlp-s53-ffi,QLP,18:27:14.41,20:31:36.79,-43.997,0.044,7.891,0.074,2459758.586312,0.0008904,8.6007557,1.68e-05,3.304,0.159,5.54051,0.00157,5090.0,1.44629,10.7988,0.607636,81.4989,837.0,62.0,198.473,1.393,5389.0,122.6,4.06,0.08,1.5,0.08,,,0.935,0.114776,"26,40,53",2020-08-10,2022-09-02,2023-03-03 12:03:01,,2158,1,False,False,True -270515566,2159.01,,5,5,5,5,2,5,5,35.6,116.8,120.98,0,1,2,PC,APC,10.8595,0.007,,1,qlp-s52-tois,QLP,17:37:48.97,47:13:49.04,-11.138,0.043,9.721,0.043,2459755.898401,0.0005072,10.0509704,1.24e-05,6.129,0.062,9.443425,0.000228,8660.0,0.209823,13.5943,0.636359,263.046,1121.0,63.0,294.398,1.8245,5844.0,126.4,4.16,0.08,1.41,0.07,,,1.05,0.131034,"25,26,40,51,52",2020-08-10,2022-12-12,2022-12-16 12:08:26,TFOP SB1/APC,2159,1,False,False,True -284477310,2160.01,,1,4,4,1,4,4,4,4.2,34.9,7.88,2,2,5,PC,PC,10.6071,0.006,,1,qlp-s50-tois,QLP,19:24:30.23,56:52:52.67,-18.278,0.048,6.914,0.047,2459688.464287,0.0031824,2.2390502,1.13e-05,1.64,0.38,0.532141,0.001577,490.0,1.45282,2.73215,0.206098,640.033,1401.0,15.0,244.804,1.493,6021.0,127.8,4.29,0.08,1.25,0.06,,,1.115,0.151118,"14,15,16,20,23,26,40,41,47,50",2020-08-10,2022-12-12,2022-12-16 12:08:26,,2160,1,False,False,True -366563452,2161.01,,5,5,5,5,5,5,5,2.6,6.6,1.32,0,1,0,EB,FP,9.5998,0.006,,1,qlp-s53-ffi,QLP,20:17:46.73,77:10:00.04,6.846,0.034,116.832,0.042,2459767.160908,0.0039488,1.5873866,1.2e-05,1.51,0.224,0.119438,0.001097,110.0,1.0107,1.09083,0.11201,466.553,1294.0,11.0,73.1018,0.10265,5028.0,122.7,4.55,0.09,0.81,0.05,,,0.84,0.102035,"17,18,19,20,23,24,25,26,40,47,50,52,53",2020-08-10,2022-08-24,2022-12-14 12:09:24,centroid offset centered on NEB 40,2161,1,False,False,True -284564230,2162.01,,5,5,5,5,5,5,5,3.4,27.5,19.72,1,2,1,EB,FP,10.2182,0.008,,1,qlp,QLP,19:26:05.77,58:30:36.65,15.653,0.042,22.844,0.04,2459800.321479,0.0028054,12.9774853,6.9e-05,3.259,0.412,0.836339,0.000724,770.0,0.666712,4.66514,0.246928,103.437,888.0,21.0,315.323,2.138,6610.0,126.1,4.14,0.09,1.66,0.07,,,1.38,0.229351,"14,15,16,17,20,23,24,26,40,41,47,49,50,53,54,55",2020-08-10,2022-10-02,2022-12-14 12:09:24,odd-even; slight depth-aperture correlation; TFOP FP retired as NEB on TIC 284564232,2162,1,False,False,True -43429656,2163.01,,3,4,3,3,4,4,4,4.3,35.8,12.79,0,3,5,PC,PC,10.235,0.006,,1,qlp-s53-ffi,QLP,17:25:45.83,23:03:25.31,2.134,0.031,17.429,0.043,2459765.949081,0.0065705,5.2132047,5.43e-05,3.978,0.663,0.651637,0.001763,600.0,1.62339,3.62738,0.262983,748.203,1457.0,11.0,261.045,1.886,6318.0,129.5,4.2,0.08,1.47,0.07,,,1.245,0.182603,"25,26,52,53",2020-08-10,2022-09-02,2022-12-14 12:09:24,possibly 2x period,2163,1,False,False,True -49967354,2164.01,,5,5,5,5,5,5,5,37.0,54.2,101.59,3,2,1,PC,FP,10.879,0.009,,1,qlp,QLP,18:31:37.86,13:53:52.38,-2.183,0.059,-17.898,0.063,2459010.86112,0.00467,1.09333,0.00037,1.975,0.423,1.358019,0.004023,1250.0,3.70573,12.2642,,2102.07,1886.0,12.0,529.49,10.5455,5274.0,122.0,,,3.39,,,,,,26,2020-08-10,2020-08-10,2022-12-14 12:09:24,Likely EB; evolved star; a/Rs under 2; crowded field,2164,1,False,False,True -73560357,2165.01,,3,5,5,3,4,4,4,64.0,142.6,127.6,4,8,2,PC,APC,10.8207,0.006,,1,qlp-s40-tois,QLP,18:45:37.38,16:24:55.32,1.747,0.076,3.403,0.093,2459417.644616,0.0006113,0.9499997,2.6e-06,2.544,0.099,4.569695,0.000816,4200.0,0.751321,14.0337,0.644628,14232.8,3042.0,66.0,557.364,14.5685,7421.0,199.9,4.0,0.09,2.16,0.09,,,1.697,0.284156,"26,40",2020-08-10,2022-02-15,2022-12-14 12:09:24,potential HJ around hot star with ~600 ppm secondary; somewhat crowded field; Strong ellipsoidal variations; very likely EB,2165,1,False,False,True -233680651,2166.01,,1,5,5,1,4,4,4,2.7,21.9,11.22,1,2,3,PC,PC,10.0788,0.007,,1,qlp-s59-ffi,QLP,17:21:12.73,63:14:21.42,-1.186,0.062,-19.412,0.053,2459929.064444,0.0022415,5.1354316,2.01e-05,3.693,0.374,0.377902,0.012326,348.0,11.3523,3.34887,0.166747,691.8,1428.0,24.0,348.554,3.466,6515.0,121.0,3.97,0.09,1.99,0.09,,,1.34,0.21614,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59",2020-08-10,2023-02-09,2023-02-25 12:10:55,evolved variable host,2166,1,False,False,True -160162987,2167.01,,5,5,5,5,5,5,5,10.1,69.7,61.25,0,2,1,PC,FP,10.7791,0.006,,1,qlp-s41-tois,QLP,16:09:27.38,84:29:28.03,0.046,0.035,49.478,0.037,2459441.746048,0.001291,23.0531698,7.28e-05,1.228,0.355,3.196766,0.209013,2940.0,192.49,9.12613,1.86455,7.85406,466.0,21.0,232.304,1.076,5752.0,126.2,4.3,0.08,1.19,0.06,,,1.029,0.127892,"14,19,20,21,25,26,40,41",2020-08-10,2022-02-10,2022-12-14 12:09:24,V-shaped; Gaia rv error = 3 km/s; large for its period; some odd-even,2167,1,False,False,True -364075352,2168.01,,5,5,5,5,5,5,5,11.5,83.0,120.52,1,0,0,PC,FP,10.9591,0.006,,1,qlp,QLP,20:24:53.53,74:50:14.44,-4.544,0.032,5.466,0.046,2458772.93351,0.00176,37.83633,0.0004,5.713,0.273,8.98353,0.017887,8240.0,16.4745,13.5094,0.802617,80.1971,833.0,68.0,310.885,1.81,6641.0,158.8,4.38,0.09,1.26,0.05,,,1.396,0.242746,"23,24,26",2020-08-10,2020-08-10,2022-12-14 12:09:24,slightly V-shaped with 3.6 sig odd-even,2168,1,False,False,True -8516795,2169.01,,3,4,3,3,4,4,4,19.5,68.1,77.12,5,4,6,PC,PC,10.5527,0.006,,1,qlp-s40-tois,QLP,18:36:40.83,23:15:31.03,5.407,0.027,-30.933,0.044,2459773.747945,0.0021127276,8.2148505,4.72e-05,3.839,0.219,3.414575,0.001425,3140.0,1.31225,10.4375,0.545261,216.17,1068.0,31.0,351.487,3.5315,6183.0,149.7,4.0,0.09,1.81,0.09,,,1.183,0.173249,"26,40,54",2020-08-10,2022-10-11,2022-12-14 12:09:24,2 stars in pixel,2169,1,False,False,True -154741689,2170.01,,1,4,1,1,4,4,4,1.4,20.3,5.46,2,4,2,PC,PC,10.4679,0.006,,1,qlp-s60-ffi,QLP,10:57:15.33,89:05:12.92,12.264,0.044,-12.532,0.041,2459949.645332,0.0060982,9.2787477,9.15e-05,4.528,0.759,0.577765,0.032147,532.0,29.6083,2.19592,0.143031,244.96,1102.0,16.0,206.368,1.0525,6018.0,138.2,4.39,0.08,1.12,0.05,,,1.113,0.149092,"19,20,25,26,40,47,52,53,59,60",2020-08-10,2023-02-27,2023-03-03 12:11:24,possible L1 planet; variable host,2170,1,False,False,True -75656058,2171.01,,5,5,5,5,5,5,5,77.5,193.7,126.44,1,0,2,PC,FA,10.8181,0.006,,1,qlp,QLP,18:03:35.69,38:04:24.64,2.27,1.038,-6.791,1.281,2459011.83317,0.00185,1.78166,0.00025,2.765,0.129,8.895952,0.003694,8160.0,3.40197,13.9111,,2772.81,,22.0,420.268,,6528.0,,,,1.49,,,,,,26,2020-08-10,2020-08-10,2022-12-14 12:09:24,Anti-depth aperture correlation; bright neighbor to NW,2171,1,False,False,True -76197937,2172.01,,3,4,3,3,4,4,4,63.4,47.6,317.0,1,2,4,PC,PC,10.8642,0.007,,1,qlp,QLP,18:14:48.64,37:37:47.98,-14.203,0.039,-26.856,0.041,2459011.82925,0.00567,1.78252,0.00074,2.729,0.692,2.086617,0.036331,1920.0,33.4617,18.6528,,4451.36,2275.0,12.0,600.502,8.152,5085.0,122.0,,,3.7,,,,,,26,2020-08-10,2020-08-10,2022-12-14 12:09:24,Likely EB; evolved star; asymmetric transit; a/Rs under 2,2172,1,False,False,True -293567206,2173.01,,5,5,5,5,5,5,5,14.2,85.8,10.4,2,1,1,PC,FP,10.4929,0.006,,1,qlp,QLP,09:43:11.79,87:52:06.71,-24.463,0.036,-70.699,0.038,2458984.22962,0.00289,0.6857,7e-05,0.84,0.177,0.814608,0.003245,750.0,2.98877,3.20704,0.251915,1431.46,1713.0,13.0,185.849,0.6985,5829.0,132.5,4.41,0.08,1.06,0.05,,,1.05,0.135379,26,2020-08-10,2020-08-10,2022-12-14 12:09:24,L1 candidate; some differences in odd and even durations,2173,1,False,False,True -159815224,2174.01,,3,4,3,3,4,4,4,8.6,49.1,16.6,2,2,5,PC,PC,10.5817,0.006,,1,qlp-s52-tois,QLP,17:55:17.75,40:10:02.91,-45.265,0.047,-6.4,0.046,2459765.95946,0.0020027,2.9601848,1.23e-05,2.014,0.187,1.042807,0.001186,960.0,1.0928,4.21067,0.243144,463.247,1292.0,20.0,262.427,1.5895,6069.0,123.9,4.24,0.08,1.33,0.06,,,1.134,0.153115,"25,26,40,52",2020-08-10,2022-11-18,2022-12-14 12:09:24,2 stars in pixel,2174,1,False,False,True -405717754,2175.01,TIC 405717754.01,5,5,5,5,5,5,5,42.5,63.6,317.0,0,26,4,KP,KP,12.9614,0.007,,1,spoc-s14-s55-b0A-KP,CTOI,19:04:58.43,50:02:25.32,3.053,0.025,3.235,0.024,2459770.377734,0.0018763902,4.43797265828439,9.578716e-06,4.71766241292582,0.05717192,17.7578,0.194018,16222.5125043494,178.68088,20.3565336658232,1.0926616,944.872513505406,1414.04442350602,84.43825,881.386,9.7485,5967.0,137.8,4.08,0.08,1.569659948349,0.0825728,0.05,0.1,1.09,0.140633,"14,15,26,40,41,53,54,55",2020-08-10,2023-03-15,2023-03-24 12:12:10,Kepler-12 b; CTOI Robert Wilson,2175,1,False,False,True -123495874,2176.01,TIC 123495874.01,5,5,5,5,5,5,5,15.1,51.5,111.4,0,23,4,KP,KP,12.9934,0.007,,1,spoc-s14-s55-b0A-KP,CTOI,18:50:31.11,46:19:23.81,-3.546,0.023,-11.776,0.023,2459776.680872,0.0029508474,7.89142712367569,3.3112854e-05,4.26531558746947,0.111837864,10.716818,0.232289,9822.00024864521,213.92288,12.9299941584516,0.7944591,278.976798643939,1042.34568079629,35.838375,722.795,6.5885,5883.0,146.4,4.25,0.08,1.27991998195648,0.0708593,0.19,0.1,1.07,0.139548,"14,26,40,41,54,55",2020-08-10,2023-03-15,2023-03-24 12:12:10,Kepler-422b; CTOI Robert Wilson,2176,1,False,False,True -123233041,2177.01,TIC 123233041.01,5,5,5,5,5,5,5,25.9,30.0,317.0,0,59,4,KP,KP,13.1448,0.007,,1,spoc-s14-s55-b0A-KP,CTOI,18:45:09.15,42:27:03.95,2.196,0.023,3.841,0.027,2459445.304166,0.001682,3.52247509699986,1.5128829e-05,3.28049551896563,0.0972857,9.380261,0.226718,8602.32564504174,208.79324,15.9014831830639,0.31712493,1423.86794067703,1566.70481260203,35.53251,1021.87,14.575,6179.0,25.0,4.11,,1.58169996738434,,-0.05,0.1,1.18,,"14,40,41,53,54",2020-08-10,2023-03-15,2023-03-24 12:12:10,Kepler-8 b; CTOI Robert Wilson,2177,1,False,False,True -164892194,2178.01,TIC 164892194.01,5,5,5,5,5,5,5,17.2,46.9,99.38,0,2,4,KP,KP,13.4633,0.007,,1,spoc-s14-s55-b0A-KP,CTOI,19:00:57.8,46:40:05.67,-3.003,0.025,0.193,0.026,2459392.686784,0.0008681771,3.02411095068699,1.2192887e-05,2.72096566506627,0.13215688,8.237863,0.261968,7558.64110862614,241.25273,12.0899079394687,0.6376047,1227.38442506989,1509.61047806369,27.73197,1005.84,14.19,6041.0,143.0,4.22,,1.36388003826141,,0.33,0.11,1.12,,"40,41,53,55",2020-08-10,2023-03-15,2023-03-24 12:12:10,Kepler-43 b; CTOI from Robert Wilson,2178,1,False,False,True -237913194,2179.01,TIC 237913194.01,3,5,5,3,4,4,4,17.9,87.1,95.29,3,1,3,PC,CP,11.4864,0.006,,1,spoc-s01-s36-b0A-CPKP,CTOI,01:29:46.99,-60:44:23.67,18.053,0.036,10.523,0.034,2459062.422964,0.0010994667,15.1689722976844,0.00058798137,2.06333154787083,0.06847624,8.52224,0.425931,7818.54755818349,392.22015,11.7952965924595,0.7515523,83.3855896628918,770.712673670767,30.090694,306.063,2.038,5713.0,131.3,4.34,0.08,1.12898004055023,0.055691,,,1.02,0.124474,"1,2,28,29",2020-08-10,2021-12-09,2022-12-14 12:09:24,V-shaped; CTOI from Martin Schlecker; verified planet,2179,1,False,False,True -298663873,2180.01,TIC 298663873.01,3,5,5,3,4,4,4,2.5,70.5,88.84,32,19,4,CP,CP,8.56854,0.006,,1,spoc-s14-s60-b0A-CP,CTOI,18:31:46.47,56:39:02.44,-10.536,0.043,-40.204,0.037,2459611.445537,0.0032706158,260.174006087125,0.00047550403,24.0527094589958,0.09086212,5.167308,0.034364,4747.95959199948,31.649464,11.3192423443013,0.57834905,3.9769163594439,360.169028039676,86.9722,116.685,0.2665,5739.0,129.5,4.03,0.07,1.62761998176575,0.0825628,,,1.025,0.124682,"14,15,16,18,19,20,21,22,23,24,25,26,40,41,48,49,50,51,52,53,54,55,56,57,58,59,60",2020-08-10,2023-06-13,2023-06-16 12:14:51,CTOI from Planet Hunters; now confirmed with period of P=260.79 d in Dalba et al. 2022; updated with 1/3 of max period between two TESS transits (~260.15 days) in spoc multisector,2180,1,False,False,True -233068569,2181.01,TIC 233068569.01,3,4,3,3,2,4,4,4.5,34.8,22.11,3,3,2,PC,PC,12.1625,0.006,,1,qlp-s56-tois,CTOI,18:02:13.94,63:32:58.67,-11.49,0.047,2.589,0.044,2459843.189547,0.0016338,8.379057,1.82e-05,2.899,0.407,3.185877,0.147462,2930.0,135.808,4.97002,0.279444,85.2468,846.0,40.0,322.09,2.2635,5574.0,121.3,4.51,0.08,0.91,0.04,,,0.984,0.121382,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51,52,54,55,56",2020-08-10,2023-02-06,2023-02-09 12:10:04,CTOI by Ethan Kruse,2181,1,False,False,True -268823307,2182.01,TIC 268823307.01,5,5,5,5,5,5,5,24.9,24.8,317.0,0,14,7,KP,KP,12.7655,0.012,,1,spoc-s14-s55-b0A-KP,CTOI,19:57:37.69,44:02:06.14,-0.202,0.036,-3.238,0.031,2459444.706868,0.0024223,3.5484480742597,1.6180154e-05,4.51230254066009,0.1264555,7.65094,0.172565,7022.00568907223,158.92531,15.2165015663576,0.8731938,1875.01174148122,1678.30445533892,30.353336,899.777,16.4775,6295.0,102.6,4.03,0.08,1.78184998035431,0.0870553,0.07,0.1,1.23,0.185162,"14,15,41,54,55",2020-08-10,2023-03-15,2023-03-24 12:12:10,Kepler-5 b; CTOI from Robert Wilson,2182,1,False,False,True -1715469662,2183.01,,3,4,3,3,3,4,4,152.9,416.2,116.32,0,1,1,PC,PC,8.0348,0.006,,1,qlp-s54-ffi,QLP,18:53:57.53,37:22:50.97,-15.686,0.111,43.795,0.085,2459789.284328,0.0003325,6.5011256,5.1e-06,5.442,0.455,4.755065,0.00073,4370.0,0.672063,,,388.818,1237.0,118.0,105.334,0.5865,5485.0,756.1,,,,,,,,,"14,26,40,41,53,54",2020-08-12,2022-10-05,2022-12-14 12:09:24,no stellar radius but Teff+plx suggest K dwarf; match to FA TOI 1152/ phantom TIC 237184773,2183,1,False,False,True -176956893,2184.01,TIC 176956893.01,3,5,5,3,4,4,4,6.6,19.0,64.42,7,5,3,PC,CP,11.4057,0.006,,1,qlp,SPOC,06:43:19.95,-66:56:51.56,2.327,0.042,4.494,0.044,2459381.957567,0.0024879,6.9067783,2.79e-05,6.211,0.774,0.977603,0.000278,900.0,0.256386,9.36468,0.532394,821.834,1491.0,39.0,788.317,13.197,5731.8,64.7,3.65,0.2,3.15,0.17,0.124314,0.1,1.02,0.120309,"1,2,4,5,6,7,8,9,10,11,12,27,28,29,31,32,34,35,36,37",2020-09-18,2021-11-09,2022-12-14 12:09:24,centroid offset in S36 but not in other sectors,2184,1,False,False,True -355096431,2185.01,,3,4,3,3,3,4,4,13.4,53.8,73.49,2,0,1,PC,PC,12.7421,0.006,,1,spoc,SPOC,20:58:18.4,-40:16:07.08,-0.663,0.036,-19.193,0.03,2459036.889768,0.0024293517,7.2147717511923,0.0013355075,4.01477537114538,0.22644165,9.356012,0.451696,8580.18368011449,415.94083,10.1239555187246,0.874891,191.604533314411,948.901634261516,17.265121,493.871,5.953,5440.3,5485.6,4.4,2.0,1.08637,0.0558869,,,0.98,0.128984,27,2020-09-18,2020-09-17,2022-12-14 12:09:24,possible odd-even,2185,1,False,False,True -238171173,2186.01,,3,4,3,3,1,4,4,25.1,26.8,317.0,3,0,0,PC,PC,13.0654,0.006,,1,spoc,SPOC,23:48:00.56,-68:29:15.71,20.72,0.025,-9.352,0.028,2459040.679552,0.0019892629,4.47652439141945,0.00033311002,2.99415720842185,0.1286072,9.872809,0.347926,9051.9752421038,320.4001,14.5380255718645,0.42160743,636.88744059891,1281.25455020225,19.216448,771.822,9.369,5772.2,5876.6,4.4,,1.37147998809814,,,,1.02,,"27,28",2020-09-18,2021-09-29,2022-12-14 12:09:24,faint,2186,1,False,False,True -270472265,2187.01,,3,4,3,3,1,4,4,31.5,79.8,107.41,1,0,0,PC,PC,13.0769,0.006,,1,qlp-s39-tois,SPOC,06:27:45.79,-79:24:35.2,-1.873,0.023,26.889,0.026,2459387.346076,0.0004808,2.7492277,2.1e-06,1.688,0.048,12.283759,0.002891,11250.0,2.66235,12.683,,271.924,1131.0,91.0,587.277,4.298,5344.0,5585.9,4.4,2.0,1.14,,,,1.07,,"1,4,7,8,10,11,12,13,27,28,31,34,37,39",2020-09-18,2022-03-21,2022-12-14 12:09:24,2 stars in pixel; check TIC 735158174,2187,1,False,False,True -260797169,2188.01,,3,4,4,3,1,4,4,27.0,28.6,317.0,3,0,0,PC,PC,13.0943,0.006,,1,spoc,SPOC,23:11:46.55,-69:51:15.01,4.033,0.027,4.027,0.027,2459037.589469,0.0018109356,3.7348347214121,0.00025703578,2.45938859774248,0.113938265,9.755496,0.381098,8944.89787570202,350.94232,14.5594188333735,0.45485803,830.171695178509,1369.02610685096,24.5593,780.137,10.5775,5829.0,5828.4,4.3,,1.36818,,-0.0919707,0.0806153,1.04,,"27,28",2020-09-18,2021-10-04,2022-12-14 12:09:24,,2188,1,False,False,True -270342589,2189.01,,3,4,4,3,1,4,4,21.2,62.5,95.76,3,0,0,PC,PC,13.458,0.006,,1,spoc,SPOC,02:16:20.5,-78:42:02.55,2.197,0.032,1.209,0.025,2459037.694544,0.0014689234,4.43439976641608,0.0002560217,2.82801803602599,0.11930408,14.442273,0.427596,13213.7471029358,393.7528,11.8291968187562,0.47225198,261.877374740511,1025.99263728705,23.180893,542.659,4.29,4979.4,5033.5,,,1.00253999233246,,,,0.89,,"27,28",2020-09-18,2021-10-04,2022-12-14 12:09:24,,2189,1,False,False,True -389421473,2190.01,,3,4,4,3,3,4,4,44.3,62.7,317.0,5,0,1,PC,PC,12.5965,0.006,,1,spoc,SPOC,20:47:00.28,-38:40:14.36,9.357,0.043,-15.027,0.03,2459041.220441,0.001700597,5.31534759634255,0.0009212707,4.34705598895718,0.12462958,15.682668,0.475319,14340.4525844291,437.68906,19.603119728615,1.1618761,621.422531934846,1273.40484700007,27.357128,677.662,15.0875,5477.0,5459.7,4.4,,1.55227,0.0841433,,,1.01,0.122656,27,2020-09-18,2020-09-17,2023-06-15 00:00:00,2 stars in pixel; possible odd-even,2190,1,False,False,True -262471759,2191.01,,3,4,4,3,3,4,4,38.6,46.8,317.0,5,0,1,PC,PC,12.8641,0.006,,1,spoc,SPOC,20:53:36.7,-36:49:17.57,4.515,0.055,-2.549,0.034,2459037.349685,0.0013923497,4.01153937452335,0.00046938524,2.26864825616384,0.08651492,15.954845,0.582984,14587.5117968913,536.80414,15.3487909296305,0.8884081,550.570684096201,1235.44387419204,24.630314,596.389,12.8075,5741.0,5721.1,4.3,,1.13908,0.0581909,,,1.07,0.132663,27,2020-09-18,2020-09-17,2022-12-14 12:09:24,,2191,1,False,False,True -277890574,2192.01,,3,4,4,3,3,4,4,20.8,68.0,90.98,2,0,1,PC,PC,12.5625,0.006,,1,spoc,SPOC,23:33:07.61,-76:49:08.96,25.76,0.033,3.012,0.026,2459039.462472,0.0011626665,6.26435616056441,0.00029241634,3.74459116038295,0.10597415,11.392506,0.233063,10438.0274531501,214.63573,11.4776098018541,0.7521854,223.315212301906,985.937366954863,39.086742,426.477,2.8275,5262.0,5242.7,4.4,2.0,1.12916004657745,0.0613819,0.31519,0.0806755,0.92,0.12072,"27,28",2020-09-18,2021-10-04,2022-12-14 12:09:24,possible odd-even,2192,1,False,False,True -401604346,2193.01,,3,5,5,3,4,4,4,75.6,185.0,112.14,8,8,1,PC,CP,11.3996,0.006,,1,spoc,SPOC,20:54:45.9,-72:48:16.71,-2.376,0.029,-0.809,0.037,2459037.564542,0.00075842475,2.12236725100755,0.00013547437,1.58553648293112,0.055126417,8.782479,0.435391,8056.33402519391,400.92908,12.9814367173841,1.458274,1534.90599967454,1596.39439939162,30.193857,337.064,2.368,6079.0,128.674,4.33912,0.0788385,1.19653,0.055015,,,1.14,0.150926,27,2020-09-18,2020-09-18,2023-03-03 12:02:48,V-shaped; two stars in pixel; Gaia DR2 RV error ~1.9 km/s,2193,1,False,False,True -271478281,2194.01,,1,4,1,1,3,4,4,4.7,123.1,4.5,3,6,1,PC,PC,7.4259,0.006,,1,spoc,SPOC,19:56:37.52,-31:20:06.65,409.398,0.132,31.715,0.059,2459037.368498,0.0012963276,15.3365954156312,0.0019261017,3.34993471368557,0.21600805,0.898177,0.042992,826.909072980169,39.59638,1.95703532438616,0.6654776,17.0044742275156,517.917459349556,18.736244,19.5711,0.03765,4669.0,121.9,4.63,0.09,0.690927,0.0492286,,,0.74,0.0854481,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,bright and nearby star; L1 candidate,2194,1,False,False,True -24695044,2195.01,TIC 24695044.01,3,4,4,3,3,4,4,41.3,155.4,59.24,3,9,3,PC,PC,10.9916,0.006,,1,spoc,SPOC,02:19:21.62,-72:42:32.02,-16.306,0.043,-55.689,0.036,2459039.46082,0.00040187474,4.1645693151698,4.2959546e-05,2.02983343270514,0.031198017,8.412286,0.092951,7718.06367462933,85.60729,8.91788497071478,0.49730983,254.555031140202,1018.74425075219,77.34245,174.267,0.653,5101.7,5154.0,,,0.933443009853363,0.0508141,,,0.91,0.111925,"27,28,29",2020-09-18,2021-10-04,2022-12-14 12:09:24,SG1 should clear the neighbor.,2195,1,False,False,True -372172128,2196.01,,2,4,4,2,4,4,4,9.2,55.9,12.1,5,1,1,PC,CP,11.3643,0.006,,1,spoc,SPOC,20:49:21.62,-70:29:06.26,16.357,0.035,-19.981,0.039,2459036.508778,0.0027034301,1.19539683680827,0.00026731755,1.57522930513264,0.746582,1.22457,0.169468,1127.23445635958,156.07317,3.50302447478531,4.726927,2072.52031838799,1720.85567668884,7.2414308,259.947,2.0205,5728.0,129.238,4.4217,0.0769563,1.02917,0.0498618,,,1.02,0.129385,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,low SNR,2196,1,False,False,True -389352124,2197.01,,5,5,5,5,5,5,5,86.9,278.6,105.77,0,1,1,KP,KP,9.0532,0.006,,1,spoc,SPOC,20:44:10.26,-39:13:31.75,30.468,0.069,-57.355,0.046,2459038.758216,0.0003406403,4.95479681874799,0.00013359197,3.84567339658944,0.030145988,7.342645,0.058738,6740.0098253647,54.09824,12.5418599114046,0.5661687,902.196664261062,1397.80005692046,128.21593,162.303,1.286,6562.0,117.8,4.24,0.09,1.46939,0.0653744,0.147692,0.049923,1.36,0.220964,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,WASP-7 b,2197,1,False,False,True -100566492,2198.01,,5,5,5,5,5,5,5,54.7,75.9,317.0,0,0,2,KP,KP,11.117,0.006,,1,spoc,SPOC,20:38:02.7,-48:27:43.5,5.826,0.045,-4.801,0.043,2459040.905327,0.0010243284,4.9549631089896,0.00048052883,5.95651744682186,0.0824554,8.979431,0.153882,8236.25668013868,141.72084,18.4504689489667,0.8623694,1489.554279456,1584.46931478629,39.513443,523.756,8.6515,6282.4,105.629,3.92936,0.0781092,1.99207,0.0877286,-0.305,0.0848528,1.23,0.173846,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,WASP-88 b,2198,1,False,False,True -369455629,2199.01,,5,5,5,5,5,5,5,23.6,79.3,55.81,0,1,1,KP,KP,11.4513,0.006,,1,spoc,SPOC,20:46:41.6,-41:49:15.54,30.957,0.061,-21.65,0.044,2459038.510574,0.0011443137,3.3771113715336,0.00032571607,2.45080293392771,0.15682563,4.913368,0.178218,4515.155077012,164.13101,8.61101064937116,1.0350502,756.260950190805,1337.48114578991,22.106583,327.602,4.536,5614.86,109.556,4.21917,0.0767334,1.28017,0.0636181,0.32079,0.059579,0.99,0.126344,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,WASP-182 b,2199,1,False,False,True -142105158,2200.01,,3,4,3,3,3,4,4,21.5,84.0,40.76,3,0,1,PC,PC,12.3181,0.006,,1,qlp,SPOC,06:35:08.04,-72:27:24.4,15.357,0.037,4.817,0.036,2459384.869876,0.0004123,2.9360281,2.9e-06,2.118,0.132,7.397291,0.000247,6790.0,0.22715,7.18912,0.425714,288.087,1147.0,124.0,251.245,1.1885,4983.6,34.8,0.2,,0.83,0.05,0.273342,0.1,0.85,0.103803,"1,2,3,4,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,36,37,38",2020-09-18,2021-11-10,2022-12-14 12:09:24,TFOP work in progress,2200,1,False,False,True -219306934,2201.01,,3,4,3,3,3,4,4,9.4,58.0,13.01,3,3,1,PC,PC,10.2001,0.006,,1,spoc,SPOC,21:06:40.73,-57:34:40.72,25.332,0.05,13.3,0.043,2459037.533971,0.0023165692,1.34775582495625,0.00023864472,1.17335695179403,0.43889818,0.58943,0.067084,542.738134642966,61.78488,3.65600972293287,2.6384811,4556.71468294355,2095.47608448373,8.4026575,252.501,2.079,6252.0,136.1,4.19,0.08,1.46889,0.0694724,,,1.21,0.173803,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,centroid offset but not centered on another star; low SNR,2201,1,False,False,True -358107516,2202.01,,1,4,1,3,4,4,4,21.2,109.7,94.42,32,1,3,CP,CP,12.173,0.006,,1,spoc-s01-s39-b0A-CP,SPOC,03:24:54.82,-73:57:27.16,-10.809,0.04,6.495,0.037,2459363.569688,0.0009838818,11.9133144584373,3.9354898e-05,4.00968904263139,0.05703435,20.275785,0.282749,18501.3962206666,260.3879,11.7322842288074,0.72672296,42.7215037908247,652.050725429825,70.44262,235.933,1.046,5064.0,125.418,4.53576,0.0851766,0.82388299703598,0.049985,,,0.85,0.105174,"27,28,29,36,39",2020-09-18,2022-03-30,2022-12-14 12:09:24,TOI-2202 b / TOI 2202.01,2202,1,False,False,True -355600246,2203.01,,3,5,5,3,3,4,4,70.0,103.2,317.0,0,0,3,PC,APC,12.3775,0.006,,1,spoc,SPOC,21:40:25.1,-54:02:03.22,2.296,0.072,-3.084,0.08,2459038.655122,0.00060857314,3.05630996854852,6.436612e-05,3.07083723109567,0.040375493,18.956851,0.226647,17308.3639677753,208.72813,20.0727443391281,1.1771129,1530.29711601003,1595.19466869212,55.824924,701.717,27.4775,6344.0,130.27,4.21787,0.0889385,1.44638001918793,0.0837563,,,1.26,0.19153,"27,28",2020-09-18,2021-10-14,2022-12-14 12:09:24,Two peaks in the Coralie spectra. Retired as APC/PC/SM,2203,1,False,False,True -467971286,2204.01,,5,5,5,5,5,5,5,31.7,87.0,73.11,0,0,0,KP,KP,13.191,0.006,,1,spoc,SPOC,19:17:11.38,-60:53:30.34,8.699,0.027,-17.887,0.023,2459037.141234,0.001176831,2.22505138138042,0.00020055255,2.3678870525181,0.11637804,14.366184,0.434915,13144.5900549739,400.49127,10.0926189124578,0.5832302,470.746652310442,1188.00032546898,22.531944,414.537,3.516,5103.0,122.0,4.48023,,0.883426,,,,0.86,,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,HATS-69 b,2204,1,False,False,True -260298958,2205.01,,3,4,4,3,3,4,4,90.5,125.6,131.46,4,0,2,PC,PC,15.0804,0.009,,1,spoc-s01-s39-b0A-PC,SPOC,06:17:15.76,-56:30:35.49,-2.397,0.07,27.724,0.077,2459361.955752,0.0010280111,0.889139233153015,1.5447602e-06,1.20941345262493,0.023659116,45.930897,0.843238,41421.5941275638,776.3495,14.2531081505003,0.49608633,280.574964200962,1043.83529771217,56.565903,409.034,5.74,3653.0,157.0,4.60969,0.0131045,0.649887025356293,0.0207052,,,0.627042,0.0210398,"27,28,29,31,35,36,37,38,39",2020-09-18,2022-03-21,2022-12-14 12:09:24,SG1 should clear neighbor TIC 737476974; V-shaped; large PC,2205,1,False,False,True -381856447,2206.01,,5,5,5,5,5,5,5,173.7,437.8,78.26,0,1,1,KP,KP,10.7218,0.006,,1,spoc,SPOC,21:29:00.9,-58:50:10.13,107.107,0.043,11.185,0.042,2459037.77354,0.00032288584,1.76901210452915,4.5569614e-05,1.01729533190574,0.02873108,11.032892,0.25304,10110.2139841288,233.03137,10.5045599223283,3.8474433,313.401165790737,1073.11162963111,63.949917,91.299,0.2409,4683.0,128.9,4.62,0.09,0.701795,0.0530779,,,0.75,0.0887353,27,2020-09-18,2020-09-17,2022-12-14 12:09:24,WASP-145 A b,2206,1,False,False,True -90850770,2207.01,,3,5,5,3,4,4,4,21.6,77.6,85.63,2,24,1,PC,CP,10.9651,0.006,,1,spoc,SPOC,20:30:23.21,-44:53:15.43,15.994,0.073,-25.723,0.047,2459043.768974,0.0014315071,8.00166559648803,0.0011212181,4.56077567820202,0.13869776,5.324294,0.169056,4891.85134858173,155.6941,11.0757082084644,0.7041047,455.055375394279,1177.97428992752,25.34822,373.345,6.38,6146.0,131.4,4.12,0.08,1.55738,0.0751005,,,1.17,0.164101,27,2020-09-18,2020-09-17,2023-03-03 12:02:57,second transit event probably impacted by detrending,2207,1,False,False,True -38680052,2208.01,,3,4,4,3,3,4,4,162.6,277.3,104.77,6,0,2,PC,PC,15.7438,0.008,,1,spoc-s01-s39-b0A-PC,SPOC,04:22:06.91,-61:22:06.93,13.063,0.15,31.906,0.147,2459362.153557,0.000538578,0.674345303170363,1.0581979e-06,0.901041281011981,0.016499588,118.808451,2.236355,103652.070563752,2057.6394,12.4716612717532,2.2434363,98.7994685631547,804.096925737919,68.97647,181.731,2.4465,3228.0,157.0,4.90232,0.000940672,0.321846008300781,0.0108865,,,0.301683,0.021036,"27,28,29,31,35,36,37,38,39",2020-09-18,2022-03-21,2022-12-14 12:09:24,V-shaped; some odd-even,2208,1,False,False,True -271806353,2209.01,,3,4,3,3,1,4,4,27.9,64.2,121.92,4,0,0,PC,PC,13.3304,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,07:25:46.17,-77:46:35.97,-12.065,0.033,3.248,0.033,2459362.84393,0.001579083,3.43911519812222,9.434994e-06,3.36158910605822,0.056221485,13.538226,0.150994,12391.7493401925,139.06079,13.6350253430556,0.22535038,688.306266724899,1306.36693765811,64.68536,626.478,7.239,4955.0,5004.6,4.4,2.0,1.21438002586365,,,,1.01,,"1,3,4,6,7,10,11,12,13,27,30,31,33,34,37,38,39",2020-09-18,2022-03-21,2022-12-14 12:09:24,,2209,1,False,False,True -317089588,2210.01,,3,4,3,3,1,4,4,10.3,57.5,94.45,2,0,0,PC,PC,13.4669,0.006,,1,spoc,SPOC,23:09:51.11,-79:41:59.99,16.127,0.028,-14.441,0.024,2459042.9007,0.0021239105,12.7862335210737,0.0030134015,4.65137623272857,0.21458441,21.493642,0.745183,19601.7142521771,686.1035,11.7338064886575,0.5065978,49.2374798752183,675.606320143042,20.682638,483.235,2.993,5077.7,5123.9,4.4,2.0,0.836244,,,,0.95,,27,2020-09-18,2020-09-17,2022-12-14 12:09:24,,2210,1,False,False,True -212253390,2211.01,,2,4,4,2,3,4,4,4.4,56.3,3.42,1,5,3,PC,PC,9.2551,0.006,,1,spoc,SPOC,20:34:09.38,-29:40:21.41,81.508,0.06,-116.589,0.047,2459038.108613,0.0037860244,3.09117213015821,0.00092929153,1.9714799140504,0.48554665,0.379199,0.04643,349.193899032581,42.76278,1.66670300866485,1.3173378,295.099243674642,1057.08953564191,7.432609,70.2932,0.19415,5253.0,123.391,4.54958,0.0842028,0.834386,0.0474272,,,0.9,0.108867,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,low SNR,2211,1,False,False,True -280803917,2212.01,,3,4,4,3,3,4,4,18.6,75.8,58.14,4,0,5,PC,PC,12.4235,0.006,,1,spoc,SPOC,02:58:07.02,-66:56:57.43,-10.179,0.033,-28.823,0.031,2459039.726546,0.00076864706,5.12939104211463,6.769938e-05,2.90208112400499,0.071508005,10.059217,0.161239,9222.09491854888,148.49565,8.81956642849885,0.582431,181.658982206447,936.340845332667,39.64082,324.412,1.743,5116.3,138.1,4.45,2.0,0.920804023742676,0.0529649,,,0.89,0.109007,"1,2,3,27,28,29,30",2020-09-18,2021-09-29,2022-12-14 12:09:24,,2212,1,False,False,True -406318573,2213.01,,3,4,4,3,1,4,4,10.1,37.7,66.32,2,0,0,PC,PC,13.2598,0.006,,1,spoc,SPOC,21:46:19.85,-61:06:28.21,-15.142,0.022,1.727,0.03,2459036.457442,0.0024018518,5.17940210367372,0.00046789815,2.58258000508546,0.2628383,6.590389,0.400545,6051.58760337741,368.8471,9.53027723650987,1.2590326,430.125818573516,1161.49843133992,13.928314,762.655,11.004,5784.0,5730.4,4.3,,1.21171998977661,,,,1.06,,"27,28",2020-09-18,2021-10-04,2022-12-14 12:09:24,possible centroid offset,2213,1,False,False,True -272236017,2214.01,,3,4,4,3,3,4,4,14.1,48.4,48.5,3,0,3,PC,PC,12.6562,0.006,,1,qlp-s39-tois,SPOC,07:51:28.22,-72:17:06.17,-5.814,3.193,12.179,3.194,2460041.314701,0.0022017064,2.4156482,3.9e-06,2.837,0.189,3.861221,0.000418,3550.0,0.384846,,,1169.2,1629.0,67.0,571.376,,5727.0,5750.8,4.3,,,,,,,,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,32,33,34,35,36,37,38,61,62,63,64",2020-09-18,2023-07-06,2023-07-06 00:00:00,No stellar radius; Gaia Teff ~5700+/-300 K; no astrometric information; no stellar radius; very near companion (.12'' away with similar magnitude),2214,1,False,False,True -425561347,2215.01,,2,4,2,2,3,4,4,6.4,73.4,7.67,5,0,1,PC,PC,9.977,0.006,,1,spoc,SPOC,19:04:17.55,-32:21:15.4,-8.233,0.078,-6.052,0.069,2459040.860955,0.0024400814,5.78138500838949,0.0013227346,2.51933784075186,0.38864473,1.46483,0.156605,1348.24889289117,144.22824,2.67951941716227,1.4531773,75.2879976323635,751.278890651844,9.459346,70.9015,0.2788,4882.7,114.8,4.6,0.09,0.729818,0.0520703,,,0.77,0.0878433,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,low SNR; crowded field; noisy LC,2215,1,False,False,True -39018923,2216.01,,3,4,3,3,3,4,4,6.2,32.0,34.42,3,0,1,PC,PC,12.0253,0.006,,1,qlp,SPOC,00:48:18,-68:26:21.47,17.269,0.05,2.526,0.038,2459111.57888,0.0026,5.68083,3e-05,3.807,0.451,2.293324,0.001696,2110.0,1.56243,6.4984,0.369777,519.68,1330.0,20.0,563.621,9.044,6295.0,6319.5,4.3,2.0,1.39,0.07,,,1.23,0.184442,"1,2,27,29",2020-09-18,2021-09-29,2022-12-14 12:09:24,low SNR,2216,1,False,False,True -234330672,2217.01,,3,4,3,3,3,4,4,20.7,61.6,96.5,5,0,3,PC,PC,12.8172,0.006,,1,spoc,SPOC,02:23:00.1,-71:27:28.6,14.265,0.021,13.183,0.022,2459039.60446,0.0013529016,3.83009379605844,0.000117863536,4.26067065568463,0.12052716,8.501824,0.197422,7799.89111106384,181.8155,11.8827235587812,0.6397755,810.421907604114,1360.81015866398,27.465544,698.996,6.2165,5916.0,5868.8,4.3,,1.3126300573349,0.0594222,0.0209229,0.081029,1.1,0.138764,"27,29",2020-09-18,2021-10-04,2022-12-14 12:09:24,,2217,1,False,False,True -348995212,2218.01,,3,5,5,3,3,4,4,120.2,282.8,74.38,11,1,1,PC,APC,11.5547,0.006,,1,qlp,SPOC,07:08:37.37,-64:13:58.08,-17.625,0.084,33.331,0.071,2459360.061526,0.0002062,0.3456911,1e-07,0.648,0.025,3.044325,0.293537,2800.0,270.321,10.1929,1.9547,18378.3,3243.0,156.0,330.15,4.6275,6282.0,6442.8,4.3,2.0,1.05,0.05,,,1.23,0.191189,"1,2,3,4,5,6,7,8,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2020-09-18,2021-11-09,2022-12-14 12:09:24,V-shaped; small a/Rs; possibly EB,2218,1,False,False,True -278138619,2219.01,,3,4,3,3,3,4,4,11.7,39.4,110.11,2,0,1,PC,PC,12.9901,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,07:11:16.7,-78:14:18.47,4.525,0.025,-13.753,0.028,2459362.996935,0.004409436,10.168872190536,8.075004e-05,4.38841079783234,0.11568099,8.027505,0.177682,7366.33976099065,163.638,12.8424533797347,0.65039736,258.775198266635,1022.94059101698,38.69671,687.409,6.855,5161.7,5229.8,4.3,2.0,1.39859998226166,0.0649649,,,1.14,0.148445,"1,3,4,6,7,10,11,13,27,28,30,31,33,34,37,38,39",2020-09-18,2022-03-21,2022-12-14 12:09:24,,2219,1,False,False,True -150437346,2220.01,,3,4,3,3,3,4,4,162.1,157.2,317.0,8,2,3,PC,PC,11.6659,0.006,,1,spoc,SPOC,06:29:16.92,-65:20:16.01,-25.398,0.059,-0.129,0.052,2459363.006828,0.00076224,1.3926508897368,2.6246014e-06,2.03745310931899,0.025174858,7.871014,0.068357,7223.25757713722,62.957035,17.232787484423,4.305266,2439.87712296809,1792.5106237819,85.237335,356.5,3.69,5615.0,271.6,4.39,2.0,1.20948994159698,0.0652513,,,1.04,0.122224,"1,3,4,5,6,7,8,9,10,11,13,27,28,30,31,33,34,35,36,37,38,39",2020-09-18,2021-10-04,2022-12-14 12:09:24,consistent very small odd-even; possible synchronization in early Y1; V-shaped; large,2220,1,False,False,True -441420236,2221.01,,1,4,1,5,4,5,5,48.7,466.8,15.33,36,1,4,KP,CP,6.755,0.032,,1,spoc,SPOC,20:45:09.87,-31:20:32.82,281.424,0.075,-359.895,0.054,2459041.281746,0.0009567216,0.0,0.0,3.57380057446,0.069821164,3.123035,0.235679,2872.28875253504,217.04503,4.02692583280562,0.21189068,76.6379131651693,754.624093544796,22.71253,9.7221,0.004625,3588.0,87.0,4.60198,0.0633204,0.698009,0.0210957,,,0.662074,0.0204762,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,AU Mic b; first transit matches expected ephemeris,2221,1,False,True,True -306510653,2222.01,,3,4,4,3,3,4,4,48.8,59.0,317.0,4,0,1,PC,PC,12.7427,0.006,,1,qlp,SPOC,07:56:44.45,-67:04:18.95,-5.878,0.024,2.607,0.023,2459386.420276,0.0002571,2.2456869,1e-06,3.155,0.073,13.767193,0.000219,12600.0,0.201959,17.5083,0.760297,2366.82,1943.0,224.0,859.449,9.774,6381.0,6543.8,4.2,,1.5,0.06,,,1.41,0.239803,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2020-09-18,2021-11-10,2022-12-14 12:09:24,,2222,1,False,False,True -273695332,2223.01,,3,4,3,3,3,4,4,21.1,61.5,120.08,4,3,1,PC,PC,12.0599,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,01:14:45.57,-81:58:55.79,28.307,0.041,2.571,0.035,2459365.146877,0.0017732515,6.93096567369197,3.1992757e-05,5.29214484821393,0.10705567,7.503792,0.132904,6887.42003943256,122.40133,13.5136570376998,0.69025767,586.186813100036,1254.95675520986,40.39721,601.919,6.8165,5847.0,5846.6,4.3,,1.5913599729538,0.0734145,,,1.19,0.165998,"27,28,39",2020-09-18,2022-03-22,2022-12-14 12:09:24,,2223,1,False,False,True -388198242,2224.01,TIC 388198242.01,3,4,3,3,3,4,4,26.5,81.6,21.93,3,0,1,PC,PC,11.9987,0.006,,1,spoc,SPOC,04:04:58.31,-78:22:28.85,-3.998,0.041,36.072,0.047,2459279.057126,0.0002131,0.505510515897485,2.8973066e-06,0.648232028256928,0.1100928,2.466551,0.087831,2269.19913698528,80.891884,4.97098115772485,1.7097,4944.36877574897,2138.68815119761,28.75093,290.755,1.874,4996.3,5017.6,4.5,2.0,1.01488995552063,0.0569648,0.0689733,0.0789178,0.9,0.111041,"1,2,5,12,13,27,28,29,32,35",2020-09-18,2021-10-05,2022-12-14 12:09:24,V-shaped,2224,1,False,False,True -271891552,2225.01,,3,4,3,3,3,4,4,11.0,34.6,66.99,3,0,2,PC,PC,13.3639,0.013,,1,qlp,SPOC,07:31:04.19,-72:40:02.81,1.821,1.252,1.369,1.288,2459385.385757,0.0014978,3.5775562,7.9e-06,3.531,0.105,4.417062,0.001109,4060.0,1.02122,,,476.680922783622,1191.7267626406,40.0,842.388,,5823.3,5934.8,4.3,,,,,,,,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2020-09-18,2021-11-10,2022-12-14 12:09:24,Gaia Teff ~5800 K; Gaia plx 0.91+/-0.05; no stellar radius; effective stellar flux and planet equilibrium temperature are from spoc-s01-s39 multisector; other parameters are from qlp-s39-tois,2225,1,False,False,True -403135192,2226.01,,3,4,4,3,3,4,4,20.8,97.7,15.5,4,0,1,PC,PC,9.6968,0.006,,1,spoc,SPOC,22:14:14.3,-59:34:05.97,57.2,0.074,8.138,0.055,2459037.001959,0.0005749156,0.901822593161465,2.0935855e-05,0.902301479043774,0.15223171,0.893975,0.03867,823.042549830869,35.61598,4.05348407024636,1.736841,5466.71577215292,2193.06434003984,19.553692,164.418,1.5585,5828.0,5824.8,3.9,0.1,1.35925996303558,0.0620704,-0.09,0.09,1.04,0.123581,"27,28",2020-09-18,2021-10-04,2022-12-14 12:09:24,could be L1 given Rp uncertainty,2226,1,False,False,True -405425498,2227.01,,2,4,2,2,3,4,4,4.9,44.2,9.34,2,3,1,PC,PC,10.0106,0.006,,1,spoc,SPOC,22:30:04.26,-67:51:00.53,-2.912,0.033,24.837,0.037,2458328.523606,0.0013865175,4.22175342022963,1.5934815e-05,2.66466313842276,0.34516048,0.628575,0.04265,578.771213010007,39.281456,3.0087041348365,1.2043247,541.074990540378,1230.08214518127,12.614156,165.441,0.6415,5763.48,45.6,3.99846,0.066564,1.20846998691559,0.0594974,-0.0502762,0.0668965,1.03,0.130293,"1,27,28",2020-09-18,2020-09-18,2022-12-14 12:09:24,potential L1 planet,2227,1,False,False,True -61733521,2228.01,,5,5,5,5,5,5,5,4.6,41.8,7.75,1,0,1,PC,FP,10.8911,0.006,,1,qlp,QLP,19:16:04.34,-46:28:50.72,50.01,0.08,-29.553,0.074,2458655.87771,0.00586,3.36296,7e-05,2.594,0.432,0.814608,0.003405,750.0,3.13635,2.69668,0.229997,414.8,1257.0,9.0,167.24,1.453,5420.0,131.4,4.5,0.08,0.9,0.05,,,0.94,0.12344,"13,27",2020-09-18,2020-09-18,2022-12-14 12:09:24,,2228,1,False,False,False -143410850,2229.01,,3,4,3,3,3,4,4,7.9,39.1,26.18,0,0,1,PC,PC,10.6658,0.006,,1,qlp,QLP,19:38:17.32,-46:23:53.08,7.962,0.073,-18.752,0.044,2458660.25609,0.00632,4.98668,0.00011,2.267,0.717,0.934135,0.005768,860.0,5.31209,5.51463,0.494476,339.923,1196.0,9.0,329.989,4.857,6046.0,130.3,4.06,0.08,1.64,0.08,,,1.12,0.151061,"13,27",2020-09-18,2020-09-18,2022-12-14 12:09:24,,2229,1,False,False,False -129432342,2230.01,,5,5,5,5,5,5,5,64.4,49.4,317.0,1,0,1,PC,FP,10.9198,0.006,,1,qlp,QLP,20:17:48.68,-44:58:06.43,9.323,0.062,-9.39,0.047,2459037.29826,0.00303,1.79217,0.00039,1.797,0.251,1.858198,0.003738,1710.0,3.44327,21.4342,,436.663,1273.0,19.0,713.6,21.8525,4884.0,122.0,,,4.7,,,,,,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,likely EB; small a/r,2230,1,False,False,False -100504381,2231.01,,5,5,5,5,5,5,5,41.0,177.8,48.19,0,0,2,PC,FA,8.565,0.017,,1,qlp,QLP,20:34:15.29,-48:16:29.01,11.7,2.0,-13.8,1.8,2459039.62785,0.00096,5.46364,0.00049,1.026,0.179,2.467423,0.003571,2270.0,3.28942,,,,,42.0,,,,,,,,,,,,,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,no stellar parameters; TFOP FA; the phantom in a split with 1989628303 and 1989628301,2231,1,False,False,False -439444938,2232.01,,3,5,5,3,3,4,4,8.6,29.3,61.13,1,0,1,PC,PC,8.776,0.016,,1,qlp,QLP,20:06:09.63,-33:40:02.94,-6.9,2.2,-11.1,2.2,2459046.54248,0.00273,11.45959,0.00452,0.956,0.221,0.705958,0.006025,650.0,5.54886,,,,,10.0,,,,,,,,,,,,,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,low SNR; two stars within a TESS pixel; no stellar params in the TIC; the phantom in split of 1991448397 and 1991448398,2232,1,False,False,False -421455387,2233.01,,3,5,5,3,3,4,4,216.8,240.3,317.0,3,0,1,PC,APC,10.9896,0.006,,1,qlp,QLP,19:47:40.72,-32:34:33.48,1.199,0.065,-24.846,0.035,2458657.17965,0.00066,2.50876,1e-05,1.02,0.075,6.097211,2.185472,5600.0,2010.87,18.7769,5.70585,324.413,1182.0,18.0,193.007,1.5745,5226.0,129.8,4.28,0.08,1.13,0.07,,,0.89,0.107402,"13,27",2020-09-18,2020-09-18,2022-12-14 12:09:24,V-shaped; two stars in the TESS pixel,2233,1,False,False,False -271491157,2234.01,,3,5,5,3,3,4,4,32.5,66.6,119.6,1,0,1,PC,APC,10.7837,0.006,,1,qlp,QLP,19:56:55.16,-35:23:49.84,9.589,0.073,-6.849,0.044,2459036.73041,0.0026,2.91615,0.00054,1.481,0.161,2.478305,0.00411,2280.0,3.78543,13.4791,0.92864,253.391,1111.0,24.0,558.211,15.4225,6103.0,132.3,3.64,0.08,2.69,0.15,,,1.15,0.157408,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,,2234,1,False,False,False -267093376,2235.01,,3,5,5,3,3,4,4,6.7,37.5,50.65,1,1,3,PC,APC,10.8988,0.006,,1,qlp,QLP,02:44:21.97,-74:47:23.34,-13.028,0.038,-10.482,0.031,2458326.09868,0.00204,17.14012,6e-05,1.176,0.211,2.369489,0.005358,2180.0,4.93525,8.14257,0.536339,5.93171,434.0,15.0,405.817,2.838,6378.0,136.7,4.1,0.08,1.67,0.07,,,1.27,0.190423,"1,2,13,27,28,29",2020-09-18,2020-11-19,2022-12-14 12:09:24,,2235,1,False,False,False -394722182,2236.01,,3,5,5,3,4,4,4,57.8,139.3,131.35,2,8,1,PC,CP,10.8673,0.006,,1,qlp-s39-tois,QLP,01:20:39.84,-86:58:47.87,-3.719,0.04,-7.732,0.034,2459389.337457,0.0004118,3.5315897,3.1e-06,2.689,0.081,7.878388,0.000425,7230.0,0.391653,14.2116,0.644345,551.242,1349.0,156.0,355.59,2.444,6209.0,127.2,4.09,0.08,1.62,0.07,,,1.19,0.168387,"12,13,27,39",2020-09-18,2023-01-24,2023-03-03 12:02:53,,2236,1,False,False,False -389238529,2237.01,,5,5,5,5,5,5,5,22.6,91.1,26.62,1,0,1,PC,FP,10.9987,0.006,,1,qlp,QLP,20:11:59.87,-37:33:41.99,-15.798,0.087,-13.701,0.053,2459036.5003,0.00305,0.49642,0.00011,0.572,0.15,1.086279,0.018521,1000.0,17.0583,5.57222,0.734314,2758.3,2018.0,13.0,416.129,8.4485,7000.0,205.8,4.33,0.11,1.41,0.09,0.25,0.19,1.54,0.269981,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,short period; a/R ~ 2,2237,1,False,False,False -231077395,2238.01,,1,5,5,1,3,4,4,2.1,20.0,6.4,1,2,3,PC,PC,10.7188,0.006,,1,qlp,QLP,04:30:37.87,-70:21:17.68,0.544,0.046,-16.269,0.055,2459385.570216,0.0029037,3.3904897,1.38e-05,2.878,0.239,0.282328,0.000258,260.0,0.237363,2.40673,0.126479,764.344,1464.0,14.0,285.78,2.071,6113.8,107.4,4.19,0.08,1.43,0.06,-0.34,0.1,1.15,0.153423,"1,2,3,4,5,6,7,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2020-09-18,2021-11-09,2022-12-14 12:09:24,Low-SNR candidate. Poor transit shape but good BLS signal. Slight depth aperture correlation.,2238,1,False,False,False -388130235,2239.01,,5,5,5,5,5,5,5,,,317.0,1,0,3,PC,FP,10.7891,0.006,,1,qlp,QLP,04:21:38.45,-67:28:01.34,2.785,0.051,-4.604,0.046,2459323.834676,0.001369,92.1951455,0.0002335,4.011,0.106,4.929559,0.000953,4530.0,0.877494,18.1885,,0.785468,262.0,55.0,454.103,4.654,5030.6,69.0,,,3.0,,-0.29,0.09,,,"1,3,4,5,6,7,8,9,10,11,13,27,28,29,30,31,32,33,34,35,36",2020-09-18,2021-11-10,2022-12-14 12:09:24,planet might be too large; nearby star 388130237,2239,1,False,False,False -98494121,2240.01,,5,5,5,5,5,5,5,25.1,132.7,25.19,1,0,1,PC,FP,10.9931,0.006,,1,qlp,QLP,19:23:56.83,-36:54:37.51,68.354,0.056,-7.2,0.056,2458659.34688,0.00151,3.06555,2e-05,2.483,0.217,3.174987,0.146198,2920.0,134.644,5.41363,0.951451,1605.05,1763.0,34.0,123.796,0.5295,5285.0,130.2,4.7,0.08,0.71,0.04,,,0.91,0.111521,"13,27",2020-09-18,2020-09-18,2022-12-14 12:09:24,slight centroid offset; ephemeris match 98494101; v-shaped transit,2240,1,False,False,False -96973930,2241.01,,3,4,3,3,3,4,4,,,317.0,2,2,3,PC,PC,10.1738,0.006,,1,qlp,QLP,19:41:01.56,-27:51:33.39,12.5,4.4,-6.9,4.2,2458657.36252,0.00444,3.3243,4e-05,2.337,0.19,1.249315,0.001997,1150.0,1.83968,21.7252,1.34786,181.989,1023.0,12.0,,,4779.7,114.5,,,5.76,0.28,,,,,"13,27",2020-09-18,2020-09-18,2022-12-14 12:09:24,,2241,1,False,False,False -92562123,2242.01,,3,4,3,3,3,4,4,8.2,34.1,37.23,0,0,1,PC,PC,9.9279,0.006,,1,qlp,QLP,21:00:41.23,-35:52:15.96,5.983,0.051,-22.916,0.039,2459041.75877,0.01251,6.53144,0.00545,5.713,0.994,0.760281,0.002491,700.0,2.29402,6.77621,0.521014,808.553,1485.0,9.0,349.478,4.5135,6037.2,102.6,3.66,0.07,2.58,0.11,-0.494098,0.0768221,1.12,0.145306,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,weak signal; weak BLS; possible variability; period may be double,2242,1,False,False,True -1990842033,2243.01,,3,5,5,3,3,4,4,18.4,174.4,23.66,0,0,1,PC,APC,10.8068,0.006,,1,qlp,QLP,20:41:56.07,-38:52:40.83,-9.515,1.638,-8.567,1.751,2459040.094,0.00137,5.41418,0.00069,4.428,0.136,8.556658,0.00152,7850.0,1.40014,,,816.558,1489.0,81.0,128.552,20.6045,6664.0,235.8,,,,,,,,,27,2020-08-25,2020-09-18,2022-12-14 12:09:24,Rp/R* is 0.08; two stars in pixel; no stellar radius,2243,1,False,False,False -1989628303,2244.01,,3,4,3,3,3,4,4,66.4,243.3,72.61,3,0,2,PC,PC,9.1984,0.006,,1,qlp,QLP,20:34:15.24,-48:16:29.43,15.103,0.063,-11.602,0.07,2459039.62778,0.00088,5.46377,0.00043,1.036,0.124,4.362555,0.004732,4010.0,4.35819,12.894,3.12636,23.3924,612.0,40.0,174.318,1.1905,5286.9,747.5,,,1.95,0.47,,,,,27,2020-09-18,2020-09-18,2022-12-14 12:09:24,two stars in the TESS pixel; this star and 1989628301 have phantom 100504381,2244,1,False,False,False -278415929,2245.01,,3,4,3,3,1,4,4,6.0,30.3,16.08,0,1,0,PC,PC,10.8366,0.006,,1,qlp-s39-tois,QLP,07:49:07.44,-80:53:37.99,19.258,0.039,-57.215,0.054,2459389.180943,0.0029025,3.7981107,1.83e-05,3.914,0.209,0.814608,0.000465,750.0,0.428236,4.13478,0.23043,911.152,1530.0,22.0,264.842,1.681,5042.0,59.3,4.04,0.54,1.51,0.07,,,1.08,0.127643,"7,11,12,13,27,38,39",2020-09-18,2022-03-21,2022-12-14 12:09:24,possible depth aperture and centroid offset in qlp possibly due to variable star in background,2245,1,False,False,True -349786918,2246.01,,5,5,5,5,5,5,5,2.0,19.5,4.79,2,1,3,EB,FP,9.9676,0.006,,1,qlp-s62-ffi,QLP,07:32:10.44,-65:48:41.02,16.2,0.051,50.797,0.056,2460012.788541,0.0071012,2.9663437,1.84e-05,4.44,0.557,0.223685,0.011177,206.0,10.2948,2.02837,0.121919,2291.32,1927.0,18.0,226.06,1.255,5807.0,126.2,4.14,0.35,1.59,0.07,,,1.12,0.14755,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62",2020-09-18,2023-03-21,2023-03-24 12:12:10,Two stars within a TESS pixel; visual binary; TFO FP/retired as NEB,2246,1,False,False,True -376168473,2247.01,,5,5,5,5,5,5,5,16.4,161.7,21.44,0,0,1,PC,FA,10.787,0.019,,1,qlp,QLP,20:41:56.07,-38:52:40.81,11.1,2.3,-10.0,2.3,2459040.0943,0.00123,5.41402,0.0007,4.418,0.142,8.480058,0.001753,7780.0,1.61482,15.9563,,694.699,,82.0,325.492,,6394.3,,,,1.75,,-0.06,0.12,,,27,2020-09-18,2020-08-25,2022-12-14 12:09:24,phantom join with 1990842033; TFOP APC,2247,1,False,False,False -179580045,2248.01,,3,4,3,3,3,4,4,4.2,40.3,75.95,0,0,3,PC,PC,10.4653,0.006,,1,qlp-s39-tois,QLP,05:22:29.76,-70:15:15.58,3.901,0.051,15.661,0.057,2459331.762106,0.0015721,62.1624516,0.0001656,4.319,0.168,4.035572,0.000809,3710.0,0.744657,10.3408,0.375351,10.4285,500.0,32.0,380.513,4.5095,7546.0,137.6,4.24,0.08,1.66,0.05,,,1.75,0.289434,"1,2,3,5,6,7,8,9,10,11,12,13,27,28,29,30,32,33,35,36,37,38,39",2020-09-18,2023-01-24,2023-01-26 12:09:41,Gaia DR2 RV error 6.6 km/s; some phased scatter,2248,1,False,False,True -152714791,2249.01,,5,5,5,5,5,5,5,42.3,53.0,122.69,1,0,1,PC,FP,10.3486,0.008,,1,qlp,QLP,20:18:30.93,-30:38:55.85,9.783,0.066,-13.688,0.044,2459036.88269,0.00394,1.27349,0.00032,1.655,0.286,0.999337,0.001844,920.0,1.69855,13.6856,,891.053,1522.0,17.0,502.103,10.9335,4982.0,122.0,,,4.35,,,,,,27,2020-08-25,2020-09-18,2022-12-14 12:09:24,possible small secondary; small a/r,2249,1,False,False,False -264303333,2250.01,,5,5,5,5,5,5,5,2.0,4.9,1.36,2,2,3,PC,FP,10.1583,0.006,,1,spoc,SPOC,19:45:25.2,67:18:39.49,-26.099,0.041,-23.123,0.046,2458683.444885,0.0018666517,0.815297666182522,1.6400647e-05,1.60977736053189,0.32081938,0.109428,0.013601,100.782220915282,12.526691,1.09766302369998,0.5462978,3059.4823447021,1896.8445339072,8.604927,142.086,0.433,5729.0,149.042,4.47487,0.0771837,0.96947,0.0495829,,,1.023,0.13045,"14,15,16,17,18,19,21,22,23,24,26",2020-09-23,2020-09-11,2022-12-14 12:09:24,Centroid shifts likely due to low-SNR in sectors with scattered light.,2250,1,False,False,True -229715760,2251.01,TIC 229715760.01,3,4,3,3,4,4,4,22.6,38.9,317.0,2,2,3,PC,PC,12.7778,0.01,,1,spoc-s14-s55-b0A-PC,SPOC,18:35:57.49,70:09:38.72,9.167,0.029,-16.682,0.027,2459945.371277,0.0019627223,11.574356091506,1.8488217e-05,6.04937634831291,0.061795667,15.621732,0.140634,14285.1321998018,129.5199,18.1309835141608,0.91899747,205.663155632294,965.848196863939,111.67042,711.751,7.3315,5776.0,135.0,4.13,0.07,1.45780003070831,0.072897,,,1.04,0.121408,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52,53,54,55,60",2020-09-23,2023-03-22,2023-03-24 12:12:10,possible centroid offset towards TIC 229715770,2251,1,False,False,True -233066156,2252.01,,3,4,3,3,4,4,4,3.1,15.5,36.75,0,2,3,PC,PC,10.8841,0.008,,1,qlp-s49-tois,SPOC,18:01:06.63,61:20:49.75,8.793,0.074,1.344,0.07,2459649.408457,0.0053374,12.3794491,9.46e-05,2.79,0.372,0.575593,0.001283,530.0,1.18207,6.72429,0.463984,72.0531,811.0,12.0,713.878,17.9285,6582.0,131.1,3.69,0.09,2.78,0.13,,,1.37,0.224057,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49",2020-09-23,2022-08-19,2022-12-14 12:09:24,slight v-shape; small odd-even (~2.5 sigma),2252,1,False,False,True -367855829,2253.01,,3,4,3,3,3,4,4,0.9,22.0,17.97,1,2,1,PC,PC,9.9558,0.007,,1,spoc,SPOC,18:27:28.35,73:15:52.47,9.712,0.086,17.41,0.099,2458714.619721,0.0031869921,85.4244796256553,0.0017221926,3.66584646818105,0.47042352,1.232166,0.16135,1134.22330281424,148.5979,4.42080539568348,1.6479416,10.9176681777746,463.609388487343,7.7823987,172.284,1.5885,5697.0,128.002,4.21712,0.0776249,1.29609,0.0642663,,,1.01,0.124741,"14,15,16,17,18,19,20,21,23,24",2020-09-23,2020-09-11,2022-12-14 12:09:24,,2253,1,False,False,True -233688779,2254.01,,2,4,2,2,4,4,4,1.2,21.6,6.97,1,1,4,PC,PC,9.34244,0.006,,1,qlp-s60-ffi,SPOC,18:21:34.46,62:22:08.41,-8.274,0.046,49.399,0.046,2459957.85248,0.0043722,26.458069,0.0001525,3.117,0.625,0.438726,0.025205,404.0,23.2145,2.52936,0.164053,11.8255,516.0,17.0,139.078,0.4345,5706.0,187.0,4.84423,0.320384,1.37,0.07,,,1.015,0.128975,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,55,56,57,59,60",2020-09-23,2023-02-27,2023-03-03 12:11:24,potential L1 planet,2254,1,False,False,True -265146266,2255.01,,3,4,3,3,3,4,4,13.7,57.0,89.97,3,8,2,PC,PC,12.0836,0.006,,1,qlp-s52-tois,SPOC,21:07:34.25,74:22:59.71,14.297,2.228,28.525,2.228,2459727.117395,0.0022562,11.9526103,3.23e-05,2.74,0.323,10.758486,0.009209,9860.0,8.48206,11.4014,,48.2015,,9.0,394.556,,6049.0,,4.438,,1.25,,,,,,"17,18,19,24,25,26,52",2020-09-23,2022-12-12,2022-12-16 12:08:26,V-shaped; possible additional unrelated transit at ~2737 TBJD,2255,1,False,False,True -262880065,2256.01,,2,4,2,2,4,4,4,1.5,30.4,5.85,0,2,14,PC,PC,10.446,0.006,,1,spoc-s14s26-b0H,SPOC,15:01:15.76,40:56:48.58,63.0,8.0,15.0,8.0,2458938.823053,0.004601457,13.9614180362254,0.0026012864,4.55392812158689,0.7370433,0.860973,0.088534,792.671126025485,81.53962,2.28415489833256,1.5819696,46.7589835732753,666.938848080655,9.623943,117.892,,5270.9,,4.438,,0.813544,,0.122,0.074,,,"23,24,50",2020-09-23,2022-05-31,2022-12-14 12:09:24,failed bootstrap; possible secondary,2256,1,False,False,True -198485881,2257.01,,1,4,1,2,4,4,4,0.1,30.1,5.59,5,0,4,CP,CP,12.9672,0.007,,1,spoc-s14-s50-b0A-CP,SPOC,12:58:57.51,77:39:42.18,-35.993,0.063,31.425,0.046,2459606.202888,0.007824,35.1896444375252,0.00022399145,3.32540287554037,0.40169063,4.924035,0.380738,4524.93539249194,350.61157,2.22536959221752,0.38694382,0.670313151394079,230.775225829304,12.875071,57.7911,0.1051,3446.0,157.0,4.89707,0.00280431,0.326932013034821,0.00965778,,,0.30755,0.0201328,"14,20,21,26,40,41,47,48",2020-09-23,2022-11-09,2022-12-14 12:09:24,TOI-2257 b / TOI-2257.01 (confirmed by Schanche et al. 2021),2257,1,False,False,True -219821826,2258.01,TIC 219821826.01,5,5,5,5,5,5,5,28.6,44.1,317.0,3,1,3,EB,FP,12.2169,0.007,,1,qlp-s49-tois,SPOC,17:52:07.09,62:47:27.38,14.2,0.043,-7.692,0.053,2459659.732563,0.0004166,9.6799809,6.9e-06,1.806,0.172,17.368823,0.002966,15870.0,2.73188,14.6081,0.737069,31.1433,658.0,137.0,455.408,5.3135,5980.0,128.2,4.39,0.08,1.11,0.05,,,1.1,0.138001,"14,15,16,17,18,20,21,23,24,25,26,40,41,47,48,49",2020-09-23,2022-06-29,2022-12-14 12:09:24,eccentric EB; secondary at phase 0.25,2258,1,False,False,True -219501568,2259.01,,3,4,4,3,4,4,4,6.6,60.2,17.0,1,2,8,PC,PC,7.97758,0.006,,1,qlp-52-tois,SPOC,16:18:15.41,42:37:37.41,-39.913,0.057,13.424,0.053,2459724.926716,0.0020691,16.5899447,9.99e-05,1.479,0.445,0.56473,0.00208,520.0,1.9161,4.2671,0.324636,18.1847,575.0,9.0,122.859,0.4335,6690.0,127.351,4.1059,0.0926789,1.74,0.08,,,1.417,0.240532,"24,25,51,52",2020-09-23,2022-12-12,2022-12-16 12:08:26,weak transit shape; only two transits; centroid offset consistent with bright host,2259,1,False,False,True -232568235,2260.01,,1,5,5,1,4,4,4,9.5,79.4,3.37,2,2,9,CP,CP,9.75874,0.006,,1,spoc-s14-s50-b0A-CP,SPOC,16:30:40.08,49:02:48.44,-25.3,0.047,61.392,0.064,2458928.240076,0.00071406295,0.35245858689096,9.6769745e-06,0.850871133136225,0.14252031,0.3188,0.028976,293.582451832914,26.687157,1.65119476555414,1.0684835,6839.39930411986,2319.39245214178,13.15425,101.251,0.2835,5432.0,126.1,4.51,0.08,0.898415982723236,0.0485427,,,0.947,0.122263,"23,24,25,50",2020-09-23,2022-11-09,2022-12-14 12:09:24,TOI-2260 b,2260,1,False,False,True -229787062,2261.01,TIC 229787062.01,3,4,3,3,3,4,4,8.5,40.7,19.04,2,1,3,PC,PC,12.4841,0.007,,1,qlp-s49-tois,SPOC,18:56:05.44,70:15:14.83,-12.668,2.195,-9.508,2.195,2459662.57661,0.0019493,1.9011481,5.6e-06,1.042,0.126,2.064861,0.00342,1900.0,3.14998,4.5911,,183.197,,19.0,368.055,,5392.0,,,,0.99,,,,,,"14,15,16,17,18,19,20,22,23,25,26,40,41,47,48,49",2020-09-28,2022-08-19,2022-12-14 12:09:24,V-shaped; host star is 12.5 mag at 350 pc,2261,1,False,False,True -165530380,2262.01,,2,4,4,2,4,4,4,1.8,21.1,3.26,2,4,4,PC,PC,10.4267,0.006,,1,qlp,SPOC,17:45:37.55,59:30:51.12,-1.587,0.054,7.835,0.045,2459795.358706,0.0048742,1.4937444,9.7e-06,2.044,0.329,0.173732,0.000498,160.0,0.458299,1.62102,0.119204,2431.71,1956.0,11.0,250.998,1.528,6328.0,129.745,4.32136,0.0832968,1.28,0.06,,,1.25,0.19044,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,52,53,54",2020-09-30,2022-10-04,2023-05-24 00:00:00,low SNR,2262,1,False,False,True -159400561,2263.01,,2,5,5,2,3,4,4,,,3.31,0,5,3,PC,PC,9.7115,0.006,,1,spoc-s14s26-b02,SPOC,15:51:50.67,83:06:39.2,-149.252,0.037,79.942,0.04,2458708.384365,0.012794958,0.0,0.0,14.9235889453141,1.2611362,0.388469,0.050141,357.728963194586,46.180603,1.63308873541313,0.6674001,0.857411770378014,245.424045064939,7.5361633,99.9023,0.2462,5599.0,127.142,4.57217,0.079349,0.852643,0.0434171,,,0.99,0.121291,"14,19,20,21,25,26,40,41",2020-09-30,2022-02-03,2022-12-14 12:09:24,possible single transit candidate at TBJD~1710,2263,1,False,True,True -235943205,2264.01,TIC 235943205.01,3,4,3,3,3,4,4,0.4,22.2,16.32,2,3,1,PC,PC,10.5653,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,19:43:42.66,78:43:33.31,5.445,0.082,-7.169,0.069,2458827.02652,0.0024926597,121.334290754359,0.00041620442,6.18615994213074,0.26374543,1.989302,0.081004,1830.53693114284,74.60472,4.17671820262057,0.39842516,4.5797412543559,373.104068712083,24.805489,189.22,2.138,6140.0,128.245,4.54184,0.0805252,0.957395017147064,0.041809,,,1.164,0.15721,"17,18,19,20,23,24,25,26,40,47,50,53,54,57,58,59,60",2020-09-30,2023-05-19,2023-06-16 12:14:51,bright isolated star; long period,2264,1,False,False,True -310231275,2265.01,,2,5,5,2,4,4,4,9.4,61.5,6.73,3,17,10,PC,PC,9.1021,0.006,,1,spoc,SPOC,15:59:09.06,32:23:45.5,42.28,2.0,-102.94,2.0,2458956.331721,0.0012037436,0.829408439616925,3.737588e-05,0.558328913470858,0.098958306,0.276477,0.039856,254.612752900568,36.708115,2.47991922216717,2.4183564,4983.613207831,2142.91937554291,7.2714396,88.0815,,5951.67,,4.438,,1.52424,,0.035,0.02,,,"24,25",2020-09-30,2021-01-11,2022-12-14 12:09:24,phase curve modulation synced with transits; artifact TIC 310231274 close by,2265,1,False,False,True -8348911,2266.01,,2,4,4,2,4,4,4,4.7,74.6,4.57,12,0,4,PC,PC,13.5042,0.008,,1,spoc-s14-s55-b0A-PC,SPOC,16:21:07.21,31:34:37.35,47.468,0.069,37.877,0.097,2458957.9252,0.0016505112,2.32634296639119,1.4453442e-05,1.21950508802238,0.22301836,4.519121,0.728373,4153.61444356599,670.6309,1.97631873215905,0.2668421,15.1203938889653,502.933455024905,7.8007135,51.6004,0.1294,3244.0,157.0,4.97167,0.0114808,0.261162012815475,0.00786259,,,0.233038,0.0201461,"24,25,51,52",2020-09-30,2023-03-09,2023-03-24 12:12:10,low SNR,2266,1,False,False,True -459837008,2267.01,,2,4,2,2,3,4,4,2.3,11.9,2.16,6,0,4,PC,PC,12.2591,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,04:20:14.76,84:54:02.97,192.45,2.0,-218.94,2.0,2458816.152459,0.0008326795,3.49504222192781,8.661664e-06,1.03113421004655,0.112701,2.178463,0.222571,2004.42690296487,204.97464,1.27344225717322,0.1111988,6.06949888294441,400.320618057185,10.658578,,,3022.0,157.0,4.99625,0.013126,0.242744997143745,0.00799628,,,0.21305,0.0204176,"19,20,25,26,40,52,53,59,60",2020-09-30,2023-05-18,2023-06-16 12:14:51,low MES,2267,1,True,False,True -459837008,2267.03,,1,4,1,1,3,4,4,2.0,15.6,0.7,6,0,4,PC,PC,12.2591,0.007,,3,spoc-s14-s60-b0A-PC,SPOC,04:20:14.76,84:54:02.97,192.45,2.0,-218.94,2.0,2458818.073212,0.00084652624,2.28910266826545,1.0029597e-05,0.834403242400092,0.48361093,1.504377,0.224385,1384.62285500587,206.64485,0.91314038124178,1.3255601,10.6709325763114,460.967538750696,7.2280383,,,3022.0,157.0,4.99625,0.013126,0.242744997143745,0.00799628,,,0.21305,0.0204176,"19,20,25,26,40,52,53,59,60",2022-02-28,2023-05-18,2023-06-16 12:14:51,potential multi with 3:2 resonance,2267,3,True,False,True -20203297,2268.01,,2,4,2,2,4,4,4,3.9,41.0,9.97,4,2,6,PC,PC,10.1338,0.006,,1,spoc,SPOC,15:05:52.71,39:38:11.59,-43.865,0.036,34.012,0.043,2458932.627916,0.0028987385,7.15660245111388,0.0009128498,1.21897502401115,0.5399923,0.73264,0.103171,674.558689675869,95.019554,3.12630626286464,2.9570937,253.752850793301,1017.94070728189,7.4447846,173.996,0.7945,5910.35,101.985,4.35957,0.072004,1.13489,0.0462663,0.099,0.015,1.075,0.133875,"23,24",2020-09-30,2020-09-30,2022-12-14 12:09:24,,2268,1,False,False,True -441798995,2269.01,,5,5,5,5,5,5,5,2.3,4.1,1.85,3,2,2,PC,FA,11.9521,0.007,,1,spoc,SPOC,17:36:35.49,77:07:34.38,5.414,0.035,21.959,0.038,2458683.350647,0.0017688242,1.42060361110023,2.3721876e-05,1.64832425633829,0.5032854,0.48653,0.05024,448.01018366977,46.271366,1.1974247061765,1.3618252,148.490367973498,890.316291552542,9.335167,82.1896,0.12405,3872.0,157.0,4.69525,0.00946245,0.548484,0.0161609,,,0.543889,0.0202007,"14,15,16,17,18,19,20,21,22,23",2020-09-30,2020-09-29,2022-12-14 12:09:24,false alarm; likely due to 2.8d signal in 2269.02; possible three-planet multi where the inner two are in 2:1 resonance with independent epochs; crowded field; SG1 should clear neighbors; odd-even depth difference,2269,1,True,False,True -441798995,2269.02,,1,4,4,1,4,4,4,1.9,3.8,2.6,3,2,2,PC,PC,11.9521,0.007,,2,qlp-s56-tois,SPOC,17:36:35.49,77:07:34.38,5.414,0.035,21.959,0.038,2459849.641958,0.0038658,2.8411415,1.33e-05,1.174,0.431,0.575593,0.098297,530.0,90.5312,1.42162,0.123241,35.9524,682.0,9.0,82.1896,0.12405,3872.0,157.0,4.69525,0.00946245,0.55,0.02,,,0.543889,0.0202007,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56",2020-09-30,2023-05-19,2023-06-16 12:14:51,potential multi; low MES,2269,2,True,False,True -441798995,2269.03,,1,4,1,1,4,4,4,0.9,23.2,4.08,3,2,2,PC,PC,11.9521,0.007,,3,spoc-s14-s60-b0A-PC,SPOC,17:36:35.49,77:07:34.38,5.414,0.035,21.959,0.038,2458686.456214,0.001931704,10.4029110825691,3.168667e-05,1.37217309973759,0.25180936,0.895217,0.098557,824.185118510164,90.77041,1.84659036260576,0.26620564,10.4421273936276,458.47641166149,9.171828,82.1896,0.12405,3872.0,157.0,4.69525,0.00946245,0.548484027385712,0.0161609,,,0.543889,0.0202007,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2020-09-30,2023-05-19,2023-06-16 12:14:51,possible multi,2269,3,True,False,True -198178505,2270.01,,2,5,5,2,4,4,4,,,8.07,0,5,8,PC,PC,7.7293,0.006,,1,spoc,SPOC,16:17:31.74,61:22:05.69,118.745,0.065,-71.193,0.08,2458962.984125,0.004428791,0.0,0.0,4.62887114175973,0.43418625,0.284463,0.039157,261.965642831056,36.06411,2.75999343949263,0.75198555,5.45791218903594,389.831012240806,8.170687,94.2106,0.31445,6380.43,109.452,4.1278,0.082766,1.61077,0.0629548,,,1.27,0.196395,"14,15,16,17,18,19,21,22,24,25",2020-09-30,2020-09-28,2022-12-14 12:09:24,Bright star; long orbital period; single transit,2270,1,False,True,True -258389327,2271.01,TIC 258389327.01,3,5,5,3,3,4,4,41.3,152.3,317.0,6,3,1,PC,APC,11.8248,0.01,,1,qlp-s52-tois,SPOC,19:46:50.47,70:04:19,15.974,0.043,-0.306,0.047,2459753.691039,0.0008867,26.5456672,3.18e-05,2.582,0.115,9.038269,1.132796,8290.0,1042.8,29.1697,6.11826,28.3073,642.0,60.0,543.564,6.4005,6180.0,135.7,4.06,0.09,1.68,0.08,,,1.18,0.174128,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52",2020-09-30,2023-02-23,2023-02-25 12:10:55,large for period; evolved host; v-shaped; likely EB,2271,1,False,False,True -265460043,2272.01,,2,4,3,2,4,4,4,4.0,30.7,23.31,0,3,5,PC,PC,8.1526,0.006,,1,spoc,SPOC,23:59:24.74,68:23:02.83,32.164,0.059,2.441,0.052,2458773.807867,0.006627856,32.8236817374048,0.009014148,15.2373739927495,0.6431936,0.400222,0.049801,368.550014236897,45.867332,5.15199518768757,0.95138246,206.964219183229,967.372120420022,7.9996424,179.828,1.266,6258.0,129.51,3.68336,0.0853692,2.63025,0.120588,,,1.217,0.172839,"17,18",2020-09-30,2020-09-30,2023-07-05 00:00:00,M-shaped features; likely stellar variability,2272,1,False,False,True -142117976,2273.01,,1,4,1,1,3,4,4,0.7,24.8,5.2,0,4,1,PC,PC,8.75584,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,05:24:57.65,79:44:57.63,35.866,0.039,-100.554,0.046,2458845.707797,0.004268538,46.5710978116565,0.0003643524,6.18325592593167,0.9081497,0.356563,0.046126,328.353148109316,42.482365,2.13056450529367,1.3920668,27.1915283850775,582.409103020645,8.04699,110.177,0.329,6495.0,126.093,4.43957,0.0892833,1.15083003044128,0.0499648,,,1.329,0.22372,"19,20,25,26,40,52,53,59,60",2020-09-30,2023-05-19,2023-06-16 12:14:51,slightly asymmetric transit shape,2273,1,False,False,True -289164482,2274.01,,2,4,2,2,4,4,4,11.4,91.0,6.93,4,3,6,PC,PC,10.3543,0.007,,1,spoc-s14-s41-b0A-PC,SPOC,18:29:50.23,40:32:29.08,-14.919,0.044,88.063,0.043,2459392.785836,0.0017525983,2.67961177378778,1.0399259e-05,1.16153238348375,0.111213185,1.080356,0.130222,994.549766475344,119.93158,2.52511942044425,0.22292008,83.708016093277,771.456623024337,10.665189,48.876,0.05795,3943.0,157.0,4.62547,0.0112025,0.630720019340515,0.0185106,,,0.612463,0.0201543,"14,26,40",2020-09-30,2022-02-15,2022-12-14 12:09:24,,2274,1,True,False,True -289164482,2274.02,,2,4,2,2,4,4,4,6.0,8.1,2.38,4,3,6,PC,PC,10.3543,0.007,,2,spoc-s14-s41-b0A-PC,SPOC,18:29:50.23,40:32:29.08,-14.919,0.044,88.063,0.043,2458684.284759,0.0011807848,1.11880336739619,1.1891979e-05,1.09854539070488,0.35223398,0.445572,0.069274,410.303155392669,63.801987,1.34566626890066,1.4513528,268.240612728583,1032.16916941571,7.8483453,48.876,0.05795,3943.0,157.0,4.62547,0.0112025,0.630720019340515,0.0185106,,,0.612463,0.0201543,"14,26,40",2022-02-28,2022-02-28,2022-12-14 12:09:24,potential multi; low SNR,2274,2,True,False,True -272679240,2275.01,,2,4,2,2,4,4,4,0.8,21.6,6.02,4,3,5,PC,PC,11.4208,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,15:38:02.95,69:01:03.11,-68.839,0.048,-25.34,0.047,2458684.152198,0.001838847,20.1546939441831,5.965454e-05,1.32447540400053,0.40272814,1.129207,0.102482,1039.49771030632,94.38459,2.32441248932406,2.677253,14.1253091408611,494.446423586468,8.875109,138.034,0.423,4863.0,125.354,4.63136,0.0866781,0.712387979030609,0.0482562,,,0.792,0.0966698,"14,15,16,17,20,21,22,23,26,40,41,47,48,49,50,54,56,57,60",2020-09-30,2023-05-19,2023-06-16 12:14:51,isolated star,2275,1,False,False,True -198456933,2276.01,,2,4,2,2,4,4,4,0.3,25.2,4.37,2,3,5,PC,PC,8.9072,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,17:27:20.82,58:12:51.67,-33.736,0.045,73.179,0.054,2458725.707722,0.007350167,76.8663962192284,0.0006695176,6.77530346099823,0.41020772,0.370905,0.028551,341.557849176565,26.296442,1.9249102998408,0.16553167,5.10394056745047,383.35060387984,12.533266,68.1461,0.11095,5482.02,137.714,4.5343,0.0859658,0.87704199552536,0.0518744,-0.0350573,0.00877845,0.96,0.119252,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2020-09-30,2023-05-19,2023-06-16 12:14:51,inconsistent centroid between sectors,2276,1,False,False,True -288516853,2277.01,,2,4,2,2,3,4,4,0.8,16.1,11.38,0,3,3,PC,PC,7.98614,0.006,,1,spoc,SPOC,18:13:59.35,80:39:30.46,25.258,0.042,44.322,0.067,2458693.128683,0.009109218,101.950973599834,0.004475997,12.4042036096937,0.5869429,0.194279,0.025786,178.921350609252,23.749584,3.37891054260522,0.716126,40.716602938631,644.262174052301,7.309889,156.777,0.6685,6358.0,136.905,3.76624,0.0866643,2.43663,0.110601,,,1.264,0.187084,"14,19,20,21,24,25,26",2020-09-30,2020-09-30,2022-12-14 12:09:24,Single transit candidate at TBJD~2000. Other events are likely systematic.,2277,1,False,False,True -243313296,2278.01,,2,4,4,2,2,4,4,9.0,95.4,4.23,5,0,4,PC,PC,12.4199,0.007,,1,qlp-s50-tois,SPOC,19:18:03.2,56:14:12.41,80.032,0.079,169.126,0.074,2459690.583683,0.0033795,1.4663344,8.4e-06,0.447,0.323,0.999337,0.782381,920.0,720.34,1.87124,0.954504,40.7842,704.0,7.0,43.5829,0.06555,3412.0,157.0,4.9014,0.00283365,0.32,0.01,,,0.302712,0.0202798,"14,15,16,20,23,26,40,41,49,50",2020-09-30,2022-09-07,2022-12-14 12:09:24,Crowded field; SG1 needs to clear the neighbors; faint target; low SNR,2278,1,False,False,True -115623434,2279.01,,2,4,2,2,4,4,4,6.8,63.0,6.63,1,2,8,PC,PC,10.2455,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,17:00:58.99,45:23:10.62,22.489,0.037,16.161,0.045,2458958.803815,0.0008246104,3.14344232641013,8.646201e-06,1.67770911808972,0.176891,0.877115,0.059615,807.527001153486,54.905514,2.45913206180572,0.5210059,221.926044834634,984.400482444152,13.8941965,94.186,0.1785,4962.0,118.963,4.55115,0.0896259,0.794996976852417,0.0492362,,,0.82,0.0993057,"24,25,26,51,52,53",2020-09-30,2023-03-09,2023-03-24 12:12:10,Tmag 14 neighbor,2279,1,False,False,True -115583726,2280.01,,3,4,4,3,4,4,4,10.6,40.0,61.65,1,2,7,PC,PC,8.44143,0.006,,1,spoc,SPOC,16:58:21.24,45:56:11.2,-1.978,0.043,-0.695,0.055,2458959.940081,0.0025350403,18.6016753935511,0.0010577816,2.36908958104615,0.39614573,0.608175,0.062147,559.993248857986,57.237625,9.13002834063923,3.9030464,845.874404083305,1375.45447446315,9.289213,282.689,1.8585,6175.0,121.68,3.37301,0.0809473,3.7007,0.159136,,,1.179,0.163611,"24,25,26",2020-09-30,2021-01-11,2023-02-27 00:00:00,Possibly EB; potential centroid offset towards bright neighbor TIC 115583727; SG1 needs to check the bright neighbors; large star; artifact TIC 115583727 close by,2280,1,False,False,True -264171144,2281.01,,2,4,2,2,4,4,4,0.2,12.2,8.75,0,4,5,PC,PC,9.13648,0.006,,1,spoc-s14-s41-b0A-PC,SPOC,19:37:33.64,66:58:17.16,28.682,0.043,-14.539,0.045,2458765.860515,0.0067024897,210.668358011183,0.0020937868,10.386557552307,0.84602946,0.372033,0.059121,342.596640442026,54.450962,2.89618180577315,0.9595894,17.3175389107402,520.284984886645,7.3769965,179.493,0.8425,6683.0,142.661,4.22146,0.0910537,1.5259200334549,0.0646784,,,1.414,0.238726,"14,15,16,17,18,19,21,22,24,25,26,40",2020-09-30,2022-03-24,2022-12-14 12:09:24,,2281,1,False,False,True -237211410,2282.01,,2,4,2,2,3,4,4,1.7,21.0,8.38,0,2,3,PC,PC,9.29735,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,19:37:30.25,74:46:56.32,8.389,0.048,14.83,0.043,2458691.469822,0.0026678173,12.552076555844,4.898475e-05,6.82681927036279,0.21254164,0.219435,0.017023,202.08689522276,15.678655,2.82286691648822,0.24560268,495.303212135596,1203.19920331714,11.07492,242.63,1.4795,7020.0,168.077,4.09526,0.0871822,1.84504997730255,0.0738693,,,1.546,0.273767,"14,15,16,17,18,19,20,21,22,23,24,25,26,41,47,48,49,50,51,52,53,54,56,57,58,59,60",2020-09-30,2023-05-19,2023-06-16 12:14:51,variable star; centroid shift likely caused by scattered light,2282,1,False,False,True -198211976,2283.01,,5,5,5,5,5,5,5,1.8,15.2,0.12,2,1,6,PC,FA,11.2076,0.007,,1,spoc-s14s26-b02,SPOC,16:33:19.99,63:31:28.18,-56.427,0.041,109.157,0.052,2458683.724447,0.001986634,0.401858632647585,1.3979164e-05,1.57797528478627,0.65017956,0.12092,0.025842,111.364801081043,23.801058,0.552507190397549,2.1341093,568.705828274799,1245.49408491582,7.217795,49.7627,0.06025,3621.0,157.0,4.7197,0.00855698,0.520283,0.0152485,,,0.517739,0.0201453,"14,15,16,17,18,19,20,21,22,23,24,25,26",2020-09-30,2023-03-02,2023-05-24 12:02:54,low SNR; possible offset towards another star to the north,2283,1,False,False,True -115446313,2284.01,,5,5,5,5,5,5,5,3.4,36.0,7.14,2,3,8,PC,FP,9.88372,0.006,,1,spoc,SPOC,16:49:53.25,47:19:01.14,-4.311,0.04,43.332,0.047,2458960.269157,0.0034881192,4.96892301792689,0.0004136968,2.03593658220915,0.43255493,0.41385,0.047523,381.096882654389,43.769382,2.56929194834147,1.0103621,510.564562422805,1212.36228200417,7.6870584,174.932,0.657,6109.0,128.225,4.33438,0.0796843,1.20835,0.0538945,,,1.15,0.15678,"24,25,26",2020-09-30,2020-09-30,2022-12-14 12:09:24,low SNR; crowded field; slight centroid offset; shallow transit,2284,1,False,False,True -329148988,2285.01,,2,5,5,2,4,4,4,0.3,33.0,4.29,1,3,2,PC,CP,11.3078,0.007,,1,spoc,SPOC,22:10:15.18,58:42:21.94,21.263,0.054,-20.874,0.044,2458747.183178,0.0031789336,27.269522148276,0.0007110888,2.46332150046041,0.78660166,1.842496,0.229216,1695.5626211167,211.09323,1.90420618280374,1.4864335,1.60495768027933,287.068569993004,8.543909,42.409,0.047,3546.0,157.0,4.77262,0.00660534,0.460014,0.0137236,,,0.457187,0.0203197,"16,17,24",2020-09-30,2020-09-29,2022-12-14 12:09:24,low SNR,2285,1,False,False,True -237201858,2286.01,TIC 237201858.01,1,4,1,1,3,4,4,0.2,13.8,13.56,0,3,1,PC,PC,9.85236,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,19:31:17.6,72:32:17.94,-15.379,0.04,12.25,0.043,2458811.504844,0.005684128,179.403171245581,0.0014115624,10.7569967732681,0.6734482,0.67182,0.04791,618.578090452979,44.126,3.74723542610634,0.67929876,8.43787028464517,434.688309799809,13.672215,233.507,1.0275,6863.0,212.202,4.27882,0.0938819,1.46480000019073,0.0625327,,,1.487,0.265319,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,52,54,55,56,57,58,59,60",2020-09-30,2023-05-19,2023-06-16 12:14:51,long period; bright star,2286,1,False,False,True -160077104,2287.01,,2,4,2,2,3,4,4,1.7,30.4,3.71,0,3,3,PC,PC,8.5709,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,14:51:00.19,85:53:43.41,-94.746,0.037,-37.743,0.034,2458688.985794,0.002611771,11.8120707353106,5.50912e-05,3.33241620579108,0.34118018,0.205253,0.018226,189.027556003009,16.786558,1.7481305104105,0.6981198,154.320034832438,898.928868507795,10.473131,94.9685,0.1886,6037.0,121.613,4.32817,0.0746383,1.20105004310608,0.0548794,,,1.12,0.137754,"14,19,20,25,26,40,47,52,53",2020-09-30,2023-03-09,2023-03-24 12:12:10,,2287,1,False,False,True -462615350,2288.01,,3,4,3,3,4,4,4,1.6,25.3,8.23,4,0,6,PC,PC,12.709,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,16:44:28.6,60:05:09.75,-0.849,0.033,-14.245,0.048,2458740.42419,0.0013444776,8.917221145137,1.7620927e-05,2.64267665266064,0.323494,2.333671,0.115746,2147.08169118261,106.59987,2.79317965101742,0.94765604,17.1075621414378,518.700636736631,17.781296,132.907,0.29,4066.0,130.915,4.67766,0.112229,0.605243027210236,0.0581935,,,0.636,0.0766838,"16,24,25,40,41,47,48,49,50,51,52,53,55,56,57,58,59,60",2020-09-30,2023-05-19,2023-06-16 12:14:51,,2288,1,False,False,True -82452140,2289.01,TIC 82452140.01,2,4,2,2,4,4,4,0.7,27.4,11.22,0,3,8,PC,PC,10.0011,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,17:00:23.41,39:43:48.9,4.347,0.057,74.99,0.049,2458964.279078,0.005848356,63.3954500376275,0.0007535017,5.12959544247304,0.5549604,0.9253,0.093504,851.869475901182,86.11641,3.35071787347598,0.39356142,10.0390504502232,453.986468775197,10.755769,139.616,0.6075,5717.0,124.297,4.43377,0.0752605,1.01496005058289,0.0507136,,,1.02,0.124116,"24,26,51,52",2020-09-30,2023-03-09,2023-03-24 12:12:10,low SNR,2289,1,False,False,True -321688498,2290.01,,1,4,4,1,4,4,4,7.4,8.8,1.86,8,4,6,PC,PC,11.1079,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,21:26:23.9,68:38:25.91,-7.312,0.043,40.732,0.043,2458764.986586,0.00088310306,0.386219721665312,9.100896e-06,0.912244479920314,0.32260457,0.475264,0.058766,437.638120122016,54.123974,1.19887820951043,2.0433514,873.622927798568,1386.59859372226,10.763916,58.0924,0.0729,3863.0,157.0,4.67991,0.0101502,0.56630402803421,0.0169066,,,0.559686,0.0203382,"17,18,24,25,57,58",2020-09-30,2023-05-19,2023-06-16 12:14:51,low SNR,2290,1,False,False,True -236934937,2291.01,,2,4,2,2,4,4,4,1.3,32.7,4.58,2,3,4,PC,PC,11.9959,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,20:17:11.77,65:52:17.61,13.15,0.046,129.642,0.052,2459620.204224,0.0053628,9.40587695355499,2.2470413e-05,1.55603223206225,0.23701163,1.549292,0.133803,1425.93301811034,123.229774,1.97759596735134,0.31728247,9.82268175097385,451.520286781413,11.860927,69.3787,0.10095,3869.0,157.0,4.75875,0.00699799,0.475701004266739,0.0139575,,,0.473535,0.0201534,"15,16,17,18,21,24,25,41,48,51,52,55,56,57,58,59",2020-09-30,2023-05-25,2023-06-16 12:14:51,centroid scatter between sectors,2291,1,False,False,True -236934268,2292.01,,2,4,2,2,4,4,4,2.0,25.4,6.51,3,4,6,PC,PC,10.8746,0.006,,1,qlp-s51-tois,SPOC,20:17:03.99,65:09:13.84,14.36,0.05,63.728,0.048,2459704.906266,0.0054941,7.0767314,6.53e-05,2.444,0.401,0.684229,0.001875,630.0,1.72699,2.4422,0.185241,106.205,894.0,11.0,204.888,1.107,5781.0,137.012,4.45679,0.0720534,1.0,0.05,,,1.037,0.125852,"15,16,17,18,21,24,25,41,48,51",2020-09-30,2022-09-02,2022-12-14 12:09:24,potential L1 planet; low SNR,2292,1,False,False,True -71347873,2293.01,,3,4,3,3,4,4,4,2.4,42.3,5.15,3,2,7,PC,PC,11.814,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,07:42:22.41,70:24:14.68,45.254,0.038,-120.785,0.058,2459600.314533,0.0033197,6.06833180313888,1.6921622e-05,1.9825707034461,0.36568373,1.893799,0.132289,1742.73323852595,121.83509,2.1199938717551,0.8297539,15.1794103574242,503.423488745576,13.326022,62.7576,0.12815,3668.0,157.0,4.73795,0.00814435,0.499375998973846,0.0148842,,,0.497439,0.0203219,"20,26,40,47,53,60",2020-09-30,2023-05-22,2023-06-16 12:14:51,,2293,1,False,False,True -284361752,2294.01,TIC 284361752.01,2,4,2,2,4,4,4,0.1,14.0,13.21,0,4,3,PC,PC,9.78288,0.006,,1,spoc-s14-s41-b0A-PC,SPOC,19:12:26.06,54:38:25.54,17.354,0.044,-14.284,0.042,2458691.694075,0.007433643,340.387731103326,0.010032329,9.23188771561827,0.5708615,0.780249,0.08364,718.377461905415,77.032394,3.68884240340953,0.4090202,2.3021147506743,314.160436341734,8.799598,191.396,0.7605,6424.0,132.667,4.33722,0.088365,1.27807998657227,0.0580779,,,1.295,0.203813,"14,15,16,26,40",2020-09-30,2022-03-28,2022-12-14 12:09:24,only two transits; period could be a few times shorter (at least ~70 days),2294,1,False,False,True -48018596,2295.01,TIC 48018596.01,3,4,4,3,4,4,4,2.2,36.1,20.72,7,7,5,PC,PC,9.00772,0.006,,1,spoc-s14s26-b02,SPOC,18:46:18.29,50:29:32.88,-61.841,0.049,26.834,0.045,2458713.451758,0.0015112759,100.114794376694,0.00079028984,1.83142016237806,0.41172084,1.282485,0.098457,1180.51482837546,90.67846,5.18008957092528,2.935489,11.1294718512289,465.841728357586,13.995037,126.279,0.395,5660.0,124.128,4.10485,0.0742244,1.47127,0.0724272,,,1.005,0.119737,"15,26",2020-09-30,2022-02-03,2022-12-14 12:09:24,period could be aliased; bright star,2295,1,False,False,True -165554103,2296.01,,2,4,2,2,4,4,4,0.1,9.1,4.05,0,2,5,PC,PC,10.4431,0.006,,1,spoc-s14-s41-b0A-PC,SPOC,17:47:43.58,55:52:22.13,-31.857,0.052,4.351,0.057,2458720.261652,0.014213237,139.263228550495,0.005152428,15.5650548549002,1.4262496,0.437932,0.059472,403.268803512683,54.774364,1.83881462953873,0.7987887,2.32862259281561,315.060912321246,7.160923,135.723,0.602,5373.01,107.376,4.49164,0.0779476,0.907169997692108,0.0439372,-0.211,0.026,0.931,0.11925,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41",2020-09-30,2022-03-28,2022-12-14 12:09:24,potential single transit candidate at TBJD~1860,2296,1,False,False,True -233500935,2297.01,,2,4,2,2,3,4,4,0.4,12.6,4.47,1,2,3,PC,PC,11.6702,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,16:42:57.57,76:26:58.51,-2.377,0.04,85.54,0.047,2459623.756729,0.0152318,22.048774974215,0.00017872998,3.80871670590311,0.6134766,0.587209,0.070915,540.692855381225,65.312805,1.95098849144739,0.9928261,15.3309639159056,504.675375619151,8.487281,168.911,0.7,4836.0,120.564,4.53282,0.0889542,0.794435024261475,0.0526231,,,0.785,0.0933255,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,48,49,50,51,52,53,54,55,56,58,59,60",2020-09-30,2023-05-19,2023-06-16 12:14:51,low SNR,2297,1,False,False,True -229608594,2298.01,TIC 229608594.01,3,5,5,3,3,4,4,,,8.75,0,5,5,PC,PC,11.1919,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,18:18:02.89,74:27:59.53,17.772,0.032,-67.083,0.042,2458960.029434,0.0047545847,0.0,0.0,7.64124694186521,0.6648593,2.162905,0.187947,1990.12639143764,173.0905,2.89511646304676,0.82623166,0.477998386542859,212.06859409166,11.159412,84.1738,0.1599,4239.0,119.935,4.61861,0.104338,0.659937024116516,0.0590402,,,0.66,0.0756601,"14,15,16,17,18,19,20,21,22,23,24,25,26,41,47,48,50,51,52,53,54,55",2020-09-30,2023-05-25,2023-05-25 00:00:00,background contamination in s24; possible IS; still a single as of s60,2298,1,False,True,True -362220495,2299.01,,5,5,5,5,5,5,5,0.0,46.4,14.09,4,2,3,PC,FA,9.863,0.043,,1,spoc-s14-s41-b0A-PC,SPOC,19:04:54.71,79:45:21.41,-14.003,0.096,194.934,0.092,2458798.440875,0.0032675269,165.021276147022,0.004871615,3.52636638600389,0.47132295,2.972123,0.397091,2733.68283419847,365.66788,3.69306385427556,0.9588157,1.85582586466923,297.683014793486,7.9148445,,0.288849,5780.0,,4.56973,0.0176199,0.699972987174988,0.0265559,,,0.66347,0.0234386,"14,17,18,20,21,24,25,26,40,41",2020-09-30,2022-03-28,2023-06-30 12:02:50,signal at TJD ~ 1798 is a possible single transit; TIC 1718317037 overlaps TIC 362220495; both are flagged as cool dwarfs and are individual sources; TIC 362222686 is a few asecs away and likely a double star of similar brightness; centroid offset towards not a particular star; bad transit shape; only two transits,2299,1,False,False,True -280031353,2300.01,,1,4,4,1,4,4,4,3.9,38.0,10.92,9,3,3,PC,PC,11.8231,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,19:49:39.88,68:53:00.07,17.488,0.038,2.292,0.046,2459445.193065,0.0042807,4.85666563854993,1.303103e-05,2.58588103804501,0.15644746,1.264361,0.07622,1163.84160881007,70.19892,3.29873281900707,0.21690163,179.278812507085,933.258579883472,16.596962,221.705,1.0125,5607.0,158.447,4.63178,0.076559,0.796891987323761,0.0411759,,,0.992,0.12144,"15,16,24,25,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2020-09-30,2023-05-17,2023-07-15 00:00:00,potential multi; TOI 2300.01,2300,1,True,False,True -280031353,2300.02,,3,4,4,3,4,4,4,4.4,47.3,27.73,9,3,3,PC,PC,11.8231,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,19:49:39.88,68:53:00.07,17.488,0.038,2.292,0.046,2459646.961969,0.0025227405,15.4432661360726,2.4722145e-05,3.84930750575022,0.086768724,5.062651,0.09558,4652.01955599392,88.02826,5.70639381994924,0.32556143,38.3407878410459,634.651057058083,46.882263,221.705,1.0125,5607.0,158.447,4.63178,0.076559,0.796891987323761,0.0411759,,,0.992,0.12144,"15,16,24,25,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2020-09-30,2023-05-17,2023-07-15 00:00:00,TOI 2300.02; potential multi,2300,2,True,False,True -280031353,2300.03,TIC 280031353.03,3,5,5,3,4,4,4,,,45.86,9,3,3,PC,PC,11.8231,0.006,,3,spoc-s14-s55-b0A-PC,SPOC,19:49:39.88,68:53:00.07,17.488,0.038,2.292,0.046,2459398.739519,0.0067531536,0.0,0.0,17.0708834620078,0.4397566,8.949907,0.519514,8209.2875403782,478.37537,7.67126453342464,0.47997445,0.245228006867116,179.478431982404,18.970545,221.705,1.0125,5607.0,158.447,4.63178,0.076559,0.796891987323761,0.0411759,,,0.992,0.12144,"15,16,24,25,40,41,47,48,49,50,51,52,53,54,55",2023-03-02,2023-03-02,2023-03-03 12:11:24,single transit; potential multi,2300,3,True,True,True -283829553,2301.01,,2,4,2,2,4,4,4,3.0,34.8,5.08,1,18,6,PC,PC,8.36872,0.006,,1,qlp-s51-tois,SPOC,15:14:16.47,51:28:07.85,32.01,0.038,23.683,0.046,2459712.549355,0.0084589,6.0541271,8.26e-05,3.975,0.687,0.184591,0.000518,170.0,0.477243,2.09886,0.153865,513.314,1326.0,12.0,120.221,0.3445,6187.0,123.849,4.09624,0.0843994,1.61,0.07,,,1.184,0.177376,"16,23,24,49,50,51",2020-09-30,2022-09-02,2022-12-14 12:09:24,low SNR; possible SV,2301,1,False,False,True -144000801,2302.01,,3,5,5,3,3,4,4,103.8,262.4,70.27,4,2,1,PC,APC,11.0075,0.006,,1,spoc,SPOC,22:25:07,-52:32:12.02,48.908,0.059,-11.493,0.076,2459063.140785,0.0010600383,1.31038317126745,0.00011078792,1.62402164794649,0.08627755,4.247318,0.170998,3904.28247407562,157.48242,9.86032220240619,9.513131,1134.27797290965,1480.12919212568,21.139233,171.909,1.2375,5228.0,123.146,4.45189,0.0823391,0.928507,0.0527638,,,0.89,0.113813,28,2020-10-01,2020-09-30,2022-12-14 12:09:24,V-shaped; there may be some phase offset in odd/even transits,2302,1,False,False,True -197959526,2303.01,,5,5,5,5,5,5,5,55.8,123.2,102.21,6,2,1,PC,FP,11.8199,0.006,,1,spoc,SPOC,23:13:11.21,-53:49:58.13,18.654,0.042,-1.63,0.046,2459061.885478,0.0017048288,0.719629069762069,0.00010244902,1.47474603479654,0.26616126,5.410813,0.478436,4971.14565946034,440.55856,12.2917418596661,2.532109,14474.6698965535,2797.5117325941,8.877765,643.988,15.055,6454.0,6516.7,4.3,2.0,1.69458,0.083216,,,1.26,0.191068,28,2020-10-01,2020-09-30,2022-12-14 12:09:24,likely in the NE star; also observed in S01,2303,1,False,False,True -70420766,2304.01,,2,4,2,2,3,4,4,4.2,41.8,14.24,2,3,1,PC,PC,10.2356,0.006,,1,spoc,SPOC,22:37:44.7,-30:36:29.81,49.44,0.076,3.304,0.066,2459063.305178,0.0033257788,9.40903936464439,0.002421668,2.61410969712354,0.786447,1.016702,0.122237,935.979025273547,112.57842,3.85529389008831,3.094758,237.546831603771,1001.28350129287,7.526878,218.091,1.722,6223.0,125.865,4.33525,0.0830904,1.2331,0.0558367,,,1.2,0.167179,28,2020-10-01,2020-10-01,2022-12-14 12:09:24,Low SNR (8.5); period can be double,2304,1,False,False,True -232079930,2305.01,,3,5,5,3,3,4,4,90.4,72.5,317.0,2,0,5,PC,APC,12.8483,0.006,,1,spoc,SPOC,01:58:25.93,-66:20:20.96,19.051,0.043,10.014,0.036,2459062.290253,0.0016717017,0.918902041812105,0.00010130541,1.7819549925471,0.1213853,7.319515,0.446291,6718.84929087396,410.9644,15.210919288308,15.423432,3475.71129090409,1958.30653525999,11.786521,568.299,7.459,5382.0,5385.2,4.4,2.0,1.1659,0.0806182,0.33329,0.0959549,0.99,0.123003,"28,29",2020-10-01,2020-11-06,2022-12-14 12:09:24,v-shaped; grazing incidence; likely EB; also observed in S01,2305,1,False,False,True -147284470,2306.01,,3,4,4,3,1,4,4,23.4,64.9,89.61,3,0,0,PC,PC,13.3456,0.006,,1,spoc,SPOC,21:39:12.19,-44:22:30.98,7.895,0.032,4.246,0.034,2459064.313947,0.0014146289,2.99066068049258,0.00037895434,1.66546829556929,0.17455308,11.433821,0.627087,10475.6817424643,577.40155,11.3762743573385,1.3017265,679.853676351491,1302.33769845609,15.514954,694.32,10.798,5535.6,5576.3,4.4,,1.10305,,,,1.01,,28,2020-10-01,2020-09-30,2022-12-14 12:09:24,2 stars in pixel; also observed in S01,2306,1,False,False,True -270219048,2307.01,,3,4,4,3,3,4,4,51.1,113.7,130.88,4,2,5,PC,PC,12.2294,0.008,,1,spoc,SPOC,22:00:32.63,-29:08:54.92,21.89,0.062,-19.943,0.056,2459062.61355,0.0011967125,2.68164602189812,0.0002495949,1.76881098997771,0.077928215,9.360724,0.742751,8584.48609910038,683.86456,14.2162157657743,1.5151138,1028.27869446376,1444.26690274187,21.313967,470.156,9.488,5465.0,5562.2,4.4,2.0,1.285,0.0712462,,,0.99,0.128085,28,2020-10-01,2020-09-30,2022-12-14 12:09:24,V-shaped; slight odd-even; 2 stars in pixel; centroid closer to nearest faint neighbor; also observed in S01,2307,1,False,False,True -234489976,2308.01,,3,4,3,3,3,4,4,32.3,93.7,123.87,2,0,3,PC,PC,12.2397,0.006,,1,spoc,SPOC,00:35:55.32,-64:43:20.79,5.728,0.062,-3.059,0.052,2459063.021339,0.0011940905,3.86868951751453,0.00017084155,2.29938520172397,0.07095347,8.743129,0.2969,8020.38330299583,273.4177,13.7630706847724,0.75138,957.935237218278,1418.90652801678,33.446484,613.155,14.5875,6373.5,6567.6,4.2,,1.33378005027771,0.0649246,,,1.27,0.195792,"28,29",2020-10-01,2021-10-04,2022-12-14 12:09:24,Slight odd-even; Gaia DR2 RV error ~4.3 km/s; also observed in S01,2308,1,False,False,True -328012209,2309.01,,3,4,3,3,3,4,4,3.4,33.9,19.33,5,2,1,PC,PC,10.0596,0.006,,1,spoc,SPOC,00:11:46.76,-68:34:12.43,47.647,0.053,3.712,0.041,2459044.316071,0.0065535717,20.2771080534488,0.005089613,6.24179463283435,0.486524,0.929436,0.072075,855.676025647845,66.38175,4.61491048321537,0.35110986,108.166065068265,822.512500976196,11.992169,223.516,1.297,6276.1,117.07,4.25063,0.0856313,1.37617003917694,0.0615829,-0.24,0.1,1.23,0.184297,"27,28",2020-10-01,2021-01-11,2022-12-14 12:09:24,v-shaped; centroid offset towards not a particularly bright star; artifact TIC 328012208 close by; period updated to ~20.3 days with spoc multisector,2309,1,False,False,True -38467100,2310.01,,3,4,4,3,3,4,4,,,122.98,5,0,3,PC,PC,12.9565,0.006,,1,qlp-s38-tois,SPOC,04:06:05.76,-60:28:02.11,,,,,2459357.895903,0.0004166,2.9432073,1.7e-06,2.501,0.051,13.72321,0.000878,12560.0,0.808216,13.6531,1.9271,328.976,1186.0,116.0,,,5266.7,5383.5,,,1.18,0.17,,,,,"1,2,3,4,5,8,11,28,29,30,31,32,35,38",2020-10-01,2022-03-21,2022-12-14 12:09:24,good transit shape; 0.6874 arcsec companion,2310,1,False,False,True -25139786,2311.01,,3,5,5,3,3,4,4,50.5,139.3,60.32,4,0,1,PC,APC,12.0892,0.006,,1,spoc,SPOC,21:45:05.46,-20:01:57.05,11.708,1.008,1.555,1.006,2459062.770201,0.0013434491,1.59337716445375,0.00017585968,1.77325692629219,0.086427,8.547928,0.436574,7842.02214410692,402.01895,9.01254195962187,0.3485221,785.595432077852,1350.26648125061,15.2446,264.874,,5289.4,5240.2,4.5,2.0,0.885125,,,,,,28,2020-10-01,2020-09-30,2022-12-14 12:09:24,Possible secondary consistent with planetary origin; possibly EB; also observed in S01,2311,1,False,False,True -147425389,2312.01,,3,4,4,3,3,4,4,27.2,83.0,83.1,2,0,1,PC,PC,12.526,0.006,,1,spoc,SPOC,21:50:28.24,-46:17:42.92,15.056,3.328,-1.793,3.329,2459063.374252,0.0018595605,3.1856866967773,0.0005054675,3.21809895488467,0.13586545,8.593401,0.317108,7883.57507631501,292.02438,9.6996582825779,0.30229947,556.440344247566,1238.72357269781,22.754728,490.314,,5590.5,5635.3,4.4,,1.0,,,,,,28,2020-10-01,2020-09-30,2022-12-14 12:09:24,no stellar radius; Teff ~5600 K; plx ~ 1.66 mas; also observed in S01,2312,1,False,False,True -325468685,2313.01,,3,4,4,3,1,4,4,67.1,182.3,76.78,4,0,0,PC,PC,11.449,0.037,,1,spoc,SPOC,23:39:16.05,-78:44:47.5,,,,,2459063.003422,0.0014532594,1.89040288076829,0.00021992179,1.43176648654434,0.12203076,4.350947,0.280468,3999.35156063905,258.2876,10.3882297626949,14.857638,1115.87838690922,1474.08988472955,13.028671,330.949,,5816.0,190.0,4.3,2.0,1.0,,,,,,28,2020-10-01,2020-09-30,2022-12-14 12:09:24,possibly synchronized; also observed in S01,2313,1,False,False,True -355446093,2314.01,TIC 355446093.01,3,4,4,3,3,4,4,11.3,47.7,97.04,2,0,1,PC,PC,11.7493,0.006,,1,spoc,SPOC,23:23:28.74,-52:10:33.39,-13.688,0.034,-3.248,0.038,2459063.240033,0.0046124216,15.9375459619767,0.0065294565,4.53953353916856,0.30473816,4.539486,0.430572,4172.29248271361,396.49298,11.9220549242966,0.99989533,180.2682649194,934.543603365614,14.881924,540.268,9.0505,6093.1,6117.3,4.1,0.5,1.55033,0.0736382,,,1.16,0.165394,28,2020-10-01,2020-09-30,2022-12-14 12:09:24,v-shaped; also observed in S01,2314,1,False,False,True -302333151,2315.01,TIC 302333151.01,3,5,5,3,3,4,4,61.6,175.4,69.35,2,1,3,PC,APC,11.0675,0.006,,1,spoc,SPOC,21:22:05.78,-27:33:15.87,-7.044,0.09,-8.149,0.058,2459062.370165,0.0009674511,1.44082278362742,0.00010705925,1.74570363420376,0.065749876,4.864729,0.258612,4470.55808285384,238.16164,9.78355626057988,1.5113244,2629.04672306142,1826.2882529973,24.189308,290.436,5.3815,5941.2,5990.0,4.3,0.6,1.16489,0.0570854,,,1.22,0.172381,28,2020-10-01,2020-09-28,2022-12-14 12:09:24,v-shaped; also observed in S01,2315,1,False,False,True -61980227,2316.01,,3,5,5,3,3,4,4,83.8,127.6,317.0,7,2,1,PC,APC,12.0516,0.011,,1,spoc,SPOC,22:22:08.86,-30:45:50.14,7.437,0.07,-10.931,0.078,2459064.594292,0.0011917405,3.09589846346997,0.00029128641,1.85846839217872,0.10172151,11.301404,0.534653,10354.9916952077,492.3127,19.2443952472832,15.441661,1246.35284311013,1515.40948695106,21.442627,539.486,13.1975,6764.0,6750.8,4.3,2.0,1.25844,0.0616131,,,1.37,0.227667,28,2020-10-01,2020-09-30,2022-12-14 12:09:24,possible synchronization; slight odd-even; large; also observed in S01,2316,1,False,False,True -274599700,2317.01,TIC 274599700.01,5,5,5,5,5,5,5,,,92.98,0,0,0,PC,FP,11.8831,0.007,,1,spoc,CTOI,17:01:18.8,51:31:45.83,-27.478,0.037,19.344,0.037,2459002.081234,0.0094175,0.0,0.0,8.44945405412093,0.38778463,6.542636,0.37408,6007.87030211941,344.4813,11.6258650389821,0.91485745,49.5046850007782,676.521066633071,14.481249,448.143,3.98,5635.75,143.237,4.12397,0.0865629,1.43565,0.0839045,0.164,0.09,1.0,0.121716,"24,25,26",2020-10-05,2021-08-12,2022-12-14 12:09:24,CTOI from Planet Hunters,2317,1,False,True,True -88840705,2318.01,TIC 88840705.01,3,5,5,3,4,4,4,,,34.67,0,3,7,PC,PC,8.6512,0.008,,1,spoc,CTOI,17:30:21.44,40:22:10.07,17.54,2.0,-55.45,2.0,2459026.647613,0.0025008,0.0,0.0,4.68330421945285,0.17761438,2.989027,0.164092,2749.20993667792,151.12294,6.50711923192401,2.000792,9.19090145964347,444.07801905495,24.665766,45.0103,,4968.0,,4.438,,0.844548,,,,,,"25,26",2020-10-05,2021-08-12,2022-12-14 12:09:24,CTOI from Planet Hunters,2318,1,False,True,True -349488688,2319.01,TIC 349488688.01,1,4,1,1,4,4,4,,,16.36,3,3,2,CP,CP,8.40302,0.006,,1,spoc-s14-s55-b0A-CP,CTOI,16:55:08.37,20:29:29.49,14.755,0.032,44.689,0.037,2459002.765265,0.0030180693,0.0,0.0,6.11200581430503,0.38087797,0.929336,0.068216,855.583603591493,62.826878,4.18440825595438,0.8714301,0.969447873336804,253.075943794498,20.599634,107.898,0.317,6329.0,134.955,4.24509,0.0925756,1.3961900472641,0.0640704,,,1.25,0.195795,"25,52",2020-10-05,2023-03-23,2023-03-24 12:12:10,CTOI from Planet Hunters; one transit of HD 152843 c,2319,1,False,True,True -207501148,2320.01,TIC 207501148.01,5,5,5,5,5,5,5,,,317.0,0,11,4,PC,FP,9.85317,0.006,,1,spoc,CTOI,16:30:37.71,56:23:59.53,-51.626,0.087,125.209,0.106,2459007.727293,0.0028416,0.0,0.0,4.48753352554742,0.19324788,4.472905,0.236596,4111.22348264073,217.88962,18.0,,82.7545000512927,769.250264753512,31.371407,167.542,1.471,5879.0,120.447,4.28122,0.0741616,1.23623,0.0569347,,,1.065,0.135172,25,2020-10-05,2021-08-12,2022-12-14 12:09:24,CTOI from Planet Hunters; Rp is at least 2x9.4Re; single transit,2320,1,False,True,True -138126035,2321.01,TIC 138126035.01,2,5,5,2,4,4,4,0.0,11.7,8.88,0,5,8,PC,PC,9.84325,0.006,,1,qlp-s50-tois,CTOI,13:06:56.74,16:32:57.62,-3.822,0.103,-25.162,0.069,2458954.324139,9.8e-06,716.3497402,1e-06,3.612,,0.941742,0.000784,867.0,0.721749,2.90826,0.157279,0.0174179,101.0,9.0,120.535,0.6485,5645.84,105.274,4.46148,0.0728202,0.97,0.04,-0.103,0.017,1.002,0.121789,"23,50",2020-10-05,2022-11-15,2022-12-14 12:09:24,CTOI from Planet Hunters; duo-transit; period is likely shorter than max period of ~716 days,2321,1,False,False,True -300812741,2322.01,,2,4,4,2,3,4,4,0.7,25.9,3.32,1,1,1,PC,PC,10.0534,0.006,,1,qlp-s63-ffi,QLP,07:47:53.54,-71:00:07.08,7.873,0.038,-53.309,0.038,2460028.468665,0.0031338,20.2255915,5.98e-05,2.091,0.685,0.60601,0.040416,558.0,37.2235,1.64327,0.149766,4.46527,404.0,16.0,59.861,0.07945,4465.0,125.1,4.6,0.1,0.7,0.06,,,0.7,0.0826541,"1,2,3,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,35,36,37,38,39,61,62,63",2020-10-07,2023-05-11,2023-06-16 12:14:51,potential multi; variable host,2322,1,True,False,True -300812741,2322.02,,1,4,1,1,3,4,4,0.6,3.5,1.24,1,1,1,PC,PC,10.0534,0.006,,2,qlp-s61-ffi,QLP,07:47:53.54,-71:00:07.08,7.873,0.038,-53.309,0.038,2459979.534586,0.0139383,11.3071761,0.0001282,2.718,0.739,0.304049,0.025051,280.0,23.0727,1.07446,0.108094,20.0544,589.0,11.0,59.861,0.07945,4465.0,125.1,4.6,0.1,0.7,0.06,,,0.7,0.0826541,"1,2,3,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,35,36,37,38,39,61",2021-08-12,2023-04-04,2023-04-07 12:13:06,possible multi; odd transits have bad shape; variable host,2322,2,True,False,True -293527670,2323.01,,5,5,5,5,5,5,5,10.9,51.4,13.86,1,1,1,PC,FP,10.3338,0.006,,1,qlp,QLP,23:28:46.28,-76:38:12.83,37.027,0.053,-37.079,0.037,2459086.60982,0.00172,0.98656,0.0,0.724,0.212,0.42352,0.005725,390.0,5.27306,3.78687,0.461362,574.294,1363.0,12.0,238.68,1.328,5522.0,132.7,3.99,0.08,1.64,0.09,,,0.97,0.121862,"1,13,27,28",2020-10-07,2020-10-07,2022-12-14 12:09:24,4-sigma odd-even; but perhaps b/c is low SNR,2323,1,False,False,False -69819610,2324.01,,1,4,4,1,3,4,4,7.7,59.9,6.79,3,5,3,PC,PC,9.14425,0.006,,1,qlp,QLP,22:31:32.9,-23:09:54.18,-34.51,0.074,-36.199,0.065,2459084.80007,0.00443,1.0371,0.00034,2.856,0.253,0.314909,0.000568,290.0,0.522698,2.49221,0.164519,9578.57,2756.0,16.0,165.158,1.09,6413.0,134.4,4.2,0.09,1.5,0.07,,,1.29,0.217643,28,2020-10-07,2020-10-07,2022-12-14 12:09:24,possible odd even; noisy,2324,1,False,False,True -152800085,2325.01,,3,5,5,3,3,4,4,36.4,137.7,59.59,1,0,1,PC,APC,9.5103,0.006,,1,qlp,QLP,22:54:10.71,-36:17:16,-7.675,0.053,-17.953,0.052,2459083.39525,0.00084,4.26991,2e-05,1.509,0.271,2.434777,0.015952,2240.0,14.6924,8.95578,0.777438,667.336,1415.0,12.0,223.852,1.705,6580.0,127.7,4.16,0.09,1.62,0.07,,,1.37,0.234214,"2,28",2020-10-07,2020-10-07,2022-12-14 12:09:24,two stars in pixel; possible slight secondary at 0.5 phase; artifact TIC 152800082 close by,2325,1,False,False,False -175456679,2326.01,,3,4,3,3,3,4,4,0.5,110.7,4.56,1,0,1,PC,PC,9.456,0.019,,1,qlp,QLP,23:21:57.92,-40:10:27.67,1.6,2.0,-9.6,1.9,2459059.03268,0.10366,42.91305,0.0065,5.733,0.235,3.501711,0.001111,3220.0,1.02307,,,21.0496,596.0,21.0,154.124,,,,,,,,,,,,"2,28",2020-10-07,2020-10-07,2022-12-14 12:09:24,Gaia DR2 RV error 3.5 km/s; phantom join with TIC 2055714063,2326,1,False,False,True -177308364,2327.01,,1,4,1,1,3,4,4,0.4,23.5,6.72,5,6,1,PC,PC,9.4088,0.006,,1,qlp-s63-ffi,QLP,06:53:41.32,-73:04:32.57,6.476,0.034,-46.687,0.047,2459969.545973,0.0100087,82.7897087,0.0007355,5.283,2.048,0.923268,0.0709,850.0,65.2994,2.48488,0.188004,5.79497,432.0,20.0,100.351,0.194,6115.0,194.0,4.5616,0.270556,0.96,0.05,,,1.04,0.136149,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63",2020-10-07,2023-04-27,2023-04-28 12:12:06,Variable star; near neighbor TIC 177308367,2327,1,False,False,True -394287035,2328.01,TIC 394287035.01,3,4,4,3,1,4,4,13.3,87.1,73.64,5,2,0,PC,PC,11.584,0.006,,1,qlp-s39-tois,SPOC,02:06:45.78,-81:14:50.55,31.804,0.036,-1.677,0.035,2459356.607647,0.0008086,17.1019622,2.34e-05,3.357,0.097,12.481433,0.002086,11430.0,1.92099,10.1067,0.554732,20.0982,589.0,75.0,231.782,1.1035,5302.3,5297.2,4.4,0.4,0.93,0.05,,,0.94,0.12071,"1,13,27,28,39",2020-10-07,2022-03-22,2023-06-02 00:00:00,,2328,1,False,False,True -238920875,2329.01,,3,4,3,3,3,3,3,21.2,69.7,81.49,5,9,1,PC,PC,11.7944,0.006,,1,qlp-s38-tois,CTOI,06:17:06.89,-52:20:18.61,18.522,0.034,-19.082,0.037,2459358.54376,0.0007749,6.5346715,7.8e-06,3.304,0.093,6.938262,0.000639,6370.0,0.588087,10.7773,0.697672,121.853,925.0,26.0,333.701,2.165,5424.0,282.9,3.35,0.15,1.33,0.08,-0.05,0.09,0.89,0.111037,"1,5,6,7,8,11,28,32,34,35,38",2020-10-23,2022-09-20,2022-12-14 12:09:24,ephemeris match to nearby neighbor 238920875; this is the brighter star; CTOI from Marco Montalto,2329,1,False,False,False -180991313,2330.01,TIC 180991313.01,5,5,5,5,5,5,5,44.5,119.0,94.0,0,0,0,KP,KP,11.8699,0.006,,1,qlp,CTOI,11:31:26.07,-41:41:22.26,-13.442,0.05,2.269,0.04,2459329.30801,0.0004237,2.2088214,2.2e-06,2.544,0.089,8.469116,0.000839,7770.0,0.772966,11.6656,0.536794,1052.08,1586.0,99.0,416.784,5.6845,5960.4,104.5,4.27,0.08,1.26,0.06,0.0136379,0.0655032,1.09,0.132846,"10,36,37",2020-10-23,2021-11-10,2022-12-14 12:09:24,brown dwarf; WASP 128b; 37 Mjup; CTOI from Marco Montalto,2330,1,False,False,True -168751223,2331.01,TIC 168751223.01,3,4,3,3,1,4,4,17.2,84.3,44.37,2,1,0,PC,PC,13.3666,0.007,,1,qlp,CTOI,04:10:41.17,-32:59:32.78,36.867,0.032,19.914,0.04,2459167.334911,0.0027532,4.7150942,2.39e-05,2.436,0.791,8.129955,3.390015,7460.0,3117.45,7.48939,3.52456,118.46,919.0,14.0,163.356,0.585,3798.0,157.0,4.67,0.01,0.57,0.02,,,0.565187,0.0205819,"4,5,31",2020-10-23,2021-01-29,2022-12-14 12:09:24,2 stars in pixel; possible odd-even; CTOI from Marco Montalto,2331,1,False,False,False -286000547,2332.01,TIC 286000547.01,3,4,4,3,4,4,4,25.5,98.0,97.21,6,3,7,PC,PC,12.2015,0.007,,1,qlp,QLP,09:18:57.97,-15:18:29.09,-10.263,0.076,-5.957,0.072,2459273.75932,0.0009132,7.4972297,1.23e-05,3.589,0.284,15.836394,0.007635,14480.0,7.0321,11.9137,0.652672,143.814,964.0,64.0,360.478,5.8805,5596.2,116.1,4.43,0.08,1.0,0.05,0.128624,0.0666659,0.99,0.124411,"8,35",2020-10-23,2020-10-23,2023-03-07 00:00:00,,2332,1,False,False,False -358579111,2333.01,TIC 358579111.01,3,4,3,3,3,4,4,4.3,20.1,57.98,7,0,1,PC,PC,12.3462,0.006,,1,qlp,CTOI,03:36:53.13,-60:03:41.31,-0.412,0.041,-4.213,0.047,2459169.298095,0.0044703,14.2197641,0.0001137,6.416,0.8,2.598015,0.002462,2390.0,2.26734,8.78678,0.541437,215.552,1067.0,16.0,817.874,16.175,6115.0,128.6,3.97,0.09,1.83,0.09,,,1.15,0.15771,"2,3,4,29,30,31",2020-10-23,2021-01-29,2022-12-14 12:09:24,Depth-aperture but no bright stars nearby; CTOI from Marco Montalto,2333,1,False,False,False -200743403,2334.01,TIC 200743403.01,3,4,3,3,3,4,4,12.6,39.5,83.99,1,0,1,PC,PC,12.1385,0.006,,1,qlp,CTOI,03:16:37.01,-48:06:28.5,23.591,0.077,-11.286,0.094,2459169.12445,0.0016092,7.9980831,2.63e-05,3.047,0.302,4.308051,0.003192,3960.0,2.9403,10.9403,0.717797,97.3629,875.0,28.0,593.163,17.5995,5556.0,131.5,3.97,0.08,1.7,0.1,,,0.98,0.12007,"3,4,30,31",2020-10-23,2021-02-01,2022-12-14 12:09:24,CTOI from Marco Montalto; some odd-even but only one even transit; slight depth aperture correlation,2334,1,False,False,False -160003961,2335.01,TIC 160003961.01,3,5,5,3,3,4,4,15.2,63.5,31.44,2,0,1,PC,APC,12.1323,0.006,,1,qlp,CTOI,03:23:18.39,-40:27:12.66,-4.119,0.032,9.349,0.043,2459169.502915,0.0009002,1.4492052,3.3e-06,1.104,0.152,1.303666,0.003153,1200.0,2.90396,6.15666,0.36231,551.777,1350.0,22.0,439.747,4.048,6004.9,117.5,4.39,0.08,1.12,0.05,-0.66,0.12,1.11,0.143974,"3,4,30,31",2020-10-23,2021-01-28,2022-12-14 12:09:24,very slight depth aperture correlation; CTOI from Marco Montalto,2335,1,False,False,False -88902249,2336.01,TIC 88902249.01,3,4,4,3,3,4,4,25.6,85.5,84.52,2,0,5,PC,PC,10.1757,0.006,,1,qlp,QLP,15:20:55.3,-33:41:32.86,6.387,0.088,-19.009,0.078,2459359.048483,0.0008188,7.7119328,1.84e-05,3.994,0.102,3.730477,0.000618,3430.0,0.56961,10.9933,0.549325,305.979,1165.0,55.0,297.716,5.75,6458.0,131.6,4.03,0.09,1.83,0.09,,,1.31,0.209553,"11,38",2020-10-23,2021-08-12,2022-12-14 12:09:24,period is 7.7 d,2336,1,False,False,False -230001847,2337.01,TIC 230001847.01,3,5,5,3,4,4,4,21.0,34.1,92.16,14,10,5,CP,CP,11.2347,0.007,,1,spoc-s14-s60-b0A-CP,CTOI,19:22:28.77,60:51:14.05,-10.335,0.039,9.837,0.042,2459769.981102,0.0056382823,2.9942630371248,1.4643601e-05,6.91723089826936,0.13520494,1.217412,0.025757,1120.64923566406,23.722471,11.5655979377903,0.41685495,619.580903733727,1272.46034108282,31.459772,536.046,5.9135,4784.0,122.0,,,3.22859001159668,,,,,,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,54,55,56,57,58,60",2020-10-23,2023-06-13,2023-06-16 12:14:51,CP TOI-2337 b (Grunblatt+2022); CTOI from Samuel Grunblatt,2337,1,False,False,True -24358417,2338.01,TIC 24358417.01,3,5,5,3,4,4,4,12.4,71.4,101.54,6,0,1,PC,CP,11.7024,0.006,,1,qlp,CTOI,05:25:22.7,-34:40:05.7,38.0,0.032,18.022,0.036,2459183.68068,0.0010874,22.6539607,3.98e-05,3.468,0.209,12.591267,0.001554,11530.0,1.43086,12.2765,0.676669,13.8485,537.0,55.0,313.996,1.968,5523.0,131.7,4.33,0.08,1.12,0.06,,,0.97,0.128089,"5,6,32",2020-10-23,2021-02-02,2022-12-21 12:03:00,Slight depth aperture correlation; CTOI from Marco Montalto,2338,1,False,False,True -279514271,2339.01,TIC 279514271.01,3,4,4,3,3,4,4,5.3,17.8,58.83,4,0,1,PC,PC,11.9507,0.006,,1,qlp,CTOI,07:03:02.89,-55:22:05.82,-1.137,0.04,9.054,0.043,2459377.97784,0.0036414,9.7728388,5.16e-05,6.74,0.747,1.44499,0.000817,1330.0,0.752269,8.8917,0.521791,401.97,1247.0,12.0,753.745,11.069,5636.8,117.5,3.66,0.08,2.44,0.13,0.0573276,0.064299,1.0,0.126473,"2,3,6,7,8,9,12,13,29,30,32,33,34,35,36",2020-10-23,2021-11-10,2022-12-14 12:09:24,CTOI from Marco Montalto,2339,1,False,False,False -29959761,2340.01,TIC 29959761.01,5,5,5,5,5,5,5,32.9,125.9,30.6,5,0,1,PC,FP,11.8012,0.006,,1,qlp,CTOI,02:49:02.75,-16:33:27.56,59.809,0.087,84.904,0.134,2459169.749893,0.0005879,1.6471574,2.2e-06,1.033,0.432,4.22085,0.182418,3880.0,167.999,6.06894,1.10307,362.237,1215.0,40.0,178.999,1.6895,5027.0,122.4,4.64,0.09,0.73,0.05,,,0.836,0.102026,"4,31",2020-10-23,2021-01-28,2022-12-14 12:09:24,v-shaped; CTOI from Marco Montalto,2340,1,False,False,False -100267480,2341.01,TIC 100267480.01,3,4,4,3,3,4,4,106.0,212.1,55.17,7,0,3,PC,PC,12.722,0.008,,1,qlp,CTOI,20:27:22.44,-53:13:14.35,45.658,0.051,-10.599,0.041,2458681.75145,0.00097,0.87741,6e-05,0.472,0.055,13.162586,0.035312,12050.0,32.5226,8.59148,0.463846,26.3008,630.0,23.0,121.433,0.57,3495.0,157.0,4.64,0.01,0.62,0.02,,,0.601869,0.0202894,13,2020-10-23,2020-10-19,2023-05-05 00:00:00,v-shaped; potentially grazing incident; CTOI from Marco Montalto,2341,1,False,False,False -100589632,2342.01,TIC 100589632.01,5,5,5,5,5,5,5,9.2,64.8,14.37,2,1,1,PC,FP,11.1581,0.006,,1,qlp,CTOI,05:45:50.13,-32:56:51.51,-29.22,0.032,31.796,0.042,2459221.101551,0.0016852,3.9471567,1.14e-05,1.699,0.203,2.043105,0.002836,1880.0,2.61218,3.86968,0.298503,71.367,809.0,27.0,139.546,0.4215,4794.0,124.5,4.47,0.09,0.84,0.06,,,0.77,0.095959,"5,6,32,33",2020-10-23,2021-02-19,2022-12-14 12:09:24,Crowded field; refer to 100589633/TOI 2726 as on-target; CTOI from Marco Montalto,2342,1,False,False,False -166834768,2343.01,TIC 166834768.01,3,4,3,3,3,4,4,10.3,42.8,36.82,0,0,1,PC,PC,12.2539,0.008,,1,qlp,CTOI,03:54:27.88,-31:20:41.62,4.946,0.035,-1.303,0.043,2459169.676986,0.0020222,3.2553185,1.44e-05,2.061,0.269,2.086617,0.003891,1920.0,3.58376,6.72917,0.409896,362.749,1215.0,14.0,511.208,6.1775,5927.0,121.5,4.28,0.08,1.25,0.06,,,1.08,0.136354,"4,31",2020-10-23,2021-02-01,2022-12-14 12:09:24,Small depth aperture correlation; CTOI from Marco Montalto,2343,1,False,False,False -311179742,2344.01,TIC 311179742.01,3,4,3,3,3,4,4,8.6,27.1,81.05,1,0,1,PC,PC,12.2766,0.006,,1,qlp-s39-tois,CTOI,17:10:51.61,-75:43:47.97,-2.616,0.04,1.314,0.048,2459380.743164,0.0047568,8.3129806,9.59e-05,4.171,0.639,2.913679,0.00656,2680.0,6.04205,10.7065,0.782806,237.935,1094.0,12.0,802.875,19.723,5929.0,131.9,3.86,0.08,2.03,0.11,,,1.08,0.144032,"12,13,39",2020-10-23,2023-01-24,2023-01-26 12:09:41,Noisy LC; CTOI from Marco Montalto,2344,1,False,False,False -91555165,2345.01,TIC 91555165.01,1,4,4,1,3,4,4,4.7,6.5,2.61,6,2,1,PC,PC,10.3759,0.006,,1,spoc,CTOI,02:55:32.35,-34:58:40.71,202.401,0.03,-104.353,0.04,2459116.731575,0.002363174,1.05261565408191,8.711305e-05,1.5288415014373,0.20309374,0.389314,0.03797,358.507606433633,34.970695,1.42030845745167,1.7885791,706.265480394481,1314.80620377746,9.283612,81.6541,0.16515,4621.0,125.5,4.54,0.1,0.758575022220612,0.0576507,,,0.73,0.0904038,"30,31",2020-10-23,2021-07-28,2023-05-26 00:00:00,Potential L1 candidate; low SNR; CTOI from Marco Montalto,2345,1,True,False,True -91555165,2345.02,,1,4,1,1,3,4,4,0.5,24.2,6.09,6,2,1,PC,PC,10.3759,0.006,,2,spoc,SPOC,02:55:32.35,-34:58:40.71,202.401,0.03,-104.353,0.04,2459120.29967,0.0050277757,42.1289893255497,0.007076589,4.61305234392815,0.651279,1.044607,0.112897,961.655866980806,103.97616,2.34047318658116,1.4154048,5.1588514827655,384.377542557293,9.432722,81.6541,0.16515,4621.0,125.5,4.54,0.1,0.758575022220612,0.0576507,,,0.73,0.0904038,"30,31",2021-07-28,2021-07-28,2022-12-14 12:09:24,potential multi; period could be half; low SNR,2345,2,True,False,True -317483660,2346.01,TIC 317483660.01,3,4,3,3,3,4,4,57.0,65.6,317.0,5,3,1,PC,PC,11.5584,0.017,,1,qlp,QLP,05:52:22.3,-13:22:20.89,-11.234,0.055,3.059,0.058,2459224.055885,0.0005525,3.3311975,6.8e-06,3.705,0.149,13.536303,0.003035,12390.0,2.79571,14.877,0.695738,1437.43,1715.0,135.0,437.484,6.0615,6605.0,165.8,4.33,0.09,1.33,0.06,,,1.38,0.236349,"6,33",2020-10-23,2020-10-23,2022-12-14 12:09:24,317483660,2346,1,False,False,False -301343785,2347.01,TIC 301343785.01,3,5,5,3,4,4,4,20.2,52.3,50.53,1,2,3,PC,APC,11.6751,0.007,,1,qlp,QLP,03:29:57.03,-00:54:15.18,4.724,0.063,-2.184,0.058,2459169.738716,0.0017121,1.1736318,4.7e-06,1.397,0.26,1.597206,0.003896,1470.0,3.58836,8.1147,0.553864,1505.41,1735.0,17.0,587.369,13.9635,6033.7,103.7,3.92,0.08,1.93,0.09,-0.692786,0.00723833,1.12,0.144489,"4,31",2020-10-23,2020-10-23,2022-12-14 12:09:24,TFOP FP as SB2,2347,1,False,False,False -317019074,2348.01,TIC 317019074.01,3,4,3,3,3,4,4,9.8,44.5,22.02,1,2,1,PC,PC,11.6884,0.008,,1,qlp,CTOI,05:45:01.12,-13:19:35.82,1.105,0.08,0.741,0.08,2459225.439688,0.0016034,1.2043785,4e-06,1.047,0.188,1.271055,0.002908,1170.0,2.67819,4.985,0.339383,1124.6,1613.0,15.0,487.854,8.938,6595.0,129.1,4.3,0.09,1.38,0.06,,,1.38,0.231156,"6,32,33",2020-10-23,2021-05-19,2022-12-14 12:09:24,Possibly stellar variability; CTOI from Marco Montalto,2348,1,False,False,False -405452527,2349.01,TIC 405452527.01,3,5,5,3,4,4,4,47.0,95.4,317.0,0,2,2,PC,APC,11.8929,0.007,,1,qlp,CTOI,09:33:02.24,-13:49:50.28,-7.785,0.059,2.342,0.059,2459268.759188,0.0009123,11.5738497,1.86e-05,6.656,0.116,20.528696,0.001633,18730.0,1.5037,22.4042,1.18194,210.056,1060.0,99.0,528.869,10.612,5782.0,124.2,4.04,0.08,1.61,0.08,,,1.04,0.127314,"8,35",2020-10-23,2020-10-23,2022-12-14 12:09:24,CTOI from Marco Montalto; RV error ~4.8 km/s from Gaia DR2; large radius for period; possible EB,2349,1,False,False,False -47601197,2350.01,TIC 47601197.01,1,4,4,1,4,4,4,17.7,92.4,44.74,11,3,4,PC,PC,10.6477,0.006,,1,qlp,CTOI,06:29:37.95,-21:59:39.79,-5.328,0.024,-9.006,0.045,2458476.588785,0.0018636,8.6251769,0.0026704,2.704,0.528,1.836446,0.011376,1690.0,10.4777,7.55444,0.550065,161.98,993.0,29.0,185.506,1.006,5484.0,123.9,4.35,0.08,1.08,0.06,,,0.96,0.12543,6,2020-10-23,2021-04-02,2023-03-08 00:00:00,Possible multi. CTOI from Marco Montalto.,2350,1,True,False,False -47601197,2350.02,TIC 47601197.02,2,4,2,2,4,4,4,6.7,51.6,14.16,11,3,4,PC,PC,10.6477,0.006,,2,qlp,UNKNOWN,06:29:37.95,-21:59:39.79,-5.328,0.024,-9.006,0.045,2458480.358848,0.0050647,4.8714085,0.0036335,2.643,0.79,1.281925,0.006594,1180.0,6.07303,3.8394,0.35462,350.476,1205.0,11.0,185.506,1.006,5484.0,123.9,4.35,0.08,1.08,0.06,,,0.96,0.12543,6,2021-03-18,2021-06-11,2022-12-14 12:09:24,Inner candidate to TOI 2350.01; potential multi; potential L1; CTOI from Marco Montalto,2350,2,True,False,False -290036495,2351.01,TIC 290036495.01,3,5,5,3,4,4,4,79.0,129.8,317.0,0,1,2,PC,APC,12.1103,0.007,,1,qlp-s46-tois,CTOI,12:50:38.79,-14:33:54.36,-22.015,0.093,-8.012,0.071,2459573.685262,0.0003717,5.2524792,3.5e-06,1.828,0.151,25.7082,0.018668,23400.0,17.1935,20.7884,1.27074,132.072,944.0,121.0,457.57,11.2055,5728.0,122.1,4.24,0.08,1.27,0.07,,,1.02,0.12632,"10,37,46",2020-10-23,2022-03-10,2022-12-14 12:09:24,likely EB; see observing notes; CTOI from Marco Montalto,2351,1,False,False,True -32925763,2352.01,TIC 32925763.01,3,4,3,3,4,4,4,20.9,88.0,25.0,1,2,2,PC,PC,11.0863,0.006,,1,qlp,CTOI,05:49:29.59,-25:22:32.21,1.367,0.035,9.988,0.041,2459226.279737,0.0006571,1.6804461,6.6e-06,1.099,0.373,2.195405,0.007625,2020.0,7.02256,5.37039,0.405311,833.25,1496.0,35.0,231.907,1.5495,5695.0,127.2,4.41,0.08,1.04,0.05,,,1.014,0.127647,"6,32,33",2020-10-23,2020-10-19,2022-12-14 12:09:24,v-shaped; CTOI from Marco Montalto,2352,1,False,False,False -177079323,2353.01,TIC 177079323.01,3,4,3,3,3,4,4,3.2,16.9,27.05,0,0,1,PC,PC,11.895,0.006,,1,qlp,CTOI,06:52:58.89,-67:32:21.34,4.331,0.055,2.04,0.047,2459384.255659,0.0032065,5.7518756,3.02e-05,2.366,0.281,0.879803,0.001263,810.0,1.16307,5.63435,0.370938,226.172,1080.0,16.0,723.392,16.8415,6510.3,121.0,3.97,0.09,1.98,0.1,-0.586405,0.1,1.34,0.214889,"1,2,3,4,5,6,7,8,9,11,12,13,27,28,29,31,32,33,34,35,36,37,38",2020-10-23,2021-11-10,2022-12-14 12:09:24,low SNR; CTOI from Marco Montalto,2353,1,False,False,True -219766989,2354.01,TIC 219766989.01,5,5,5,5,5,5,5,44.9,104.5,66.22,9,2,5,EB,FP,11.9951,0.008,,1,qlp,CTOI,12:49:17.21,-21:19:58.92,-0.794,0.057,-10.736,0.052,2459332.152874,0.0007175,0.5109902,8e-07,0.709,0.251,2.957226,0.023506,2720.0,21.6493,9.54792,0.908174,4048.85,2222.0,33.0,569.651,11.0955,6095.0,126.0,4.13,0.08,1.53,0.07,,,1.14,0.150011,"10,37",2020-10-23,2021-10-05,2022-12-14 12:09:24,a/R ~ 1.85; CTOI Marco Montalto; TFOP FP; retired as EB,2354,1,False,False,False -124515764,2355.01,TIC 124515764.01,3,4,3,3,3,4,4,7.6,41.2,15.78,0,1,1,PC,PC,11.7959,0.006,,1,qlp-s39-tois,CTOI,13:16:05.05,-33:45:50.26,-25.369,0.063,-7.35,0.069,2459332.174614,0.0032725,1.2709769,8.7e-06,2.335,0.328,1.521096,0.00231,1400.0,2.12756,4.10761,0.257518,4096.84,2228.0,22.0,418.251,6.009,6296.0,125.8,4.39,0.08,1.17,0.05,,,1.23,0.182567,"10,37",2020-10-23,2023-01-24,2023-01-26 12:09:41,Slight depth-aperture correlation; could be L1 given Rp error; CTOI from Marco Montalto,2355,1,False,False,False -30947715,2356.01,TIC 30947715.01,1,4,1,1,4,4,4,3.2,26.3,12.29,1,3,2,PC,PC,11.7118,0.007,,1,qlp,CTOI,05:18:28.29,-28:00:21.35,13.54,0.031,-0.28,0.04,2458489.40504,0.00634,3.66275,0.00078,3.096,0.445,1.053675,0.003003,970.0,2.76594,3.52758,0.276806,782.333,1473.0,11.0,415.04,3.587,6150.0,128.5,4.33,0.08,1.22,0.06,,,1.17,0.163008,6,2020-10-23,2020-10-23,2022-12-14 12:09:24,Potential L1 candidate; small depth aperture correlation; CTOI from Marco Montalto,2356,1,False,False,False -124206468,2357.01,TIC 124206468.01,3,4,3,3,3,4,4,21.8,73.4,101.52,3,0,1,PC,PC,11.4586,0.006,,1,qlp-s37-tois,CTOI,13:08:48.13,-31:29:58.07,4.491,0.104,-0.829,0.073,2459329.732281,0.0011178,7.0924883,1.66e-05,2.869,0.252,6.031702,0.002584,5540.0,2.37956,12.2608,0.639969,200.057,1047.0,41.0,503.535,11.249,6493.0,132.1,4.17,0.09,1.58,0.07,,,1.33,0.208041,"10,37",2020-10-23,2023-01-24,2023-01-26 12:09:41,Period could be 2x (14.2 d); CTOI from Marco Montalto,2357,1,False,False,False -124095888,2358.01,TIC 124095888.01,3,4,3,3,3,4,4,88.2,206.1,114.85,2,0,1,PC,PC,11.5137,0.007,,1,qlp-s37-tois,CTOI,13:05:08.6,-31:59:07.36,-6.391,0.09,-14.182,0.118,2459331.195756,0.0011999,1.1258127,2.8e-06,0.374,0.176,1.564587,1.737242,1440.0,1598.78,13.1558,5.49473,570.852,1361.0,13.0,395.046,8.438,6423.0,126.1,4.36,0.09,1.24,0.06,,,1.29,0.204119,"10,37",2020-10-23,2023-01-24,2023-01-26 12:09:41,Very slight depth-aperture correlation; CTOI from Marco Montalto; artifact TIC 124095880 close by,2358,1,False,False,False -436102447,2359.01,TIC 436102447.01,3,4,3,3,4,4,4,42.8,47.9,317.0,1,2,2,PC,PC,11.0331,0.007,,1,qlp,CTOI,05:35:16.48,06:35:15.75,-4.383,0.061,-16.049,0.054,2458486.39266,0.00227,5.1858,0.00104,7.191,0.223,4.951373,0.000902,4550.0,0.830724,18.5118,0.967961,1753.41,1802.0,59.0,594.265,13.8565,6130.0,119.8,3.64,0.08,2.7,0.14,,,1.16,0.154147,6,2020-10-23,2020-10-23,2022-12-14 12:09:24,2 stars in pixel; CTOI from Marco Montalto,2359,1,False,False,False -31656385,2360.01,TIC 31656385.01,5,5,5,5,5,5,5,12.3,23.1,317.0,5,0,1,PC,FP,11.9961,0.006,,1,qlp,CTOI,03:06:38.32,-66:00:28.56,14.519,0.033,11.727,0.033,2459073.99562,0.00641,22.84518,0.0002,7.215,0.749,10.045963,0.007496,9210.0,6.90369,15.1752,0.83014,91.9765,862.0,44.0,580.188,6.1975,5963.1,113.3,4.08,0.08,1.57,0.07,0.23,0.1,1.09,0.142956,28,2020-10-23,2020-10-19,2022-12-14 12:09:24,CTOI from Marco Montalto,2360,1,False,False,True -204671232,2361.01,TIC 204671232.01,3,4,3,3,4,4,4,25.6,94.5,99.99,17,0,4,PC,PC,11.9196,0.006,,1,qlp,CTOI,12:19:55.81,-27:17:05.41,-36.815,0.059,10.615,0.058,2458595.20891,0.00139,8.71546,0.00113,3.934,0.129,13.118628,0.003405,12010.0,3.13566,12.1387,0.710653,103.489,888.0,41.0,314.877,3.9235,5395.0,128.5,4.36,0.08,1.06,0.06,,,0.937,0.120198,10,2020-10-23,2020-10-19,2022-12-14 12:09:24,CTOI from Marco Montalto,2361,1,False,False,False -302924206,2362.01,TIC 302924206.01,3,4,3,3,3,4,4,12.4,47.2,73.3,1,0,1,PC,PC,12.3715,0.006,,1,qlp,CTOI,02:19:49.02,-62:30:13.74,-13.334,0.045,-7.086,0.038,2459137.08534,0.0015443,6.9444047,1.9e-05,2.085,0.478,4.896839,0.009445,4500.0,8.69951,10.1119,0.672635,114.05,910.0,16.0,634.033,8.413,6104.5,121.7,4.19,0.08,1.42,0.07,-0.273778,0.076577,1.15,0.156074,"1,3,28,29,30",2020-10-23,2020-12-22,2022-12-14 12:09:24,Slight odd-even at 3sigma possibly explained by stellar variability; CTOI from Marco Montalto; slight depth aperture correlation,2362,1,False,False,False -445456888,2363.01,TIC 445456888.01,3,4,3,3,3,4,4,19.9,53.4,121.05,4,0,1,PC,PC,12.1046,0.006,,1,qlp,CTOI,07:31:30.09,-52:59:09.19,-15.382,0.044,11.376,0.044,2459302.787958,0.0013363,5.5436298,1.34e-05,3.879,0.412,5.878863,0.00364,5400.0,3.35228,13.5659,0.7071,702.661,1434.0,42.0,721.25,11.557,6510.0,127.8,4.05,0.09,1.81,0.08,,,1.34,0.207751,"7,8,9,33,34,35,36",2020-10-23,2021-11-09,2022-12-14 12:09:24,Crowded field; CTOI from Marco Montalto,2363,1,False,False,False -39414571,2364.01,TIC 39414571.01,3,4,3,3,4,4,4,36.8,123.5,66.52,2,1,4,PC,PC,11.5521,0.006,,1,qlp,CTOI,05:56:31.21,-05:00:43.31,12.306,0.068,-15.424,0.063,2459227.044447,0.0006444,4.0197555,4.1e-06,2.688,0.154,10.637872,0.001898,9750.0,1.74846,9.57594,0.594464,211.813,1062.0,92.0,219.614,1.702,5216.0,131.3,4.44,0.09,0.94,0.06,,,0.888,0.107869,"6,33",2020-10-23,2020-10-23,2022-12-14 12:09:24,CTOI from Marco Montalto,2364,1,False,False,False -344085117,2365.01,TIC 344085117.01,3,4,3,3,3,4,4,22.8,72.5,30.92,9,0,1,PC,PC,11.9732,0.006,,1,qlp-s33-tois,CTOI,07:12:04.19,-50:14:52,8.126,0.043,-20.872,0.041,2459962.922038,0.0022715123,0.659752,1.5e-06,0.367,0.116,1.424334,0.023196,1311.0,21.3642,6.07841,0.701649,376.585,1227.0,9.0,415.137,3.9495,5832.0,127.0,4.26,0.08,1.25,0.06,,,1.05,0.132818,"6,7,8,33,61",2020-10-23,2023-07-12,2023-07-12 00:00:00,v-shaped; low SNR; CTOI from Marco Montalto; some asymmetry in transit shape; multiple stars in pixel,2365,1,False,False,False -39218269,2366.01,TIC 39218269.01,3,4,3,3,4,4,4,9.7,33.1,111.19,6,2,4,PC,PC,11.8402,0.006,,1,qlp,CTOI,05:54:01.21,-03:38:23.67,8.71,0.062,22.471,0.062,2459224.966718,0.0043466,17.1869882,0.0001376,3.845,1.234,3.403684,0.014162,3130.0,13.0438,12.9307,1.38748,97.2728,874.0,16.0,439.569,9.183,6049.7,143.6,3.87,0.1,2.05,0.18,-0.037,0.016,1.126,0.141998,"6,33",2020-10-23,2021-02-19,2022-12-14 12:09:24,some asymmetry in transit between ingress and egress; CTOI from Marco Montalto,2366,1,False,False,False -441159680,2367.01,TIC 441159680.01,3,4,3,3,3,4,4,36.9,49.0,317.0,4,2,1,PC,PC,12.3193,0.007,,1,qlp,CTOI,22:12:26.72,-26:55:34.93,7.045,0.069,-11.192,0.064,2459084.78676,0.00077,5.74984,1e-05,3.734,0.154,19.378587,0.003674,17690.0,3.38406,14.4892,0.779097,329.499,1186.0,33.0,467.516,10.745,6046.0,123.0,4.42,0.08,1.08,0.06,,,1.12,0.14677,28,2020-10-23,2020-10-23,2022-12-14 12:09:24,Slight depth-aperture correlation; CTOI from Marco Montalto,2367,1,False,False,False -401125028,2368.01,TIC 401125028.01,3,4,4,3,3,4,4,41.0,139.7,82.12,8,20,1,PC,PC,11.6955,0.006,,1,qlp,CTOI,08:59:49.83,-48:29:18.57,-5.178,0.046,-19.817,0.041,2459297.19627,0.0004329,5.1750108,4e-06,1.715,0.191,14.537179,0.003363,13300.0,3.0974,10.7741,0.662931,71.7931,810.0,91.0,210.915,1.1745,5177.0,130.7,4.48,0.09,0.89,0.05,,,0.88,0.108561,"8,9,35,36",2020-10-23,2021-11-09,2022-12-14 12:09:24,Slight odd-even and inconsistent transit shapes which can be due to few transits available; CTOI from Marco Montalto,2368,1,False,False,False -220068921,2369.01,TIC 220068921.01,3,4,3,3,4,4,4,27.3,77.7,81.45,3,0,2,PC,PC,12.1227,0.02,,1,qlp,CTOI,05:35:39.31,04:49:40.69,3.399,0.104,-32.39,0.082,2458489.43839,0.00255,3.36376,0.00068,3.418,0.211,7.659681,0.003188,7030.0,2.93661,10.7493,0.771513,705.699,1435.0,35.0,418.29,8.3105,5713.3,133.1,4.24,0.09,1.27,0.09,0.504,0.07,1.02,0.131398,6,2020-10-23,2020-10-23,2022-12-14 12:09:24,Some centroid shift and slight depth-aperture correlation; CTOI from Marco Montalto,2369,1,False,False,False -347357977,2370.01,TIC 347357977.01,3,4,3,3,4,4,4,4.3,36.9,24.18,1,3,4,PC,PC,11.4878,0.006,,1,qlp,CTOI,08:51:35.72,-16:23:10.6,-11.963,0.053,-4.376,0.035,2459262.512418,0.0030324,12.6826724,0.0001138,3.827,0.406,2.706855,0.003135,2490.0,2.88725,5.24953,0.318192,76.8372,824.0,13.0,294.752,2.722,5851.0,125.1,4.43,0.08,1.04,0.05,,,1.057,0.13326,"8,34,35",2020-10-23,2021-06-11,2022-12-14 12:09:24,CTOI from Marco Montalto,2370,1,False,False,False -432132155,2371.01,TIC 432132155.01,3,4,3,3,3,4,4,29.9,82.6,111.35,4,2,1,PC,PC,12.2036,0.007,,1,qlp,CTOI,09:09:14.81,-19:46:40.88,-10.534,0.067,-2.229,0.081,2459275.495126,0.0016504,4.8984239,1.38e-05,3.752,0.211,10.835247,0.003935,9930.0,3.62457,12.907,0.787613,409.667,1253.0,39.0,471.152,13.9325,5774.0,129.7,4.23,0.08,1.29,0.07,,,1.03,0.131022,"8,35",2020-10-23,2021-06-11,2022-12-14 12:09:24,Slight depth-aperture correlation; Gaia DR2 RV error ~2.5 km/s; CTOI from Marco Montalto,2371,1,False,False,False -189620016,2372.01,TIC 189620016.01,3,5,5,3,3,4,4,45.3,44.7,317.0,4,2,1,PC,APC,12.2186,0.007,,1,qlp,CTOI,09:36:09.75,-24:45:04.03,-6.376,0.053,1.579,0.051,2458541.2094,0.00249,1.17971,0.00017,1.224,0.163,4.111859,0.008042,3780.0,7.40686,18.0295,1.32675,1104.49,1606.0,17.0,1092.91,38.565,6127.1,124.1,3.67,0.09,2.61,0.16,-0.284303,0.0684384,1.16,0.156731,8,2020-10-23,2020-10-19,2022-12-14 12:09:24,Possibly EB; synced with phase modulations; CTOI from Marco Montalto,2372,1,False,False,False -332558858,2373.01,TIC 332558858.01,3,4,4,3,3,4,4,10.2,45.8,88.35,5,2,1,PC,PC,12.5882,0.007,,1,qlp,CTOI,04:06:44.69,-16:45:20.72,11.289,0.038,-39.175,0.034,2459168.5071,0.0021856,13.3368173,5.79e-05,4.384,0.505,8.950687,0.006389,8210.0,5.88429,11.2448,0.670513,69.8726,805.0,30.0,508.686,7.327,5517.0,120.9,4.26,0.08,1.2,0.06,,,0.97,0.117688,"5,31",2020-10-23,2021-01-29,2022-12-14 12:09:24,CTOI from Rafael Brahm,2373,1,False,False,True -439366538,2374.01,,3,4,4,3,3,3,3,36.6,147.1,49.31,3,11,1,PC,PC,11.2057,0.006,,1,qlp,QLP,21:17:59.58,-22:02:59.36,-11.514,0.068,-31.331,0.055,2458326.555387,0.0,4.31362,1e-05,1.709,0.189,10.352839,0.00835,9490.0,7.69056,8.01917,0.587255,54.2011,755.0,21.0,134.655,0.8695,4929.5,5084.0,0.1,,0.8,0.05,,,0.773,0.08616,28,2020-10-28,2020-10-23,2022-12-14 12:09:24,,2374,1,False,False,True -164150537,2375.01,,3,4,3,3,2,3,3,43.7,64.8,317.0,1,0,1,PC,PC,12.6389,0.007,,1,qlp-s56-tois,QLP,22:22:58.11,30:34:23.77,27.728,0.03,10.405,0.033,2459850.541356,0.0016088,6.1600755,1.41e-05,1.808,0.419,20.750011,1.84493,18930.0,1697.8,17.7265,1.21189,64.3828,789.0,23.0,521.117,6.244,5669.0,124.6,4.29,0.08,1.19,0.06,,,1.01,0.126584,"16,56",2020-10-28,2023-02-05,2023-02-09 12:10:04,large; possible odd-even,2375,1,False,False,False -326522874,2376.01,,3,4,3,3,3,4,4,12.9,41.6,59.04,1,0,1,PC,PC,12.7119,0.007,,1,spoc,SPOC,22:58:58.56,-23:08:52.9,-14.014,0.052,-7.046,0.047,2459091.161581,0.0028870439,3.18250485907714,0.0007841524,2.2888726570791,0.41327262,4.344254,0.387515,3993.21209132038,356.85098,8.90017562795957,2.6027136,1042.44225239594,1449.2147681837,10.362478,665.583,14.3285,5672.5,5842.7,4.4,2.0,1.3954,0.0734145,,,1.03,0.131875,29,2020-11-06,2020-11-06,2022-12-14 12:09:24,SG1 needs to clear the neighbors,2376,1,False,False,True -146165619,2377.01,,3,5,5,3,1,4,4,120.6,112.1,317.0,2,0,0,PC,APC,14.1858,0.007,,1,spoc-s01-s46-b0A,SPOC,22:47:29.23,-15:34:22.61,0.618,0.189,-30.148,0.173,2459449.277104,0.0014749056,1.67665853931889,4.7524168e-06,1.52871095865321,0.071992435,41.376274,1.75899,37391.9473650587,1618.7776,16.6532666974203,11.237296,180.659004477315,935.049608560157,26.711208,288.642,16.806,4155.0,122.0,4.66247,,0.622666001319885,,,,0.65,,"29,42",2020-11-06,2022-07-15,2022-12-14 12:09:24,V-shaped; faint host; TFOP BEB/APC,2377,1,False,False,True -231063955,2378.01,,4,4,4,5,1,4,4,32.5,94.1,91.18,2,0,0,PC,PC,13.3921,0.006,,1,spoc,SPOC,02:06:28.21,-56:11:55.97,49.113,0.089,16.916,0.083,2459090.74622,0.0013920029,3.49727799398686,0.0003740489,2.16833644256787,0.10824785,19.008097,0.684319,17354.7453003874,630.0824,11.4931223007963,0.43622473,192.670400163981,950.218539116894,22.61703,390.618,9.4695,4940.0,91.1,4.53,0.27,0.80797,,,,0.81,,"29,30",2020-11-06,2021-10-04,2022-12-14 12:09:24,,2378,1,False,False,True -201177276,2379.01,TIC 201177276.01,3,4,4,3,1,4,4,28.2,101.4,90.64,3,0,0,PC,PC,13.6521,0.007,,1,spoc,SPOC,23:52:22.09,-53:02:35.36,16.528,0.029,1.74,0.036,2459062.464151,0.00076283,5.46941642906772,0.00014152794,1.82185012781992,0.07007301,35.167424,0.843613,31871.4441636237,776.69434,11.4533098056102,0.48262885,27.5362647738931,584.24634855556,32.184196,211.247,1.0895,3770.0,157.0,4.61871,0.0116763,0.638902008533478,0.0190863,,,0.61874,0.0203364,"28,29",2020-11-06,2021-10-05,2022-12-14 12:09:24,V-shaped; potentially grazing incidence,2379,1,False,False,True -176220787,2380.01,,5,5,5,5,5,5,5,80.9,105.7,317.0,0,1,1,KP,KP,9.4834,0.007,,1,spoc-s01-s46-b0A,SPOC,00:01:18.18,-08:55:34.5,2.473,0.086,9.647,0.059,2459468.029821,0.0004702,5.21535668438085,7.909006e-06,5.54470470090601,0.03848897,5.677692,0.044607,5215.69789331451,41.083588,17.6559787393873,0.8651297,1843.46567724843,1671.20033328178,128.15335,275.587,4.533,6067.2,119.7,3.73,0.08,2.39014005661011,0.115251,-0.37,0.1,1.13,0.14807,"29,42",2020-11-06,2022-07-15,2022-12-14 12:09:24,WASP-136 b,2380,1,False,False,True -39080923,2381.01,,3,4,4,3,3,4,4,54.8,68.0,317.0,2,0,3,PC,PC,12.3643,0.006,,1,spoc,SPOC,00:54:34.46,-67:54:54.57,-12.465,0.039,-28.055,0.038,2459039.752316,0.0007526287,5.04503653495129,9.4103205e-05,1.84776911042274,0.050423943,15.737895,0.609713,14390.5886305687,561.4091,16.706066143743,1.4940311,319.793148843273,1078.54194180079,35.03227,422.151,3.8555,5337.0,5302.6,4.5,2.0,1.16636002063751,0.058794,0.224288,0.0906365,0.93,0.118027,"27,28,29",2020-11-06,2021-09-29,2022-12-14 12:09:24,2.4 sigma odd-even; v-shaped; large,2381,1,False,False,True -2760219,2382.01,TIC 2760219.01,3,4,4,3,3,4,4,30.2,87.8,100.52,1,13,1,PC,PC,11.4408,0.006,,1,spoc,SPOC,23:45:30.04,-16:06:50.85,12.369,0.12,-5.394,0.088,2459089.606904,0.0016042606,4.66103673477923,0.0006427453,2.10647883389649,0.11529161,5.307191,0.255723,4876.17646463234,235.50182,12.1721874675446,0.8486788,824.003807031509,1366.47614386467,15.895264,434.92,15.7905,5884.5,5887.6,4.3,2.0,1.52373,0.0900829,,,1.09,0.13996,29,2020-11-06,2020-11-06,2022-12-14 12:09:24,V-shaped;,2382,1,False,False,True -20897611,2383.01,,3,5,5,3,3,4,4,127.8,318.7,126.41,1,2,1,PC,APC,10.459,0.007,,1,spoc,SPOC,00:05:56.36,-20:39:14.24,-6.667,0.086,-49.57,0.088,2459089.781013,0.001214193,3.13481152070913,0.00026931227,1.52707720027538,0.09383217,10.435789,0.707417,9565.67206150368,651.3427,13.9277104862997,6.5482807,574.68342257736,1248.75407072115,15.653014,174.593,2.695,5503.0,5569.7,4.4,0.3,1.05637,0.0584145,,,1.0,0.132261,29,2020-11-06,2020-11-06,2022-12-14 12:09:24,need to check if the star is on target (slightly more likely) or 20897612.,2383,1,False,False,True -382602147,2384.01,TIC 382602147.01,3,4,4,3,3,4,4,69.6,152.7,91.26,5,0,2,PC,PC,13.3147,0.007,,1,spoc,SPOC,02:24:37.48,-65:00:00.7,8.584,0.113,-52.648,0.095,2459062.341695,0.00036112795,2.13568444054431,2.7125192e-05,1.88933680506148,0.03227237,31.759053,0.343485,28827.4945529957,316.31122,11.4989584086648,0.37913576,96.5828776604847,799.548448359542,67.74752,191.51,2.0475,3678.2,140.5,,,0.666652023792267,0.0202807,,,0.639465,0.0205317,"28,29",2020-11-06,2021-10-04,2023-01-24 00:00:00,2 stars in pixel; SG1 should clear the neighbor,2384,1,False,False,True -231850364,2385.01,,3,4,4,3,3,4,4,37.6,75.6,113.6,3,0,2,PC,PC,13.5445,0.006,,1,spoc,SPOC,01:47:51.62,-61:41:12.33,6.571,0.09,-3.622,0.058,2459063.975995,0.0010438476,3.15807675459088,0.00011773861,2.34298673624712,0.09373511,18.079977,0.438416,16514.3913437195,403.71448,13.0802564179214,0.6397503,242.699202980393,1006.66932965151,29.12854,401.837,6.4275,4367.6,4396.0,,,1.02417004108429,,,,0.68,,"28,29",2020-11-06,2021-10-04,2023-01-20 00:00:00,,2385,1,False,False,True -32487566,2386.01,,5,5,5,5,5,5,5,95.3,237.3,124.5,0,0,1,KP,KP,10.5853,0.008,,1,spoc,SPOC,00:18:24.73,-15:16:02.66,27.393,0.154,-24.407,0.07,2459090.383107,0.00048461024,2.75673948742882,0.00010442861,2.38085647366309,0.03320816,10.088127,0.125536,9248.47599177457,115.61662,13.8044661296549,0.7482012,1225.52637329246,1509.03882990984,85.956696,252.759,4.676,6034.0,132.477,4.26998,0.0823565,1.28427,0.0685126,0.16,0.02,1.12,0.14845,29,2020-11-06,2020-11-06,2022-12-14 12:09:24,WASP-26 b,2386,1,False,False,True -237885040,2387.01,,3,5,5,3,3,4,4,32.7,103.4,103.49,6,5,1,PC,APC,11.8933,0.006,,1,spoc,SPOC,01:21:38.49,-64:52:32.55,-5.113,0.151,-6.168,0.145,2459063.229447,0.000872869,5.66010975408214,0.00018089138,1.53774734746934,0.057667762,9.189011,0.304852,8427.67788781973,280.7395,12.3816484328452,0.8086145,361.128913669673,1111.82213213273,25.583002,396.308,13.3465,5859.8,6031.1,4.4,2.0,1.1873699426651,0.071417,-0.592726,0.0660963,1.05,0.131903,"28,29",2020-11-06,2021-10-05,2022-12-14 12:09:24,v-shaped; secondary,2387,1,False,False,True -382625239,2388.01,,3,5,5,3,1,4,4,,,0.26,1,0,0,PC,PC,8.115,0.023,,1,qlp,QLP,07:53:33.21,-63:46:11.32,0.4,1.3,13.4,1.4,2459199.150188,0.0347919,1.3406837,7.39e-05,2.106,0.486,0.04343,0.001106,40.0,1.01878,,,,,1000.0,,,,,,,,,,,,,"1,2,3,4,5,7,8,9,10,11,12,13,27,28,29,30,31",2020-11-06,2021-01-28,2022-12-14 12:09:24,multiple star system; no gaia information,2388,1,False,False,True -89544985,2389.01,,3,4,3,3,1,4,4,78.2,92.2,317.0,3,0,0,PC,PC,13.3922,0.007,,1,spoc,SPOC,23:51:50.95,-19:10:42.53,15.862,0.069,-12.777,0.056,2459089.052443,0.001580707,2.33656678263094,0.00026985828,1.73559827075885,0.13637713,14.33822,0.748603,13119.1721904211,689.2509,17.4639925429148,32.93575,550.327995975139,1235.30770769484,14.279921,526.591,11.472,5335.0,5331.2,4.5,2.0,0.910484,,,,0.94,,29,2020-11-09,2020-11-09,2022-12-14 12:09:24,V-shaped,2389,1,False,False,True -369965258,2390.01,,3,4,3,3,3,4,4,21.3,63.0,73.2,2,0,1,PC,PC,11.3641,0.006,,1,spoc,SPOC,00:20:30.86,-61:23:10.23,9.726,0.038,-2.854,0.036,2459063.929109,0.0020786393,2.11945745531704,0.00015905351,1.99609958593556,0.12349127,1.97833,0.124229,1820.45031812395,114.4123,10.0996694548013,0.64538926,5316.79180595866,2177.87105635961,15.198289,659.201,10.9275,7022.0,6973.5,4.2,2.0,1.9976099729538,0.0950254,,,1.4,0.249387,"28,29",2020-11-09,2021-10-05,2022-12-14 12:09:24,,2390,1,False,False,True -299897516,2391.01,,3,4,3,3,3,4,4,32.8,51.5,317.0,2,0,1,PC,PC,12.937,0.006,,1,spoc,SPOC,00:40:38.89,-60:52:49.53,14.062,0.031,5.925,0.023,2459064.337645,0.0017740054,7.83689944964961,0.0004615659,6.81116078499153,0.13162717,15.656879,0.363579,14317.0409469521,334.81287,21.296901562942,1.2936549,434.367553614265,1164.35146455696,26.652534,859.509,12.933,5774.8,5809.4,4.4,2.0,1.75826001167297,0.100673,-0.715146,0.0776514,0.96,0.121335,"28,29",2020-11-09,2021-10-04,2022-12-14 12:09:24,Large planetary radius. Possible secondary at phase = 0.55,2391,1,False,False,True -149349867,2392.01,,1,4,1,1,3,4,4,2.5,21.5,10.67,1,1,3,PC,PC,10.3998,0.006,,1,qlp-s63-ffi,QLP,05:35:08.09,-64:06:59.83,2.317,0.052,-10.749,0.044,2460031.149891,0.0041691,5.9123826,2.03e-05,4.65,0.47,0.446329,0.016454,411.0,15.1542,3.25073,0.185995,705.401,1435.0,24.0,325.608,2.199,6187.3,197.3,3.87,0.16,1.76,0.09,-0.05,0.12,1.21,0.182651,"1,2,3,5,6,7,8,9,10,12,13,27,28,29,30,32,33,35,36,37,38,39,61,63",2020-11-09,2023-05-11,2023-06-16 12:14:51,some depth-aperture correlation for .01 but not .02,2392,1,True,False,True -149349867,2392.02,,1,4,1,1,3,4,4,2.5,21.1,8.2,1,1,3,PC,PC,10.3998,0.006,,2,qlp-s64-ffi,SPOC,05:35:08.09,-64:06:59.83,2.317,0.052,-10.749,0.044,2460065.003007,0.0053118,3.4072319,1.6e-05,3.92,0.433,0.338803,0.014088,312.0,12.9755,2.7699,0.165199,1492.85,1731.0,19.0,325.608,2.199,6187.3,197.3,3.87,0.16,1.76,0.09,-0.05,0.12,1.21,0.182651,"1,2,3,5,6,7,8,9,10,12,13,27,28,29,30,32,33,35,36,37,38,39,61,63,64",2021-07-28,2023-06-28,2023-06-28 00:00:00,potential multi,2392,2,True,False,True -231071138,2393.01,TIC 231071138.01,3,4,3,3,3,4,4,6.9,45.5,60.53,4,0,1,PC,PC,12.0585,0.006,,1,qlp,CTOI,02:11:46.4,-56:45:22.41,52.147,0.036,18.703,0.037,2459128.42966,0.00212,18.84184,7e-05,3.184,0.448,6.501271,0.007327,5970.0,6.74883,9.05304,0.547159,30.3347,653.0,27.0,372.18,3.082,5603.0,125.4,4.35,0.08,1.1,0.05,,,0.99,0.129757,"2,3,29,30",2020-11-24,2020-11-24,2022-12-14 12:09:24,some odd-even; CTOI from Marco Montalto,2393,1,False,False,False -144297844,2394.01,TIC 144297844.01,2,4,2,2,4,4,4,5.2,43.0,11.89,1,4,5,PC,PC,11.9522,0.007,,1,qlp-s46-tois,CTOI,11:55:33.78,-10:01:44.77,-8.435,0.066,-6.057,0.031,2459576.379092,0.0030078,3.4977868,1.9e-05,2.236,0.28,1.945209,0.003967,1790.0,3.65364,3.47575,0.259566,248.389,1105.0,15.0,236.363,1.9925,5356.0,125.5,4.59,0.08,0.81,0.05,,,0.93,0.116315,"9,36,46",2020-11-24,2022-03-10,2022-12-14 12:09:24,CTOI from Marco Montalto,2394,1,False,False,True -144124187,2395.01,TIC 144124187.01,3,4,3,3,4,4,4,14.8,76.8,100.36,3,2,4,PC,PC,11.7622,0.007,,1,qlp-s46-tois,CTOI,11:43:31.05,-07:17:45.93,-0.528,0.07,-0.247,0.038,2459573.959999,0.0012659,15.7373186,1.27e-05,3.993,0.153,11.701927,0.002394,10720.0,2.20471,12.2054,0.602544,263.429,1122.0,47.0,413.22,6.3595,6394.0,125.5,4.43,0.09,1.14,0.05,,,1.28,0.201484,9,2020-11-24,2022-03-11,2022-12-14 12:09:24,ephemeris match to TIC 144124186; CTOI from Marco Montalto; period may be half (~7.86 days),2395,1,False,False,False -333734769,2396.01,TIC 333734769.01,3,5,5,3,4,4,4,25.8,66.0,58.82,3,2,4,PC,APC,11.4944,0.007,,1,qlp,CTOI,11:20:36.02,-26:09:11.29,-16.318,0.063,-2.465,0.052,2459303.511289,0.0018353,1.5099302,5e-06,1.329,0.391,2.423895,0.008376,2230.0,7.71456,8.891,0.71843,1087.82,1599.0,18.0,469.613,10.403,5735.0,128.1,3.96,0.08,1.76,0.09,,,1.02,0.135944,"9,36",2020-11-24,2021-11-05,2022-12-14 12:09:24,minor depth-aperture correlation; CTOI from Marco Montalto; TFOP APC/BEB; likely FP,2396,1,False,False,True -306337838,2397.01,TIC 306337838.01,3,4,3,3,3,4,4,11.9,53.9,45.04,1,2,1,PC,PC,12.0749,0.007,,1,qlp,CTOI,01:13:59.22,-06:49:36.63,28.073,0.093,2.564,0.051,2459136.96686,0.00175,6.00327,2e-05,3.947,0.269,5.355006,0.00277,4920.0,2.55153,7.59354,0.475838,271.529,1130.0,26.0,330.684,5.638,5527.0,130.1,4.37,0.08,1.06,0.06,,,0.97,0.121308,"3,30",2020-11-24,2020-11-24,2022-12-14 12:09:24,CTOI from Marco Montalto,2397,1,False,False,False -322807675,2398.01,TIC 322807675.01,3,4,3,3,3,4,4,9.2,78.8,56.87,4,2,3,PC,PC,11.6701,0.006,,1,qlp,CTOI,11:34:48.79,-25:36:16.98,-71.175,0.082,18.294,0.046,2459285.441427,0.0008166,19.4061437,3.13e-05,1.961,0.094,12.173955,0.005455,11150.0,5.02439,8.75357,0.545819,4.19986,398.0,54.0,195.153,1.828,5099.0,118.1,4.55,0.08,0.82,0.05,0.285164,0.0639148,0.856,0.099709,"9,36",2020-11-24,2021-11-10,2022-12-14 12:09:24,CTOI from Marco Montalto; artifact TIC 322807676 close by; period could be half; period updated to longest period alias with spoc-s36 (19.4 days),2398,1,False,False,True -219701535,2399.01,TIC 219701535.01,3,4,3,3,4,4,4,17.6,61.0,87.85,2,5,2,PC,PC,11.738,0.008,,1,qlp,CTOI,11:41:53.48,-21:47:48.35,3.804,0.064,-1.915,0.038,2459302.317644,0.0014131,5.4681892,1.64e-05,1.814,0.461,4.667828,0.012282,4290.0,11.3124,11.2463,0.803807,251.65,1109.0,23.0,611.359,13.0305,6597.0,132.4,4.16,0.09,1.61,0.08,,,1.38,0.228292,"9,36",2020-11-24,2021-11-10,2022-12-14 12:09:24,v-shaped; slight depth aperture; CTOI from Marco Montalto,2399,1,False,False,True -260849386,2400.01,TIC 260849386.01,5,5,5,5,5,5,5,10.4,36.2,24.99,0,0,1,PC,FP,10.7961,0.006,,1,qlp,CTOI,07:55:44.93,-54:15:58.57,-10.949,0.05,21.896,0.047,2458568.22176,0.0048,1.0339,0.00012,1.404,0.265,0.56473,0.001932,520.0,1.77988,5.37338,0.410717,2619.59,1993.0,12.0,465.461,5.667,6444.0,131.4,3.84,0.09,2.28,0.1,,,1.3,0.208236,"7,8,9",2020-11-24,2020-11-24,2022-12-14 12:09:24,shallow secondary; CTOI from Marco Montalto,2400,1,False,False,False -11521555,2401.01,TIC 11521555.01,3,4,3,3,4,4,4,70.4,85.6,317.0,1,15,3,PC,PC,9.0982,0.007,,1,qlp-s62-ffi,CTOI,09:45:47.34,-25:27:27.85,-6.196,0.07,-7.534,0.071,2460012.073961,0.000924,5.8681984,7.4e-06,3.651,0.447,2.869045,0.194385,2639.0,179.019,18.1157,1.02177,1402.27,1704.0,57.0,323.506,3.9455,6294.0,132.5,3.55,0.09,3.1,0.14,,,1.23,0.183913,"8,9,35,62",2020-11-24,2023-04-12,2023-04-25 12:12:35,CTOI from Marco Montalto,2401,1,False,False,True -1525480,2402.01,TIC 1525480.01,3,4,4,3,4,4,4,16.3,69.2,54.86,4,2,3,PC,PC,12.2668,0.007,,1,qlp,CTOI,10:26:06.65,-17:15:46.13,-19.542,0.066,-37.036,0.068,2459276.117338,0.0014372,5.5094951,1.7e-05,2.892,0.222,8.392522,0.005474,7700.0,5.04171,8.55825,0.52971,165.972,999.0,34.0,345.003,7.1805,5519.0,127.0,4.45,0.08,0.97,0.05,,,0.97,0.120574,"9,35",2020-11-24,2021-06-11,2022-12-14 12:09:24,CTOI from Marco Montalto,2402,1,False,False,False -293435336,2403.01,,5,5,5,5,5,5,5,355.3,488.5,317.0,0,1,4,KP,KP,9.02706,0.007,,1,spoc-s42-s46-b0A,SPOC/QLP,01:46:31.9,02:42:01.4,45.399,0.301,-40.819,0.281,2459448.895243,9.731313e-05,1.809881077104,3.9951388e-07,3.76366240661866,0.005679759,14.244038,0.025311,13033.5612700927,23.311634,21.9555548883512,1.0965389,5139.02662503137,2159.43415665033,534.0521,194.459,6.0225,6278.2,103.7,3.97,0.08,1.89120995998383,0.0944119,0.38476,0.0157239,1.226,0.176711,"30,42,43",2020-11-24,2022-07-15,2022-12-14 12:09:24,WASP-76 b,2403,1,False,False,True -142087638,2404.01,TIC 142087638.01,3,4,3,3,3,4,4,1.8,21.8,15.54,5,1,1,PC,PC,11.1464,0.006,,1,spoc,SPOC,06:33:46.12,-74:11:24.35,-14.483,0.04,5.89,0.051,2459384.851526,0.0051721,20.362700621171,0.00011685059,4.52617760955168,0.38883817,1.225747,0.063026,1128.31731082782,58.04735,4.05863695433092,0.8345386,75.4291155512852,751.630688011965,18.003895,295.737,2.154,6142.0,132.18,4.35874,0.0831648,1.18002998828888,0.0538191,,,1.16,0.158231,"1,3,4,5,6,7,8,9,10,11,13,27,28,29,30,31,33,34,35,36,37,38",2020-11-24,2021-11-04,2022-12-14 12:09:24,potential L1 given Rp error,2404,1,True,False,True -142087638,2404.02,,3,4,3,3,3,4,4,2.6,41.5,63.45,5,1,1,PC,PC,11.1464,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,06:33:46.12,-74:11:24.35,-14.483,0.04,5.89,0.051,2458558.995549,0.019549923,74.6046353855228,0.002144479,4.89331921276068,0.40248471,2.468169,0.162055,2270.68594458361,149.24709,9.28583517843419,12.61546,13.3546271497338,487.559576803984,15.861467,295.737,2.154,6142.0,132.18,4.35874,0.0831648,1.18002998828888,0.0538191,,,1.16,0.158231,"7,28,29,30,31,33,34,35,36,37,38,39",2021-07-19,2022-03-21,2022-12-14 12:09:24,,2404,2,True,False,True -142087638,2404.03,,3,4,3,3,3,4,4,0.0,13.8,40.97,5,1,1,PC,PC,11.1464,0.006,,3,spoc-s01-s39-b0A-PC,SPOC,06:33:46.12,-74:11:24.35,-14.483,0.04,5.89,0.051,2458512.162283,0.0055438364,746.066415649,0.00396711,4.05415137758299,0.4768053,2.400038,0.451233,2208.07563377776,415.51465,7.17940441557527,3.540157,1.56191075208808,285.124018448085,12.398652,295.737,2.154,6142.0,132.18,4.35874,0.0831648,1.18002998828888,0.0538191,,,1.16,0.158231,"7,28,29,30,31,33,34,35,36,37,38,39",2021-07-19,2022-03-21,2022-12-14 12:09:24,1 transit in Y1 and 1 in Y3; actual period most likely shorter than 746.066 days,2404,3,True,False,True -231297123,2405.01,,1,4,1,2,3,4,4,8.2,43.4,11.81,5,0,1,PC,PC,12.5515,0.006,,1,spoc,SPOC,03:00:34.58,-51:47:36.96,34.466,0.027,33.088,0.03,2459117.318372,0.0029212423,1.97940069143117,0.00041033613,1.50550045260672,0.582297,2.304962,0.245079,2120.69666187192,225.70084,3.45400744393109,4.032986,189.661590440599,946.486876394789,7.8988657,153.332,0.35,4001.0,122.07,4.47278,0.120164,0.756551,0.0763267,,,0.62,0.0794709,30,2020-11-24,2020-11-24,2022-12-14 12:09:24,low SNR,2405,1,False,False,True -212957629,2406.01,,1,4,4,1,4,4,4,5.2,113.3,8.16,7,1,5,CP,CP,14.3109,0.007,,1,spoc-s01-s46-b0A,SPOC,00:35:13.45,-03:22:19.5,225.752,0.203,-336.273,0.115,2459475.946047,0.0024959205,3.07668275317247,1.2859529e-05,1.26039927814954,0.1418781,20.823506,1.250339,18996.4079681994,1150.9419,2.77859546772128,0.24439844,6.69761863876306,410.298428328761,14.266813,55.419,0.2524,3163.0,157.0,5.0701,0.0262291,0.196600005030632,0.00604985,,,0.165654,0.0201034,"30,42,43",2020-11-24,2022-07-15,2022-12-14 12:09:24,TOI-2406 b now confirmed (Wells et al. 2021),2406,1,False,False,True -153078576,2407.01,,1,4,1,1,3,4,4,11.6,81.4,13.86,5,0,1,PC,PC,12.5264,0.007,,1,spoc,SPOC,03:18:59.17,-46:27:28.89,10.824,0.043,-98.214,0.046,2459116.620626,0.0010952285,2.7029186753149,0.00010224027,1.69986420703329,0.16553378,5.587085,0.213427,5132.67828342072,196.55464,3.79423915234342,0.52653366,44.0592242436249,657.096208250814,20.76344,92.4366,0.20565,3596.0,157.0,4.71597,0.00895826,0.524573028087616,0.0156219,,,0.52181,0.0203147,"3,4,30,31",2020-11-24,2021-10-04,2022-12-14 12:09:24,possible odd-even likely due to transit at end of 1st orbit,2407,1,False,False,True -67630845,2408.01,,3,4,3,3,3,4,4,7.0,56.7,25.6,1,0,1,PC,PC,11.9205,0.006,,1,qlp,SPOC,01:12:58.18,-32:57:57.66,105.714,0.042,1.022,0.038,2459128.296253,0.0024624,9.4636148,4.1e-05,3.061,0.662,5.496859,0.009713,5050.0,8.94572,5.45543,0.445623,63.7261,787.0,20.0,186.328,0.9965,4935.0,132.299,4.59823,0.0917702,0.75,0.05,,,0.81,0.0968579,"3,30",2020-11-24,2021-11-18,2022-12-14 12:09:24,Period confirmed at ~9.5 days with reprocessed QLP report including year 1 data,2408,1,False,False,True -321068176,2409.01,,5,5,5,5,5,5,5,7.6,54.2,31.68,1,0,1,PC,FA,11.2711,0.006,,1,spoc,SPOC,02:57:21.22,-41:11:30.38,-20.002,0.033,-18.125,0.045,2459121.065867,0.0014433513,12.9696927164963,0.002005543,1.11290721093666,0.47658247,4.445062,0.436347,4085.68453831023,401.81012,6.17098815169403,5.7270722,52.0502944310704,685.055168374853,13.134512,187.553,0.896,5017.0,127.41,4.38114,0.0853726,0.972753,0.0598945,,,0.83,0.0999482,30,2020-11-24,2021-01-29,2022-12-14 12:09:24,,2409,1,False,False,True -248391319,2410.01,,3,5,5,3,3,4,4,15.9,61.4,15.33,8,4,1,PC,APC,12.2478,0.006,,1,qlp-s43-tois,SPOC,01:18:30.45,-00:03:23.03,23.383,0.075,25.769,0.048,2459497.629903,0.0012919,0.7988525,1.7e-06,0.831,0.203,1.847322,0.009722,1700.0,8.95422,4.00703,0.412139,512.916,1325.0,15.0,232.822,2.1645,4785.0,131.261,4.45252,0.0942818,0.86,0.06,,,0.772,0.0924312,"3,30,42,43",2020-11-24,2022-03-24,2022-12-14 12:09:24,V-shaped; possibly SV,2410,1,False,False,True -10837041,2411.01,,2,5,5,2,4,4,4,9.9,65.3,3.71,16,5,3,PC,CP,10.4238,0.006,,2,spoc,SPOC,01:23:41.39,-08:42:06.46,-117.859,0.129,-95.29,0.116,2459116.012856,0.0021465607,0.782764954081168,0.000116974195,1.26214811194337,0.34622216,0.563851,0.057315,519.19121924496,52.78806,1.74727133288318,1.6286867,651.908207058821,1288.74312563257,8.229046,59.5362,0.2865,4099.0,122.6,4.52,0.11,0.727642,0.0690302,,,0.64,0.07922,30,2020-11-24,2020-11-30,2022-12-14 12:09:24,low-SNR,2411,1,False,False,True -684936227,2412.01,,5,5,5,5,5,5,5,0.3,3.8,2.37,0,0,0,PC,FA,11.9755,0.006,,1,qlp,QLP,04:09:31.1,-62:51:02.36,124.306,1.442,166.091,1.509,2459134.75391,0.00837,15.29859,0.00274,3.214,0.604,1.289534,0.005841,1187.0,5.38013,,,10.3396,499.0,1000.0,57.6851,3.6551,4131.3,119.7,,,,,,,,,29,2020-11-25,2020-11-25,2022-12-14 12:09:24,TOI 2412. False Alarm. Phantom target with TOI 722.,2412,1,False,False,True -206498307,2413.01,,5,5,5,5,5,5,5,16.9,58.5,104.12,0,0,1,PC,FP,11.3882,0.008,,1,spoc,SPOC,22:08:45.21,-18:59:33.79,55.708,0.072,-12.629,0.069,2459066.937927,0.002826358,13.4190392345475,0.0038999885,5.92218818360371,0.25540128,5.080668,0.190353,4668.53686954056,175.30649,12.4259674890747,0.8554618,165.232709973211,914.415872579375,9.303594,340.766,4.9185,5184.9,113.003,3.9254,0.0820625,1.69269,0.0957437,-0.87,0.11,0.88,0.104476,28,2020-11-25,2020-11-29,2022-12-14 12:09:24,Period could be half (6.7 d),2413,1,False,False,True -237320326,2414.01,,5,5,5,5,5,5,5,81.1,193.8,111.07,0,0,1,KP,KP,12.003,0.006,,1,spoc,SPOC,22:59:29.66,-60:26:52.15,20.181,0.043,-2.193,0.045,2459062.739359,0.00047481648,1.77711087925076,7.056715e-05,1.56695283657592,0.034640662,15.388653,0.274174,14073.5021162789,252.49207,12.9084634909617,0.71792996,1043.21217560139,1449.48228304503,34.547817,327.506,3.965,5627.0,133.891,4.45645,0.0841219,0.97906,0.0524221,,,1.0,0.131861,28,2020-11-25,2020-11-29,2022-12-14 12:09:24,WASP-164 b,2414,1,False,False,True -161223358,2415.01,,3,4,3,3,1,4,4,112.4,149.6,104.16,7,0,0,PC,PC,14.9333,0.008,,1,spoc,SPOC,22:43:54.48,-53:25:42.12,-2.779,0.065,-2.559,0.096,2459062.02582,0.00059526385,0.515300684034893,2.4174224e-05,1.0552261354704,0.06899071,44.373919,1.623215,40045.9779108444,1493.9188,12.4285567238616,0.6932893,484.536704614803,1196.60667159778,15.867476,341.299,6.858,3558.0,157.0,4.63662,0.0131225,0.617346,0.0203056,,,0.602015,0.0214176,28,2020-11-25,2020-11-29,2022-12-14 12:09:24,possible secondary near phase 0.5; short period modulation possibly phased with transits,2415,1,False,False,True -237922465,2416.01,TIC 237922465.01,4,4,4,5,3,4,4,13.7,48.6,91.8,1,1,1,PC,PC,12.4333,0.006,,1,qlp-s38-tois,SPOC,03:49:21.35,-60:47:13.87,8.644,0.035,-10.165,0.041,2459352.544159,0.0010184,8.2754608,1.49e-05,3.755,0.107,7.09125,0.000763,6510.0,0.703,11.5451,0.6243,130.93,942.0,33.0,557.733,5.9985,5515.2,99.1,4.24,0.12,1.39,0.07,0.33,0.1,1.0,0.121442,"2,3,4,8,11,28,29,30,31,38",2020-11-25,2022-10-04,2022-12-14 12:09:24,,2416,1,False,False,True -49617263,2417.01,,5,5,5,5,5,5,5,7.7,36.7,21.44,0,2,1,PC,FP,10.2589,0.006,,1,qlp,QLP,02:31:32.45,-40:00:58.33,33.492,0.043,11.933,0.062,2459139.2966,0.00345,4.83266,5e-05,2.308,0.404,0.901535,0.002028,830.0,1.86781,4.9031,0.375862,161.807,993.0,9.0,257.337,2.2535,5485.4,120.4,3.9,0.08,1.83,0.1,-0.24,0.09,0.96,0.120004,"3,30",2020-11-25,2020-11-29,2022-12-14 12:09:24,Depth-aperture. Potential visual binary 2arcsec away in Gaia with similar distance and proper motion but 3 mags fainter.,2417,1,False,False,False -65347776,2418.01,,5,5,5,5,5,5,5,7.0,86.6,43.47,4,2,1,PC,FP,10.9166,0.006,,1,qlp,QLP,02:38:54.06,-27:19:27.22,38.618,0.063,-14.991,0.069,2459133.37121,0.00459,25.86696,0.00025,4.923,0.694,2.434777,1.338039,2240.0,1231.62,7.41184,3.1277,100.989,883.0,11.0,135.101,0.6055,5095.0,120.3,4.56,0.08,0.8,0.05,,,0.855,0.0978947,"3,4,30",2020-11-25,2020-11-29,2022-12-14 12:09:24,Only two transits; one Y1 one Y3. 25.867 days is one of at least 27 possible period aliases,2418,1,False,False,True -358248442,2419.01,,3,4,3,3,3,4,4,3.2,29.1,19.34,3,2,1,PC,PC,10.4354,0.006,,1,spoc,QLP,03:33:04.89,-56:35:18.37,-12.922,0.037,-19.673,0.043,2459150.183457,0.0044955886,18.9083552270956,0.006448075,6.21151466153431,0.5984517,1.228232,0.095835,1130.6037005347,88.263054,4.61658451888936,1.1922156,102.770583852633,812.057824895832,9.653497,245.495,1.2325,5924.0,681.6,4.14,0.33,1.3542,0.0626633,,,1.1,0.138764,"2,3,4,29,30,31",2020-11-25,2021-01-05,2022-12-14 12:09:24,possible multi,2419,1,False,False,True -268532343,2420.01,,3,4,3,3,3,4,4,23.2,59.8,95.47,3,2,1,PC,PC,10.8285,0.007,,1,qlp,QLP,00:59:18.44,-19:46:16.19,44.886,0.064,18.641,0.047,2459136.26698,0.0016,5.84259,2e-05,3.747,0.283,2.902793,0.000903,2670.0,0.831747,11.8252,0.670345,307.599,1166.0,21.0,435.174,7.207,5707.0,127.5,3.76,0.08,2.2,0.12,,,1.02,0.125923,"3,30",2020-11-25,2020-11-29,2022-12-14 12:09:24,,2420,1,False,False,False -70524163,2421.01,TIC 70524163.01,3,5,5,3,4,4,4,30.9,83.0,81.5,3,7,1,PC,CP,10.6918,0.006,,1,qlp,UNKNOWN,02:12:36.96,-35:23:27.31,28.914,0.025,-3.644,0.038,2459139.61885,0.00094,4.3474,1e-05,4.684,0.232,3.828534,0.000608,3520.0,0.560123,10.753,0.594871,786.037,1475.0,52.0,327.927,3.2165,5618.0,132.5,3.93,0.08,1.79,0.1,,,0.99,0.124627,"3,30",2020-11-25,2020-11-04,2023-03-03 12:02:50,CTOI from Marco Montalto,2421,1,False,False,False -29919341,2422.01,,3,5,5,3,3,4,4,38.6,287.4,71.88,0,2,1,PC,APC,9.4843,0.007,,1,qlp,QLP,01:39:32.28,-07:23:41.02,20.1,1.3,-28.8,1.4,2459131.39396,0.00205,18.23603,7e-05,4.91,0.32,3.360119,0.928762,3090.0,855.056,10.0179,,411.58,,24.0,100.804,,6159.7,,,,0.88,,-0.27,0.12,,,"3,30",2020-11-25,2020-11-29,2022-12-14 12:09:24,two transits; one in Y1 one in Y3; 18.236d is one of at least 40 potential period aliases,2422,1,False,False,False -197807043,2423.01,,3,5,5,3,3,4,4,,,131.57,0,0,1,PC,PC,9.5137,0.006,,1,qlp,QLP,03:33:52.14,-57:37:16.66,-12.128,0.125,5.826,0.136,2459097.062,0.0005511,0.0,0.0,4.208,0.156,13.811177,0.019022,12640.0,17.5196,14.2836,0.853617,40.1659,701.0,152.0,133.354,1.774,6057.0,135.9,4.41,0.08,1.1,0.05,,,1.13,0.151335,"2,4,29,30,31",2020-11-25,2020-11-25,2022-12-14 12:09:24,,2423,1,False,True,True -313891529,2424.01,TIC 313891529.01,5,5,5,5,5,5,5,34.5,50.9,317.0,0,14,1,PC,FP,10.2845,0.007,,1,spoc,CTOI,00:01:15.62,-28:29:35.6,20.554,0.072,-1.25,0.054,2459092.273962,0.0028012164,12.3750536935672,0.0039815535,6.61661810808518,0.20580262,4.521298,0.175085,4155.61048250863,161.24648,17.190984566167,1.0205122,592.603296407526,1258.3769809899,43.270164,410.945,9.2965,6173.5,130.305,3.76326,0.0854544,2.36235,0.127678,-0.31,0.12,1.18,0.164214,29,2020-12-04,2020-12-03,2022-12-14 12:09:24,large radius; single transit; CTOI from Jana Steuer; artifact TIC 313891530 close by,2424,1,False,False,True -248387177,2425.01,TIC 248387177.01,3,4,3,3,4,4,4,3.6,74.4,54.4,4,10,8,PC,PC,11.2415,0.007,,1,qlp-s43-tois,CTOI,01:16:31.37,-00:17:24.37,4.934,0.103,-12.504,0.065,2459436.979806,0.0010694,50.6939885,0.0002554,4.068,0.186,12.228856,0.003823,11200.0,3.52116,8.48837,0.510086,2.93192,364.0,43.0,159.676,1.2615,5216.0,124.037,4.6039,0.084626,0.78,0.04,,,0.89,0.11646,"3,30,42,43",2020-12-04,2022-04-19,2022-12-14 12:09:24,CTOI from Jana Steuer,2425,1,False,False,True -97486178,2426.01,,2,4,4,2,3,4,4,4.1,42.9,6.33,1,4,1,PC,PC,9.97008,0.006,,1,qlp,QLP,02:55:14.81,-20:46:52.64,168.492,0.066,27.455,0.079,2459168.00914,0.00356,4.08165,4e-05,2.691,0.466,0.499554,0.001518,460.0,1.39775,2.38239,0.180302,376.072,1226.0,10.0,138.301,0.7385,5716.0,128.4,4.42,0.08,1.02,0.05,,,1.019,0.128087,31,2020-12-22,2020-12-22,2022-12-14 12:09:24,artifact TIC 97486175 close by,2426,1,False,False,True -142937186,2427.01,,1,4,1,1,4,4,4,20.1,140.4,4.65,8,4,2,PC,CP,9.0138,0.006,,1,qlp,QLP,03:29:10.02,-31:21:46.32,150.453,0.042,41.387,0.064,2459169.61994,0.00142,1.30613,0.00014,0.634,0.258,0.608183,0.025804,560.0,23.7661,1.99844,0.411218,62.7136,783.0,15.0,28.5147,0.0278,4072.0,120.9,4.58,0.11,0.68,0.06,,,0.64,0.0791406,31,2020-12-22,2020-12-22,2022-12-14 12:09:24,L1 candidate,2427,1,False,False,True -274193763,2428.01,,3,5,5,3,3,4,4,,,16.62,0,0,2,PC,APC,9.966,0.29,,1,qlp-s31-ffi,QLP,03:35:19.55,03:01:43.1,,,,,2459168.03367,0.0014,7.57017,0.00081,0.916,0.205,1.629827,0.004175,1500.0,3.84542,,,,,18.0,,,,,,,,,,,,,31,2020-12-22,2022-08-09,2022-12-14 12:09:24,no stellar radius; Gaia EDR3 parallax=4 mas; this TIC is an artifact; the real star is TIC 274193764; there is a close neighbor (TICID 274193765) about 5 asec away,2428,1,False,False,False -420051632,2429.01,,2,4,2,2,4,4,4,5.1,67.4,7.13,4,5,6,PC,PC,9.4752,0.006,,1,spoc,QLP,02:25:27.34,01:03:27.1,-11.136,0.092,-70.096,0.08,2458410.9914,0.0021971846,7.08462260213353,3.3195065e-05,3.30311427497917,0.22366287,0.739315,0.04891,680.702055914972,45.046593,2.56632155781904,0.22336794,115.401256503064,835.93475887925,12.132719,87.0852,0.4101,5517.8,142.9,4.57,0.09,0.842832982540131,0.0515352,0.175,0.025,0.97,0.125058,"4,31",2020-12-22,2021-07-08,2022-12-14 12:09:24,potential L1; artifact TIC 420051631 close by,2429,1,False,False,True -23170835,2430.01,,3,4,3,3,3,4,4,15.3,67.2,19.83,0,3,1,PC,PC,10.3682,0.009,,1,qlp,QLP,03:06:14.11,-09:48:36.19,18.359,0.079,2.806,0.092,2459168.8759,0.00197,1.10071,0.0,0.909,0.303,0.738552,0.005922,680.0,5.4544,4.67495,0.474088,1082.9,1598.0,12.0,297.858,5.288,6409.0,147.5,4.14,0.09,1.59,0.08,,,1.29,0.205738,31,2020-12-22,2021-01-10,2022-12-14 12:09:24,two stars in pixel,2430,1,False,False,False -258804746,2431.01,,1,4,1,1,4,4,4,335.0,707.2,26.58,12,10,6,PC,PC,9.5209,0.006,,1,qlp-s42-tois,QLP,02:31:03.67,08:22:53.85,374.953,0.069,-85.583,0.063,2459498.172162,0.0003765,0.224195,4e-07,0.292,0.026,0.586456,0.691004,540.0,636.236,5.59553,1.95546,2649.15,1998.0,45.0,36.0559,0.0593,4079.0,126.0,4.58,0.11,0.68,0.07,,,0.64,0.0780983,"31,42,43",2020-12-22,2022-09-20,2022-12-14 12:09:24,ultra short period,2431,1,False,False,True -347553438,2432.01,,3,4,3,3,3,4,4,21.7,54.1,59.9,4,2,1,PC,PC,10.1849,0.008,,1,qlp,QLP,03:00:27.07,00:22:51.03,-1.088,0.066,-12.245,0.061,2459168.25205,0.00774,1.82738,0.00114,1.491,0.379,0.945002,0.006659,870.0,6.13301,8.96794,0.917627,727.6,1446.0,9.0,463.05,8.647,6130.5,136.1,3.58,0.09,2.89,0.15,0.099,0.012,1.16,0.161093,31,2020-12-22,2021-01-10,2022-12-14 12:09:24,evolved star; artifact TIC 347553439 close by; 2 additional sources in a few asecs distance: 347553440 & 640000127,2432,1,False,False,False -405763009,2433.01,,2,5,5,2,4,4,4,,,3.94,0,0,4,PC,PC,12.0349,0.007,,1,spoc-s14s19-b02-reprocessed-new,SPOC,19:57:45.66,56:58:15.93,151.805,0.085,115.559,0.083,2458746.356236,0.0042967275,0.0,0.0,2.86865834730481,0.6138283,3.672911,0.464641,3377.16025868677,427.8585,1.81031012789185,0.6563029,0.381980293121693,200.507207706041,7.770456,32.6094,0.0435,3323.0,157.0,4.91599,0.00464274,0.308919,0.00923185,,,0.286819,0.0201807,"14,15,16,41",2020-12-22,2022-02-10,2022-12-14 12:09:24,The second transit looks real; possible single transit. Very low SNR; possible statistical fluctuation,2433,1,False,True,True -155001079,2434.01,,3,5,5,3,4,4,4,12.7,54.8,44.66,0,1,4,PC,APC,9.06657,0.006,,1,spoc,SPOC,23:00:37.3,46:01:57.13,-3.693,0.071,-3.594,0.062,2458739.678081,0.0015356885,1.38081376694668,7.907658e-05,0.913359560453463,0.2457945,0.357456,0.042168,329.175202644578,38.83706,7.55314433724353,3.0626397,98886.4971360023,4522.76474151849,8.06344,594.987,15.9325,9431.0,214.831,3.64947,0.0687193,3.83824,0.143759,,,2.397,0.329821,"16,17",2020-12-22,2020-12-22,2022-12-14 12:09:24,,2434,1,False,False,True -298164705,2435.01,,2,5,5,2,4,4,4,,,13.74,0,2,5,PC,PC,10.5142,0.006,,1,spoc,SPOC,14:37:21.22,56:39:58.26,-35.336,0.036,-0.951,0.036,2458743.374055,0.0031565565,0.0,0.0,5.0482027294868,0.3861865,1.999725,0.239781,1840.11967822887,220.82182,3.77611039785404,0.7458375,29.6935086650413,595.367507460944,8.56589,150.086,0.5045,5650.08,108.163,4.55536,0.0707232,0.874994,0.0383417,0.028,0.015,1.003,0.122593,"15,16",2020-12-22,2020-12-22,2022-12-14 12:09:24,single transit at TBJD~1744,2435,1,False,True,True -154568734,2436.01,TIC 154568734.01,2,5,5,2,4,4,4,,,6.41,0,3,5,PC,PC,8.55595,0.006,,1,spoc-s14s19-b02-reprocessed-new,SPOC,12:45:11.5,72:07:23.1,-64.953,0.062,-20.705,0.057,2458722.393707,0.005463425,0.0,0.0,8.73026894512439,0.7770518,0.399433,0.036938,367.823341927884,34.02031,2.41015331363272,0.91962475,43.9144709747482,656.555831984359,10.636549,102.97,0.3565,6291.0,130.715,4.34633,0.083556,1.2336,0.0573241,,,1.232,0.180355,"14,15,21,40,41,47,48",2020-12-22,2022-11-15,2022-12-14 12:09:24,single transit at ~1722 TBJD,2436,1,False,True,True -251094370,2437.01,,3,4,3,3,4,4,4,5.0,35.9,15.85,1,3,2,PC,PC,11.2571,0.007,,1,spoc,SPOC,02:31:45.26,-05:30:53.95,7.135,0.074,-18.771,0.073,2459147.885503,0.0037920186,5.1660126889228,0.0014862303,3.01966000777545,0.5149622,1.372731,0.152116,1263.53263050097,140.09406,4.10625514797481,1.417944,381.06170544532,1126.8564016905,8.409164,286.8,3.39,5927.0,130.221,4.37728,0.0782077,1.11457,0.0551381,,,1.08,0.134117,31,2021-01-06,2021-01-06,2023-07-07 12:03:01,Bad transit shape,2437,1,False,False,True -686072378,2438.01,,5,5,5,5,5,5,5,,,38.67,2,0,0,PC,FP,16.2463,0.008,,1,spoc,SPOC,04:32:54.45,-32:53:13.63,33.351,0.107,46.733,0.162,2459175.406024,0.00038417146,1.94260032314713,5.3203483e-05,1.020674321877,0.04448895,761.432366,14.391456,504062.379922048,13167.56,,,1076.08047408318,1460.76696001077,56.03001,299.842,6.133,5780.0,,4.438,,,,,,,,"31,32",2021-01-06,2021-02-02,2022-12-14 12:09:24,Short transit duration. Likely a Jupiter around WD!! Planet radius is calculated for Sun-like star and should not be included with the alert delivery.,2438,1,False,False,True -274194927,2439.01,,3,4,3,3,4,4,4,4.1,40.0,22.54,1,2,5,PC,PC,11.2212,0.006,,1,spoc,SPOC,03:36:06.81,01:56:01.73,-3.7,2.0,-12.4,2.2,2459152.817497,0.0026503203,14.361478873089,0.0037922522,4.09649944006472,0.36476812,3.109391,0.178538,2859.75777134714,164.4264,5.05103412445729,0.97811514,50.2582087591789,679.080877312285,16.087576,246.165,,5283.0,,4.438,,0.946146,,,,,,31,2021-01-06,2021-01-06,2022-12-14 12:09:24,The first transit is ramp-like.,2439,1,False,False,True -129839175,2440.01,,3,5,5,3,3,4,4,249.2,201.7,317.0,2,2,1,PC,APC,11.0529,0.006,,1,spoc,SPOC,03:41:04.81,-36:56:37.43,39.436,0.035,31.137,0.046,2459144.977997,0.00034352895,0.646157091483488,1.5566358e-05,1.19638220908773,0.03075059,6.851528,0.105,6290.62113888373,96.704056,15.3572514208161,8.059975,4527.95088721258,2092.16135802491,35.667366,212.588,1.146,5256.8,104.732,4.27128,0.0767825,1.14951,0.0563065,-0.78,0.11,0.9,0.110123,31,2021-01-06,2021-01-06,2022-12-14 12:09:24,V-shaped; possibly EB,2440,1,False,False,True -219175972,2441.01,,2,4,2,2,3,4,4,1.1,36.0,8.88,10,0,3,PC,PC,12.8332,0.007,,1,spoc-s01-s39-b0A-PC,SPOC,06:05:38.44,-51:40:46.61,-55.154,0.055,128.546,0.067,2458335.501412,0.0015691326,12.8900767621728,3.4532648e-05,2.19702131918048,0.31107548,4.199869,0.254946,3860.75005176144,234.78616,2.92035711243964,0.68502957,4.12142890843248,363.397305512404,14.537606,84.5243,0.1908,3478.0,157.0,4.76582,0.00699459,0.467689990997314,0.0140024,,,0.465235,0.0203602,"1,5,7,11,28,31,32,33,34,38",2021-01-06,2022-03-21,2022-12-14 12:09:24,,2441,1,True,False,True -219175972,2441.02,,1,4,1,2,3,4,4,1.6,29.3,4.79,10,0,3,PC,PC,12.8332,0.007,,2,spoc,SPOC,06:05:38.44,-51:40:46.61,-55.154,0.055,128.546,0.067,2458325.908591,0.004312724,5.55148569021324,4.364267e-05,2.01869268398232,0.38610852,1.393158,0.215791,1282.32278991626,198.73074,2.03190621977919,0.26606938,12.6719325207122,481.205366975619,7.887797,84.5243,0.1908,3478.0,157.0,4.76582,0.00699459,0.467689990997314,0.0140024,,,0.465235,0.0203602,"1,5,7,11,28,31,32,33,34",2021-07-19,2021-07-19,2023-03-13 00:00:00,low SNR; interior to TOI 2441.01,2441,2,True,False,True -168871868,2442.01,,5,5,5,5,5,5,5,13.9,87.2,74.98,0,0,0,EB,FP,11.402,0.008,,1,qlp,SPOC,04:20:24.16,-31:04:53.78,0.392,0.037,-8.095,0.044,2459183.305376,0.0010158,17.1217196,3.28e-05,6.507,0.311,152.450559,0.000762,131000.0,0.701384,10.2267,0.516223,204.585,1053.0,294.0,262.475,1.662,5762.0,130.882,4.44944,0.077825,1.0,0.05,,,1.03,0.127642,"4,5,31,32",2021-01-06,2021-02-03,2022-12-14 12:09:24,P=2x8.6d; RV error ~4 km/s; TFOP FP EB,2442,1,False,False,True -318753380,2443.01,,1,4,1,1,4,4,4,5.8,114.6,7.71,2,3,6,PC,PC,8.2969,0.006,,1,spoc,SPOC,02:40:43.17,01:11:58.83,284.011,0.08,231.78,0.079,2459148.098617,0.0014688679,15.6692322098987,0.0021404622,4.56285298177157,0.20758453,1.5139,0.048908,1393.38148015132,45.044777,2.68688927331351,0.5470478,13.2931175749932,486.99719644956,26.667023,23.9258,0.02325,4214.44,131.326,4.52845,0.109238,0.732115,0.0713468,-0.01,0.05,0.66,0.0789265,31,2021-01-06,2021-01-06,2022-12-14 12:09:24,,2443,1,False,False,True -29959760,2444.01,,3,4,3,3,3,4,4,148.6,126.5,317.0,7,0,2,PC,PC,13.6732,0.008,,1,spoc,SPOC,02:49:03.31,-16:33:33.41,59.179,0.097,84.249,0.119,2459145.041127,0.0010743772,1.64738872642782,0.00012428878,1.3242991003046,0.09754114,35.677059,2.186534,32325.7685305953,2011.8455,15.735883478407,21.552816,97.0829104598735,800.581308934118,16.69659,190.748,2.2995,3556.0,157.0,4.65625,0.0112725,0.594044,0.0182083,-0.489923,0.0189853,0.583202,0.020617,31,2021-01-06,2021-01-06,2022-12-14 12:09:24,V-shaped; marginal odd-even (2 sigma) Brighter neighbor; SG1 should check neighbor,2444,1,False,False,True -439867639,2445.01,,1,4,4,1,4,4,4,12.5,14.7,2.56,5,0,3,PC,CP,13.1292,0.008,,1,spoc,SPOC,02:53:15.88,00:03:08.41,57.212,0.108,-24.05,0.132,2458411.217326,0.00062821974,0.371133443173804,1.5752827e-05,0.491818661398675,0.26556128,2.524688,0.355198,2322.62181508321,327.0959,1.40621466263836,0.8266142,204.487360238859,964.464766372473,9.401387,48.582,0.24745,3333.0,157.0,4.95786,0.0096125,0.272233009338379,0.00820015,,,0.245288,0.020165,"4,31",2021-01-06,2021-01-06,2022-12-14 12:09:24,small PC around M-dwarf,2445,1,False,False,True -142868621,2446.01,,2,4,2,2,3,4,4,3.7,46.3,16.52,0,3,1,PC,PC,10.208,0.006,,1,spoc,SPOC,03:23:46.26,-31:15:54.67,-8.717,0.029,-66.731,0.04,2458418.91465,0.08279818,18.6858620467112,0.0021039941,5.48439999860532,0.621795,1.321007,0.138282,1215.95298863347,127.353905,4.20755378536119,0.36080632,53.837407132589,690.861169552652,8.18483,159.87,0.5795,5926.0,127.064,4.48242,0.078275,0.987496018409729,0.0484472,,,1.08,0.14078,"4,31",2021-01-06,2021-01-06,2022-12-14 12:09:24,actual period is 18.7 d,2446,1,False,False,True -1167538,2447.01,,3,5,5,3,3,4,4,,,74.51,0,63,3,PC,PC,10.0127,0.006,,1,qlp,QLP,04:43:59.42,-31:54:23.89,-0.423,0.041,-31.564,0.059,2459168.988935,0.0006729,0.0,0.0,8.291,0.23,9.52557,0.000598,8735.0,0.550854,10.2185,0.521054,44.5933,719.0,37.0,148.987,0.6125,5825.0,130.9,4.43,0.08,1.04,0.05,,,1.049,0.137918,"5,31,32",2021-01-06,2021-02-11,2022-12-14 12:09:24,Single transit. Orbital period is likely > 30 days.,2447,1,False,True,True -231721005,2448.01,,5,5,5,5,5,5,5,2.2,28.4,13.35,3,1,3,PC,FP,10.0039,0.006,,1,qlp,QLP,05:22:57.65,-53:45:52.53,0.846,0.064,12.289,0.05,2459327.82377,0.0038064,9.0182418,7.17e-05,3.061,0.376,0.412658,0.000506,380.0,0.465988,3.71188,0.170856,809.294,1485.0,15.0,490.818,6.5195,9671.0,188.6,4.33,0.06,1.78,0.05,,,2.47,0.326949,"3,4,6,7,10,13,27,30,31,32,33,34,37",2021-01-06,2021-08-12,2022-12-14 12:09:24,make sure not on neighbor TIC 231721006; possible multi; possible centroid offset,2448,1,True,False,True -231721005,2448.02,,1,4,1,1,3,4,4,1.5,22.5,13.82,3,1,3,PC,PC,10.0039,0.006,,2,qlp,QLP,05:22:57.65,-53:45:52.53,0.846,0.064,12.289,0.05,2459306.560237,0.0051317,19.7576219,0.000187,3.33,0.93,0.412658,0.001532,380.0,1.41078,3.78944,0.256685,347.087,1202.0,10.0,490.818,6.5195,9671.0,188.6,4.33,0.06,1.78,0.05,,,2.47,0.326949,"3,4,6,7,10,13,27,30,31,32,33,34,37",2021-10-25,2021-10-25,2022-12-14 12:09:24,potential multi,2448,2,True,False,True -170729775,2449.01,,3,5,5,3,3,4,4,34.8,186.5,96.54,0,1,3,PC,PC,9.8999,0.006,,1,qlp,QLP,04:31:56.25,-34:27:19.92,10.001,0.036,-58.53,0.053,2459186.901539,0.000685,16.6542431,2.83e-05,7.792,0.186,11.096275,0.000689,10168.0,0.634987,11.9082,0.547507,362.642,1215.0,74.0,156.786,0.5845,6054.0,128.5,4.43,0.08,1.08,0.05,,,1.13,0.144374,"4,5,31,32",2021-01-06,2021-01-06,2022-12-14 12:09:24,single transit,2449,1,False,False,True -408114363,2450.01,,3,4,3,3,4,4,4,6.3,66.9,33.85,3,3,4,PC,PC,11.4894,0.006,,1,spoc,SPOC,05:11:48.61,06:47:44.68,31.934,0.082,5.688,0.06,2459179.177363,0.0015591906,17.8832414144624,0.0021953706,4.34209315880805,0.1712005,7.354099,0.214037,6750.48787822684,197.11623,6.41711640290065,0.4788033,27.1279511090202,582.068367349116,29.821081,188.967,1.748,5426.0,133.219,4.63305,0.0820061,0.776644,0.0402336,,,0.945,0.123032,32,2021-02-03,2021-02-03,2022-12-14 12:09:24,,2450,1,False,False,True -4294779,2451.01,,5,5,5,5,5,5,5,59.1,88.0,55.26,1,0,2,PC,FP,15.8552,0.008,,1,spoc,SPOC,05:25:15.04,-00:46:14.69,0.953,0.189,-0.742,0.157,2459174.475148,0.0016083046,0.343889185962649,4.4618242e-05,0.969606906244014,0.2804137,27.321877,3.28799,24850.3953804569,3023.77,8.56111789358653,1.8986349,449.315951364573,1174.24226698738,7.7705545,361.474,16.5445,3199.0,157.0,4.70217,0.0173915,0.540483,0.0238973,,,0.536614,0.0259742,32,2021-02-03,2021-02-03,2022-12-14 12:09:24,some stellar variability; high proper motion,2451,1,False,False,True -219208037,2452.01,,5,5,5,5,5,5,5,13.7,56.9,11.37,2,1,1,EB,FP,11.1925,0.006,,1,spoc,SPOC,06:12:23.57,-50:55:51.41,-28.664,0.096,11.981,0.089,2459229.062884,0.0018471171,0.977680523622344,0.00013061972,0.765739728123979,0.20487942,1.048586,0.116852,965.317519177823,107.619026,3.37842515645105,5.26633,1378.72547968512,1554.13664210785,8.106384,148.462,0.9405,4456.2,205.6,,,1.09813,0.0921256,,,0.69,0.0829382,"32,33,34",2021-02-03,2021-04-20,2022-12-14 12:09:24,significant odd-even from multiyear analysis; FP,2452,1,False,False,True -59128183,2453.01,,2,4,2,2,4,4,4,4.9,56.3,9.49,3,1,8,PC,PC,12.4223,0.007,,1,qlp-s44-tois,SPOC,04:59:21,12:56:10.87,45.943,0.072,-22.082,0.051,2459516.817354,0.0018489,4.4414094,1.71e-05,1.147,0.199,3.174987,0.011602,2920.0,10.6861,3.02052,0.201296,8.65827,477.0,10.0,81.9043,0.3055,3609.0,157.0,4.73522,0.00801083,0.5,0.01,,,0.500519,0.0201673,"5,32,43,44",2021-02-03,2022-03-11,2022-12-14 12:09:24,,2453,1,False,False,True -67782629,2454.01,,2,4,2,2,4,4,4,2.7,34.5,6.84,0,3,2,PC,PC,10.7047,0.006,,1,spoc,SPOC,04:17:17.44,-07:45:57.63,-27.357,0.046,-71.984,0.031,2459174.855266,0.0044728047,8.50636868265066,0.0035080244,2.8291905313501,0.612043,1.051799,0.133691,968.273425292679,123.12597,2.50510883361041,2.8262062,44.8115833612133,659.883580084553,7.3439903,91.9976,0.2919,4431.2,102.3,4.45,0.09,0.82124,0.0562111,-0.005,0.023,0.69,0.0858202,"5,32",2021-02-03,2021-02-03,2022-12-14 12:09:24,Potential stellar variability; low SNR,2454,1,False,False,True -434260570,2455.01,,3,4,4,3,4,4,4,82.9,127.9,317.0,4,0,11,PC,PC,12.986,0.008,,1,spoc-s01-s46-b0A,SPOC,04:16:58.52,14:46:17.62,16.36,2.0,-53.75,2.0,2459474.585287,0.00044509754,4.72048947503588,7.4414447e-06,1.82352151185606,0.032522243,52.026092,0.905194,46787.8632428164,833.36676,14.3271610780787,3.3671286,18.2091876407827,526.856560558932,68.10719,143.9793,,3553.0,157.0,4.74625,0.00828727,0.489915996789932,0.0150345,,,0.488002,0.0206365,"5,32,43,44",2021-02-03,2022-07-15,2022-12-14 12:09:24,EPIC 210463428.01; v-shaped; likely EB,2455,1,False,False,True -311271011,2456.01,,2,5,5,2,4,4,4,,,8.47,0,3,7,PC,PC,9.588,0.006,,1,spoc,SPOC,05:22:19.17,10:34:30.18,44.861,0.067,-61.173,0.053,2459178.894556,0.0025033178,0.0,0.0,1.85223071369561,0.5873412,1.325201,0.16429,1219.81070944545,151.30501,2.83986847199819,2.4257894,20.0171149272904,539.473505078998,7.675151,69.1329,0.2004,4968.0,124.299,4.55877,0.0950973,0.788051,0.0514899,,,0.82,0.103758,32,2021-02-03,2021-02-03,2022-12-14 12:09:24,potential single with transit at about 2179 days,2456,1,False,True,True -117799904,2457.01,,2,4,2,2,4,4,4,2.1,46.7,8.06,2,4,3,PC,PC,10.8749,0.006,,1,spoc,SPOC,04:40:40.16,-12:53:26.61,15.264,0.041,19.486,0.033,2459175.255066,0.002807844,14.1993537532126,0.00400695,2.56296656892901,0.4850636,2.020433,0.232434,1859.15715034922,214.05707,2.75910675935504,1.3017113,9.87479384256863,452.117959587765,8.544865,61.425,0.1221,4045.0,124.442,4.63657,0.118939,0.631569,0.0632463,,,0.63,0.0812986,32,2021-02-03,2021-02-03,2022-12-14 12:09:24,potential L1,2457,1,False,False,True -449197831,2458.01,,2,5,5,2,4,4,4,5.3,53.7,6.27,1,4,4,PC,PC,8.71008,0.006,,1,spoc,SPOC,05:18:29.17,01:15:12.38,-3.091,0.068,-99.263,0.055,2459177.402573,0.003379292,3.73696893919192,0.0009495716,1.99174218472419,0.894666,0.337171,0.052033,310.497808806371,47.92311,2.37973234519245,5.718552,897.687294861408,1396.05014864545,8.751414,112.958,0.5375,6092.0,124.5,4.25,0.08,1.32975,0.0603015,,,1.143,0.151181,32,2021-02-03,2021-02-03,2022-12-14 12:09:24,potential L1,2458,1,False,False,True -192790476,2459.01,TIC 192790476.01,2,4,2,2,3,4,4,3.2,79.9,8.97,3,2,1,PC,PC,9.3951,0.006,,1,spoc,SPOC,05:28:34.4,-39:22:22.96,88.576,0.042,16.749,0.045,2458452.334564,0.0011433272,19.1047019158395,4.1666965e-05,3.25167283263727,0.17819591,2.071453,0.114078,1906.05962452689,105.064514,2.93653366851175,0.54608005,8.51872971029599,435.725983921313,17.074867,36.6113,0.03455,4195.0,124.8,4.59888,0.106536,0.675092995166779,0.0630151,,,0.66,0.0763494,"5,6,32,33",2021-02-03,2021-07-13,2022-12-14 12:09:24,potential L1 candidate; deep transit around ~2200 TBJD in SPOC multisector that may be another planet,2459,1,False,False,True -454224694,2460.01,,3,5,5,3,3,4,4,46.7,156.9,35.23,6,2,1,PC,APC,11.3357,0.006,,1,spoc,SPOC,05:18:06.76,02:33:49.23,2.519,0.053,-22.799,0.048,2459174.385712,0.001292298,0.515460975114944,4.600594e-05,0.850251194154548,0.11894999,1.588969,0.156114,1462.42423092094,143.7763,6.56885216679336,13.43989,7358.81927880027,2362.22784193657,12.84038,279.5,2.9685,5994.0,122.381,4.44879,0.0765584,1.03783,0.0476885,,,1.104,0.141703,32,2021-02-03,2021-02-03,2022-12-14 12:09:24,V-shaped,2460,1,False,False,True -411839167,2461.01,,5,5,5,5,5,5,5,35.8,106.9,116.41,0,22,5,KP,KP,10.8243,0.006,,1,qlp-s44-tois,SPOC,05:15:40.76,16:16:43.32,2.717,0.112,-12.983,0.094,2459515.241843,0.0006012,6.1802675,2.3e-06,3.868,0.139,5.846114,4.7e-05,5370.0,0.043474,13.2741,0.845273,519.967,1330.0,144.0,372.632,18.55,6513.0,132.8,4.08,0.1,1.74,0.11,,,1.338,0.226837,"32,43,44",2021-02-03,2022-03-11,2022-12-14 12:09:24,EPIC 246851721 b / K2-267b,2461,1,False,False,True -248434780,2462.01,,3,4,3,3,3,4,4,26.7,38.4,317.0,3,5,1,PC,PC,11.7884,0.008,,1,spoc,SPOC,05:09:15.47,-05:33:26.67,12.49,0.084,5.064,0.063,2459183.651187,0.0030978548,12.8643168035823,0.004414339,4.77783450689067,0.22527707,7.526265,0.428327,6907.97549821836,394.42627,17.4453322197599,1.2423514,248.747915690331,1012.88376980721,17.386969,516.495,13.1145,5365.0,32.4,4.41,2.0,1.82733,0.109668,,,0.98,0.121305,32,2021-02-03,2021-02-03,2022-12-14 12:09:24,,2462,1,False,False,True -452375478,2463.01,,3,4,3,3,3,4,4,20.9,65.1,93.46,5,0,1,PC,PC,9.0318,0.006,,1,spoc,SPOC,05:52:21.66,-48:05:27.09,-1.535,0.045,0.022,0.052,2459179.182044,0.0024814634,10.6079444641655,0.0009522168,12.7030565059054,0.18432622,1.34056,0.063214,1233.93910660284,58.2209,11.6613557460936,0.6679118,1516.9401779555,1591.70237076631,15.215448,332.825,2.856,6481.0,130.437,3.54495,0.0883093,3.2125198841095,0.142357,,,1.32,0.209128,"32,33",2021-02-03,2021-09-29,2022-12-14 12:09:24,evolved and variable star,2463,1,False,False,True -32949762,2464.01,,5,5,5,5,5,5,5,53.2,149.7,106.79,0,2,0,KP,KP,12.3352,0.006,,1,qlp,SPOC,05:50:43.09,-27:37:23.96,26.975,0.03,-34.83,0.037,2459222.681031,0.000457,3.7684981,6.6e-06,2.727,0.075,21.713255,0.002625,19800.0,2.41749,12.5471,0.766713,210.575,1061.0,105.0,288.326,2.022,5160.0,127.22,4.49546,0.0865341,0.87,0.05,,,0.873,0.109236,"6,32,33",2021-02-03,2021-02-19,2022-12-14 12:09:24,WASP-160 B b,2464,1,False,False,True -146523262,2465.01,,2,4,2,2,3,4,4,5.9,59.7,10.13,3,4,1,PC,PC,10.2994,0.006,,1,spoc,SPOC,05:06:56.89,-18:54:16.64,-0.165,0.042,7.095,0.052,2459174.839411,0.00275415,3.75920503924659,0.00074724376,2.99617116269086,0.38587087,0.969032,0.074651,892.113572374418,68.75351,3.15636911904447,0.8288763,685.837258014394,1305.19384825415,11.337412,219.093,1.6175,6808.4,126.9,4.59,0.09,1.01507,0.0440855,0.29,0.12,1.466,0.258844,32,2021-02-03,2021-02-03,2022-12-14 12:09:24,Bad transit shape; potentially contaminated by systematics.,2465,1,False,False,True -293612446,2466.01,,5,5,5,5,5,5,5,63.7,83.4,317.0,0,3,3,KP,KP,12.0364,0.007,,1,qlp,SPOC,05:07:28.16,16:52:03.7,0.667,0.078,-6.045,0.051,2459493.9445,0.0006186,2.6266983,1e-06,4.087,0.009,11.625105,2.6e-05,10650.0,0.0238931,18.7969,0.983656,2520.03,1973.0,94.0,663.834,18.8685,6475.0,131.684,4.0609,0.090511,1.77,0.09,,,1.32,0.204914,"5,32,43",2021-02-03,2021-10-29,2022-12-14 12:09:24,K2-260 b,2466,1,False,False,True -71013298,2467.01,,2,4,2,2,4,4,4,4.9,46.9,3.81,2,3,3,PC,PC,10.2712,0.006,,1,spoc,SPOC,04:22:52.23,-12:40:37.33,20.053,0.038,10.38,0.031,2458438.600908,0.0013574699,1.75566155975583,1.1109573e-05,1.34910320754364,0.2947355,0.482269,0.052146,444.087948118545,48.0269,1.77384747662194,1.7228535,486.267879570099,1197.6740653437,9.671964,94.7639,0.30345,4909.0,120.978,4.52554,0.0872967,0.808740973472595,0.05201,,,0.8,0.0940349,"5,32",2021-02-03,2021-07-14,2022-12-14 12:09:24,centroid offset not centered on another star,2467,1,False,False,True -31114545,2468.01,,5,5,5,5,5,5,5,9.6,39.3,87.25,0,14,1,PC,FP,10.3598,0.008,,1,qlp,QLP,05:23:35.06,-24:07:16.66,17.912,0.038,-0.043,0.055,2459196.87342,0.0031788,24.4232697,0.0001365,3.788,1.856,2.086617,0.009916,1920.0,9.13313,11.2009,0.952464,62.1143,782.0,22.0,421.726,5.181,6102.0,134.2,3.75,0.08,2.37,0.11,,,1.15,0.155383,"5,6,32",2021-02-03,2021-02-03,2022-12-14 12:09:24,some depth-aperture correlation,2468,1,False,False,False -117843067,2469.01,,3,5,5,3,3,4,4,103.6,167.9,317.0,1,2,1,PC,APC,10.6749,0.008,,1,qlp,QLP,04:41:14.04,-15:40:19.64,0.606,0.065,-8.007,0.055,2459198.809559,0.0023675,2.3767548,0.0003986,3.225,0.158,8.655152,0.003071,7940.0,2.82889,23.4044,1.24216,2690.9,2006.0,18.0,632.183,19.301,6931.0,126.2,3.8,0.09,2.57,0.13,,,1.51,0.270505,32,2021-02-03,2021-02-03,2022-12-14 12:09:24,variable star with bright neighbor; large radius,2469,1,False,False,False -298981199,2470.01,,1,4,1,1,2,4,4,3.3,46.2,5.13,4,3,1,PC,PC,10.0632,0.006,,1,qlp,QLP,04:41:42.85,-00:36:00.01,-0.154,0.1,-5.075,0.066,2459199.511667,0.0035038,7.1853092,4.91e-05,2.347,0.405,0.868937,0.002223,800.0,2.04782,2.12356,0.207758,37.1797,687.0,11.0,66.7536,0.20335,4562.0,131.6,4.56,0.1,0.74,0.06,,,0.72,0.0841533,"5,32",2021-02-03,2021-02-03,2022-12-14 12:09:24,Bad shape for even transits; which can be due to detrending issues.,2470,1,False,False,False -71088556,2471.01,,3,4,3,3,3,4,4,21.6,51.7,115.95,0,2,1,PC,PC,10.4723,0.006,,1,qlp,QLP,04:26:03.55,-12:30:42.05,13.713,0.043,5.214,0.036,2459194.286421,0.0023878,6.5857043,3.67e-05,2.777,1.743,1.542841,0.341038,1420.0,314.058,13.2476,5.65232,891.424,1522.0,20.0,499.452,9.3875,5908.4,122.0,3.55,0.08,2.88,0.15,-0.04,0.1,1.07,0.136721,"5,32",2021-02-03,2021-02-03,2022-12-14 12:09:24,slightly v-shaped and slight depth aperture correlation,2471,1,False,False,False -248650906,2472.01,,2,5,5,2,4,4,4,,,11.29,0,8,2,PC,PC,8.94848,0.006,,1,qlp,QLP,04:28:10.26,-03:08:44.35,3.104,0.064,-23.436,0.046,2459198.852539,0.0101992,0.0,0.0,6.71,1.082,0.42352,0.001114,390.0,1.02628,3.35556,0.248223,232.874,1088.0,9.0,148.667,0.9885,5824.0,123.9,4.0,0.08,1.69,0.08,,,1.049,0.129809,"5,32",2021-02-03,2021-02-01,2022-12-14 12:09:24,single transit at about 2199 days,2472,1,False,True,True -399868187,2473.01,TIC 399868187.01,3,4,3,3,4,4,4,192.4,220.7,317.0,10,18,5,PC,PC,10.5347,0.006,,1,qlp,CTOI,04:57:29.99,10:25:00.25,-9.056,0.071,-20.643,0.052,2459199.202773,0.0006822,1.2311781,1.5e-06,2.756,0.088,3.874297,1.019338,3562.0,938.404,17.567,5.23752,27258.8,3579.0,18.0,284.183,3.6275,6589.1,143.9,4.21,0.09,1.53,0.08,-0.097,0.01,1.373,0.22259,"5,32",2021-02-03,2021-02-03,2022-12-14 12:09:24,missed the 6-day HJ. WINE CTOI. Multi.,2473,1,False,False,False -449257028,2474.01,,3,4,3,3,4,4,4,15.6,47.5,24.72,0,2,2,PC,PC,7.82622,0.006,,1,qlp,QLP,05:19:22.61,03:07:21.63,47.06,0.173,-10.571,0.134,2459197.576453,0.0099254,4.278752,0.0027305,4.11,0.931,0.238888,0.00102,220.0,0.93914,5.33342,,479.761,1303.0,9.0,132.686,1.04,4971.0,122.0,,,3.5,,,,,,32,2021-02-03,2021-02-03,2022-12-14 12:09:24,low SNR; evolved star; possible dip at t=2193,2474,1,False,False,False -373453507,2475.01,,5,5,5,5,5,5,5,3.7,29.8,20.78,0,0,2,PC,FP,10.7302,0.011,,1,qlp,QLP,05:06:05.82,10:35:39.03,5.61,0.088,-14.324,0.054,2459197.39928,0.0035249,15.7925628,0.0001402,2.823,0.472,1.292795,0.003674,1190.0,3.38409,4.82429,0.377854,24.617,620.0,10.0,235.608,2.5695,5600.0,138.8,4.16,0.08,1.37,0.07,,,0.99,0.122359,"5,32",2021-02-03,2021-02-03,2022-12-14 12:09:24,,2475,1,False,False,False -43868600,2476.01,,3,5,5,3,3,4,4,,,127.84,0,2,1,PC,APC,10.1263,0.008,,1,qlp,QLP,05:12:26.13,-07:15:28.53,6.422,0.065,-13.358,0.058,2459196.637234,0.0037464,3.8865992,3.01e-05,2.909,0.672,0.640773,0.001855,590.0,1.70825,14.0296,,247.041,1104.0,12.0,537.765,9.938,4731.6,49.0,,,5.67,,0.13,0.09,,,"5,32",2021-02-03,2021-02-03,2022-12-14 12:09:24,star is evolved,2476,1,False,False,False -412054152,2477.01,,3,4,3,3,4,4,4,0.4,12.6,34.2,0,3,4,PC,PC,10.2422,0.006,,1,qlp,QLP,05:18:58.19,15:12:11.02,-1.007,0.069,-19.383,0.05,2459175.454173,0.0106478,0.0,0.0,4.091,2.278,1.010204,0.085417,930.0,78.6692,6.43221,2.00696,844.249,1501.0,11.0,362.227,5.0755,7505.2,206.7,4.09,0.12,1.96,0.18,,,1.73,0.305357,32,2021-02-03,2021-02-03,2022-12-14 12:09:24,some depth-aperture correlation; single transit at ~2175,2477,1,False,True,True -262435954,2478.01,,2,4,2,2,4,4,4,4.5,37.5,7.96,0,5,4,PC,PC,10.6827,0.006,,1,spoc,SPOC,04:54:13.04,01:14:01.04,20.856,0.062,-39.926,0.05,2459174.685986,0.0045884424,2.64739164988521,0.0008482787,2.85952216800248,0.83286035,0.617199,0.070855,568.299416312746,65.257706,2.73776895409898,3.016418,871.096985086254,1385.59522245017,9.532369,209.93,1.879,5748.0,131.4,4.34,0.08,1.1287,0.0561809,,,1.028,0.129371,32,2021-02-03,2021-02-03,2022-12-14 12:09:24,low SNR,2478,1,False,False,True -167661160,2479.01,TIC 167661160.01,2,4,2,3,3,4,4,2.0,37.8,13.81,9,3,1,PC,PC,9.354,0.006,,1,spoc,QLP,05:18:50.24,-36:02:15.7,68.578,0.036,21.203,0.044,2458442.074601,0.0020219896,36.838242873162,0.00017478777,4.94628429005835,0.35163054,1.048421,0.053616,965.164948179765,49.381245,3.78589935556597,0.9056574,24.2324066608584,565.872888153551,18.077396,104.896,0.255,5363.1,76.0,4.08,0.12,1.20992994308472,0.0713895,-0.48,0.1,0.93,0.117389,"5,6,32",2021-02-03,2021-07-01,2022-12-14 12:09:24,TFOP work in progress.,2479,1,False,False,True -1449756,2480.01,TIC 1449756.01,5,5,5,5,5,5,5,10.6,45.0,64.98,1,0,1,PC,FP,10.8256,0.006,,1,qlp,QLP,05:00:41.98,-34:48:57.56,6.288,0.035,-21.633,0.045,2459199.593066,0.0026669,11.3543085,0.0023415,3.414,0.441,2.38037,0.002608,2190.0,2.40171,9.40688,0.540584,115.756,913.0,21.0,470.356,5.0525,6421.0,134.0,3.98,0.09,1.92,0.09,,,1.29,0.202744,"5,32",2021-02-03,2021-02-03,2022-12-14 12:09:24,slight depth-aperture correlation; could be on neighboring star,2480,1,False,False,False -262258341,2481.01,,2,4,2,2,4,4,4,2.8,40.9,9.97,0,4,4,PC,PC,10.6675,0.006,,1,qlp,QLP,05:11:13.06,02:25:38.5,-13.059,0.062,-2.753,0.048,2459193.255797,0.0039667,11.994832,9.54e-05,3.374,0.436,1.36889,0.002579,1260.0,2.37515,3.11124,0.224244,57.2917,766.0,10.0,151.756,0.8325,5567.0,137.1,4.56,0.08,0.86,0.05,,,0.982,0.125231,"5,32",2021-02-03,2021-02-03,2022-12-14 12:09:24,Weak odd-even difference.,2481,1,False,False,True -117938087,2482.01,,2,4,2,2,3,4,4,,,3.14,1,4,1,PC,PC,9.6254,0.006,,1,qlp,QLP,04:46:04.38,-15:20:36.35,-41.85,2.0,-16.25,2.0,2459187.828181,0.0064142,14.9315582,0.0002251,4.729,0.773,0.640773,0.001628,590.0,1.499,1.58293,0.130144,41.9664,709.0,9.0,,,4779.1,150.0,,,0.61,0.04,,,,,"5,32",2021-02-03,2021-02-03,2022-12-14 12:09:24,Bad detrending. Super-Earth candidate in the Fulton valley.,2482,1,False,False,False -219151731,2483.01,TIC 219151731.01,5,5,5,5,5,5,5,15.3,74.3,21.1,1,1,1,EB,FP,10.1217,0.006,,1,qlp-s34-ffi,QLP,05:59:20.44,-49:28:10.45,-11.884,0.046,42.585,0.044,2459249.973749,0.0011882,1.4853364,5.2e-06,1.302,0.158,0.705958,0.001025,650.0,0.944001,4.86539,0.267199,1309.65,1675.0,27.0,259.299,1.4305,6137.7,114.5,4.19,0.35,1.51,0.07,,,1.27,0.190769,"5,6,7,32,33,34",2021-02-03,2022-07-06,2022-12-14 12:09:24,very minor depth-aperture correlation; retired by TFOP as NEB,2483,1,False,False,False -68035559,2484.01,,3,4,3,3,4,4,4,8.9,68.5,23.42,4,3,6,PC,PC,10.8945,0.006,,1,qlp-s50-tois,QLP,14:38:56.21,37:01:36.26,-31.096,0.027,4.948,0.036,2459686.111638,0.0016602,8.3272872,2.57e-05,2.517,0.223,3.229435,0.002674,2970.0,2.46256,5.183,0.299337,63.8466,787.0,20.0,179.127,0.833,5632.0,121.0,4.54,0.08,0.89,0.04,,,0.998,0.120218,"23,50",2021-02-11,2022-12-12,2022-12-16 12:08:26,ephemeris match to 68035552(other star in pixel); very slight depth aperture correlation,2484,1,False,False,True -328934463,2485.01,TIC 328934463.01,3,4,4,3,4,4,4,20.1,70.3,100.89,3,11,7,PC,PC,10.9687,0.008,,1,qlp-s50-tois,QLP,13:40:49.04,22:59:02.29,0.999,0.085,-7.186,0.09,2459658.812257,0.0029411,11.2347982,5.37e-05,6.217,0.288,5.202262,0.001217,4780.0,1.12053,12.196,0.657848,262.58,1121.0,24.0,397.953,8.0605,6016.4,119.0,4.01,0.08,1.72,0.09,0.097,0.059,1.11,0.149475,"23,50",2021-02-11,2022-12-12,2023-07-01 00:00:00,,2485,1,False,False,True -369376388,2486.01,TIC 369376388.01,1,4,1,1,3,4,4,19.3,93.3,13.43,2,2,1,PC,PC,11.1869,0.006,,1,spoc,SPOC,03:59:24.52,-36:28:33.69,153.461,0.032,24.084,0.043,2459144.538178,0.002319321,1.54115630699582,0.00024164177,1.8428292364415,0.15485024,1.683821,0.109,1549.65482398437,100.38752,3.72536985324379,0.4106165,324.912094652445,1082.83234269579,13.226,96.5003,0.2093,4307.3,152.2,,,0.774692,0.0706884,,,0.66,0.0823324,"5,31",2021-02-11,2021-02-10,2022-12-14 12:09:24,found in faint-star QLP search,2486,1,False,False,True -394346745,2487.01,TIC 394346745.01,3,4,3,3,3,4,4,41.2,48.5,317.0,0,0,2,PC,PC,12.8466,0.006,,1,qlp-s39-tois,QLP,02:51:33.2,-81:00:25.17,7.501,0.021,12.565,0.019,2459382.603668,0.0005948,3.4024655,3.2e-06,3.141,0.038,16.398401,0.000747,14990.0,0.688075,15.364,0.67669,695.002,1430.0,99.0,646.188,4.501,5822.0,5946.3,4.3,,1.21,0.05,,,1.16,0.150839,"1,12,13,27,28,39",2021-02-19,2022-03-21,2023-01-24 00:00:00,,2487,1,False,False,True -139251123,2488.01,,3,4,3,3,3,4,4,12.8,40.0,73.99,3,0,2,PC,PC,10.6292,0.006,,1,spoc,SPOC,23:08:32.68,-45:01:35.38,31.745,0.065,3.458,0.091,2459066.147828,0.0028608895,10.7629334185327,0.004046502,4.32634830208814,0.40184256,2.077907,0.140298,1911.99323363397,129.2107,10.1639763442742,2.4320474,469.865698057688,1187.44412969189,13.559561,385.238,10.3255,5394.0,5394.9,4.4,2.0,2.31961,0.142639,,,0.94,0.119139,28,2021-02-19,2021-02-17,2022-12-14 12:09:24,2 fainter stars in pixel,2488,1,False,False,True -279327604,2489.01,TIC 279327604.01,3,5,5,3,3,4,4,62.1,170.9,58.23,4,5,2,PC,APC,11.2451,0.006,,1,spoc,SPOC,22:10:12.74,-45:02:58.61,-26.014,0.125,12.767,0.172,2459062.945311,0.0015360286,1.42695100862602,0.00017235531,1.33678632884154,0.12652673,3.133294,0.237395,2881.7106387159,218.62526,8.82811878176762,12.0227165,1289.46561113943,1528.34778071258,14.413239,215.394,5.026,5421.0,5412.1,4.6,0.1,1.02349,0.0640201,-0.48,0.1,0.91,0.109888,28,2021-02-19,2021-02-17,2022-12-14 12:09:24,Potential odd-even,2489,1,False,False,True -77437543,2490.01,TIC 77437543.01,3,4,3,3,3,4,4,,,48.15,1,1,1,PC,PC,11.2759,0.006,,1,spoc,CTOI,04:52:29.88,-36:15:25.55,19.343,0.034,12.751,0.042,2459180.691467,0.0028856532,0.0,0.0,7.47473703967924,0.27408433,4.796039,0.205888,4407.57353051663,189.61221,7.89387654794577,0.6112474,83.2609760646471,770.424568887593,33.01424,267.648,1.6085,5459.0,129.402,4.27837,0.0803948,1.17142,0.0619095,,,0.95,0.123784,32,2021-02-19,2021-10-05,2022-12-14 12:09:24,CTOI from Rafael Brahm; single at TBJD ~2181,2490,1,False,True,True -80567842,2491.01,,3,5,5,3,4,4,4,74.2,165.1,317.0,1,0,3,PC,APC,11.0233,0.01,,1,spoc,SPOC,05:49:08.01,09:37:39.05,2.892,0.086,-3.379,0.076,2459205.124526,0.0007398958,5.92777000494769,0.00040253397,2.55999541981439,0.048364077,14.190108,0.490604,12984.5364661418,451.76117,20.4068987835106,1.0547695,1581.26512193435,1608.31429669718,61.44919,533.726,12.711,8343.0,147.492,4.36705,0.0741381,1.55754,0.058407,,,2.06,0.319062,33,2021-02-19,2021-02-18,2022-12-14 12:09:24,large; pre-eclipse bump potentially due to ellipsoidal variation,2491,1,False,False,True -282498590,2492.01,TIC 282498590.01,3,5,5,3,4,4,4,43.8,74.2,317.0,2,3,5,PC,APC,11.6749,0.006,,1,spoc,SPOC,06:00:23.94,05:06:52.09,-7.783,0.084,-5.481,0.074,2459202.053965,0.0010748223,10.1011438167909,0.0008574407,5.21304274453004,0.08551388,14.316629,0.219674,13099.5467775022,202.30641,17.8995788366763,3.9703774,352.89739399586,1105.43156734375,40.358913,421.423,14.039,6519.0,1072.3,4.22,0.25,1.48974,0.32994,,,1.34,0.487016,"6,33",2021-02-19,2021-02-18,2022-12-14 12:09:24,found in faint-star QLP search,2492,1,False,False,True -123664207,2493.01,TIC 123664207.01,3,5,5,3,4,4,4,,,7.58,0,4,5,PC,PC,11.433,0.006,,1,spoc,SPOC,05:58:59.1,-21:34:30.34,33.223,0.022,113.235,0.056,2459225.823327,0.003930343,0.0,0.0,2.0935301101182,0.7944126,1.852033,0.267805,1704.33137052737,246.62703,2.65951192137761,3.7149043,11.3795176946313,468.436484920334,7.1225553,93.1416,0.24335,4242.0,122.601,4.62878,0.104086,0.652251,0.0585929,,,0.66,0.0761501,33,2021-02-19,2021-02-18,2022-12-14 12:09:24,single at TBJD~2226,2493,1,False,True,True -282576340,2494.01,,3,4,4,3,4,4,4,33.0,159.5,66.45,9,33,2,PC,PC,10.7202,0.006,,1,qlp,SPOC,06:00:38.29,00:07:53.33,15.569,0.06,-66.913,0.057,2459210.732023,0.0005676,8.3761316,1.17e-05,1.976,0.202,9.881602,0.009866,9060.0,9.08724,9.53663,0.59366,68.1559,800.0,73.0,152.866,0.875,5376.0,129.068,4.49858,0.0806247,0.9,0.05,,,0.932,0.118019,"6,33",2021-02-19,2021-04-07,2023-02-24 00:00:00,possible multi; potential second candidate with period of 2.4 days,2494,1,True,False,True -282576340,2494.02,,1,4,4,1,4,4,4,4.2,40.2,5.64,9,33,2,PC,PC,10.7202,0.006,,2,qlp,QLP,06:00:38.29,00:07:53.33,15.569,0.06,-66.913,0.057,2459224.849091,0.0044741,2.4087648,2.07e-05,1.881,0.397,0.640773,0.003467,590.0,3.19352,2.23597,0.214017,415.189,1257.0,8.0,152.866,0.875,5376.0,129.068,4.49858,0.0806247,0.9,0.05,,,0.932,0.118019,"6,33",2021-04-07,2021-04-07,2023-02-24 00:00:00,potential centroid offset to NW; potential multi; inner candidate to TOI 2494.01,2494,2,True,False,True -33091590,2495.01,,2,4,2,2,4,4,4,1.3,50.1,4.25,5,0,9,PC,PC,12.2285,0.008,,1,spoc,SPOC,06:59:18.48,-04:49:41.78,7.278,0.09,-9.805,0.095,2459208.384505,0.0040933965,7.79538495313736,0.0030242442,1.69415729398313,0.7247427,3.02681,0.454483,2783.9129229208,418.50656,1.89392643769333,1.3662949,4.92634001400425,379.971344351894,7.411049,43.0789,0.1195,3356.0,157.0,4.8711,0.000391229,0.352909,0.0106823,,,0.337569,0.0203338,33,2021-02-19,2021-02-18,2022-12-14 12:09:24,low SNR,2495,1,False,False,True -160328683,2496.01,,3,4,4,3,1,4,4,278.5,335.3,317.0,8,1,0,PC,PC,14.1969,0.007,,1,spoc,SPOC,06:04:47.08,-32:34:48.71,-8.134,0.09,10.201,0.111,2459175.520632,0.0005164947,1.57468281072073,2.6602123e-05,1.92864063906853,0.03940808,87.588194,1.815065,77503.5100765719,1670.3402,22.9576145615597,13.034499,71.4965163395914,741.636285227308,47.27529,196.683,2.199,3273.0,157.0,4.66823,0.0111966,0.579963028430939,0.0180145,,,0.571424,0.0207688,"32,33",2021-02-19,2021-07-13,2023-01-15 00:00:00,deep transit but Rp < 25 Re; possibly synchronized; likely EB,2496,1,False,False,True -97568467,2497.01,TIC 97568467.01,3,5,5,3,4,4,4,24.9,87.7,91.54,0,20,4,PC,CP,9.14112,0.006,,1,qlp-s45-tois,SPOC,06:00:15.02,11:53:02.61,12.502,0.076,-27.31,0.064,2459535.42305,0.0011119,10.6555503,2.57e-05,7.694,0.206,2.217164,0.000167,2040.0,0.153813,11.5245,0.519934,718.674,1442.0,10.0,285.289,3.5215,6715.0,167.725,3.79727,0.0931728,2.5,0.11,,,1.428,0.252356,"6,33,45",2021-02-19,2022-03-11,2022-12-14 12:09:24,low SNR,2497,1,False,False,True -263179590,2498.01,,3,4,3,3,4,4,4,8.7,48.0,20.59,8,4,4,PC,PC,10.844,0.006,,1,spoc,SPOC,06:21:39.89,11:15:05.93,-0.313,0.09,-20.1,0.076,2459204.418324,0.0029860204,3.73788157983356,0.00083613425,3.01458637592341,0.48665884,1.458156,0.115178,1342.1095053092,106.07764,4.78876591899276,1.9615011,790.576458001882,1352.40173416049,11.595037,275.265,4.143,5938.0,127.484,4.25146,0.0796586,1.29068,0.0619598,,,1.084,0.142188,33,2021-02-19,2021-02-18,2022-12-14 12:09:24,slight centroid offset towards TIC 263179594 (dimmer star; 12.568 mag),2498,1,False,False,True -67196573,2499.01,TIC 67196573.01,3,5,5,3,3,4,4,194.7,238.3,317.0,4,8,1,PC,APC,10.7996,0.006,,1,qlp,SPOC,05:57:49.6,-11:25:05.53,10.915,0.099,15.886,0.098,2459226.410197,0.0005918,2.5574812,3.4e-06,1.053,0.181,2.02135,1.674116,1860.0,1540.73,17.7879,4.95674,639.207,1400.0,28.0,233.953,2.7545,5844.0,115.1,4.33,2.0,1.13,0.05,,,1.097,0.144595,"6,33",2021-02-19,2021-03-01,2022-12-14 12:09:24,V-shaped,2499,1,False,False,True -206785987,2500.01,,3,4,3,3,4,4,4,35.7,115.9,126.14,2,1,5,PC,PC,11.619,0.016,,1,spoc,SPOC,06:26:47.75,08:12:03.52,-1.795,0.072,-3.582,0.065,2459202.311164,0.0010371992,2.95558544902742,0.00021032116,3.21522648985165,0.09817597,7.91964,0.169547,7267.71951049326,156.14682,13.9112344743109,0.7368121,3422.69942339698,1950.7963753641,34.37372,702.71,23.7115,7837.0,174.37,4.31121,0.0839198,1.57828,0.0720402,,,1.86,0.306177,33,2021-02-19,2021-02-18,2022-12-14 12:09:24,found in faint-star QLP search,2500,1,False,False,True -134471108,2501.01,,2,4,2,2,3,4,4,4.4,45.0,8.8,2,1,1,PC,PC,11.6751,0.006,,1,spoc,SPOC,07:12:15.98,-44:01:39.16,-8.561,0.04,-17.973,0.044,2459203.655233,0.0031269956,5.32564436235634,0.00057585066,2.17321060882621,0.3766373,1.970485,0.17292,1813.23783068582,159.25224,2.90491527686488,1.0598276,40.1231454775415,641.901650954807,10.939293,93.8832,0.17855,4066.0,128.471,4.60684,0.119248,0.658726990222931,0.0671608,,,0.64,0.0790182,"6,7,8,33,34",2021-02-19,2021-10-05,2022-12-14 12:09:24,found in faint-star QLP search; crowded field,2501,1,False,False,True -52689469,2502.01,,5,5,5,5,5,5,5,13.3,35.2,113.47,0,0,0,KP,KP,13.6373,0.006,,1,spoc,SPOC,06:45:34.75,-33:52:54.09,-3.369,0.026,2.549,0.029,2459202.042637,0.0032243358,3.14138245312697,0.00036796415,4.43612260038194,0.27500784,5.914925,0.286423,5433.03487257123,263.77017,13.0708640153401,0.92837846,2278.98416981095,1762.19951222675,14.388655,1477.98,35.75,6534.0,122.0,4.09026,,1.73408997058868,,,,1.35,,"33,34",2021-02-19,2021-12-02,2022-12-14 12:09:24,HATS-66 b,2502,1,False,False,True -124778445,2503.01,,5,5,5,5,5,5,5,38.6,86.2,115.93,0,0,0,KP,KP,13.9819,0.006,,1,spoc,SPOC,06:17:46.74,-35:42:22.91,-8.838,0.033,8.771,0.032,2459203.395868,0.0012305587,1.67515675725508,0.00014578909,2.27181939901218,0.10265229,19.47923,0.579619,17781.0520005207,533.70654,13.236656301591,0.48482808,1000.56785700509,1434.43669424407,24.296297,743.972,10.74,5457.0,122.0,4.44807,,0.963518,,,,0.95,,33,2021-02-19,2021-02-18,2022-12-14 12:09:24,NGTS-3 A b,2503,1,False,False,True -206906112,2504.01,TIC 206906112.01,3,4,3,3,3,4,4,24.4,50.1,317.0,2,2,3,PC,PC,10.6358,0.016,,1,spoc,SPOC,06:28:51.57,11:31:54.8,0.014,0.082,-2.451,0.069,2459212.609636,0.004286794,13.5942965849609,0.006143789,4.86277141096431,0.41114426,3.198098,0.228608,2941.22356475658,210.53348,14.729810439121,20.1424,628.806947255172,1277.17109906451,15.473618,508.561,13.9055,8389.0,191.997,4.29787,0.0778572,1.69485,0.0669749,,,2.08,0.326407,33,2021-02-19,2021-02-18,2022-12-14 12:09:24,check nearby stars; some odd-even,2504,1,False,False,True -443127052,2505.01,,3,4,3,3,3,4,4,6.8,35.8,15.72,3,3,1,PC,PC,10.7015,0.006,,1,qlp,QLP,06:21:56.77,-11:32:29.02,-17.171,0.062,28.333,0.07,2459222.132135,0.0043305,2.8972041,2.51e-05,1.958,0.423,0.695094,0.003141,640.0,2.89313,4.096,0.36334,470.021,1297.0,9.0,282.783,3.657,5879.0,240.2,4.09,0.09,1.55,0.08,,,1.065,0.148114,"6,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,weak signal; potential L1 candidate,2505,1,False,False,False -393298446,2506.01,,2,5,5,2,3,4,4,1.9,23.4,9.51,0,2,1,PC,APC,9.9257,0.006,,1,qlp,QLP,06:08:02.63,-39:00:38.91,5.5,1.4,20.8,1.2,2459211.074562,0.0050975,14.9695925,0.0003288,5.832,0.843,0.466967,0.000901,430.0,0.829512,3.04784,,219.916,,11.0,236.243,,6456.0,,,,1.46,,,,,,"7,32,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,weak BLS; some variability in raw LC,2506,1,False,False,False -354519019,2507.01,,1,4,1,1,3,4,4,2.6,47.6,8.1,0,2,1,PC,PC,9.4951,0.006,,1,spoc,QLP,05:30:14.36,-43:47:54.45,-22.08,0.036,-37.796,0.044,2458444.78902,0.0031654024,17.3051475676313,0.00010549644,3.49763163686997,0.2752979,0.713686,0.065447,657.112843667621,60.277218,2.76633793699701,0.23514795,49.5593572487995,676.707774312728,11.085043,103.454,0.2215,5824.0,129.1,4.53,0.08,0.923281013965607,0.0432463,,,1.05,0.13486,"5,6,32,33",2021-03-02,2021-07-28,2022-12-14 12:09:24,slight odd-even may be from detrending,2507,1,False,False,True -147430118,2508.01,,1,4,1,1,4,4,4,5.0,38.2,9.94,1,2,3,PC,PC,10.3559,0.006,,1,qlp,QLP,06:59:16.31,-14:26:40.24,-6.1,1.9,-0.9,1.9,2459226.246477,0.0040495,1.6951056,1.47e-05,3.238,0.53,0.401797,0.000879,370.0,0.809849,3.11352,,6387.13,,14.0,306.597,,6796.0,,,,1.61,,,,,,"6,7,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,found in faint-star QLP search,2508,1,False,False,False -143282930,2509.01,,3,5,5,3,3,4,4,6.5,34.5,17.05,0,3,1,PC,APC,10.7088,0.014,,1,qlp,QLP,06:17:38.34,-09:37:51.86,-2.298,0.095,3.24,0.101,2459224.689855,0.0043387,1.5339665,1.56e-05,2.128,0.284,0.510416,0.001425,470.0,1.3122,4.28924,0.325067,3012.65,2063.0,10.0,446.952,12.112,6694.0,144.7,4.02,0.09,1.92,0.1,,,1.42,0.246076,"6,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,,2509,1,False,False,False -170103435,2510.01,,5,5,5,5,5,5,5,5.7,48.1,7.78,1,2,0,EB,FP,10.0879,0.006,,1,qlp-s61-ffi,QLP,06:45:35.37,-46:33:55.7,-38.957,0.046,49.002,0.045,2459984.552667,0.0027852,1.9785151,5.8e-06,1.282,0.217,0.543004,0.046068,500.0,42.4296,2.69714,0.183281,514.024,1326.0,14.0,204.166,0.984,6317.0,127.5,4.35,0.08,1.23,0.05,,,1.24,0.179776,"6,7,8,33,34,61",2021-03-02,2023-03-08,2023-03-24 12:12:10,TFOP FP/NEB,2510,1,False,False,True -124702477,2511.01,,5,5,5,5,5,5,5,37.3,104.8,68.18,1,1,0,PC,FP,10.9539,0.006,,1,qlp,QLP,06:59:00.6,-07:53:50.84,-3.714,0.083,-6.321,0.076,2459226.722059,0.0007891,0.7951534,1.6e-06,0.912,0.128,2.086617,0.003619,1920.0,3.33354,9.70612,0.65796,2195.21,1906.0,26.0,523.867,18.6435,6811.0,152.1,4.02,0.1,1.96,0.11,,,1.467,0.260444,"7,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,slight depth aperture correlation,2511,1,False,False,False -124491883,2512.01,,2,4,2,2,3,4,4,2.7,27.4,4.79,0,4,3,PC,PC,9.22605,0.006,,1,qlp,QLP,06:14:02.33,-20:59:51.77,10.198,0.021,-38.688,0.052,2459226.885867,0.0082776,2.3933087,7.79e-05,5.507,0.615,0.162873,0.000396,150.0,0.364902,2.03235,0.145402,6511.62,2502.0,9.0,199.337,1.106,6393.0,119.6,4.08,0.09,1.72,0.08,,,1.281,0.199738,"6,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,weak signal; potential L1,2512,1,False,False,True -59842822,2513.01,,3,4,3,3,3,4,4,7.5,45.4,14.95,2,4,1,PC,PC,10.0509,0.006,,1,qlp,QLP,06:16:06.65,-21:16:46.12,6.586,0.03,-49.797,0.087,2459225.861283,0.0053045,2.5577037,2.34e-05,2.577,0.697,0.575593,0.002049,530.0,1.88741,3.9587,0.317686,1478.98,1727.0,12.0,258.693,2.4955,6039.0,121.9,4.03,0.08,1.7,0.08,,,1.122,0.151312,"6,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,may be on 59842836 or 59842839,2513,1,False,False,False -317134140,2514.01,,2,4,2,2,4,4,4,1.8,23.9,5.04,0,4,5,PC,PC,10.667,0.006,,1,qlp,QLP,05:46:52.69,-17:01:44.72,46.751,0.045,-26.129,0.056,2459215.084143,0.0068115,6.3951381,0.0001339,4.047,0.782,0.553867,0.00198,510.0,1.82401,2.10043,0.179951,323.891,1181.0,9.0,173.764,0.913,5563.0,123.6,4.45,0.08,0.98,0.05,,,0.981,0.125806,"6,32,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,weak signal,2514,1,False,False,True -123627908,2515.01,,3,4,3,3,3,4,4,51.5,143.5,122.71,3,2,1,PC,PC,10.1083,0.007,,1,qlp,QLP,05:57:10.54,-18:40:20.08,5.761,0.036,8.956,0.047,2459227.261848,0.0017831,5.9016526,0.0007076,2.417,0.21,2.663318,0.296673,2450.0,273.209,13.6737,3.22538,826.195,1493.0,29.0,281.448,2.0195,6127.0,119.4,4.02,0.08,1.74,0.08,,,1.16,0.164975,33,2021-03-02,2021-03-01,2022-12-14 12:09:24,v-shaped,2515,1,False,False,False -295947393,2516.01,,3,4,3,3,3,4,4,56.2,116.4,317.0,0,1,1,PC,PC,9.9552,0.006,,1,qlp,QLP,07:16:10.66,-17:27:11.03,-0.4,1.9,0.9,1.9,2459252.875826,0.0035351,5.4927168,3.19e-05,7.906,0.421,5.75879,0.000607,5290.0,0.558867,18.5905,,14464.4,,27.0,545.079,,9623.0,365.4,4.08,1.24,2.37,,,,,,"7,33",2021-03-02,2021-03-02,2022-12-14 12:09:24,excess flux in last two transits due to detrending issues,2516,1,False,False,False -48178229,2517.01,,5,5,5,5,5,5,5,7.4,38.4,22.7,0,1,0,EB,FP,10.0386,0.007,,1,qlp,QLP,06:36:41.42,-23:18:35.14,0.707,0.028,7.569,0.048,2459225.683785,0.0065888,2.6788253,2.83e-05,2.49,0.375,0.380074,0.000856,350.0,0.7882,5.07891,0.303041,1476.0,1726.0,12.0,403.768,4.815,6863.0,123.1,3.93,0.09,2.19,0.09,,,1.49,0.255686,"6,7,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,TFOP FP; retired as NEB,2517,1,False,False,False -96925186,2518.01,,1,4,1,1,3,4,4,2.2,31.2,5.46,1,2,1,PC,PC,10.2282,0.006,,1,qlp-s61-ffi,QLP,07:01:46.76,-34:55:10.87,-2.978,0.041,8.491,0.047,2459976.018757,0.0079551,6.8979432,5.45e-05,3.401,0.49,0.597319,0.041741,550.0,38.4444,2.18563,0.147571,239.133,1095.0,12.0,160.825,0.7245,6016.0,139.7,4.49,0.08,0.99,0.05,,,1.11,0.150036,"6,7,33,34,61",2021-03-02,2023-04-04,2023-04-07 12:13:06,potential L1 planet; possible centroid offset; slight depth aperture correlation,2518,1,False,False,False -47720259,2519.01,,2,4,2,2,3,4,4,3.4,46.4,5.87,3,4,1,PC,PC,10.2807,0.006,,1,qlp,QLP,06:31:34.01,-23:57:05.75,1.155,0.03,-6.468,0.041,2459226.575449,0.0037065,6.9551801,5.29e-05,2.062,0.347,0.836339,0.002426,770.0,2.23469,2.29124,0.200791,38.0097,691.0,10.0,81.856,0.1858,4742.0,122.2,4.57,0.1,0.75,0.05,,,0.76,0.0971313,"6,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,,2519,1,False,False,False -177414713,2520.01,,2,4,2,2,4,4,4,3.3,6.5,2.55,1,3,5,PC,PC,9.859901,0.006,,1,qlp,QLP,07:07:21.95,-11:26:12.38,-72.635,0.075,29.689,0.089,2459225.974236,0.0061805,2.0944084,5.79e-05,4.133,1.131,0.347491,0.001622,320.0,1.49397,1.39836,0.128552,3407.6,2128.0,9.0,87.4053,0.37885,5298.0,122.6,4.62,0.08,0.77,0.04,,,0.91,0.117139,"7,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,potential L1,2520,1,False,False,False -72556406,2521.01,TIC 72556406.01,3,5,5,3,3,4,4,19.4,64.3,60.93,0,2,3,PC,APC,10.8218,0.007,,1,qlp,QLP,06:14:06.99,-08:03:44.31,-7.737,0.075,-0.317,0.095,2459227.249446,0.0013831,5.563087,1.34e-05,4.533,0.207,2.739508,0.000381,2520.0,0.350593,9.04133,0.478522,494.188,1313.0,23.0,341.347,4.925,5491.4,104.0,3.85,0.43,1.72,0.09,,,1.023,0.12611,"6,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,RV error ~4.3 km/s,2521,1,False,False,False -148883384,2522.01,,2,4,2,2,4,4,4,4.6,53.0,3.4,1,4,5,PC,PC,9.1239,0.006,,1,qlp,QLP,07:08:28.44,-12:08:52.32,-4.08,0.079,-13.686,0.083,2459223.890954,0.0034072,2.0988541,0.0002283,4.365,0.218,0.380074,0.000683,350.0,0.628904,1.66554,0.124017,2840.05,2033.0,11.0,84.5017,0.40195,5531.0,130.8,4.45,0.08,0.97,0.05,,,0.97,0.117594,"7,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,weak signal; potential L1 candidate,2522,1,False,False,False -443213925,2523.01,,1,4,1,1,3,4,4,4.6,44.1,8.62,0,5,1,PC,PC,10.1424,0.006,,1,qlp,QLP,06:23:14.37,-11:20:55.02,4.887,0.058,-39.904,0.073,2459225.084837,0.0039631,4.6410823,3.67e-05,2.849,0.453,0.716822,0.001808,660.0,1.66538,2.86438,0.211594,344.881,1200.0,11.0,166.257,1.03,5809.0,266.2,4.36,0.09,1.12,0.05,,,1.044,0.162198,"6,33",2021-03-02,2021-03-01,2022-12-14 12:09:24,potential offset to the NE,2523,1,False,False,False -169249234,2524.01,TIC 169249234.01,3,4,4,3,4,4,4,26.5,87.6,114.36,1,3,5,PC,PC,12.1772,0.007,,1,qlp-s46-reprocessed,CTOI,10:43:32.84,-01:54:45.71,9.97,0.073,4.849,0.071,2459570.545421,0.0006925,7.185813,1.13e-05,4.069,0.098,12.975776,0.001135,11880.0,1.04501,13.1612,0.731181,210.609,1061.0,31.0,438.842,8.0285,5758.3,135.6,4.3,0.08,1.19,0.06,0.13,0.019,1.03,0.121133,"9,35,45,46",2021-03-02,2022-04-20,2022-12-14 12:09:24,CTOI from Rafael Brahm; period now ~7.2 days with s46 data,2524,1,False,False,True -149601126,2525.01,TIC 149601126.01,3,4,3,3,1,4,4,4.6,40.1,68.66,9,0,0,PC,PC,13.4006,0.006,,1,qlp,CTOI,05:47:24.23,-60:31:16.71,21.759,0.026,23.299,0.029,2459174.013303,0.0069103,23.349908,0.0002893,4.523,0.577,6.63235,0.007597,6090.0,6.99742,6.63684,,15.9582,556.0,15.0,395.398,2.241,4944.0,122.0,4.51,,0.82,,,,0.81,,"1,3,4,5,6,7,8,9,10,11,13,27,28,30,31,32",2021-03-02,2021-03-02,2022-12-14 12:09:24,potential multi; CTOI from Planet Hunters,2525,1,True,False,True -149601126,2525.02,TIC 149601126.02,3,4,3,3,1,4,4,2.1,34.1,76.88,9,0,0,PC,PC,13.4006,0.006,,2,qlp,CTOI,05:47:24.23,-60:31:16.71,21.759,0.026,23.299,0.029,2459123.257222,0.0063545,49.2423796,0.0005408,6.93,1.202,15.627094,1.739668,14290.0,1601.01,10.3421,,21.9814,603.0,1000.0,395.398,2.241,4944.0,122.0,4.51,,0.82,,,,0.81,,"1,3,4,5,6,7,8,9,10,11,13,27,28,30,31,32",2021-03-02,2021-03-02,2022-12-14 12:09:24,potential multi; CTOI from Planet Hunters,2525,2,True,False,True -380836882,2526.01,TIC 380836882.01,3,4,3,3,3,4,4,30.7,111.4,95.25,5,0,2,PC,PC,11.0586,0.006,,1,qlp-s39-tois,CTOI,18:00:32.36,-65:36:49.71,-0.485,0.03,8.971,0.038,2459381.86834,0.0009417,8.011385,1.45e-05,5.197,0.376,8.600432,0.00114,7890.0,1.0499,11.7844,0.624913,429.98,1268.0,93.0,302.145,2.481,5923.0,139.1,4.25,0.08,1.29,0.07,,,1.08,0.14059,"13,39",2021-03-02,2023-01-24,2023-01-26 12:09:41,CTOI from Rafael Brahm,2526,1,False,False,False -126572546,2527.01,TIC 126572546.01,3,4,3,3,3,4,4,19.7,45.7,100.24,0,0,1,PC,PC,11.1673,0.032,,1,qlp,CTOI,09:06:36.79,-50:28:49.62,-13.033,0.248,7.838,0.235,2459301.551019,0.0026219,2.3018922,1.1e-05,3.706,0.309,1.36889,0.00076,1260.0,0.699752,12.146,1.39235,4411.81,2270.0,18.0,743.085,85.498,6919.0,258.9,3.54,0.11,3.45,0.39,,,1.51,0.266183,"8,9,35,36",2021-03-02,2021-11-10,2022-12-14 12:09:24,possibly synchronized with variability; CTOI from Samuel Grunblatt,2527,1,False,False,False -83154030,2528.01,TIC 83154030.01,3,4,4,3,4,4,4,7.6,48.3,57.53,3,2,3,PC,PC,12.9363,0.008,,1,qlp-s37-tois,CTOI,12:35:20.3,-18:01:46.12,-28.216,0.047,-2.793,0.028,2459331.4467,0.004572,11.7248927,8.91e-05,5.928,0.343,9.312006,0.007491,8540.0,6.89984,8.72604,0.48473,206.968,1056.0,14.0,513.431,6.8555,5980.0,122.2,4.56,0.08,0.91,0.04,,,1.1,0.139459,"10,37",2021-03-02,2023-01-24,2023-01-26 12:09:41,CTOI from Rafael Brahm,2528,1,False,False,False -269333648,2529.01,TIC 269333648.01,3,5,5,3,3,4,4,,,84.11,0,1,1,PC,PC,10.6693,0.006,,1,qlp,CTOI,07:55:58.69,-52:21:17.4,14.909,0.101,17.856,0.209,2458538.517,0.0,0.0,0.0,8.943,1.149,4.613309,0.006597,4240.0,6.07582,10.9718,0.727769,70.9731,808.0,41.0,296.271,4.2295,5822.0,134.6,3.97,0.08,1.75,0.09,,,1.05,0.131893,"7,8,9",2021-03-02,2021-03-02,2022-12-14 12:09:24,single transit; very slight depth-aperture; CTOI from Rafael Brahm,2529,1,False,True,False -52059926,2530.01,TIC 52059926.01,3,5,5,3,3,4,4,,,86.35,0,1,1,PC,PC,12.7296,0.006,,1,qlp,CTOI,01:07:05.44,-68:22:05.17,-19.307,0.027,-11.861,0.024,2458350.181,0.0,0.0,0.0,4.646,0.54,23.735523,0.022081,21624.0,20.3376,11.1787,0.969162,4.48015,405.0,27.0,216.581,0.639,4490.0,124.7,4.55,0.1,0.74,0.06,,,0.7,0.082944,"1,2,28,29",2021-03-02,2021-03-02,2022-12-14 12:09:24,CTOI from Rafael Brahm; single transit,2530,1,False,True,False -262843259,2531.01,TIC 262843259.01,3,4,3,3,3,4,4,20.4,90.0,80.95,1,1,1,PC,PC,12.4329,0.006,,1,qlp,QLP,03:30:07.49,-60:52:32.24,-11.274,0.03,-0.803,0.03,2459156.064863,0.0005169,8.1484094,9.1e-06,3.192,0.255,15.627094,0.002115,14290.0,1.94783,10.6773,0.606885,90.5295,859.0,95.0,314.693,1.633,5320.0,130.4,4.52,0.09,0.87,0.05,,,0.92,0.117953,"2,3,4,28,29,30,31",2021-03-02,2021-03-02,2022-12-14 12:09:24,CTOI from Rafael Brahm; also found in faint-star QLP search,2531,1,False,False,False -20579360,2532.01,TIC 20579360.01,3,4,3,3,3,4,4,8.1,57.2,65.31,2,1,1,PC,PC,12.646,0.007,,1,qlp-s37-tois,CTOI,13:24:40.24,-19:53:46.17,-41.186,0.047,14.5,0.04,2459311.204445,0.0020567,16.7224532,6.43e-05,4.223,0.548,12.712098,0.010198,11640.0,9.39255,9.46753,0.580453,44.9403,721.0,33.0,363.49,3.981,5560.0,130.9,4.54,0.08,0.88,0.05,,,0.98,0.127355,"10,37",2021-03-02,2023-01-24,2023-01-26 12:09:41,CTOI from Rafael Brahm,2532,1,False,False,False -418012030,2533.01,TIC 418012030.01,3,4,4,3,4,4,4,19.3,82.4,67.92,8,13,7,PC,PC,11.6417,0.007,,1,qlp-s50-tois,CTOI,14:10:33.31,26:25:24.35,-14.0,0.048,19.171,0.061,2459682.185785,0.0016911,6.6857865,1.81e-05,2.896,0.157,7.287981,0.002563,6690.0,2.36039,9.65352,0.454536,171.835,1008.0,19.0,368.409,4.501,6144.3,105.0,4.4,0.08,1.13,0.05,-0.325,0.033,1.17,0.158579,"23,50",2021-03-02,2022-09-07,2023-03-07 00:00:00,some odd-even; CTOI from Rafael Brahm,2533,1,False,False,False -219332978,2534.01,TIC 219332978.01,3,5,5,3,3,4,4,,,99.38,0,0,1,PC,PC,10.8209,0.006,,1,qlp,CTOI,22:34:34.71,-57:34:13.53,3.2,0.106,0.545,0.138,2458346.575296,0.0019045,0.0,0.0,8.475,0.366,5.63873,0.001402,5180.0,1.29124,12.0956,0.780295,174.059,1011.0,25.0,392.929,15.289,6421.5,132.5,4.12,0.09,1.64,0.1,-0.14,0.12,1.29,0.190178,"1,28",2021-03-02,2021-03-02,2022-12-14 12:09:24,single transit; CTOI from Rafael Brahm,2534,1,False,True,True -204698337,2535.01,TIC 204698337.01,3,4,3,3,3,4,4,8.8,57.4,70.11,8,1,1,PC,PC,12.7024,0.008,,1,qlp,CTOI,12:22:07.07,-24:56:35.47,-68.98,0.041,-30.075,0.037,2458576.764481,0.0018077,16.4452725,0.0022944,3.038,0.301,12.898863,0.010076,11810.0,9.28013,9.85518,0.65016,17.053,566.0,17.0,343.587,3.6235,5278.0,128.2,4.51,0.08,0.88,0.05,,,0.91,0.1136,10,2021-03-02,2021-03-02,2022-12-14 12:09:24,period could be half (8.2 d); CTOI from Rafael Brahm,2535,1,False,False,False -20299658,2536.01,TIC 20299658.01,3,4,3,3,3,4,4,8.8,23.6,317.0,1,1,1,PC,PC,12.7022,0.006,,1,spoc,CTOI,06:03:51.34,-39:32:47.21,4.166,1.172,3.286,1.172,2459191.600297,0.0031198235,31.9919594977179,0.0043956717,8.82399567736413,0.23976426,14.266582,0.363356,13054.0547158853,334.60748,,,25.6823585478787,574.154107040183,39.440716,631.951,,5780.0,,4.438,,,,,,,,"5,6,32,33",2021-03-11,2021-10-05,2022-12-14 12:09:24,Gaia EDR3 parallax is .92 mas; CTOI from Rafael Brahm; no stellar radius,2536,1,False,False,True -399967279,2537.01,TIC 399967279.01,3,5,5,3,4,4,4,0.0,11.5,317.0,0,2,3,PC,PC,12.0294,0.006,,1,qlp-s44-tois,CTOI,03:37:33.18,10:03:27.89,31.443,0.1,-36.169,0.073,2458440.324843,9.1e-06,1035.1414469,1e-06,4.804,,21.536042,0.001245,19640.0,1.14688,14.5548,2.07512,0.00705581,80.0,70.0,184.986,1.88,4696.7,90.2,4.54,0.12,1.01,0.14,0.244,0.053,0.74,0.0868628,"5,42,43,44",2021-03-11,2022-03-11,2022-12-14 12:09:24,previously a singal transit; now a duo; maximum period of ~1035 days but period likely shorter; CTOI from Rafael Brahm,2537,1,False,False,True -443115574,2538.01,,3,4,3,3,3,4,4,16.8,51.1,101.59,0,1,1,PC,PC,10.597,0.01,,1,qlp,QLP,06:20:54.32,-07:17:56.19,0.504,0.119,-3.933,0.15,2459226.24224,0.0052952,2.9103781,2.86e-05,3.606,0.426,1.60808,0.002448,1480.0,2.25475,12.2597,1.0447,4501.88,2282.0,19.0,906.746,59.3765,7340.8,146.1,4.09,1.38,3.5,0.25,,,1.93,0.30663,"6,33",2021-03-11,2021-03-11,2022-12-14 12:09:24,slight centroid offset; crowded,2538,1,False,False,False -201508515,2539.01,,3,4,3,3,3,4,4,14.4,55.3,23.69,1,0,2,PC,PC,11.5606,0.006,,1,spoc,SPOC,06:12:09.23,-30:47:16.55,1.634,0.036,-12.717,0.046,2459202.613025,0.0017870129,0.985586044150403,0.00012699004,1.52854816276702,0.390312,1.459492,0.106912,1343.33877615233,98.46513,5.2012051363559,2.97028,4763.42157852236,2118.8465445954,11.704261,386.525,3.6245,5799.4,423.3,4.11,0.41,1.38013,0.0655829,,,1.018,0.135388,33,2021-03-11,2021-03-11,2022-12-14 12:09:24,SG1 should clear two neighbors,2539,1,False,False,True -354518617,2540.01,TIC 354518617.01,3,4,4,3,3,4,4,6.9,134.6,7.25,19,5,5,PC,PC,8.2731,0.006,,1,spoc,UNKNOWN,05:30:14.05,-42:41:52.61,33.698,0.048,-143.698,0.053,2458480.943804,0.0016581754,12.7187254998559,4.0789575e-05,3.15825622516159,0.13098216,1.242988,0.094832,1144.17890728516,87.33975,2.59246329667352,0.2972776,12.259923280004,477.245330339885,12.962988,19.1419,0.0111,4036.3,69.7,4.65,0.07,0.661076009273529,0.0674925,,,0.63,0.0834873,"6,33",2021-03-11,2021-07-15,2022-12-14 12:09:24,CTOI from George Zhou; inner candidate in potential multi; likely multi,2540,1,True,False,True -354518617,2540.02,TIC 354518617.02,1,4,4,1,3,4,4,2.7,95.4,5.88,19,5,5,PC,APC,8.2731,0.006,,2,qlp,UNKNOWN,05:30:14.05,-42:41:52.61,33.698,0.048,-143.698,0.053,2459223.145597,0.0021356,22.0819969,8.18e-05,3.073,0.771,1.106929,0.001341,1019.0,1.23485,2.28729,0.247107,5.94816,435.0,22.0,19.1419,0.0111,4036.3,69.7,4.65,0.07,0.66,0.07,,,0.63,0.0834873,"6,33",2021-03-29,2021-03-29,2022-12-14 12:09:24,CTOI from George Zhou; outer candidate in potential multi,2540,2,True,False,True -31054498,2541.01,,3,4,3,3,3,4,4,12.2,48.0,50.81,0,2,1,PC,PC,9.9048,0.008,,1,qlp,QLP,05:22:02.12,-25:43:20.48,-4.885,0.04,-3.335,0.045,2459199.006353,0.0023723,1.4118418,5.5e-06,2.702,0.3,0.56473,0.000457,520.0,0.420632,8.14924,0.370596,11077.2,2858.0,25.0,737.809,16.163,7839.6,143.1,4.13,1.55,3.52,0.12,,,1.89,0.297687,"5,6,32",2021-03-11,2021-03-11,2022-12-14 12:09:24,Weak odd-even difference. Apparent secondary eclipse potentially due to stellar variability.,2541,1,False,False,False -431971818,2542.01,,3,4,3,3,1,4,4,47.8,216.4,317.0,0,0,0,PC,PC,14.9801,0.006,,1,spoc,SPOC,08:02:13.66,-23:31:24.15,-0.407,2.035,3.165,2.035,2459232.348536,0.0052128434,4.10769777023441,0.0017018784,2.87332446000045,0.31552327,40.470262,4.411208,36588.34705078,4054.63,,,396.483133336244,1138.08822174265,10.433352,4625.12,,5780.0,,4.438,,,,,,,,34,2021-03-11,2021-03-11,2022-12-14 12:09:24,Gaia EDR3 plx ~6.1 mas; no stellar radius,2542,1,False,False,True -270604417,2543.01,,3,5,5,3,4,4,4,14.9,56.0,67.96,1,3,4,PC,CP,10.8165,0.006,,1,qlp,SPOC,09:06:23.26,03:34:03.61,-7.573,0.316,-5.71,0.253,2459248.432659,0.0019557,7.5428086,2.97e-05,6.099,0.257,2.606722,0.000801,2398.0,0.738173,9.68783,0.900603,682.93,1424.0,14.0,426.798,33.976,6349.8,40.8,4.11,0.02,1.87,0.17,-0.446295,0.00748358,1.219,0.173548,"8,34",2021-03-11,2021-03-24,2022-12-14 12:09:24,can see 7.5 days as clear period with qlp-s34 report,2543,1,False,False,True -341419787,2544.01,,3,4,3,3,3,4,4,12.0,45.5,60.97,1,0,1,PC,PC,10.7607,0.006,,1,spoc,SPOC,08:00:36.81,-54:30:32.41,8.817,0.046,-11.343,0.05,2459284.317234,0.002373878,10.5305789190273,0.0016805392,3.02657433248707,0.38595456,2.178685,0.16985,2004.63072286854,156.42584,9.06970580876546,2.277836,490.448251440739,1200.23986440409,9.762433,377.872,3.384,5441.0,68.3,4.41,2.0,1.98859000205994,0.0915978,,,1.12,0.146206,"7,8,34,36",2021-03-11,2021-03-11,2022-12-14 12:09:24,~10.5 days period is from two consecutive transits in QLP s08,2544,1,False,False,True -149845414,2545.01,,2,4,2,2,4,4,4,3.8,45.2,7.09,0,8,5,PC,CP,8.90594,0.006,,1,spoc,SPOC,09:02:10.99,-03:25:14.95,-14.639,0.069,-11.597,0.061,2458522.513973,0.0026598806,7.99403671773964,5.2601146e-05,4.27104702738063,0.76901084,0.439399,0.042613,404.619438144213,39.247066,2.55760211368676,2.075654,258.821734814912,1022.98657776005,11.495177,107.118,0.472,5846.29,115.111,4.26525,0.0717198,1.2532399892807,0.0554799,-0.272928,0.0668965,1.055,0.127121,"8,34",2021-03-11,2021-07-13,2023-03-03 12:02:51,potential L1 candidate; correct period is ~8 days confirmed with SPOC multisector,2545,1,False,False,True -388089437,2546.01,,3,5,5,3,4,4,4,94.8,117.0,317.0,0,2,5,PC,APC,11.8215,0.007,,1,qlp-s46-tois,SPOC,08:03:52.61,11:08:07.66,0.047,0.068,0.777,0.04,2459578.592429,0.00077,2.1811989,5.4e-06,0.428,0.166,2.500069,2.203565,2300.0,2027.5,18.7156,7.29541,149.461,974.0,18.0,515.356,9.759,6125.96,133.255,4.17403,0.087276,1.46,0.08,-0.053,0.014,1.16,0.163411,"7,34,44,45,46",2021-03-11,2022-03-11,2022-12-14 12:09:24,TFOP APC/PC/SB2; Gaia DR2 RV error ~9.7 km/s; see observing notes regarding composite spectrum,2546,1,False,False,True -444013020,2547.01,,5,5,5,5,5,5,5,103.7,105.4,317.0,0,1,0,KP,KP,11.302,0.006,,1,qlp-s46-tois,SPOC,08:53:17.83,08:31:22.86,2.76,0.061,3.252,0.04,2459577.818635,0.0001728,2.3114199,2.3e-06,2.585,0.022,17.611564,0.000385,16090.0,0.354199,14.2928,0.631063,796.887,1480.0,286.0,273.703,2.7065,5785.79,104.216,4.39543,0.0718388,1.07,0.05,0.336,0.034,1.038,0.128489,"34,44,45,46",2021-03-11,2022-03-10,2022-12-14 12:09:24,WASP-65 b,2547,1,False,False,True -350293646,2548.01,,5,5,5,5,5,5,5,76.3,321.3,98.5,0,1,0,KP,KP,10.0471,0.006,,1,qlp-s61-ffi,SPOC,08:44:25.68,01:51:35.62,-23.48,0.073,-31.653,0.056,2459985.304174,0.0001779,8.5234958,3e-06,2.444,0.031,20.763291,0.216343,18942.0,199.239,12.0756,0.595988,34.6952,676.0,190.0,100.588,0.4865,5238.0,104.524,4.54438,0.0758968,0.84,0.04,0.1,0.1,0.894,0.1098,"34,61",2021-03-11,2023-03-10,2023-03-24 12:12:10,WASP-84 b,2548,1,True,False,True -350293646,2548.02,,2,4,4,2,4,4,4,42.6,183.8,21.9,0,1,0,PC,CP,10.0471,0.006,,2,qlp-s61-ffi,QLP,08:44:25.68,01:51:35.62,-23.48,0.073,-31.653,0.056,2459985.331564,0.0023397,1.4468993,5.8e-06,0.779,0.301,0.596233,2.014203,549.0,1853.43,4.98711,1.59253,1452.18,1719.0,9.0,100.588,0.4865,5238.0,104.524,4.54438,0.0758968,0.84,0.04,0.1,0.1,0.894,0.1098,"34,61",2023-03-23,2023-03-23,2023-05-17 12:03:01,interior to WASP-84 b; low SNR,2548,2,True,False,True -80711765,2549.01,,3,4,3,3,3,4,4,58.6,141.8,317.0,6,0,1,PC,PC,11.732,0.007,,1,spoc,SPOC,08:07:55.85,-44:40:00.88,0.0,1.8,3.6,1.7,2459230.288702,0.0010044498,4.85788229811832,0.00017489275,5.77387524666168,0.07164568,12.006796,0.241622,10997.7451655989,222.51762,,,1349.96395853837,1545.96726245809,34.45799,970.123,,8303.0,,4.438,,,,,,,,"7,8,34,35",2021-03-11,2021-09-29,2022-12-14 12:09:24,no radius; found in faint-star QLP search; SG1 should check neighbors,2549,1,False,False,True -294500964,2550.01,TIC 294500964.01,3,4,3,3,4,4,4,35.5,168.6,78.65,2,2,5,PC,PC,10.7757,0.006,,1,spoc-s01-s46-b0A,SPOC,08:08:54.75,12:12:27.44,-14.725,0.1,-15.12,0.054,2459966.572012,0.003909988,9.07022062132876,7.122237e-05,2.3369198152781,0.13365667,5.22797,0.230765,4803.56443374683,212.5198,10.5358142284005,10.626823,110.628609500529,827.154454683371,21.909225,182.937,2.193,5509.1,115.8,4.52,0.01,0.916742026805878,0.041809,0.274,0.02,1.025,0.12219,"7,34,44,45,46,61",2021-03-11,2023-07-12,2023-07-12 00:00:00,possible centroid offset on TIC 294500963,2550,1,False,False,True -6276559,2551.01,,3,4,3,3,4,4,4,8.3,46.4,46.99,3,2,3,PC,PC,11.7664,0.009,,1,qlp,SPOC,07:30:03.75,-11:47:25.73,-4.126,0.055,0.631,0.045,2459244.80572,0.0038666,5.436841,4.54e-05,2.335,0.386,2.891906,0.00842,2660.0,7.75501,7.79881,0.551239,560.394,1355.0,10.0,730.421,19.679,7980.0,137.391,4.37685,0.079109,1.49,0.06,,,1.92,0.307799,"7,34",2021-03-11,2021-06-11,2022-12-14 12:09:24,,2551,1,False,False,True -31515092,2552.01,,2,4,2,2,4,4,4,8.4,55.0,9.34,1,0,3,PC,PC,11.8762,0.006,,1,spoc,SPOC,07:43:40.49,-10:15:25.49,-36.087,0.092,14.154,0.057,2459230.696843,0.0035893442,2.36902716504207,0.0006584761,1.87987631546283,0.6329442,2.117896,0.248671,1948.75274149151,229.00832,3.00870609686046,2.9508224,122.213632789924,848.007440823246,7.5506744,102.256,0.556,4007.0,121.939,4.56359,0.11371,0.684741,0.0659925,,,0.626,0.0814385,34,2021-03-11,2021-03-11,2022-12-14 12:09:24,weak; crowded field,2552,1,False,False,True -238542895,2553.01,TIC 238542895.01,3,4,4,3,3,4,4,24.8,104.7,89.35,6,2,1,PC,PC,11.8225,0.006,,1,qlp,SPOC,08:07:24.56,-49:36:10.58,-18.072,0.045,19.869,0.04,2459299.211559,0.0005729,8.384818,1e-05,4.258,0.099,13.118628,0.001168,12010.0,1.0754,11.3276,0.523314,214.409,1066.0,84.0,339.025,2.757,5757.5,146.0,4.29,2.0,1.02,0.05,,,1.15,0.159275,"7,8,9,34,35,36",2021-03-11,2021-11-10,2022-12-14 12:09:24,,2553,1,False,False,True -144043410,2554.01,,5,5,5,5,5,5,5,50.6,77.3,317.0,2,5,0,PC,FP,10.5484,0.008,,1,spoc,SPOC,08:27:01.22,-20:40:48.53,-9.824,0.078,0.671,0.071,2459230.661673,0.0019267437,6.26365006546498,0.0010456195,5.36399911518071,0.10138514,7.6742,0.446965,7043.27848106574,411.5855,17.7665063047056,1.0933677,1453.00934290678,1574.66020206803,13.564744,483.922,15.042,6969.2,111.6,4.17,1.75,2.04438,0.106935,,,1.5,0.260785,"8,34",2021-03-11,2021-03-11,2022-12-14 12:09:24,stellar variability at timescales shorter than orbital period,2554,1,False,False,True -155491828,2555.01,TIC 155491828.01,3,4,3,3,3,4,4,38.4,82.3,317.0,2,4,3,PC,PC,11.1169,0.008,,1,qlp,SPOC,08:13:57.23,-24:43:02.28,-7.318,0.039,4.013,0.041,2459233.496293,0.0016193,16.0475029,3.72e-05,3.334,0.209,14.900363,0.006316,13630.0,5.81755,19.3344,0.96526,46.0707,725.0,27.0,441.932,5.5075,6337.5,141.8,,,1.6,0.07,,,1.3,0.197631,"7,8,34",2021-03-18,2021-06-11,2022-12-14 12:09:24,period should half (~8 days),2555,1,False,False,True -468981993,2556.01,TIC 468981993.01,3,5,5,3,4,4,4,21.5,92.6,65.98,4,26,5,PC,APC,10.7003,0.006,,1,spoc-s01-s46-b0A,SPOC,08:34:48.69,08:34:10.14,-9.622,0.079,-14.985,0.056,2459966.962573,0.0012116889,8.01493233360304,3.6300316e-05,4.61983742940425,0.07405265,4.816646,0.082234,4426.46891177938,75.73721,9.50212858921196,0.5284063,320.073730409089,1078.77843801044,48.22628,277.281,3.601,5886.2,140.7,4.25,0.03,1.33027994632721,0.0712361,0.29018,0.0192393,1.129,0.143178,"7,34,44,45,46,61",2021-03-18,2023-07-12,2023-07-12 00:00:00,strong TTVs,2556,1,False,False,True -269400980,2557.01,,3,4,3,3,3,4,4,38.2,78.4,317.0,0,0,1,PC,PC,11.2047,0.006,,1,spoc,SPOC,07:56:59.03,-49:28:24.83,-5.232,0.058,0.943,0.049,2459238.55827,0.0021962947,9.83050959647432,0.0009792014,3.78792130751197,0.15521656,5.431284,0.372938,4989.90649594795,343.42938,24.4466581912363,3.112121,1527.82957346819,1594.55123268456,28.345871,797.474,18.594,6683.6,129.7,,,2.8653199672699,0.150535,-0.101732,0.0777638,1.48,0.256235,"7,9,34,35",2021-03-18,2021-10-05,2022-12-14 12:09:24,large Rp,2557,1,False,False,True -283307274,2558.01,TIC 283307274.01,3,4,3,3,1,4,4,12.9,60.7,97.14,1,15,0,PC,PC,11.6919,0.006,,1,spoc,SPOC,08:32:58.99,-25:15:22.48,-7.534,1.171,9.135,1.173,2459233.129864,0.0021804394,17.7837632869884,0.0030422588,4.27614594392735,0.19614369,7.02668,0.244106,6450.91424177829,224.80434,11.9289449761132,0.39742237,99.4306166255637,805.37803831744,25.651674,400.905,,5834.0,249.9,4.25,2.01,1.38394999504089,,,,,,"8,34,35",2021-03-18,2021-10-04,2022-12-14 12:09:24,Only two transits but period can't be half; potential odd-even,2558,1,False,False,True -441453629,2559.01,TIC 441453629.01,3,4,4,3,1,4,4,43.2,55.7,317.0,2,1,0,PC,PC,13.1141,0.006,,1,qlp,CTOI,20:48:02.81,-35:50:33.38,-4.465,0.044,-8.988,0.029,2459060.081876,0.0011401,4.2002507,7.7e-06,2.627,0.149,28.234813,0.014438,25670.0,13.2976,14.9915,,236.94,1093.0,34.0,502.887,8.0935,5709.9,94.7,4.53,,0.91,,-0.11322,0.0862928,1.02,,"1,27",2021-03-18,2021-03-18,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2559,1,False,False,False -441155146,2560.01,TIC 441155146.01,3,4,3,3,1,4,4,32.5,84.5,125.08,2,1,0,PC,PC,13.5328,0.007,,1,qlp,CTOI,22:11:02.21,-27:17:44.59,-7.149,0.063,-36.077,0.046,2458348.918997,0.0024956,3.5511203,0.0006419,2.634,0.199,21.558192,0.018289,19660.0,16.8448,13.8379,,258.816,1117.0,15.0,594.274,10.019,5321.0,122.0,4.42,,0.98,,,,0.92,,1,2021-03-18,2021-03-18,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2560,1,False,False,False -422385684,2561.01,TIC 422385684.01,3,4,4,3,1,4,4,46.0,45.4,317.0,3,2,0,PC,PC,12.1504,0.021,,1,qlp-s56-tois,CTOI,21:14:24.11,66:24:17.29,-3.127,0.053,-7.848,0.046,2459852.046181,0.0009358,2.7754004,2.9e-06,3.142,0.122,9.279154,0.220824,8510.0,203.366,15.2778,0.829311,966.571,1553.0,57.0,581.074,7.666,5905.0,181.5,4.05,0.08,1.62,0.09,,,1.07,0.145146,"16,17,18,24,56",2021-03-18,2023-02-05,2023-02-09 12:10:04,CTOI from Olmschenk (2021),2561,1,False,False,False -420177051,2562.01,TIC 420177051.01,3,4,4,3,1,4,4,32.9,89.0,124.25,6,1,0,PC,PC,12.5945,0.009,,1,qlp-s52-tois,CTOI,19:28:04.55,77:22:42.99,1.183,0.027,-8.032,0.028,2459770.738717,0.0015557903,4.0483695,2.9e-06,2.896,0.08,13.173576,0.001403,12060.0,1.29187,13.766,0.663576,413.846,1256.0,125.0,587.158,6.7255,6054.0,133.7,4.3,0.08,1.24,0.06,,,1.13,0.147678,"14,17,18,19,20,21,23,24,25,26,40,41,47,50,51,52,54",2021-03-18,2022-10-05,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2562,1,False,False,True -387409975,2563.01,TIC 387409975.01,3,4,3,3,1,4,4,27.1,77.7,115.57,3,0,0,PC,PC,13.3848,0.01,,1,qlp-s52-tois,CTOI,20:42:58.39,70:16:32.85,-7.949,0.025,-3.598,0.03,2459828.802298,0.0014824556,5.0182311,8.6e-06,2.301,0.118,17.743991,0.007465,16210.0,6.87516,13.248,,112.463,907.0,43.0,501.58,3.3025,5487.0,122.0,4.41,,1.02,,,,0.96,,"16,17,18,19,22,24,25,49,52,56",2021-03-18,2022-12-05,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2563,1,False,False,True -334482103,2564.01,TIC 334482103.01,3,4,3,3,3,4,4,26.3,81.2,86.24,1,3,2,PC,PC,12.4683,0.006,,1,qlp-s46-tois,CTOI,08:13:05.5,09:26:51.66,4.662,0.057,-19.348,0.033,2459572.727656,0.0007319,3.7257102,7e-06,2.143,0.137,9.82682,0.005137,9010.0,4.73155,11.0938,0.631938,218.142,1070.0,50.0,486.785,7.7875,5698.0,117.7,4.33,0.07,1.14,0.06,0.497689,0.0268877,1.01,0.124988,"7,34,44,45,46",2021-03-18,2022-03-10,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2564,1,False,False,True -321086563,2565.01,TIC 321086563.01,3,4,3,3,3,4,4,16.6,42.8,97.3,1,2,3,PC,PC,12.3642,0.006,,1,spoc-s61-b0A,CTOI,07:48:11.4,02:07:25.27,-11.572,0.063,11.719,0.039,2459966.257472,0.0032306756,3.97044571500736,0.0010997815,3.77930439071233,0.3149477,4.013208,0.260378,3689.47813634232,239.78801,11.7222735542706,1.6124917,1506.43656263874,1588.9398661736,12.22194,801.435,24.0715,5840.0,123.0,3.9,0.08,1.89732003211975,0.108567,,,1.05,0.129251,"7,34,61",2021-03-18,2023-07-12,2023-07-12 00:00:00,CTOI from Olmschenk (2021),2565,1,False,False,False -284679064,2566.01,TIC 284679064.01,3,4,4,3,4,4,4,16.6,65.0,50.82,3,1,9,PC,PC,13.0599,0.006,,1,qlp-s49-tois,CTOI,13:01:15.04,58:25:08.64,-64.59,0.03,-15.411,0.03,2459664.11471,0.0011662,4.2102292,9.3e-06,2.486,0.17,10.440533,0.004709,9570.0,4.33742,8.18232,,132.499,945.0,39.0,343.975,2.231,4927.6,108.4,4.52,,0.82,,0.248634,0.0145734,0.81,,"15,22,48,49",2021-03-18,2022-07-13,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2566,1,False,False,True -258920431,2567.01,TIC 258920431.01,3,5,5,3,4,4,4,16.9,50.0,82.3,1,10,2,CP,CP,11.7489,0.008,,1,qlp-s52-tois,CTOI,19:13:51.76,66:20:52.58,-17.074,0.042,9.036,0.042,2459773.727703,0.0032926074,5.9839451,8.2e-06,5.244,0.14,4.25355,0.000294,3910.0,0.270422,10.836,0.575539,497.795,1315.0,48.0,504.775,5.167,5609.0,130.3,3.96,0.08,1.72,0.09,,,0.99,0.124385,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54",2021-03-18,2022-10-06,2023-03-03 12:02:45,CTOI from Olmschenk (2021); TOI-2567 b,2567,1,False,False,True -257067559,2568.01,TIC 257067559.01,3,4,3,3,3,4,4,38.3,52.3,317.0,1,1,3,PC,PC,12.104,0.018,,1,qlp,CTOI,07:42:43.3,01:21:40.68,-5.994,0.062,-0.456,0.036,2459251.583946,0.0009445,3.4843271,6.2e-06,3.522,0.145,11.263015,0.00254,10320.0,2.33956,15.9782,0.771312,1741.71,1799.0,12.0,751.206,21.131,7250.0,169.5,4.26,0.09,1.57,0.07,,,1.63,0.275773,"7,34",2021-03-18,2021-06-11,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2568,1,False,False,False -248655556,2569.01,TIC 248655556.01,3,4,3,3,3,4,4,11.6,50.1,69.56,2,2,1,PC,PC,11.1769,0.007,,1,qlp,CTOI,04:29:06.92,-01:54:34.31,-5.849,0.065,-13.495,0.045,2459174.659675,0.0033518,13.1147744,0.0001045,4.318,1.088,4.23175,0.012769,3890.0,11.7603,9.79059,0.763535,95.9399,871.0,18.0,317.912,4.5105,5496.1,115.0,4.04,0.08,1.54,0.08,-0.28,0.08,0.96,0.124904,"5,32",2021-03-18,2021-03-18,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2569,1,False,False,False -239816546,2570.01,TIC 239816546.01,3,5,5,3,4,4,4,67.1,68.5,317.0,3,9,5,PC,CP,11.9775,0.006,,1,qlp-s45-tois,CTOI,05:48:45.13,32:05:02.56,-6.393,0.073,-15.861,0.06,2459913.190531,0.00072591216,2.9887607,3.1e-06,2.794,0.064,16.233075,0.000748,14840.0,0.688871,14.4391,0.7947,517.006,1328.0,142.0,361.857,6.2435,5639.0,144.5,4.34,0.08,1.12,0.06,,,1.0,0.124689,"19,43,44,45,59",2021-03-18,2023-03-16,2023-03-16 00:00:00,CTOI from Olmschenk (2021),2570,1,False,False,True -239638934,2571.01,TIC 239638934.01,5,5,5,5,5,5,5,32.4,138.0,56.89,0,6,0,PC,FP,10.5284,0.006,,1,qlp,CTOI,22:14:22.3,32:29:24.43,-3.042,2.057,-14.941,1.294,2458760.818232,0.0011288,6.0027375,0.0002206,4.164,0.644,6.643273,0.004752,6100.0,4.3767,8.72806,,475.015,,80.0,184.514,,5633.0,,,,1.08,,,,,,"15,16",2021-03-18,2021-03-18,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2571,1,False,False,False -234489133,2572.01,TIC 234489133.01,3,4,3,3,4,4,4,14.9,45.0,95.4,1,1,4,PC,PC,13.258,0.007,,1,qlp,CTOI,07:37:03.29,06:43:00.38,-2.332,0.05,-8.694,0.039,2459247.433122,0.0029959,3.5985851,2.06e-05,4.015,0.336,7.309842,0.006101,6710.0,5.61901,11.8109,,1318.02,1678.0,13.0,1038.2,29.295,6303.0,122.0,4.21,,1.45,,,,1.24,,"7,34",2021-03-18,2021-06-11,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2572,1,False,False,False -160037058,2573.01,TIC 160037058.01,3,4,4,3,1,4,4,34.1,41.5,317.0,2,0,0,PC,PC,13.1657,0.006,,1,qlp,CTOI,22:26:50.27,-39:47:21.69,34.977,0.04,-17.329,0.039,2459080.877819,0.0010412,4.5815438,8.8e-06,3.367,0.133,21.436373,0.006625,19550.0,6.102,15.1889,,290.593,1150.0,45.0,593.937,11.6925,5525.0,122.0,4.37,,1.07,,,,0.97,,"1,28",2021-03-18,2021-03-18,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2573,1,False,False,False -159332859,2574.01,TIC 159332859.01,3,4,3,3,3,4,4,44.3,76.6,317.0,5,0,2,PC,PC,12.881,0.007,,1,qlp-s52-tois,CTOI,15:31:14.29,79:16:02.02,-0.462,0.027,5.111,0.028,2459760.398697,0.0003689,4.4817684,2.5e-06,2.186,0.066,23.242913,0.001093,21180.0,1.00645,19.0204,0.867642,277.661,1137.0,146.0,834.038,9.0895,6734.0,131.5,4.41,0.09,1.25,0.06,,,1.44,0.249811,"14,15,19,20,21,25,26,40,41,48,52",2021-03-18,2022-10-04,2022-12-14 12:09:24,CTOI from Olmschenk (2021); large PC,2574,1,False,False,True -142784687,2575.01,TIC 142784687.01,3,4,3,3,3,4,4,23.9,60.6,126.36,6,1,2,PC,PC,13.152,0.007,,1,spoc-s14-s60-b0A-PC,CTOI,10:15:11.91,72:00:36.85,-7.703,0.083,-3.636,0.081,2459603.650328,0.001417,3.17112066665232,1.0461481e-05,3.62765750698556,0.091739416,9.273329,0.197075,8504.68058670075,181.49634,13.9247289953038,0.31529778,1369.15136073117,1551.43153615863,34.87225,928.149,45.8565,6140.0,122.0,4.18,,1.45617997646332,,,,1.16,,"14,20,21,40,41,47,60",2021-03-18,2023-05-25,2023-06-16 12:14:51,CTOI from Olmschenk (2021),2575,1,False,False,True -115453244,2576.01,TIC 115453244.01,3,4,3,3,2,4,4,46.8,125.0,120.84,2,2,1,PC,PC,12.2323,0.006,,1,qlp-s45-tois,CTOI,05:34:36.95,30:24:22.95,4.948,0.071,-17.424,0.052,2459544.238408,0.0006307,3.8229149,7.3e-06,3.171,0.117,12.865902,0.002068,11780.0,1.90456,13.5313,1.24899,598.34,1377.0,81.0,430.46,7.3515,6166.4,145.1,4.34,0.11,1.21,0.11,0.102,0.023,1.175,0.168292,"19,43,44,45",2021-03-18,2022-03-10,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2576,1,False,False,True -112316665,2577.01,TIC 112316665.01,3,4,3,3,3,4,4,23.7,78.3,116.53,2,0,1,PC,PC,11.5955,0.006,,1,qlp,CTOI,07:28:05.51,-34:20:35.2,-5.26,0.037,0.347,0.06,2459252.521548,0.0013727,3.7494409,1.04e-05,2.452,0.295,5.289542,0.005641,4860.0,5.1954,13.2544,0.648718,1186.51,1635.0,32.0,786.59,15.959,7899.0,143.5,4.16,0.08,1.89,0.06,,,1.89,0.304841,"7,34",2021-03-18,2021-06-11,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2577,1,False,False,False -104986789,2578.01,TIC 104986789.01,3,4,4,3,4,4,4,109.2,123.7,317.0,3,24,5,PC,PC,10.5863,0.006,,1,spoc-s59-b0A,CTOI,04:32:12.5,52:15:09.56,4.401,0.064,-33.767,0.043,2459911.4801,0.00064401835,3.45800184153865,0.00014853374,2.62317189870029,0.030477803,11.151402,0.167314,10218.2558379607,154.09003,14.7324848783776,0.8543144,1028.48559236151,1444.33954677399,83.409,285.53,3.476,6427.8,105.1,4.35,0.09,1.26629996299744,0.0721458,-0.112,0.01,1.297,0.209205,"19,59",2021-03-18,2023-03-06,2023-03-24 12:12:10,CTOI from Olmschenk (2021),2578,1,False,False,False -103751498,2579.01,TIC 103751498.01,5,5,5,5,5,5,5,85.9,95.2,317.0,0,0,2,KP,KP,10.9101,0.007,,1,qlp-s47-tois,CTOI,10:29:38.96,70:31:37.5,-46.527,0.05,-9.597,0.047,2459600.117319,0.0002187,3.7146478,1.5e-06,3.835,0.024,13.789185,0.000137,12620.0,0.126216,15.2308,0.759299,698.148,1432.0,310.0,281.498,2.5655,5783.0,125.2,4.21,0.07,1.32,0.07,,,1.04,0.12922,"14,20,21,40,41,47",2021-03-18,2022-06-28,2022-12-14 12:09:24,Qatar-8 b; also found as CTOI by Olmschenk et al 2021,2579,1,False,False,True -102713734,2580.01,TIC 102713734.01,3,4,3,3,2,4,4,89.2,116.0,317.0,2,3,2,PC,PC,10.8064,0.006,,1,qlp-CTOIs,CTOI,04:08:47.81,67:06:59.5,10.767,0.032,-5.174,0.047,2458839.453257,0.0006684,3.397862,0.0001937,4.502,0.126,10.868146,0.001008,9960.0,0.92863,18.3834,0.865094,2031.47,1870.0,121.0,379.253,4.518,6590.0,230.5,4.05,0.1,1.83,0.08,,,1.373,0.242019,"19,59",2021-03-18,2023-03-06,2023-03-06 00:00:00,CTOI from Olmschenk (2021),2580,1,False,False,False -37862966,2581.01,TIC 37862966.01,3,4,3,3,3,4,4,30.5,82.7,103.92,1,0,1,PC,PC,12.9754,0.007,,1,qlp,CTOI,04:23:25.17,-10:28:18.4,17.538,0.033,0.857,0.024,2459192.543648,0.0009391,3.5838508,6.4e-06,3.085,0.207,13.63525,0.003733,12480.0,3.43857,12.4141,0.705201,409.771,1253.0,55.0,515.179,6.476,5450.0,122.5,4.35,0.08,1.08,0.06,,,0.95,0.116449,"5,32",2021-03-18,2021-03-18,2022-12-14 12:09:24,CTOI from Olmschenk (2021); very slight depth aperture correlation,2581,1,False,False,False -21279791,2582.01,TIC 21279791.01,3,4,3,3,2,4,4,27.7,91.4,61.41,6,0,4,PC,PC,12.4848,0.006,,1,qlp-s52-tois,CTOI,18:29:10.03,48:03:35.78,10.728,2.091,-5.479,2.092,2459772.286216,0.0013525696,3.0183134,3.7e-06,2.78,0.058,9.772041,0.000869,8960.0,0.799979,9.10865,,388.439,,66.0,348.135,,5238.0,,,,0.93,,,,,,"14,25,26,40,41,52,53,54",2021-03-18,2022-10-11,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2582,1,False,False,True -7548817,2583.01,TIC 7548817.01,3,4,4,3,2,4,4,29.8,83.4,124.1,4,4,2,PC,PC,12.0453,0.007,,1,qlp-s52-tois,CTOI,18:09:04.09,45:20:12.84,7.682,0.035,5.014,0.039,2459735.896093,0.0011507,4.52074,8.8e-06,4.175,0.137,9.290105,0.001292,8520.0,1.18985,13.7321,0.68157,713.859,1440.0,62.0,566.189,6.399,6050.0,127.6,4.14,0.08,1.49,0.07,,,1.13,0.149506,"14,25,26,40,52",2021-03-18,2022-11-09,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2583,1,False,False,True -458641144,2584.01,TIC 458641144.01,3,4,3,3,1,4,4,29.6,40.8,317.0,1,2,0,PC,PC,12.731,0.008,,1,qlp,CTOI,08:20:26.11,07:35:20.09,-4.18,0.05,0.561,0.031,2459245.2948,0.0011813,4.6965638,1.23e-05,3.056,0.172,13.52531,0.005533,12380.0,5.09598,16.2589,0.838734,459.903,1290.0,25.0,840.101,21.781,6502.7,102.7,4.25,0.08,1.43,0.07,0.0271573,0.0117358,1.33,0.214923,"7,34",2021-03-18,2021-06-11,2022-12-14 12:09:24,CTOI from Olmschenk (2021),2584,1,False,False,False -62530991,2585.01,,5,5,5,5,5,5,5,4.0,51.4,4.31,0,0,0,EB,FP,9.8961,0.006,,1,qlp-s61-ffi,QLP,08:50:10.01,-02:58:46.72,-70.165,0.07,-85.301,0.048,2459986.942214,0.0036384,4.0266483,1.76e-05,2.312,0.487,0.818954,0.046334,754.0,42.6743,1.90189,0.122182,213.735,1065.0,13.0,89.409,0.3272,5276.5,105.2,4.6,0.07,0.78,0.04,-0.0826829,0.0281113,0.9,0.104478,"8,34,61",2021-03-24,2023-03-06,2023-03-24 12:12:10,TFOP FP; retired as NEB,2585,1,False,False,True -458647887,2586.01,,3,4,3,3,4,4,4,27.2,80.4,106.85,1,8,5,PC,PC,10.505,0.007,,1,qlp,QLP,08:21:41.15,06:20:05.8,-5.272,0.117,-0.82,0.084,2459242.410211,0.0050906,9.5835608,8.87e-05,2.405,0.498,1.249315,0.673418,1150.0,620.049,12.6233,5.27326,372.192,1223.0,9.0,336.733,7.0565,5781.0,127.7,3.89,0.08,1.91,0.1,,,1.04,0.124919,"7,34",2021-03-24,2021-03-24,2022-12-14 12:09:24,,2586,1,False,False,False -68007716,2587.01,,3,4,3,3,3,4,4,25.4,75.9,83.7,2,13,5,PC,PC,10.9657,0.006,,1,qlp,QLP,07:43:43.61,-01:04:24,22.011,0.076,-25.335,0.047,2459244.752232,0.0012012,5.4566563,1.66e-05,3.783,0.263,4.526083,0.001354,4160.0,1.24686,10.9408,0.652522,381.078,1230.0,44.0,373.675,5.8625,5674.8,171.9,4.04,0.01,1.72,0.1,0.116,0.016,1.04,0.131582,"7,34",2021-03-24,2021-03-24,2022-12-14 12:09:24,,2587,1,False,False,False -284418751,2588.01,,3,4,3,3,3,4,4,25.5,89.5,72.13,1,3,1,PC,PC,10.6713,0.006,,1,qlp-s35-tois,QLP,07:16:12.01,-45:12:53.47,-5.704,0.047,12.071,0.054,2459962.850922,0.001971194,3.587158,4.9e-06,1.23,0.129,3.392792,0.003196,3120.0,2.94354,10.0104,0.534459,177.312,1016.0,33.0,413.058,4.5535,6495.7,26.9,4.26,0.49,1.75,0.07,,,1.47,0.261031,"7,8,33,34,35,61",2021-03-29,2023-07-12,2023-07-12 00:00:00,v-shaped,2588,1,False,False,False -157698565,2589.01,TIC 157698565.01,3,5,5,3,4,4,4,0.1,37.5,94.44,4,5,1,CP,CP,10.7211,0.006,,1,qlp-s34-ffi,QLP,07:09:57.16,-37:13:51.41,-18.983,0.035,8.322,0.038,2459973.640012,0.0032195433,61.6277,0.0001314,6.401,0.277,9.682209,0.001756,8878.0,1.61719,11.7392,0.566858,21.7464,601.0,22.0,200.273,0.829,5581.0,229.7,4.16,0.37,1.07,0.05,,,1.08,0.146865,"7,33,34,61",2021-03-29,2023-07-12,2023-07-12 00:00:00,TOI-2589 b,2589,1,False,False,True -234832821,2590.01,,2,4,4,2,4,4,4,5.7,57.5,3.85,3,4,3,PC,PC,9.47351,0.006,,1,qlp,QLP,06:31:12.1,03:28:13.75,-3.276,0.081,-13.554,0.077,2459226.458235,0.0029045,0.7460577,5.4e-06,1.754,0.334,0.260608,0.000889,240.0,0.819184,1.77725,0.138915,6994.61,2547.0,10.0,139.151,0.909,6162.0,129.2,4.4,0.08,1.13,0.05,,,1.173,0.161052,"6,33",2021-04-07,2021-04-07,2023-02-01 00:00:00,possible centroid offset; offset less than 1 pixel in report,2590,1,False,False,False -229285649,2591.01,,3,5,5,3,3,4,4,90.9,180.3,317.0,0,3,1,PC,APC,10.7669,0.006,,1,qlp-s45-tois,QLP,06:32:05.81,11:51:08.22,8.942,0.064,-12.275,0.059,2459544.881796,0.0003722,8.493027,5.4e-06,3.733,0.234,22.766049,0.008266,20750.0,7.61364,20.982,1.04786,246.718,1104.0,190.0,316.228,3.869,6287.0,134.4,4.23,0.09,1.41,0.06,,,1.23,0.184102,"6,33,45",2021-04-07,2022-03-11,2022-12-14 12:09:24,potentially too large for reported period,2591,1,False,False,False -284122875,2592.01,,3,4,3,3,3,4,4,33.1,39.3,317.0,0,0,5,PC,PC,10.871,0.018,,1,qlp,QLP,07:13:58.7,01:57:51.41,-7.778,2.21,-3.304,1.648,2459226.215173,0.0015766,3.4559382,1.43e-05,4.21,0.243,3.087878,0.000989,2840.0,0.910869,,,733.721,1449.0,24.0,592.714,,9290.0,239.0,4.08,1.27,,,,,,,"7,33",2021-04-07,2021-04-07,2022-12-14 12:09:24,No radius from TIC. Gaia stellar radius 2.4 Rsun which would give Rp consistent with planet size. Check for neighbors.,2592,1,False,False,False -258983679,2593.01,,3,4,3,3,4,4,4,15.9,57.6,36.56,1,3,5,PC,PC,10.3513,0.006,,1,qlp,QLP,07:00:53.65,08:05:44.42,4.021,0.062,-7.687,0.056,2459226.380017,0.0041969,1.4711386,0.0003985,1.677,0.295,0.911315,0.001916,839.0,1.76496,6.70217,0.44964,1889.26,1836.0,9.0,436.802,7.692,6514.0,128.0,3.88,0.09,2.19,0.1,,,1.338,0.205558,33,2021-04-07,2021-04-07,2022-12-14 12:09:24,possible centroid offset on star to W (TIC 258983683),2593,1,False,False,False -229167359,2594.01,,3,4,3,3,3,4,4,,,317.0,0,3,1,PC,PC,10.2626,0.011,,1,qlp,QLP,06:04:51.93,08:21:54.62,0.282,0.127,-3.79,0.106,2459227.018066,0.0014088,2.682814,8.7e-06,0.987,0.299,1.173229,0.007879,1080.0,7.25639,23.5198,,852.855,1505.0,13.0,1295.5,202.945,8528.0,124.0,,,5.28,,,,,,"6,33",2021-04-07,2021-04-07,2022-12-14 12:09:24,possible centroid offset to the N,2594,1,False,False,False -151284882,2595.01,,2,5,5,2,3,4,4,5.7,50.3,11.14,0,3,1,PC,APC,10.7212,0.007,,1,qlp-s45-tois,QLP,06:05:35.99,14:21:24.89,6.538,0.076,-16.124,0.065,2459547.608503,0.0027041,3.817421,2.53e-05,2.47,0.596,1.086279,0.002987,1000.0,2.75151,3.32507,0.260936,529.596,1336.0,19.0,212.383,2.3065,6033.7,142.9,4.47,0.09,1.02,0.06,-0.0391479,0.00952632,1.12,0.145693,"6,33,43,44,45",2021-04-07,2022-03-11,2022-12-14 12:09:24,possible centroid offset,2595,1,False,False,False -37089434,2596.01,,3,5,5,3,3,4,4,9.6,81.3,37.44,1,2,1,PC,APC,10.9058,0.006,,1,qlp,QLP,06:32:02.87,-05:28:47.26,49.92,0.06,-31.807,0.061,2459220.286778,0.0011175,16.2709828,4.72e-05,1.835,0.314,6.392051,0.007446,5870.0,6.8576,6.81631,0.522061,5.83182,432.0,34.0,127.734,0.621,4811.0,135.7,4.45,0.09,0.87,0.06,,,0.779,0.0922382,"6,33",2021-04-07,2021-04-07,2022-12-14 12:09:24,RV error 12.4 km/s from GaiaDR2; first transit missing ingress right after data gap potentially causing odd-even; radius may be larger,2596,1,False,False,False -220139435,2597.01,,3,4,3,3,3,4,4,16.9,58.3,62.37,0,13,3,PC,PC,9.536,0.019,,1,qlp,QLP,06:36:05.05,08:25:48.73,-11.626,0.395,-7.763,0.319,2459221.281298,0.0023287,3.6039259,2.77e-05,3.737,0.248,1.021072,0.000628,940.0,0.578856,9.20389,1.44347,1930.96,1846.0,21.0,457.178,69.5775,7080.0,182.6,3.67,0.15,3.05,0.47,,,1.57,0.268619,"6,33",2021-04-07,2021-04-07,2022-12-14 12:09:24,variable star,2597,1,False,False,False -12036590,2598.01,,3,5,5,3,3,4,4,249.1,412.0,317.0,1,2,1,PC,APC,10.9766,0.007,,1,qlp,QLP,06:04:56.1,-01:08:03.29,11.189,0.066,-65.755,0.063,2459226.801169,0.0008002,5.73436,1.15e-05,1.146,0.105,19.433853,2.744472,17740.0,2524.56,21.0528,5.05458,19.8561,588.0,24.0,107.256,0.5465,4405.0,132.3,4.41,0.1,0.86,0.07,,,0.689,0.0856197,"6,33",2021-04-07,2021-04-07,2022-12-14 12:09:24,possible centroid offset to W but neighboring stars likely too dim for depth of events,2598,1,False,False,False -235333495,2599.01,,3,4,3,3,3,4,4,11.9,30.2,87.26,0,2,1,PC,PC,10.9402,0.011,,1,qlp,QLP,06:53:25.72,07:15:59.8,-2.04,0.071,-5.94,0.061,2459219.625683,0.0056918,4.1554362,4.51e-05,6.088,0.633,1.108016,0.002089,1020.0,1.92433,11.1924,0.847506,2704.62,2009.0,13.0,836.394,32.973,6352.0,133.8,3.44,0.09,3.53,0.21,,,1.26,0.190115,"6,33",2021-04-07,2021-04-07,2022-12-14 12:09:24,,2599,1,False,False,False -234160911,2600.01,,3,4,3,3,3,4,4,46.6,32.7,317.0,1,2,1,PC,PC,10.276,0.006,,1,qlp,QLP,06:45:38,00:40:06.79,-2.864,0.324,4.892,0.275,2459216.749879,0.0018107,5.3376282,1.95e-05,2.143,0.215,2.238923,0.002054,2060.0,1.8922,16.1323,,63.1216,785.0,18.0,380.422,42.043,4825.0,27.1,,,3.5,,-0.111,0.023,,,"6,33",2021-04-07,2021-04-07,2022-12-14 12:09:24,centroid offset smaller than 1 pixel; large,2600,1,False,False,False -456844391,2601.01,,3,4,3,3,3,4,4,48.9,91.1,317.0,2,2,1,PC,PC,10.8943,0.006,,1,qlp,QLP,07:33:37.83,-21:28:05.35,-4.5,3.0,0.2,3.1,2459246.20878,0.0011154,6.0210332,0.0008054,2.211,0.501,8.173711,0.036782,7500.0,33.8771,18.8835,,635.657,,31.0,641.596,,7668.0,,,,1.93,,,,,,34,2021-04-07,2021-04-07,2022-12-14 12:09:24,No uncertainties on stellar radius; large; possible EB,2601,1,False,False,False -191928543,2602.01,,3,5,5,3,3,4,4,42.1,69.0,317.0,1,3,1,PC,APC,11.83,0.006,,1,spoc,SPOC,09:06:01.81,-39:32:53.61,-16.78,0.043,15.062,0.05,2459260.314784,0.0018062762,7.23404328395,0.0025531973,6.22455065752631,0.16279137,11.731748,0.313293,10747.1714563845,288.5119,18.8387360120204,0.9295579,328.22842115217,1085.58490410534,27.07709,622.34,10.607,6770.0,136.344,4.11942,0.0847979,1.73783004283905,0.0773819,,,1.45,0.242615,35,2021-04-12,2021-04-12,2022-12-14 12:09:24,Y1 data confirms 7.234 d period; Gaia DR2 RV error 3.93 km/s,2602,1,False,False,True -176772671,2603.01,,3,4,4,3,1,4,4,86.7,169.3,94.37,2,0,0,PC,PC,13.8995,0.008,,1,spoc,SPOC,09:30:16,-18:50:35.04,,,,,2459255.823088,0.0007267643,1.33268442954426,6.6682034e-05,1.59384440671025,0.062462013,42.810147,1.171985,38662.372217449,1078.856,11.7282926321396,0.56832457,195.701325141513,953.933699138328,24.877432,,,3947.0,157.0,4.65587,0.0152716,0.594491004943848,0.0222335,,,0.583571,0.0231377,35,2021-04-12,2021-04-12,2022-12-14 12:09:24,possibly synchronized,2603,1,False,False,True -189625051,2604.01,,5,5,5,5,5,5,5,18.6,21.9,317.0,0,0,0,PC,KP,12.487,0.007,,1,spoc,SPOC,09:37:09.03,-29:48:01.6,-3.127,0.07,-1.527,0.067,2459257.22089,0.00272582,4.90969002617637,0.0011633307,5.41352533275752,0.237548,5.522784,0.279334,5073.75680463865,257.2431,15.2547691723871,1.2207357,1882.4889124135,1679.97514444798,16.626827,1080.15,40.745,6606.0,128.386,3.93691,0.0938726,2.09178996086121,0.122548,,,1.38,0.23029,35,2021-04-12,2021-04-12,2022-12-14 12:09:24,HATS-64 b,2604,1,False,False,True -146776480,2605.01,,3,4,3,3,3,4,4,13.4,273.0,51.13,3,0,5,PC,PC,10.4767,0.007,,1,spoc-s01-s36-b0A-PC,SPOC,08:17:25.58,-34:28:00.67,299.312,0.078,-513.199,0.074,2459978.593736,0.0009226,20.6006151,3.59e-05,1.47162881946009,0.043022793,13.224867,0.333993,12106.6702220666,307.5715,8.17828638114223,3.5458872,3.45855953583187,347.811200645422,53.09645,36.2852,0.0622,3821.0,157.0,4.74216,0.00792815,0.494574993848801,0.0147011,,,0.492668,0.0202922,"8,34,35,61,62",2021-04-12,2023-04-12,2023-04-12 00:00:00,Gaia DR2 RV error 7.74 km/s; v-shaped; some odd-even,2605,1,False,False,True -355800238,2606.01,,3,4,4,3,3,4,4,171.3,243.6,317.0,3,3,1,PC,PC,11.7785,0.006,,1,qlp,SPOC,08:49:12.33,-60:20:05.94,-13.997,0.041,8.092,0.041,2459330.683649,0.0002981,1.4509175,9e-07,1.123,0.062,7.922134,1.944676,7270.0,1789.51,20.5418,5.83122,2374.67,1944.0,89.0,442.105,4.0735,6472.0,133.132,4.37386,0.0877116,1.24,0.06,,,1.32,0.214648,"8,9,10,35,36,37",2021-04-12,2021-11-09,2022-12-14 12:09:24,V-shaped; Potential synchronisation in variability; hint of secondary in multiyear report,2606,1,False,False,True -149539158,2607.01,,5,5,5,5,5,5,5,6.7,52.5,9.91,1,0,1,PC,FA,9.1251,0.006,,1,spoc,SPOC,05:44:04.46,-59:56:45.93,0.173,0.06,-7.121,0.062,2459256.970786,0.0034480565,2.23387856670085,0.00057812885,3.04000012539752,0.43127185,0.346319,0.040506,318.921143617464,37.306538,3.11590006991046,1.2964443,3165.18532972018,1913.02011076968,7.5957136,176.841,1.0795,6422.3,134.058,4.10848,0.0918725,1.65991997718811,0.0812035,-0.46,0.12,1.29,0.212532,35,2021-04-12,2021-04-12,2023-06-03 12:02:52,Possible secondary (200ppm at 4.4 sigma),2607,1,False,False,True -269850928,2608.01,,3,4,3,3,1,4,4,15.1,38.8,105.66,1,0,0,PC,PC,13.2247,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,04:37:42.57,-80:30:28.25,3.604,0.025,1.243,0.032,2459039.789315,0.0022082964,4.72466496081221,4.1877098e-05,4.30829241986889,0.20444213,6.712413,0.219733,6163.28893142094,202.36102,12.5337443120097,0.73734504,729.52424281405,1325.49984624848,23.491531,884.523,11.3415,5385.7,5384.3,4.4,,1.57270002365112,,,,0.99,,"27,35,38,39",2021-04-12,2022-03-21,2022-12-14 12:09:24,,2608,1,False,False,True -308883808,2609.01,,3,5,5,3,4,4,4,22.1,82.7,31.3,4,2,3,PC,APC,11.4514,0.006,,1,spoc,SPOC,10:09:58.14,-12:10:43.24,-52.607,0.067,17.98,0.072,2459255.88071,0.0010191278,1.16469715838255,8.980994e-05,1.21599767073769,0.19062538,2.422362,0.131087,2228.59045394057,120.728004,6.12849112834287,1.2849768,3482.67070963661,1959.28607964082,14.010178,347.307,7.316,5979.0,132.773,4.29665,0.0827082,1.23369002342224,0.0626005,,,1.099,0.152044,35,2021-04-12,2021-04-12,2022-12-14 12:09:24,Gaia DR2 RV error 2.23 km/s,2609,1,False,False,True -268914377,2610.01,,5,5,5,5,5,5,5,61.2,66.4,317.0,2,0,2,PC,FP,15.8953,0.009,,1,spoc,SPOC,07:52:11.98,-48:29:54.95,-12.269,0.275,5.577,0.245,2459229.716478,0.0022712005,2.15389594108506,0.00016268548,2.17769433476963,0.11854182,110.015099,6.465744,96363.0926603748,5937.473,16.016673198443,1.006073,31.4140709293811,603.810699679456,17.857132,296.761,11.16,3148.0,157.0,4.75166,0.0141944,0.483749002218246,0.0205474,,,0.481767,0.0251821,"34,35",2021-04-12,2021-10-05,2022-12-14 12:09:24,weak centroid offset not centered on another star; crowded field; SG1 should clear neighbors,2610,1,False,False,True -234282389,2611.01,,5,5,5,5,5,5,5,13.5,54.0,23.45,1,0,0,PC,FA,13.5294,0.006,,1,qlp,QLP,22:21:04.39,-64:42:44.17,23.974,0.025,-17.412,0.026,2458352.484922,0.0068562,0.7320175,0.0002961,2.577,0.357,4.918652,0.009715,4520.0,8.94736,5.16324,,8999.57,2713.0,16.0,541.431,5.729,5458.0,5459.0,4.4,2.0,0.81,,,,0.99,,1,2021-04-12,2021-03-29,2022-12-14 12:09:24,found in faint-star QLP search; ambiguous diff image,2611,1,False,False,False -149572298,2612.01,,3,4,3,3,1,4,4,24.1,54.0,317.0,1,0,0,PC,PC,13.2303,0.006,,1,qlp,QLP,05:45:46.01,-61:39:36.08,0.619,3.114,24.866,3.114,2459379.018087,0.0010448,13.3572104,2.49e-05,4.947,0.183,33.0147,0.006021,29950.0,5.54543,19.2978,4.69083,158.626,988.0,187.0,636.656,,6636.1,780.6,,,1.12,0.27,,,,,"1,3,4,5,6,7,8,9,10,11,13,27,28,29,30,31,33,34,35,36,37,38",2021-04-12,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search,2612,1,False,False,False -52315301,2613.01,,3,4,3,3,3,4,4,28.9,80.3,317.0,1,0,1,PC,PC,13.1488,0.006,,1,qlp,QLP,01:31:38.54,-67:36:35.67,23.195,0.027,-17.151,0.023,2459075.899529,0.0016588,15.2015324,4.17e-05,8.329,0.311,40.945557,0.00875,37010.0,8.05923,21.2201,,266.219,1125.0,76.0,683.482,6.924,6042.0,122.0,4.43,,1.07,,,,1.12,,"1,28,29",2021-04-12,2021-04-12,2022-12-14 12:09:24,found in faint-star QLP search; large,2613,1,False,False,False -263075864,2614.01,,3,4,3,3,3,4,4,110.5,171.5,317.0,1,0,2,PC,PC,11.457,0.021,,1,spoc,QLP,01:08:46.87,-78:10:23.23,20.069,1.022,-6.358,1.022,2459037.589233,0.00059546926,4.81030382935693,0.00011208719,3.26450093772906,0.04608728,23.263499,0.316085,21198.5583641195,291.08295,14.9699994972447,0.17585972,321.21268098822,1079.7368415441,60.125465,315.469,,5860.3,5952.3,4.3,2.0,1.0,,,,,,"27,28",2021-04-12,2021-10-04,2022-12-14 12:09:24,TIC 263075864 is a split - use light curve and stellar parameters from TIC 6121921461 for photometry; found in faint-star QLP search; SG1 should clear neighbor,2614,1,False,False,True -38965512,2615.01,TIC 38965512.01,3,4,3,3,1,4,4,35.2,88.9,108.92,1,0,0,PC,PC,13.2052,0.006,,1,qlp,QLP,00:45:54.66,-66:50:00.59,30.448,0.026,-11.015,0.024,2459112.548021,0.0009068,2.2687617,3.7e-06,2.758,0.3,6.828997,0.002807,6270.0,2.58545,12.7782,,1150.02,1622.0,21.0,639.15,6.56,5690.0,122.0,4.38,,1.08,,,,1.01,,"1,2,28,29",2021-04-12,2021-04-12,2022-12-14 12:09:24,found in faint-star QLP search,2615,1,False,False,False -273850708,2616.01,,3,4,4,3,1,4,4,74.6,186.0,121.48,3,0,0,PC,PC,13.426,0.006,,1,qlp,QLP,02:18:14.93,-64:48:24.61,-0.824,0.032,25.764,0.026,2459085.640311,0.0005028,1.8531628,2.1e-06,2.019,0.381,37.804481,0.022829,34220.0,21.0259,13.5946,,672.909,1418.0,122.0,401.511,2.6155,5355.0,56.4,4.46,2.0,0.68,,,,0.93,,"1,2,3,28,29",2021-04-12,2021-04-12,2022-12-14 12:09:24,found in faint-star QLP search,2616,1,False,False,False -260537454,2617.01,,3,4,4,3,1,4,4,41.1,60.5,317.0,2,0,0,PC,PC,13.1982,0.006,,1,qlp,QLP,06:27:48.86,-58:03:05.67,-10.722,0.03,-11.812,0.04,2459387.59425,0.0003322,6.3187442,3.5e-06,3.504,0.118,31.247711,0.001257,28370.0,1.15734,16.8683,,139.993,958.0,215.0,467.32,3.3975,4961.0,105.7,4.43,2.0,0.98,,,,0.9,,"1,2,3,4,5,6,7,8,9,10,11,12,13,28,29,30,31,32,33,34,35,36,38",2021-04-12,2021-11-10,2023-05-20 00:00:00,found in faint-star QLP search,2617,1,False,False,True -231076038,2618.01,,3,4,3,3,3,4,4,13.2,50.6,96.4,0,0,1,PC,PC,12.0635,0.006,,1,qlp,QLP,04:31:05.84,-68:02:00.66,9.259,0.039,20.22,0.041,2459382.783301,0.0019967,8.2500143,2.61e-05,3.317,0.256,2.445659,0.219485,2250.0,202.133,11.8684,2.5386,1610.36,1764.0,35.0,766.74,11.7565,7386.5,203.3,4.2,,1.59,0.07,,,1.57,0.265409,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,33,34,35,36,37,38",2021-04-12,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search; slight odd-even,2618,1,False,False,False -31943299,2619.01,,3,4,3,3,1,4,4,13.9,72.8,99.1,2,0,0,PC,PC,13.2834,0.006,,1,qlp,QLP,03:37:38.01,-70:19:50.37,-5.376,0.026,22.923,0.026,2459331.034865,0.0006571,12.4724734,1.34e-05,3.649,0.076,25.285817,0.003406,23020.0,3.13718,12.11,,30.1565,652.0,105.0,377.66,1.9655,4966.0,41.1,,,0.79,,,,0.83,,"1,2,3,6,7,10,13,27,28,29,30,33,36,37",2021-04-12,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2619,1,False,False,False -394346647,2620.01,,3,4,3,3,1,4,4,25.6,45.2,317.0,1,0,0,PC,PC,12.9873,0.006,,1,qlp-s39-tois,QLP,02:51:40.78,-80:40:31.68,7.279,0.027,10.386,0.023,2459370.156605,0.0010712,10.3558635,1.8e-05,3.548,0.34,20.539761,0.013794,18740.0,12.705,17.6401,0.961529,102.964,887.0,71.0,662.246,5.6335,5896.0,126.7,4.27,0.08,1.26,0.06,,,1.07,0.137494,"1,12,13,27,28,39",2021-04-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,2620,1,False,False,False -388202128,2621.01,,3,4,3,3,1,4,4,30.8,77.8,125.16,2,0,0,PC,PC,13.4394,0.006,,1,qlp-s39-tois,QLP,04:08:53.36,-83:57:06.89,-4.181,0.037,9.451,0.048,2459387.772477,0.0011662,2.4125012,4.4e-06,1.209,0.241,11.855588,0.024699,10860.0,22.7485,13.7942,,369.1,1221.0,32.0,867.586,12.9675,6190.0,122.0,4.34,,1.22,,,,1.19,,"1,12,13,27,39",2021-04-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,2621,1,False,False,False -382259755,2622.01,,3,4,4,3,1,4,4,79.4,89.1,317.0,4,0,0,PC,PC,13.5093,0.006,,1,qlp,QLP,05:30:12.4,-57:24:42.05,-3.519,0.035,4.94,0.035,2459199.804071,0.0004182,1.2207037,8e-07,2.186,0.021,28.134527,0.001216,25580.0,1.12016,17.4662,,2232.93,1915.0,185.0,782.496,10.4705,5991.0,122.0,4.43,,1.06,,,,1.1,,"1,2,3,4,6,7,8,9,10,11,12,13,32",2021-04-12,2021-11-09,2022-12-15 00:00:00,found in faint-star QLP search,2622,1,False,False,False -403288821,2623.01,,5,5,5,5,5,5,5,23.6,38.3,83.59,3,0,1,PC,FP,12.4978,0.006,,1,qlp,QLP,22:11:42.45,-63:10:02.77,18.729,0.034,-1.18,0.044,2459085.611785,0.0022004,0.5474737,2.4e-06,1.789,0.189,1.553714,0.002307,1430.0,2.12441,10.9219,,5430.93,2391.0,15.0,995.741,30.672,5073.0,5126.8,3.5,0.2,2.84,,-0.41523,0.0945877,,,"1,27,28",2021-04-12,2021-04-12,2022-12-14 12:09:24,likely EB due to secondary and out of transit variability; found in faint-star QLP search,2623,1,False,False,False -349410350,2624.01,,3,4,4,3,1,4,4,48.0,127.0,114.0,1,0,0,PC,PC,13.4354,0.006,,1,qlp,QLP,07:21:26.1,-61:19:05.01,-8.519,0.03,12.656,0.026,2459384.356179,0.0003047,3.0235362,1.9e-06,2.189,0.064,29.695582,0.001592,26980.0,1.46606,13.178,,203.691,1052.0,207.0,390.263,2.158,5141.0,122.0,4.6,,0.78,,,,0.87,,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2021-04-12,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2624,1,False,False,False -308396509,2625.01,,3,4,4,3,1,4,4,70.1,100.5,317.0,3,0,0,PC,PC,13.2317,0.006,,1,qlp-s38-tois,QLP,08:00:46.58,-64:10:55.91,-4.411,3.098,10.636,3.1,2459357.37883,0.0003257,2.1481182,1.1e-06,3.438,0.04,23.076542,0.000767,21030.0,0.706778,,,1710.18,1791.0,205.0,843.028,,5876.0,178.7,,,,,,,,,"1,2,4,5,7,8,9,10,11,12,27,28,31,32,34,35,36,37,38",2021-04-12,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,2625,1,False,False,False -300604770,2626.01,TIC 300604770.01,3,4,4,3,3,4,4,50.0,141.8,83.57,3,0,1,PC,PC,12.6082,0.006,,1,qlp,QLP,07:34:14.3,-67:44:54.13,20.211,0.024,-47.844,0.024,2459386.695934,0.0020559,3.4562542,1.57e-05,2.208,0.034,22.511069,0.007104,20520.0,6.54258,10.8897,0.928967,86.1479,848.0,292.0,192.435,0.489,4404.0,121.8,4.52,0.1,0.75,0.06,,,0.69,0.0865578,"1,2,3,4,5,6,7,8,9,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2021-04-12,2021-11-09,2023-05-04 00:00:00,found in faint-star QLP search,2626,1,False,False,False -262829328,2627.01,,3,4,4,3,1,4,4,52.0,112.5,104.13,5,0,0,PC,PC,13.4702,0.006,,1,qlp,QLP,23:17:31.47,-54:16:12.23,11.845,0.026,-0.68,0.026,2459086.276449,0.0010117,1.0649771,2.2e-06,1.425,0.331,16.045735,0.066574,14670.0,61.3147,12.4794,,1643.06,1773.0,27.0,598.582,8.2985,5427.0,122.0,4.45,,0.97,,,,0.95,,"1,28",2021-04-12,2021-04-12,2022-12-14 12:09:24,found in faint-star QLP search,2627,1,False,False,False -260541432,2628.01,,3,4,3,3,1,4,4,35.2,84.2,79.1,1,0,0,PC,PC,13.3024,0.006,,1,qlp,QLP,06:28:19.26,-56:57:54.51,0.172,0.027,15.552,0.028,2459387.884973,0.0004956,0.8715953,7e-07,1.271,0.149,7.20054,0.008014,6610.0,7.38147,10.5535,,4579.31,2291.0,86.0,765.238,8.315,5969.0,122.0,4.31,,1.21,,,,1.1,,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38",2021-04-12,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2628,1,False,False,False -259901731,2629.01,,3,4,3,3,1,4,4,13.7,20.5,317.0,0,0,0,PC,PC,13.1508,0.006,,1,qlp,QLP,02:46:04.48,-68:57:27.45,5.915,0.025,-9.062,0.023,2459112.179524,0.0018406,11.4856846,3.62e-05,4.093,0.519,10.736555,0.005186,9840.0,4.77661,15.0335,,114.18,910.0,21.0,859.725,9.703,5893.0,122.0,4.16,,1.42,,,,1.07,,"1,2,3,27,28,29",2021-04-12,2021-04-12,2022-12-14 12:09:24,found in faint-star QLP search,2629,1,False,False,False -391900348,2630.01,,3,4,3,3,3,4,4,13.7,46.4,102.54,1,1,1,PC,PC,11.786,0.006,,1,qlp,QLP,07:42:45.28,-68:51:52.25,,,,,2459381.185326,0.0008602,9.7130596,1.32e-05,1.661,0.276,3.850325,0.005964,3540.0,5.49325,12.3196,,54.3894,,49.0,517.402,,6125.1,475.0,4.0,0.2,1.88,,-0.289775,0.1,,,"1,2,3,4,5,6,7,8,9,10,11,12,13,28,29,30,31,32,33,34,35,36,38",2021-04-12,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; Rp with tic8 almost half of previous Rp (~22 Re -> ~12 Re),2630,1,False,False,False -140067837,2631.01,,3,4,4,3,3,4,4,27.4,91.6,112.28,3,0,1,PC,PC,12.4487,0.006,,1,qlp,QLP,22:00:24.75,-48:42:38.3,-4.756,0.044,-38.444,0.042,2459085.301994,0.0012668,6.6314734,2.04e-05,2.431,0.349,10.276112,0.462123,9420.0,425.54,13.002,2.53146,254.535,1112.0,28.0,454.87,6.41,5752.2,5808.8,4.4,,1.08,0.05,,,1.02,0.125652,"1,28",2021-04-12,2021-04-12,2023-07-02 00:00:00,found in faint-star QLP search; star on the southwest 140050545 does not have a matching signal,2631,1,False,False,True -231703293,2632.01,,5,5,5,5,5,5,5,26.3,85.8,47.07,1,0,1,PC,FP,12.4537,0.006,,1,qlp,QLP,22:21:52.21,-57:45:30.41,25.052,0.045,0.477,0.052,2459085.547175,0.0029795,0.907105,5.9e-06,1.711,0.124,1.553714,0.667678,1430.0,614.765,7.82059,3.09134,28442.1,3617.0,17.0,540.632,9.611,6164.0,126.6,4.4,0.08,1.13,0.05,,,1.17,0.167749,"1,27,28",2021-04-12,2021-04-12,2022-12-14 12:09:24,found in faint-star QLP search,2632,1,False,False,False -386131764,2633.01,TIC 386131764.01,3,4,3,3,4,4,4,4.9,31.5,58.25,0,1,3,PC,PC,11.6886,0.011,,1,spoc,CTOI,07:26:21.7,-13:55:32.29,-4.879,0.065,1.001,0.058,2459229.361575,0.008091536,18.1960490983542,0.003231669,4.85964774012341,0.7699226,2.394869,0.26614,2203.32453088524,245.09373,8.8304862572515,0.8831822,1455.47193373814,1575.32697026503,11.503249,746.036,26.107,7811.0,143.047,4.25974,0.0792241,1.67013001441956,0.0747588,,,1.85,0.283706,34,2021-04-22,2021-04-22,2022-12-14 12:09:24,CTOI from Jana Steuer,2633,1,False,False,True -318812447,2634.01,TIC 318812447.01,3,5,5,3,4,4,4,,,28.86,0,4,3,PC,PC,10.9648,0.006,,1,spoc,CTOI,02:44:08.77,03:54:36.83,33.8,1.9,-15.8,1.9,2459147.133574,0.0041792374,0.0,0.0,4.88978049802339,0.3599886,3.045659,0.19248,2801.22475880757,177.26491,5.84242034978705,0.32005692,51.2659436861127,682.459664954822,20.800468,155.755,,5349.16,,4.438,,0.95524001121521,,0.055,0.016,,,31,2021-04-22,2021-05-12,2022-12-14 12:09:24,V-shaped. Single transit. CTOI from Nora Eisner.,2634,1,False,True,True -358557578,2635.01,,3,4,3,3,3,4,4,17.2,18.5,317.0,0,0,1,PC,PC,11.2581,0.006,,1,spoc,SPOC,10:04:35.7,-42:54:18.21,-3.939,0.039,-3.691,0.039,2459287.996165,0.0039178375,7.45607987280007,0.0055349534,7.169017116062,0.40517157,2.725679,0.207328,2507.29489604325,190.93747,14.525033372964,1.5429274,754.933511087852,1336.89385029407,10.651396,792.01,16.254,6502.0,138.8,3.65751,0.0897959,2.83273005485535,0.138166,,,1.33,0.217513,"9,36",2021-04-29,2021-04-29,2022-12-14 12:09:24,Y1 transits indicate period is 7.4561 days,2635,1,False,False,True -119925436,2636.01,,3,4,3,3,3,4,4,41.8,123.2,129.76,1,0,1,PC,PC,10.9786,0.008,,1,qlp,SPOC,10:49:39.06,-50:35:57.42,-14.4,2.1,4.8,2.0,2459330.68716,0.0005742,3.105494,3.8e-06,4.508,0.084,5.616903,0.000309,5160.0,0.284602,14.1277,,4421.62,,70.0,502.342,,7176.0,1003.8,4.13,1.55,1.9,,,,,,"10,36,37",2021-04-29,2021-11-04,2022-12-14 12:09:24,Tmag=12.6 neighbor 0.76 arcsec away,2636,1,False,False,True -349408306,2637.01,,3,5,5,3,1,4,4,99.6,375.8,75.5,5,0,0,PC,APC,15.8445,0.009,,1,spoc-s01-s39-b0A-PC,SPOC,07:21:42.28,-64:00:50.92,-0.359,0.058,8.091,0.062,2460014.399459,0.00048743462,0.152075994962404,1.7603395e-06,0.500000000000013,0.015759783,120.621319,2.831512,105147.465567032,2604.5212,,,12751.7114543245,2710.26569954367,53.869637,874.657,23.063,5780.0,,4.438,,,,,,,,"27,28,29,30,31,32,33,34,35,36,38,39,61,62,63,64",2021-04-29,2023-07-12,2023-07-12 00:00:00,Host is hot subdwarf; no stellar radius; period likely too short for companion to be planetary; period updated to ~0.15 d with clear additional events at half period in recent SPOC sectors,2637,1,False,False,True -458342769,2638.01,,3,4,3,3,3,4,4,11.0,88.2,24.13,5,1,1,PC,PC,11.1671,0.01,,1,spoc-s01-s39-b0A-PC,SPOC,10:39:22.21,-55:29:30.5,-10.652,0.092,3.087,0.094,2459329.310047,0.0025238,3.93039766630594,0.00025179764,0.918949853576243,0.12622151,2.527263,0.25464,2324.98837571912,234.50415,,,420.507780236262,1154.95020012807,11.2414255,647.694,25.091,5780.0,,4.438,,,,,,,,"36,37",2021-04-29,2022-03-22,2022-12-14 12:09:24,potentially large host star; crowded field,2638,1,False,False,True -98753307,2639.01,,3,4,3,3,1,4,4,11.4,24.9,317.0,1,0,2,PC,PC,14.3693,0.008,,1,spoc-s01-s46-b0A,SPOC,12:29:25.85,-10:59:06.25,-4.652,0.098,-13.204,0.053,2458584.385994,0.02429462,15.3281168841797,0.00053692155,4.11380539285581,0.66580963,33.178722,2.222092,30096.5339932265,2044.5294,16.4071896644817,1.8827407,49.0176947966637,674.851116005488,14.242225,858.145,30.827,5417.0,122.0,4.46174,,0.943467020988464,,,,0.94,,"10,36,46",2021-04-29,2022-07-15,2022-12-14 12:09:24,K2 PC EPIC 228707509.01; large,2639,1,False,False,True -135036669,2640.01,TIC 135036669.01,3,4,3,3,1,4,4,56.7,182.5,43.07,5,0,0,PC,PC,15.709,0.008,,1,spoc-s01-s39-b0A-PC,SPOC,10:01:05.57,-52:26:08.87,-22.692,0.15,7.371,0.147,2459307.40102,0.004426174,0.911220601723553,8.025334e-05,2.00308200483758,0.20044203,80.016305,5.131028,71047.5639651294,4714.7026,7.39318026256105,0.5033327,40.9351669289752,645.125028107624,12.526064,131.444,1.554,2999.0,157.0,4.95462,0.00770906,0.274906992912292,0.0089431,,,0.24827,0.0205189,"36,37",2021-04-29,2022-03-22,2022-12-14 12:09:24,,2640,1,False,False,True -162802770,2641.01,,3,5,5,3,4,4,4,13.1,63.5,38.5,2,4,1,PC,CP,11.1897,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,11:24:31.29,-42:43:55.7,-32.534,0.038,-9.823,0.032,2459332.214621,0.0016602,4.88062026001687,0.00018523805,1.26703034471292,0.21208756,3.040264,0.148303,2796.26993220311,136.58255,6.92073462221137,1.6975831,626.186245944403,1275.83828622614,19.714993,344.045,3.3105,6309.0,130.575,4.32298,0.0841433,1.27131998538971,0.0568342,,,1.24,0.18442,"36,37",2021-04-29,2022-03-22,2023-03-28 12:03:07,check neighbor,2641,1,False,False,True -448589187,2642.01,,5,5,5,5,5,5,5,39.7,110.4,118.41,0,0,0,KP,KP,12.3077,0.006,,1,qlp,SPOC,11:05:16.51,-34:07:21.88,-24.306,0.057,6.033,0.057,2459304.823271,0.0007127,3.0652926,4.4e-06,2.606,0.065,12.272778,0.002239,11240.0,2.06253,13.3524,0.703704,649.429,1406.0,61.0,539.36,11.693,6229.0,130.095,4.34122,0.0881535,1.22,0.06,,,1.2,0.166964,"9,36",2021-04-29,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; WASP-175 b,2642,1,False,False,True -152852327,2643.01,,5,5,5,5,5,5,5,6.3,14.9,60.46,0,2,4,PC,KP,11.0295,0.007,,1,qlp-s46-tois,SPOC,12:08:39.9,-08:44:49.98,-28.318,0.105,-8.731,0.081,2459562.250418,0.0202231,9.1720535,0.0009147,7.169,1.432,0.62991,0.00324,580.0,2.98453,9.02881,,293.374,1152.0,8.0,609.818,17.452,4933.0,122.0,4.438,,3.79,,,,,,"36,46",2021-04-29,2022-03-11,2022-12-14 12:09:24,K2-132 b,2643,1,False,False,True -385332171,2644.01,,3,5,5,3,4,4,4,23.6,118.2,66.33,1,2,3,PC,APC,10.9206,0.006,,1,spoc,SPOC,12:06:46.32,-16:30:37.06,27.92,2.0,-31.07,2.0,2459300.317115,0.000924,9.74397439850972,0.0016644315,1.97643954469521,0.08332924,7.311,0.36956,6711.05905664892,340.31976,9.53140991858013,0.36910182,93.2116922495684,792.47824291805,24.31497,235.146,,5383.0,,4.438,,0.983025014400482,,,,,,"10,36",2021-04-29,2021-05-27,2022-12-14 12:09:24,slightly v-shaped,2644,1,False,False,True -372818426,2645.01,,3,4,4,3,3,4,4,213.5,269.7,317.0,4,0,1,PC,PC,12.3956,0.006,,1,qlp-s39-tois,QLP,04:28:32.84,-56:30:56.32,22.85,0.044,-7.993,0.052,2459389.313335,7.59e-05,1.4436706,2e-07,2.134,0.005,48.140009,6.7e-05,43370.0,0.0617889,20.6713,1.12834,964.415,1552.0,723.0,360.674,2.815,5465.0,129.9,4.47,0.08,0.94,0.05,,,0.96,0.125158,"2,3,4,5,9,12,29,30,31,32,39",2021-05-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,2645,1,False,False,False -349966879,2646.01,,3,4,3,3,1,4,4,65.4,147.6,50.67,3,0,0,PC,PC,13.1875,0.006,,1,qlp,QLP,07:37:44.89,-63:33:05.34,-3.929,0.037,12.732,0.041,2459331.816165,0.0003319,0.3125737,2e-07,0.526,0.043,4.940466,0.190676,4540.0,175.604,8.09753,,4234.06,2247.0,74.0,389.119,2.7815,5202.0,122.0,4.53,,0.84,,,,0.88,,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36",2021-05-04,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search; short period; possible SV,2646,1,False,False,False -234527228,2647.01,,3,4,3,3,1,4,4,74.7,47.4,317.0,1,0,0,PC,PC,13.5231,0.006,,1,qlp,QLP,01:05:16.31,-65:02:56.15,14.39,0.065,4.145,0.064,2458380.980937,0.0032815,0.5136654,4.67e-05,1.012,0.127,3.632428,1.703477,3340.0,1567.73,14.481,,10398.6,2813.0,14.0,792.816,26.2835,5270.0,122.0,4.14,,1.33,,,,0.9,,"1,2",2021-05-04,2021-05-04,2022-12-14 12:09:24,found in faint-star QLP search,2647,1,False,False,False -231833236,2648.01,,3,4,3,3,3,4,4,20.8,60.0,125.91,2,0,2,PC,PC,13.3316,0.006,,1,qlp,QLP,01:36:41.88,-64:52:33.91,-3.4,0.035,3.991,0.022,2459111.479589,0.0010964,4.7760382,1.18e-05,1.274,0.135,12.316702,0.012032,11280.0,11.0816,13.8814,,55.0437,758.0,16.0,815.182,10.101,5904.3,78.7,4.28,,1.24,,-0.403746,0.0821732,1.07,,"1,2,28,29",2021-05-04,2021-05-04,2023-01-20 00:00:00,found in faint-star QLP search,2648,1,False,False,False -230980206,2649.01,TIC 230980206.01,3,4,4,3,3,4,4,33.4,98.3,115.5,3,0,1,PC,PC,12.4752,0.006,,1,qlp,QLP,01:36:02.24,-55:47:37.63,8.512,0.03,0.255,0.031,2458377.753706,0.0011602,3.375591,0.0003311,3.489,0.183,12.701113,0.004356,11630.0,4.01206,13.2361,0.657366,1112.75,1609.0,61.0,626.504,9.0525,6408.0,132.3,4.38,0.09,1.22,0.06,,,1.29,0.199403,2,2021-05-04,2021-05-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2649,1,False,False,False -453100296,2650.01,,3,4,3,3,1,4,4,21.7,54.3,96.27,1,0,0,PC,PC,13.4404,0.006,,1,qlp,QLP,07:43:49,-68:34:57.24,-1.732,0.026,12.823,0.028,2459387.317383,0.0007564,2.229735,2.9e-06,1.57,0.186,7.069393,0.00206,6490.0,1.89698,11.8248,,532.108,1338.0,52.0,870.557,10.0595,5913.0,122.0,4.2,,1.37,,,,1.08,,"1,2,3,4,5,6,7,8,9,10,11,12,13,28,29,30,31,32,33,34,35,36,37,38",2021-05-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2650,1,False,False,False -29830212,2651.01,,5,5,5,5,5,5,5,40.8,71.1,317.0,0,0,0,EB,FP,13.3994,0.006,,1,qlp,QLP,04:25:12.56,-66:43:01.63,-11.957,0.026,7.658,0.031,2459349.974976,0.0003188,7.3164282,3.4e-06,2.235,0.05,41.080861,0.010584,37130.0,9.74823,17.3698,,49.3074,738.0,212.0,396.637,2.353,4884.0,122.0,4.5,,0.83,,,,0.8,,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,30,31,32,33,34,35,36,37,38",2021-05-04,2021-10-05,2022-12-14 12:09:24,found in faint-star QLP search; TFOP FP; retired as EB,2651,1,False,False,False -372852036,2652.01,,3,4,3,3,1,4,4,23.3,63.4,103.82,1,0,0,PC,PC,13.3074,0.006,,1,qlp,QLP,06:32:08.61,-64:23:44.74,-3.518,3.29,18.197,3.29,2459384.710151,0.0007917,2.484912,3.3e-06,1.686,0.229,8.666096,0.015675,7950.0,14.4372,,,1044.33,1583.0,48.0,860.552,,6240.8,433.0,,,,,,,,,"1,2,3,4,5,6,7,9,10,11,12,13,27,28,29,30,31,32,33,34,36,37,38",2021-05-04,2021-11-10,2022-12-14 12:09:24,no radius; found in faint-star QLP search,2652,1,False,False,False -149394317,2653.01,,3,4,3,3,3,4,4,12.5,52.3,24.65,1,0,1,PC,PC,12.208,0.006,,1,qlp-s39-tois,QLP,05:37:06.09,-64:27:51.57,1.168,1.147,0.189,1.148,2460041.745982,0.00090969016,0.927053509851972,6.53145e-05,1.011,0.05,1.782069,0.001311,1640.0,1.20748,,,1270.74,1663.0,40.0,488.621,,6317.3,389.9,4.31,,,,,,,,"1,2,3,5,6,7,8,9,10,11,12,13,27,28,29,30,32,33,35,36,37,38,61,63,64",2021-05-04,2023-07-12,2023-07-12 00:00:00,no stellar radius; found in faint-star QLP search,2653,1,False,False,False -200805484,2654.01,,3,4,3,3,1,4,4,23.7,77.1,48.86,1,0,0,PC,PC,13.0725,0.006,,1,qlp,QLP,03:31:55.57,-47:59:40.89,-16.588,0.027,-38.122,0.034,2459168.071986,0.0007976,2.967599,4.7e-06,1.688,0.101,11.361755,0.005389,10410.0,4.96338,8.00413,,75.0167,819.0,46.0,248.964,1.0895,4396.0,122.0,4.52,,0.76,,,,0.69,,"3,4,30,31",2021-05-04,2021-05-04,2022-12-14 12:09:24,found in faint-star QLP search,2654,1,False,False,False -166851829,2655.01,,3,4,3,3,1,4,4,5.8,28.4,34.02,1,0,0,PC,PC,13.2854,0.006,,1,qlp,QLP,02:41:25.9,-52:21:46.23,8.333,0.03,0.325,0.03,2459132.354491,0.0033061,4.7277153,2.87e-05,2.5,0.282,4.351654,0.006794,4000.0,6.25762,6.45464,,193.697,1039.0,13.0,617.763,6.9345,5601.0,122.0,4.39,,1.05,,,,0.99,,"2,3,29,30",2021-05-04,2021-05-04,2022-12-14 12:09:24,found in faint-star QLP search,2655,1,False,False,False -231065398,2656.01,,3,4,3,3,1,4,4,10.6,49.4,64.81,3,0,0,PC,PC,13.5011,0.006,,1,qlp,QLP,02:07:36.01,-56:08:26.2,26.6,0.024,-20.261,0.022,2458392.685508,0.0023945,7.7898378,0.0010879,3.095,0.394,12.437502,0.012444,11390.0,11.4617,9.36784,,77.3001,826.0,25.0,488.29,3.5285,5091.5,71.8,4.48,2.0,0.85,,,,0.89,,"2,3",2021-05-04,2021-05-04,2022-12-14 12:09:24,found in faint-star QLP search; candidate hot Jupiter,2656,1,False,False,False -160004025,2657.01,TIC 160004025.01,3,4,3,3,1,4,4,26.8,68.3,103.95,3,0,0,PC,PC,13.4765,0.006,,1,qlp,QLP,03:23:36.69,-40:12:40.35,21.571,0.021,10.691,0.03,2459164.312459,0.0009091,2.7985528,5.6e-06,2.459,0.139,13.349429,0.004218,12220.0,3.88479,12.3741,,406.289,1250.0,41.0,674.476,6.781,5416.0,122.0,4.33,,1.09,,,,0.94,,"3,4,30,31",2021-05-04,2021-05-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2657,1,False,False,False -31634579,2658.01,,3,4,3,3,3,4,4,26.8,49.3,317.0,3,0,2,PC,PC,13.4228,0.006,,1,qlp,QLP,03:01:29.94,-68:56:42.89,7.19,0.032,13.186,0.028,2459079.093758,0.001026,8.8759249,1.59e-05,3.744,0.099,31.348285,0.006761,28460.0,6.22742,17.3933,,105.057,891.0,54.0,666.807,6.7165,5528.3,122.8,4.38,,1.02,,,,1.03,,"1,2,3,27,28",2021-05-04,2021-05-04,2023-01-20 00:00:00,found in faint-star QLP search; warm Jupiter candidate,2658,1,False,False,False -147456499,2659.01,,3,4,3,3,3,4,4,105.8,191.8,128.62,4,0,3,PC,PC,12.7331,0.006,,1,qlp,QLP,02:44:14.59,-40:11:49.02,-8.984,0.021,-38.868,0.025,2459140.202044,0.0002752,1.2558789,7e-07,1.795,0.059,24.441543,0.002021,22260.0,1.86118,14.1053,0.906689,681.251,1423.0,92.0,328.18,1.652,4926.0,126.5,4.43,0.09,0.91,0.06,,,0.81,0.0987084,"3,30",2021-05-04,2021-05-04,2022-12-14 12:09:24,found in faint-star QLP search,2659,1,False,False,False -372817671,2660.01,,3,4,3,3,3,4,4,13.4,31.4,81.75,0,0,1,PC,PC,12.1651,0.006,,1,qlp,QLP,04:27:32.54,-54:11:05.99,14.093,0.044,-11.556,0.046,2459190.295578,0.0020611,5.0183771,2.34e-05,3.218,0.283,2.717739,0.002425,2500.0,2.23335,10.7644,,187.484,1030.0,25.0,630.124,9.0935,5011.2,64.5,4.49,2.0,2.15,,,,,,"3,4,5,30,31,32",2021-05-04,2021-05-04,2022-12-14 12:09:24,found in faint-star QLP search,2660,1,False,False,False -144125079,2661.01,,3,4,4,3,1,4,4,24.2,67.3,100.8,1,0,0,PC,PC,13.0533,0.006,,1,qlp,QLP,03:59:38.4,-46:59:18.29,15.139,0.024,7.845,0.03,2459168.639577,0.0009901,3.6257584,7.7e-06,2.814,0.177,11.405642,0.003077,10450.0,2.83401,12.2058,,377.929,1228.0,47.0,635.045,5.278,5606.0,122.0,4.3,,1.17,,,,0.99,,"3,4,30,31",2021-05-04,2021-05-04,2022-12-14 12:09:24,found in faint-star QLP search,2661,1,False,False,False -423672208,2662.01,,3,4,3,3,1,4,4,27.3,77.1,112.63,1,0,0,PC,PC,13.4675,0.007,,1,qlp,QLP,01:25:59.58,-14:49:07.17,-15.573,0.073,-14.44,0.025,2458401.914156,0.0021847,3.790687,0.0008155,2.958,0.479,16.674001,0.032566,15240.0,29.9939,12.9604,,417.971,1259.0,31.0,640.511,13.156,5542.0,122.0,4.41,,1.02,,,,0.98,,3,2021-05-04,2021-05-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2662,1,False,False,False -423666115,2663.01,,3,4,3,3,3,4,4,23.8,70.9,46.97,5,0,1,PC,PC,12.7147,0.007,,1,qlp,QLP,00:37:09.54,-13:56:28.42,3.689,0.065,-6.378,0.034,2459140.932852,0.0014991,0.58228,1.6e-06,0.691,0.196,3.447251,0.025154,3170.0,23.1672,7.80197,0.797526,1871.39,1832.0,21.0,730.972,16.5485,6288.0,131.6,4.29,0.09,1.32,0.07,,,1.23,0.191747,"3,30",2021-05-04,2021-05-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2663,1,False,False,False -277871306,2664.01,,5,5,5,5,5,5,5,72.9,248.9,77.17,0,0,4,PC,FP,10.1483,0.007,,1,qlp,QLP,10:27:41.37,00:30:03.7,-9.999,0.079,-24.748,0.075,2459275.974283,0.0006413,3.9606004,0.000203,0.898,0.12,7.27705,0.10803,6680.0,99.4943,10.3965,1.24751,109.971,902.0,54.0,156.291,1.3345,5863.0,125.7,4.43,0.08,1.04,0.05,,,1.06,0.132334,35,2021-05-06,2021-05-06,2022-12-14 12:09:24,v-shaped; possible odd-even,2664,1,False,False,True -186936449,2665.01,TIC 186936449.01,3,4,3,3,3,4,4,23.0,98.2,34.68,0,0,1,PC,PC,10.3716,0.006,,1,qlp-s62-ffi,QLP,08:56:38.15,-34:37:42.51,-25.746,0.042,0.821,0.041,2460009.765012,0.0009607,2.8456505,2.7e-06,2.556,0.116,2.914768,0.084236,2681.0,77.5813,6.4972,0.322797,758.965,1462.0,37.0,222.0,1.4855,6112.0,132.1,4.27,0.08,1.3,0.06,,,1.15,0.155214,"8,35,62",2021-05-06,2023-04-12,2023-04-25 12:12:35,,2665,1,False,False,False -170889511,2666.01,,3,5,5,3,3,4,4,,,317.0,0,1,1,PC,APC,6.9887,0.006,,1,qlp,QLP,09:17:55.41,-03:23:15.09,23.429,0.099,-63.661,0.091,2459259.141383,0.0017871,0.0,0.0,1.445,0.07,24.19727,0.01222,22040.0,11.2546,16.6553,0.950689,21.4281,599.0,235.0,32.6024,0.09845,5212.0,110.6,4.3,0.08,1.11,0.06,0.08,0.03,0.89,0.10195,35,2021-05-06,2021-05-06,2022-12-14 12:09:24,v-shaped; possible EB; single transit,2666,1,False,True,True -348684813,2667.01,,3,4,3,3,3,4,4,15.2,28.9,93.71,0,2,1,PC,PC,9.6732,0.007,,1,qlp-s61-ffi,QLP,08:55:58.44,-14:21:19.04,-1.585,0.317,-2.482,0.309,2459976.896634,0.003987,7.7517472,3.92e-05,3.761,0.495,0.935222,0.049226,861.0,45.338,11.6856,,123.828,929.0,16.0,454.873,38.5215,5133.0,122.0,,,4.75,,,,,,"8,35,61",2021-05-06,2023-03-23,2023-03-24 12:12:10,evolved host; two stars in pixel,2667,1,False,False,False -192076548,2668.01,,3,4,3,3,3,4,4,22.9,96.5,31.77,0,0,1,PC,PC,10.1782,0.006,,1,qlp,QLP,09:08:06.87,-39:21:03.25,-11.62,0.044,3.091,0.047,2459279.678391,0.0016098,1.1159326,2.8e-06,1.013,0.196,0.912402,0.00172,840.0,1.58388,6.17322,0.358551,1667.72,1780.0,17.0,314.451,2.9355,6859.0,136.4,4.16,0.09,1.68,0.07,,,1.49,0.242858,"8,9,35",2021-05-06,2021-05-06,2022-12-14 12:09:24,found in faint-star QLP search,2668,1,False,False,False -348835438,2669.01,TIC 348835438.01,3,5,5,3,4,4,4,14.4,28.4,71.2,0,8,3,CP,CP,9.9917,0.007,,1,qlp-s61-ffi,QLP,08:58:53.43,-13:18:45.29,18.681,0.062,-11.117,0.06,2459985.604157,0.0055852,6.203496,3.9e-05,5.715,1.142,0.879803,0.043907,810.0,40.4389,9.93735,,375.554,1226.0,18.0,393.443,6.3565,4859.0,122.0,,,3.98,,,,,,"8,35,61",2021-05-06,2023-03-10,2023-03-24 12:12:10,TOI-2669 b,2669,1,False,False,False -190721237,2670.01,,1,4,1,3,3,4,4,0.2,32.9,67.94,3,2,1,PC,PC,9.5986,0.006,,1,qlp,QLP,08:55:01.2,-37:20:28.48,-69.98,2.0,89.04,2.0,2459269.068451,0.0010588,748.5175872,2.22e-05,3.325,0.127,4.502098,0.000864,4138.0,0.795587,9.64792,,84.8278,,21.0,171.703,,6332.0,,,,1.39,,,,,,"8,35",2021-05-06,2021-05-06,2022-12-14 12:09:24,one transit in Y1 and one in Y3; longest possible period 748.52 days; period is most likely shorter,2670,1,False,False,True -190081497,2671.01,,3,4,3,3,3,4,4,23.1,97.4,37.53,0,0,1,PC,PC,10.3364,0.006,,1,qlp,QLP,08:49:04.8,-36:34:41.73,-6.684,0.04,-10.243,0.041,2459273.582829,0.0063715,3.1630387,3.65e-05,4.661,0.438,1.227576,0.169547,1130.0,156.146,6.82612,1.86481,17348.8,3197.0,15.0,233.793,1.5895,6187.0,128.6,4.26,0.08,1.34,0.06,,,1.18,0.162622,"8,35",2021-05-06,2021-05-06,2022-12-14 12:09:24,slight centroid offset possible on TIC 190081483 or fainter neighbors; possibly EB,2671,1,False,False,False -129372561,2672.01,,3,5,5,3,3,4,4,36.1,72.0,317.0,0,2,1,PC,APC,10.6734,0.007,,1,qlp,QLP,07:55:35.4,-25:51:55.66,-1.358,0.07,0.218,0.079,2459251.408882,0.0030937,10.7189647,5.65e-05,2.855,0.518,5.256811,0.049097,4830.0,45.2186,18.5904,1.73523,492.096,1312.0,15.0,625.01,20.493,7830.0,132.4,4.07,0.08,2.07,0.09,,,1.86,0.291629,"7,34",2021-05-20,2021-05-19,2022-12-14 12:09:24,ramp-like transit shape,2672,1,False,False,False -1018843,2673.01,,1,5,5,1,4,4,4,8.0,65.6,5.73,1,4,5,PC,PC,8.8448,0.006,,1,qlp-s62-ffi,QLP,08:43:43.72,-26:58:50.97,-55.376,0.057,-10.422,0.088,2460011.626285,0.0019774,1.9126596,4.5e-06,2.178,0.254,0.403969,0.018031,372.0,16.6071,2.2474,0.120633,943.042,1543.0,25.0,98.3018,0.51595,5601.4,105.1,4.24,0.08,1.24,0.05,0.328235,0.0317196,0.99,0.128701,"8,34,35,61,62",2021-05-20,2023-04-12,2023-06-05 00:00:00,possible centroid offset,2673,1,False,False,False -434496663,2674.01,,3,5,5,3,3,4,4,33.8,96.3,116.12,1,2,1,PC,APC,10.185,0.006,,1,qlp,QLP,11:32:05.99,-20:37:57.48,9.69,0.078,-30.776,0.047,2459291.690613,0.0008015,7.2972359,1.26e-05,0.827,0.058,4.111859,0.003423,3780.0,3.15282,13.2402,0.733716,14.5303,543.0,32.0,370.146,6.0165,6433.0,134.9,3.91,0.09,2.1,0.1,,,1.3,0.206532,"9,36",2021-05-27,2021-05-27,2022-12-14 12:09:24,slight depth-aperture and centroid offset to N; Gaia DR2 RV error ~5.5 km/s,2674,1,False,False,False -179033846,2675.01,TIC 179033846.01,3,4,3,3,3,4,4,59.8,146.4,115.77,5,2,1,PC,PC,11.7919,0.008,,1,qlp,QLP,04:17:03.02,-29:31:29.67,3.127,0.042,-2.498,0.047,2459197.208589,0.0010196,1.476869,2.9e-06,1.451,0.135,2.902793,1.034315,2670.0,952.186,13.2219,4.68994,7685.32,2608.0,43.0,523.999,7.575,6712.0,184.6,4.28,2.01,1.37,0.06,,,1.35,0.219139,"4,5,31,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2675,1,False,False,False -420016507,2676.01,TIC 420016507.01,3,4,3,3,3,4,4,36.1,44.2,317.0,5,0,1,PC,PC,12.7082,0.008,,1,qlp,QLP,02:21:40.74,00:30:49.03,19.463,0.064,-6.532,0.045,2459168.078836,0.0012088,3.4082154,7.2e-06,3.901,0.1,10.977818,0.001745,10060.0,1.60695,16.7879,0.808215,1192.31,1637.0,30.0,840.941,18.9845,6231.4,103.1,4.11,0.08,1.59,0.07,-0.093,0.017,1.2,0.15879,"4,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2676,1,False,False,False -398736713,2677.01,,3,4,3,3,3,4,4,,,317.0,1,5,6,PC,PC,10.8489,0.007,,1,qlp,QLP,02:20:58.17,-10:23:07.69,-18.669,4.948,10.459,2.433,2458429.573362,0.0008862,6.4967452,0.0006987,1.8,0.162,5.365917,1.923162,4930.0,1769.73,19.5904,7.24615,160.453,991.0,30.0,230.6234,,5186.9,196.0,,,1.53,0.11,,,,,4,2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2677,1,False,False,False -354517490,2678.01,,3,4,4,3,1,4,4,20.6,66.5,75.04,2,0,0,PC,PC,13.4391,0.006,,1,qlp,QLP,05:18:41.16,-44:27:59.38,-0.31,0.032,11.737,0.039,2459221.389847,0.0009417,3.4523955,5.1e-06,1.624,0.131,14.493166,0.00928,13260.0,8.54726,10.2673,,139.443,957.0,40.0,602.385,5.9795,5614.0,123.0,4.49,,0.94,,,,0.99,,"4,5,6,31,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2678,1,False,False,False -323295908,2679.01,TIC 323295908.01,3,4,3,3,3,4,4,36.7,119.3,95.93,3,0,1,PC,PC,12.4453,0.006,,1,qlp,QLP,03:30:56.16,-39:36:48.86,-1.085,0.03,16.601,0.034,2459169.162947,0.0004285,3.8539027,4.3e-06,2.906,0.062,15.880463,0.001282,14520.0,1.1811,11.8808,0.57189,374.407,1225.0,95.0,403.17,2.9105,5805.0,129.2,4.52,0.08,0.93,0.04,,,1.04,0.13241,"4,30,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2679,1,False,False,False -219366908,2680.01,,5,5,5,5,5,5,5,16.6,72.0,18.15,2,0,1,PC,FP,12.653,0.006,,1,qlp,QLP,05:01:45.46,-49:17:04.07,93.2,0.024,51.274,0.028,2459199.016708,0.0008111,0.6293198,1.2e-06,1.129,0.232,4.057368,0.00858,3730.0,7.90253,4.46635,0.342805,2516.29,1973.0,51.0,344.16,1.728,5508.0,134.6,4.63,0.08,0.79,0.04,,,0.97,0.123833,"4,5,6,31,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2680,1,False,False,False -209408136,2681.01,,3,4,3,3,3,4,4,30.8,88.3,98.62,3,0,1,PC,PC,12.1692,0.006,,1,qlp,QLP,03:00:04.71,-32:44:40.63,10.678,0.031,-3.475,0.045,2459164.002226,0.0006386,3.1292868,5.1e-06,1.545,0.329,8.097138,0.013028,7430.0,11.999,12.0419,0.785006,400.405,1246.0,50.0,547.103,8.179,6078.0,132.2,4.25,0.08,1.32,0.07,,,1.14,0.154632,"4,30,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,slightly V-shaped; found in faint-star QLP search,2681,1,False,False,False -200803270,2682.01,,3,4,3,3,3,4,4,41.6,117.6,92.22,3,0,1,PC,PC,12.6795,0.006,,1,qlp,QLP,03:30:49.35,-49:42:55.79,13.882,0.021,-2.259,0.029,2459139.377363,0.0006317,2.5981987,2.8e-06,1.412,0.268,15.59405,0.024989,14260.0,23.0154,11.5397,0.782465,233.319,1088.0,62.0,414.029,2.238,5516.0,132.7,4.49,0.08,0.93,0.05,,,0.97,0.124967,"3,4,30",2021-06-03,2021-06-03,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2682,1,False,False,False -200320748,2683.01,,3,4,3,3,3,4,4,16.2,56.1,43.35,0,0,2,PC,PC,12.4435,0.006,,1,qlp,QLP,05:05:15.4,-42:07:43.2,3.012,2.436,-14.418,2.436,2459197.662315,0.0013369,1.5292851,3.6e-06,1.167,0.131,3.044325,0.003684,2800.0,3.39267,12.6875,1.85386,623.678,1392.0,18.0,573.731,,6295.5,447.1,,,2.21,0.31,,,,,"4,6,31,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,slightly V-shaped; found in faint-star QLP search,2683,1,False,False,False -161568891,2684.01,,3,4,3,3,1,4,4,9.5,40.1,24.36,1,0,0,PC,PC,13.2964,0.006,,1,qlp,QLP,04:57:43.62,-47:01:17.16,-21.74,0.033,34.074,0.039,2459195.18388,0.0025267,2.4756487,1.06e-05,2.461,0.322,4.755065,0.005389,4370.0,4.96362,5.25914,,321.692,1179.0,1000.0,330.145,1.8725,4633.0,122.0,4.5,,0.8,,,,0.74,,"4,5,6,31,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2684,1,False,False,False -161479081,2685.01,,3,4,3,3,1,4,4,21.0,63.5,87.61,3,0,0,PC,PC,13.322,0.006,,1,qlp,QLP,04:53:28.57,-45:02:05.06,-11.887,0.023,-10.147,0.025,2459197.748783,0.0009316,3.4711465,7.6e-06,1.606,0.221,10.988785,0.012332,10070.0,11.3581,11.1759,,148.699,972.0,32.0,645.065,5.2705,5593.0,122.0,4.39,,1.05,,,,0.99,,"4,5,31,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2685,1,False,False,False -159989004,2686.01,,3,4,3,3,3,4,4,18.1,54.7,94.19,1,0,1,PC,PC,12.9852,0.006,,1,qlp,QLP,03:22:37.06,-36:45:06.79,6.662,0.022,20.168,0.035,2459169.865852,0.0015311,3.5746058,1.15e-05,1.153,0.226,6.577731,0.017205,6040.0,15.846,11.6965,0.81782,127.934,936.0,17.0,861.62,12.539,6257.0,133.3,4.25,0.08,1.37,0.07,,,1.22,0.172016,"4,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,slightly V-shaped; found in faint-star QLP search,2686,1,False,False,False -155993822,2687.01,TIC 155993822.01,3,4,3,3,3,4,4,23.6,59.5,109.83,1,0,1,PC,PC,12.4052,0.007,,1,qlp,QLP,03:44:26.42,-13:06:31.35,9.083,0.056,-0.078,0.059,2459164.974049,0.0020059,4.0944492,1.33e-05,4.233,0.244,6.413894,0.00164,5890.0,1.51019,12.8011,0.755192,711.268,1438.0,27.0,634.2,18.3645,5650.0,128.6,4.03,0.08,1.6,0.09,,,1.0,0.12104,"4,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2687,1,False,False,False -98728690,2688.01,,3,4,3,3,3,4,4,8.1,36.9,20.16,0,2,1,PC,PC,11.3437,0.007,,1,qlp,QLP,02:56:41.73,-15:03:20.11,-0.606,0.069,-48.614,0.085,2459165.769957,0.0048708,2.1415519,1.77e-05,2.989,0.353,1.151491,0.00229,1060.0,2.10881,4.72287,0.35464,1363.83,1693.0,11.0,350.687,7.136,5530.0,127.5,4.08,0.09,1.48,0.08,,,0.97,0.126019,"4,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2688,1,False,False,False -92363023,2689.01,,3,4,3,3,3,4,4,13.3,56.0,35.29,1,0,1,PC,PC,12.6443,0.007,,1,qlp,QLP,03:30:43.32,-22:00:13.85,5.341,0.031,-27.854,0.031,2459164.871015,0.0021338,3.4180406,1.23e-05,2.242,0.32,5.660559,0.006309,5200.0,5.81054,6.58171,0.485075,201.62,1049.0,21.0,315.805,1.998,5001.0,128.7,4.46,0.09,0.89,0.06,,,0.83,0.102156,"4,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2689,1,False,False,False -92359852,2690.01,,3,4,4,3,3,4,4,84.7,249.3,98.87,2,2,3,PC,PC,10.732,0.021,,1,qlp,QLP,03:28:55.45,-19:58:28.8,,,,,2459167.712302,0.0004408,4.1549988,4.1e-06,2.873,0.096,15.120533,0.002312,13830.0,2.12906,,,,,109.0,,,,,,,,,,,,,"4,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,no radius; found in faint-star QLP search,2690,1,False,False,False -71345362,2691.01,,3,4,3,3,3,4,4,8.0,40.5,26.44,0,0,1,PC,PC,12.5728,0.006,,1,qlp,QLP,03:00:27.74,-21:16:08.98,4.345,2.156,-18.909,2.156,2459167.794838,0.0047673,3.8821916,4.02e-05,3.126,1.399,2.902793,0.13719,2670.0,126.349,5.57096,,1093.46,,13.0,374.763,,5283.0,,,,0.95,,,,,,"4,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2691,1,False,False,False -38399060,2692.01,TIC 38399060.01,3,4,3,3,1,4,4,32.0,97.5,100.85,1,0,0,PC,PC,13.3717,0.008,,1,qlp,QLP,03:36:22.87,-09:22:28.1,12.329,0.049,-1.625,0.045,2459163.769215,0.0009674,3.6506781,7.7e-06,2.79,0.13,22.344809,0.00818,20370.0,7.53433,12.1655,,273.621,1133.0,49.0,472.632,6.7335,5343.0,122.0,4.55,,0.84,,,,0.92,,"4,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2692,1,False,False,False -30016082,2693.01,,3,4,4,3,1,4,4,44.2,103.4,92.63,6,0,0,PC,PC,13.3201,0.007,,1,qlp,QLP,02:51:50.69,-15:37:57.8,12.678,0.045,-3.843,0.05,2459167.861473,0.0008491,1.3225635,2.3e-06,1.683,0.102,15.032459,0.008288,13750.0,7.63322,11.5804,,825.226,1493.0,40.0,537.182,12.4615,5388.0,123.0,4.44,,0.97,,,,0.94,,"4,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2693,1,False,False,False -146467673,2694.01,,3,5,5,3,3,4,4,60.4,131.8,120.1,1,1,1,PC,APC,12.575,0.019,,1,qlp,QLP,05:04:19.95,-20:43:32.74,,,,,2459198.068832,0.0014089,1.6375324,4.4e-06,1.665,0.15,12.141016,0.012813,11120.0,11.8014,,,437.581,1274.0,25.0,451.486,,5095.6,1104.7,,,,,,,,,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,no radius; found in faint-star QLP search; parent of TIC8 SPLIT into two fainter stars and target may be on brighter of the two; possible SG1 NEB or NPC,2694,1,False,False,False -140284353,2695.01,,3,4,3,3,1,4,4,,,115.87,0,0,0,PC,PC,13.0494,0.006,,1,qlp,QLP,05:41:15.44,-34:49:55.91,-8.752,3.188,4.303,3.188,2459226.435976,0.0007575,0.5566811,8e-07,0.473,0.158,3.534389,0.068868,3250.0,63.4275,13.2433,1.91906,634.993,1398.0,26.0,,,5200.0,234.9,,,1.7,0.16,,,,,"5,6,32,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2695,1,False,False,False -139445621,2696.01,,3,4,4,3,3,4,4,21.7,79.6,100.44,5,0,1,PC,PC,12.4762,0.006,,1,qlp,QLP,05:22:41.86,-20:25:40.04,-2.81,0.029,-4.629,0.037,2459199.897242,0.0010961,6.409365,1.11e-05,1.707,0.111,12.338665,0.005226,11300.0,4.81338,12.1252,0.613031,64.1809,788.0,42.0,537.943,7.5445,6191.0,117.6,4.41,0.08,1.12,0.05,,,1.19,0.16905,"5,6,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2696,1,False,False,False -139445453,2697.01,,3,4,3,3,1,4,4,11.7,33.1,83.53,0,0,0,PC,PC,13.1506,0.007,,1,qlp,QLP,05:22:37.95,-20:39:14.81,9.1,0.02,7.603,0.025,2459199.867115,0.0040923,4.3169755,2.91e-05,4.523,0.463,5.082264,0.004444,4670.0,4.09313,10.9284,,803.246,1483.0,20.0,911.81,16.2935,5683.0,122.0,4.03,,1.61,,,,1.01,,"5,6,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2697,1,False,False,False -100683605,2698.01,,3,4,3,3,1,4,4,22.1,68.3,68.47,1,0,0,PC,PC,13.3713,0.006,,1,qlp,QLP,05:50:29.95,-32:46:40.1,2.414,2.209,9.611,2.209,2459223.847344,0.0009262,3.270563,7.6e-06,1.682,0.112,10.550162,0.007118,9670.0,6.55573,,,123.655,929.0,31.0,440.358,,5219.5,174.8,,,,,,,,,"5,6,32,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,no radius; found in faint-star QLP search,2698,1,False,False,False -77958378,2699.01,,3,4,3,3,1,4,4,27.1,67.3,127.92,2,1,0,PC,PC,13.0583,0.006,,1,qlp,QLP,05:17:57.54,-33:23:57.9,5.515,0.025,-5.38,0.029,2459198.336939,0.0011522,5.8259928,1.2e-05,2.442,0.296,13.987133,0.011043,12800.0,10.1712,14.0157,,71.3806,809.0,38.0,511.659,4.151,4964.0,122.0,4.19,,1.2,,,,0.82,,"5,6,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2699,1,False,False,False -56096837,2700.01,TIC 56096837.01,3,4,3,3,3,4,4,34.3,104.2,105.72,2,2,1,PC,PC,12.0698,0.009,,1,qlp,QLP,04:40:30.65,-09:53:25.74,11.791,0.054,-6.94,0.049,2459196.570296,0.0008068,4.6636858,7.2e-06,2.604,0.191,12.130037,0.00329,11110.0,3.03005,12.5117,0.643505,226.009,1080.0,61.0,404.662,5.5845,5720.0,129.9,4.32,0.08,1.16,0.06,,,1.02,0.128354,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2700,1,False,False,False -44791617,2701.01,,3,4,3,3,3,4,4,7.9,32.0,28.53,0,0,1,PC,PC,12.5257,0.007,,1,qlp,QLP,04:07:20.87,-27:16:11.06,15.541,0.025,7.037,0.033,2459166.358806,0.0044623,2.169466,1.65e-05,1.653,0.421,1.934333,0.008612,1780.0,7.93164,5.81205,0.506319,643.066,1402.0,9.0,600.01,6.387,5823.0,128.4,4.2,0.08,1.35,0.07,,,1.05,0.129661,"4,5,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2701,1,False,False,False -43604949,2702.01,,3,4,3,3,1,4,4,31.6,35.5,317.0,1,0,0,PC,PC,13.0115,0.008,,1,qlp,QLP,05:01:54.19,-07:39:36.85,1.296,0.029,-1.53,0.028,2459196.429516,0.0011025,1.9422802,3.8e-06,2.768,0.124,8.874059,0.001764,8140.0,1.62465,15.1178,,2966.77,2056.0,34.0,1115.16,23.98,6950.0,123.0,4.21,,1.6,,,,1.52,,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2702,1,False,False,False -43475220,2703.01,TIC 43475220.01,3,4,3,3,1,4,4,16.4,59.7,88.9,2,0,0,PC,PC,13.3652,0.007,,1,qlp,QLP,04:59:18.18,-07:23:01.26,4.82,0.043,-6.007,0.038,2459193.235438,0.0018651,6.1735306,2.01e-05,3.163,0.28,14.152118,0.011234,12950.0,10.3473,11.2676,,145.598,967.0,27.0,558.907,8.5655,5435.0,122.0,4.45,,0.96,,,,0.95,,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2703,1,False,False,False -32677675,2704.01,TIC 32677675.01,3,4,3,3,3,4,4,44.0,60.5,317.0,3,0,1,PC,PC,12.7063,0.008,,1,qlp,QLP,05:42:49.1,-25:59:47.56,-10.654,0.028,-7.534,0.036,2459225.757456,0.0004184,3.6364993,2.8e-06,3.509,0.04,18.284902,0.000534,16700.0,0.491401,16.4306,0.782017,977.668,1557.0,131.0,718.493,11.6905,6552.0,134.2,4.39,0.09,1.23,0.06,,,1.36,0.215864,"5,6,32,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2704,1,False,False,False -169448771,2705.01,,3,4,4,3,3,4,4,7.7,27.4,106.51,4,0,1,PC,PC,12.6139,0.008,,1,qlp,QLP,05:09:55.46,-12:37:46.86,7.535,0.037,-3.984,0.034,2459165.598824,0.0055204,18.010652,0.0001757,4.952,0.672,4.984094,0.00885,4580.0,8.1512,12.5654,0.849191,61.2858,779.0,14.0,759.341,12.339,5740.0,124.6,3.91,0.08,1.85,0.09,,,1.03,0.128336,"5,32",2021-06-03,2021-06-03,2023-03-19 00:00:00,found in faint-star QLP search,2705,1,False,False,False -457202957,2706.01,,3,4,3,3,3,4,4,59.0,61.5,317.0,0,0,2,PC,PC,13.4046,0.007,,1,qlp,QLP,04:48:50.59,02:28:33.42,-0.407,0.053,-6.381,0.033,2458461.885377,0.0048796,1.8851834,0.0008097,1.428,0.535,5.933446,3.51097,5450.0,3228.5,17.0369,,1582.72,1757.0,9.0,780.028,17.04,5807.0,122.0,4.26,,1.25,,,,1.04,,5,2021-06-03,2021-06-03,2022-12-14 12:09:24,slightly V-shaped; found in faint-star QLP search,2706,1,False,False,False -455036659,2707.01,TIC 455036659.01,3,5,5,3,5,4,5,48.1,61.7,317.0,0,0,0,PC,KP,12.1569,0.009,,1,qlp,QLP,04:35:53.85,02:25:52.58,7.784,0.079,-3.863,0.044,2459194.067914,0.0008783,4.007232,6.7e-06,4.78,0.112,11.306898,0.00128,10360.0,1.17919,18.1614,0.968247,1275.2,1664.0,74.0,651.897,15.0705,6202.0,131.6,4.03,0.09,1.75,0.09,,,1.19,0.167703,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,HAT-P-64; found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2707,1,False,False,False -452810327,2708.01,TIC 452810327.01,5,5,5,5,5,5,5,32.4,30.7,317.0,0,0,3,PC,FP,12.5398,0.008,,1,qlp,QLP,04:50:40.58,05:23:14.12,5.218,0.05,-7.067,0.033,2459197.357111,0.0015789,2.3540172,6.5e-06,2.36,0.211,7.25519,0.005492,6660.0,5.05864,14.4919,0.839009,954.677,1548.0,27.0,825.004,18.9655,6114.0,126.1,4.02,0.09,1.74,0.09,,,1.15,0.157863,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2708,1,False,False,False -452810326,2709.01,TIC 452810326.01,3,4,4,3,3,4,4,34.2,34.9,317.0,3,0,2,PC,PC,13.0639,0.008,,1,qlp,QLP,04:50:40.36,05:23:10.19,4.882,0.038,-6.269,0.025,2459197.356321,0.0014645,2.3540163,6.3e-06,2.416,0.207,10.933948,0.008186,10020.0,7.53915,15.1575,,960.683,1551.0,28.0,892.418,17.1245,6124.0,122.0,4.16,,1.48,,,,1.16,,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2709,1,False,False,False -408231638,2710.01,,3,4,3,3,1,4,4,17.7,101.0,97.79,1,0,0,PC,PC,13.3942,0.006,,1,qlp,QLP,05:29:23.82,-23:45:42.66,13.963,0.025,-14.174,0.026,2459196.318036,0.0009152,10.7448417,1.66e-05,3.298,0.117,42.141326,0.01325,38070.0,12.2037,11.9772,,24.4016,619.0,75.0,278.402,1.314,4701.0,122.0,4.72,,0.63,,,,0.751,,"5,6,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2710,1,False,False,False -396896334,2711.01,TIC 396896334.01,3,4,3,3,1,4,4,30.2,82.8,128.84,2,0,0,PC,PC,13.0719,0.01,,1,qlp,QLP,04:10:22.73,03:45:46.16,14.12,0.056,-7.493,0.028,2459190.700563,0.0011748,5.7604868,1.26e-05,3.08,0.136,15.946569,0.005207,14580.0,4.79591,14.0917,,158.265,988.0,36.0,470.297,6.9245,5530.3,127.3,4.33,,1.12,,0.464,0.118,0.97,,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2711,1,False,False,False -362026280,2712.01,,3,4,3,3,3,4,4,18.3,58.4,68.84,1,0,2,PC,PC,13.0933,0.006,,1,qlp,QLP,04:24:35.35,02:34:30.99,11.634,2.237,-7.934,2.231,2459195.831917,0.00237,3.078479,1.35e-05,2.424,0.277,6.293762,0.00713,5780.0,6.56687,,,295.7,1155.0,18.0,598.388,,5140.1,175.6,,,,,,,,,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,no radius; found in faint-star QLP search,2712,1,False,False,False -332660287,2713.01,,3,4,3,3,3,4,4,24.7,91.0,27.63,3,0,1,PC,PC,12.483,0.007,,1,qlp,QLP,04:12:36.03,-12:19:03.57,-15.112,0.026,-14.999,0.021,2459197.326471,0.0008372,1.2434016,2e-06,0.939,0.263,4.427963,0.02195,4070.0,20.2163,5.66309,0.52193,412.506,1255.0,28.0,246.568,1.258,4967.0,126.6,4.6,0.09,0.75,0.05,,,0.82,0.0994234,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2713,1,False,False,False -332534326,2714.01,,3,4,3,3,3,4,4,36.1,89.8,111.79,3,0,1,PC,PC,12.7979,0.007,,1,qlp,QLP,04:05:36.3,-14:55:36.28,11.318,0.026,4.976,0.024,2459168.948798,0.0010114,2.4993895,4.5e-06,2.99,0.101,11.581209,0.002073,10610.0,1.90971,12.9239,0.690267,945.55,1544.0,44.0,597.873,7.786,5737.0,124.0,4.28,0.08,1.21,0.06,,,1.02,0.129444,"5,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2714,1,False,False,False -311239796,2715.01,,3,4,3,3,1,4,4,15.4,39.7,122.79,0,0,0,PC,PC,13.0115,0.008,,1,qlp-s44-tois,QLP,05:03:47.03,14:18:20.2,2.626,0.044,-4.912,0.031,2459515.126171,0.0026087,4.9640641,2.25e-05,4.908,0.284,5.344095,0.002635,4910.0,2.42718,13.6926,,1050.08,1585.0,22.0,981.407,26.967,6323.0,123.0,3.95,,1.95,,,,1.25,,"5,32,43,44",2021-06-03,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search,2715,1,False,False,False -284859630,2716.01,TIC 284859630.01,3,4,3,3,3,4,4,13.9,63.0,66.24,1,2,1,PC,PC,12.3425,0.008,,1,qlp,QLP,05:07:57.4,05:58:08.84,0.94,0.062,2.404,0.049,2459194.254825,0.0018191,7.5420435,2.7e-05,3.854,0.231,8.414405,0.003837,7720.0,3.53362,9.55159,0.533134,210.743,1061.0,33.0,447.236,7.563,5949.0,132.7,4.42,0.07,1.07,0.05,,,1.09,0.13002,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2716,1,False,False,False -269077474,2717.01,,5,5,5,5,5,5,5,21.4,54.2,87.53,2,0,1,PC,FP,12.8212,0.007,,1,qlp,QLP,05:01:38.6,01:50:26.34,1.574,0.036,-11.541,0.026,2459197.192883,0.0017978,1.3164901,5.1e-06,1.389,0.241,3.89391,0.009229,3580.0,8.49999,11.2218,0.792626,1368.05,1694.0,15.0,1017.77,23.3595,6341.0,125.5,4.04,0.09,1.78,0.09,,,1.26,0.192694,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2717,1,False,False,False -248655096,2718.01,TIC 248655096.01,3,4,3,3,1,4,4,31.8,86.1,81.71,2,1,0,PC,PC,13.5252,0.009,,1,qlp,QLP,04:29:09.17,-03:11:22.81,8.315,0.047,-8.497,0.036,2459196.564554,0.0008735,2.7625084,5.3e-06,2.037,0.108,17.688811,0.009886,16160.0,9.10497,10.8143,,155.318,983.0,41.0,373.363,4.5935,4694.0,122.0,4.48,,0.83,,,,0.75,,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2718,1,False,False,False -176314383,2719.01,,3,4,3,3,3,4,4,6.3,25.8,30.62,0,2,1,PC,PC,12.0676,0.007,,1,qlp,QLP,04:46:13.19,-00:48:17.54,15.342,0.073,-11.89,0.054,2459197.636818,0.0060746,3.3759446,5.03e-05,3.538,0.517,1.379761,0.003216,1270.0,2.96167,6.03548,0.468317,874.29,1514.0,10.0,588.368,12.467,5701.0,131.2,3.99,0.08,1.69,0.1,,,1.02,0.128869,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2719,1,False,False,False -169448297,2720.01,,3,4,3,3,3,4,4,15.0,37.2,73.0,0,0,1,PC,PC,12.4742,0.007,,1,qlp,QLP,05:09:06.52,-12:38:07.1,10.578,0.046,10.741,0.046,2459199.697082,0.0039721,2.1473577,1.37e-05,2.706,0.294,2.500069,0.003133,2300.0,2.88579,10.0889,0.657217,1324.12,1680.0,17.0,850.437,18.21,5834.0,124.7,3.81,0.08,2.12,0.11,,,1.05,0.121756,"5,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2720,1,False,False,False -167714124,2721.01,TIC 167714124.01,3,4,4,3,3,4,4,27.1,82.9,96.98,3,0,1,PC,PC,12.8482,0.006,,1,qlp,QLP,05:21:41.1,-38:39:24.58,-4.613,3.278,-4.563,3.278,2459222.321706,0.0007444,4.162733,5.7e-06,3.319,0.161,14.064123,0.003235,12870.0,2.97953,11.1057,1.27605,425.348,1265.0,75.0,497.376,,5744.2,324.9,,,0.97,0.11,,,,,"5,6,32,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2721,1,False,False,False -153725446,2722.01,,3,4,3,3,3,4,4,14.4,54.5,19.69,0,0,1,PC,PC,11.1522,0.006,,1,qlp,QLP,04:25:39.14,-43:43:12.97,18.107,0.139,40.029,0.162,2459199.496171,0.0012764,0.708548,2.8e-06,0.845,0.237,0.868937,0.006472,800.0,5.96066,4.66694,0.487332,1121.93,1612.0,17.0,349.979,10.179,5678.0,131.0,4.08,0.08,1.52,0.09,,,1.01,0.122914,"4,5,31,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2722,1,False,False,False -152477897,2723.01,,3,4,3,3,1,4,4,29.3,31.7,317.0,2,0,0,PC,PC,13.3164,0.006,,1,qlp,QLP,04:10:53.82,-43:14:50.15,22.755,0.024,-5.812,0.03,2459165.376298,0.0014483,3.3843865,9.3e-06,3.845,0.146,11.712902,0.00327,10730.0,3.01188,16.224,,917.268,1533.0,29.0,1001.29,15.4555,5848.0,123.0,4.1,,1.52,,,,1.06,,"4,5,31",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2723,1,False,False,False -119290630,2724.01,,3,4,3,3,1,4,4,141.3,155.4,317.0,5,0,0,PC,PC,13.1901,0.006,,1,qlp,QLP,06:26:26.59,-41:25:00.01,-7.374,0.029,-0.023,0.029,2459227.337401,0.0002104,1.4875055,5e-07,1.874,0.017,49.309647,0.000604,44400.0,0.555935,18.3083,,550.26,1349.0,199.0,396.678,2.6675,5142.0,122.0,4.54,,0.83,,,,0.87,,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2724,1,False,False,False -100780304,2725.01,,3,4,3,3,3,4,4,25.9,110.4,15.83,1,0,3,PC,PC,12.058,0.006,,1,qlp,QLP,05:54:36.28,-31:51:34.63,19.141,0.034,-15.453,0.042,2459227.295588,0.0008662,0.1846924,4e-07,0.386,0.1,1.510223,0.021265,1390.0,19.5854,4.10645,0.480583,7063.84,2554.0,26.0,341.371,2.5855,5958.8,125.3,4.57,0.08,0.9,0.04,-0.12,0.1,1.09,0.139371,"6,32,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2725,1,False,False,False -100589633,2726.01,,3,4,3,3,1,4,4,34.7,54.1,317.0,4,0,0,PC,PC,13.4034,0.006,,1,qlp,QLP,05:45:48.95,-32:56:51.07,2.191,0.023,2.936,0.03,2459221.101893,0.0012634,3.9471513,9.8e-06,1.993,0.522,17.600529,0.171576,16080.0,158.015,18.7538,,406.495,1250.0,32.0,1065.58,17.65,6351.0,122.0,4.26,,1.37,,,,1.26,,"5,6,32,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; correct host star for ephemeris match on 100589632/TOI 2342,2726,1,False,False,False -51830822,2727.01,,3,4,3,3,1,4,4,24.9,42.5,101.79,0,0,0,PC,PC,13.0537,0.006,,1,qlp,QLP,06:31:34.97,-34:52:58.33,-6.725,0.028,12.902,0.026,2459227.430602,0.001999,0.6711626,2.5e-06,1.168,0.151,2.532717,0.004614,2330.0,4.24919,12.243,,2181.85,1904.0,14.0,1248.07,25.485,5632.0,122.0,3.67,,2.43,,,,1.0,,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2727,1,False,False,False -42763678,2728.01,,3,4,4,3,3,4,4,61.0,53.6,317.0,2,0,1,PC,PC,12.7993,0.007,,1,qlp,QLP,06:27:15.45,-03:14:07.45,14.854,0.046,10.832,0.046,2459227.292219,0.0008998,1.7246234,3.6e-06,1.979,0.195,12.90985,0.007999,11820.0,7.36744,15.5191,0.949066,976.638,1557.0,37.0,635.053,15.222,5776.0,153.6,4.18,0.08,1.37,0.08,,,1.035,0.134031,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2728,1,False,False,False -39724477,2729.01,TIC 39724477.01,3,4,3,3,3,4,4,60.5,192.6,106.46,5,2,1,PC,PC,12.263,0.006,,1,qlp,QLP,06:00:23,-03:45:26.37,4.574,0.075,5.321,0.081,2459211.895505,0.0004469,4.0350169,3.3e-06,2.108,0.13,27.956263,0.003939,25420.0,3.62831,12.5268,1.52005,126.805,934.0,100.0,245.949,3.667,5240.2,100.8,4.64,0.12,0.75,0.09,0.186,0.032,0.895,0.106652,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2729,1,False,False,False -37240067,2730.01,,3,4,3,3,1,4,4,56.4,73.2,317.0,2,0,0,PC,PC,13.4848,0.018,,1,qlp,QLP,06:33:04.27,-03:10:01.71,-3.911,0.053,9.098,0.047,2459212.952234,0.0019023,2.5082498,8.5e-06,1.393,0.281,17.743991,0.059352,16210.0,54.6641,20.6073,,265.723,1124.0,17.0,964.327,31.8585,5909.0,122.0,4.11,,1.51,,,,1.07,,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2730,1,False,False,False -34729329,2731.01,,1,4,4,1,4,4,4,3.9,6.9,2.39,1,4,3,PC,PC,9.92029,0.006,,1,qlp,QLP,06:24:16.74,-17:03:11.63,19.658,0.081,-93.673,0.093,2459227.225976,0.0038768,0.9953936,7.9e-06,2.238,0.378,0.304049,0.000916,280.0,0.843946,1.35321,0.109257,4359.09,2263.0,13.0,107.926,0.834,5697.0,149.8,4.6,0.08,0.84,0.04,,,1.014,0.129108,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2731,1,False,False,False -34466256,2732.01,,5,5,5,5,5,5,5,19.9,66.2,44.32,1,0,1,PC,FP,12.0195,0.009,,1,qlp,QLP,05:29:52.77,-09:09:30.77,0.444,0.077,-4.807,0.071,2459198.602275,0.001378,0.7029205,1.9e-06,1.325,0.204,2.69597,0.003726,2480.0,3.4319,7.51559,0.496465,5873.32,2438.0,38.0,675.112,21.404,6699.0,129.5,4.18,0.09,1.6,0.08,,,1.42,0.244784,"6,32",2021-06-03,2021-06-03,2023-01-20 12:02:59,V-shaped; found in faint-star QLP search,2732,1,False,False,False -34266522,2733.01,,3,4,3,3,1,4,4,22.2,24.1,317.0,1,0,0,PC,PC,13.2843,0.011,,1,qlp,QLP,06:19:23.45,-12:45:44.39,5.317,0.035,6.035,0.042,2459222.295382,0.0027802,3.7170532,2.16e-05,3.751,0.267,7.867451,0.007187,7220.0,6.61931,15.999,,891.377,1522.0,17.0,1080.65,27.205,6065.0,122.0,3.94,,1.9,,,,1.13,,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2733,1,False,False,False -21505121,2734.01,,3,4,3,3,3,4,4,4.8,24.9,26.96,0,0,1,PC,PC,12.6746,0.006,,1,qlp,QLP,05:43:18.39,-40:23:00.72,1.364,0.022,-25.681,0.03,2459219.30652,0.0030743,4.5879078,3.15e-05,3.464,0.395,2.217164,0.002999,2040.0,2.76207,5.59491,0.357595,474.054,1299.0,13.0,590.401,4.731,5785.0,132.7,4.26,0.08,1.25,0.06,,,1.04,0.130232,"5,6,32,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2734,1,False,False,False -20069685,2735.01,,3,4,4,3,3,4,4,89.1,192.3,115.57,4,0,1,PC,PC,12.95,0.006,,1,qlp,QLP,05:55:08.42,-38:23:20.36,25.003,0.024,-2.516,0.027,2459226.43746,0.0003432,1.9663653,1.7e-06,1.637,0.096,32.701353,0.00765,29670.0,7.04587,13.2267,0.965069,189.304,1033.0,75.0,262.97,1.001,4687.0,125.6,4.58,0.1,0.74,0.05,,,0.75,0.0928469,"5,6,32,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2735,1,False,False,False -91869778,2736.01,,3,4,3,3,4,4,4,26.0,79.2,86.26,2,2,2,PC,PC,10.9521,0.006,,1,qlp-s46-tois,QLP,05:55:22,15:22:42.42,3.529,0.115,-14.546,0.099,2459546.80115,0.0012741,3.4771921,9.6e-06,2.002,0.159,3.534389,0.002929,3250.0,2.6979,11.1486,0.72465,422.8,1263.0,23.0,493.21,18.3525,6539.0,176.3,3.99,0.09,1.94,0.11,,,1.35,0.214026,"6,33,43,44,45",2021-06-03,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search,2736,1,False,False,False -445946478,2737.01,,3,4,3,3,3,4,4,12.0,27.3,116.66,0,0,1,PC,PC,12.5745,0.011,,1,qlp-s45-tois,QLP,06:48:46.48,12:16:56.89,0.954,0.045,-2.87,0.04,2459549.813277,0.0046616,3.3328544,2.73e-05,6.488,0.566,2.500069,0.002752,2300.0,2.53463,13.2674,0.887676,4271.73,2252.0,19.0,1368.69,43.3,6272.0,138.8,3.6,0.09,2.91,0.16,,,1.22,0.183948,"6,33,44,45",2021-06-03,2022-03-11,2023-01-10 00:00:00,found in faint-star QLP search,2737,1,False,False,False -445145355,2738.01,,3,4,3,3,1,4,4,,,112.47,0,0,0,PC,PC,13.5607,0.012,,1,qlp,QLP,06:43:07.47,-17:57:30.6,-7.441,2.123,-3.912,2.123,2458487.027945,0.0018284,1.5174038,0.0002969,1.635,0.277,15.549993,0.024705,14220.0,22.7541,,,,,26.0,,,,,,,,,,,,,6,2021-06-03,2021-06-03,2022-12-14 12:09:24,no radius; found in faint-star QLP search,2738,1,False,False,False -319473643,2739.01,,3,4,3,3,3,4,4,101.7,283.5,109.24,2,0,1,PC,PC,11.9013,0.006,,1,qlp-s06-faintsearch,QLP,06:42:16.67,-50:08:38.99,8.268,0.051,-31.079,0.046,2459965.536406,0.00095373916,3.1474843,2.9e-06,0.913,0.088,6.140886,3.10041,5640.0,2851.51,12.7493,4.20256,129.933,940.0,30.0,188.151,0.9605,5102.2,127.3,4.68,0.09,0.7,0.05,0.106162,0.0675352,0.86,0.107724,"6,7,8,32,33,61",2021-06-03,2023-07-12,2023-07-12 00:00:00,V-shaped; found in faint-star QLP search; variable host,2739,1,False,False,False -301281965,2740.01,,3,5,5,3,1,4,4,38.6,138.9,30.53,5,0,0,PC,APC,13.2633,0.006,,1,qlp,QLP,06:41:02.53,02:20:57.4,1.735,0.083,12.616,0.088,2459212.462934,0.0016981,0.5348968,1.7e-06,0.504,0.115,6.79622,0.092443,6240.0,85.1396,5.99059,,518.242,1329.0,12.0,314.782,5.193,5414.2,190.3,4.88,,0.58,,0.067,0.179,0.942,,"6,33",2021-06-03,2021-06-03,2023-03-26 12:03:19,V-shapd; found in faint-star QLP search,2740,1,False,False,False -283303192,2741.01,,3,4,3,3,3,4,4,61.6,80.7,317.0,2,2,1,PC,PC,11.7299,0.006,,1,qlp,QLP,06:56:01.43,-00:26:33.32,-0.565,0.08,-0.725,0.072,2459210.246781,0.0006651,2.9884191,3.9e-06,3.575,0.083,14.086121,0.001618,12890.0,1.49052,16.3009,0.850637,1658.79,1777.0,83.0,518.63,14.7545,6636.0,170.8,4.29,0.09,1.4,0.07,,,1.394,0.231468,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2741,1,False,False,False -282102605,2742.01,,3,4,3,3,1,4,4,,,91.61,4,0,0,PC,PC,13.5917,0.008,,1,qlp,QLP,06:52:04.39,-02:01:58.31,,,,,2458489.737849,0.005815,1.2541679,0.000566,2.294,0.376,12.195915,0.034814,11170.0,32.0645,,,1264.69,1661.0,14.0,,,4882.0,169.8,,,,,,,,,6,2021-06-03,2021-06-03,2022-12-14 12:09:24,no radius; found in faint-star QLP search,2742,1,False,False,False -280212554,2743.01,,5,5,5,5,5,5,5,21.3,33.4,317.0,1,0,0,PC,FP,13.3574,0.037,,1,qlp,QLP,06:43:29.71,-01:52:16.6,0.707,0.045,-1.906,0.04,2459212.045265,0.0065075,1.1472535,1.18e-05,1.789,0.338,4.449767,0.01374,4090.0,12.6547,17.228,,16302.6,3147.0,10.0,2363.78,156.53,9742.0,126.0,4.01,,2.59,,,,2.49,,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2743,1,False,False,False -279989567,2744.01,,5,5,5,5,5,5,5,,,15.2,1,2,1,PC,FP,11.4746,0.006,,1,qlp,QLP,06:42:15.54,-04:56:59.6,,,,,2459226.18852,0.0031001,0.787177,3.6e-06,1.515,0.215,1.466734,0.002738,1350.0,2.52172,,,1632.52,1770.0,18.0,,,4899.5,116.1,,,,,,,,,"6,33",2021-06-03,2021-06-03,2023-02-09 12:02:56,no radius; found in faint-star QLP search,2744,1,False,False,False -237770757,2745.01,,3,4,4,3,3,4,4,106.4,178.3,317.0,1,0,1,PC,PC,11.9685,0.006,,1,qlp,QLP,06:57:30.66,03:59:38.53,-1.8,1.9,-4.4,2.0,2459211.945554,0.0005593,1.7932884,1.8e-06,3.299,0.092,17.699847,0.001401,16170.0,1.29029,22.7665,,5108.84,,102.0,744.184,,7122.0,,,,1.74,,,,,,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2745,1,False,False,False -237736186,2746.01,,3,4,3,3,3,4,4,16.9,78.1,104.43,0,8,1,PC,PC,11.9063,0.023,,1,qlp,QLP,06:56:18.02,03:50:10.35,-1.978,0.076,-2.881,0.065,2459209.392384,0.0030483,4.9208778,2.69e-05,3.888,0.377,6.184562,0.006181,5680.0,5.69246,12.4437,0.758749,3684.32,2170.0,19.0,1006.85,46.2075,9668.0,396.7,4.39,0.08,1.65,0.08,,,2.46,0.355965,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2746,1,False,False,False -237632488,2747.01,,3,5,5,3,3,4,4,81.0,75.5,317.0,3,0,1,PC,APC,12.8494,0.019,,1,qlp,QLP,06:54:00.86,04:17:36.9,-1.638,0.043,-6.889,0.043,2459212.781596,0.0010967,0.5209929,1.1e-06,1.101,0.139,9.344859,0.012008,8570.0,11.0598,18.4513,1.36786,4262.45,2251.0,32.0,995.15,24.603,6116.2,113.7,3.89,0.09,2.01,0.13,-0.446,0.105,1.15,0.161637,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2747,1,False,False,False -237552878,2748.01,,3,4,3,3,3,4,4,22.3,71.6,92.35,4,0,1,PC,PC,12.8401,0.009,,1,qlp,QLP,06:52:13.06,03:21:28.19,0.679,0.047,-5.565,0.045,2459205.662435,0.003348,4.7838171,2.62e-05,2.035,0.412,11.142346,0.028016,10210.0,25.8034,11.571,0.840715,143.512,964.0,16.0,539.161,8.008,5688.0,126.4,4.36,0.08,1.1,0.05,,,1.01,0.127466,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2748,1,False,False,False -235448190,2749.01,,3,4,3,3,3,4,4,32.7,59.4,317.0,0,1,1,PC,PC,11.3789,0.008,,1,qlp,QLP,06:56:13.36,06:43:54.46,2.221,0.071,-4.803,0.062,2459225.835075,0.0052901,6.9724832,7.7e-05,5.156,0.95,4.471571,0.792073,4110.0,729.26,18.9679,6.47719,5321.0,2379.0,16.0,847.999,29.7225,7616.0,134.4,4.02,0.08,2.16,0.1,,,1.77,0.282687,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2749,1,False,False,False -235300016,2750.01,,3,4,3,3,3,4,4,,,317.0,1,1,1,PC,PC,11.8145,0.007,,1,qlp,QLP,06:53:08.41,10:39:21.28,-6.313,0.837,1.316,0.836,2459223.251021,0.0008428,6.8204309,1.23e-05,3.723,0.117,13.72321,0.002569,12560.0,2.36568,,,,,59.0,,,,,,,,,,,,,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,no radius; found in faint-star QLP search,2750,1,False,False,False -231157209,2751.01,,3,4,3,3,1,4,4,21.4,83.5,109.8,1,0,0,PC,PC,13.4603,0.013,,1,qlp,QLP,06:42:27.21,06:49:00.17,-2.264,0.052,-14.133,0.048,2459219.086064,0.0018177,7.4710819,2.67e-05,2.511,0.246,27.35484,0.025679,24880.0,23.651,12.8097,,50.0778,741.0,23.0,451.187,7.663,5262.0,123.0,4.57,,0.81,,,,0.9,,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2751,1,False,False,False -170367033,2752.01,,3,4,3,3,1,4,4,20.3,60.4,106.74,1,0,0,PC,PC,13.1606,0.006,,1,qlp,QLP,06:52:48.98,-44:33:02.97,-1.22,0.025,-3.401,0.025,2459248.958026,0.0012431,4.9197461,1.15e-05,3.023,0.219,11.328841,0.003942,10380.0,3.63091,12.6447,,275.438,1134.0,28.0,703.37,6.473,5822.0,122.0,4.3,,1.21,,,,1.05,,"6,7,8,33,34",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2752,1,False,False,False -168191686,2753.01,,3,4,4,3,1,4,4,41.9,40.1,317.0,6,0,0,PC,PC,13.4585,0.016,,1,qlp,QLP,06:46:18.83,-03:43:17.72,0.672,0.048,-6.072,0.046,2459224.244649,0.0011317,1.6281719,3.9e-06,2.128,0.123,13.129617,0.006332,12020.0,5.83153,15.3377,,1369.74,1694.0,29.0,890.799,25.2,6020.0,123.0,4.22,,1.35,,,,1.11,,"6,33",2021-06-03,2021-06-03,2023-06-26 00:00:00,found in faint-star QLP search,2753,1,False,False,False -148233571,2754.01,,5,5,5,5,5,5,5,8.2,43.9,13.5,1,0,1,PC,FP,12.2082,0.006,,1,qlp,QLP,06:45:23.18,-41:14:57.18,8.682,0.05,-7.711,0.046,2459226.37606,0.0032567,0.9422588,6e-06,1.46,0.271,1.151491,0.003861,1060.0,3.55573,3.75015,0.313293,1840.19,1824.0,13.0,361.811,3.6835,5544.7,132.7,4.37,0.09,1.07,0.06,0.0216201,0.0816255,0.98,0.120703,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2754,1,False,False,False -148004811,2755.01,,3,4,3,3,1,4,4,14.3,46.5,68.83,0,0,0,PC,PC,13.2899,0.006,,1,qlp,QLP,06:40:32.64,-37:03:22.47,-1.341,0.026,7.165,0.028,2459225.436514,0.0025274,3.3187528,1.31e-05,1.96,0.248,7.069393,0.00768,6490.0,7.07368,9.77184,,262.223,1121.0,18.0,703.295,7.9495,5709.0,122.0,4.28,,1.21,,,,1.02,,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2755,1,False,False,False -147437399,2756.01,,3,4,3,3,4,4,4,49.5,33.4,317.0,0,0,3,PC,PC,12.2592,0.041,,1,qlp,QLP,06:59:37.49,-17:24:17.25,-0.518,0.081,1.15,0.076,2459224.754225,0.0017348,1.5622382,4.6e-06,1.676,0.194,3.512604,0.003946,3230.0,3.6341,18.0467,,449.217,1282.0,9.0,768.897,34.232,4801.0,122.0,,,3.08,,,,,,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2756,1,False,False,False -147125706,2757.01,,3,4,3,3,3,4,4,61.5,109.7,317.0,3,1,1,PC,PC,12.6603,0.011,,1,qlp,QLP,06:57:20.52,-14:06:35.86,-2.196,0.035,-3.221,0.035,2459221.43807,0.0005812,3.4813976,3.5e-06,2.694,0.109,23.930854,0.005918,21800.0,5.45025,20.9129,1.0147,687.809,1426.0,84.0,792.979,13.542,6704.0,135.1,4.3,0.09,1.4,0.06,,,1.42,0.232662,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2757,1,False,False,False -147034452,2758.01,TIC 147034452.01,3,4,3,3,1,4,4,36.2,106.0,103.55,3,0,0,PC,PC,13.1915,0.006,,1,qlp,QLP,06:56:57.72,-16:44:47.29,-16.513,0.034,9.008,0.033,2459222.921639,0.0008954,4.5302876,6.5e-06,2.713,0.1,25.085798,0.006607,22840.0,6.08551,12.3919,,98.5409,877.0,58.0,314.062,2.77,4693.0,122.0,4.5,,0.81,,,,0.749,,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2758,1,False,False,False -134315574,2759.01,,3,4,3,3,1,4,4,36.7,36.8,317.0,0,0,0,PC,PC,13.205,0.006,,1,qlp,QLP,07:09:25.46,-44:41:00.54,-6.239,0.026,-0.636,0.029,2459225.72826,0.0031432,1.5971584,9.2e-06,3.429,0.398,5.518684,0.322551,5070.0,297.036,17.7465,,15134.3,3090.0,29.0,1269.03,23.345,6033.0,122.0,3.86,,2.06,,,,1.12,,"6,8,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,slightly V-shaped; found in faint-star QLP search,2759,1,False,False,False -130611752,2760.01,,3,4,3,3,3,4,4,18.9,52.0,36.99,0,0,1,PC,PC,12.8004,0.006,,1,qlp,QLP,07:03:00.51,-43:29:35.04,0.082,0.024,3.152,0.026,2459227.399822,0.0021195,0.4405893,1.6e-06,1.075,0.159,2.010472,0.004548,1850.0,4.1889,6.74949,0.490517,4788.57,2317.0,18.0,684.386,6.139,5643.0,135.5,4.1,0.08,1.48,0.08,,,1.0,0.130469,"6,7,8,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2760,1,False,False,False -96736412,2761.01,,3,4,3,3,1,4,4,30.6,50.1,317.0,1,0,0,PC,PC,13.2221,0.008,,1,qlp,QLP,06:59:17.72,-31:23:14.89,-9.712,0.03,8.998,0.037,2459219.398202,0.0015235,6.1214801,2.49e-05,3.861,0.395,19.234909,0.02022,17560.0,18.6231,17.6327,,725.656,1445.0,43.0,848.053,15.6265,6356.0,122.0,4.35,,1.24,,,,1.26,,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2761,1,False,False,False -79431527,2762.01,,3,5,5,3,3,4,4,40.0,117.2,125.47,3,2,1,PC,APC,12.4325,0.015,,1,qlp,QLP,06:56:58.65,-19:41:01.21,4.224,0.046,-16.72,0.045,2459220.661425,0.0009655,3.9072351,7.3e-06,3.366,0.071,16.023698,0.002343,14650.0,2.15755,13.9055,0.689215,676.473,1420.0,49.0,522.789,9.003,6294.0,147.1,4.42,0.09,1.13,0.05,,,1.23,0.183956,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2762,1,False,False,False -78441371,2763.01,TIC 78441371.01,3,4,3,3,1,4,4,,,49.54,0,2,0,PC,PC,11.996,0.018,,1,qlp,QLP,06:49:59.52,-20:54:24.41,12.007,1.147,9.564,1.15,2459221.156105,0.0011723,3.9980153,8.5e-06,3.793,0.147,5.900696,0.001011,5420.0,0.931293,,,,,43.0,580.471,,,,,,,,,,,,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,no radius; found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2763,1,False,False,False -53122063,2764.01,,3,4,3,3,3,4,4,16.9,47.4,82.78,0,0,1,PC,PC,12.6918,0.006,,1,qlp,QLP,06:51:00.4,-34:44:19.85,-2.07,0.03,10.334,0.03,2459224.72084,0.002237,2.276734,8.3e-06,1.832,0.18,3.937496,0.004072,3620.0,3.75088,10.8605,0.617663,796.052,1479.0,20.0,901.072,13.6075,6494.0,130.1,4.06,0.09,1.78,0.08,,,1.33,0.212639,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2764,1,False,False,False -52976395,2765.01,,3,4,3,3,3,4,4,14.7,56.2,40.37,1,0,1,PC,PC,12.1304,0.006,,1,qlp,QLP,06:49:21.51,-32:16:56.93,-4.283,0.036,-0.279,0.042,2459226.689311,0.0017696,1.0191022,3.2e-06,1.228,0.179,2.423895,0.002898,2230.0,2.66925,7.10309,0.416402,2426.37,1955.0,21.0,710.345,11.5635,6865.0,124.8,4.24,0.09,1.53,0.07,,,1.49,0.251461,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2765,1,False,False,False -284288093,2766.01,,3,5,5,3,3,4,4,46.4,74.8,317.0,3,3,1,PC,APC,11.7351,0.006,,1,qlp,QLP,07:06:31.48,-53:32:04.85,-2.2,3.4,-3.4,3.1,2459301.36904,0.0004182,7.2748135,5.5e-06,3.779,0.054,16.420447,0.000879,15010.0,0.809741,17.4324,,255.021,,151.0,453.429,,6792.7,280.2,4.24,2.01,1.4,,,,,,"6,7,8,9,33,34,35,36",2021-06-03,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2766,1,False,False,False -48806546,2767.01,,3,4,3,3,3,4,4,,,119.38,0,0,1,PC,PC,11.1649,0.008,,1,qlp,QLP,06:42:34.22,-20:14:29.47,-1.714,0.042,-3.304,0.059,2459227.247759,0.002978,0.934057,5.2e-06,1.318,0.341,0.673365,0.002862,620.0,2.63598,13.4544,,1287.68,1668.0,10.0,877.955,22.734,5023.0,122.0,,,5.19,,,,,,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2767,1,False,False,False -443556801,2768.01,,1,4,1,1,4,4,4,14.5,82.6,9.3,4,2,3,PC,PC,11.3676,0.006,,1,qlp,QLP,06:37:27.39,-15:28:52.33,-82.719,0.053,85.136,0.058,2459225.646634,0.0017493,1.5080197,4.9e-06,1.032,0.167,1.945209,0.005056,1790.0,4.65675,3.01287,0.351265,89.0458,855.0,15.0,78.4525,0.1883,4008.0,130.4,4.6,0.12,0.66,0.07,,,0.63,0.0794348,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2768,1,False,False,False -443534757,2769.01,,3,4,4,3,1,4,4,,,131.3,4,0,0,PC,PC,13.4832,0.006,,1,qlp,QLP,06:36:27.13,-15:43:28.61,-2.943,2.143,4.533,2.143,2459224.451567,0.001452,3.08858,1.06e-05,2.214,0.146,18.682478,0.013291,17060.0,12.2415,,,254.633,1112.0,21.0,,,5381.0,228.8,,,,,,,,,"6,33",2021-06-03,2021-06-03,2023-05-12 00:00:00,no radius; found in faint-star QLP search,2769,1,False,False,False -438057373,2770.01,,3,4,4,3,1,4,4,30.3,30.6,317.0,1,0,0,PC,PC,13.2389,0.051,,1,qlp-s45-tois,QLP,06:20:43.84,14:47:00.87,1.028,0.059,-5.163,0.053,2459541.3175,0.0017515,4.5697688,1.52e-05,3.369,0.169,10.670766,0.005501,9780.0,5.06676,17.1535,,204.884,1054.0,29.0,731.074,16.321,4976.0,122.0,,,1.7,,,,,,"6,33,43,44,45",2021-06-03,2022-03-11,2023-03-07 00:00:00,found in faint-star QLP search,2770,1,False,False,False -437893926,2771.01,,5,5,5,5,5,5,5,19.3,51.3,123.17,0,1,1,PC,FP,12.4432,0.022,,1,qlp-s45-tois,QLP,06:16:04.32,15:16:14.4,0.159,0.067,-4.647,0.06,2459548.185346,0.0018374,3.8454384,1.54e-05,4.736,0.183,4.995001,0.001568,4590.0,1.44375,13.6848,1.0387,2030.9,1870.0,27.0,985.074,35.651,6733.4,128.0,3.98,0.1,2.02,0.15,-0.037,0.013,1.44,0.236933,"6,33,43,44,45",2021-06-03,2022-03-11,2023-01-24 12:02:47,found in faint-star QLP search,2771,1,False,False,False -435934762,2772.01,,3,4,3,3,1,4,4,109.7,304.9,317.0,1,0,0,PC,PC,12.8662,0.006,,1,qlp,QLP,05:33:55.16,10:16:35.06,0.085,2.168,0.436,2.168,2459199.30433,0.0008939,2.8504334,5.4e-06,3.768,0.294,26.152992,0.013641,23800.0,12.5636,,,1787.94,1811.0,77.0,1301.57,,6293.8,337.5,,,,,,,,,"6,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,no radius; found in faint-star QLP search,2772,1,False,False,False -420962989,2773.01,,3,4,3,3,3,4,4,25.0,18.7,317.0,1,0,1,PC,PC,12.993,0.009,,1,qlp,QLP,05:28:19.97,-19:37:17.39,2.181,0.027,3.082,0.039,2459199.858678,0.0019028,0.5993364,2.1e-06,1.024,0.162,2.369489,0.0061,2180.0,5.61814,14.3367,1.08827,3334.9,2117.0,15.0,1695.32,53.005,6232.0,134.4,3.62,0.09,2.81,0.16,,,1.2,0.175907,"5,6,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2773,1,False,False,False -388934707,2774.01,,3,4,3,3,3,4,4,78.2,108.2,317.0,0,0,1,PC,PC,12.627,0.01,,1,qlp,QLP,05:35:58.28,-07:41:18.14,-6.608,0.157,-2.886,0.17,2459192.072276,0.0011777,4.4430866,1.01e-05,1.787,0.179,9.596767,1.258892,8800.0,1158.81,21.1475,5.91947,184.965,1027.0,28.0,547.79,31.091,4926.5,159.5,,,1.54,0.1,,,,,"6,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2774,1,False,False,False -36574157,2775.01,,5,5,5,5,5,5,5,90.7,124.5,317.0,1,0,0,PC,FP,12.9127,0.006,,1,qlp,QLP,06:49:39.04,-00:29:45.52,-3.087,0.046,5.005,0.041,2459210.630135,0.0027418,3.7804749,1.99e-05,3.615,0.27,24.3194,3.362929,22150.0,3092.58,17.9247,5.06178,835.088,1497.0,24.0,334.97,3.4945,5112.0,128.7,4.56,0.09,0.81,0.05,,,0.859,0.103394,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2775,1,False,False,False -35636165,2776.01,TIC 35636165.01,3,4,3,3,1,4,4,23.0,34.0,317.0,1,0,0,PC,PC,13.3684,0.015,,1,qlp,QLP,06:48:52.61,-16:46:49.81,-2.487,0.035,1.551,0.038,2459224.383812,0.0026623,3.4590552,1.64e-05,3.001,0.255,9.618674,0.007053,8820.0,6.49569,17.1001,,1927.33,1845.0,19.0,1444.65,42.655,7911.0,122.0,4.19,,1.83,,,,1.89,,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2776,1,False,False,False -35483319,2777.01,,3,4,3,3,1,4,4,,,45.05,0,0,0,PC,PC,13.3742,0.006,,1,qlp,QLP,06:47:52.54,-17:43:29.51,1.587,2.145,-0.426,2.145,2459225.1723,0.0033514,1.9297769,1.12e-05,1.701,0.284,4.940466,0.012292,4540.0,11.3209,7.58229,0.435823,310.868,1169.0,14.0,,,4856.0,34.6,,,1.14,0.02,,,,,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2777,1,False,False,False -332860211,2778.01,TIC 332860211.01,3,4,3,3,3,4,4,49.8,59.0,317.0,3,0,1,PC,PC,12.3409,0.009,,1,qlp,QLP,05:38:30.26,-09:50:15.11,8.309,0.092,-21.733,0.089,2459198.536737,0.0005611,4.4445101,4.8e-06,2.737,0.091,18.318028,0.005149,16730.0,4.74199,14.6892,0.742113,347.285,1202.0,88.0,386.737,5.775,6288.0,125.3,4.42,0.08,1.14,0.05,,,1.23,0.182842,"6,32",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2778,1,False,False,False -319735319,2779.01,,3,4,3,3,3,4,4,29.9,79.4,119.09,1,2,1,PC,PC,12.4889,0.006,,1,qlp,QLP,06:38:42.83,02:25:51.82,0.085,0.058,1.093,0.052,2459224.225903,0.0025459,2.9038027,1.38e-05,3.511,0.635,6.381129,0.132405,5860.0,121.942,13.4427,1.96279,5592.86,2409.0,26.0,736.602,19.6135,6570.0,317.3,4.21,0.11,1.51,0.08,,,1.364,0.260168,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2779,1,False,False,False -317546777,2780.01,,3,4,3,3,3,4,4,22.4,33.4,317.0,1,0,2,PC,PC,12.8475,0.008,,1,qlp,QLP,05:52:58.6,-16:17:10.37,0.406,0.161,-1.844,0.215,2459217.923867,0.0017769,4.9062135,2.33e-05,1.671,0.407,8.064323,0.023902,7400.0,22.0142,17.7815,2.75346,251.061,1108.0,18.0,1353.97,186.33,7169.0,127.9,4.08,0.15,1.92,0.28,,,1.6,0.271973,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2780,1,False,False,False -317417916,2781.01,,3,4,4,3,3,4,4,16.2,64.5,29.57,2,0,1,PC,PC,12.9395,0.007,,1,qlp,QLP,05:51:16.9,-13:22:51.76,-25.7,2.294,-22.335,2.294,2459226.428052,0.001509,2.7636665,9.1e-06,1.279,0.194,6.938262,0.015066,6370.0,13.876,5.94208,0.353204,34.207,673.0,17.0,,,3868.0,157.0,4.57,0.02,0.7,0.02,,,0.662139,0.0222223,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2781,1,False,False,False -306903715,2782.01,,3,4,4,3,1,4,4,79.8,173.4,317.0,2,0,0,PC,PC,13.3612,0.006,,1,qlp,QLP,06:32:01.09,16:35:07.5,-1.868,2.262,5.423,2.261,2459221.663946,0.0010202,4.8682357,1.06e-05,4.411,0.35,38.06308,0.027871,34450.0,25.6698,,,392.316,1239.0,39.0,851.138,,5250.0,190.3,,,,,,,,,"6,33",2021-06-03,2021-06-03,2023-06-26 00:00:00,no radius; found in faint-star QLP search,2782,1,False,False,False -302976834,2783.01,,3,4,3,3,3,4,4,109.5,149.6,317.0,3,0,1,PC,PC,12.373,0.032,,1,qlp-s45-tois,QLP,05:33:48.14,16:48:38.4,,,,,2459547.674708,0.0002858,2.3044132,1.4e-06,3.102,0.051,22.256148,0.001179,20290.0,1.08582,22.8234,0.988396,756.205,1460.0,143.0,517.422,,,,,,1.55,0.07,,,,,"6,43,44,45",2021-06-03,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search; large Rp,2783,1,False,False,False -302766000,2784.01,,3,4,3,3,3,4,4,22.5,80.5,20.62,1,0,1,PC,PC,12.428,0.006,,1,qlp,QLP,05:31:30.83,15:46:16.8,-3.812,0.07,-6.652,0.049,2458489.661734,0.0023823,0.2571432,5.03e-05,0.362,0.134,2.108374,0.095203,1940.0,87.6813,7.20948,1.19637,1913.57,1842.0,12.0,392.4,5.2225,5784.0,638.4,4.38,0.15,1.09,0.06,,,1.037,0.269226,6,2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2784,1,False,False,False -300204369,2785.01,,3,4,3,3,1,4,4,,,123.73,2,0,0,PC,PC,13.099,0.006,,1,qlp,QLP,06:11:15.62,-41:43:19,6.648,3.296,7.779,3.296,2459221.348058,0.0011899,11.5054399,2.57e-05,2.459,0.415,17.412953,0.023223,15910.0,21.389,,,32.6456,665.0,40.0,,,5251.2,132.6,,,,,,,,,"5,6,7,32,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,no radius; found in faint-star QLP search,2785,1,False,False,False -281987399,2786.01,,3,4,3,3,1,4,4,29.6,26.7,317.0,0,0,0,PC,PC,13.3318,0.014,,1,qlp,QLP,05:55:38.07,01:10:04.68,6.81,0.046,-2.634,0.043,2459219.995187,0.003129,3.7576217,2.21e-05,4.483,0.344,8.370639,0.006287,7680.0,5.79018,16.0563,,933.592,1539.0,20.0,716.889,14.1675,5605.0,122.0,3.88,,1.89,,,,0.99,,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2786,1,False,False,False -270677031,2787.01,,3,4,3,3,1,4,4,10.0,19.0,108.12,0,0,0,PC,PC,13.425,0.006,,1,qlp-s38-tois,QLP,05:50:13.14,-53:19:50.67,-2.342,0.03,1.095,0.031,2460042.218733,0.007937874,4.3217658,4.71e-05,5.515,1.043,2.870134,0.003391,2640.0,3.12296,12.7289,,977.267,1557.0,21.0,1272.53,23.895,5139.0,122.0,,,2.5,,,,,,"1,4,5,6,7,8,11,27,28,31,32,33,34,37,38,64",2021-06-03,2023-06-15,2023-06-15 00:00:00,found in faint-star QLP search,2787,1,False,False,False -255756918,2788.01,,3,4,3,3,1,4,4,11.7,47.7,52.32,0,0,0,PC,PC,13.4177,0.006,,1,qlp,QLP,06:38:31.47,-49:26:41.81,12.547,0.037,5.099,0.031,2459251.646067,0.0015157,4.0646554,1.17e-05,2.813,0.191,8.392522,0.002838,7700.0,2.61421,8.30577,,314.34,1173.0,21.0,587.395,6.618,5647.0,122.0,4.5,,0.93,,,,1.0,,"6,7,8,32,33,34",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2788,1,False,False,False -251209368,2789.01,,5,5,5,5,5,5,5,9.6,33.2,49.92,0,0,0,PC,FP,13.0632,0.019,,1,qlp,QLP,06:21:54.08,-04:19:17.56,-7.737,0.038,-3.86,0.037,2459209.022223,0.005905,3.0071496,3.9e-05,4.461,0.544,3.599748,0.008594,3310.0,7.91566,8.05598,,1939.81,1848.0,9.0,766.071,14.8115,5906.0,122.0,4.14,,1.45,,,,1.07,,"6,33",2021-06-03,2021-06-03,2023-03-26 12:03:19,found in faint-star QLP search,2789,1,False,False,False -247518629,2790.01,,3,4,3,3,3,4,4,59.7,87.4,317.0,2,1,1,PC,PC,12.273,0.016,,1,qlp-s45-tois,QLP,05:43:52.13,16:21:36.23,0.877,0.09,-1.763,0.071,2459547.210084,0.0005123,2.3341583,2.8e-06,3.553,0.084,10.988785,0.000837,10070.0,0.770823,20.0937,1.09728,3201.05,2095.0,70.0,832.581,30.865,6901.0,157.7,4.04,0.09,1.93,0.1,,,1.5,0.257971,"6,43,44,45",2021-06-03,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search,2790,1,False,False,False -237406657,2791.01,TIC 237406657.01,3,4,3,3,3,4,4,16.6,42.6,127.33,0,0,1,PC,PC,12.7587,0.006,,1,qlp,QLP,06:24:41.5,-36:55:45.22,-3.844,0.021,7.948,0.022,2458515.618118,0.0033389,3.7482756,0.0005589,4.989,0.319,5.45321,0.002771,5010.0,2.55201,14.0065,0.7336,2004.64,1864.0,26.0,1148.8,16.46,6425.0,136.4,3.94,0.09,2.02,0.09,,,1.3,0.210424,"6,7",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2791,1,False,False,False -237362186,2792.01,,3,4,3,3,3,4,4,13.8,39.0,105.87,1,0,1,PC,PC,12.3337,0.006,,1,qlp,QLP,06:20:26.57,-38:10:22.62,-0.456,0.035,20.156,0.039,2459213.998862,0.0040967,7.1185659,4.56e-05,1.734,0.244,4.26445,0.008769,3920.0,8.0767,12.5411,0.829825,52.4926,749.0,14.0,777.673,12.314,5945.0,124.7,3.92,0.08,1.9,0.09,,,1.09,0.142347,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2792,1,False,False,False -235077268,2793.01,,3,4,3,3,1,4,4,21.8,64.0,32.21,1,0,0,PC,PC,13.2886,0.006,,1,qlp,QLP,05:45:53.71,-46:56:37,15.484,0.033,9.944,0.032,2459227.071677,0.001019,0.3559702,7e-07,0.523,0.195,2.521834,0.031211,2320.0,28.7458,6.23347,,2541.08,1977.0,22.0,618.274,5.766,5562.0,122.0,4.36,,1.08,,,,0.98,,"5,6,7,32,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2793,1,False,False,False -232139628,2794.01,,3,4,3,3,1,4,4,21.1,20.8,317.0,0,0,0,PC,PC,13.0577,0.01,,1,qlp,QLP,06:02:30.51,04:09:01.18,4.99,0.041,-8.836,0.042,2459222.329758,0.0027207,4.7654865,2.9e-05,4.43,0.264,6.665122,0.004917,6120.0,4.52917,14.441,,806.142,1484.0,18.0,809.18,17.044,6151.0,126.0,3.97,,1.85,,,,1.17,,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2794,1,False,False,False -232052748,2795.01,,3,4,3,3,1,4,4,26.4,80.0,90.56,2,0,0,PC,PC,13.4809,0.006,,1,qlp,QLP,06:29:28.31,-46:10:37.87,-3.023,0.072,-1.771,0.073,2459225.009211,0.0009164,3.6337247,6.6e-06,1.763,0.207,16.773234,0.011103,15330.0,10.2263,11.4562,,122.862,927.0,40.0,517.465,11.033,5325.0,122.0,4.51,,0.88,,,,0.92,,"6,7,32,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2795,1,False,False,False -220076110,2796.01,TIC 220076110.01,3,4,4,3,3,4,4,43.1,48.0,317.0,6,11,1,PC,PC,11.916,0.022,,1,qlp,QLP,05:36:36.65,00:53:46.6,2.64,0.104,2.629,0.085,2459189.97794,0.0006521,4.808498,6.3e-06,1.405,0.244,12.020249,0.01193,11010.0,10.9882,15.0839,1.65876,67.1926,797.0,55.0,350.343,5.9195,5449.5,227.7,4.13,0.12,1.38,0.14,-0.0650515,0.0925333,0.95,0.12464,"6,32",2021-06-03,2021-06-04,2023-02-19 00:00:00,V-shaped; found in faint-star QLP search; CTOI from Montalto et al. (2020),2796,1,False,False,False -206897186,2797.01,,3,4,4,3,1,4,4,24.7,71.4,111.98,4,0,0,PC,PC,13.194,0.018,,1,qlp,QLP,06:28:45.08,07:41:57.16,-3.279,0.052,-2.488,0.045,2459225.127962,0.0020974,4.2380604,1.86e-05,3.385,0.366,14.284124,0.013332,13070.0,12.2788,13.0206,,463.485,1292.0,25.0,642.911,13.758,5798.0,122.0,4.35,,1.13,,,,1.04,,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2797,1,False,False,False -160347548,2798.01,,3,4,4,3,3,4,4,41.4,55.3,317.0,2,0,1,PC,PC,12.8054,0.006,,1,qlp,QLP,06:05:44.98,-33:11:15.06,-2.765,0.023,0.091,0.026,2459221.167853,0.0006436,3.994474,9.6e-06,4.436,0.093,15.406821,0.002018,14090.0,1.85886,18.9963,0.918441,896.598,1524.0,60.0,836.501,9.5855,5931.0,129.2,4.06,0.08,1.61,0.08,,,1.08,0.140758,"6,32,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2798,1,False,False,False -156887426,2799.01,,3,4,3,3,1,4,4,80.6,87.9,317.0,3,0,0,PC,PC,13.1811,0.006,,1,qlp,QLP,06:36:02.72,-45:16:50.1,6.644,0.028,14.485,0.026,2459227.328418,0.0003774,1.4367914,9e-07,2.178,0.07,25.463642,0.002713,23180.0,2.49873,16.9266,,1530.88,1742.0,116.0,651.979,6.1745,5873.0,122.0,4.4,,1.07,,,,1.06,,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2799,1,False,False,False -147804034,2800.01,,3,4,3,3,3,4,4,15.2,63.4,63.79,1,0,1,PC,PC,12.18,0.022,,1,qlp,QLP,06:34:28.29,-41:08:51.83,49.592,0.98,23.779,0.98,2459218.177975,0.0015966,7.7538288,2.27e-05,3.454,0.358,7.145894,0.003118,6560.0,2.87223,9.7807,0.442091,127.967,937.0,40.0,386.71,,5504.0,108.8,,,1.17,0.05,,,,,"6,7,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2800,1,False,False,False -140287227,2801.01,,3,4,4,3,1,4,4,,,317.0,2,0,0,PC,PC,13.4242,0.006,,1,qlp,QLP,05:42:00.02,-31:52:23.47,8.355,2.234,0.802,2.234,2459221.426139,0.0019182,5.4139736,2.27e-05,2.952,0.351,9.158705,0.006915,8400.0,6.36936,15.5249,1.1265,179.736,1020.0,26.0,,,5425.0,184.2,,,1.71,0.11,,,,,"5,6,32,33",2021-06-03,2021-06-03,2023-04-01 00:00:00,found in faint-star QLP search,2801,1,False,False,False -139444326,2802.01,TIC 139444326.01,3,4,3,3,3,4,4,7.9,34.0,28.36,0,2,1,PC,PC,11.526,0.007,,1,qlp,QLP,05:22:55.48,-21:57:20.47,0.895,0.164,4.517,0.192,2459195.405441,0.0027554,3.5266608,1.67e-05,2.105,0.294,1.434119,0.001823,1320.0,1.67938,5.79479,0.490823,312.309,1171.0,16.0,441.989,25.881,5668.0,178.8,4.35,2.0,1.58,0.12,,,1.05,0.128938,"5,6,32",2021-06-03,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2802,1,False,False,False -124379043,2803.01,,3,4,4,3,3,4,4,98.8,125.1,317.0,5,3,1,PC,PC,12.0753,0.006,,1,qlp,QLP,06:12:27.54,-23:29:32.98,0.79,0.026,11.877,0.041,2459227.308665,0.0003197,1.962292,1.4e-06,2.935,0.061,22.943463,0.001165,20910.0,1.07258,17.4523,0.824429,2085.59,1882.0,124.0,494.818,6.562,6384.0,128.7,4.41,0.08,1.16,0.05,,,1.28,0.192902,"6,33",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,2803,1,False,False,False -44764338,2804.01,,3,4,3,3,3,4,4,19.1,99.7,25.52,2,1,1,PC,PC,8.9118,0.006,,1,qlp,QLP,09:45:40.53,-38:53:14.5,-105.034,0.036,28.255,0.051,2459304.302235,0.0012486,4.8033954,1.45e-05,0.562,0.141,0.847205,0.008378,780.0,7.71674,5.44726,0.553097,25.1803,624.0,11.0,129.525,0.459,5913.9,149.1,4.12,0.08,1.51,0.08,0.217016,0.0347604,1.08,0.134837,"9,35,36",2021-06-03,2021-06-03,2022-12-14 12:09:24,slight depth-aperture correlation; possible centroid offset; transit duration short for period and rstar,2804,1,False,False,True -5024743,2805.01,,5,5,5,5,5,5,5,40.2,90.1,317.0,0,0,0,EB,FP,10.1015,0.006,,1,qlp-s62-ffi,QLP,09:28:25.73,-38:56:50.57,-11.267,0.052,7.382,0.055,2459990.141393,0.0043343,12.4498835,4.98e-05,5.45,1.484,1.985454,3.113803,1827.0,2863.81,20.0559,5.50204,5588.85,2408.0,25.0,571.204,12.3015,8469.0,152.9,3.96,0.07,2.51,0.09,,,2.1,0.312072,"8,9,35,36,62",2021-06-03,2023-04-12,2023-04-25 12:12:35,TFOP NEB/FP,2805,1,False,False,False -193220940,2806.01,,3,4,3,3,3,4,4,3.7,31.6,15.79,2,3,1,PC,PC,10.0524,0.009,,1,qlp,QLP,10:31:41.15,-24:13:29.4,19.557,0.062,-22.581,0.059,2459298.619279,0.0036276,11.4045112,0.0001119,3.947,0.582,0.825473,0.00173,760.0,1.59311,4.0961,0.283673,161.074,992.0,11.0,240.359,2.136,6334.6,131.1,4.2,0.09,1.47,0.07,-0.32,0.12,1.25,0.185419,"9,36",2021-06-03,2021-06-03,2022-12-14 12:09:24,slight depth aperture correlation,2806,1,False,False,True -11936042,2807.01,,2,4,2,2,3,4,4,4.5,43.8,6.68,0,1,3,PC,PC,9.6854,0.006,,1,qlp-s62-ffi,QLP,09:44:27.49,-35:06:16.52,0.032,0.029,-34.736,0.051,2460009.04565,0.0040925,3.9919157,1.74e-05,2.938,0.394,0.581024,0.034772,535.0,32.026,2.45988,0.161592,424.412,1264.0,17.0,130.409,0.527,5645.0,132.0,4.32,0.08,1.14,0.06,,,1.0,0.127652,"9,35,36,62",2021-06-03,2023-04-12,2023-04-25 12:12:35,L1 candidate,2807,1,False,False,False -192988021,2808.01,,2,4,2,2,3,3,3,2.1,44.5,3.86,1,3,1,PC,PC,9.9139,0.006,,1,qlp-s62-ffi,QLP,10:21:15.84,-25:06:33.6,-159.018,0.082,14.423,0.074,2460000.058846,0.0034904,9.4453763,3.45e-05,2.659,0.377,0.937395,0.054245,863.0,49.96,1.77547,0.142329,33.3967,669.0,16.0,64.4886,0.2059,4853.0,124.4,4.69,0.09,0.66,0.05,,,0.79,0.0941627,"9,35,36,62",2021-06-03,2023-04-12,2023-04-25 12:12:35,L1 candidate; slight depth aperture correlation,2808,1,False,False,False -45655786,2809.01,,3,4,4,3,3,4,4,36.4,122.9,69.3,3,6,3,PC,PC,10.9095,0.006,,1,qlp,QLP,09:56:08.33,-38:05:19.8,-23.0,2.6,8.8,2.5,2459299.76344,0.0006175,3.1661578,5e-06,2.404,0.072,4.86412,0.001084,4470.0,0.998818,9.79651,,570.01,,61.0,308.013,,6225.0,,,,1.34,,,,,,"9,35,36",2021-06-03,2021-06-03,2022-12-14 12:09:24,found in s36 and faint-star QLP search,2809,1,False,False,False -80682484,2810.01,,2,4,2,2,3,4,4,2.7,41.0,4.91,0,1,1,PC,PC,9.0397,0.006,,1,qlp-s63-ffi,QLP,11:03:49.23,-50:53:13.75,-68.267,0.048,9.567,0.049,2460024.286607,0.004136,8.4035706,5.36e-05,3.906,0.76,0.532141,0.027816,490.0,25.6192,2.0563,0.126659,218.228,1070.0,17.0,99.5473,0.33065,5910.0,120.9,4.42,0.07,1.05,0.05,,,1.07,0.128324,"10,36,37,63",2021-06-03,2023-05-05,2023-06-16 12:14:51,,2810,1,False,False,True -78775584,2811.01,,5,5,5,5,5,5,5,13.3,39.5,116.14,0,0,0,PC,FP,10.7217,0.007,,1,qlp,QLP,09:33:51.97,-42:42:53.55,-13.459,0.044,7.858,0.043,2459302.160259,0.0040355,5.5553784,3.48e-05,2.256,0.334,1.140622,0.002667,1050.0,2.45627,13.2411,0.842573,564.535,1357.0,12.0,940.002,26.4515,8058.0,137.3,3.57,0.08,3.79,0.15,,,1.95,0.297085,"9,35,36",2021-06-03,2021-06-03,2022-12-14 12:09:24,evolved host star,2811,1,False,False,False -105801221,2812.01,,5,5,5,5,5,5,5,6.5,52.6,12.83,0,1,0,PC,FP,9.6913,0.006,,1,qlp,QLP,10:26:44.45,-38:02:31.89,-20.457,0.035,14.052,0.046,2459302.065555,0.0060561,3.0750728,3.3e-05,2.219,0.42,0.553867,0.002055,510.0,1.893,3.62818,0.274993,948.001,1545.0,9.0,241.582,1.9025,6888.0,131.8,4.25,0.09,1.52,0.06,,,1.5,0.256664,"9,36",2021-06-03,2021-06-03,2022-12-14 12:09:24,possible centroid offset to ESE,2812,1,False,False,True -133427311,2813.01,,3,4,3,3,3,4,4,20.6,86.3,107.21,2,0,1,PC,PC,12.4783,0.009,,1,qlp,QLP,08:03:24.19,-38:42:55.01,-6.299,0.048,5.093,0.054,2459252.993504,0.0020256,4.5654898,1.76e-05,1.883,0.211,8.611376,0.010473,7900.0,9.64612,12.6651,0.671472,802.159,1482.0,12.0,854.236,25.59,9162.0,197.4,4.51,0.07,1.4,0.05,,,2.32,0.32006,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2813,1,False,False,False -268187322,2814.01,TIC 268187322.01,3,4,3,3,3,4,4,49.5,67.3,317.0,1,4,1,PC,PC,11.1664,0.006,,1,qlp,QLP,07:44:59.84,-48:45:01.89,-7.244,0.044,2.397,0.043,2459252.651447,0.0007248,5.4791626,6.3e-06,4.627,0.147,10.802349,0.000922,9900.0,0.849509,15.4938,0.67987,911.598,1530.0,100.0,427.312,4.3235,6332.7,327.3,4.2,0.69,1.53,0.07,,,1.44,0.237851,"7,8,9,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al,2814,1,False,False,False -306663205,2815.01,,3,4,3,3,1,4,4,24.7,24.5,317.0,0,0,0,PC,PC,13.2181,0.056,,1,qlp,QLP,07:10:50.08,-12:49:59,1.329,0.14,-4.143,0.139,2459220.937894,0.0025409,3.4044402,1.75e-05,1.895,0.225,7.834643,0.015137,7190.0,13.942,15.4118,,278.231,1137.0,13.0,1028.76,112.233,6097.0,122.0,4.01,,1.75,,,,1.15,,"7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2815,1,False,False,False -131581522,2816.01,,3,4,3,3,1,4,4,41.6,97.7,120.07,0,0,0,PC,PC,13.2864,0.006,,1,qlp-s07-faintsearch,QLP,07:53:23.46,-36:48:01.5,18.914,0.028,1.001,0.029,2459964.260816,0.009067751,3.059168,3.02e-05,4.992,0.448,8.294052,1.422747,7610.0,1309.54,13.504,,6509.45,2502.0,18.0,494.985,3.948,5657.0,122.0,4.37,,1.08,,,,1.0,,"7,8,34,61",2021-06-04,2023-07-12,2023-07-12 00:00:00,found in faint-star QLP search; centroid offset centered on neighboring stars in SPOC-s61,2816,1,False,False,False -285526706,2817.01,,3,4,3,3,3,4,4,22.5,93.9,71.75,4,0,1,PC,PC,12.1234,0.006,,1,qlp,QLP,08:00:07.65,-42:10:19.44,-11.787,0.05,-9.971,0.045,2459247.298936,0.0019114,6.2804387,1.8e-05,3.263,0.3,11.175254,0.006006,10240.0,5.53133,9.96788,0.521819,218.419,1071.0,34.0,331.16,3.5855,5900.0,127.9,4.48,0.08,0.98,0.04,,,1.07,0.144916,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2817,1,False,False,False -151483286,2818.01,TIC 151483286.01,3,4,4,3,3,4,4,67.3,198.9,131.29,2,8,1,PC,PC,11.3944,0.006,,1,qlp,QLP,07:56:14.36,-35:07:00.16,-6.104,0.038,-9.017,0.043,2459245.632019,0.0004453,4.0397189,3.1e-06,3.655,0.061,16.53068,0.000973,15110.0,0.895903,14.2282,0.634353,876.846,1515.0,79.0,312.674,2.249,5758.5,127.9,4.27,2.01,1.14,0.05,,,1.36,0.228653,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2818,1,False,False,False -387275908,2819.01,,3,5,5,3,3,4,4,55.9,78.8,317.0,1,2,1,PC,APC,11.6805,0.007,,1,qlp-s46-tois,QLP,07:19:08.13,12:46:36.7,4.882,0.058,-10.836,0.053,2459222.51667,0.0008844,4.3905548,7.1e-06,2.073,0.222,8.72082,0.008629,8000.0,7.94745,20.0458,1.11767,472.76,1299.0,46.0,655.523,13.9135,5796.0,115.2,4.12,0.07,1.97,0.09,-0.087,0.046,1.17,0.159758,"7,33,44,45,46",2021-06-04,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search; ~700 ppm secondary; possibly synchronized,2819,1,False,False,False -130948731,2820.01,,3,4,3,3,1,4,4,13.5,81.9,93.26,2,0,0,PC,PC,13.2795,0.006,,1,qlp,QLP,07:48:27.1,-41:51:05.92,0.95,0.028,-1.176,0.031,2459249.925006,0.0016781,13.344434,3.98e-05,3.005,0.468,26.497831,0.033367,24110.0,30.7316,11.6444,,31.2154,658.0,19.0,374.417,2.2505,5448.0,122.0,4.7,,0.72,,,,0.95,,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2820,1,False,False,False -281489322,2821.01,,3,4,3,3,3,4,4,61.9,91.7,122.83,1,0,1,PC,PC,12.9152,0.006,,1,qlp,QLP,07:23:27.12,-50:14:36.28,-1.233,0.029,-4.085,0.027,2459251.944079,0.0015378,0.2856701,6e-07,0.297,0.081,2.162768,0.058407,1990.0,53.7931,13.6948,1.80003,1011.6,1571.0,12.0,907.894,13.153,5606.0,128.2,3.81,0.08,2.04,0.11,,,0.99,0.126896,"7,8,33,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2821,1,False,False,False -130349701,2822.01,,3,4,3,3,3,4,4,17.0,44.5,92.0,0,0,1,PC,PC,12.8504,0.012,,1,qlp,QLP,08:00:00.89,-28:38:00.41,-3.706,0.023,2.763,0.026,2459248.445126,0.0042548,2.8798613,2.11e-05,4.111,0.535,5.245901,0.006683,4820.0,6.15517,11.5292,0.719105,2026.22,1869.0,15.0,898.797,12.2875,6086.0,147.1,4.04,0.08,1.69,0.08,,,1.14,0.149218,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2822,1,False,False,False -271035369,2823.01,,3,4,4,3,3,4,4,86.8,260.7,317.0,2,1,1,PC,PC,12.1195,0.006,,1,qlp,QLP,08:20:43.16,-25:41:29.28,-3.1,3.2,2.4,2.9,2459244.237438,0.0007397,4.7962078,6.2e-06,3.328,0.274,23.187453,0.017324,21130.0,15.9563,,,1796.66,1813.0,58.0,1106.49,,8083.5,519.6,,,,,,,,,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,no radius; found in faint-star QLP search,2823,1,False,False,False -128135100,2824.01,,3,4,3,3,1,4,4,35.5,81.4,124.44,0,0,0,PC,PC,13.0931,0.013,,1,qlp,QLP,07:50:43.24,-28:19:17.98,-4.176,0.025,4.826,0.028,2459252.415264,0.0097937,2.2087864,3.58e-05,4.045,0.667,5.125899,2.125497,4710.0,1955.74,13.7924,,11768.7,2901.0,10.0,732.634,9.1535,5827.0,122.0,4.23,,1.3,,,,1.05,,"7,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2824,1,False,False,False -268496304,2825.01,,3,4,3,3,1,4,4,14.5,47.8,92.65,1,0,0,PC,PC,13.0215,0.006,,1,qlp,QLP,07:48:03.66,-48:10:58.72,9.085,0.029,-6.644,0.03,2459245.075624,0.003303,5.9492615,3.5e-05,4.304,0.303,8.162772,0.005334,7490.0,4.91296,11.6197,,452.584,1284.0,12.0,747.884,9.6345,6041.0,122.0,4.22,,1.36,,,,1.12,,"7,8,9,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2825,1,False,False,False -123462119,2826.01,,3,4,4,3,3,4,4,148.3,412.2,317.0,2,0,1,PC,PC,12.8565,0.052,,1,qlp,QLP,06:51:19.84,-11:35:10.47,0.241,0.074,0.356,0.071,2459224.572139,0.0003821,1.9275568,1.6e-06,2.621,0.047,43.27062,0.003697,39070.0,3.40486,,,6683.74,2518.0,111.0,936.741,35.0425,9168.0,716.0,,,,,,,,,"6,7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,no radius; found in faint-star QLP search,2826,1,False,False,False -440775339,2827.01,,3,4,3,3,3,4,4,13.5,54.8,46.19,1,2,2,PC,PC,11.1865,0.006,,1,qlp-s46-tois,QLP,07:14:53.27,11:59:21.82,-4.559,0.116,-9.053,0.101,2459572.199906,0.00145,5.3393042,1.38e-05,2.965,0.23,2.837476,0.001338,2610.0,1.23228,7.70059,0.475754,280.204,1139.0,34.0,382.261,10.968,5857.2,181.2,3.94,0.6,1.49,0.09,,,1.103,0.138134,"7,33,44,45,46",2021-06-04,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search,2827,1,False,False,False -268042363,2828.01,,3,4,3,3,3,4,4,14.2,51.8,81.94,1,0,1,PC,PC,12.9858,0.006,,1,qlp,QLP,07:42:30.95,-53:02:13.8,-0.706,0.075,6.575,0.077,2459298.46932,0.0018591,4.6141256,1.78e-05,1.566,0.14,5.355006,0.010704,4920.0,9.85912,10.7957,0.702862,167.033,1001.0,12.0,844.26,25.901,6888.0,135.2,4.37,0.09,1.33,0.07,,,1.5,0.262854,"7,9,34,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2828,1,False,False,False -114103134,2829.01,,3,4,3,3,3,4,4,115.1,161.6,317.0,1,0,1,PC,PC,11.6079,0.013,,1,spoc-s61-b0A,QLP,07:35:55.54,-30:44:55.22,-10.464,0.038,7.461,0.047,2459963.68315,0.0014540444,1.14687078451485,0.00011793668,1.39654773542937,0.102608725,3.003636,0.170676,2762.62759792871,157.18568,11.7343018051013,0.7581705,12604.1379184195,2702.39006901228,14.13361,721.776,14.023,6755.0,146.3,4.0,0.09,1.99144995212555,0.0893543,,,1.44,0.24289,"7,34,61",2021-06-04,2023-07-12,2023-07-12 00:00:00,V-shaped; found in faint-star QLP search,2829,1,False,False,False -307456716,2830.01,,3,5,5,3,3,4,4,10.2,42.8,49.42,0,1,1,PC,APC,11.8365,0.007,,1,qlp,QLP,08:17:23.23,-17:29:37.52,-28.0,4.5,-8.2,4.7,2459251.243306,0.0039713,4.2555436,2.84e-05,5.058,0.46,2.619782,0.002337,2410.0,2.1524,8.01392,,2367.92,,10.0,566.013,,6053.1,593.2,4.17,1.77,1.68,,,,,,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2830,1,False,False,False -259165246,2831.01,,3,4,3,3,3,4,4,18.9,70.9,126.37,1,1,1,PC,PC,12.0778,0.012,,1,qlp,QLP,07:34:04.65,-15:56:02.37,-3.569,0.054,1.825,0.046,2459251.16632,0.0022387,2.6926692,1.03e-05,3.101,0.186,4.515181,0.002463,4150.0,2.26816,13.9087,0.925572,7635.55,2604.0,12.0,1402.73,79.375,9669.0,213.4,4.18,0.08,2.11,0.13,,,2.47,0.318329,"7,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2831,1,False,False,False -107340585,2832.01,TIC 107340585.01,3,4,4,3,3,4,4,27.1,81.5,113.88,2,0,1,PC,PC,12.9674,0.011,,1,qlp,QLP,07:23:38.56,-26:42:40.72,-3.301,0.025,0.295,0.034,2459251.837973,0.0023415,2.6889686,9.6e-06,2.677,0.18,11.932427,0.006349,10930.0,5.84754,13.0858,0.669334,1246.08,1655.0,11.0,838.737,13.2515,6685.0,136.3,4.4,0.09,1.25,0.06,,,1.42,0.242571,"7,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2832,1,False,False,False -238335094,2833.01,,3,4,3,3,1,4,4,15.0,57.9,54.43,1,0,0,PC,PC,13.0718,0.006,,1,qlp-s07-faintsearch,QLP,08:02:38.97,-49:35:35.66,-9.876,2.946,8.655,2.946,2459967.203114,0.0052369833,4.3897272,2.27e-05,3.234,0.277,7.134965,0.004034,6550.0,3.71511,,,363.009624883944,1113.2668690289,20.0,448.289,,,,,,,,,,,,"7,8,9,34,61",2021-06-04,2023-07-12,2023-07-12 00:00:00,no radius; found in faint-star QLP search,2833,1,True,False,False -238335094,2833.02,TIC 238335094.02,3,4,3,3,1,4,4,14.6,53.8,34.29,1,0,0,PC,PC,13.0718,0.006,,2,spoc-s61-b0A,SPOC,08:02:38.97,-49:35:35.66,-9.876,2.946,8.655,2.946,2459964.103479,0.002708191,1.89475638704282,0.0003977354,2.10942876863614,0.31797385,4.620786,0.360633,4246.85739029895,332.10052,6.72400441420494,1.2643977,1112.46115092828,1472.96003307914,10.069963,448.289,,,,,,1.0,,,,,,61,2023-06-15,2023-06-15,2023-06-16 12:14:51,no stellar radius; two stars within 1 sigma of centroid,2833,2,True,False,False -156172268,2834.01,,3,4,4,3,3,4,4,57.6,172.1,124.01,3,6,1,PC,PC,11.288,0.006,,1,qlp,QLP,08:17:32.64,-28:02:46.08,-12.2,0.044,1.943,0.038,2459245.466695,0.0010424,4.6391531,7.3e-06,3.239,0.13,15.417833,0.003367,14100.0,3.10085,13.8244,0.683011,411.734,1254.0,24.0,317.232,2.935,5928.2,149.0,4.56,0.41,1.15,0.05,,,1.156,0.169019,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2834,1,False,False,False -98286422,2835.01,,5,5,5,5,5,5,5,66.8,71.1,317.0,3,0,0,PC,FP,13.1057,0.006,,1,qlp,QLP,07:13:59.28,-34:56:22.31,9.386,0.025,-25.467,0.03,2459252.308895,0.0004579,2.9646096,2.7e-06,2.232,0.055,30.677967,0.004119,27860.0,3.79356,15.291,,241.662,1098.0,10.0,404.202,2.6105,5306.0,124.0,4.51,,0.88,,,,0.91,,"7,33,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2835,1,False,False,False -144628120,2836.01,,3,4,3,3,3,4,4,38.6,132.7,86.57,3,3,1,PC,PC,11.4675,0.006,,1,qlp,QLP,08:05:55.76,-30:56:18.56,-12.984,0.042,14.278,0.044,2459251.668032,0.0010893,3.2379325,5.9e-06,3.112,0.325,9.093011,0.003814,8340.0,3.51279,11.1634,0.556533,1164.58,1627.0,46.0,388.876,4.164,6434.3,88.9,4.46,0.48,1.19,0.05,,,1.322,0.214811,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2836,1,False,False,False -238020894,2837.01,,3,5,5,3,1,4,4,,,114.76,2,0,0,PC,APC,13.5012,0.006,,1,spoc-s61-b0A,QLP,06:52:00.33,-49:33:42.06,-4.442,3.116,4.646,3.117,2459963.650509,0.0011748372,0.860246683373966,7.227996e-05,1.53140928140785,0.09270936,15.923937,0.855273,14559.4590958634,787.4255,,,3188.05166348154,1916.4658605083,18.597986,,,4841.5,202.0,,,,,,,,,"6,7,8,61",2021-06-04,2023-06-15,2023-06-16 12:14:51,no stellar parameters; V-shaped; found in faint-star QLP search; TFOP BEB/APC,2837,1,False,False,False -81231810,2838.01,,5,5,5,5,5,5,5,23.0,25.8,317.0,0,0,1,PC,FP,12.9,0.019,,1,qlp,QLP,07:06:27.96,-18:48:29.12,8.905,0.03,-11.834,0.033,2459223.264644,0.0034122,5.4521068,3.42e-05,4.702,0.746,8.906899,0.011417,8170.0,10.5157,15.3694,0.977517,1153.14,1623.0,25.0,821.496,14.139,5878.0,175.0,4.03,0.08,1.64,0.08,,,1.06,0.136168,"7,33",2021-06-04,2021-06-04,2023-02-11 12:02:41,found in faint-star QLP search,2838,1,False,False,False -182470056,2839.01,,5,5,5,5,5,5,5,32.0,70.9,96.74,1,0,1,PC,FP,12.9604,0.006,,1,qlp,QLP,08:15:00.83,-36:14:53.08,-7.352,0.024,-4.06,0.029,2459252.298703,0.002305,0.879268,3.4e-06,1.529,0.272,4.951373,0.010658,4550.0,9.8167,11.9007,0.795968,3494.7,2142.0,13.0,888.752,12.1415,6259.0,131.2,4.06,0.08,1.7,0.08,,,1.22,0.175527,"7,8,34",2021-06-04,2021-06-04,2023-04-19 12:02:50,found in faint-star QLP search,2839,1,False,False,False -178577607,2840.01,,3,4,4,3,3,4,4,115.5,142.6,317.0,2,0,1,PC,PC,12.9159,0.008,,1,qlp,QLP,07:14:35.82,-06:50:07.07,-4.163,0.046,2.002,0.042,2459212.235792,0.0005117,1.532427,1.4e-06,2.351,0.051,31.974289,0.004408,29020.0,4.05964,19.4762,1.02313,1580.66,1756.0,105.0,609.523,9.1845,5957.0,134.1,4.39,0.08,1.11,0.06,,,1.09,0.137855,"7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2840,1,False,False,False -79930628,2841.01,,3,4,3,3,3,4,4,23.6,33.3,317.0,0,0,1,PC,PC,12.6313,0.008,,1,qlp,QLP,08:03:16.95,-42:24:39.79,-8.672,0.04,13.731,0.044,2459251.768353,0.0030508,2.1663502,1.19e-05,4.258,0.273,6.457581,0.004136,5930.0,3.80898,14.4558,0.696734,19658.8,3298.0,15.0,1246.64,39.675,9394.0,196.8,4.25,0.07,1.92,0.07,,,2.39,0.315895,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2841,1,False,False,False -178162579,2842.01,TIC 178162579.01,3,4,4,3,3,4,4,33.4,98.3,95.93,2,2,1,PC,PC,12.0327,0.006,,1,qlp,QLP,07:12:10.61,-10:38:21.62,3.139,0.063,4.123,0.062,2459225.449603,0.0011029,3.5514016,8.7e-06,2.207,0.242,9.246303,0.007727,8480.0,7.11662,11.8731,0.700469,342.119,1198.0,34.0,460.995,7.596,6019.0,143.3,4.29,0.08,1.26,0.06,,,1.114,0.148946,"7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2842,1,False,False,False -79030066,2843.01,,3,4,3,3,1,4,4,50.5,63.2,317.0,4,0,0,PC,PC,13.4949,0.028,,1,qlp,QLP,06:54:33.5,-20:17:19.87,-2.072,0.04,-2.375,0.038,2459224.597973,0.0009956,1.8882882,3.5e-06,2.714,0.104,19.809735,0.004683,18080.0,4.31278,17.6221,,2054.63,1875.0,44.0,960.345,24.443,6436.0,122.0,4.34,,1.27,,,,1.3,,"6,7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2843,1,False,False,False -387342052,2844.01,,1,4,1,3,3,4,4,11.6,45.5,55.03,1,18,2,PC,PC,11.5829,0.007,,1,qlp-s46-tois,QLP,07:20:48.77,13:01:07.28,-3.042,0.075,-5.045,0.064,2459574.31635,0.0013921,3.5524144,1.01e-05,2.784,0.174,2.238923,0.000812,2060.0,0.747837,8.52936,0.641771,1015.53,1572.0,29.0,705.803,23.6795,6843.0,152.0,,,1.82,0.13,0.025,0.198,1.54,0.25783,"7,33,44,45,46",2021-06-04,2022-03-11,2023-06-07 00:00:00,found in faint-star QLP search,2844,1,False,False,False -177612321,2845.01,,5,5,5,5,5,5,5,27.5,36.6,317.0,1,0,0,PC,FP,13.2863,0.024,,1,qlp,QLP,07:04:43.04,-00:01:46.24,0.302,0.076,-1.314,0.064,2459223.653303,0.0035054,3.145502,2.23e-05,2.411,0.468,6.741594,0.024269,6190.0,22.3524,20.1993,,707.742,1436.0,12.0,1558.37,118.55,6397.0,122.0,3.83,,2.29,,,,1.28,,"7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2845,1,False,False,False -66151343,2846.01,,3,4,3,3,1,4,4,23.2,65.2,127.67,2,0,0,PC,PC,13.3693,0.008,,1,qlp,QLP,07:15:37.26,-28:03:33.45,-6.438,0.027,2.373,0.029,2459248.642948,0.0018525,2.6792695,1.47e-05,2.56,0.247,11.493422,0.011339,10530.0,10.4439,13.9979,,1189.32,1636.0,21.0,1083.88,21.41,6718.0,122.0,4.34,,1.34,,,,1.43,,"7,33,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2846,1,False,False,False -175604949,2847.01,TIC 175604949.01,3,4,4,3,3,4,4,62.2,170.4,93.91,2,1,1,PC,PC,12.2224,0.006,,1,qlp,QLP,07:46:45.46,-39:07:53.53,-24.374,0.046,-1.181,0.049,2459250.187809,0.0004775,2.648845,2.1e-06,2.131,0.202,18.362197,0.007713,16770.0,7.10379,11.66,0.697666,338.268,1194.0,86.0,259.399,2.244,5329.0,125.5,4.52,0.08,0.87,0.05,,,0.92,0.117892,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2847,1,False,False,False -285524410,2848.01,TIC 285524410.01,3,4,3,3,1,4,4,24.9,113.2,38.84,1,0,0,PC,PC,11.422,0.018,,1,spoc-s62-b0A,QLP,07:59:59.85,-42:55:44.24,-1.1,2.4,-1.9,2.2,2459989.093778,0.0063442984,3.02490682007297,0.0011855758,5.91994651486823,0.33137172,487.23166,23.72725,361578.747308967,21616.545,,,596.220208062957,1260.29270524614,17.408197,573.391,,6758.0,202.0,4.19,1.87,,,,,,,"7,8,34,61,62",2021-06-04,2023-06-28,2023-06-28 00:00:00,no radius; found in faint-star QLP search; CTOI from Olmschenk et al,2848,1,False,False,False -61687533,2849.01,,3,4,3,3,1,4,4,22.8,60.6,121.23,1,0,0,PC,PC,13.2877,0.009,,1,qlp,QLP,07:17:38.92,-06:22:22.71,-0.291,0.038,-2.884,0.034,2459208.275086,0.0040059,2.9510628,1.89e-05,3.404,0.235,10.341878,0.007703,9480.0,7.09453,13.623,,1384.06,1699.0,17.0,982.982,21.756,6370.0,122.0,4.26,,1.39,,,,1.27,,"7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2849,1,False,False,False -453105377,2850.01,,3,4,3,3,3,4,4,28.9,129.6,43.59,1,0,1,PC,PC,10.7599,0.006,,1,qlp,QLP,06:05:38.65,-41:17:17.75,-77.69,0.036,8.167,0.042,2459222.134753,0.0007675,6.6329154,9.6e-06,0.598,0.201,3.469035,0.109022,3190.0,100.408,7.47324,1.13326,6.26353,440.0,23.0,106.964,0.2425,4608.0,86.6,4.35,0.24,0.88,0.07,,,0.72,0.0870072,"5,7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2850,1,False,False,False -174206540,2851.01,,3,4,3,3,1,4,4,20.5,25.2,317.0,1,0,0,PC,PC,13.0923,0.007,,1,qlp,QLP,07:35:25.02,-40:52:39.03,-1.901,0.031,4.223,0.033,2459247.745314,0.002871,4.8257226,2.17e-05,4.145,0.21,8.337815,0.003164,7650.0,2.91448,14.7924,,1225.98,1648.0,14.0,926.193,16.2915,7141.0,122.0,4.2,,1.66,,,,1.59,,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2851,1,False,False,False -52869977,2852.01,,3,4,3,3,1,4,4,21.5,42.6,72.82,0,0,0,PC,PC,13.3947,0.008,,1,qlp,QLP,06:48:27.36,-32:27:27.71,6.253,0.026,2.581,0.032,2459253.167438,0.0023909,0.400777,1.6e-06,0.886,0.203,2.173647,0.015555,2000.0,14.3267,10.0625,,3988.82,2214.0,12.0,1232.83,25.415,5635.0,122.0,3.81,,2.07,,,,1.0,,"6,7,33,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2852,1,False,False,False -173818213,2853.01,,3,4,3,3,1,4,4,64.0,99.0,317.0,1,0,0,PC,PC,13.4546,0.006,,1,qlp-s07-faintsearch,QLP,07:31:40.57,-38:18:37.89,-1.91,0.033,0.263,0.033,2459966.276658,0.0014408284,3.2923881,5.1e-06,1.427,0.224,29.539376,0.036198,26840.0,33.339,21.0823,,211.311,1062.0,35.0,808.212,13.8125,6300.0,122.0,4.35,,1.24,,,,1.24,,"7,8,34,61",2021-06-04,2023-07-12,2023-07-12 00:00:00,slightly V-shaped; found in faint-star QLP search,2853,1,False,False,False -50989813,2854.01,,3,4,3,3,3,4,4,17.6,57.9,113.82,1,1,1,PC,PC,12.5461,0.01,,1,qlp,QLP,07:16:24.2,-04:43:50.39,-1.128,0.071,-0.63,0.063,2459227.231333,0.0026663,0.9008643,4.6e-06,1.419,0.259,2.750393,0.007053,2530.0,6.49645,13.1071,1.35697,13721.4,3015.0,13.0,1961.51,173.31,9267.0,180.1,4.03,0.1,2.46,0.22,,,2.35,0.32599,"7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2854,1,False,False,False -437156845,2855.01,,3,4,3,3,3,4,4,14.0,52.8,58.05,1,0,1,PC,PC,12.7325,0.007,,1,qlp,QLP,08:13:44.86,-18:52:39.55,-5.041,0.029,-4.908,0.022,2459246.599677,0.0026444,3.4906402,1.51e-05,1.586,0.222,4.984094,0.008678,4580.0,7.9927,8.78597,0.55583,202.549,1050.0,1000.0,626.536,8.7385,6066.0,126.5,4.34,0.08,1.18,0.06,,,1.13,0.141998,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2855,1,False,False,False -172630205,2856.01,,3,4,3,3,3,4,4,20.6,31.5,92.54,1,0,1,PC,PC,12.6989,0.007,,1,qlp,QLP,06:44:02.46,-26:01:50.2,10.586,0.02,10.388,0.027,2459226.23093,0.0038518,0.599092,4e-06,1.232,0.242,1.401504,0.007145,1290.0,6.58065,11.5931,,2400.89,1950.0,10.0,1238.08,26.065,5220.0,122.0,,,3.19,,,,,,"6,7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2856,1,False,False,False -419148828,2857.01,,3,4,3,3,3,4,4,28.2,99.0,49.64,0,0,1,PC,PC,12.4644,0.007,,1,spoc-s61-b0A,QLP,08:02:27.49,-35:29:08.55,0.887,0.036,2.793,0.042,2459962.905816,0.0025177584,0.621603115386493,0.000108277076,1.15707157706685,0.13818881,2.548633,0.394841,2344.62497578753,363.59625,8.64395465854547,0.9599996,26805.6102002864,3263.44407024986,8.440942,802.97,16.0935,8038.0,141.3,4.37,0.08,1.50847995281219,0.0535025,,,1.95,0.309332,"7,8,34,61",2021-06-04,2023-07-12,2023-07-12 00:00:00,found in faint-star QLP search; possible secondary; period updated to 2x alerted period (0.3 days) with spoc-s61-b0A,2857,1,False,False,False -47587394,2858.01,,3,4,3,3,1,4,4,,,39.49,0,0,0,PC,PC,13.3606,0.008,,1,qlp,QLP,06:42:39.8,-26:05:02.53,-3.55,2.061,-7.864,2.116,2459225.080496,0.0040222,2.4181961,1.55e-05,1.814,0.77,4.515181,0.078079,4150.0,71.9112,,,473.085,1299.0,11.0,,,5118.6,138.8,,,,,,,,,"6,7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,no radius; found in faint-star QLP search,2858,1,False,False,False -157655504,2859.01,,3,4,3,3,3,4,4,39.5,59.5,317.0,2,0,1,PC,PC,12.9395,0.006,,1,qlp,QLP,07:09:05.87,-39:09:51.76,0.185,0.034,-7.998,0.034,2459253.079498,0.0008362,3.9589903,6.1e-06,3.5,0.108,14.416145,0.002102,13190.0,1.9361,20.2505,0.960825,852.08,1505.0,59.0,1047.94,20.155,6551.0,133.0,4.1,0.09,1.73,0.08,,,1.36,0.228485,"6,7,33,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2859,1,False,False,False -419029830,2860.01,,3,4,3,3,1,4,4,74.4,182.2,317.0,2,0,0,PC,PC,13.4746,0.006,,1,qlp,QLP,08:02:01.16,-30:37:20.04,-4.101,2.097,4.495,2.097,2459245.824803,0.0021144,4.1849602,1.34e-05,2.233,0.255,30.008063,1.545788,27260.0,1422.71,,,362.823,1215.0,23.0,1267.82,,5722.4,201.9,,,,,,,,,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2860,1,False,False,False -157572174,2861.01,,3,4,3,3,1,4,4,13.1,40.5,99.52,0,0,0,PC,PC,13.0316,0.006,,1,spoc-s61-b0A,QLP,07:07:45.55,-38:26:01.39,-1.862,0.021,8.995,0.022,2459967.674019,0.0045102155,6.62699706228714,0.0024052483,3.9371246113468,0.3665394,5.556834,0.434144,5104.95887711229,399.7815,11.13419248493,1.0524266,492.531532844688,1201.51240656268,10.758942,819.583,8.0015,5940.0,122.0,4.13,,1.48945999145508,,,,1.08,,"6,7,33,34,61",2021-06-04,2023-06-28,2023-06-28 00:00:00,found in faint-star QLP search,2861,1,False,False,False -231937059,2862.01,,3,4,3,3,1,4,4,18.0,29.8,317.0,1,0,0,PC,PC,13.0436,0.006,,1,qlp,QLP,06:14:18.66,-42:53:01.23,-2.015,0.023,14.517,0.025,2459243.08619,0.0015131,11.4874782,3.19e-05,4.063,0.231,17.909547,0.009124,16360.0,8.40338,15.5181,,94.4317,868.0,40.0,707.53,6.36,5958.0,122.0,4.3,,1.22,,,,1.09,,"5,7,32,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2862,1,False,False,False -412257781,2863.01,,5,5,5,5,5,5,5,19.3,58.6,65.7,1,0,1,PC,FP,12.7797,0.009,,1,qlp,QLP,07:21:47.04,-22:35:52.59,-8.575,0.027,7.511,0.034,2459253.364143,0.0036508,1.1894812,7.2e-06,3.047,0.413,4.493376,0.006971,4130.0,6.42059,9.44872,0.617205,9015.13,2714.0,12.0,890.314,16.385,6550.0,131.3,4.21,0.09,1.5,0.07,,,1.35,0.225947,"7,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2863,1,False,False,False -157011920,2864.01,,3,4,3,3,1,4,4,30.8,69.6,80.96,0,0,0,PC,PC,12.818,0.019,,1,qlp-s07-faintsearch,QLP,06:40:35.82,-44:39:41.96,0.1,3.5,0.2,3.2,2459963.053193,0.0017214781,0.4777885,1e-06,1.039,0.146,2.924566,0.004884,2690.0,4.49832,,,2766.96,2020.0,21.0,748.5,,5286.9,948.2,,,,,,,,,"6,7,33,34,61",2021-06-04,2023-07-12,2023-07-12 00:00:00,no radius; V-shaped; found in faint-star QLP search; multiple stars in pixel; distant host; period likely too short to be planetary companion,2864,1,False,False,False -231337271,2865.01,,3,4,3,3,3,4,4,52.8,139.9,69.63,0,0,1,PC,PC,12.685,0.006,,1,qlp,QLP,06:28:03.75,-35:23:54.73,-0.404,0.026,-5.167,0.026,2459226.716429,0.001499,0.451685,1.1e-06,0.262,0.103,1.80382,1.436445,1660.0,1322.14,9.82852,4.41347,1563.98,1751.0,10.0,598.315,5.5,6353.0,133.6,4.46,0.09,1.1,0.05,,,1.26,0.189458,"6,7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2865,1,False,False,False -409896170,2866.01,,3,4,4,3,1,4,4,63.1,134.7,107.95,2,0,0,PC,PC,13.2495,0.006,,1,qlp,QLP,08:27:35.61,-14:07:31.56,-18.801,0.032,20.099,0.033,2459251.0301,0.0009497,1.5728416,2.5e-06,1.947,0.109,23.065451,0.012895,21020.0,11.877,12.7462,,687.916,1426.0,31.0,456.797,4.4345,5288.0,122.0,4.52,,0.87,,,,0.908,,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2866,1,False,False,False -156949982,2867.01,,3,4,3,3,1,4,4,15.4,38.8,130.22,0,0,0,PC,PC,13.4861,0.006,,1,qlp,QLP,06:57:22.88,-40:34:44.39,-14.965,0.033,-21.29,0.04,2459249.629013,0.0022855,5.6392638,2.79e-05,4.436,0.303,7.97682,0.004535,7320.0,4.17687,14.2003,,486.031,1308.0,13.0,1086.1,21.73,5904.0,122.0,4.03,,1.65,,,,1.07,,"6,7,33,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2867,1,False,False,False -147857396,2868.01,,3,4,3,3,3,4,4,12.3,46.6,100.2,1,0,1,PC,PC,12.9702,0.006,,1,qlp,QLP,06:35:51.75,-41:33:37.19,0.9,0.032,10.516,0.032,2459222.277749,0.0028432,9.3803217,5.16e-05,4.508,0.934,9.377714,0.015165,8600.0,13.9675,12.1477,0.798237,246.563,1103.0,28.0,680.951,7.7395,5817.0,137.5,4.25,0.08,1.27,0.06,,,1.05,0.128236,"6,7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2868,1,False,False,False -409264172,2869.01,,3,4,3,3,3,4,4,95.1,346.3,317.0,1,0,1,PC,PC,12.9451,0.048,,1,qlp,QLP,07:18:37.71,-13:03:53.21,-2.289,0.113,0.969,0.1,2459249.109041,0.0010522,1.7198076,3.6e-06,1.861,0.239,11.888518,0.011178,10890.0,10.295,,,4161.67,2237.0,16.0,2887.19,645.795,8531.0,495.4,,,,,,,,,"7,33,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2869,1,False,False,False -14709225,2870.01,,3,4,3,3,3,4,4,21.0,76.3,78.03,3,3,1,PC,PC,12.5266,0.008,,1,qlp-s46-tois,QLP,07:27:11.41,14:57:28.33,-6.274,2.143,-23.602,2.143,2459577.909729,0.0010183,5.7655904,1.05e-05,1.757,0.406,8.62232,0.018636,7910.0,17.1647,19.7343,2.53078,80.5444,834.0,31.0,423.114,,5409.0,339.9,,,2.0,0.24,,,,,"7,33,44,45,46",2021-06-04,2022-03-11,2023-01-10 00:00:00,found in faint-star QLP search,2870,1,False,False,False -155807906,2871.01,,3,4,3,3,1,4,4,17.1,57.5,37.49,0,0,0,PC,PC,13.0777,0.009,,1,qlp,QLP,08:15:18.16,-29:13:53.94,-4.579,0.025,-5.108,0.028,2459253.168845,0.0040327,0.4057204,2.3e-06,1.201,0.181,2.848362,0.007004,2620.0,6.45081,6.83767,,11661.9,2895.0,10.0,879.564,13.246,6541.0,122.0,4.33,,1.32,,,,1.35,,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2871,1,False,False,True -151930063,2872.01,,3,4,3,3,3,4,4,18.4,33.0,317.0,0,0,1,PC,PC,12.8919,0.011,,1,qlp-s07-faintsearch,QLP,07:58:28.6,-35:39:52.43,-2.551,0.025,1.992,0.027,2459963.999386,0.006022281,5.2201338,2.86e-05,2.584,0.216,6.577731,0.006738,6040.0,6.20624,14.7463,0.763,2982.23,2058.0,9.0,1142.16,20.515,11632.0,397.3,4.35,0.07,1.95,0.07,,,3.08,0.398605,"7,8,34,61",2021-06-04,2023-07-12,2023-07-12 00:00:00,found in faint-star QLP search,2872,1,False,False,False -119448220,2873.01,,3,4,3,3,1,4,4,50.9,133.6,56.55,4,0,0,PC,PC,12.6587,0.01,,1,qlp,QLP,06:31:09.64,-39:12:37.53,-17.178,1.171,26.168,1.171,2459252.913566,0.0006976,1.252025,1.8e-06,0.816,0.131,9.476282,4.584589,8690.0,4213.66,,,495.784,,21.0,269.192,,5000.0,,,,,,,,,,"6,7,33,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,no radius; V-shaped; found in faint-star QLP search,2873,1,False,False,False -123106490,2874.01,,3,4,3,3,3,4,4,10.5,55.4,29.72,0,0,1,PC,PC,11.3002,0.006,,1,qlp,QLP,07:35:01.25,-43:52:35.5,-4.295,0.045,6.098,0.042,2459247.387639,0.0028782,3.3004862,1.65e-05,2.064,0.296,2.053983,0.003346,1890.0,3.08149,5.95389,0.356915,636.13,1399.0,11.0,398.13,3.989,6408.0,95.4,4.26,2.01,1.31,0.06,,,1.47,0.246486,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2874,1,False,False,False -385658469,2875.01,,3,4,3,3,3,4,4,14.4,21.2,317.0,0,3,1,PC,PC,12.5365,0.012,,1,qlp,QLP,07:23:06.89,-11:59:25.89,-0.016,0.073,-0.092,0.066,2459245.620362,0.0047884,3.4142143,2.9e-05,4.212,0.397,3.697793,0.005435,3400.0,5.00577,15.9231,1.76604,5796.83,2430.0,1000.0,1833.11,181.87,8573.0,166.5,3.9,0.11,2.72,0.28,,,2.14,0.309074,"7,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2875,1,False,False,False -10827386,2876.01,,3,4,4,3,3,4,4,25.8,106.4,64.73,2,2,1,PC,PC,11.7038,0.006,,1,qlp,QLP,07:20:59.36,-21:06:52.7,15.534,0.034,2.554,0.046,2459248.364238,0.0006769,6.2996307,8.6e-06,1.918,0.158,10.396685,0.003694,9530.0,3.40232,9.36407,0.582738,42.1658,709.0,44.0,225.744,1.5105,5137.0,125.6,4.45,0.08,0.92,0.05,,,0.866,0.102454,"7,33,34",2021-06-04,2021-06-04,2023-06-28 00:00:00,found in faint-star QLP search,2876,1,False,False,False -348477542,2877.01,,3,4,3,3,1,4,4,43.5,56.6,317.0,2,0,0,PC,PC,13.0814,0.007,,1,qlp,QLP,08:05:14.72,-16:35:43.11,-10.511,0.028,-0.051,0.023,2459248.400362,0.0013997,3.4074188,7.6e-06,3.111,0.133,19.865023,0.006024,18130.0,5.548,17.1042,,736.646,1451.0,29.0,805.159,13.462,6237.0,122.0,4.33,,1.24,,,,1.21,,"7,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2877,1,False,False,False -4999813,2878.01,,5,5,5,5,5,5,5,7.3,41.3,19.52,1,0,1,PC,FP,12.6063,0.006,,1,qlp,QLP,07:09:26,-01:43:56.08,-6.437,0.133,-19.429,0.11,2459226.726213,0.0044208,2.0849517,2.25e-05,3.099,0.745,2.587132,0.011466,2380.0,10.5605,4.65169,0.431209,2731.54,2014.0,13.0,474.693,16.6275,6163.0,123.1,4.56,0.09,0.94,0.05,,,1.174,0.164787,"7,33",2021-06-04,2021-06-04,2023-02-19 12:02:50,found in faint-star QLP search,2878,1,False,False,False -146836153,2879.01,,3,4,3,3,1,4,4,32.2,81.5,99.88,1,0,0,PC,PC,13.3181,0.006,,1,spoc-s61-b0A,QLP,08:17:16.64,-30:37:58.39,14.597,2.085,-12.005,2.085,2459964.82553,0.0013568316,2.3252877906374,0.000238955,2.27757104894432,0.101888046,32.366792,1.511727,29370.9546150175,1391.3828,12.8754,1.32894,846.682164760731,1375.78272662092,27.171238,602.935,,5744.0,273.3,,,1.1,0.11,,,,,"7,8,34,61",2021-06-04,2023-07-12,2023-07-12 00:00:00,found in faint-star QLP search; ~8000 ppm secondary in SPOC s61; v-shaped,2879,1,False,False,False -344140617,2880.01,,3,4,3,3,1,4,4,12.3,35.3,115.38,0,0,0,PC,PC,13.2873,0.006,,1,qlp,QLP,07:13:38.98,-48:41:46.38,-3.973,0.029,12.612,0.035,2459224.079698,0.0045717,4.7799716,3.81e-05,4.976,1.005,5.71513,0.011054,5250.0,10.1806,13.1891,,1774.48,1808.0,20.0,1251.5,26.74,6605.0,122.0,4.07,,1.79,,,,1.38,,"6,7,8,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2880,1,False,False,False -320541238,2881.01,,3,4,3,3,1,4,4,19.6,47.5,115.26,0,0,0,PC,PC,13.2222,0.007,,1,qlp,QLP,07:17:11.42,01:06:52.69,-7.137,0.06,3.407,0.046,2459225.47669,0.0023366,2.9301843,1.64e-05,4.218,0.256,6.839923,0.004268,6280.0,3.93067,13.1989,,1800.37,1814.0,20.0,1059.52,53.65,6032.0,122.0,4.05,,1.65,,,,1.12,,"7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2881,1,False,False,False -142405475,2882.01,,3,4,3,3,1,4,4,4.4,24.0,22.03,0,0,0,PC,PC,13.1101,0.017,,1,qlp,QLP,06:52:09.6,-12:41:22.95,0.448,0.04,-0.962,0.048,2459224.056067,0.015863,2.0083269,4.84e-05,4.37,0.736,1.825571,0.005823,1680.0,5.36292,4.99539,,7012.5,2549.0,9.0,855.978,17.997,6656.0,122.0,4.37,,1.28,,,,1.4,,"6,7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2882,1,False,False,False -319932686,2883.01,,3,4,3,3,3,4,4,20.3,63.5,92.11,0,0,2,PC,PC,12.3661,0.006,,1,qlp,QLP,07:18:14.2,-32:57:27.4,-2.863,2.127,-6.202,2.127,2459249.371429,0.0014507,3.7064049,1.57e-05,2.056,0.451,5.125899,0.521509,4710.0,480.212,,,1014.45,1572.0,21.0,696.926,,6016.0,265.8,,,,,,,,,"7,33,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2883,1,False,False,False -318413374,2884.01,,3,4,3,3,1,4,4,20.2,18.0,317.0,0,0,0,PC,PC,13.4518,0.011,,1,qlp,QLP,07:18:33.68,-09:42:06.98,-0.555,0.04,0.366,0.035,2459226.630661,0.0062348,2.935886,2.95e-05,2.93,1.019,6.424816,0.04715,5900.0,43.4254,14.3093,,1215.74,1645.0,11.0,1150.7,33.855,5896.0,122.0,3.97,,1.77,,,,1.07,,"7,33",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2884,1,False,False,False -140019355,2885.01,,3,4,3,3,3,4,4,16.1,29.3,317.0,1,1,1,PC,PC,11.7507,0.016,,1,qlp,QLP,07:42:04.27,-18:53:23.96,-3.929,0.045,2.523,0.048,2459241.058065,0.0032119,6.3350651,3.15e-05,2.37,0.526,4.526083,0.010355,4160.0,9.53769,15.3432,1.11963,1093.74,1602.0,1000.0,1301.56,58.995,9608.0,286.3,4.11,0.07,2.28,0.12,,,2.45,0.33775,"7,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2885,1,False,False,False -318796593,2886.01,,3,4,4,3,3,4,4,139.3,175.7,317.0,3,12,1,PC,PC,11.7858,0.006,,1,qlp,QLP,07:20:01.84,-10:34:11.43,-8.364,0.059,-4.851,0.052,2459251.740462,0.0002722,1.6020002,1.3e-06,2.625,0.046,23.620117,0.001941,21520.0,1.78771,18.6498,0.936438,2118.49,1890.0,92.0,413.673,6.706,6141.0,168.1,4.33,0.09,1.22,0.06,,,1.164,0.170529,"7,33,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2886,1,False,False,False -134183038,2887.01,,3,4,3,3,1,4,4,33.2,51.7,317.0,1,0,0,PC,PC,13.3009,0.007,,1,qlp,QLP,08:07:56.52,-39:00:52.28,-4.648,0.03,4.641,0.029,2459253.286395,0.0017016,4.9179585,1.39e-05,3.647,0.144,21.968048,0.005705,20030.0,5.25443,16.4541,,841.041,1500.0,18.0,781.709,11.117,7185.0,122.0,4.52,,1.15,,,,1.61,,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2887,1,False,False,False -80713983,2888.01,,3,4,3,3,3,4,4,,,90.49,2,0,1,PC,PC,11.1893,0.015,,1,qlp,QLP,08:07:49.78,-45:22:37.36,-5.199,0.086,4.882,0.082,2459245.094726,0.0011848,4.2188055,8.1e-06,1.892,0.098,12.020249,3.826823,11010.0,3518.43,,,,,14.0,1658.85,141.555,9307.0,941.6,,,,,,,,,"7,8,34",2021-06-04,2021-06-04,2022-12-14 12:09:24,no radius; V-shaped; found in faint-star QLP search,2888,1,False,False,False -355796887,2889.01,,3,4,3,3,3,4,4,107.2,256.7,317.0,3,0,1,PC,PC,12.973,0.006,,1,qlp,QLP,08:48:54.14,-61:54:17.99,-2.515,3.0,7.091,3.0,2459325.238907,0.0005378,3.6579148,4.1e-06,4.33,0.189,35.648147,0.005268,32300.0,4.85216,,,869.875,1512.0,138.0,937.591,,5765.0,93.6,,,,,,,,,"8,9,10,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,2889,1,False,False,False -355655412,2890.01,,3,4,3,3,3,4,4,,,317.0,2,0,1,PC,PC,12.6223,0.013,,1,qlp,QLP,09:10:47.9,-50:55:19.2,-11.974,0.051,12.431,0.04,2459299.679583,0.0008792,3.1958886,4.7e-06,1.548,0.244,11.745828,0.024722,10760.0,22.77,16.4567,1.94841,495.822,1314.0,35.0,776.868,16.38,6496.3,369.0,,,1.39,0.15,,,,,"8,9,35,36",2021-06-04,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search; v-shaped; possible odd-even,2890,1,False,False,False -342167886,2891.01,TIC 342167886.01,3,4,3,3,3,4,4,20.5,39.8,317.0,3,0,1,PC,PC,11.7498,0.007,,1,qlp,QLP,08:11:33.74,-57:18:54.85,2.861,0.207,-0.627,0.181,2459323.649491,0.0010424,17.3076615,3.05e-05,4.843,0.122,9.6844,0.001228,8880.0,1.13094,17.4207,1.54523,96.7375,873.0,71.0,627.007,44.5875,6693.0,139.8,4.07,0.11,1.81,0.16,,,1.42,0.237598,"8,9,10,34,35,36,37",2021-06-04,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search,2891,1,False,False,True -340559155,2892.01,,3,4,3,3,1,4,4,22.9,50.3,317.0,0,0,0,PC,PC,13.3763,0.006,,1,qlp,QLP,07:44:51.27,-59:33:04.15,-8.417,0.034,6.167,0.035,2459312.634565,0.0034021,14.9502738,9.06e-05,4.464,0.272,8.797437,3.614694,8070.0,3323.72,15.1651,,135.41,950.0,26.0,374.866,2.2025,5068.0,122.0,4.58,,0.79,,,,0.85,,"3,4,5,7,8,9,10,13,27,30,31,34,35,36,37",2021-06-04,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search,2892,1,False,False,False -340144218,2893.01,,3,4,3,3,1,4,4,5.2,31.4,43.14,1,0,0,PC,PC,13.296,0.006,,1,qlp,QLP,07:34:18.66,-56:34:54.46,-2.083,0.034,19.363,0.038,2459295.960835,0.0034245,10.3629429,6.74e-05,3.168,0.478,6.402972,0.010233,5880.0,9.42528,7.36873,,66.9029,796.0,13.0,518.198,4.9425,5467.0,122.0,4.45,,0.96,,,,0.96,,"3,7,8,9,10,13,30,33,34,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2893,1,False,False,True -315120585,2894.01,,3,4,3,3,1,4,4,15.1,61.2,90.96,2,0,0,PC,PC,13.0815,0.007,,1,qlp,QLP,09:41:42.95,-24:47:07.26,-0.577,0.041,-7.106,0.041,2459265.55968,0.0018204,7.4190257,2.22e-05,2.472,0.122,12.679143,0.005516,11610.0,5.08054,11.48,,87.5704,852.0,25.0,617.411,10.0615,6004.0,122.0,4.47,,1.02,,,,1.11,,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2894,1,False,False,False -315117300,2895.01,,3,4,3,3,1,4,4,5.6,22.8,75.69,0,0,0,PC,PC,13.3064,0.007,,1,qlp,QLP,09:41:19.07,-28:21:16.77,-9.494,0.052,0.478,0.056,2459275.535658,0.008328,8.7858955,0.0001161,5.908,0.574,4.25355,0.005454,3910.0,5.02354,10.3307,,656.013,1409.0,10.0,1274.13,42.25,6749.0,122.0,4.17,,1.63,,,,1.44,,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2895,1,False,False,False -310537530,2896.01,,3,4,3,3,3,4,4,31.1,24.6,317.0,0,0,1,PC,PC,12.8047,0.006,,1,qlp,QLP,08:35:39.85,-62:06:53.91,-5.293,0.029,9.322,0.023,2459332.225183,0.0023156,1.3475728,5.6e-06,1.589,0.418,2.793934,0.009069,2570.0,8.35241,18.0939,,1178.75,1632.0,19.0,1362.17,24.81,5434.0,122.0,,,3.36,,,,,,"8,9,10,11,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2896,1,False,False,False -308987429,2897.01,,3,4,3,3,1,4,4,4.9,31.7,48.54,0,0,0,PC,PC,13.3406,0.006,,1,qlp,QLP,08:11:50.46,-61:43:59.8,-14.819,0.033,24.435,0.037,2459310.429548,0.0026138,12.0040505,5.05e-05,3.95,0.186,7.506613,0.003793,6890.0,3.49348,7.9538,,77.3733,826.0,24.0,583.358,5.567,5777.0,122.0,4.47,,0.98,,,,1.04,,"1,4,5,8,9,10,11,31,34,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2897,1,False,False,False -308612785,2898.01,,3,4,3,3,1,4,4,14.8,43.1,125.82,1,0,0,PC,PC,13.4268,0.006,,1,qlp,QLP,08:05:56.89,-61:40:01.92,-2.606,0.033,6.903,0.032,2459326.161724,0.001964,3.6128161,1.36e-05,3.101,0.216,6.927335,0.004725,6360.0,4.35166,13.8588,,1296.86,1671.0,20.0,1441.09,33.815,7186.0,122.0,4.18,,1.71,,,,1.61,,"1,4,5,7,8,9,10,11,28,31,34,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2898,1,False,False,False -307366709,2899.01,,3,4,3,3,1,4,4,28.4,32.3,317.0,0,0,0,PC,PC,13.0077,0.006,,1,qlp,QLP,08:22:44.87,-67:43:24.68,2.291,0.048,7.905,0.042,2459386.403025,0.0010606,4.0874138,7.7e-06,2.061,0.319,8.140894,0.012046,7470.0,11.0945,17.2785,,334.64,1191.0,41.0,983.354,23.1875,5881.0,122.0,3.94,,1.83,,,,1.07,,"2,5,8,9,10,11,12,28,29,32,35,36,37",2021-06-04,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search; possible synchronization,2899,1,False,False,False -298206077,2900.01,,3,4,3,3,1,4,4,89.0,131.1,317.0,4,0,0,PC,PC,13.4609,0.006,,1,qlp,QLP,09:30:55.45,-51:08:27.76,-11.926,2.927,13.197,2.927,2459303.692092,0.0009906,1.317173,2.7e-06,2.581,0.069,15.450872,0.004044,14130.0,3.72495,,,1048.64,1585.0,36.0,1036.78,,4649.5,462.2,,,,,,,,,"9,10,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2900,1,False,False,False -295093397,2901.01,,3,4,4,3,3,4,4,50.5,102.8,317.0,3,0,1,PC,PC,11.9357,0.007,,1,qlp,QLP,09:22:26.28,-52:02:37.04,-7.124,0.048,5.363,0.055,2459303.994531,0.0010217,4.6086828,1e-05,4.283,0.121,15.296701,0.003567,13990.0,3.28565,20.3715,0.858242,2197.47,1907.0,50.0,808.284,19.375,8097.0,145.3,4.26,0.08,1.72,0.07,,,1.97,0.308589,"9,10,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2901,1,False,False,False -290302097,2902.01,,3,4,3,3,3,4,4,8.7,42.3,24.37,0,0,1,PC,PC,12.7858,0.006,,1,qlp,QLP,09:05:20.62,-62:58:00.41,-12.172,0.027,22.836,0.026,2459330.748653,0.0024871,2.9918201,1.3e-05,2.231,0.278,3.708687,0.004399,3410.0,4.05169,5.2899,0.357764,317.354,1175.0,21.0,363.632,1.88,5301.0,126.4,4.5,0.08,0.89,0.05,,,0.91,0.120139,"9,10,11,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2902,1,False,False,False -268125229,2903.01,,3,4,3,3,3,4,4,7.1,38.3,22.74,0,0,1,PC,PC,12.7318,0.006,,1,qlp,QLP,07:44:15.69,-51:52:29.44,1.678,0.022,-2.327,0.022,2459299.197453,0.0037609,3.5947639,2.01e-05,1.81,0.184,3.338337,0.005341,3070.0,4.91927,5.10241,0.341297,176.712,1015.0,12.0,381.002,1.739,5594.0,127.9,4.5,0.08,0.93,0.05,,,0.99,0.124331,"7,8,9,34,35,36",2021-06-04,2021-11-05,2022-12-14 12:09:24,found in faint-star QLP search; low SNR,2903,1,False,False,False -267536225,2904.01,,3,4,3,3,3,4,4,6.3,29.6,39.82,0,0,1,PC,PC,12.5519,0.006,,1,qlp,QLP,07:36:44.36,-53:12:16.5,5.616,0.027,-10.253,0.024,2459292.3431,0.0074835,7.5010022,9.29e-05,3.977,1.172,2.772163,0.013066,2550.0,12.0342,7.05091,0.608834,534.505,1339.0,11.0,519.895,3.389,5673.0,125.5,4.21,0.08,1.31,0.06,,,1.01,0.124948,"7,8,9,34,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2904,1,False,False,False -260120451,2905.01,,3,4,3,3,3,4,4,,,317.0,2,0,1,PC,PC,12.41,0.02,,1,qlp-s36-tois,QLP,08:43:50.79,-45:58:19.28,-23.504,0.996,6.986,0.996,2459998.015443,0.0055279224,11.8790678,6.38e-05,3.716,0.65,9.355811,0.011059,8580.0,10.1858,,,61.6781,780.0,22.0,804.13,,5163.2,1170.8,,,,,,,,,"8,9,35,36,61,62",2021-06-04,2023-07-12,2023-07-12 00:00:00,found in faint-star QLP search; possible depth aperture correlation; v-shaped; variable host; host is distant and likely evolved so Rp may be too large to be planetary; multiple stars in pixel,2905,1,False,False,False -192259856,2906.01,,3,4,3,3,3,4,4,34.0,105.8,119.07,1,0,1,PC,PC,12.7318,0.006,,1,qlp,QLP,09:09:33.77,-37:47:48.63,-16.58,0.022,9.238,0.026,2459277.553272,0.0015119,3.7062792,8.9e-06,3.008,0.123,15.208613,0.003121,13910.0,2.87436,13.4147,0.596572,714.906,1440.0,32.0,591.529,5.899,6524.0,121.0,4.49,0.09,1.09,0.05,,,1.34,0.213169,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2906,1,False,False,False -192003741,2907.01,,3,4,3,3,3,4,4,15.2,51.0,85.36,0,0,1,PC,PC,12.3447,0.006,,1,qlp,QLP,09:07:01.29,-36:33:36.23,-8.574,1.178,3.781,1.178,2459274.76139,0.0062894,3.168632,3.22e-05,2.329,0.407,3.076989,0.007307,2830.0,6.73025,,,536.503,1340.0,8.0,931.375,,6020.0,347.7,,,,,,,,,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2907,1,False,False,False -191671884,2908.01,,3,4,3,3,3,4,4,5.6,35.3,28.86,0,0,1,PC,PC,12.6467,0.006,,1,qlp,QLP,09:03:46.52,-39:13:01.49,-13.668,0.028,0.824,0.028,2459275.14257,0.0050085,5.4631023,4.47e-05,4.067,0.502,3.338337,0.004787,3070.0,4.40887,5.85793,0.346715,874.545,1515.0,12.0,554.906,5.5215,6788.0,138.7,4.55,0.09,1.06,0.04,,,1.46,0.250104,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2908,1,False,False,False -191496430,2909.01,,3,4,3,3,3,4,4,,,65.21,0,0,2,PC,PC,11.3289,0.006,,1,qlp,QLP,09:02:40.46,-37:01:00.56,-11.065,2.243,6.404,2.105,2459275.206618,0.0029483,3.0688259,1.35e-05,3.95,0.28,3.272994,0.001201,3010.0,1.10582,9.43298,0.576381,4260.44,2250.0,18.0,,,7776.7,228.1,,,1.64,0.09,,,,,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2909,1,False,False,False -141574742,2910.01,,3,4,3,3,1,4,4,29.3,30.2,317.0,1,0,0,PC,PC,13.3395,0.006,,1,qlp,QLP,08:38:31.16,-42:08:30.77,-6.386,2.974,7.673,2.974,2459273.960974,0.0034063,3.308567,2.02e-05,3.7,0.309,9.246303,0.007242,8480.0,6.67022,,,501.871,1318.0,19.0,842.929,,4989.6,113.6,,,,,,,,,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2910,1,False,False,False -141141249,2911.01,,3,4,4,3,1,4,4,43.6,109.6,52.87,3,0,0,PC,PC,13.381,0.15,,1,qlp,QLP,08:36:19.33,-46:21:55.92,,,,,2459301.847461,0.0007563,1.7700878,3.1e-06,1.314,0.083,18.616205,0.014298,17000.0,13.1687,10.9547,1.01385,123.257,928.0,28.0,,,4430.1,200.9,,,0.77,0.07,,,,,"8,9,35,36",2021-06-04,2021-11-09,2023-01-23 00:00:00,found in faint-star QLP search,2911,1,False,False,False -118406995,2912.01,,3,4,3,3,3,4,4,16.7,57.6,95.3,1,0,1,PC,PC,11.3838,0.006,,1,qlp,QLP,08:35:18.48,-56:38:25.03,-3.225,0.046,2.94,0.046,2459327.506327,0.0012743,8.7614828,2.15e-05,3.301,0.317,4.569695,0.00315,4200.0,2.90081,11.807,0.619521,192.233,1037.0,42.0,557.087,7.508,6614.0,132.5,4.05,0.09,1.83,0.08,,,1.38,0.220567,"8,9,10,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2912,1,False,False,False -101588793,2913.01,,3,4,3,3,1,4,4,20.2,76.8,84.33,1,0,0,PC,PC,13.3564,0.006,,1,qlp,QLP,10:01:55.39,-31:44:18.86,27.746,0.036,-18.096,0.048,2459304.456496,0.0010481,7.0317936,1.71e-05,2.962,0.091,20.904958,0.009138,19070.0,8.41597,10.9551,,33.675,671.0,37.0,265.527,2.2425,4269.0,122.0,4.48,,0.78,,,,0.67,,"9,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2913,1,False,False,False -90127880,2914.01,,3,4,3,3,1,4,4,20.1,25.2,317.0,1,0,0,PC,PC,13.21,0.009,,1,qlp,QLP,08:30:29.71,-48:49:14.2,-5.655,0.045,5.564,0.044,2459275.050164,0.0045402,3.0518616,2.29e-05,3.059,0.464,6.752519,0.012062,6200.0,11.1097,15.1736,,2829.69,2031.0,13.0,1245.8,42.505,7902.0,122.0,4.14,,1.94,,,,1.89,,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2914,1,False,False,False -89617284,2915.01,,3,4,3,3,3,4,4,26.2,80.3,97.72,0,0,1,PC,PC,12.5254,0.006,,1,qlp,QLP,08:29:39.38,-55:33:38.55,-10.929,1.237,9.407,1.237,2459297.972286,0.0017014,5.1304425,1.36e-05,2.399,0.382,8.359697,0.010057,7670.0,9.26266,,,160.972,992.0,33.0,455.243,,5003.8,178.7,,,,,,,,,"8,9,10,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,2915,1,False,False,False -76663549,2916.01,,3,4,3,3,1,4,4,32.1,108.5,114.89,2,0,0,PC,PC,13.108,0.006,,1,qlp,QLP,09:22:43.95,-45:05:32.62,-1.29,0.029,4.896,0.03,2459303.128643,0.00092,3.9216762,6.4e-06,2.075,0.082,19.058101,0.007488,17400.0,6.89699,13.1754,,325.02,1182.0,45.0,588.385,6.867,6706.0,123.0,4.63,,0.96,,,,1.42,,"8,9,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2916,1,False,False,True -75744886,2917.01,,3,4,3,3,1,4,4,42.9,81.0,317.0,1,0,0,PC,PC,13.0699,0.006,,1,qlp,QLP,09:17:20.78,-46:06:53,-9.965,2.986,5.557,3.005,2459294.120029,0.0017633,7.9018734,2.28e-05,3.18,0.346,17.755027,0.007229,16220.0,6.65789,,,70.7874,808.0,33.0,785.617,,4976.0,217.5,,,,,,,,,"8,9,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; no Gaia astrometry; no stellar radius,2917,1,False,False,False -74881311,2918.01,,3,4,3,3,1,4,4,8.8,46.4,66.43,0,0,0,PC,PC,13.2889,0.006,,1,qlp,QLP,09:12:33.17,-46:24:02.53,-10.853,0.03,9.529,0.031,2459288.040612,0.0033942,9.5680636,6.32e-05,3.982,0.281,10.254191,0.010942,9400.0,10.078,9.53977,,195.344,1041.0,17.0,632.543,7.6515,6511.0,122.0,4.57,,0.99,,,,1.34,,"8,9,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2918,1,False,False,False -74274839,2919.01,TIC 74274839.01,3,4,3,3,3,4,4,27.8,100.7,78.07,3,0,1,PC,PC,12.5917,0.006,,1,qlp,QLP,09:09:02.77,-44:41:40.06,3.472,0.028,6.142,0.028,2459298.680353,0.0009828,4.6957057,9.7e-06,2.633,0.083,15.087505,0.00658,13800.0,6.06038,10.543,0.609663,165.667,999.0,40.0,332.108,1.757,5475.0,128.0,4.53,0.08,0.89,0.05,,,0.96,0.117042,"8,9,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2919,1,False,False,False -48210046,2920.01,,3,4,3,3,3,4,4,54.2,70.2,317.0,4,0,1,PC,PC,12.8212,0.006,,1,qlp,QLP,09:52:10.45,-34:38:16.01,-12.749,0.09,-1.241,0.101,2459300.972897,0.0006698,3.2003149,4.1e-06,2.847,0.093,17.865396,0.003697,16320.0,3.40467,18.204,1.10709,626.171,1393.0,68.0,728.811,32.598,6060.0,129.8,4.2,0.09,1.4,0.08,,,1.13,0.146578,"9,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2920,1,False,False,False -45896295,2921.01,TIC 45896295.01,3,4,3,3,3,4,4,31.0,84.9,119.77,1,0,1,PC,PC,12.8854,0.006,,1,qlp,QLP,08:45:59.57,-57:58:14.28,-4.986,0.032,0.248,0.027,2459331.505693,0.0009394,3.0044799,5.6e-06,3.19,0.11,12.009271,0.002293,11000.0,2.11167,13.4546,0.635962,1078.67,1596.0,49.0,706.87,7.765,6302.0,128.3,4.34,0.09,1.25,0.06,,,1.24,0.187697,"8,9,10,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2921,1,False,False,False -45492609,2922.01,,3,4,3,3,3,4,4,13.2,58.2,23.23,0,0,1,PC,PC,11.7768,0.006,,1,qlp,QLP,09:54:07.29,-36:31:59.99,-7.239,0.027,11.021,0.04,2459303.736827,0.0013447,1.3605223,4e-06,0.715,0.176,1.564587,0.011356,1440.0,10.4593,5.14347,0.48199,333.693,1190.0,13.0,366.67,3.458,5924.0,131.2,4.35,0.08,1.15,0.06,,,1.08,0.139352,"9,35,36",2021-06-04,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search,2922,1,False,False,False -45299834,2923.01,,3,4,3,3,3,4,4,21.6,67.4,100.82,2,0,1,PC,PC,12.8521,0.006,,1,qlp,QLP,08:41:15.09,-59:00:11.92,-18.345,0.029,18.998,0.026,2459324.001668,0.0013422,4.3226285,1.02e-05,2.908,0.133,9.914472,0.002185,9090.0,2.01235,12.2227,0.618805,401.143,1246.0,36.0,668.938,5.933,6153.0,136.1,4.31,0.09,1.25,0.06,,,1.17,0.166254,"8,9,10,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2923,1,False,False,False -45048546,2924.01,,3,4,3,3,3,4,4,11.1,50.3,62.44,1,0,1,PC,PC,12.1466,0.006,,1,qlp,QLP,08:38:15.84,-54:05:13.54,-8.755,0.051,11.083,0.043,2459297.99367,0.0020819,7.3502169,3.61e-05,3.684,0.254,5.071356,0.002313,4660.0,2.13049,9.21761,0.461965,317.953,1176.0,21.0,552.876,8.533,6571.0,133.3,4.31,0.09,1.35,0.06,,,1.36,0.212139,"8,9,35,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2924,1,False,False,False -44510874,2925.01,,3,4,3,3,3,4,4,23.8,86.7,52.08,0,0,1,PC,PC,11.49,0.007,,1,qlp,QLP,09:41:52.94,-41:29:00.96,-15.85,0.098,11.659,0.102,2459302.564351,0.0011891,1.5720089,4.7e-06,1.257,0.171,2.968113,0.004361,2730.0,4.01688,8.25698,0.514993,1224.0,1647.0,19.0,504.705,14.1235,7164.0,137.5,4.28,0.09,1.51,0.07,,,1.6,0.271725,"9,35,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2925,1,False,False,False -34499178,2926.01,,3,4,3,3,1,4,4,18.6,45.5,126.62,0,0,0,PC,PC,13.1845,0.006,,1,qlp,QLP,09:47:34.64,-44:56:20.12,-12.632,0.031,8.679,0.032,2459303.198309,0.0028352,2.4249041,1.87e-05,4.225,0.293,6.129967,0.004269,5630.0,3.93217,13.9253,,3929.91,2205.0,18.0,1301.83,34.325,6632.0,122.0,4.01,,1.92,,,,1.39,,"9,35,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2926,1,False,False,False -33651215,2927.01,,3,4,3,3,1,4,4,44.3,47.6,317.0,2,0,0,PC,PC,13.3754,0.006,,1,qlp,QLP,09:42:13.45,-43:00:15.15,-8.221,0.03,-0.441,0.029,2459304.991277,0.0010124,1.3868302,3.1e-06,2.413,0.115,15.516952,0.007011,14190.0,6.45769,14.7174,,4386.75,2267.0,34.0,890.006,15.2665,7019.0,122.0,4.46,,1.22,,,,1.55,,"9,35,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search; slight depth aperture correlation,2927,1,False,False,True -33159936,2928.01,,3,4,3,3,3,4,4,19.8,64.0,82.5,2,0,1,PC,PC,12.9639,0.006,,1,qlp,QLP,09:38:44.37,-43:01:38.22,-19.668,0.026,-4.383,0.027,2459302.165051,0.0041972,2.8457134,2.32e-05,3.189,0.273,7.68155,0.011558,7050.0,10.645,10.8106,0.65423,1849.83,1827.0,11.0,754.398,10.253,6910.0,135.3,4.39,0.08,1.3,0.06,,,1.51,0.267242,"9,35,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2928,1,False,False,False -31975443,2929.01,,3,4,3,3,1,4,4,44.1,118.9,95.73,4,0,0,PC,PC,13.2135,0.006,,1,qlp,QLP,09:08:13.87,-43:35:04.06,-11.627,0.031,9.072,0.028,2459302.03511,0.0026006,2.0391352,1.09e-05,2.1,0.183,20.97137,0.026924,19130.0,24.7973,11.8618,,693.385,1429.0,12.0,464.854,3.821,5773.0,122.0,4.55,,0.89,,,,1.03,,"8,9,35,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2929,1,False,False,False -30300445,2930.01,,3,4,3,3,3,4,4,10.3,35.8,82.9,0,0,1,PC,PC,11.6526,0.007,,1,qlp,QLP,08:55:40.05,-43:23:57.13,-9.571,0.048,10.095,0.041,2459297.414276,0.0040363,7.2041454,4.54e-05,3.527,0.812,2.14101,0.004805,1970.0,4.42511,10.8839,0.713033,735.576,1450.0,17.0,768.578,15.9945,7176.0,143.4,3.91,0.08,2.34,0.1,,,1.6,0.27022,"8,9,35,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2930,1,False,False,False -29505837,2931.01,,3,4,3,3,3,4,4,11.4,38.4,85.77,0,0,1,PC,PC,12.1511,0.006,,1,qlp,QLP,08:52:48.72,-43:21:13.64,-20.947,0.048,12.904,0.049,2459268.553097,0.0052271,8.6681997,7.98e-05,5.864,0.912,4.22085,0.005926,3880.0,5.45793,11.0832,0.710674,492.998,1312.0,18.0,663.064,12.5775,6133.0,135.2,4.01,0.08,1.77,0.09,,,1.16,0.150722,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2931,1,False,False,False -29418536,2932.01,,3,4,3,3,3,4,4,25.1,31.1,317.0,1,0,1,PC,PC,12.6396,0.007,,1,qlp,QLP,08:52:08.51,-46:00:43.81,-3.19,0.029,2.717,0.033,2459300.217017,0.0018639,3.2569118,1.12e-05,3.689,0.215,6.490348,0.002853,5960.0,2.62798,15.9704,0.733603,2431.32,1956.0,25.0,1052.16,19.465,7320.0,135.1,4.01,0.08,2.1,0.08,,,1.66,0.282252,"8,9,35,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2932,1,False,False,False -29336129,2933.01,,3,4,3,3,3,4,4,8.0,31.0,32.26,0,0,1,PC,PC,12.5246,0.006,,1,qlp,QLP,08:51:29.21,-47:44:21.14,0.088,0.041,1.337,0.041,2459304.106159,0.0070163,1.6360871,1.84e-05,3.669,0.458,1.705945,0.003889,1570.0,3.58144,6.24296,0.443219,6140.09,2466.0,11.0,762.471,13.8775,6361.0,137.0,4.09,0.08,1.68,0.07,,,1.27,0.192348,"8,9,35,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2933,1,False,False,False -28945511,2934.01,,3,4,3,3,3,4,4,12.1,55.8,23.54,0,0,1,PC,PC,12.8016,0.006,,1,qlp,QLP,08:49:51.49,-43:17:08.94,-25.357,0.024,1.121,0.027,2459278.683684,0.0036219,1.1239749,6.2e-06,1.011,0.201,2.38037,0.013417,2190.0,12.3574,5.17993,0.436021,910.705,1530.0,9.0,466.664,3.52,6220.0,130.8,4.56,0.08,0.95,0.04,,,1.2,0.161641,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2934,1,False,False,False -24837152,2935.01,,3,4,3,3,1,4,4,17.4,52.7,115.31,1,0,0,PC,PC,13.4581,0.006,,1,qlp,QLP,09:29:05.1,-34:45:53.19,-21.831,0.023,6.54,0.033,2459278.943232,0.0025453,5.5698287,2.33e-05,2.234,0.22,12.690128,0.012749,11620.0,11.7421,13.1629,,113.909,910.0,17.0,733.784,10.975,5751.6,84.7,4.28,,1.22,,0.125349,0.0861733,1.03,,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2935,1,False,False,False -22020459,2936.01,,5,5,5,5,5,5,5,10.1,36.3,42.61,0,0,1,PC,FP,12.5961,0.008,,1,qlp,QLP,09:51:24.87,-25:35:38.09,-2.838,0.056,2.228,0.058,2459278.076957,0.004729,1.3328042,1e-05,2.75,0.284,2.130131,0.002843,1960.0,2.6188,7.33432,0.496805,5718.54,2422.0,14.0,923.797,26.82,6561.0,135.8,4.12,0.09,1.67,0.09,,,1.36,0.22029,"8,9,35",2021-06-04,2021-06-04,2023-02-11 12:02:42,found in faint-star QLP search,2936,1,False,False,False -18794442,2937.01,,3,4,3,3,1,4,4,80.9,120.4,317.0,0,0,0,PC,PC,13.4212,0.006,,1,qlp,QLP,09:12:13.25,-33:49:55.19,-4.853,0.023,-1.196,0.03,2459279.499472,0.0048111,2.0139493,1.42e-05,1.554,0.225,6.337445,2.930956,5820.0,2695.87,23.9926,,2165.86,1900.0,10.0,954.421,16.769,6074.0,122.0,4.11,,1.56,,,,1.14,,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2937,1,False,False,False -11417087,2938.01,,3,4,4,3,3,4,4,54.3,183.2,100.96,4,6,1,PC,PC,11.4932,0.006,,1,qlp,QLP,09:43:44.6,-25:32:39.88,-29.732,0.067,8.616,0.074,2459272.923559,0.0005248,4.942456,4.6e-06,2.504,0.085,18.097208,0.003796,16530.0,3.49659,12.1509,0.676713,139.422,957.0,75.0,234.45,2.342,5516.0,123.4,4.49,0.08,0.92,0.05,,,0.969,0.132409,"8,9,35",2021-06-04,2021-06-04,2023-02-01 00:00:00,found in faint-star QLP search,2938,1,False,False,False -5485318,2939.01,,3,4,3,3,3,4,4,23.5,29.0,317.0,1,0,1,PC,PC,12.6819,0.007,,1,qlp,QLP,09:59:02.28,-22:56:48.34,-6.284,0.059,-3.691,0.067,2459273.922515,0.0016128,4.8306667,1.41e-05,4.24,0.199,10.68173,0.003477,9790.0,3.20212,14.4419,0.830412,889.049,1521.0,31.0,841.049,27.3505,6567.0,131.4,4.26,0.09,1.44,0.08,,,1.36,0.217763,"9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2939,1,False,False,False -5224772,2940.01,,3,4,3,3,1,4,4,95.2,302.7,317.0,2,0,0,PC,PC,13.487,0.018,,1,qlp,QLP,09:29:19.2,-37:28:17.64,-14.851,3.047,22.151,3.048,2459301.079391,0.0012011,4.5991516,9.4e-06,3.113,0.098,25.285817,0.009189,23020.0,8.46337,,,195.841,1042.0,44.0,1080.4,,5262.9,252.4,,,,,,,,,"8,9,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2940,1,False,False,False -4729001,2941.01,,3,5,5,3,3,4,4,178.9,181.5,317.0,2,0,1,PC,APC,12.6858,0.006,,1,qlp,QLP,09:25:41.94,-41:45:46.14,,,,,2459304.287777,0.0006925,0.7127815,1.2e-06,1.154,0.096,29.16011,0.021918,26500.0,20.1871,16.3576,1.62054,1485.48,1729.0,31.0,483.964,,5625.4,268.8,,,0.98,0.09,,,,,"8,9,35,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search; odd-even,2941,1,False,False,False -3840990,2942.01,,3,4,3,3,3,4,4,16.4,41.5,107.54,0,0,1,PC,PC,12.9356,0.006,,1,qlp,QLP,09:19:16.76,-39:41:17.66,-6.897,0.026,-0.041,0.027,2459303.833626,0.0029723,3.525723,2.05e-05,4.582,0.323,5.147716,0.005106,4730.0,4.70306,12.6783,0.756149,1943.53,1849.0,18.0,1025.86,19.375,6442.0,131.4,4.02,0.09,1.85,0.09,,,1.3,0.206132,"8,9,35,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2942,1,False,False,False -3233861,2943.01,,3,4,3,3,1,4,4,122.1,177.9,124.57,4,0,0,PC,PC,13.2005,0.006,,1,qlp,QLP,09:15:19.13,-37:24:37.76,-25.963,0.026,25.546,0.032,2459279.092125,0.0015219,0.7123317,2.1e-06,0.752,0.255,14.284124,0.995579,13070.0,916.542,13.7901,,456.304,1287.0,11.0,383.85,2.7945,4728.0,123.0,4.34,,0.98,,,,0.76,,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2943,1,False,False,False -340700241,2944.01,,3,4,3,3,1,4,4,37.2,72.3,317.0,1,0,0,PC,PC,13.3106,0.006,,1,qlp,QLP,07:47:49.88,-56:45:51.39,-3.631,0.049,7.467,0.043,2459304.785669,0.0023425,7.7920268,3.16e-05,2.45,0.211,9.574859,2.619717,8780.0,2409.94,22.3222,,305.542,1164.0,20.0,927.97,20.821,6307.0,122.0,4.21,,1.45,,,,1.24,,"7,8,9,10,34,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2944,1,False,False,False -286152207,2945.01,,3,4,3,3,3,4,4,22.1,26.0,317.0,1,0,1,PC,PC,12.9512,0.007,,1,qlp,QLP,08:15:50.07,-51:07:51.39,-3.823,0.029,6.719,0.026,2459299.330191,0.0022889,3.2006677,1.41e-05,4.195,0.139,5.988031,0.002537,5500.0,2.33647,15.3648,0.707735,3373.51,2123.0,25.0,1152.65,21.0,7438.0,144.7,4.03,0.08,2.09,0.08,,,1.7,0.269277,"8,9,34,36",2021-06-04,2021-11-10,2023-01-10 00:00:00,found in faint-star QLP search,2945,1,False,False,False -302798365,2946.01,,3,4,3,3,3,4,4,41.0,141.6,78.97,2,0,1,PC,PC,12.3977,0.006,,1,qlp,QLP,09:02:23.26,-70:56:51.31,-17.267,0.025,19.212,0.025,2459331.56416,0.0003879,4.9186433,3.2e-06,1.849,0.041,21.757562,0.003578,19840.0,3.29516,10.544,0.896578,29.4413,648.0,91.0,171.017,0.381,4394.0,124.2,4.56,0.1,0.72,0.06,,,0.69,0.0807407,"9,10,11,12,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2946,1,False,False,False -374847873,2947.01,,5,5,5,5,5,5,5,24.9,79.3,55.58,0,0,0,EB,FP,12.5964,0.006,,1,qlp,QLP,10:04:15.56,-63:22:37.28,-15.039,3.081,-3.992,3.081,2459332.080551,0.0013192,2.0391741,4.9e-06,0.849,0.24,6.250081,0.033818,5740.0,31.1471,,,131.518,943.0,20.0,440.02,,5371.5,196.5,,,,,,,,,"9,10,11,36,37",2021-06-04,2021-10-05,2022-12-14 12:09:24,found in faint-star QLP search; TFOP FP; retired as EB,2947,1,False,False,False -357896777,2948.01,,3,4,3,3,1,4,4,28.7,33.8,317.0,1,0,0,PC,PC,13.175,0.101,,1,qlp,QLP,09:13:25.86,-62:26:47.16,,,,,2459328.794112,0.0012539,2.7557652,5.7e-06,1.889,0.117,16.222054,0.009491,14830.0,8.74131,14.7906,1.47778,420.126,1261.0,37.0,1335.32,,,,,,1.18,0.11,,,,,"9,10,11,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2948,1,False,False,False -357299852,2949.01,,3,4,3,3,1,4,4,35.2,94.1,115.86,3,0,0,PC,PC,13.2338,0.006,,1,qlp-s38-tois,QLP,09:07:42.15,-65:38:30.84,2.362,0.032,7.664,0.031,2459359.14632,0.0007174,2.8652288,4.7e-06,1.785,0.093,15.660139,0.005681,14320.0,5.23208,13.2096,,291.711,1151.0,41.0,645.262,6.3005,5945.0,122.0,4.42,,1.06,,,,1.09,,"9,11,36,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,2949,1,False,False,False -356206412,2950.01,,3,4,3,3,3,4,4,22.5,62.1,102.87,1,0,1,PC,PC,12.5781,0.006,,1,qlp-s38-tois,QLP,08:55:09.37,-65:34:21.6,0.645,0.029,-10.34,0.027,2459358.147763,0.0011121,3.2690486,6.1e-06,3.666,0.096,6.599578,0.001073,6060.0,0.987887,12.349,0.602598,1303.81,1674.0,42.0,773.248,9.097,6368.0,133.1,4.16,0.09,1.55,0.07,,,1.27,0.198264,"9,10,11,36,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,2950,1,False,False,False -304025075,2951.01,,3,4,4,3,1,4,4,,,317.0,1,0,0,PC,PC,13.417,0.006,,1,qlp,QLP,09:22:57.2,-68:49:53.51,-4.069,3.088,10.284,3.088,2459359.206011,0.0007549,3.029136,3.9e-06,2.829,0.314,20.263178,0.020956,18490.0,19.3013,,,,,75.0,,,,,,,,,,,,,"9,10,11,36,37,38",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2951,1,False,False,False -302527524,2952.01,,3,4,3,3,3,4,4,6.7,85.0,32.4,4,0,1,PC,PC,12.6359,0.007,,1,qlp-s38-tois,QLP,08:56:46.24,-68:30:37.63,-84.529,0.063,52.272,0.049,2459351.667704,0.0008614,10.7844934,1.74e-05,2.021,0.071,15.032459,0.00826,13750.0,7.60785,6.26037,0.241956,3.24982,374.0,21.0,88.6944,0.2284,3558.0,157.0,4.73,0.01,0.51,0.02,,,0.50723,0.0202988,"9,10,11,36,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,2952,1,False,False,False -469184909,2953.01,,3,4,3,3,3,4,4,,,57.51,2,0,1,PC,PC,12.4794,0.02,,1,qlp,QLP,09:54:08.25,-57:02:54.74,-8.872,0.055,4.692,0.06,2459331.16045,0.0013183,1.2926975,3.4e-06,2.592,0.121,7.036609,0.00332,6460.0,3.05799,,,,,33.0,1205.9,49.43,,,,,,,,,,,"9,10,36,37",2021-06-04,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search; slight depth aperture correlation,2953,1,False,False,False -464328419,2954.01,,1,4,1,3,3,4,4,,,317.0,2,0,1,PC,PC,12.3743,0.027,,1,qlp-s37-tois,QLP,10:23:21.91,-55:40:44.35,-6.481,0.063,1.968,0.06,2459323.567576,0.0006012,4.8401948,5.9e-06,3.546,0.143,29.215876,0.263703,26550.0,242.85,,,16322.4,3148.0,108.0,1968.35,152.28,12745.0,135.0,,,,,,,,,"9,10,36,37",2021-06-04,2023-01-24,2023-05-30 00:00:00,V-shaped; found in faint-star QLP search; no stellar radius; host star may be large given plx and teff which may mean Rp is too large to be planetary,2954,1,False,False,False -464326872,2955.01,,3,4,3,3,1,4,4,39.7,39.5,317.0,2,0,0,PC,PC,13.0882,0.009,,1,qlp,QLP,10:23:26.91,-55:56:08.72,-3.699,0.035,2.414,0.033,2459331.663991,0.001535,0.5542332,1.7e-06,1.366,0.198,4.78778,0.0076,4400.0,7.00011,16.3177,,13101.0,2980.0,23.0,1516.96,45.305,7366.0,122.0,3.89,,2.43,,,,1.68,,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search; slight depth aperture correlation,2955,1,False,False,False -463508231,2956.01,,3,4,4,3,3,4,4,33.1,115.9,84.15,3,0,1,PC,PC,12.445,0.006,,1,qlp,QLP,10:16:16.05,-55:42:45.42,14.455,0.047,-5.896,0.047,2459332.120551,0.0005419,4.127728,5e-06,1.411,0.093,16.177972,0.006142,14790.0,5.65666,11.0098,0.577559,81.2443,836.0,64.0,362.235,3.3685,5820.0,129.1,4.55,0.07,0.9,0.04,,,1.05,0.128027,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2956,1,False,False,False -463469906,2957.01,,3,4,3,3,1,4,4,44.3,44.9,317.0,1,0,0,PC,PC,13.5248,0.008,,1,qlp,QLP,10:15:07.1,-54:56:14.22,6.032,0.054,1.385,0.053,2458594.715692,0.0035146,1.5316308,0.000176,1.72,0.339,14.614208,0.03741,13370.0,34.4555,15.118,,1741.13,1799.0,16.0,888.14,25.2555,6650.0,122.0,4.38,,1.27,,,,1.4,,"9,10",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2957,1,False,False,False -463203560,2958.01,,3,4,3,3,3,4,4,26.1,115.6,29.55,0,0,1,PC,PC,10.6758,0.006,,1,qlp-s37-tois,QLP,10:13:00.08,-58:45:48.22,-27.328,0.048,15.688,0.047,2459329.816379,0.0012492,1.9905105,5.1e-06,2.62,0.285,2.467423,0.022325,2270.0,20.5618,5.94241,0.591461,8376.54,2665.0,49.0,206.3,1.174,6211.0,130.4,4.46,0.08,1.07,0.05,,,1.2,0.169806,"9,10,36,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,2958,1,False,False,False -462162963,2959.01,TIC 462162963.01,5,5,5,5,5,5,5,,,35.9,5,1,0,PC,FP,12.3935,0.009,,1,qlp,QLP,10:01:28.39,-59:51:06.16,-7.369,0.046,3.932,0.043,2458593.752907,0.0042958,1.3550447,0.0002258,1.945,0.376,4.035572,0.010673,3710.0,9.83036,,,67280.3,4486.0,14.0,1001.96,25.1445,14466.0,139.0,,,,,,,,,"9,10",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2959,1,False,False,False -462072242,2960.01,,3,4,3,3,1,4,4,44.0,63.4,317.0,0,0,0,PC,PC,13.0013,0.009,,1,qlp,QLP,10:01:45.49,-54:06:49.14,-11.118,0.087,6.892,0.082,2459332.140887,0.0035806,2.0916623,1.4e-05,3.274,0.683,5.988031,0.684931,5500.0,630.646,22.2405,,10586.0,2825.0,19.0,1421.21,92.24,6600.0,122.0,3.83,,2.36,,,,1.38,,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search; v-shaped,2960,1,False,False,False -446684383,2961.01,,3,4,3,3,3,4,4,30.3,42.5,317.0,2,0,1,PC,PC,12.2985,0.006,,1,qlp,QLP,10:24:31.11,-49:45:57.15,-2.331,0.072,-2.465,0.072,2459325.992412,0.0009075,4.6259138,7.8e-06,2.91,0.11,11.153315,0.002442,10220.0,2.24887,14.9419,0.730326,719.837,1443.0,57.0,763.001,23.745,7388.0,141.8,4.34,0.09,1.44,0.07,,,1.68,0.293917,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2961,1,False,False,False -444394183,2962.01,,3,4,3,3,3,4,4,12.1,50.8,72.99,0,0,1,PC,PC,12.131,0.02,,1,qlp,QLP,09:50:02.46,-55:27:05.77,,,,,2459326.444536,0.0022731,4.0211797,1.83e-05,4.198,0.203,3.806742,0.002453,3500.0,2.25891,16.4291,0.764497,409.938,1253.0,15.0,755.197,,4881.0,90.5,,,2.79,0.1,,,,,"9,10,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2962,1,False,False,False -441334829,2963.01,,3,4,3,3,3,4,4,24.0,89.5,100.86,0,0,1,PC,PC,12.5449,0.007,,1,qlp,QLP,09:40:36.22,-55:48:55.97,-4.066,0.039,5.484,0.041,2459329.591567,0.0026585,4.4433921,2.37e-05,3.414,0.457,7.058465,0.119238,6480.0,109.816,12.1784,1.48421,4015.1,2217.0,24.0,654.773,9.9795,7664.0,143.6,4.51,0.08,1.23,0.04,,,1.79,0.304931,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; Rp changed from ~22 Re to ~12 Re with Y3 data,2963,1,False,False,False -439512298,2964.01,,3,4,4,3,3,4,4,28.8,108.4,111.19,4,0,1,PC,PC,12.484,0.007,,1,qlp,QLP,09:34:30.33,-56:35:33.86,-4.365,0.047,-0.989,0.045,2459329.670307,0.0010564,3.8331282,8.8e-06,2.906,0.152,11.361755,0.003336,10410.0,3.07268,12.9506,0.479444,1782.41,1810.0,46.0,644.948,10.231,8408.0,163.9,4.57,0.07,1.24,0.04,,,2.08,0.31455,"9,10,36,37",2021-06-04,2021-11-10,2023-03-17 00:00:00,found in faint-star QLP search,2964,1,False,False,False -146841337,2965.01,,3,4,3,3,3,4,4,37.5,53.7,317.0,1,0,1,PC,PC,12.5853,0.006,,1,qlp,QLP,10:43:37.93,-47:47:25.68,-4.325,0.036,-1.458,0.036,2459324.019017,0.001403,4.2672965,1.05e-05,3.108,0.322,10.188431,0.011059,9340.0,10.186,18.7854,1.09746,1427.16,1712.0,50.0,920.771,20.34,6548.0,127.2,4.06,0.09,1.79,0.09,,,1.35,0.216799,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; very slight depth aperture correlation,2965,1,False,False,False -136504576,2966.01,,3,4,3,3,3,4,4,14.1,32.7,67.16,0,0,1,PC,PC,12.4016,0.006,,1,qlp,QLP,10:02:55.53,-48:37:42.21,-15.649,0.043,6.831,0.041,2458594.21547,0.0072755,1.5245307,0.0004255,2.066,0.383,1.966963,0.005845,1810.0,5.38386,10.2838,0.853106,1491.3,1731.0,13.0,852.718,20.6405,5698.0,131.9,3.67,0.08,2.44,0.14,,,1.01,0.130301,"9,10",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2966,1,False,False,False -103245940,2967.01,,5,5,5,5,5,5,5,41.6,120.6,121.93,1,0,0,PC,FP,13.0742,0.006,,1,qlp,QLP,10:26:23.08,-44:10:38.6,-1.629,0.027,2.988,0.027,2459301.699712,0.0015657,3.2517862,8e-06,4.373,0.19,20.064082,0.008939,18310.0,8.23287,13.6873,,2483.34,1966.0,48.0,512.984,4.5475,5824.0,122.0,4.53,,0.92,,,,1.05,,"9,10,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,2967,1,False,False,False -103183399,2968.01,,3,4,3,3,1,4,4,25.8,68.0,65.67,1,0,0,PC,PC,13.397,0.006,,1,qlp,QLP,10:26:07.96,-46:37:19.13,-0.143,2.91,-2.166,2.91,2459304.35095,0.0018086,0.7327757,2.2e-06,1.306,0.139,4.885933,0.006648,4490.0,6.12277,,,1664.1,1779.0,17.0,825.971,,5195.1,244.4,,,,,,,,,"9,10,36",2021-06-04,2021-11-05,2022-12-14 12:09:24,found in faint-star QLP search; slight depth aperture correlation,2968,1,False,False,False -36452991,2969.01,,3,4,4,3,3,4,4,128.8,268.1,102.88,7,0,1,PC,PC,11.9361,0.006,,1,qlp,QLP,10:00:15.03,-47:26:42.88,11.99,0.047,-0.638,0.047,2459303.300083,0.0002778,1.8237148,8e-07,1.322,0.038,25.174691,0.002903,22920.0,2.67419,12.3326,0.963108,131.939,944.0,142.0,163.996,0.6925,4581.0,128.1,4.51,0.1,0.78,0.06,,,0.72,0.081763,"9,10,36",2021-06-04,2021-11-10,2023-05-05 00:00:00,V-shaped; found in faint-star QLP search,2969,1,False,False,False -461136782,2970.01,,3,4,3,3,3,4,4,22.8,71.5,76.71,0,1,1,PC,PC,11.406,0.038,,1,qlp,QLP,11:02:00.16,-25:41:26.16,1.564,1.455,-28.189,0.371,2459299.827995,0.0015775,4.420983,1.28e-05,4.083,0.214,4.329852,0.001066,3980.0,0.981967,,,,,25.0,390.3626,50.5648,,,,,,,,,,,"9,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2970,1,False,False,False -453452264,2971.01,,3,4,3,3,1,4,4,11.9,47.3,59.32,1,0,0,PC,PC,13.0634,0.008,,1,qlp,QLP,11:18:35.56,-11:58:37.55,-14.5,0.09,14.141,0.059,2459301.075311,0.0030229,4.8405428,2.91e-05,2.139,0.247,7.659681,0.012465,7030.0,11.4807,8.96118,,159.338,989.0,14.0,622.713,18.7785,5875.0,122.0,4.4,,1.08,,,,1.06,,"9,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2971,1,False,False,False -448536355,2972.01,,3,4,3,3,1,4,4,28.7,66.0,115.08,1,0,0,PC,PC,13.562,0.007,,1,qlp,QLP,11:04:00.21,-30:10:19,-2.95,0.036,-4.772,0.038,2458563.518154,0.0021171,2.8371201,0.000629,2.102,0.199,12.62422,0.01118,11560.0,10.2969,13.1836,,271.99,1131.0,20.0,724.88,13.8085,5301.0,124.0,4.24,,1.2,,,,0.91,,9,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2972,1,False,False,False -437259571,2973.01,,3,4,3,3,1,4,4,,,84.8,3,0,0,PC,PC,13.113,0.018,,1,qlp,QLP,11:20:45.03,-20:47:09.1,-15.302,2.133,17.097,2.131,2458563.638612,0.0025002,2.7519326,0.0007183,2.411,0.734,11.131376,0.126643,10200.0,116.636,,,,,20.0,508.705,,,,,,,,,,,,9,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2973,1,False,False,False -437253811,2974.01,,3,4,3,3,1,4,4,39.3,26.9,317.0,2,0,0,PC,PC,13.0812,0.008,,1,qlp,QLP,11:19:41.2,-21:14:59.15,-18.649,0.042,4.837,0.033,2458567.86166,0.0032687,0.689421,0.0001702,1.233,0.257,3.89391,0.018221,3580.0,16.7824,16.3132,,1853.96,1828.0,14.0,1241.9,47.07,5270.0,122.0,,,2.6,,,,,,9,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2974,1,False,False,False -423393242,2975.01,,3,4,3,3,1,4,4,92.4,175.6,93.16,3,0,0,PC,PC,13.1221,0.007,,1,qlp,QLP,10:29:04.87,-20:55:45.37,-19.142,0.062,17.541,0.05,2458568.421663,0.0010669,0.4269642,3.15e-05,0.685,0.197,7.145894,0.182448,6560.0,168.027,9.75669,,2442.16,1958.0,29.0,481.558,7.971,5333.5,100.6,4.43,,0.96,,-0.0275274,0.085422,0.92,,9,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2975,1,False,False,False -413372087,2976.01,,3,4,3,3,1,4,4,30.3,79.3,129.91,4,0,0,PC,PC,13.2277,0.009,,1,qlp,QLP,10:43:44.84,-21:32:26.81,-25.942,0.051,4.933,0.043,2458561.493392,0.0029054,3.485031,0.0010128,1.784,0.28,11.756804,4.877317,10770.0,4482.1,21.3807,,658.671,1411.0,16.0,750.393,15.998,5941.0,122.0,4.33,,1.18,,,,1.09,,9,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2976,1,False,False,False -361343239,2977.01,,3,4,4,3,3,4,4,,,111.59,3,6,1,PC,PC,11.9383,0.007,,1,qlp,QLP,09:35:42.36,-60:21:26.91,,,,,2459331.527877,0.0004774,2.3505698,2.7e-06,2.768,0.132,12.239836,0.001883,11210.0,1.73464,12.9823,1.39342,703.632,1434.0,84.0,,,5356.0,293.1,,,1.22,0.13,,,,,"9,36,37",2021-06-04,2021-11-10,2023-05-07 00:00:00,found in faint-star QLP search,2977,1,False,False,False -315096343,2978.01,,3,4,3,3,3,4,4,10.1,34.7,47.27,0,2,1,PC,PC,11.6687,0.007,,1,qlp,QLP,09:40:38.63,-26:38:31.32,4.442,0.064,0.31,0.064,2459275.540633,0.0039272,4.3497551,2.83e-05,3.704,0.511,1.858198,0.002099,1710.0,1.93294,7.82395,0.492717,607.963,1383.0,17.0,547.599,12.3555,5667.3,224.6,4.35,2.0,1.88,0.1,,,1.02,0.131508,"8,9,35",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2978,1,False,False,False -311252710,2979.01,,3,4,3,3,1,4,4,59.3,152.5,317.0,1,0,0,PC,PC,13.5214,0.006,,1,qlp,QLP,10:07:32.56,-43:37:45.87,-4.622,2.966,4.764,2.966,2458560.436374,0.0014204,5.4916221,0.0011962,5.027,0.228,29.729058,0.014467,27010.0,13.3242,,,764.335,1464.0,46.0,1322.42,,6364.0,512.9,,,,,,,,,9,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2979,1,False,False,False -289931756,2980.01,,3,4,3,3,1,4,4,55.3,75.2,317.0,2,1,0,PC,PC,13.4767,0.008,,1,qlp,QLP,11:45:02.03,-12:24:42.02,-60.81,0.053,17.086,0.027,2459302.235646,0.0008694,3.5910692,5.4e-06,2.891,0.103,32.063747,0.013798,29100.0,12.7087,18.7998,,383.951,1233.0,52.0,729.185,16.0385,5736.0,124.0,4.38,,1.09,,,,1.02,,"9,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2980,1,False,False,False -287145649,2981.01,TIC 287145649.01,3,4,4,3,3,4,4,32.9,103.3,104.43,5,0,1,PC,PC,12.7533,0.01,,1,qlp,QLP,10:53:56.97,-25:31:28.56,-7.232,0.044,17.862,0.034,2459302.719029,0.0008958,3.6015056,6.2e-06,3.024,0.077,14.900363,0.003422,13630.0,3.15153,12.3972,0.59888,556.616,1353.0,50.0,527.789,7.0945,6055.0,134.4,4.46,0.08,1.03,0.05,,,1.13,0.14973,"9,36",2021-06-04,2021-11-10,2023-04-22 00:00:00,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),2981,1,False,False,False -211446495,2982.01,,3,4,4,3,1,4,4,9.6,66.1,30.9,3,0,0,PC,PC,13.4964,0.008,,1,qlp,QLP,11:03:12.54,-09:57:48.49,-9.298,0.133,-12.947,0.134,2459296.191341,0.0016881,4.8701613,1.8e-05,2.623,0.181,13.470344,0.010943,12330.0,10.0786,6.13443,,137.254,953.0,20.0,314.561,9.9995,5268.0,125.0,4.92,,0.55,,,,0.9,,"9,36",2021-06-04,2021-11-10,2023-01-11 00:00:00,found in faint-star QLP search,2982,1,False,False,False -168449943,2983.01,,3,4,4,3,1,4,4,57.1,69.5,317.0,4,0,0,PC,PC,13.5714,0.007,,1,qlp,QLP,11:07:21.84,-27:13:06.11,-4.016,0.046,-1.893,0.039,2458567.831511,0.0011361,3.4287311,0.0002998,2.3,0.104,37.838208,0.017624,34250.0,16.2322,16.9576,,180.283,1020.0,56.0,530.686,9.2715,5231.0,124.0,4.47,,0.91,,,,0.89,,9,2021-06-04,2021-06-04,2023-05-05 00:00:00,found in faint-star QLP search,2983,1,False,False,False -168405330,2984.01,,3,4,3,3,3,4,4,36.0,159.6,96.45,3,2,1,PC,PC,11.9316,0.007,,1,qlp,QLP,11:06:08.37,-25:00:53.38,24.824,0.054,-66.034,0.041,2459303.209992,0.0005482,9.162268,8.2e-06,2.067,0.149,22.31156,0.021224,20340.0,19.5479,11.8107,0.824162,34.4415,674.0,65.0,187.506,1.0795,4935.8,113.1,4.59,0.08,0.75,0.05,0.0629342,0.0592291,0.811,0.0942876,"9,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2984,1,False,False,False -168384845,2985.01,,3,4,3,3,3,4,4,11.6,31.8,100.02,0,0,1,PC,PC,12.9575,0.007,,1,qlp,QLP,11:05:55.17,-27:46:06.02,-8.782,0.043,3.373,0.034,2458563.068798,0.0050948,3.8996784,0.001763,4.668,0.45,3.719582,0.006888,3420.0,6.34411,12.1415,0.868678,1690.71,1786.0,12.0,1262.02,38.39,6382.0,128.6,3.94,0.09,2.01,0.11,,,1.28,0.189142,9,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2985,1,False,False,False -148497855,2986.01,,3,4,4,3,4,4,4,13.4,46.8,52.79,1,3,3,PC,PC,12.0682,0.007,,1,qlp,QLP,10:55:05.17,-06:28:42.43,-12.938,0.098,-4.731,0.095,2459301.580236,0.0023056,3.2783445,1.51e-05,3.657,0.324,3.414575,0.002294,3140.0,2.11311,8.32327,0.585173,1102.7,1605.0,21.0,563.149,24.717,5940.7,115.2,4.13,0.09,1.49,0.1,0.146,0.049,1.09,0.134184,"9,36",2021-06-04,2021-11-10,2023-06-28 00:00:00,found in faint-star QLP search,2986,1,False,False,False -141631253,2987.01,,3,4,3,3,3,4,4,11.4,65.7,19.85,0,0,1,PC,PC,10.8521,0.006,,1,spoc-s62-b0A,QLP,08:39:12.64,-44:22:12.19,-4.506,0.055,5.554,0.044,2459989.941693,0.0013410196,1.67039889886212,0.00017123065,1.472305152892,0.15708354,1.266179,0.124526,1165.51406552665,114.685905,4.4511621260145,1.0082768,3485.55063376134,1959.69100209837,9.3305,327.463,3.259,7051.0,133.5,4.42,0.09,1.26839995384216,0.0507437,,,1.56,0.276718,"9,61,62",2021-06-04,2023-06-28,2023-06-28 00:00:00,found in faint-star QLP search; centroid offset centered near other stars in spoc s61+s62,2987,1,False,False,False -105759569,2988.01,,3,4,3,3,3,4,4,15.3,48.7,46.03,0,0,1,PC,PC,12.426,0.006,,1,qlp,QLP,10:25:33.09,-37:24:27.56,-5.642,3.255,-12.316,3.254,2458567.409536,0.0033329,1.8861708,0.0005012,1.845,0.225,3.556175,0.007053,3270.0,6.49589,7.85122,,653.481,,14.0,441.41,,5564.2,,,,1.36,,0.208857,0.0738481,,,9,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2988,1,False,False,False -97825640,2989.01,,3,4,3,3,3,4,4,77.7,178.5,118.05,3,0,1,PC,PC,12.7103,0.006,,1,qlp,QLP,11:24:55.6,-27:03:44.5,-118.094,0.035,-15.536,0.03,2459302.224996,0.0003596,3.1228396,2.4e-06,2.18,0.061,30.901361,0.00359,28060.0,3.30633,13.4539,1.19502,86.7639,850.0,106.0,195.795,1.0065,4262.0,123.0,4.49,0.1,0.77,0.07,,,0.666,0.0811065,"9,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2989,1,False,False,False -73433128,2990.01,,3,4,3,3,3,4,4,23.2,30.2,317.0,0,2,1,PC,PC,12.023,0.006,,1,qlp,QLP,10:18:50.72,-41:11:38.42,-3.781,0.036,1.007,0.041,2459298.339468,0.0029621,7.4659746,4.92e-05,2.396,0.386,3.883014,0.420133,3570.0,386.882,15.9063,4.27322,553.011,1350.0,14.0,763.643,15.671,6439.0,125.7,3.97,0.09,1.95,0.09,,,1.3,0.210938,"9,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2990,1,False,False,False -49046332,2991.01,,3,4,3,3,3,4,4,17.4,75.6,49.77,1,1,1,PC,PC,12.7171,0.006,,1,qlp,QLP,10:57:26.23,-34:41:25.21,37.976,0.038,-66.111,0.032,2459304.800483,0.0016193,5.5809252,1.5e-05,2.545,0.169,11.767779,0.005627,10780.0,5.1831,8.10167,0.663302,50.6483,743.0,31.0,213.888,1.0185,4455.0,118.0,4.53,0.1,0.76,0.06,,,0.7,0.0834974,"9,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,2991,1,False,False,False -49045066,2992.01,TIC 49045066.01,3,4,4,3,3,4,4,34.2,87.0,109.69,1,4,1,PC,PC,11.9728,0.006,,1,qlp,QLP,10:57:15.98,-32:19:20.78,-10.001,0.053,14.593,0.054,2459305.044879,0.0009171,3.00782,5.3e-06,3.503,0.082,7.09125,0.000917,6510.0,0.844771,12.7824,0.667626,1104.67,1606.0,42.0,542.026,12.962,5999.1,118.1,4.11,0.08,1.54,0.08,0.0400724,0.0721122,1.11,0.143742,"9,36",2021-06-04,2021-11-10,2023-06-28 00:00:00,found in faint-star QLP search,2992,1,False,False,False -48768158,2993.01,,3,4,3,3,1,4,4,19.7,60.5,66.01,0,0,0,PC,PC,13.5586,0.019,,1,qlp,QLP,10:48:54.44,-32:25:11.83,6.242,2.216,-18.661,2.216,2458564.219716,0.0035342,2.3378096,0.0007971,2.307,0.308,7.49568,0.013242,6880.0,12.1962,,,,,15.0,608.631,,,,,,,,,,,,9,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2993,1,False,False,False -36718161,2994.01,,3,4,3,3,3,4,4,,,64.48,2,0,1,PC,PC,12.148,0.006,,1,qlp,QLP,10:03:01.66,-43:47:59.66,-5.487,0.047,3.359,0.048,2459303.302287,0.0012561,4.0257967,9.1e-06,1.945,0.106,8.053385,2.447193,7390.0,2251.41,,,3715.8,2175.0,31.0,3222.05,327.1,9045.0,1236.9,,,,,,,,,"9,36",2021-06-04,2021-11-05,2022-12-14 12:09:24,found in faint-star QLP search; V-shaped; Likely too large; No stellar radius,2994,1,False,False,True -36381058,2995.01,,3,4,3,3,3,4,4,52.9,57.9,317.0,0,0,1,PC,PC,12.796,0.006,,1,qlp,QLP,10:00:14.75,-44:00:58.77,-6.928,0.028,7.341,0.027,2458567.564911,0.0012705,1.6563817,0.0001593,3.032,0.187,15.307713,0.00727,14000.0,6.69588,16.3769,0.831298,3695.61,2172.0,59.0,779.544,10.5485,6504.0,127.3,4.28,0.09,1.38,0.06,,,1.33,0.206981,9,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2995,1,False,False,False -35855047,2996.01,,3,4,3,3,3,4,4,10.2,50.2,23.47,0,0,1,PC,PC,11.6828,0.006,,1,qlp,QLP,09:56:19.17,-46:37:28.31,-18.884,0.039,-20.707,0.038,2458568.332733,0.0049673,2.3607613,0.0009815,3.255,0.597,1.923456,0.005786,1770.0,5.32916,5.15115,0.387677,1959.23,1853.0,12.0,354.772,3.1075,5939.0,131.2,4.32,0.08,1.18,0.06,,,1.08,0.139426,9,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2996,1,False,False,False -35652085,2997.01,,3,4,3,3,3,4,4,33.3,31.9,317.0,1,0,1,PC,PC,12.3898,0.006,,1,qlp,QLP,09:54:54.01,-43:41:18.5,-17.532,0.036,8.053,0.038,2458566.542483,0.0027854,2.2054872,0.0004458,4.023,0.252,7.025681,0.004389,6450.0,4.04205,16.8389,0.920331,3486.91,2140.0,25.0,884.499,19.4875,6313.0,133.3,3.89,0.09,2.09,0.1,,,1.24,0.187342,9,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,2997,1,False,False,False -34737413,2998.01,,3,4,3,3,3,4,4,14.2,41.8,70.86,0,0,1,PC,PC,12.5382,0.006,,1,qlp,QLP,09:48:41.9,-46:04:50.07,-7.857,0.051,5.478,0.047,2459303.240519,0.0052206,1.5297119,1.46e-05,2.297,0.429,2.619782,0.006577,2410.0,6.05794,9.91839,0.763196,3456.41,2136.0,13.0,1019.27,33.476,6683.0,126.4,3.96,0.09,2.05,0.11,,,1.41,0.243847,"9,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,2998,1,False,False,False -34505005,2999.01,,5,5,5,5,5,5,5,33.0,48.7,317.0,1,0,1,PC,FP,12.9093,0.006,,1,qlp,QLP,09:47:41.16,-46:51:54.94,-6.538,0.025,8.742,0.025,2459302.434183,0.0011387,5.1627718,1.05e-05,3.139,0.114,20.882821,0.00914,19050.0,8.41852,15.0573,0.721584,437.179,1273.0,42.0,645.965,6.1775,6749.0,136.0,4.53,0.09,1.08,0.05,,,1.44,0.239396,"9,36",2021-06-04,2021-11-09,2023-03-25 12:02:49,found in faint-star QLP search,2999,1,False,False,False -23435610,3000.01,,3,4,4,3,3,4,4,49.6,74.6,317.0,2,0,1,PC,PC,12.7959,0.006,,1,qlp,QLP,11:12:47.09,-32:51:09.7,2.08,0.035,-5.926,0.028,2459296.646475,0.0006014,5.20807,6.7e-06,3.249,0.062,32.656597,0.00539,29630.0,4.96481,16.3192,0.792529,240.959,1097.0,88.0,468.285,4.3115,5836.5,111.3,4.51,0.07,0.94,0.04,-0.129111,0.0800967,1.05,0.130637,"9,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3000,1,False,False,False -468977648,3001.01,,3,4,3,3,1,4,4,31.6,37.8,317.0,0,0,0,PC,PC,13.0698,0.009,,1,qlp,QLP,09:35:46.9,-52:22:16.97,,,,,2459302.296976,0.0022395,2.090218,1.07e-05,3.329,0.585,8.917846,0.015335,8180.0,14.1244,19.2766,1.05728,3795.71,2186.0,24.0,1142.68,,6328.0,100.7,,,2.08,0.07,,,,,"9,10,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3001,1,False,False,False -402053027,3002.01,,3,4,3,3,1,4,4,,,317.0,1,0,0,PC,PC,13.2952,0.006,,1,qlp,QLP,09:05:34.02,-50:39:57.97,-7.195,3.108,-1.685,3.108,2459303.577592,0.0010361,7.7971071,1.53e-05,1.873,0.193,25.430298,0.01952,23150.0,17.9785,22.9819,1.02139,22.0881,603.0,34.0,,,4978.0,83.8,,,1.47,0.05,,,,,"8,9,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3002,1,False,False,True -400762242,3003.01,,3,4,3,3,3,4,4,10.7,41.8,40.48,0,0,1,PC,PC,11.9236,0.008,,1,qlp,QLP,08:58:18.94,-50:14:17.96,-9.799,0.049,5.347,0.054,2459304.779673,0.0036691,1.6224281,1.17e-05,2.013,0.345,1.358019,0.003951,1250.0,3.63941,7.12755,0.504966,3920.08,2204.0,12.0,703.242,15.9895,7517.0,147.6,4.08,0.08,1.98,0.08,,,1.73,0.286226,"8,9,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; noisy but strong BLS,3003,1,False,False,False -400395395,3004.01,,5,5,5,5,5,5,5,38.1,41.8,317.0,1,0,1,PC,FP,12.4564,0.007,,1,qlp,QLP,08:56:00.53,-50:19:42.06,-4.598,0.037,-0.368,0.033,2459303.809966,0.0015516,3.2891219,1.05e-05,2.948,0.467,8.830274,0.010085,8100.0,9.28822,15.1457,0.836322,2357.82,1941.0,33.0,668.659,9.7025,6947.0,134.3,4.19,0.09,1.64,0.07,,,1.52,0.269458,"8,9,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3004,1,False,False,False -386297468,3005.01,,3,4,3,3,3,4,4,10.6,41.2,45.45,0,0,1,PC,PC,12.3487,0.006,,1,qlp,QLP,09:16:45.68,-59:31:40.85,-9.527,0.044,5.574,0.049,2459329.676949,0.0032994,2.0958074,1.6e-05,2.992,0.761,2.554483,0.009541,2350.0,8.78714,7.63843,0.621552,4081.38,2226.0,19.0,768.845,15.0295,6793.0,133.3,4.2,0.09,1.6,0.07,,,1.46,0.246599,"9,10,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3005,1,False,False,False -386161311,3006.01,,3,4,3,3,3,4,4,49.8,90.5,317.0,4,2,1,PC,PC,11.9644,0.006,,1,qlp,QLP,09:16:49.04,-54:02:49.49,-10.444,0.05,-2.713,0.044,2459291.499032,0.0009576,8.61346,1.55e-05,2.349,0.289,14.031127,0.024635,12840.0,22.6895,20.6812,1.24041,172.513,1009.0,42.0,561.854,8.81,6595.0,129.7,4.17,0.09,1.6,0.07,,,1.38,0.239385,"9,10,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; large Rp for orbital period,3006,1,False,False,True -384034837,3007.01,,3,4,3,3,1,4,4,14.5,35.3,98.86,0,0,0,PC,PC,13.1623,0.006,,1,qlp,QLP,09:02:33.57,-56:00:46.08,2.757,0.033,1.823,0.033,2459331.090728,0.0043374,4.2768515,3.97e-05,4.586,0.536,5.442298,0.006315,5000.0,5.81623,12.027,,860.304,1508.0,18.0,888.503,13.413,5691.0,122.0,3.96,,1.73,,,,1.01,,"8,9,10,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3007,1,False,False,False -383666033,3008.01,,5,5,5,5,5,5,5,3.2,32.3,8.37,0,1,2,EB,FP,11.2123,0.006,,1,qlp,QLP,09:00:08.42,-56:04:09.28,3.789,0.044,-12.998,0.04,2459328.097691,0.0051639,3.9678136,4.34e-05,4.238,0.607,0.825473,0.001746,760.0,1.60833,2.81756,0.194007,1275.1,1664.0,11.0,263.513,1.5845,6138.0,132.3,4.48,0.08,1.03,0.05,,,1.16,0.152744,"8,9,10,35,36",2021-06-04,2021-11-09,2023-05-09 00:00:00,found in faint-star QLP search; retired as TFOP FP/NEB,3008,1,False,False,False -357634632,3009.01,,3,4,3,3,3,4,4,20.9,38.4,317.0,1,0,1,PC,PC,12.9119,0.006,,1,qlp,QLP,09:11:47.69,-60:37:28.94,-4.962,0.066,5.184,0.063,2459332.074941,0.0013343,3.365343,8.7e-06,3.352,0.129,8.392522,0.001963,7700.0,1.80776,16.7174,1.07963,5266.4,2373.0,31.0,1705.62,103.365,9582.0,187.8,4.3,0.08,1.83,0.11,,,2.44,0.329076,"9,10,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3009,1,False,False,False -357202877,3010.01,,3,4,4,3,3,4,4,44.9,77.6,317.0,5,0,1,PC,PC,11.9656,0.006,,1,qlp,QLP,09:07:46.53,-61:00:41.51,25.238,0.051,-19.247,0.045,2459318.200838,0.0005469,9.5537684,1.1e-05,3.414,0.303,20.008784,0.009499,18260.0,8.74917,18.0441,0.972963,125.806,933.0,106.0,421.094,4.8905,5816.0,127.1,4.25,0.07,1.27,0.06,,,1.05,0.128834,"9,10,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3010,1,False,False,False -356461227,3011.01,,3,4,3,3,1,4,4,44.7,55.3,317.0,1,0,0,PC,PC,13.2464,0.006,,1,qlp,QLP,08:57:47.14,-61:36:51.55,,,,,2459329.345564,0.0008349,1.8418712,3.1e-06,1.633,0.263,11.460504,0.0129,10500.0,11.8813,,,792.653,1478.0,45.0,1011.72,,5952.0,528.0,,,,,,,,,"9,10,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; significant odd-even; no stellar radius,3011,1,False,False,False -437560683,3012.01,,3,4,3,3,1,4,4,27.1,37.6,317.0,0,0,0,PC,PC,13.7563,0.006,,1,qlp,QLP,09:25:39.99,-54:50:28.45,,,,,2458593.931971,0.0049191,3.0918287,0.0004777,3.394,0.421,10.484383,0.022588,9610.0,20.8037,,,896.749,1524.0,12.0,1423.27,,5804.0,285.2,,,,,,,,,"9,10",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3012,1,False,False,False -383949205,3013.01,,3,4,3,3,3,4,4,8.2,19.6,92.26,0,0,1,PC,PC,12.7007,0.006,,1,qlp,QLP,09:02:18.26,-57:31:37.52,-14.989,0.027,11.881,0.024,2459322.275501,0.0058411,5.4722557,6.15e-05,6.366,0.574,1.956086,0.003629,1800.0,3.34215,11.5748,0.804936,1142.88,1619.0,12.0,1173.06,18.795,5847.0,130.7,3.57,0.08,2.8,0.14,,,1.06,0.135123,"8,9,10,35,36,37",2021-06-04,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search; low SNR; some depth aperture correlation,3013,1,False,False,False -383806208,3014.01,,3,4,3,3,1,4,4,10.6,33.5,56.74,0,0,0,PC,PC,13.2576,0.006,,1,qlp,QLP,09:00:57.25,-56:33:24.95,-4.014,0.03,11.826,0.025,2459330.933872,0.0054312,1.7946783,1.63e-05,3.306,0.71,3.109654,0.008277,2860.0,7.6233,8.71041,,4554.66,2288.0,14.0,1023.59,15.075,6351.0,122.0,4.09,,1.68,,,,1.26,,"8,9,10,35,36,37",2021-06-04,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search,3014,1,False,False,False -357801293,3015.01,,3,4,3,3,1,4,4,9.5,29.1,81.18,0,0,0,PC,PC,13.2438,0.006,,1,qlp,QLP,09:12:01.65,-61:27:49.01,-10.857,0.033,7.596,0.028,2459331.121369,0.0038641,4.2745762,3.18e-05,4.288,0.393,3.937496,0.006453,3620.0,5.94339,10.7453,,1157.67,1625.0,13.0,1146.27,21.26,6375.0,122.0,4.04,,1.79,,,,1.27,,"9,10,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3015,1,False,False,False -356200601,3016.01,,3,4,3,3,1,4,4,16.4,49.0,112.36,1,0,0,PC,PC,13.1847,0.006,,1,qlp,QLP,08:53:34.73,-62:47:00.42,3.948,0.048,-0.767,0.043,2459325.929305,0.0019723,5.1139634,1.71e-05,2.24,0.181,7.725288,0.0058,7090.0,5.34241,12.9912,,217.091,1069.0,25.0,930.905,19.9175,6451.0,122.0,4.21,,1.49,,,,1.31,,"9,10,11,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; slight depth aperture correlation,3016,1,False,False,True -122418622,3017.01,,3,4,3,3,3,4,4,48.3,66.1,317.0,1,0,1,PC,PC,12.5422,0.006,,1,qlp,QLP,08:54:48.53,-55:28:46.29,-13.427,0.043,7.195,0.041,2459300.699564,0.0009124,3.052529,5.7e-06,3.333,0.065,15.406821,0.003053,14090.0,2.81234,16.9171,0.764536,1477.03,1727.0,42.0,718.959,11.497,6802.0,139.1,4.32,0.09,1.38,0.06,,,1.46,0.254869,"8,10,35,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3017,1,False,False,False -45684223,3018.01,,5,5,5,5,5,5,5,8.0,43.9,40.53,1,0,0,PC,FP,12.7818,0.006,,1,qlp,QLP,08:44:34.6,-59:11:50.24,-8.075,0.03,11.78,0.029,2459323.340464,0.0021584,6.5832019,3e-05,3.135,0.262,5.747875,0.004379,5280.0,4.03314,7.13313,0.411681,168.677,1003.0,25.0,461.758,3.2305,5809.0,135.3,4.48,0.08,0.97,0.05,,,1.04,0.13442,"8,9,10,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3018,1,False,False,False -45296362,3019.01,,3,4,3,3,1,4,4,19.5,68.1,110.27,0,0,0,PC,PC,13.4834,0.006,,1,qlp,QLP,08:40:23.43,-58:58:39.64,-14.442,0.027,26.673,0.026,2459329.12965,0.0013619,5.9594909,1.7e-05,2.201,0.215,16.508633,0.01396,15090.0,12.8578,12.8042,,105.077,891.0,28.0,676.133,6.381,5950.0,122.0,4.47,,1.0,,,,1.09,,"8,9,10,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3019,1,False,False,False -45191604,3020.01,,3,4,3,3,1,4,4,30.8,47.8,317.0,1,0,0,PC,PC,13.4366,0.007,,1,qlp,QLP,08:40:37.25,-57:13:25.82,-4.547,0.116,6.094,0.139,2459332.14556,0.001389,3.0327366,9.4e-06,2.548,0.14,13.107639,0.006873,12000.0,6.33026,19.6858,,1111.89,1608.0,31.0,1498.36,140.2,7124.0,122.0,4.13,,1.79,,,,1.58,,"8,10,35,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3020,1,False,False,False -45054849,3021.01,,3,4,3,3,1,4,4,,,84.16,0,0,0,PC,PC,13.5566,0.006,,1,qlp,QLP,08:39:06.73,-56:15:41.94,-4.093,2.94,1.552,2.94,2458591.445831,0.0070425,11.2645152,0.0022978,5.778,0.626,11.032658,0.017288,10110.0,15.9223,,,205.818,1055.0,14.0,,,5869.8,175.4,,,,,,,,,"8,9,10",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3021,1,False,False,False -287721202,3022.01,,3,4,3,3,3,4,4,21.6,87.3,76.78,1,5,1,PC,PC,11.7834,0.006,,1,qlp,QLP,08:25:28.51,-73:15:32.3,-5.286,0.046,-0.613,0.059,2459375.196367,0.0005421,8.990904,0.000134,1.78,0.136,7.080321,0.010851,6500.0,9.99433,10.4018,0.685078,58.9074,771.0,56.0,282.631,2.4785,5354.0,132.9,4.35,0.08,1.07,0.06,,,0.93,0.116281,"3,6,9,10,11,12,13,29,30,33,36,37,38",2021-06-04,2021-11-05,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3022,1,False,False,False -454248975,3023.01,TIC 454248975.01,3,4,4,3,3,4,4,61.2,62.6,317.0,3,0,1,PC,PC,11.4848,0.006,,1,qlp-s38-tois,QLP,11:01:15.8,-72:21:24.14,-66.727,0.035,25.626,0.031,2459359.902982,0.0005424,3.9014904,3.9e-06,4.83,0.09,9.870645,0.000483,9050.0,0.445135,16.2567,0.848144,865.697,1511.0,137.0,389.916,3.171,5512.0,127.3,3.97,0.08,1.69,0.09,,,0.97,0.122246,"10,12,37,38",2021-06-04,2022-09-20,2023-03-03 00:00:00,found in faint-star QLP search,3023,1,False,False,False -452576848,3024.01,,3,4,3,3,1,4,4,28.0,71.4,108.29,2,0,0,PC,PC,13.5618,0.006,,1,qlp,QLP,09:30:07.49,-76:13:14.16,-4.71,0.031,-2.39,0.031,2458648.904865,0.003094,2.5076129,0.0001773,2.652,0.224,12.503399,0.01188,11450.0,10.9421,12.6896,,894.565,1523.0,20.0,777.224,9.8605,5996.0,122.0,4.35,,1.16,,,,1.11,,"10,11,12",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3024,1,False,False,False -452464529,3025.01,,3,4,3,3,1,4,4,15.2,41.0,90.16,0,0,0,PC,PC,13.4826,0.006,,1,qlp-s39-tois,QLP,09:16:10.78,-76:30:20.93,0.666,0.026,6.51,0.028,2459382.379918,0.0019285,3.6794732,1.42e-05,4.13,0.224,6.927335,0.002846,6360.0,2.62168,11.3997,,933.522,1539.0,27.0,888.822,10.9035,5823.0,122.0,4.15,,1.42,,,,1.05,,"10,11,12,37,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3025,1,False,False,False -449491381,3026.01,,3,4,3,3,3,4,4,36.4,44.8,317.0,1,0,3,PC,PC,12.8527,0.006,,1,qlp-s37-tois,QLP,10:42:50.68,-71:53:26.01,-8.445,0.028,3.301,0.026,2459323.785149,0.0011637,4.8206566,1.07e-05,4.468,0.184,19.433853,0.005772,17740.0,5.31579,15.025,0.75207,645.538,1404.0,62.0,585.662,5.588,6002.0,132.1,4.38,0.08,1.13,0.05,,,1.11,0.148118,"10,12,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3026,1,False,False,False -282091492,3027.01,,3,4,3,3,3,4,4,16.4,47.9,73.16,0,0,1,PC,PC,12.2231,0.006,,1,qlp-s39-tois,QLP,09:01:12.1,-75:05:17.22,-6.351,0.045,15.644,0.047,2459384.399471,0.0015759,3.3794034,1.07e-05,3.332,0.229,3.926599,0.001475,3610.0,1.35892,10.0889,0.540325,934.748,1540.0,30.0,652.69,10.298,6072.0,137.4,4.04,0.08,1.67,0.08,,,1.13,0.152593,"10,11,12,37,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3027,1,False,False,False -467955232,3028.01,,3,4,3,3,1,4,4,,,74.51,1,0,0,PC,PC,13.1106,0.006,,1,qlp-s38-tois,QLP,11:19:31.48,-64:54:05.9,-2.249,3.047,-2.932,3.047,2459359.563809,0.0024743,3.0525705,1.49e-05,4.811,0.241,9.552952,0.006949,8760.0,6.39984,,,837.822,1498.0,26.0,,,4817.8,155.5,,,,,,,,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3028,1,False,False,False -465540915,3029.01,,3,4,3,3,3,4,4,,,12.58,0,0,3,PC,PC,10.8257,0.227,,1,qlp,QLP,10:54:42.11,-60:20:52.03,-6.472,0.066,3.112,0.068,2458621.193871,0.0095316,2.0250957,0.0007397,3.624,0.694,1.173229,0.005407,1080.0,4.98008,,,428.526,1267.0,14.0,11925.2,3046.08,3600.5,257.0,,,,,,,,,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3029,1,False,False,False -465275307,3030.01,,3,4,3,3,3,4,4,96.0,214.2,317.0,3,0,1,PC,PC,12.804,0.006,,1,qlp-s38-tois,QLP,10:52:26.78,-64:31:24.39,-31.36,2.977,-10.533,2.977,2459360.048392,0.0010903,2.1510781,5.4e-06,2.355,0.108,18.538892,0.008911,16930.0,8.20735,,,773.155,1469.0,33.0,1107.81,,5769.0,124.0,,,,,,,,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3030,1,False,False,False -460686828,3031.01,,3,4,3,3,3,4,4,139.0,242.4,317.0,0,0,1,PC,PC,12.4404,0.006,,1,qlp,QLP,10:33:33.42,-61:43:00.09,-21.939,0.035,5.225,0.039,2459330.952451,0.0010654,3.9935853,8.8e-06,2.846,0.121,21.857261,2.935746,19930.0,2700.27,21.2425,5.51393,842.898,1501.0,64.0,353.147,2.747,5709.0,149.8,4.5,0.08,0.94,0.05,,,1.02,0.132038,"10,11,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; slight depth aperture correlation,3031,1,False,False,False -401283491,3032.01,,3,4,3,3,1,4,4,24.5,65.0,103.97,0,0,0,PC,PC,13.2727,0.006,,1,qlp,QLP,12:32:28.83,-50:18:51,-35.789,0.038,1.021,0.023,2458622.183163,0.0027816,3.4677103,0.0003593,2.234,0.242,10.912014,0.014405,10000.0,13.2678,12.3649,,273.655,1133.0,19.0,673.183,12.7715,5645.0,122.0,4.29,,1.18,,,,1.0,,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3032,1,False,False,False -398725538,3033.01,,3,5,5,3,1,4,4,75.2,127.2,317.0,1,0,0,PC,APC,13.5836,0.006,,1,qlp,QLP,10:47:48.74,-68:09:03.37,-15.242,0.03,-10.174,0.028,2458622.814434,0.00084,3.9982381,0.0001275,2.867,0.117,59.159448,0.0177,53030.0,16.3023,20.4596,,235.437,1091.0,82.0,549.708,5.342,5509.0,123.0,4.53,,0.88,,,,0.97,,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3033,1,False,False,False -391645374,3034.01,,3,4,3,3,1,4,4,54.2,49.2,317.0,0,0,0,PC,PC,13.2714,0.006,,1,qlp-s37-tois,QLP,10:47:13.71,-60:45:01.03,,,,,2459329.792314,0.0038264,1.4032876,8.4e-06,2.534,0.231,13.118628,4.752327,12010.0,4367.49,,,6122.38,2464.0,18.0,730.429,,5649.5,217.3,,,,,,,,,"10,11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; no stellar radius,3034,1,False,False,False -390444761,3035.01,,3,4,3,3,1,4,4,,,114.62,1,0,0,PC,PC,13.156,0.017,,1,qlp-s38-tois,QLP,10:43:04.59,-63:52:42.46,,,,,2459353.344487,0.0018057,5.2803048,1.96e-05,2.752,0.414,15.902498,0.069992,14540.0,64.4632,,,,,28.0,606.208,,,,,,,,,,,,"10,11,37,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3035,1,False,False,False -390157607,3036.01,,5,5,5,5,5,5,5,26.2,84.5,46.76,2,0,0,PC,FP,13.4748,0.006,,1,qlp,QLP,12:14:14.78,-56:46:23.71,-17.389,0.03,1.051,0.026,2458623.662171,0.0031622,0.3859142,3.66e-05,1.189,0.17,6.086292,0.016098,5590.0,14.8265,7.76491,,13435.8,2999.0,16.0,786.783,14.495,6721.0,122.0,4.55,,1.05,,,,1.43,,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3036,1,False,False,False -376209245,3037.01,,3,4,3,3,1,4,4,43.0,61.3,317.0,3,0,0,PC,PC,13.146,0.006,,1,qlp-s37-tois,QLP,11:56:44.32,-56:45:23.84,-15.208,0.028,2.336,0.023,2459328.686851,0.0016586,2.1357662,5.9e-06,3.272,0.143,14.548183,0.003535,13310.0,3.25562,18.0173,,4286.56,2254.0,36.0,1110.66,24.685,7428.0,122.0,4.3,,1.52,,,,1.7,,"10,11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3037,1,False,False,False -376036292,3038.01,,3,4,3,3,1,4,4,39.5,52.7,317.0,0,0,0,PC,PC,13.5635,0.006,,1,qlp,QLP,10:10:58.89,-64:07:02.12,-6.701,0.042,1.635,0.041,2458619.619846,0.0043887,2.968003,0.0004557,3.169,0.922,14.185118,0.164067,12980.0,151.1,19.5763,,1724.43,1795.0,18.0,1134.31,31.8,6185.0,122.0,4.11,,1.59,,,,1.18,,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3038,1,False,False,False -373033374,3039.01,,3,4,3,3,3,4,4,50.0,54.1,317.0,3,0,1,PC,PC,12.4816,0.006,,1,qlp-s38-tois,QLP,10:12:28.98,-67:15:19.95,-22.099,0.034,7.47,0.039,2459357.446143,0.0005694,3.412893,3.8e-06,2.6,0.068,17.468119,0.00395,15960.0,3.63826,14.5305,0.782831,351.311,1206.0,91.0,455.237,3.8555,5691.0,131.4,4.33,0.08,1.13,0.06,,,1.01,0.123938,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3039,1,False,False,False -372596795,3040.01,TIC 372596795.01,3,4,3,3,3,4,4,46.4,125.6,124.74,2,0,1,PC,PC,12.1787,0.006,,1,qlp-s38-tois,QLP,10:06:00.39,-66:53:52.81,-29.865,0.037,15.659,0.034,2459359.718789,0.0005092,3.5366051,4e-06,2.587,0.083,13.83317,0.002048,12660.0,1.88652,13.8209,0.656451,423.46,1263.0,93.0,457.568,4.2245,6026.0,128.6,4.34,0.08,1.19,0.05,,,1.12,0.147379,"10,11,36,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3040,1,False,False,False -371864043,3041.01,TIC 371864043.01,3,4,3,3,3,4,4,58.2,62.9,317.0,3,0,1,PC,PC,11.2553,0.006,,1,qlp-s38-tois,QLP,09:57:17.94,-68:46:44.78,-25.283,0.041,13.962,0.045,2459359.135206,0.0003594,2.9599541,2.5e-06,3.523,0.056,7.834643,0.000488,7190.0,0.449795,15.9636,0.7688,1361.35,1692.0,140.0,484.97,5.947,6267.7,120.8,4.0,0.09,1.84,0.09,0.069803,0.0838621,1.22,0.179806,"10,11,36,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3041,1,False,False,False -361219651,3042.01,,3,4,3,3,3,4,4,19.2,55.3,111.76,0,0,1,PC,PC,12.7296,0.006,,1,qlp-s38-tois,QLP,09:35:41,-64:52:34,-4.025,2.308,3.181,2.309,2459356.477444,0.002208,2.7559464,1.18e-05,3.255,0.26,4.493376,0.003591,4130.0,3.30733,,,1455.77,1720.0,26.0,1084.92,,6277.0,504.8,,,,,,,,,"9,10,11,36,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3042,1,False,False,False -360706000,3043.01,,3,4,3,3,1,4,4,21.1,18.6,317.0,0,0,0,PC,PC,13.3257,0.006,,1,qlp-s38-tois,QLP,09:30:20.37,-65:13:03.84,-2.127,0.027,3.15,0.027,2459357.129097,0.0021822,2.3725483,1.08e-05,1.543,0.178,5.45321,0.007576,5010.0,6.97771,14.8302,,368.442,1220.0,18.0,1213.32,20.41,6019.0,122.0,3.85,,2.08,,,,1.11,,"9,10,11,36,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3043,1,False,False,False -357538688,3044.01,,3,4,3,3,3,4,4,9.5,30.2,97.68,0,0,1,PC,PC,11.5088,0.006,,1,qlp,QLP,09:10:11.78,-63:24:23.79,-4.986,0.047,6.223,0.048,2459315.913002,0.0027138,13.2681095,7.65e-05,3.554,0.46,2.325965,0.002925,2140.0,2.69413,11.9718,0.71923,91.8511,862.0,22.0,737.306,13.071,6364.0,135.5,3.75,0.09,2.48,0.12,,,1.27,0.198641,"9,10,11,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3044,1,False,False,False -344568128,3045.01,,3,4,3,3,3,4,4,52.9,80.3,317.0,7,0,1,PC,PC,11.8172,0.006,,1,qlp-s38-tois,QLP,10:24:52.09,-69:17:24.47,-10.751,0.043,4.616,0.045,2459356.117814,0.0007751,2.3304358,3.6e-06,3.528,0.058,10.166511,0.001065,9320.0,0.981181,17.6763,0.694274,5011.25,2343.0,55.0,835.785,19.5215,7763.0,136.3,4.21,0.08,1.77,0.07,,,1.83,0.292297,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3045,1,False,False,False -323966987,3046.01,,3,4,3,3,1,4,4,44.3,62.2,317.0,0,0,0,PC,PC,13.1849,0.006,,1,qlp-s38-tois,QLP,11:47:42.76,-60:04:07.94,-14.326,0.025,1.81,0.022,2459357.033335,0.0020272,4.1343989,1.46e-05,3.051,0.143,20.075142,0.010395,18320.0,9.57399,18.5459,,503.511,1319.0,25.0,803.709,10.467,6320.0,122.0,4.27,,1.35,,,,1.25,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3046,1,False,False,False -316652224,3047.01,,3,4,3,3,1,4,4,24.9,35.7,317.0,1,0,0,PC,PC,13.1043,0.007,,1,qlp-s38-tois,QLP,11:27:49.55,-61:31:52.4,-7.767,0.029,4.102,0.025,2459355.467947,0.0023595,2.7020875,1.3e-05,3.116,0.252,10.955883,0.010305,10040.0,9.49101,15.6063,,3103.65,2079.0,19.0,1270.07,30.23,7798.0,122.0,4.31,,1.57,,,,1.85,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3047,1,False,False,False -304426002,3048.01,,3,4,4,3,3,4,4,,,317.0,2,0,1,PC,PC,12.3662,0.03,,1,qlp-s38-tois,QLP,11:51:11.07,-65:19:00.59,-6.652,0.038,0.695,0.039,2459358.750411,0.0008343,5.7672677,1.02e-05,4.173,0.253,32.555901,0.016502,29540.0,15.1984,,,,,91.0,4849.87,592.595,,,,,,,,,,,"10,11,37,38",2021-06-04,2022-10-04,2023-03-25 00:00:00,found in faint-star QLP search,3048,1,False,False,False -303867090,3049.01,,5,5,5,5,5,5,5,26.4,78.8,49.35,0,0,0,EB,FP,12.4092,0.006,,1,qlp,QLP,09:20:52.78,-69:47:30.05,14.567,3.09,-0.971,3.09,2459359.446834,0.0006272,1.3168344,1.8e-06,0.733,0.124,3.95929,0.005141,3640.0,4.73463,,,184.682,1027.0,27.0,459.056,,5211.7,201.7,,,,,,,,,"9,10,11,36,37",2021-06-04,2021-10-05,2022-12-14 12:09:24,found in faint-star QLP search; TFOP FP; retired as EB,3049,1,False,False,False -302003748,3050.01,,3,4,3,3,3,4,4,22.7,23.9,317.0,1,0,1,PC,PC,12.7985,0.006,,1,qlp-s38-tois,QLP,08:45:54.16,-67:24:42.15,-9.072,0.035,-2.504,0.031,2459356.100872,0.0014661,5.939725,1.44e-05,1.481,0.385,7.189611,0.029211,6600.0,26.9044,14.4394,1.15766,76.1581,822.0,24.0,690.712,9.1505,5568.0,133.1,4.05,0.08,1.55,0.08,,,0.98,0.126502,"5,9,10,11,36,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3050,1,False,False,False -288224503,3051.01,,3,4,3,3,3,4,4,16.6,45.5,88.91,0,0,1,PC,PC,12.077,0.006,,1,qlp-s37-tois,QLP,12:29:15.63,-51:00:14.11,-6.082,0.059,-0.418,0.041,2459327.160731,0.0030667,2.9489639,1.49e-05,2.278,0.284,2.968113,0.004667,2730.0,4.29808,11.3327,0.836216,779.001,1471.0,1000.0,851.976,39.17,6506.0,132.5,3.9,0.1,2.15,0.13,,,1.33,0.215007,"10,11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3051,1,False,False,False -287584141,3052.01,,3,4,3,3,3,4,4,19.6,55.0,107.17,0,0,1,PC,PC,12.5285,0.008,,1,qlp-s37-tois,QLP,12:18:27.06,-56:00:07.66,2.493,0.059,-4.646,0.05,2459330.914728,0.0035378,2.3097953,1.28e-05,3.185,0.346,4.351654,0.003883,4000.0,3.57679,12.6197,0.809499,3845.9,2193.0,19.0,1049.05,48.37,7300.0,141.0,4.05,0.09,2.01,0.11,,,1.65,0.261865,"10,11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3052,1,False,False,False -269859655,3053.01,TIC 269859655.01,3,4,4,3,3,4,4,59.4,144.0,121.49,2,0,1,PC,PC,12.4041,0.006,,1,qlp-s38-tois,QLP,09:54:17.57,-64:17:48.85,-38.483,0.036,4.688,0.032,2459358.507515,0.0003982,2.9919962,2.3e-06,2.614,0.045,18.803989,0.00127,17170.0,1.16946,13.6621,0.858737,329.849,1187.0,124.0,337.627,2.184,5247.0,138.0,4.39,0.09,1.01,0.06,,,0.9,0.10898,"9,10,11,36,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3053,1,False,False,False -267712001,3054.01,,3,4,3,3,3,4,4,62.7,88.4,317.0,3,0,1,PC,PC,12.8798,0.006,,1,qlp-s37-tois,QLP,11:45:09.98,-55:29:55.63,-14.056,3.007,-19.262,3.007,2459330.02963,0.0008916,2.8281656,4.5e-06,3.15,0.068,24.35271,0.003147,22180.0,2.89894,17.6399,2.30602,1162.44,1654.0,49.0,718.133,,6412.2,432.4,,,1.16,0.15,,,,,"10,11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3054,1,False,False,False -160522555,3055.01,,3,4,3,3,3,4,4,60.7,164.4,86.68,1,0,1,PC,PC,12.3858,0.006,,1,qlp,QLP,12:37:53.69,-49:06:54.67,-19.22,0.062,-3.235,0.055,2458621.988687,0.0021657,1.3071566,0.0001038,1.108,0.264,3.37101,2.267549,3100.0,2086.31,11.1657,4.85985,2913.52,2046.0,12.0,405.819,11.5735,5958.0,130.0,4.51,0.08,0.96,0.05,,,1.09,0.138814,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3055,1,False,False,False -67798337,3056.01,,3,4,3,3,1,4,4,65.8,105.7,317.0,3,0,0,PC,PC,13.2765,0.007,,1,qlp-s38-tois,QLP,12:22:39.48,-58:25:44.79,-8.477,0.029,-0.463,0.026,2459357.557317,0.0011793,1.8092906,3.9e-06,1.983,0.122,17.324694,0.008099,15830.0,7.45939,23.2306,,1647.22,1774.0,31.0,1181.19,28.625,6905.0,122.0,4.12,,1.77,,,,1.5,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3056,1,False,False,False -67622702,3057.01,,3,5,5,3,1,4,4,71.3,74.6,317.0,1,0,0,PC,APC,13.4444,0.006,,1,qlp-s37-tois,QLP,12:09:03.32,-55:23:40.34,-9.067,0.045,-1.21,0.035,2459332.096631,0.0015455,0.58007,1.5e-06,1.338,0.155,17.865396,0.020664,16320.0,19.0318,16.4382,,7501.75,2592.0,31.0,1034.65,32.65,6875.0,122.0,4.37,,1.33,,,,1.49,,"10,11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,V-shaped; found in faint-star QLP search,3057,1,False,False,False -464711858,3058.01,,3,4,3,3,3,4,4,60.3,76.1,317.0,0,0,2,PC,PC,12.5068,0.006,,1,qlp,QLP,10:27:46.44,-56:45:37.56,-26.5,0.04,12.1,0.04,2459330.472471,0.0041545,2.3483946,1.91e-05,2.375,0.443,3.185877,1.608123,2930.0,1480.04,19.5614,7.77792,5427.95,2391.0,12.0,810.583,15.4985,6155.0,129.1,3.98,0.08,1.82,0.09,,,1.17,0.159701,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search; Rp updated to ~19 Re with tic8,3058,1,False,False,True -464067218,3059.01,,3,4,3,3,3,4,4,,,25.93,0,0,3,PC,PC,11.2012,0.01,,1,qlp,QLP,10:21:13.81,-58:32:13.24,,,,,2458594.925952,0.0058089,1.3933698,0.0003109,2.769,0.493,3.360119,0.009786,3090.0,9.01304,,,363.662,1216.0,17.0,,,3301.0,51.7,,,,,,,,,"9,10",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3059,1,False,False,False -463681005,3060.01,,3,4,3,3,1,4,4,27.1,58.1,93.01,0,0,0,PC,PC,13.5552,0.006,,1,qlp,QLP,10:18:03.31,-56:47:16.36,-7.63,0.038,3.457,0.034,2458595.161679,0.0044591,0.5465382,9.43e-05,1.635,0.361,5.464122,0.025209,5020.0,23.2181,11.6241,,9354.81,2739.0,12.0,1298.66,36.655,6091.0,122.0,4.05,,1.66,,,,1.14,,"9,10",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; slight depth aperture correlation; possibly SV,3060,1,False,False,False -463590116,3061.01,,3,4,3,3,1,4,4,,,317.0,0,0,0,PC,PC,13.4909,0.043,,1,qlp,QLP,10:17:18.78,-58:16:37.61,-6.367,0.034,1.854,0.033,2458595.289957,0.0039222,1.3180642,0.0001931,1.463,0.256,7.003825,0.024033,6430.0,22.1352,,,1134.43,1616.0,13.0,2578.83,134.035,6040.0,453.9,,,,,,,,,"9,10",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3061,1,False,False,False -463343283,3062.01,,3,4,3,3,1,4,4,19.8,57.5,108.21,0,0,0,PC,PC,13.5173,0.007,,1,qlp,QLP,10:14:41.67,-55:22:45.68,-24.318,0.038,8.294,0.037,2458594.558917,0.0118755,4.867001,0.0022421,4.543,1.533,7.867451,1.051322,7220.0,967.835,12.6884,,2253.86,1919.0,11.0,774.109,15.3715,6137.0,122.0,4.34,,1.21,,,,1.16,,"9,10",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3062,1,False,False,False -463103749,3063.01,,3,4,3,3,3,4,4,,,317.0,1,0,1,PC,PC,12.5954,0.026,,1,qlp,QLP,10:12:27.53,-58:04:52.29,-8.464,0.061,4.947,0.049,2458591.899863,0.0069983,1.9503727,0.0005353,3.06,0.494,5.54051,0.017904,5090.0,16.4899,,,,,11.0,1411.83,73.315,,,,,,,,,,,"9,10",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3063,1,False,False,False -463070290,3064.01,,3,4,3,3,3,4,4,,,13.17,0,0,3,PC,PC,10.4321,0.029,,1,qlp-s64-ffi,QLP,10:11:58.11,-59:45:13.35,-5.818,0.135,2.821,0.122,2460067.257704,0.0010318,0.6771668,1e-06,1.4,0.16,1.189533,0.057186,1095.0,52.669,,,328.225,1185.0,28.0,5724.18,2093.32,3194.0,122.0,,,,,,,,,"9,10,36,37,63,64",2021-06-04,2023-06-28,2023-06-28 00:00:00,found in faint-star QLP search; likely red giant host which would make planet impossible at alerted period,3064,1,False,False,True -462135459,3065.01,,3,4,3,3,1,4,4,21.4,80.8,87.16,2,0,0,PC,PC,13.3906,0.01,,1,qlp,QLP,10:01:33.06,-59:20:22.12,-12.641,0.034,8.185,0.033,2459330.553847,0.0022569,1.6995805,7.3e-06,2.305,0.281,7.342635,0.009854,6740.0,9.07615,11.1546,,10926.7,2848.0,19.0,1000.8,19.162,9626.0,125.0,4.56,,1.35,,,,2.45,,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3065,1,False,False,False -461968320,3066.01,,3,4,4,3,3,4,4,15.0,76.8,69.07,5,0,1,PC,PC,11.5622,0.006,,1,qlp,QLP,09:59:45.94,-56:04:40.34,2.287,0.049,-0.54,0.051,2459310.392373,0.0013166,12.2027867,3.53e-05,2.428,0.166,7.703419,0.004539,7070.0,4.18084,9.74784,0.48528,44.6632,720.0,31.0,337.489,3.434,6454.0,131.7,4.45,0.08,1.13,0.05,,,1.31,0.199572,"9,10,36,37",2021-06-04,2021-11-10,2023-07-07 00:00:00,found in faint-star QLP search; possible odd-even,3066,1,False,False,False -459157691,3067.01,,3,5,5,3,3,4,4,19.9,40.3,317.0,2,0,1,PC,APC,11.686,0.006,,1,qlp,QLP,10:47:47.84,-59:01:59.45,-7.222,0.048,0.753,0.047,2459317.659383,0.0021459,7.4365725,4.21e-05,2.774,0.87,5.464122,0.021836,5020.0,20.1115,17.5053,1.39843,1178.73,1632.0,21.0,1269.3,49.52,9230.0,175.8,4.09,0.07,2.29,0.11,,,2.34,0.304562,"10,36,37",2021-06-04,2021-11-10,2023-04-09 12:02:49,V-shaped; found in faint-star QLP search,3067,1,False,False,False -458995583,3068.01,,3,4,3,3,3,4,4,115.0,253.6,317.0,3,0,1,PC,PC,12.7752,0.006,,1,qlp,QLP,10:45:39.08,-58:08:00.16,-6.089,3.031,2.921,3.251,2459331.451714,0.0006209,1.5959199,2.7e-06,1.539,0.24,22.732788,0.023188,20720.0,21.3567,,,1503.15,1734.0,62.0,1180.26,,6809.2,440.0,,,,,,,,,"10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; may be too large depending on stellar radius,3068,1,False,False,False -457268255,3069.01,,3,4,3,3,3,4,4,18.4,83.3,48.96,0,0,1,PC,PC,11.4573,0.006,,1,qlp,QLP,10:35:46.03,-50:29:55.09,-7.034,0.044,13.281,0.044,2459303.646732,0.0013717,3.8277062,8.3e-06,0.899,0.076,3.926599,0.006682,3610.0,6.15439,7.97984,0.477344,69.9284,805.0,18.0,367.188,3.804,6610.0,128.0,4.44,0.09,1.18,0.05,,,1.38,0.233459,"9,10,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3069,1,False,False,False -452049244,3070.01,,3,4,3,3,1,4,4,50.1,56.1,317.0,0,0,0,PC,PC,13.3727,0.007,,1,qlp-s37-tois,QLP,11:33:35.79,-56:42:08.66,-0.381,0.043,-1.144,0.036,2459332.070023,0.0020272,0.6587178,2.5e-06,1.576,0.239,7.637813,0.01842,7010.0,16.9654,20.2415,,8468.98,2672.0,20.0,1689.05,88.455,6520.0,122.0,3.8,,2.41,,,,1.34,,"10,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3070,1,False,False,False -452006073,3071.01,,3,4,4,3,3,4,4,19.1,68.6,40.44,1,0,1,PC,PC,11.8706,0.006,,1,qlp-s37-tois,QLP,11:33:06.97,-56:30:12.19,-3.356,0.053,5.027,0.041,2459331.967282,0.0016947,1.2669382,4.4e-06,1.93,0.206,2.804819,0.002381,2580.0,2.19328,7.13535,0.405796,2579.61,1985.0,19.0,485.219,8.8845,6296.0,128.8,4.26,0.09,1.36,0.06,,,1.23,0.188734,"10,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3071,1,False,False,False -451084885,3072.01,,3,4,3,3,1,4,4,22.3,25.3,317.0,0,0,0,PC,PC,13.2671,0.007,,1,qlp-s37-tois,QLP,11:22:13.27,-55:31:44.07,-7.424,0.03,3.087,0.027,2459329.822031,0.0033368,2.9828061,2.17e-05,4.28,0.407,7.97682,0.008828,7320.0,8.13117,15.4283,,3112.84,2080.0,17.0,1213.37,29.055,6879.0,122.0,4.09,,1.81,,,,1.49,,"10,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3072,1,False,False,False -448744179,3073.01,,3,4,4,3,1,4,4,34.8,89.0,106.95,3,0,0,PC,PC,13.0695,0.006,,1,qlp-s37-tois,QLP,12:09:21.44,-32:53:12.05,-3.931,0.034,-9.254,0.016,2459328.306157,0.0008483,3.1420872,5.6e-06,1.884,0.104,14.306126,0.006683,13090.0,6.15508,12.6134,,185.786,1028.0,39.0,511.362,6.4525,5417.4,68.5,4.37,,1.05,,0.497744,0.0816284,0.94,,"10,37",2021-06-04,2023-01-24,2023-05-04 00:00:00,found in faint-star QLP search,3073,1,False,False,True -447976172,3074.01,,3,4,3,3,1,4,4,11.6,45.5,52.55,0,0,0,PC,PC,13.325,0.009,,1,qlp,QLP,10:31:39.26,-48:59:38.68,,,,,2459327.920394,0.0058297,5.3583725,4.56e-05,4.916,0.409,5.442298,0.005318,5000.0,4.8982,,,,,12.0,481.009,,,,,,,,,,,,"9,10,36,37",2021-06-04,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search; slight depth aperture correlation; no stellar parameters,3074,1,False,False,False -447891218,3075.01,,3,4,3,3,3,4,4,13.0,36.3,58.75,0,0,1,PC,PC,12.9687,0.006,,1,qlp,QLP,10:31:57.67,-52:10:44.91,-18.238,0.028,8.167,0.027,2458592.293666,0.0078151,1.8026674,0.0004948,1.958,0.426,3.262104,0.018417,3000.0,16.9626,9.51823,0.896739,1141.17,1619.0,9.0,871.063,13.4085,5982.0,126.0,4.01,0.08,1.72,0.08,,,1.1,0.141572,"9,10",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3075,1,False,False,False -447593267,3076.01,,1,4,1,3,3,4,4,,,317.0,3,0,1,PC,PC,11.8468,0.012,,1,qlp-s37-tois,QLP,10:29:35.82,-53:39:31.92,-7.297,0.059,2.873,0.059,2459331.762318,0.0010389,7.8595931,1.91e-05,1.902,0.25,20.307427,0.794634,18530.0,731.617,,,3285.57,2109.0,27.0,2138.77,156.91,14677.0,166.0,,,,,,,,,"9,10,36,37",2021-06-04,2023-01-24,2023-05-30 00:00:00,found in faint-star QLP search; no stellar radius,3076,1,False,False,False -443341002,3077.01,,3,4,3,3,3,4,4,15.6,48.8,122.51,1,0,1,PC,PC,12.3984,0.011,,1,qlp,QLP,09:47:41.82,-56:59:23.14,-8.457,0.059,6.835,0.057,2459325.080291,0.0041764,6.3599636,4.42e-05,5.479,0.447,4.78778,0.003712,4400.0,3.41907,13.6678,0.722244,1755.17,1803.0,11.0,901.32,29.1015,7689.0,154.2,4.06,0.08,2.07,0.09,,,1.8,0.295465,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3077,1,False,False,False -443042089,3078.01,,3,4,3,3,3,4,4,29.0,77.8,80.03,0,0,1,PC,PC,12.7683,0.008,,1,qlp,QLP,09:46:13.42,-56:17:57.79,-11.079,0.033,5.598,0.029,2459331.634279,0.0016539,0.5496848,1.9e-06,0.82,0.159,3.109654,0.018502,2860.0,17.0406,10.6252,0.894043,4902.04,2331.0,15.0,921.264,16.8725,7433.0,140.0,4.14,0.08,1.84,0.07,,,1.7,0.282811,"9,10,36,37",2021-06-04,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search; possible odd-even,3078,1,False,False,False -441444262,3079.01,,3,4,3,3,1,4,4,37.7,57.5,317.0,0,0,0,PC,PC,13.6374,0.015,,1,qlp,QLP,09:41:13.51,-54:20:56.87,,,,,2458592.284119,0.004682,1.9906183,0.0003803,3.125,0.803,8.075261,1.114396,7410.0,1025.87,,,,,18.0,1508.11,,,,,,,,,,,,"9,10",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3079,1,False,False,False -439926641,3080.01,,3,4,3,3,1,4,4,24.3,33.8,317.0,0,0,0,PC,PC,13.2159,0.007,,1,qlp,QLP,09:35:22.85,-57:51:53.47,-10.244,0.028,5.19,0.028,2459331.47792,0.0019997,4.5744909,1.62e-05,4.534,0.161,9.695355,0.003437,8890.0,3.16568,16.8715,,1443.49,1717.0,23.0,1068.84,17.445,6993.0,122.0,4.16,,1.7,,,,1.54,,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3080,1,False,False,False -432467894,3081.01,,3,4,3,3,1,4,4,21.7,20.3,317.0,0,0,0,PC,PC,13.263,0.007,,1,qlp,QLP,09:46:09.54,-49:34:38.36,-0.325,0.033,-2.675,0.033,2459301.966886,0.0078164,3.4365075,3.88e-05,3.353,0.459,4.798686,0.011663,4410.0,10.7418,17.7367,,575.941,1364.0,9.0,1196.4,29.67,5438.0,122.0,,,2.63,,,,,,"9,10,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3081,1,False,False,False -428699140,3082.01,,1,4,4,1,3,4,4,12.9,74.1,11.79,6,2,1,PC,PC,11.7662,0.006,,1,qlp-s37-tois,QLP,13:03:37.94,-19:13:08.34,-123.898,0.073,-28.308,0.051,2459332.242276,0.0018608,1.9268037,7.1e-06,1.4,0.214,2.456541,0.003904,2260.0,3.59571,3.42735,0.338589,131.648,943.0,19.0,113.048,0.4545,4249.0,123.4,4.59,0.1,0.68,0.06,,,0.664,0.079773,"10,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3082,1,False,False,True -405620289,3083.01,,3,4,3,3,1,4,4,91.0,147.1,317.0,2,0,0,PC,PC,13.0723,0.009,,1,qlp-s46-tois,QLP,12:44:26.79,-14:15:29.45,-9.766,0.054,-14.849,0.031,2459576.125706,0.0018266,2.1532179,6.1e-06,2.072,0.188,7.38636,3.167038,6780.0,2912.7,25.853,,2822.0,2030.0,24.0,1007.21,36.404,5997.0,122.0,4.03,,1.68,,,,1.11,,"10,37,46",2021-06-04,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search,3083,1,False,False,False -397423462,3084.01,,3,4,3,3,1,4,4,17.7,60.9,84.19,2,0,0,PC,PC,13.2733,0.007,,1,qlp,QLP,11:52:13.07,-27:31:03.64,8.064,0.035,-6.277,0.019,2459300.597866,0.0020383,5.1057571,1.79e-05,2.616,0.126,11.833635,0.009229,10840.0,8.50038,10.9206,,144.847,966.0,19.0,555.622,7.893,5495.2,65.8,4.41,,1.01,,0.284115,0.0768443,0.96,,"10,36",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3084,1,False,False,False -376740324,3085.01,,5,5,5,5,5,5,5,,,317.0,1,0,0,EB,FP,12.1229,0.008,,1,qlp,QLP,10:13:12.37,-62:52:31.28,-6.498,0.044,3.628,0.041,2459327.095663,0.0003547,4.5300175,5e-06,5.331,0.091,39.582182,0.00252,35800.0,2.32132,,,4849.38,2324.0,178.0,1938.67,88.46,9046.0,211.7,,,,,,,,,"10,36,37",2021-06-04,2021-10-05,2022-12-14 12:09:24,found in faint-star QLP search; TFOP FP; retired as EB,3085,1,False,False,False -374158843,3086.01,,1,4,1,1,3,4,4,2.8,39.0,10.23,2,1,1,PC,PC,11.4005,0.006,,1,qlp,QLP,10:39:38.43,-48:32:17.2,-9.517,0.05,-30.568,0.042,2459320.535229,0.0028268,10.9506335,6.04e-05,2.635,0.483,1.97784,0.002809,1820.0,2.58736,3.17264,0.28152,20.8045,594.0,17.0,116.69,0.433,4530.0,127.0,4.56,0.1,0.73,0.06,,,0.71,0.0839175,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3086,1,False,False,False -364427226,3087.01,,3,4,3,3,3,4,4,28.9,36.2,317.0,2,0,1,PC,PC,12.3411,0.006,,1,qlp,QLP,10:45:07.34,-48:38:57.38,,,,,2459327.06657,0.0026506,4.1414861,2.44e-05,2.573,0.379,8.469116,0.015626,7770.0,14.3921,,,637.229,1399.0,20.0,780.12,,6920.0,403.9,,,,,,,,,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3087,1,False,False,False -362607799,3088.01,,3,4,3,3,3,4,4,,,44.6,0,0,1,PC,PC,12.928,0.006,,1,qlp,QLP,09:41:32.75,-50:56:22.21,-7.49,2.946,5.922,2.946,2459303.429239,0.0034538,2.6337971,1.54e-05,2.591,0.347,5.213172,0.007454,4790.0,6.86537,,,163.704,996.0,15.0,,,3946.9,171.2,,,,,,,,,"9,10,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; no stellar parameters; could be an evolved star,3088,1,False,False,False -347715478,3089.01,,3,4,3,3,3,4,4,15.9,72.9,71.45,1,0,1,PC,PC,12.4641,0.006,,1,qlp-s46-tois,QLP,12:11:24.11,-11:59:51.25,-25.299,2.247,-6.91,2.204,2459564.484168,0.001235,9.3096136,2.49e-05,2.171,0.146,12.635204,0.006037,11570.0,5.56031,9.9903,,25.3269,,25.0,314.298,,5229.0,,,,0.93,,,,,,"10,36,46",2021-06-04,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search,3089,1,False,False,False -309913305,3090.01,,3,4,3,3,1,4,4,,,69.42,0,0,0,PC,PC,13.0037,0.006,,1,qlp-s37-tois,QLP,10:08:17.99,-53:17:13.37,-2.887,3.045,-6.98,2.952,2459331.296092,0.003188,6.3272169,4.54e-05,3.667,0.364,8.786491,0.010926,8060.0,10.0628,,,96.3086,872.0,16.0,,,4580.9,246.9,,,,,,,,,"9,10,36,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; potential red giant; no stellar radius,3090,1,False,False,False -306255021,3091.01,,3,4,4,3,3,4,4,68.9,179.4,317.0,3,0,1,PC,PC,11.9519,0.007,,1,qlp-s37-tois,QLP,11:06:29.82,-56:03:20.99,-8.235,0.047,1.8,0.042,2459331.050205,0.0005625,2.7499877,3.2e-06,3.84,0.084,16.938642,0.00136,15480.0,1.25302,22.9205,0.904684,11946.5,2912.0,100.0,1082.78,33.885,10146.0,215.1,4.36,0.06,1.77,0.07,,,2.6,0.330992,"10,37",2021-06-04,2023-01-24,2023-03-11 00:00:00,found in faint-star QLP search,3091,1,False,False,False -274911536,3092.01,,3,4,3,3,3,4,4,13.7,63.4,48.31,0,0,1,PC,PC,12.8017,0.006,,1,qlp,QLP,09:58:17.68,-58:55:35.65,-31.179,0.033,23.374,0.029,2459331.270289,0.0021438,4.4163989,2.05e-05,1.81,0.251,7.747158,0.011274,7110.0,10.3836,7.89614,0.473348,177.763,1017.0,15.0,449.139,3.414,6273.0,129.7,4.59,0.08,0.93,0.04,,,1.22,0.172614,"9,10,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3092,1,False,False,False -272885406,3093.01,,3,4,3,3,3,4,4,20.0,58.5,128.81,1,0,1,PC,PC,12.9661,0.006,,1,qlp,QLP,10:46:48.39,-49:02:53.62,0.441,0.026,-0.495,0.026,2459325.460586,0.0023881,4.3653308,1.82e-05,3.456,0.309,8.819328,0.005871,8090.0,5.40783,14.0676,0.694328,1061.67,1590.0,22.0,989.462,15.499,7109.0,134.2,4.24,0.09,1.57,0.06,,,1.58,0.264026,"9,10,36,37",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search; slight depth aperture correlation,3093,1,False,False,False -272645619,3094.01,,3,4,3,3,3,4,4,40.7,46.6,317.0,1,0,1,PC,PC,12.5612,0.006,,1,qlp,QLP,10:45:44.04,-52:32:17.33,-10.168,1.173,3.183,1.173,2459327.804479,0.0012051,2.8396238,8.7e-06,2.391,0.532,11.021689,0.032928,10100.0,30.3274,12.199,1.05562,1063.3,1590.0,36.0,707.151,,5915.3,190.6,,,1.16,0.07,,,,,"10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3094,1,False,False,False -270075071,3095.01,,3,4,3,3,1,4,4,17.1,62.7,69.06,0,0,0,PC,PC,13.0517,0.006,,1,qlp,QLP,09:56:15.04,-60:00:12.49,-12.477,0.034,7.709,0.031,2459326.634102,0.0033438,4.2839945,2.58e-05,3.08,0.27,10.298033,0.012601,9440.0,11.6056,9.77904,,443.121,1278.0,16.0,536.222,5.1935,6022.0,122.0,4.46,,1.03,,,,1.11,,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3095,1,False,False,False -229465678,3096.01,,3,4,3,3,1,4,4,,,317.0,3,0,0,PC,PC,13.151,0.012,,1,qlp-s37-tois,QLP,13:08:45.04,-28:14:04.08,-19.58,2.189,14.286,2.18,2459325.615815,0.0013764,4.4282303,1.08e-05,2.577,0.163,18.815036,0.009742,17180.0,8.97238,,,,,37.0,277.823,,,,,,,,,,,,"10,37",2021-06-04,2023-01-24,2023-01-25 00:00:00,found in faint-star QLP search; no stellar parameters,3096,1,False,False,False -163262555,3097.01,,3,4,3,3,1,4,4,37.3,99.0,58.93,2,0,0,PC,PC,12.99,0.02,,1,qlp-s37-tois,QLP,11:32:17.93,-47:29:47.02,-26.888,3.03,40.219,3.03,2459329.975747,0.0010406,1.3683875,2.9e-06,1.357,0.143,9.169654,0.006988,8410.0,6.43623,8.79209,1.50084,449.294,1282.0,31.0,347.415,,5000.0,400.2,,,0.89,0.15,,,,,"10,37",2021-06-04,2023-01-24,2023-01-25 00:00:00,found in faint-star QLP search,3097,1,False,False,False -163260812,3098.01,,3,4,4,3,3,4,4,69.0,102.2,317.0,4,0,1,PC,PC,11.315,0.006,,1,qlp,QLP,11:32:33.07,-46:18:54.96,-19.93,0.039,3.726,0.035,2458590.737719,0.0006241,4.7332043,0.0002534,3.965,0.087,16.387379,0.000881,14980.0,0.811272,17.1023,0.741037,698.563,1432.0,63.0,401.011,4.514,6438.0,128.2,4.29,0.08,1.35,0.06,,,1.3,0.205329,10,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3098,1,False,False,False -163030461,3099.01,,3,4,4,3,3,4,4,56.7,155.4,119.89,2,0,1,PC,PC,12.5869,0.006,,1,qlp,QLP,11:28:26.01,-45:00:59.14,-5.627,0.03,5.187,0.025,2459330.064618,0.0003792,2.5543095,2.3e-06,2.239,0.048,20.473375,0.001438,18680.0,1.32438,13.5543,0.647144,559.574,1354.0,94.0,444.736,4.534,5990.0,128.3,4.53,0.08,0.95,0.04,,,1.1,0.13838,"10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3099,1,False,False,False -162620529,3100.01,,3,4,3,3,1,4,4,34.0,95.5,128.12,3,0,0,PC,PC,13.1472,0.006,,1,qlp,QLP,11:21:19.21,-44:18:28.87,-25.972,0.031,6.18,0.028,2459330.083468,0.000774,3.2907468,6.3e-06,2.309,0.084,17.247473,0.004364,15760.0,4.01953,14.0568,,430.347,1268.0,48.0,697.681,9.7805,6229.0,122.0,4.45,,1.08,,,,1.2,,"10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3100,1,False,False,False -157213708,3101.01,,3,4,3,3,1,4,4,14.3,35.0,110.37,0,0,0,PC,PC,13.2285,0.009,,1,qlp,QLP,11:43:15.91,-30:04:23.39,0.339,0.035,-1.892,0.024,2458589.149123,0.0042243,4.0416494,0.0015703,3.646,0.45,6.697895,0.014465,6150.0,13.3231,14.0222,,699.88,1432.0,13.0,1121.79,39.235,5933.0,122.0,3.96,,1.79,,,,1.08,,10,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3101,1,False,False,False -147092818,3102.01,,3,4,3,3,3,4,4,9.8,37.8,53.38,0,0,1,PC,PC,12.7544,0.006,,1,qlp,QLP,10:47:46.85,-47:01:29.79,-10.515,2.921,9.329,2.921,2459329.105771,0.0026854,3.8769776,2.37e-05,4.526,0.261,3.000775,0.00191,2760.0,1.75874,,,897.738,1524.0,17.0,744.917,,5569.2,245.0,,,,,,,,,"9,10,36,37",2021-06-04,2021-11-10,2022-12-14 12:09:24,found in faint-star QLP search,3102,1,False,False,False -133129971,3103.01,,3,4,3,3,3,4,4,19.6,64.6,96.25,0,0,1,PC,PC,12.842,0.006,,1,qlp,QLP,09:57:38.34,-51:20:07.92,-4.684,0.029,-2.895,0.029,2459303.206061,0.0030279,4.3437796,2.35e-05,2.774,0.263,8.447231,0.009778,7750.0,9.00589,11.8307,0.701307,466.22,1294.0,15.0,730.225,9.994,6513.0,134.0,4.32,0.09,1.32,0.06,,,1.34,0.219504,"9,10,36",2021-06-04,2021-11-04,2022-12-14 12:09:24,found in faint-star QLP search; some depth-aperture correlation,3103,1,False,False,False -132963419,3104.01,,3,4,3,3,3,4,4,,,56.61,0,0,2,PC,PC,12.6304,0.006,,1,qlp,QLP,09:57:03.27,-49:45:01.72,-11.048,2.904,2.281,2.904,2458588.299206,0.0045536,10.3069451,0.0019728,2.599,0.322,6.905481,0.016148,6340.0,14.8724,,,16.5348,561.0,12.0,,,4445.0,171.5,,,,,,,,,"9,10",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3104,1,False,False,False -124454726,3105.01,,3,4,3,3,3,4,4,8.5,49.3,28.87,0,0,1,PC,PC,11.6814,0.006,,1,qlp-s37-tois,QLP,13:15:12.92,-31:22:07.5,-30.136,0.107,5.491,0.114,2459329.829974,0.0052807,5.3332571,5.16e-05,3.102,1.475,2.195405,0.186844,2020.0,172.075,5.82279,1.62166,1133.52,1616.0,12.0,354.09,8.9515,6068.0,128.5,4.41,0.08,1.1,0.06,,,1.13,0.153988,"10,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3105,1,False,False,False -124453339,3106.01,,3,4,3,3,3,4,4,36.1,97.2,60.04,2,0,1,PC,PC,11.8817,0.008,,1,qlp-s37-tois,QLP,13:14:35.68,-30:43:21.81,-41.47,1.122,-1.799,1.122,2459331.915405,0.0007211,1.485163,2e-06,1.789,0.085,4.885933,0.001201,4490.0,1.1062,8.99362,,867.237,,22.0,288.3,,5506.2,,,,1.28,,0.260796,0.0659833,,,"10,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3106,1,False,False,False -124174267,3107.01,,3,4,3,3,3,4,4,42.2,54.1,317.0,1,0,1,PC,PC,12.477,0.009,,1,qlp-s37-tois,QLP,13:06:54.32,-31:42:59.01,-15.733,0.052,0.157,0.054,2459330.174264,0.001313,4.7343852,1.27e-05,4.468,0.147,13.591272,0.003434,12440.0,3.16301,18.0528,0.993101,593.089,1465.0,35.0,650.592,13.0685,5776.0,129.6,4.05,0.08,1.6,0.08,,,1.04,0.130285,"10,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3107,1,False,False,False -124146529,3108.01,,3,4,3,3,1,4,4,12.0,56.0,58.28,2,0,0,PC,PC,13.1948,0.009,,1,qlp-s37-tois,QLP,13:05:53.33,-31:47:29.6,-37.948,0.053,-8.595,0.068,2459331.223545,0.0020323,6.900352,2.78e-05,2.452,0.222,11.372727,0.0095,10420.0,8.74952,8.86463,,59.4485,773.0,19.0,410.81,6.6125,5205.8,87.0,4.53,,0.85,,0.429424,0.0879328,0.89,,"10,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3108,1,False,False,False -120723776,3109.01,,5,5,5,5,5,5,5,111.3,168.5,317.0,0,0,0,PC,FP,12.483,0.023,,1,qlp,QLP,10:56:14.53,-52:28:56.27,,,,,2459327.889241,0.0003354,2.8831285,2.6e-06,3.53,0.06,28.925924,0.00297,26290.0,2.73564,28.6734,1.20118,523.57,1332.0,170.0,,,,,,,1.77,0.07,,,,,"10,36,37",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; TFOP FP retired as EB,3109,1,False,False,False -104022675,3110.01,,3,4,3,3,1,4,4,27.1,73.6,47.48,1,0,0,PC,PC,13.0326,0.006,,1,qlp-s37-tois,QLP,13:03:56.79,-32:26:11.19,-8.877,0.04,-5.01,0.039,2459331.223979,0.0013149,0.7428708,1.9e-06,1.112,0.239,5.409563,0.012217,4970.0,11.2526,7.86186,,1797.04,1813.0,25.0,572.747,8.224,5635.9,73.2,4.35,,1.11,,-0.304823,0.0795855,1.0,,"10,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3110,1,False,False,False -103832313,3111.01,,3,4,3,3,1,4,4,17.7,61.2,115.22,2,0,0,PC,PC,14.6574,0.006,,1,qlp,QLP,12:59:02.61,-35:58:22.5,-8.335,0.073,5.782,0.061,2458591.97575,0.0025332,4.640636,0.0008758,2.984,0.264,17.192318,0.014923,15710.0,13.7449,13.1303,,107.987,898.0,25.0,726.621,19.416,4539.0,122.0,4.27,,1.02,,,,0.71,,10,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3111,1,False,False,False -98662211,3112.01,,3,4,4,3,3,4,4,43.9,97.4,128.85,6,0,1,PC,PC,12.5042,0.007,,1,qlp-s46-tois,QLP,12:22:54.59,-11:35:58.51,21.901,0.051,-22.304,0.037,2459576.21659,0.0008222,4.2842284,5.5e-06,1.497,0.258,12.920838,0.020245,11830.0,18.6463,14.0459,1.12863,56.6249,764.0,41.0,384.707,5.0315,4911.0,128.1,4.19,0.09,1.19,0.08,,,0.8,0.0954005,"10,36,46",2021-06-04,2022-03-11,2023-02-11 00:00:00,found in faint-star QLP search; close to stellar rotation period,3112,1,False,False,False -94346376,3113.01,,3,4,3,3,1,4,4,22.3,29.0,317.0,1,0,0,PC,PC,13.2725,0.006,,1,qlp,QLP,11:48:25.12,-52:29:00.26,-3.203,1.249,1.374,1.249,2458591.779066,0.0056934,3.1339232,0.0018819,4.029,0.464,6.785295,0.013831,6230.0,12.739,,,1420.13,1710.0,10.0,1394.86,,5980.5,600.1,,,,,,,,,10,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3113,1,False,False,False -94011343,3114.01,,3,4,3,3,3,4,4,40.1,116.4,94.73,3,3,1,PC,PC,11.6001,0.006,,1,qlp-s37-tois,QLP,11:45:28.41,-50:53:18.4,7.992,0.043,3.402,0.036,2459331.60796,0.000622,4.407111,6.9e-06,2.134,0.108,9.969258,0.003035,9140.0,2.79576,11.7059,0.631301,131.096,942.0,61.0,304.599,3.06,5478.0,123.6,4.27,0.08,1.18,0.06,,,0.96,0.123076,"10,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3114,1,False,False,True -93093765,3115.01,,3,4,3,3,3,4,4,15.0,65.4,46.45,1,0,1,PC,PC,12.5831,0.006,,1,qlp-s37-tois,QLP,11:38:47.8,-52:24:01.21,0.728,0.038,-2.482,0.031,2459327.015901,0.0021443,2.7961137,1.08e-05,1.604,0.283,5.988031,0.010821,5500.0,9.96688,7.7487,0.5143,421.749,1262.0,15.0,550.038,8.276,6455.0,133.5,4.51,0.09,1.06,0.05,,,1.31,0.210424,"10,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3115,1,False,False,False -80778619,3116.01,,3,4,3,3,3,4,4,23.4,65.2,72.67,1,0,1,PC,PC,12.4173,0.007,,1,qlp,QLP,11:03:48.3,-48:31:34.7,-22.524,0.088,1.637,0.065,2458595.407534,0.0031725,1.648209,0.0004003,2.03,0.289,3.904806,0.007529,3590.0,6.93482,9.7389,0.728044,1755.73,1803.0,16.0,713.76,25.581,6316.0,134.2,4.14,0.09,1.58,0.09,,,1.24,0.189895,10,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3116,1,False,False,False -73082014,3117.01,,3,4,3,3,1,4,4,39.9,45.6,317.0,2,0,0,PC,PC,13.4259,0.006,,1,qlp-s37-tois,QLP,12:38:40.27,-45:24:59.6,-16.894,0.054,-7.686,0.078,2459332.173033,0.001226,3.2689953,8.2e-06,2.931,0.116,17.390888,0.007314,15890.0,6.73673,17.1329,,439.803,1275.0,33.0,787.785,25.86,5552.0,123.0,4.19,,1.32,,,,0.98,,"10,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3117,1,False,False,False -58461209,3118.01,,1,4,1,3,3,4,4,24.0,61.8,76.51,2,2,1,PC,PC,11.4553,0.008,,1,qlp,QLP,13:25:30.45,-28:24:49.11,6.73,0.082,-18.318,0.104,2458594.480161,0.0032851,3.8098324,0.0009063,3.881,0.353,3.534389,0.003078,3250.0,2.83471,10.3911,0.708867,618.962,1389.0,17.0,423.105,11.3365,5406.0,129.2,3.91,0.09,1.78,0.11,,,0.94,0.121045,10,2021-06-04,2021-06-04,2023-05-22 00:00:00,found in faint-star QLP search,3118,1,False,False,False -57793060,3119.01,,3,4,3,3,1,4,4,13.7,18.8,317.0,1,0,0,PC,PC,13.0462,0.006,,1,qlp,QLP,11:39:02.24,-32:11:26.1,-4.443,0.028,5.544,0.018,2459289.297783,0.0034508,8.907516,5.25e-05,3.522,0.62,9.388665,0.017992,8610.0,16.5712,14.3733,,230.828,1085.0,20.0,971.254,21.486,6407.0,122.0,4.2,,1.49,,,,1.29,,"10,36",2021-06-04,2021-11-09,2022-12-14 12:09:24,found in faint-star QLP search,3119,1,False,False,False -22384839,3120.01,,3,4,3,3,1,4,4,9.9,40.0,75.53,0,0,0,PC,PC,13.0772,0.006,,1,qlp,QLP,12:16:08.91,-45:25:34.83,-7.037,3.066,3.153,3.066,2458588.106211,0.003694,7.0235956,0.0030712,4.739,0.39,6.129967,0.008346,5630.0,7.68691,,,471.691,1298.0,11.0,763.939,,6276.0,365.9,,,,,,,,,10,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3120,1,False,False,False -14715294,3121.01,,3,4,3,3,1,4,4,30.2,50.1,317.0,1,0,0,PC,PC,13.1194,0.008,,1,qlp,QLP,11:39:00.54,-29:50:31.45,-6.008,0.045,0.351,0.03,2458587.08575,0.0022856,5.5141998,0.0018889,4.432,0.405,15.252656,0.011674,13950.0,10.7522,21.1705,,636.089,1399.0,30.0,1180.61,46.055,6296.0,68.9,4.01,,1.81,,-0.166968,0.0816223,1.23,,10,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3121,1,False,False,True -61117473,3122.01,,3,4,4,3,3,4,4,27.8,92.2,117.86,2,11,1,PC,PC,12.123,0.008,,1,qlp-s38-tois,QLP,15:07:48.97,-28:09:23.79,-13.363,0.068,-0.539,0.058,2459356.522533,0.0011442,6.1836286,1.55e-05,2.573,0.153,10.901047,0.006002,9990.0,5.52842,13.3233,0.744972,195.93,1042.0,42.0,520.156,12.2555,6504.0,127.9,4.34,0.09,1.29,0.06,,,1.33,0.217204,"11,38",2021-06-04,2022-10-04,2023-06-06 00:00:00,found in faint-star QLP search,3122,1,False,False,True -60768923,3123.01,,3,5,5,3,3,4,4,113.9,139.5,317.0,0,6,3,PC,APC,11.099,0.009,,1,qlp-s38-tois,QLP,14:04:52.26,-29:56:51.93,-21.885,0.091,1.332,0.081,2459359.165583,0.0007286,1.8703411,2.8e-06,2.134,0.181,10.440533,0.019688,9570.0,18.1327,18.6634,1.1612,3374.5,2123.0,50.0,450.78,9.348,6368.0,130.6,4.08,0.09,1.7,0.08,,,1.27,0.200938,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3123,1,False,False,False -454918388,3124.01,,3,4,3,3,3,4,4,35.6,87.1,89.55,3,0,1,PC,PC,12.6177,0.006,,1,qlp-s39-tois,QLP,11:52:35.31,-77:25:02.1,-29.729,0.021,2.452,0.02,2459388.230262,0.000792,2.2545904,3.8e-06,0.977,0.188,6.512193,0.013133,5980.0,12.0961,11.3495,0.752098,202.365,1050.0,25.0,486.768,2.9995,5567.0,127.2,4.23,0.08,1.25,0.06,,,0.98,0.126893,"11,12,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,V-shaped; found in faint-star QLP search,3124,1,False,False,False -160023,3125.01,,3,4,3,3,3,4,4,14.5,42.3,109.34,1,0,1,PC,PC,12.8296,0.008,,1,qlp-s38-tois,QLP,14:54:52.43,-29:09:07.53,-7.046,0.045,-1.625,0.04,2459358.443291,0.0039546,6.7565519,4.17e-05,3.442,0.731,5.660559,0.011633,5200.0,10.7147,12.7591,0.882925,319.273,1177.0,16.0,802.611,18.6015,5972.0,126.1,4.05,0.08,1.64,0.08,,,1.1,0.138026,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3125,1,False,False,False -454876465,3126.01,,3,4,4,3,1,4,4,63.1,67.4,317.0,4,0,0,PC,PC,13.2585,0.006,,1,qlp-s39-tois,QLP,11:51:21.73,-76:52:42.13,-16.612,0.031,0.966,0.025,2459386.793853,0.0005393,1.8246123,2.3e-06,1.835,0.091,17.600529,0.006077,16080.0,5.59718,18.0134,,615.616,1387.0,59.0,693.951,7.9995,5655.0,122.0,4.15,,1.39,,,,1.0,,"11,12,39",2021-06-04,2023-01-24,2023-05-01 00:00:00,found in faint-star QLP search,3126,1,False,False,False -17361,3127.01,TIC 17361.01,3,5,5,3,3,4,4,55.3,148.1,115.86,0,2,3,PC,APC,11.342,0.006,,1,qlp-s38-tois,QLP,14:37:20.7,-24:57:30.68,-18.45,0.054,-9.49,0.05,2459357.945764,0.0004198,3.606557,3.1e-06,1.878,0.231,10.835247,0.003249,9930.0,2.99205,13.2514,0.697727,310.789,1169.0,66.0,308.901,3.0255,5775.3,121.6,4.25,0.08,1.26,0.06,-0.21,0.1,1.035,0.131886,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Montalto et al. (2020),3127,1,False,False,False -453677947,3128.01,,3,4,3,3,3,4,4,14.6,52.4,39.45,1,0,1,PC,PC,11.9346,0.006,,1,qlp-s39-tois,QLP,10:29:02.73,-75:12:53.97,-13.833,0.07,7.85,0.068,2459386.588498,0.0018842,2.3155132,7.2e-06,0.649,0.18,1.651575,0.012283,1520.0,11.3132,7.00521,0.627981,106.203,894.0,12.0,444.507,7.5255,6011.0,119.6,4.16,0.08,1.45,0.07,,,1.11,0.150549,"10,11,12,37,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3128,1,False,False,False -4711,3129.01,,3,4,4,3,3,4,4,52.7,135.8,90.8,2,16,3,PC,PC,10.9198,0.006,,1,qlp-s38-tois,QLP,14:35:40.51,-26:10:45.61,7.543,0.067,-12.078,0.063,2459358.079233,0.0008078,2.3348152,5.6e-06,1.861,0.101,5.78062,0.002283,5310.0,2.10261,11.4665,0.651789,520.71,1330.0,24.0,321.683,4.442,5949.1,101.6,4.12,0.08,1.51,0.08,-0.1,0.09,1.088,0.135174,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3129,1,False,False,False -453396346,3130.01,,3,4,3,3,1,4,4,49.4,33.6,317.0,1,0,0,PC,PC,13.5606,0.006,,1,qlp,QLP,10:03:08.33,-72:16:04.05,-9.055,0.031,7.547,0.03,2458651.737689,0.0026127,0.4415296,2.44e-05,1.0,0.14,3.697793,0.009227,3400.0,8.49813,18.7835,,2419.21,1953.0,17.0,1511.72,37.685,5117.0,123.0,,,2.92,,,,,,"10,11,12",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3130,1,False,False,False -2876,3131.01,,3,4,4,3,3,4,4,57.5,77.5,317.0,3,0,1,PC,PC,13.1643,0.008,,1,qlp-s38-tois,QLP,14:35:16.88,-25:03:21.52,-10.555,0.055,-8.357,0.048,2459357.047021,0.0009946,2.6274574,6.1e-06,2.31,0.374,23.775474,0.023054,21660.0,21.233,18.5088,,930.543,1538.0,31.0,764.831,18.481,6148.0,122.0,4.33,,1.23,,,,1.17,,"11,38",2021-06-04,2022-10-04,2023-04-29 00:00:00,V-shaped; found in faint-star QLP search,3131,1,False,False,False -448923766,3132.01,,3,4,4,3,3,4,4,35.2,84.8,118.89,3,0,1,PC,PC,13.1311,0.006,,1,qlp-s39-tois,QLP,14:17:42.39,-70:21:51.7,3.849,0.025,-2.708,0.026,2459385.110624,0.0010672,2.2664085,5.5e-06,2.63,0.165,11.175254,0.005139,10240.0,4.73339,13.4164,,1201.76,1640.0,32.0,715.396,9.0155,6107.0,122.0,4.29,,1.27,,,,1.15,,"11,12,38,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3132,1,False,False,False -448775221,3133.01,,3,4,3,3,3,4,4,28.7,67.9,127.56,1,0,2,PC,PC,11.938,0.006,,1,qlp-s39-tois,QLP,14:13:28.88,-68:00:39.36,-1.155,0.034,-8.037,0.043,2459388.723127,0.0017929,4.0902788,1.64e-05,3.584,0.202,5.507772,0.002066,5060.0,1.90245,13.9755,0.721667,724.371,1445.0,22.0,630.243,11.263,6130.0,126.0,3.92,0.08,1.95,0.09,,,1.16,0.158575,"11,12,38,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3133,1,False,False,False -448688668,3134.01,,3,4,3,3,1,4,4,49.6,68.7,317.0,0,0,0,PC,PC,13.3397,0.008,,1,qlp,QLP,14:10:42.13,-66:27:27.62,-10.559,0.038,-3.21,0.043,2458649.589138,0.0044691,2.2308431,0.0002863,2.969,0.314,11.954382,0.018574,10950.0,17.1075,22.6165,,1903.91,1840.0,13.0,1245.7,45.505,6386.0,122.0,3.88,,2.14,,,,1.28,,"11,12",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3134,1,False,False,False -448098793,3135.01,,3,4,4,3,3,4,4,78.4,218.7,111.62,3,3,1,PC,PC,11.0994,0.006,,1,qlp-s38-tois,QLP,13:51:26.21,-69:46:21.23,-20.891,0.037,-16.751,0.042,2459357.945093,0.0003215,3.7065603,2.1e-06,1.98,0.129,16.420447,0.001844,15010.0,1.69865,12.9758,0.649825,256.023,1114.0,44.0,221.673,1.37,5632.0,127.6,4.41,0.08,1.03,0.05,,,1.0,0.123469,"11,12,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3135,1,False,False,False -418471796,3136.01,,3,4,4,3,3,4,4,101.6,150.5,317.0,2,0,1,PC,PC,12.7666,0.006,,1,qlp-s39-tois,QLP,13:41:19.82,-79:24:35.82,-3.934,0.034,-4.547,0.032,2459388.272114,0.0002914,2.6841894,1.8e-06,2.836,0.033,32.701353,0.001814,29670.0,1.67119,21.16,1.06129,719.556,1442.0,171.0,572.389,7.4125,5914.0,133.1,4.33,0.08,1.17,0.06,,,1.08,0.133209,"11,12,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3136,1,False,False,False -395514100,3137.01,,3,4,3,3,3,4,4,89.2,143.0,317.0,2,0,1,PC,PC,11.528,0.078,,1,qlp-s39-tois,QLP,13:50:43.33,-77:18:09.13,,,,,2459386.332922,0.0005883,1.8823821,2.1e-06,2.42,0.062,11.636079,0.00308,10660.0,2.83644,,,,,58.0,,,,,,,,,,,,,"11,12,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; no stellar parameters,3137,1,False,False,False -270347814,3138.01,,3,4,4,3,1,4,4,49.9,119.7,100.75,6,0,0,PC,PC,13.5117,0.006,,1,qlp,QLP,14:22:05.48,-30:30:45.09,-12.081,0.062,-29.321,0.067,2458623.063561,0.0017943,2.8740048,0.0003641,1.592,0.226,28.479996,0.056793,25890.0,52.3073,12.2262,,59.3788,773.0,24.0,260.826,2.4715,4270.3,164.5,4.57,0.23,0.74,,,,0.657,,11,2021-06-04,2021-06-04,2023-05-16 00:00:00,found in faint-star QLP search,3138,1,False,False,False -48661942,3139.01,,3,4,4,3,3,4,4,19.6,69.1,67.94,3,2,1,PC,PC,11.9118,0.006,,1,qlp-s38-tois,QLP,15:18:57.78,-28:24:37.77,-5.202,2.143,-0.706,2.143,2459354.840766,0.001814,3.9628496,1.5e-05,2.844,0.2,4.875026,0.002816,4480.0,2.5935,9.64171,,589.616,,27.0,488.081,,5449.0,459.6,4.24,2.01,1.43,,,,,,"11,38",2021-06-04,2022-10-04,2023-07-08 00:00:00,found in faint-star QLP search,3139,1,False,False,False -394900138,3140.01,,3,4,3,3,1,4,4,51.5,83.6,317.0,0,0,0,PC,PC,13.0885,0.006,,1,qlp-s39-tois,QLP,13:32:41,-72:55:34.58,-9.577,3.076,6.363,3.076,2459386.579249,0.0012675,3.0932735,7.5e-06,2.937,0.134,11.899495,0.004971,10900.0,4.57875,,,,,33.0,1010.18,,,,,,,,,,,,"11,12,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; no stellar radius,3140,1,False,False,False -394443982,3141.01,,3,4,4,3,3,4,4,26.8,82.2,121.69,2,0,1,PC,PC,12.4712,0.006,,1,qlp-s39-tois,QLP,13:20:52.49,-73:46:29.46,-19.458,0.035,-5.097,0.036,2459382.058438,0.0012613,4.4338805,1.02e-05,3.93,0.117,10.013089,0.001818,9180.0,1.67435,13.6095,0.666345,995.704,1564.0,45.0,678.463,9.966,6695.0,137.5,4.32,0.09,1.37,0.06,,,1.42,0.229988,"11,12,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3141,1,False,False,False -387791274,3142.01,,3,4,3,3,3,4,4,,,317.0,2,0,1,PC,PC,13.229,0.032,,1,qlp-s38-tois,QLP,14:29:12.45,-62:03:13.79,-3.605,0.026,-2.367,0.033,2459360.085141,0.0022495,1.1536561,4.5e-06,2.51,0.176,44.536824,1.540808,40190.0,1418.13,,,,,15.0,1517.54,52.065,,,,,,,,,,,"11,12,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3142,1,False,False,False -384244834,3143.01,,3,4,3,3,1,4,4,,,317.0,0,0,0,PC,PC,12.048,0.019,,1,qlp-s38-tois,QLP,14:26:16.49,-63:03:01.7,,,,,2459354.834136,0.0023976,2.9902369,1.7e-05,3.042,0.26,7.036609,0.008887,6460.0,8.1855,140.194,11.2139,129.684,940.0,17.0,,,,,,,17.34,1.21,,,,,"11,12,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3143,1,False,False,False -361176558,3144.01,,3,4,3,3,1,4,4,23.7,68.5,120.24,2,0,0,PC,PC,13.1885,0.006,,1,qlp-s39-tois,QLP,12:50:29.18,-75:39:06.65,-10.942,0.031,1.449,0.026,2459383.264338,0.0013671,3.7724947,9.6e-06,2.199,0.18,10.013089,0.006158,9180.0,5.67217,13.5487,,424.722,1264.0,27.0,775.951,9.2815,6623.0,122.0,4.33,,1.33,,,,1.39,,"11,12,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3144,1,False,False,False -360816296,3145.01,TIC 360816296.01,3,4,3,3,3,4,4,96.5,98.1,317.0,1,0,1,PC,PC,12.1258,0.006,,1,qlp-s39-tois,QLP,12:43:48.06,-76:41:46,-50.404,0.043,-12.974,0.04,2459382.328839,0.0007941,3.5505931,4.9e-06,2.713,0.128,17.181287,0.007753,15700.0,7.1404,17.9407,1.30568,409.306,1253.0,127.0,283.803,2.0595,4803.0,126.6,4.07,0.09,1.34,0.09,,,0.78,0.087796,"11,12,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3145,1,False,False,False -360816293,3146.01,TIC 360816293.01,5,5,5,5,5,5,5,67.4,63.2,317.0,0,0,0,PC,FP,12.2077,0.006,,1,qlp,QLP,12:43:47.22,-76:41:48,-48.746,0.044,-13.432,0.037,2458650.905593,0.0007433,3.5506084,9.95e-05,2.706,0.11,17.55639,0.004701,16040.0,4.32989,14.4767,0.931503,230.045,1084.0,94.0,280.355,1.9625,5083.0,126.2,4.26,0.08,1.13,0.07,,,0.85,0.101571,"11,12",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3146,1,False,False,False -359572563,3147.01,,3,4,3,3,1,4,4,93.2,138.7,317.0,2,0,0,PC,PC,13.0237,0.006,,1,qlp-s39-tois,QLP,12:15:16.84,-75:34:04.99,-10.497,2.967,-0.422,2.967,2459386.392509,0.0006648,1.5256634,1.8e-06,1.925,0.269,17.710882,0.021325,16180.0,19.6407,,,1117.11,1610.0,77.0,828.066,,5230.5,107.6,,,,,,,,,"11,12,39",2021-06-04,2023-01-24,2023-04-10 00:00:00,V-shaped; found in faint-star QLP search; no stellar radius,3147,1,False,False,False -323980895,3148.01,,3,4,3,3,1,4,4,,,317.0,1,0,0,PC,PC,11.681,0.017,,1,qlp-s39-tois,QLP,09:44:20.84,-79:32:42.6,-35.496,1.24,19.576,1.24,2459387.985248,0.0009426,4.2814436,9.8e-06,0.868,0.075,5.344095,0.007067,4910.0,6.50904,10.6824,0.476426,18.5873,578.0,21.0,342.833,,5097.8,68.8,,,1.36,0.04,,,,,"11,12,37,39",2021-06-04,2023-01-24,2023-01-24 00:00:00,V-shaped; found in faint-star QLP search,3148,1,False,False,False -296670796,3149.01,,3,4,4,3,1,4,4,,,120.75,3,0,0,PC,PC,13.4841,0.006,,1,qlp-s38-tois,QLP,14:55:54.69,-61:03:47.1,,,,,2459359.710881,0.0026105,1.1542402,5.8e-06,3.377,0.453,16.916587,0.150086,15460.0,138.225,,,2852.28,2035.0,17.0,,,4136.6,763.4,,,,,,,,,"11,12,38",2021-06-04,2022-10-04,2023-05-05 00:00:00,found in faint-star QLP search,3149,1,False,False,False -195256633,3150.01,,3,4,3,3,3,4,4,42.8,79.0,317.0,2,0,1,PC,PC,12.0697,0.013,,1,qlp-s38-tois,QLP,14:50:43.94,-57:45:40.43,-7.924,0.109,-10.913,0.12,2459357.83131,0.0038896,5.3430663,3.82e-05,5.101,0.572,7.867451,0.108488,7220.0,99.916,21.0355,2.6142,6581.64,2509.0,30.0,872.272,38.408,7822.0,171.3,4.04,0.08,2.15,0.11,,,1.86,0.311197,"11,12,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3150,1,False,False,False -36607746,3151.01,,3,4,4,3,3,4,4,57.8,69.2,317.0,4,0,1,PC,PC,12.6499,0.006,,1,qlp-s38-tois,QLP,15:02:05.95,-55:17:17.54,-5.387,0.039,-5.694,0.035,2459358.412233,0.00083,1.7257597,3e-06,1.375,0.071,15.175582,0.012328,13880.0,11.3546,15.2188,0.76039,1028.24,1577.0,36.0,677.678,9.2685,7235.0,134.5,4.44,0.09,1.27,0.05,,,1.63,0.279395,"11,12,38",2021-06-04,2022-10-04,2023-04-01 00:00:00,found in faint-star QLP search,3151,1,False,False,False -467484304,3152.01,,3,4,3,3,1,4,4,31.6,91.5,98.09,1,0,0,PC,PC,13.3551,0.009,,1,qlp-s38-tois,QLP,11:14:27.25,-61:33:32.8,-6.527,0.06,2.486,0.053,2459359.018335,0.0022345,0.7815064,3.3e-06,1.353,0.22,9.169654,0.017816,8410.0,16.4094,11.9775,,7256.54,2571.0,18.0,1195.67,57.01,7691.0,122.0,4.42,,1.37,,,,1.81,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3152,1,False,False,True -466318137,3153.01,,3,4,3,3,3,4,4,,,49.0,2,0,3,PC,PC,11.2789,0.01,,1,qlp,QLP,11:02:55.7,-60:11:48.73,,,,,2458622.951921,0.0039246,1.1216403,0.0001449,1.274,0.286,5.824283,0.02359,5350.0,21.7274,,,115.13,912.0,20.0,,,3294.0,38.9,,,,,,,,,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3153,1,False,False,False -465176038,3154.01,,3,4,3,3,1,4,4,16.1,49.1,114.18,0,0,0,PC,PC,12.802,0.022,,1,qlp,QLP,10:50:39.14,-60:50:49.27,,,,,2458623.37609,0.0125117,4.0326475,0.0017925,4.112,0.768,6.719744,0.036029,6170.0,33.183,13.1197,2.20064,1214.41,1644.0,9.0,1020.98,,6347.3,464.8,,,1.73,0.25,,,,,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3154,1,False,False,False -457272901,3155.01,,3,5,5,3,3,4,4,32.7,119.9,59.49,1,2,1,PC,APC,11.6104,0.006,,1,qlp-s38-tois,QLP,13:34:07.56,-59:34:32.19,-29.884,0.027,2.29,0.039,2459355.282092,0.0006791,4.6492201,9.3e-06,1.143,0.087,8.589489,0.00676,7880.0,6.22606,8.96002,0.602164,26.3101,630.0,30.0,201.727,1.1305,5110.0,128.4,4.44,0.09,0.93,0.06,,,0.86,0.103758,"11,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3155,1,False,False,False -457110913,3156.01,,3,5,5,3,1,4,4,211.6,192.1,317.0,6,0,0,PC,APC,13.2294,0.006,,1,qlp-s38-tois,QLP,13:31:41.47,-58:59:53.22,-11.215,0.023,0.168,0.034,2459359.101067,0.0006578,0.7463239,1e-06,1.49,0.102,26.642473,0.821634,24240.0,756.467,19.7419,,3197.59,2094.0,60.0,445.1,4.5345,5132.0,122.0,4.34,,1.04,,,,0.87,,"11,38",2021-06-04,2022-10-04,2023-05-02 12:02:52,found in faint-star QLP search,3156,1,False,False,False -456962262,3157.01,,3,4,3,3,1,4,4,,,113.41,5,0,0,PC,PC,13.6244,0.007,,1,qlp,QLP,13:25:53.56,-59:10:52.54,,,,,2458619.293758,0.0033904,2.8811368,0.0014402,2.274,0.382,15.7042,0.065375,14360.0,60.2108,,,266.475,1125.0,10.0,,,5068.9,153.2,,,,,,,,,11,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3157,1,False,False,False -451254008,3158.01,,3,4,3,3,3,4,4,15.5,17.5,317.0,0,0,1,PC,PC,12.534,0.006,,1,qlp-s37-tois,QLP,11:24:03.69,-57:32:37.1,-22.843,0.032,6.675,0.029,2459329.466826,0.0073886,6.8561604,8.36e-05,4.32,0.658,6.031702,0.012221,5540.0,11.2562,14.3692,1.01411,461.072,1290.0,14.0,935.189,18.8085,6282.0,131.1,3.92,0.08,2.01,0.1,,,1.23,0.178708,"10,11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3158,1,False,False,False -449549170,3159.01,,3,4,3,3,3,4,4,10.5,37.9,24.43,1,0,1,PC,PC,11.2925,0.006,,1,qlp-s38-tois,QLP,13:21:51.46,-62:32:31.64,14.36,0.036,-7.901,0.039,2459359.210512,0.0050036,1.4753526,1.51e-05,3.29,0.487,0.945002,0.001956,870.0,1.8016,5.30533,0.379254,4142.31,2235.0,12.0,428.115,5.2555,5732.0,128.6,3.93,0.08,1.81,0.09,,,1.02,0.130046,"11,38",2021-06-04,2022-10-03,2022-12-14 12:09:24,found in faint-star QLP search,3159,1,False,False,False -440872576,3160.01,,3,4,3,3,3,4,4,42.1,45.9,317.0,4,2,2,PC,PC,11.9333,0.007,,1,qlp-s38-tois,QLP,14:58:15.81,-27:40:57.18,-13.711,0.208,2.431,0.232,2459355.823345,0.0008675,3.9712794,6.4e-06,2.606,0.093,9.454377,0.002591,8670.0,2.38632,15.3233,1.18815,393.511,1240.0,56.0,567.678,34.6035,6200.0,124.7,4.09,0.1,1.62,0.12,,,1.19,0.165098,"11,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3160,1,False,False,False -438777551,3161.01,,3,4,3,3,3,4,4,59.9,79.5,317.0,3,0,1,PC,PC,12.9306,0.007,,1,qlp-s38-tois,QLP,13:27:02.54,-53:26:53.27,-12.673,0.066,-1.162,0.071,2459358.068383,0.0008023,1.4010338,2.4e-06,2.22,0.068,14.548183,0.003804,13310.0,3.5032,18.1441,1.12056,3603.2,2158.0,43.0,937.758,41.6215,7014.0,147.2,4.26,0.09,1.52,0.09,,,1.54,0.261037,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3161,1,False,False,False -433546897,3162.01,,3,4,3,3,3,4,4,23.0,61.8,77.99,1,0,1,PC,PC,11.6387,0.007,,1,qlp-s38-tois,QLP,12:41:36.69,-65:47:50.3,3.066,0.042,-2.364,0.041,2459357.766933,0.0080098,1.5759668,1.64e-05,2.684,0.48,2.315085,0.008053,2130.0,7.41687,10.4981,0.817681,3910.94,2203.0,11.0,677.547,13.691,6560.0,135.4,3.89,0.09,2.2,0.1,,,1.36,0.223121,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3162,1,False,False,False -425316308,3163.01,,3,4,3,3,3,4,4,46.1,53.3,317.0,1,0,1,PC,PC,11.8232,0.006,,1,qlp-s38-tois,QLP,12:44:21.31,-55:00:47.93,-12.999,0.039,-2.045,0.039,2459357.894877,0.0005236,3.0749168,4e-06,2.67,0.07,9.312006,0.001284,8540.0,1.1826,15.2762,0.724993,984.71,1560.0,77.0,572.474,12.646,6782.0,136.6,4.2,0.09,1.6,0.07,,,1.46,0.258713,"11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3163,1,False,False,False -419946164,3164.01,,5,5,5,5,5,5,5,70.7,82.1,317.0,2,0,1,PC,FP,12.5348,0.006,,1,qlp,QLP,13:31:16.32,-48:41:56.22,-20.225,0.082,-2.423,0.083,2458623.343394,0.0010435,1.7765395,0.0001501,1.258,0.244,15.329736,0.054411,14020.0,50.1134,16.6,1.40129,926.709,1537.0,35.0,629.894,24.239,6394.0,131.0,4.33,0.1,1.28,0.08,,,1.28,0.202372,11,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3164,1,False,False,False -419858461,3165.01,,3,4,3,3,1,4,4,33.5,88.7,127.53,1,0,0,PC,PC,13.6313,0.007,,1,qlp,QLP,12:46:34.48,-59:33:53.39,-15.145,0.03,-6.206,0.029,2458620.095894,0.0045662,2.5428536,0.0010838,2.394,0.385,16.508633,0.056701,15090.0,52.2223,14.0633,,1185.76,1634.0,11.0,844.49,18.116,6748.0,125.0,4.49,,1.13,,,,1.44,,11,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3165,1,False,False,False -412371819,3166.01,,3,4,4,3,3,4,4,102.0,191.4,317.0,3,0,1,PC,PC,12.9852,0.007,,1,qlp-s38-tois,QLP,12:42:59,-59:47:44.46,,,,,2459358.687433,0.0008926,1.87502,4.4e-06,2.664,0.088,23.331655,0.0058,21260.0,5.34219,,,1741.2,1799.0,42.0,1011.69,,6263.0,827.7,,,,,,,,,"11,37,38",2021-06-04,2022-10-04,2023-06-20 00:00:00,found in faint-star QLP search,3166,1,False,False,False -411796826,3167.01,,3,4,4,3,3,4,4,53.6,75.8,317.0,3,0,1,PC,PC,12.5526,0.007,,1,qlp-s38-tois,QLP,14:36:40.51,-57:00:35.5,-6.6,0.045,-3.026,0.047,2459355.198773,0.0017833,3.0959309,1e-05,2.545,0.128,15.395808,0.008942,14080.0,8.23554,17.8437,0.901653,914.4,1531.0,24.0,688.505,11.6065,6918.0,134.0,4.28,0.08,1.47,0.06,,,1.51,0.242878,"11,38",2021-06-04,2022-10-04,2023-04-30 00:00:00,found in faint-star QLP search,3167,1,False,False,False -410554986,3168.01,,3,4,3,3,3,4,4,45.6,112.5,125.87,2,0,2,PC,PC,11.7627,0.006,,1,qlp-s38-tois,QLP,14:16:54.14,-55:00:47.68,-34.397,0.082,-26.375,0.114,2459354.56787,0.0009556,5.1745185,1.05e-05,2.441,0.109,11.449531,0.00403,10490.0,3.71184,13.926,0.874896,111.237,904.0,44.0,326.088,5.789,5340.0,136.0,4.14,0.08,1.36,0.08,,,0.92,0.119901,"11,38",2021-06-04,2022-05-26,2022-12-14 12:09:24,found in faint-star QLP search,3168,1,False,False,False -403911354,3169.01,,3,4,3,3,3,4,4,26.9,76.0,124.18,1,0,1,PC,PC,12.6738,0.006,,1,qlp-s37-tois,QLP,12:33:50.09,-50:35:50.84,-1.047,0.032,-2.561,0.023,2459325.552168,0.0015976,4.4814049,1.2e-05,1.689,0.298,11.098469,0.020236,10170.0,18.6375,13.8048,0.951002,156.928,986.0,18.0,684.827,14.654,6232.0,133.5,4.25,0.08,1.37,0.07,,,1.2,0.169581,"10,11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3169,1,False,False,False -400712525,3170.01,,3,4,3,3,3,4,4,24.6,69.9,80.35,2,0,1,PC,PC,12.4163,0.006,,1,qlp-s38-tois,QLP,11:08:22.83,-71:14:03.23,-11.643,1.142,3.131,1.142,2459356.723854,0.000971,1.8923031,6e-06,1.956,0.205,5.224082,0.00324,4800.0,2.98409,,,1728.63,1796.0,32.0,694.986,,6898.3,269.8,,,,,,,,,"11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3170,1,False,False,False -399058051,3171.01,,3,4,3,3,1,4,4,36.8,82.2,118.71,2,0,0,PC,PC,13.5735,0.006,,1,qlp,QLP,10:51:59.16,-69:35:24.41,-0.575,3.01,0.057,3.01,2458621.334289,0.0048473,1.570794,0.0006306,2.607,0.485,11.383698,2.706746,10430.0,2489.9,,,3445.57,2134.0,15.0,811.401,,5164.3,365.6,,,,,,,,,11,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3171,1,False,False,False -398502253,3172.01,,3,4,3,3,1,4,4,15.1,34.6,120.6,0,0,0,PC,PC,13.5411,0.006,,1,qlp,QLP,10:45:17.09,-68:27:38.12,-9.855,0.028,3.017,0.027,2458620.057451,0.0096178,3.0029309,0.0009644,2.859,0.564,5.529597,0.023615,5080.0,21.7498,13.5275,,975.35,1556.0,10.0,1373.41,28.735,6212.0,122.0,3.95,,1.91,,,,1.2,,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3172,1,False,False,False -398466662,3173.01,,3,4,3,3,3,4,4,19.0,63.5,113.37,0,0,1,PC,PC,11.569,0.006,,1,qlp-s38-tois,QLP,11:59:46.66,-59:10:25.17,14.773,0.042,-4.524,0.037,2459347.157497,0.0024482,8.7719993,3.47e-05,4.92,0.138,5.45321,0.00209,5010.0,1.92518,13.7272,1.85739,271.508,1130.0,28.0,590.194,10.5265,6057.7,406.0,,,1.9,0.25,,,,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3173,1,False,False,False -392112968,3174.01,,3,4,3,3,1,4,4,39.4,44.0,317.0,0,0,0,PC,PC,13.2785,0.007,,1,qlp-s38-tois,QLP,11:37:08.93,-67:31:09.61,-3.116,0.054,-0.589,0.043,2459358.666116,0.0025614,1.1960086,7.8e-06,2.35,0.378,12.854916,0.025314,11770.0,23.3145,15.4837,,7334.0,2578.0,18.0,1156.97,39.72,7108.0,122.0,4.26,,1.55,,,,1.58,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3174,1,False,False,False -391510223,3175.01,,3,4,3,3,1,4,4,,,88.6,1,0,0,PC,PC,13.6512,0.006,,1,qlp,QLP,10:46:05.92,-61:52:11.45,,,,,2458621.494928,0.0070756,1.6549485,0.0004104,2.821,0.489,11.723877,0.035576,10740.0,32.7659,,,8082.49,2641.0,10.0,,,7910.0,478.9,,,,,,,,,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3175,1,False,False,False -389999924,3176.01,,3,4,3,3,3,4,4,32.6,98.1,125.37,0,0,1,PC,PC,12.6453,0.006,,1,qlp,QLP,10:40:26.05,-62:41:09.47,1.398,0.027,-3.274,0.027,2458621.256062,0.0104359,4.7607378,0.0016464,5.127,0.912,7.473815,1.716037,6860.0,1579.28,13.8561,5.19765,3781.32,2184.0,12.0,546.557,4.579,6213.0,134.8,4.37,0.08,1.18,0.05,,,1.2,0.168284,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3176,1,False,False,True -383410746,3177.01,,3,4,3,3,3,4,4,84.1,77.8,317.0,4,0,1,PC,PC,12.6967,0.006,,1,qlp-s38-tois,QLP,12:15:48.28,-64:34:02.94,-24.02,0.031,3.233,0.024,2459359.633994,0.0007326,2.114655,4.9e-06,1.945,0.099,26.520082,0.011815,24130.0,10.8821,14.2745,0.867218,360.619,1214.0,42.0,335.166,2.133,5254.0,124.4,4.49,0.08,0.89,0.05,,,0.9,0.110378,"11,12,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3177,1,False,False,False -381996371,3178.01,,3,4,3,3,3,4,4,,,317.0,3,0,1,PC,PC,12.0729,0.6,,1,qlp-s38-tois,QLP,13:54:48.21,-62:41:06.55,-4.341,0.021,-3.419,0.03,2459359.115509,0.0017273,2.9331094,1.59e-05,3.911,0.227,15.759279,0.00594,14410.0,5.47049,,,,,26.0,1937.21,83.71,,,,,,,,,,,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3178,1,False,False,False -378227267,3179.01,,3,4,3,3,3,4,4,60.1,73.8,317.0,2,0,1,PC,PC,12.0974,0.006,,1,qlp-s37-tois,QLP,10:20:34.22,-62:39:03.43,-13.908,1.185,7.738,1.186,2459327.565755,0.00084,4.7076648,8.7e-06,1.834,0.196,18.05305,0.014181,16490.0,13.061,15.3769,,117.31,,46.0,360.136,,5904.0,,,,1.18,,,,,,"10,11,36,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3179,1,False,False,False -372960748,3180.01,,3,4,3,3,3,4,4,31.3,70.0,111.34,1,0,1,PC,PC,12.7602,0.006,,1,qlp-s38-tois,QLP,10:10:33.32,-67:34:40.53,-20.009,0.024,12.576,0.024,2459359.742247,0.00117,2.0963263,5.1e-06,1.217,0.189,7.845579,0.010193,7200.0,9.38815,12.906,0.831496,306.186,1165.0,33.0,716.553,7.1905,5809.0,135.4,4.07,0.08,1.56,0.08,,,1.04,0.132276,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3180,1,False,False,False -372596796,3181.01,TIC 372596796.01,5,5,5,5,5,5,5,42.7,121.5,117.05,0,0,0,PC,FP,12.298,0.006,,1,qlp,QLP,10:05:59.89,-66:53:51,-29.996,0.036,15.555,0.032,2458617.031866,0.0010842,3.5366743,0.0001518,2.697,0.143,14.405143,0.005175,13180.0,4.76601,13.338,0.7167,446.023,1280.0,62.0,455.304,4.1195,5971.0,140.0,4.37,0.08,1.14,0.06,,,1.1,0.14277,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3181,1,False,False,False -372448111,3182.01,,3,4,3,3,3,4,4,5.8,32.9,26.61,0,0,1,PC,PC,12.9615,0.006,,1,qlp-s38-tois,QLP,10:05:14.82,-65:56:31.14,-9.681,0.028,19.931,0.029,2459357.042103,0.0058926,5.0700956,5.63e-05,2.763,0.357,3.883014,0.009213,3570.0,8.48509,5.54459,0.417305,211.546,1062.0,11.0,469.912,3.383,5641.0,130.8,4.47,0.08,0.96,0.05,,,1.0,0.129936,"10,11,36,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3182,1,False,False,False -370385007,3183.01,,3,4,3,3,3,4,4,27.2,36.8,317.0,1,0,1,PC,PC,12.7414,0.007,,1,qlp-s38-tois,QLP,15:03:57.96,-51:10:56.62,-4.613,0.044,-4.54,0.04,2459360.251174,0.0040087,4.2174286,2.9e-05,4.045,0.435,7.68155,0.008489,7050.0,7.81863,18.2265,1.08723,1403.49,1705.0,20.0,1085.05,26.575,6841.0,138.2,3.93,0.09,2.2,0.1,,,1.48,0.259827,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3183,1,False,False,False -366248595,3184.01,,3,4,3,3,3,4,4,21.2,57.8,92.91,0,0,1,PC,PC,12.2859,0.006,,1,qlp-s38-tois,QLP,15:06:35.73,-47:13:30.12,-5.506,0.094,-6.804,0.077,2459358.969705,0.0020681,3.6071588,1.64e-05,3.947,0.254,4.64602,0.008091,4270.0,7.45251,11.5952,0.703375,1086.36,1599.0,23.0,649.368,18.751,6071.0,128.7,4.04,0.08,1.68,0.09,,,1.13,0.150991,"11,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3184,1,False,False,False -363661031,3185.01,,3,4,3,3,3,4,4,37.3,98.8,129.66,2,0,1,PC,PC,11.162,0.007,,1,qlp-s38-tois,QLP,13:20:00.86,-47:42:27.23,-13.929,0.114,-1.935,0.198,2459355.303805,0.0006804,3.5601365,6.3e-06,2.824,0.322,5.038632,0.002354,4630.0,2.16768,14.1499,1.87218,2183.57,1904.0,71.0,554.954,71.3665,6762.0,138.8,4.03,0.14,1.93,0.25,,,1.45,0.249602,"11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3185,1,False,False,False -363632843,3186.01,,3,4,3,3,1,4,4,29.2,50.4,317.0,2,0,0,PC,PC,13.3586,0.006,,1,qlp,QLP,09:51:35.91,-62:47:09.61,-6.217,0.028,3.912,0.03,2458619.884711,0.0038791,3.6131943,0.0002629,1.452,0.324,13.822174,0.06304,12650.0,58.0599,19.2485,,348.727,1203.0,13.0,1403.69,30.415,7520.0,122.0,4.25,,1.64,,,,1.74,,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3186,1,False,False,False -245027119,3187.01,,3,4,3,3,3,4,4,28.8,23.4,317.0,0,0,1,PC,PC,11.1799,0.009,,1,qlp-s38-tois,QLP,13:10:19.19,-48:54:31.99,5.54,0.218,0.544,0.186,2459359.079526,0.0013903,2.0084283,7.4e-06,2.6,0.256,1.423247,0.000536,1310.0,0.49342,16.5313,3.67441,1608.42,1764.0,26.0,1018.11,220.288,5438.8,335.1,4.3,2.0,4.54,1.0,,,1.09,0.1421,"11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3187,1,False,False,False -363202582,3188.01,,3,4,3,3,1,4,4,51.5,62.2,317.0,0,0,0,PC,PC,13.4016,0.006,,1,qlp-s38-tois,QLP,09:48:35.76,-64:33:52.73,-8.802,0.033,6.646,0.029,2459359.2727,0.0012502,1.5659063,3.8e-06,1.169,0.24,7.419155,1.372499,6810.0,1263.32,18.7417,,1827.32,1821.0,20.0,1072.85,18.015,6356.0,122.0,4.13,,1.6,,,,1.26,,"9,10,11,36,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3188,1,False,False,False -361998994,3189.01,,3,4,3,3,1,4,4,26.4,64.9,117.84,0,0,0,PC,PC,13.6447,0.006,,1,qlp,QLP,09:40:56.06,-63:29:13.97,-9.782,0.034,9.692,0.031,2458622.189194,0.004049,1.84996,0.0001401,2.954,0.387,10.19939,0.017767,9350.0,16.3639,13.3315,,2772.81,2021.0,14.0,1049.88,18.82,6320.0,122.0,4.26,,1.37,,,,1.25,,"10,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3189,1,False,False,False -344745774,3190.01,,3,4,3,3,1,4,4,20.5,27.9,317.0,0,0,0,PC,PC,13.3066,0.006,,1,qlp-s37-tois,QLP,10:26:43.37,-66:30:17.62,-6.202,0.028,1.752,0.025,2459330.664125,0.0032558,2.669856,1.5e-05,3.559,0.331,7.058465,0.007287,6480.0,6.71123,16.192,,4573.16,2290.0,19.0,1679.95,44.585,7833.0,125.0,4.1,,2.0,,,,1.86,,"10,11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3190,1,False,False,False -342375120,3191.01,,3,4,3,3,3,4,4,27.6,32.1,317.0,0,0,1,PC,PC,12.1441,0.007,,1,qlp-s38-tois,QLP,13:37:32.54,-66:15:03.78,-15.338,0.037,-5.494,0.041,2459355.803726,0.003173,4.4367891,2.5e-05,2.042,0.218,5.376829,0.010463,4940.0,9.63679,16.9119,1.17619,243.186,1100.0,11.0,864.432,20.97,6426.0,137.5,3.78,0.09,2.42,0.12,,,1.3,0.210056,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3191,1,False,False,False -336613507,3192.01,,3,4,3,3,3,4,4,80.5,137.6,317.0,2,0,1,PC,PC,12.882,0.007,,1,qlp-s38-tois,QLP,13:05:29.76,-66:23:06.59,-11.227,0.024,-5.35,0.025,2459356.6909,0.0011474,2.2350331,5.6e-06,3.102,0.085,22.910196,0.007367,20880.0,6.78553,22.5855,1.03486,2662.36,2001.0,33.0,860.344,14.4995,7057.0,135.5,4.27,0.08,1.51,0.06,,,1.56,0.261734,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3192,1,False,False,False -334757798,3193.01,,3,4,3,3,1,4,4,53.7,124.3,317.0,2,0,0,PC,PC,13.6132,0.006,,1,qlp,QLP,14:15:51.43,-60:50:12.64,-3.321,3.035,-2.882,3.035,2458623.315569,0.0048786,2.3019268,0.0009268,2.527,0.388,13.107639,0.048112,12000.0,44.3117,,,639.638,1401.0,10.0,1907.31,,5322.0,234.9,,,,,,,,,11,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3193,1,False,False,False -333511802,3194.01,,3,4,3,3,1,4,4,37.4,88.8,86.64,3,0,0,PC,PC,13.3682,0.006,,1,qlp-s38-tois,QLP,14:13:17.02,-60:19:51.43,-48.972,0.02,-37.079,0.038,2459353.903239,0.0048168,3.6179419,3.22e-05,4.394,0.959,16.288181,0.216284,14890.0,199.185,11.142,,755.42,1460.0,21.0,293.249,1.917,4460.0,122.0,4.4,,0.87,,,,0.7,,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3194,1,False,False,False -332880327,3195.01,,3,4,3,3,3,4,4,45.0,44.4,317.0,2,0,1,PC,PC,12.594,0.008,,1,qlp-s38-tois,QLP,14:25:05.14,-53:30:17.95,-7.27,0.075,-3.886,0.054,2459360.096224,0.0012918,0.6676722,1.8e-06,1.117,0.155,3.741371,0.005859,3440.0,5.39671,17.2447,1.25472,4517.79,2284.0,19.0,1216.73,50.955,6842.0,135.8,3.71,0.09,2.82,0.17,,,1.48,0.250622,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3195,1,False,False,False -331297805,3196.01,,3,4,3,3,3,4,4,26.7,99.8,70.8,1,0,1,PC,PC,12.4383,0.006,,1,qlp-s38-tois,QLP,14:10:23.16,-60:08:17.97,-13.884,0.02,-13.339,0.035,2459351.787159,0.0015924,4.9816829,1.55e-05,2.587,0.147,12.503399,0.006652,11450.0,6.12652,9.90628,0.562894,170.85,1007.0,22.0,321.341,2.0475,5670.0,131.2,4.52,0.08,0.91,0.05,,,1.01,0.125885,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3196,1,False,False,False -331160996,3197.01,,3,4,4,3,1,4,4,115.5,267.1,317.0,3,0,0,PC,PC,13.5902,0.006,,1,qlp,QLP,14:09:07.81,-62:16:07.29,-6.63,2.969,-5.457,2.969,2458623.463783,0.0032174,2.1972485,0.0005637,2.348,0.334,33.832066,0.067836,30680.0,62.4774,,,480.575,1304.0,20.0,1246.7,,5146.9,119.4,,,,,,,,,11,2021-06-04,2021-06-04,2023-05-09 00:00:00,found in faint-star QLP search,3197,1,False,False,False -121625070,3198.01,,3,4,4,3,3,4,4,55.4,133.4,122.37,3,0,1,PC,PC,12.6029,0.006,,1,qlp-s38-tois,QLP,15:03:02.57,-37:18:11.81,-0.761,0.078,-2.454,0.061,2459359.016777,0.0007597,2.1271199,3e-06,2.386,0.062,16.365334,0.003599,14960.0,3.31509,13.6834,0.793992,789.061,1476.0,53.0,476.319,14.281,5483.2,74.2,4.36,,1.08,0.06,,,1.03,0.124485,"11,38",2021-06-04,2022-10-04,2023-04-23 00:00:00,found in faint-star QLP search,3198,1,False,False,False -330885564,3199.01,,3,4,3,3,1,4,4,23.6,74.8,32.79,2,0,0,PC,PC,13.0904,0.006,,1,qlp-s38-tois,QLP,14:15:50.39,-50:32:19.41,-16.662,0.046,-6.381,0.042,2459359.835275,0.0023248,0.6756067,2.6e-06,1.028,0.193,3.784952,0.012087,3480.0,11.1325,6.27738,,1471.82,1725.0,9.0,439.309,4.1395,5411.0,122.0,4.48,,0.92,,,,0.94,,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search; low SNR,3199,1,False,False,False -330014070,3200.01,,3,4,3,3,3,4,4,,,64.93,1,0,2,PC,PC,11.8912,0.006,,1,qlp-s38-tois,QLP,14:12:19.77,-53:42:17.51,1.072,1.178,6.125,1.177,2459356.723741,0.0014404,6.3087809,1.73e-05,1.535,0.336,8.119016,0.013048,7450.0,12.0177,,,43.1496,714.0,25.0,,,5267.2,282.6,,,,,,,,,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3200,1,False,False,False -329921262,3201.01,,3,4,3,3,3,4,4,,,43.65,2,0,1,PC,PC,11.9963,0.006,,1,qlp,QLP,12:49:18.83,-68:45:01.91,-1.889,3.046,-1.876,3.046,2458622.263645,0.0049905,2.3648698,0.0007631,1.701,0.299,5.082264,0.018137,4670.0,16.7051,,,213.043,1064.0,11.0,,,4883.2,190.1,,,,,,,,,11,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3201,1,False,False,False -329691586,3202.01,,3,4,3,3,3,4,4,20.8,76.7,36.17,0,0,1,PC,PC,12.3574,0.006,,1,qlp-s38-tois,QLP,14:10:11.4,-51:27:10.92,-17.711,0.094,-10.474,0.101,2459358.004096,0.0026459,1.5169786,7.1e-06,1.241,0.44,2.957226,0.201563,2720.0,185.629,6.64263,1.57115,1674.03,1782.0,10.0,373.996,5.626,5828.0,128.0,4.44,0.08,1.02,0.05,,,1.05,0.134368,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3202,1,False,False,False -329609449,3203.01,,3,4,3,3,3,4,4,22.1,69.2,115.02,1,0,1,PC,PC,12.5757,0.007,,1,qlp-s38-tois,QLP,14:10:16.67,-50:06:17.92,-8.03,0.111,-5.251,0.156,2459358.542026,0.0033848,4.2442882,2.73e-05,4.273,0.759,8.20653,0.013572,7530.0,12.5005,13.1653,1.1408,2036.6,1871.0,18.0,813.39,51.2225,6915.0,133.3,4.25,0.1,1.52,0.11,,,1.51,0.258323,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3203,1,False,False,False -326662822,3204.01,,3,4,3,3,1,4,4,43.0,97.6,317.0,1,0,0,PC,PC,13.31,0.006,,1,qlp-s38-tois,QLP,12:34:24.38,-69:45:29.14,-5.209,3.027,5.817,3.027,2459353.157913,0.0028231,4.0446543,2.1e-05,4.735,0.293,12.195915,0.007941,11170.0,7.31415,,,607.949,1383.0,22.0,1656.76,,5172.7,192.5,,,,,,,,,"11,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,3204,1,False,False,False -322862882,3205.01,,3,4,3,3,1,4,4,69.9,155.6,68.14,3,0,0,PC,PC,13.364,0.042,,1,qlp-s38-tois,QLP,14:33:54.34,-24:39:10.16,-139.71,2.0,-14.68,2.0,2459359.464532,0.0006659,1.2361087,1.6e-06,1.139,0.183,21.668949,0.057514,19760.0,52.9706,8.82245,1.3312,272.064,1131.0,51.0,,,4313.2,312.3,,,0.59,0.08,,,,,"11,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3205,1,False,False,False -321802774,3206.01,,3,4,3,3,3,4,4,28.8,35.7,317.0,3,0,1,PC,PC,12.6265,0.008,,1,qlp-s38-tois,QLP,13:44:24.79,-64:29:47.76,-11.167,0.025,-5.154,0.031,2459357.915255,0.0038109,1.9405161,1.34e-05,3.344,0.218,6.457581,0.006909,5930.0,6.36378,15.0354,0.790211,8627.96,2685.0,17.0,1095.74,26.395,8213.0,148.7,4.16,0.08,1.94,0.07,,,2.01,0.321218,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3206,1,False,False,False -320994166,3207.01,,3,4,3,3,1,4,4,,,317.0,0,0,0,PC,PC,13.3096,0.007,,1,qlp-s38-tois,QLP,11:40:48.99,-65:01:36.85,-4.343,0.116,0.325,0.104,2459352.696064,0.002067,4.0996864,1.77e-05,4.806,0.192,22.566494,2.007155,20570.0,1846.95,,,,,45.0,14728.3,4020.6,,,,,,,,,,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search; v-shaped,3207,1,False,False,False -319949055,3208.01,,3,4,3,3,1,4,4,19.7,67.0,93.73,0,0,0,PC,PC,13.3011,0.011,,1,qlp-s38-tois,QLP,11:37:33.44,-65:18:28.57,-5.365,0.069,2.286,0.057,2459356.016126,0.0024078,2.3577049,1.42e-05,3.357,0.31,7.856515,0.008971,7210.0,8.26274,11.6588,,4995.52,2342.0,16.0,964.011,36.242,7822.0,122.0,4.42,,1.39,,,,1.86,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3208,1,False,False,False -319806044,3209.01,,3,4,3,3,1,4,4,,,54.48,0,0,0,PC,PC,13.0789,0.024,,1,qlp-s38-tois,QLP,11:37:58.98,-61:28:15.81,-6.275,0.084,1.776,0.082,2459358.066273,0.0032349,1.3509356,8.4e-06,2.636,0.818,6.599578,0.060575,6060.0,55.7899,,,1788.91,1811.0,16.0,6817.48,1976.28,4297.6,490.4,,,,,,,,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3209,1,False,False,False -318668441,3210.01,,3,4,4,3,3,4,4,114.2,197.9,317.0,3,0,1,PC,PC,12.7521,0.007,,1,qlp-s38-tois,QLP,11:33:21.68,-63:20:30.83,-7.716,0.035,-4.179,0.034,2459359.908764,0.0011532,2.2364485,5.3e-06,2.49,0.187,19.036001,0.624522,17380.0,575.041,24.5257,4.11384,3957.51,2209.0,48.0,709.721,11.433,6905.0,137.7,4.26,0.09,1.51,0.07,,,1.5,0.253217,"10,11,37,38",2021-06-04,2022-09-20,2023-05-03 00:00:00,found in faint-star QLP search,3210,1,False,False,True -323002911,3211.01,,3,4,3,3,1,4,4,23.6,70.1,93.92,1,0,0,PC,PC,12.4531,0.006,,1,qlp-s39-tois,QLP,08:22:44.34,-79:58:04.41,-5.958,0.036,20.068,0.041,2459384.246737,0.0017927,3.5949457,1.54e-05,2.153,0.295,6.326524,0.002582,5810.0,2.37803,11.7369,0.630303,428.368,1267.0,38.0,622.381,8.804,6131.0,134.0,4.24,0.08,1.36,0.07,,,1.16,0.157043,"11,12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3211,1,False,False,False -316236118,3212.01,,3,4,3,3,1,4,4,49.9,131.6,117.05,0,0,0,PC,PC,13.3216,0.006,,1,qlp-s38-tois,QLP,11:27:34.59,-65:08:39.92,-7.542,0.031,7.308,0.026,2459353.453378,0.0010974,4.1943867,8.5e-06,2.977,0.285,30.677967,0.024105,27860.0,22.2016,13.2866,,140.213,958.0,48.0,272.762,1.408,4515.0,122.0,4.53,,0.76,,,,0.71,,"10,11,37,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3212,1,False,False,True -314013231,3213.01,,3,4,3,3,1,4,4,105.4,253.9,317.0,2,0,0,PC,PC,13.0427,0.008,,1,qlp-s38-tois,QLP,12:16:10.63,-66:03:18.29,,,,,2459357.529536,0.0010584,2.5395579,7.7e-06,3.082,0.159,26.597966,0.013355,24200.0,12.3007,,,199.853,1047.0,44.0,1181.83,,3931.6,225.1,,,,,,,,,"11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3213,1,False,False,False -312508092,3214.01,,3,4,3,3,3,4,4,27.4,90.2,92.45,3,0,1,PC,PC,11.7696,0.006,,1,qlp-s38-tois,QLP,14:02:42.85,-52:51:47.68,-14.115,0.113,-8.239,0.142,2459355.374217,0.0017431,5.7759952,3.2e-05,3.594,0.15,9.848732,0.004374,9030.0,4.02903,11.5628,0.665339,313.194,1171.0,24.0,392.044,10.0935,5992.0,133.6,4.24,0.08,1.31,0.07,,,1.1,0.151946,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3214,1,False,False,False -307888842,3215.01,,3,4,3,3,3,4,4,36.3,87.8,114.13,0,0,1,PC,PC,12.9273,0.009,,1,qlp-s38-tois,QLP,12:00:12.02,-61:39:22.17,-10.035,2.898,13.157,2.898,2459359.494759,0.0022475,1.2008331,5.6e-06,1.584,0.461,6.315603,0.044186,5800.0,40.6964,,,,,15.0,868.982,,,,,,,,,,,,"10,11,37,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3215,1,False,False,False -306547699,3216.01,,3,4,3,3,1,4,4,,,107.69,0,0,0,PC,PC,13.1235,0.017,,1,qlp-s38-tois,QLP,11:57:49.88,-62:19:39.17,-6.864,0.092,0.657,0.083,2459356.241304,0.0028017,2.6985136,1.96e-05,4.856,0.217,14.768282,0.009791,13510.0,9.01793,,,457.995,1288.0,24.0,7186.76,2210.35,3922.8,331.1,,,,,,,,,"10,11,37,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3216,1,False,False,False -309436531,3217.01,,5,5,5,5,5,5,5,28.5,87.8,85.94,1,0,0,EB,FP,12.3297,0.006,,1,qlp,QLP,09:15:13.41,-79:46:27.78,7.514,0.031,-2.005,0.034,2459383.966929,0.0006479,3.2136333,4.2e-06,1.875,0.175,8.512886,0.004306,7810.0,3.96589,11.1273,0.583107,362.609,1215.0,65.0,522.663,4.9445,6189.4,119.1,4.32,0.08,1.25,0.06,-0.347252,0.0744037,1.19,0.166012,"11,12,13,37",2021-06-04,2021-08-20,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; TFOP FP; retired as EB,3217,1,False,False,False -305739565,3218.01,,3,4,3,3,3,4,4,20.1,44.7,122.57,1,0,1,PC,PC,12.885,0.006,,1,qlp-s37-tois,QLP,13:44:06.37,-32:31:22.71,-20.441,0.059,1.595,0.072,2459329.334304,0.003743,3.3704313,2.3e-05,4.608,0.457,6.108129,0.00584,5610.0,5.37847,13.6938,0.923101,1466.04,1723.0,21.0,942.122,28.733,5765.0,132.2,3.92,0.08,1.85,0.11,,,1.03,0.12433,"11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3218,1,False,False,False -305492348,3219.01,,3,4,3,3,3,4,4,26.5,37.6,317.0,0,0,1,PC,PC,12.8427,0.006,,1,qlp-s38-tois,QLP,11:54:18.1,-62:22:30.54,-9.936,0.033,2.258,0.027,2459358.273636,0.0020094,3.2969977,1.66e-05,3.856,0.194,9.662491,0.005659,8860.0,5.21217,17.145,0.892617,2202.26,1908.0,24.0,1227.81,29.805,7108.0,132.3,4.11,0.09,1.83,0.08,,,1.58,0.275601,"10,11,37,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3219,1,False,False,False -304950588,3220.01,,3,4,3,3,3,4,4,,,317.0,0,0,2,PC,PC,13.2566,0.029,,1,qlp-s38-tois,QLP,11:53:25.7,-61:05:51.84,-6.257,0.031,0.371,0.026,2459350.857352,0.0051725,7.4316274,6.59e-05,3.868,0.446,15.021451,0.022768,13740.0,20.9701,,,25.9699,628.0,14.0,3327.99,244.17,3505.0,222.6,,,,,,,,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3220,1,False,False,False -303883880,3221.01,,5,5,5,5,5,5,5,,,97.84,2,0,0,PC,FP,13.3733,0.028,,1,qlp-s38-tois,QLP,11:50:45.3,-62:45:09.54,-5.306,0.03,0.549,0.027,2459359.59881,0.0013838,0.8970184,2.7e-06,2.434,0.27,13.184566,0.010533,12070.0,9.70076,,,,,31.0,2275.78,102.235,,,,,,,,,,,"10,11,37,38",2021-06-04,2022-10-04,2023-05-26 12:03:12,found in faint-star QLP search,3221,1,False,False,False -303686889,3222.01,,3,4,3,3,3,4,4,10.1,30.8,96.39,0,0,1,PC,PC,12.8239,0.006,,1,qlp-s38-tois,QLP,09:18:23.95,-66:38:45.94,-6.668,0.023,7.865,0.022,2459359.939605,0.0028074,5.6320791,2.84e-05,4.728,0.305,3.915703,0.002028,3600.0,1.86746,11.8957,0.621489,817.311,1489.0,25.0,1100.93,15.24,6409.0,135.0,3.95,0.09,2.0,0.09,,,1.29,0.197607,"9,10,11,36,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3222,1,False,False,False -297668572,3223.01,,3,4,3,3,1,4,4,,,317.0,2,0,0,PC,PC,13.2272,0.009,,1,qlp-s38-tois,QLP,12:02:25.54,-66:31:44.99,-4.84,0.026,0.878,0.025,2459358.775725,0.0010359,4.633735,1.22e-05,5.755,0.267,53.533089,0.013654,48110.0,12.5759,,,196.033,1042.0,77.0,2825.07,129.43,3905.6,236.5,,,,,,,,,"11,37,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3223,1,False,False,False -297457992,3224.01,,3,4,3,3,1,4,4,40.4,48.5,317.0,2,0,0,PC,PC,13.0791,0.006,,1,qlp-s38-tois,QLP,12:00:58.1,-69:56:44.94,-15.2,0.029,1.013,0.027,2459358.053478,0.0010724,2.8317721,7.7e-06,2.607,0.129,14.053124,0.0075,12860.0,6.90772,17.0328,,703.307,1434.0,36.0,833.486,13.39,6084.0,122.0,4.15,,1.48,,,,1.14,,"11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3224,1,False,False,False -401952328,3225.01,,3,4,3,3,3,4,4,,,30.9,1,0,1,PC,PC,10.7188,0.006,,1,qlp-s38-tois,QLP,14:41:18.39,-61:36:42.47,-5.448,4.155,-12.817,4.154,2459357.363999,0.0031737,9.1509453,5.34e-05,3.522,0.827,3.381901,0.016272,3110.0,14.9871,,,101.474,884.0,12.0,,,4474.0,197.6,,,,,,,,,"11,12,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3225,1,False,False,False -295233473,3226.01,,3,4,3,3,1,4,4,12.7,38.1,39.53,1,0,0,PC,PC,13.4461,0.006,,1,qlp-s38-tois,QLP,11:21:14.48,-66:10:20.43,-19.225,0.036,10.819,0.033,2459360.08512,0.0046012,2.3720554,2.12e-05,3.366,0.323,4.733255,0.006962,4350.0,6.41249,7.05055,,661.224,1412.0,14.0,419.587,3.335,4668.0,122.0,4.22,,1.11,,,,0.74,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3226,1,False,False,False -294385899,3227.01,,3,4,3,3,3,4,4,12.0,50.9,74.6,0,0,1,PC,PC,12.6795,0.006,,1,qlp-s38-tois,QLP,11:15:59.57,-69:19:05.85,-23.176,2.936,5.746,2.936,2459342.94518,0.0052065,8.9522767,8.73e-05,4.508,0.964,6.839923,0.060079,6280.0,55.3337,,,369.297,1221.0,17.0,528.262,,5317.7,54.1,,,,,,,,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3227,1,False,False,False -294365631,3228.01,,3,4,4,3,3,4,4,56.5,59.8,317.0,1,0,1,PC,PC,12.0317,0.006,,1,qlp-s38-tois,QLP,11:15:27.57,-66:50:14.62,-13.612,0.043,-1.499,0.039,2459358.150133,0.0009555,1.8118703,3.6e-06,1.368,0.218,5.998949,0.006877,5510.0,6.33367,18.0792,1.11733,772.444,1468.0,29.0,769.274,17.0725,6222.0,134.1,3.81,0.09,2.25,0.12,,,1.2,0.168674,"10,11,37,38",2021-06-04,2022-10-04,2023-04-09 00:00:00,found in faint-star QLP search,3228,1,False,False,False -290263093,3229.01,,3,4,3,3,1,4,4,24.8,45.2,317.0,1,0,0,PC,PC,13.0502,0.009,,1,qlp-s38-tois,QLP,11:34:50,-64:43:54.08,-9.412,0.028,0.617,0.025,2459355.167116,0.0036489,5.21228,3.46e-05,3.863,0.232,9.761085,0.008898,8950.0,8.19561,19.3512,,1823.95,1820.0,18.0,1295.58,29.585,8532.0,122.0,4.14,,2.06,,,,2.12,,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3229,1,False,False,False -289445553,3230.01,,3,4,4,3,3,4,4,78.0,182.1,96.14,3,0,1,PC,PC,12.1896,0.006,,1,qlp-s38-tois,QLP,14:37:17.06,-48:03:05.75,-25.252,0.068,-2.113,0.066,2459357.488406,0.000454,1.8200065,1.8e-06,2.059,0.044,17.236441,0.003817,15750.0,3.51517,11.7988,0.780822,457.836,1288.0,83.0,254.27,2.2405,4994.0,130.4,4.43,0.09,0.91,0.06,,,0.83,0.0966527,"11,38",2021-06-04,2022-10-04,2023-06-13 00:00:00,V-shaped; found in faint-star QLP search,3230,1,False,False,False -280857321,3231.01,,3,4,3,3,3,4,4,27.7,35.5,317.0,0,0,1,PC,PC,11.627,0.007,,1,qlp-s38-tois,QLP,11:33:17.38,-67:26:57.42,-14.793,0.048,0.872,0.049,2459360.222809,0.0026116,2.1738256,8.6e-06,2.081,0.174,2.968113,0.003432,2730.0,3.16059,17.3093,1.00412,2159.42,1899.0,20.0,1206.09,37.245,7588.0,142.1,3.65,0.09,3.28,0.15,,,1.76,0.291698,"10,11,37,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3231,1,False,False,False -269439355,3232.01,,3,4,3,3,3,4,4,24.4,21.8,317.0,0,0,1,PC,PC,11.3983,0.006,,1,qlp,QLP,09:52:00.1,-63:04:30.69,-11.026,0.05,7.908,0.048,2458621.03022,0.0068847,3.3898234,0.0006084,1.587,0.51,1.999595,0.016645,1840.0,15.3306,14.9878,1.53379,229.032,1083.0,12.0,825.812,18.099,6096.0,128.6,3.5,0.08,3.13,0.15,,,1.14,0.154705,"9,11",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3232,1,False,False,False -265633507,3233.01,,3,4,3,3,3,4,4,46.8,54.1,317.0,0,0,1,PC,PC,12.8299,0.007,,1,qlp-s37-tois,QLP,11:38:16.75,-56:57:45.4,-8.539,0.053,2.038,0.059,2459331.769405,0.00241,0.9787891,4.6e-06,1.754,0.242,7.375428,0.013324,6770.0,12.2714,17.8038,1.35551,5251.58,2371.0,13.0,1251.25,64.14,6959.0,135.0,3.98,0.1,2.09,0.13,,,1.52,0.264579,"10,11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3233,1,False,False,False -260776145,3234.01,,3,4,3,3,3,4,4,47.5,112.4,317.0,3,0,1,PC,PC,12.5913,0.008,,1,qlp-s37-tois,QLP,12:36:43.76,-52:03:25.31,2.173,1.187,-5.451,1.159,2459321.376877,0.0012166,10.7012764,2e-05,4.428,0.279,27.76689,0.011723,25250.0,10.7973,19.1102,0.942423,152.102,978.0,79.0,655.714,,5853.2,131.5,,,1.17,0.05,,,,,"10,11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3234,1,False,False,False -243641947,3235.01,,3,4,3,3,1,4,4,103.6,371.3,85.68,5,0,0,PC,PC,13.2486,0.008,,1,qlp-s38-tois,QLP,13:49:53.72,-46:03:59.45,-170.376,0.142,-64.023,0.127,2459355.554021,0.0002062,2.5926199,1.2e-06,1.269,0.034,88.420019,0.019327,78210.0,17.8007,11.0137,0.376723,13.8883,537.0,143.0,72.811,0.5308,3375.0,157.0,4.85,,0.37,0.01,,,0.359832,0.0204014,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3235,1,False,False,False -242460075,3236.01,,5,5,5,5,5,5,5,30.2,75.5,117.18,0,0,0,EB,FP,12.9841,0.006,,1,qlp,QLP,14:17:16.35,-44:20:22.88,-21.078,0.054,-1.64,0.046,2459356.489051,0.0015898,2.9098435,1.01e-05,1.928,0.204,10.341878,0.007864,9480.0,7.2433,13.2842,0.815267,378.481,1228.0,20.0,717.079,17.113,5955.0,134.1,4.24,0.08,1.31,0.07,,,1.09,0.13647,11,2021-06-04,2021-10-05,2022-12-14 12:09:24,found in faint-star QLP search; TFOP FP; retired as EB,3236,1,False,False,False -242389810,3237.01,,3,4,3,3,3,4,4,59.9,104.6,317.0,2,0,1,PC,PC,13.086,0.006,,1,qlp-s38-tois,QLP,14:13:59.83,-44:21:59.54,2.17,0.056,-1.041,0.05,2459357.130531,0.0007883,3.0271374,5e-06,3.7,0.096,24.274987,0.003946,22110.0,3.63396,22.466,,1651.47,1775.0,52.0,1016.11,39.4575,6678.0,123.0,4.24,,1.49,,,,1.41,,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3237,1,False,False,False -241752370,3238.01,,3,4,3,3,1,4,4,,,92.86,1,0,0,PC,PC,13.534,0.007,,1,qlp,QLP,13:55:33.44,-52:31:28.24,13.087,2.891,12.795,2.891,2458619.089332,0.0024722,3.224746,0.0006871,3.621,0.264,12.393573,0.009529,11350.0,8.77638,,,500.144,1317.0,24.0,,,5032.0,204.4,,,,,,,,,11,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3238,1,False,False,True -241569046,3239.01,,3,4,3,3,1,4,4,27.4,60.6,128.39,1,0,0,PC,PC,13.5286,0.006,,1,qlp,QLP,13:47:55.47,-49:43:18.9,-29.974,0.056,-5.647,0.07,2458621.942066,0.0049693,2.2290958,0.0009706,2.892,0.315,10.528235,0.022144,9650.0,20.3954,14.0879,,1355.47,1690.0,14.0,967.034,34.1805,5905.0,122.0,4.16,,1.43,,,,1.07,,11,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3239,1,False,False,False -241514551,3240.01,,3,4,4,3,3,4,4,35.1,119.6,79.41,4,0,1,PC,PC,12.8713,0.006,,1,qlp-s38-tois,QLP,13:45:18.51,-50:28:49.87,-3.74,0.055,5.861,0.056,2459357.914411,0.0009945,3.8600722,8e-06,1.93,0.088,18.572026,0.011156,16960.0,10.2751,10.5393,0.762034,97.2691,874.0,38.0,304.365,3.3155,5096.5,131.3,4.59,0.09,0.77,0.05,0.30655,0.0775575,0.86,0.104252,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3240,1,False,False,True -241326434,3241.01,,3,4,4,3,3,4,4,74.4,125.5,317.0,2,0,1,PC,PC,11.7754,0.006,,1,qlp-s38-tois,QLP,13:36:33.16,-51:02:39.63,1.593,0.079,-13.716,0.074,2459351.726265,0.0003328,6.8380862,4.6e-06,2.445,0.058,37.613383,0.006314,34050.0,5.81563,17.4994,0.840541,82.8358,840.0,151.0,300.417,3.94,5912.0,127.8,4.51,0.08,0.96,0.04,,,1.08,0.131138,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3241,1,False,False,False -209923610,3242.01,,3,4,3,3,3,4,4,41.1,49.2,317.0,3,0,1,PC,PC,12.3666,0.006,,1,qlp-s38-tois,QLP,14:04:43.45,-55:26:51.71,-10.441,0.062,-2.561,0.087,2459356.230477,0.0015835,3.0001627,1.11e-05,2.892,0.154,11.570235,0.006732,10600.0,6.20059,15.0659,0.848819,1151.61,1622.0,24.0,676.235,18.4875,6695.0,138.7,4.27,0.09,1.45,0.07,,,1.42,0.24017,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3242,1,False,False,False -209707800,3243.01,,3,4,3,3,3,4,4,,,317.0,1,0,3,PC,PC,11.7219,0.006,,1,qlp-s38-tois,QLP,14:03:32.22,-55:26:35.2,-11.3,4.6,-2.8,4.3,2459359.347516,0.0007701,2.0519085,2.9e-06,1.778,0.233,11.263015,0.00681,10320.0,6.27206,14.7471,0.751844,1024.7,1576.0,34.0,,,6386.3,144.6,,,1.42,0.06,,,,,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search; raw light curve also shows transits from a nearby object (likely an EB),3243,1,False,False,False -208091447,3244.01,,3,4,3,3,3,4,4,32.1,61.2,317.0,0,0,1,PC,PC,12.3921,0.014,,1,qlp,QLP,13:51:34.22,-59:45:45.85,-8.286,0.029,-5.243,0.047,2458620.951574,0.0047634,4.6606892,0.0017508,2.863,0.367,6.938262,0.016521,6370.0,15.2159,21.5363,1.43902,1436.15,1715.0,10.0,1206.98,44.375,8608.0,210.9,3.94,0.07,2.6,0.11,,,2.15,0.324649,11,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3244,1,False,False,False -203476998,3245.01,,3,4,3,3,3,4,4,39.6,47.3,317.0,1,0,1,PC,PC,12.6561,0.008,,1,qlp-s38-tois,QLP,14:31:12.44,-23:03:17.3,4.19,0.073,-1.987,0.086,2459354.766143,0.0011606,2.8977031,7.2e-06,4.148,0.12,11.054594,0.003091,10130.0,2.8471,17.057,0.941119,2102.4,1886.0,31.0,881.501,27.3605,6397.0,123.4,4.1,0.09,1.67,0.09,,,1.28,0.204021,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3245,1,False,False,False -179715231,3246.01,,3,4,3,3,3,4,4,33.6,93.7,114.39,2,0,1,PC,PC,12.2936,0.006,,1,qlp-s38-tois,QLP,14:14:09.28,-37:33:30.18,-8.519,0.067,14.559,0.075,2459351.899577,0.0010464,4.319754,8.2e-06,2.78,0.295,11.910472,0.006574,10910.0,6.05497,13.1542,0.774706,335.6,1192.0,48.0,486.177,9.089,5783.0,137.3,4.26,0.08,1.25,0.07,,,1.04,0.128742,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3246,1,False,False,False -167597352,3247.01,,3,4,3,3,3,4,4,18.4,20.0,317.0,1,0,1,PC,PC,12.8813,0.006,,1,qlp-s38-tois,QLP,14:24:52.66,-38:00:51.7,-3.86,0.049,4.582,0.046,2459350.579902,0.0043561,5.3305676,4.82e-05,2.887,0.427,6.337445,0.011762,5820.0,10.8327,15.5434,1.07433,277.237,1136.0,13.0,1100.56,28.725,6076.0,130.3,3.89,0.08,2.01,0.1,,,1.14,0.155626,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3247,1,False,False,False -165667705,3248.01,,3,4,3,3,3,4,4,26.6,68.3,99.14,1,0,1,PC,PC,12.6831,0.006,,1,qlp-s37-tois,QLP,13:35:23.22,-38:17:02.33,6.439,0.046,-0.056,0.042,2459329.066407,0.0014541,3.2782956,9.6e-06,3.38,0.141,9.027321,0.002951,8280.0,2.71814,12.1111,0.704797,622.203,1391.0,36.0,576.031,9.021,5544.0,130.5,4.19,0.08,1.32,0.07,,,0.98,0.127227,"11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3248,1,False,False,False -159262969,3249.01,,3,4,3,3,1,4,4,23.7,62.5,104.36,2,0,0,PC,PC,13.3359,0.006,,1,qlp-s38-tois,QLP,14:38:16.41,-40:45:03.89,10.281,0.064,-10.194,0.049,2459360.094698,0.00222,3.2420704,1.54e-05,2.535,0.176,11.570235,0.011244,10600.0,10.3563,12.4447,,368.009,1220.0,19.0,691.946,19.702,5570.7,72.9,4.26,,1.21,,0.0190117,0.0820414,0.98,,"11,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3249,1,False,False,False -125424836,3250.01,,3,4,3,3,3,4,4,40.8,110.1,92.46,1,1,1,PC,PC,12.0858,0.009,,1,qlp-s37-tois,QLP,14:00:23.1,-22:20:32.42,-27.257,0.154,8.78,0.148,2459330.610153,0.0007653,3.2806578,4.4e-06,2.93,0.153,10.714625,0.00205,9820.0,1.8882,11.5452,0.80253,535.248,1340.0,67.0,410.674,18.4995,5717.0,129.4,4.3,0.08,1.18,0.08,,,1.02,0.127426,"11,37",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3250,1,False,False,False -121194926,3251.01,,3,4,3,3,3,4,4,16.9,48.2,67.96,1,0,1,PC,PC,12.27,0.021,,1,qlp-s38-tois,QLP,14:59:09.09,-40:52:14.32,,,,,2459357.470311,0.0021711,2.0694143,8.7e-06,1.768,0.261,3.153209,0.00678,2900.0,6.2446,,,,,15.0,728.917,,,,,,,,,,,,"11,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3251,1,False,False,False -112037211,3252.01,,3,4,3,3,3,4,4,24.4,90.9,60.92,2,0,1,PC,PC,12.4299,0.006,,1,qlp-s38-tois,QLP,13:56:44.52,-35:17:19.87,-47.847,0.057,-46.207,0.055,2459352.703569,0.0011471,4.3636327,9.6e-06,2.407,0.124,11.361755,0.005763,10410.0,5.30784,9.0556,0.611414,121.921,925.0,35.0,280.347,2.73,5042.0,124.9,4.48,0.09,0.87,0.05,,,0.84,0.100983,"11,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3252,1,False,False,False -112037203,3253.01,,5,5,5,5,5,5,5,31.8,97.6,85.49,1,0,0,PC,FP,13.2041,0.006,,1,qlp,QLP,13:56:44.04,-35:17:32.79,-47.7,0.055,-46.082,0.051,2458619.606193,0.0022976,4.3622356,0.0008529,2.645,0.229,20.462311,0.019354,18670.0,17.8254,11.0608,,89.5299,856.0,20.0,277.718,2.53,4486.0,122.0,4.5,,0.78,,,,0.7,,11,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3253,1,False,False,False -107506563,3254.01,,3,4,4,3,1,4,4,49.6,111.5,116.84,4,0,0,PC,PC,13.201,0.019,,1,qlp-s38-tois,QLP,14:10:55.51,-31:14:24.26,-2.688,2.176,-12.038,2.176,2459357.815759,0.0009827,1.6832809,3.4e-06,2.356,0.098,13.580278,0.00526,12430.0,4.845,,,,,39.0,555.221,,5286.9,1232.7,,,,,,,,,"11,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3254,1,False,False,False -83395136,3255.01,,3,4,3,3,1,4,4,28.9,84.2,51.22,3,0,0,PC,PC,13.2494,0.008,,1,qlp-s38-tois,QLP,14:19:52.11,-28:55:15.93,-24.857,0.063,5.741,0.07,2459359.36326,0.0013106,2.2458338,5.9e-06,1.462,0.226,11.219134,0.017012,10280.0,15.6688,8.19934,,121.462,924.0,24.0,256.899,2.291,4377.0,122.0,4.51,,0.76,,,,0.68,,"11,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3255,1,False,False,False -322901324,3256.01,,3,4,3,3,3,4,4,7.5,42.8,34.22,1,0,1,PC,PC,12.5755,0.006,,1,qlp-s39-tois,QLP,08:17:17.11,-78:00:53.8,0.288,0.026,7.521,0.032,2459379.229157,0.0017534,6.3096313,2.25e-05,2.761,0.168,4.755065,0.002583,4370.0,2.37898,6.46255,0.345506,148.356,972.0,27.0,426.474,2.661,5829.0,134.6,4.5,0.08,0.96,0.05,,,1.05,0.136262,"10,11,12,30,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3256,1,False,False,False -76505260,3257.01,,5,5,5,5,5,5,5,144.6,269.4,317.0,0,0,0,PC,FP,13.2608,0.006,,1,qlp,QLP,15:14:44.25,-31:54:07.94,-12.355,0.09,-0.119,0.082,2459356.441741,0.0017639,2.5336422,9e-06,2.865,0.172,14.526176,3.722251,13290.0,3422.45,29.183,,3022.37,2065.0,27.0,761.766,29.158,6038.0,122.0,4.22,,1.36,,,,1.12,,11,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; TFOP FP; retired as EB,3257,1,False,False,False -369789627,3258.01,,3,4,3,3,1,4,4,,,23.56,0,0,0,PC,PC,12.6593,0.007,,1,qlp-s38-tois,QLP,10:28:03.47,-85:31:44.83,-12.812,1.217,20.454,1.216,2459360.104827,0.0024386,1.227961,5.2e-06,1.69,0.153,2.456541,0.00218,2260.0,2.00798,,,560.674,1355.0,18.0,,,4508.0,211.0,,,,,,,,,"11,12,13,38",2021-06-04,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3258,1,False,False,False -68523365,3259.01,,3,4,3,3,3,4,4,34.1,106.1,88.75,1,0,1,PC,PC,12.9104,0.006,,1,qlp-s38-tois,QLP,13:31:10.28,-58:17:20.62,-18.556,0.062,0.833,0.063,2459359.440143,0.0015676,3.4470312,1.05e-05,2.677,0.101,16.674001,0.010099,15240.0,9.30163,11.2549,0.68199,352.463,1207.0,32.0,411.798,7.4315,5629.0,133.5,4.53,0.08,0.9,0.05,,,1.0,0.12524,"11,38",2021-06-04,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,3259,1,False,False,False -370138999,3260.01,TIC 370138999.01,3,4,3,3,3,4,4,8.4,37.0,67.54,0,0,1,PC,PC,12.1225,0.006,,1,qlp-s39-tois,QLP,03:15:08.63,-75:43:19.45,5.395,0.035,25.123,0.036,2459365.448337,0.0041449,11.4520097,8.49e-05,3.017,0.406,1.629827,0.045704,1500.0,42.0936,9.64471,1.17421,296.562,1156.0,13.0,599.768,6.6425,6193.0,137.8,4.15,0.08,1.52,0.07,,,1.19,0.163218,"1,2,9,13,27,28,29",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; CTOI from Montalto et al (2020),3260,1,False,False,False -358070912,3261.01,,3,4,3,3,3,4,4,13.2,57.0,16.45,0,0,1,PC,PC,12.4923,0.006,,1,qlp,QLP,03:10:54.85,-73:31:55.1,50.289,0.022,34.587,0.022,2459112.39739,0.0012631,0.8831279,2.4e-06,1.464,0.297,2.304204,0.00196,2120.0,1.80485,4.18389,0.279735,1965.36,1854.0,27.0,300.141,1.078,5151.4,124.0,4.51,0.08,0.86,0.05,0.265233,0.0715413,0.87,0.107478,"2,6,13,27,28,29",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3261,1,False,False,False -280096473,3262.01,,3,4,3,3,3,4,4,12.5,64.5,74.77,3,0,1,PC,PC,12.0461,0.006,,1,qlp,QLP,03:05:26.46,-74:28:22,15.007,0.135,0.936,0.106,2459078.683975,0.0009492,12.8770898,2.63e-05,1.448,0.303,8.009633,0.009137,7350.0,8.4151,10.2485,0.636913,13.0291,529.0,28.0,404.221,10.6505,5953.0,125.8,4.39,0.08,1.11,0.06,,,1.09,0.146138,"1,2,13,27,28",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3262,1,False,False,False -469821652,3263.01,,3,4,3,3,3,4,4,10.3,42.2,47.81,0,0,1,PC,PC,11.7593,0.006,,1,qlp,QLP,20:02:30.02,-74:20:40.22,-11.704,0.038,3.11,0.049,2459051.810682,0.0031621,5.6155837,6.36e-05,4.495,0.539,2.924566,0.003085,2690.0,2.84121,7.87868,0.462072,627.845,1394.0,19.0,480.702,6.7325,5998.0,125.3,4.13,0.08,1.51,0.07,,,1.11,0.139687,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3263,1,False,False,False -468055102,3264.01,,3,4,3,3,3,4,4,28.0,32.5,317.0,1,0,1,PC,PC,12.6347,0.006,,1,qlp,QLP,19:05:55.65,-35:48:56.79,-5.13,0.065,-6.863,0.059,2459057.259668,0.001376,3.3133491,1.96e-05,3.881,0.15,9.70631,0.002863,8900.0,2.63721,14.7466,0.788645,1705.48,1790.0,30.0,867.089,25.175,6690.0,131.0,4.21,0.09,1.56,0.08,,,1.42,0.230335,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3264,1,False,False,False -466167563,3265.01,,3,4,3,3,3,4,4,23.1,68.7,91.85,2,0,1,PC,PC,12.599,0.006,,1,qlp,QLP,19:56:21.42,-60:10:37.79,3.321,3.312,-5.354,3.31,2459060.244413,0.0018611,3.3792968,2.35e-05,1.196,0.259,7.27705,0.027639,6680.0,25.4558,,,138.369,955.0,15.0,637.042,,6125.1,340.5,,,,,,,,,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3265,1,False,False,False -451566438,3266.01,,3,4,4,3,1,4,4,91.7,123.0,317.0,2,0,0,PC,PC,12.2613,0.007,,1,qlp-s39-tois,QLP,18:03:48.1,-86:18:33.25,21.685,1.105,-12.002,1.105,2459383.430313,0.0012154,3.7462806,6.9e-06,2.078,0.112,7.26612,1.341039,6670.0,1234.38,17.5312,,819.165,,43.0,334.472,,5737.0,,,,1.12,,,,,,"12,13,27,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3266,1,False,False,False -410372968,3267.01,,3,4,4,3,3,4,4,20.9,57.1,84.97,2,0,1,PC,PC,12.8058,0.006,,1,qlp,QLP,19:23:39.24,-70:36:34.29,-8.393,0.022,-23.077,0.026,2459060.508537,0.0021656,2.7674682,1.85e-05,2.997,0.203,6.250081,0.003024,5740.0,2.78513,11.0509,0.662179,932.409,1539.0,23.0,714.829,9.3005,5890.0,134.4,4.17,0.08,1.41,0.08,0.0116067,0.0880616,1.07,0.133769,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3267,1,False,False,False -410358456,3268.01,,3,4,3,3,1,4,4,27.5,92.9,38.57,2,0,0,PC,PC,11.9039,0.006,,1,qlp-s39-tois,QLP,04:00:13.81,-87:54:42.99,36.876,0.042,43.805,0.046,2459387.334771,0.0010604,1.8641295,3.6e-06,1.42,0.077,4.493376,0.004039,4130.0,3.71993,6.95296,0.469238,302.749,1162.0,41.0,272.053,1.6925,5293.0,135.2,4.38,0.09,1.02,0.06,,,0.91,0.115441,"12,13,27,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3268,1,False,False,False -410314178,3269.01,,1,4,1,1,3,4,4,12.2,48.3,47.69,3,1,2,PC,PC,12.839,0.007,,1,qlp-s39-tois,QLP,02:30:27.26,-84:03:12.18,18.107,1.227,19.593,1.227,2459385.660727,0.0019111,4.132031,1.48e-05,1.354,0.18,4.591502,0.007375,4220.0,6.79235,3.73783,0.704389,76.3127,823.0,18.0,489.606,,5657.6,551.2,,,0.53,0.1,,,,,"1,12,13,27,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3269,1,False,False,False -407922734,3270.01,,3,4,4,3,3,4,4,,,317.0,2,0,1,PC,PC,12.2017,0.007,,1,qlp-s39-tois,QLP,19:22:42.4,-76:19:20.39,,,,,2459384.723497,0.0015441,6.4751256,2.18e-05,2.217,0.09,25.819381,0.018676,23500.0,17.201,,,37.2725,688.0,18.0,,,4899.8,76.1,,,,,,,,,"13,27,39",2021-06-04,2023-01-24,2023-01-24 00:00:00,found in faint-star QLP search; no stellar radius,3270,1,False,False,False -406236094,3271.01,,3,4,3,3,3,4,4,33.7,29.4,317.0,1,0,2,PC,PC,11.059,0.021,,1,qlp,QLP,19:31:52.53,-52:38:44.35,,,,,2459052.565337,0.0011058,4.1394473,1.65e-05,2.94,0.206,4.427963,0.001568,4070.0,1.44436,12.776,,454.749,,42.0,365.226,,6014.9,,,,1.96,,0.15,0.12,,,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3271,1,False,False,False -388280249,3272.01,,3,4,3,3,1,4,4,23.5,53.5,100.76,0,0,0,PC,PC,13.2598,0.006,,1,qlp-s39-tois,QLP,08:25:01.66,-85:09:28.08,-13.003,0.029,18.584,0.026,2459387.057454,0.0016548,3.146714,9.8e-06,2.106,0.139,8.020571,0.004682,7360.0,4.31232,12.1786,,215.374,1067.0,28.0,611.415,5.3715,5197.0,123.0,4.11,,1.37,,,,0.88,,"11,12,13,27,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3272,1,False,False,False -372443687,3273.01,TIC 372443687.01,3,4,4,3,3,4,4,47.4,145.1,122.39,4,0,1,PC,PC,12.3525,0.006,,1,qlp,QLP,21:13:26.6,-66:28:53.74,18.764,0.029,-35.089,0.04,2459052.958371,0.0011869,4.2955192,1.55e-05,2.874,0.11,22.633008,0.006935,20630.0,6.38738,13.6703,0.705699,302.917,1162.0,21.0,396.881,4.2775,5875.0,130.2,4.51,0.08,0.95,0.05,,,1.06,0.135178,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3273,1,False,False,False -360822008,3274.01,,3,4,4,3,3,4,4,28.1,77.7,98.16,1,0,1,PC,PC,12.9127,0.006,,1,qlp,QLP,20:16:55.97,-55:52:28.9,4.741,0.032,-20.784,0.028,2459056.460855,0.0017815,2.9075077,2.32e-05,2.92,0.223,10.933948,0.009476,10020.0,8.7276,12.0308,0.730569,677.605,1421.0,15.0,599.012,7.565,5709.0,132.1,4.3,0.08,1.18,0.06,,,1.02,0.130711,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3274,1,False,False,False -325275736,3275.01,,3,4,3,3,1,4,4,7.6,55.9,93.84,5,0,0,PC,PC,13.445,0.006,,1,qlp,QLP,21:13:25.49,-73:03:51.07,-3.842,0.025,-19.121,0.026,2459027.740647,0.0169944,20.5020769,0.0009525,7.382,0.904,19.367534,0.15542,17680.0,143.137,11.7145,,66.4002,795.0,14.0,311.738,1.583,4511.0,122.0,4.51,,0.78,,,,0.71,,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3275,1,False,False,False -320327056,3276.01,,3,4,4,3,3,4,4,25.2,98.9,89.7,2,0,1,PC,PC,12.6919,0.006,,1,qlp,QLP,19:42:02.08,-59:21:22.86,10.541,0.027,-2.945,0.023,2459048.053516,0.0009853,7.0327412,2.83e-05,3.044,0.122,18.936561,0.005492,17290.0,5.05855,11.4154,0.713274,68.7158,802.0,41.0,297.407,1.613,5021.0,122.9,4.52,0.08,0.83,0.05,,,0.83,0.0979545,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3276,1,False,False,False -319568619,3277.01,,3,4,4,3,3,4,4,98.8,213.1,103.39,4,0,1,PC,PC,12.7572,0.006,,1,qlp,QLP,19:23:25.67,-54:19:50.34,36.496,0.036,-117.534,0.03,2459058.439281,0.0003132,1.5265889,1.8e-06,1.688,0.06,25.963933,0.003374,23630.0,3.10775,12.3611,0.845252,391.362,1239.0,94.0,273.098,1.894,4887.0,127.4,4.57,0.09,0.77,0.05,,,0.8,0.0971109,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3277,1,False,False,False -304130406,3278.01,,3,4,3,3,1,4,4,19.3,50.3,108.31,1,0,0,PC,PC,13.5215,0.006,,1,qlp,QLP,19:27:28.05,-62:05:41.56,-3.582,0.031,-11.209,0.03,2458680.814641,0.0038264,3.2464257,0.0013149,2.082,0.324,9.191553,0.025602,8430.0,23.5802,12.7086,,297.123,1156.0,12.0,904.752,18.366,5729.0,122.0,4.19,,1.35,,,,1.02,,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3278,1,False,False,False -179987678,3279.01,,3,4,3,3,3,4,4,28.1,71.4,46.56,0,0,1,PC,PC,12.6889,0.006,,1,qlp,QLP,00:44:22.08,-75:37:47.3,19.903,0.022,5.887,0.019,2459059.812426,0.0011704,0.4191361,1.2e-06,0.582,0.148,2.989888,0.023823,2750.0,21.9417,7.76524,1.10624,1700.85,1789.0,28.0,614.459,5.0615,5430.0,5290.1,4.4,2.0,1.4,0.15,0.00102958,0.0783157,0.99,0.13879,"1,13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3279,1,False,False,False -290302491,3280.01,,3,4,4,3,1,4,4,15.8,44.1,77.87,1,0,0,PC,PC,13.0099,0.006,,1,qlp,QLP,21:53:06.69,-77:11:53.17,-4.697,0.036,2.733,0.039,2459054.049655,0.0033076,3.8348994,4.51e-05,3.138,0.357,5.005909,0.005241,4600.0,4.82731,10.5061,,559.599,1354.0,15.0,793.087,14.1435,5849.3,162.9,4.08,,1.56,,0.321233,0.090548,1.06,,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3280,1,False,False,False -254142310,3281.01,,3,4,4,3,3,4,4,13.5,49.8,74.37,2,0,3,PC,PC,11.1165,0.006,,1,qlp,QLP,19:06:06.92,-38:59:25.89,-7.266,0.142,-17.299,0.091,2459052.424376,0.0038864,9.3108074,0.0001245,5.27,0.379,3.109654,0.001971,2860.0,1.81506,10.1812,0.583801,336.791,1193.0,15.0,467.976,14.311,6243.0,130.0,3.97,0.09,1.89,0.1,,,1.21,0.17812,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3281,1,False,False,False -219924802,3282.01,,3,5,5,3,3,4,4,93.6,131.2,317.0,1,0,1,PC,APC,11.7212,0.006,,1,qlp,QLP,19:54:05.51,-53:22:52.37,8.125,0.065,-7.296,0.047,2459056.306599,0.0012663,2.9478339,1.53e-05,2.205,0.168,5.475034,1.823265,5030.0,1677.88,18.9265,6.14706,2791.77,2025.0,34.0,470.939,8.2225,6296.0,133.6,4.27,0.09,1.35,0.07,,,1.23,0.188975,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3282,1,False,False,False -201660996,3283.01,TIC 201660996.01,3,4,4,3,3,4,4,42.5,110.6,130.32,2,0,1,PC,PC,12.4005,0.006,,1,qlp,QLP,19:15:48.31,-56:21:15.47,13.055,0.055,-12.001,0.045,2459055.629482,0.0008702,3.502221,1.07e-05,2.911,0.122,14.526176,0.004593,13290.0,4.23056,14.1347,0.772629,533.699,1339.0,54.0,527.005,11.188,5983.0,126.1,4.31,0.08,1.21,0.06,,,1.1,0.14435,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3283,1,False,False,False -166220082,3284.01,,3,4,3,3,3,4,4,19.5,62.9,39.44,3,0,1,PC,PC,11.0125,0.006,,1,qlp,QLP,19:40:46.08,-49:25:13.36,-3.055,0.083,4.031,0.055,2459059.423389,0.0023307,0.8102219,6.2e-06,0.737,0.365,0.890669,0.018438,820.0,16.982,7.01523,0.987824,1338.85,1685.0,10.0,511.737,13.9855,6329.0,129.7,3.92,0.09,2.03,0.1,,,1.25,0.17909,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3284,1,False,False,False -114181798,3285.01,,3,4,4,3,3,4,4,46.3,46.5,317.0,2,0,1,PC,PC,12.6771,0.006,,1,qlp,QLP,19:41:15.66,-35:14:48.94,2.341,0.042,-0.123,0.023,2459058.994886,0.0011386,2.7022764,1.07e-05,2.856,0.213,12.228856,0.003627,11200.0,3.34068,15.3559,0.811737,925.842,1536.0,45.0,614.218,8.5885,5969.0,137.3,4.17,0.08,1.43,0.07,,,1.1,0.14117,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3285,1,False,False,False -113648563,3286.01,,3,4,4,3,3,4,4,58.8,139.0,95.73,4,0,1,PC,PC,12.926,0.006,,1,qlp,QLP,19:35:25.65,-38:25:56.24,1.101,0.043,-20.222,0.025,2459060.316071,0.0007187,2.0325685,5.1e-06,1.312,0.167,20.008784,0.01117,18260.0,10.2883,11.846,0.831526,175.933,1014.0,19.0,312.259,2.2885,4950.0,128.1,4.49,0.09,0.85,0.06,,,0.82,0.0981219,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3286,1,False,False,False -113117112,3287.01,,3,4,4,3,3,4,4,37.1,47.6,317.0,5,0,1,PC,PC,13.0201,0.006,,1,qlp,QLP,19:31:01.83,-31:38:02.26,2.017,0.045,-2.999,0.038,2459055.33599,0.0011826,2.7176413,1.2e-05,3.285,0.151,13.217536,0.002664,12100.0,2.45352,17.2275,,1649.78,1775.0,27.0,988.609,24.867,6567.0,122.0,4.21,,1.52,,,,1.36,,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3287,1,False,False,False -79920467,3288.01,,3,4,4,3,3,4,4,106.1,193.5,103.5,10,0,2,PC,PC,13.2956,0.009,,1,qlp,QLP,19:48:26.48,-43:01:04.8,-6.522,0.054,-20.114,0.036,2459057.730758,0.0004431,1.4338615,2.3e-06,1.61,0.065,34.594002,0.008855,31360.0,8.1561,12.3818,0.429787,158.892,989.0,60.0,200.5,1.5505,3913.0,157.0,4.59,0.01,0.67,0.02,,,0.641966,0.0204766,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3288,1,False,False,False -31786438,3289.01,,3,4,3,3,3,4,4,28.5,60.9,106.85,3,0,1,PC,PC,12.8999,0.008,,1,qlp,QLP,19:17:22.4,-33:03:17.22,2.139,0.046,-2.323,0.043,2459059.527698,0.002423,1.4259934,1.23e-05,1.434,0.261,5.082264,0.013144,4670.0,12.1058,12.6369,0.957302,910.147,1530.0,16.0,915.052,24.3165,5955.0,133.0,3.99,0.09,1.75,0.09,,,1.09,0.143296,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3289,1,False,False,False -31697707,3290.01,,5,5,5,5,5,5,5,28.8,77.7,80.21,4,4,2,PC,FP,11.3612,0.006,,1,qlp,QLP,19:16:33.67,-34:46:54.31,12.969,0.072,-40.915,0.065,2459059.767349,0.001753,3.910946,2.9e-05,3.28,0.323,5.671473,0.003009,5210.0,2.77136,10.6878,0.617883,497.733,1315.0,28.0,369.444,5.37,5642.0,132.0,4.07,0.08,1.54,0.08,,,1.0,0.127284,"13,27",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3290,1,False,False,False -464593883,3291.01,,3,4,3,3,3,4,4,11.3,55.0,60.94,1,0,1,PC,PC,12.7602,0.006,,1,qlp,QLP,19:07:52.11,-63:59:29.76,-0.715,3.112,-17.382,3.112,2458672.602312,0.0020743,9.0653768,0.0020656,2.062,0.277,9.322957,0.019106,8550.0,17.5968,9.03928,,27.2384,,16.0,363.935,,5302.0,,,,0.95,,,,,,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3291,1,False,False,False -464481762,3292.01,,3,4,4,3,1,4,4,16.9,44.4,111.38,1,0,0,PC,PC,13.3827,0.006,,1,qlp,QLP,18:56:50.73,-61:43:03.32,2.332,0.03,-14.813,0.03,2458674.617712,0.005473,4.253182,0.0034384,4.123,0.519,9.038269,0.015297,8290.0,14.0894,12.9711,,666.107,1415.0,14.0,894.68,19.0745,5674.0,122.0,4.13,,1.44,,,,1.01,,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3292,1,False,False,False -464445045,3293.01,,3,4,3,3,1,4,4,21.7,24.0,317.0,1,0,0,PC,PC,13.1675,0.006,,1,qlp,QLP,18:50:02.59,-62:05:38.96,0.105,0.032,1.607,0.031,2458679.954272,0.0041265,2.589659,0.0008789,3.385,0.274,8.097138,0.006155,7430.0,5.66874,14.9823,,2190.57,1905.0,19.0,1270.93,48.825,6650.0,122.0,4.1,,1.75,,,,1.4,,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3293,1,False,False,False -464280516,3294.01,,3,4,4,3,3,4,4,81.2,68.3,317.0,6,0,2,PC,PC,11.481,0.02,,1,qlp,QLP,18:38:33.7,-62:18:06.47,-26.085,1.164,20.932,1.164,2458680.360821,0.0015075,2.5658729,0.0002602,2.425,0.152,10.96685,0.004745,10050.0,4.36992,14.4803,0.641276,351.223,1206.0,34.0,286.439,,5003.0,95.2,,,1.39,0.05,,,,,13,2021-06-04,2021-06-04,2023-06-17 00:00:00,found in faint-star QLP search,3294,1,False,False,False -456574511,3295.01,,3,4,3,3,1,4,4,20.2,53.2,116.48,0,0,0,PC,PC,13.2972,0.006,,1,qlp,QLP,18:48:02.72,-57:32:43.39,5.638,0.036,-6.194,0.033,2458676.059685,0.0037362,3.4379994,0.0010391,3.855,0.304,9.125857,0.011039,8370.0,10.1677,13.3167,,1192.84,1637.0,15.0,981.113,32.8755,6193.0,123.0,4.2,,1.44,,,,1.19,,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3295,1,False,False,False -456560485,3296.01,,3,4,3,3,3,4,4,24.5,81.0,97.03,2,0,1,PC,PC,12.3726,0.006,,1,qlp,QLP,18:46:14.13,-57:41:39.71,-2.528,0.048,-27.372,0.042,2458678.204613,0.0030293,5.9493696,0.0012285,3.678,0.276,11.31787,0.007858,10370.0,7.23767,11.8844,0.715727,235.266,1091.0,23.0,437.919,6.7155,5590.0,131.1,4.31,0.08,1.15,0.06,,,0.99,0.129563,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3296,1,False,False,False -451538240,3297.01,,3,4,3,3,1,4,4,22.4,23.5,317.0,0,0,0,PC,PC,13.0197,0.006,,1,qlp-s39-tois,QLP,17:39:18.11,-87:17:58,1.603,0.024,-10.312,0.032,2459382.02803,0.001564,3.9349141,1.18e-05,4.189,0.135,8.348756,0.00222,7660.0,2.04432,14.3155,,1051.8,1586.0,34.0,900.488,13.085,6200.0,122.0,4.1,,1.61,,,,1.19,,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3297,1,False,False,False -407772585,3298.01,,3,4,4,3,3,4,4,63.2,80.1,317.0,2,0,1,PC,PC,12.2415,0.006,,1,qlp-s39-tois,QLP,18:19:13.2,-71:47:38.05,5.877,0.036,-11.07,0.049,2459388.724951,0.0006427,3.0537856,4.7e-06,1.731,0.245,13.591272,0.021824,12440.0,20.1009,17.9453,1.11704,583.27,1369.0,51.0,588.129,9.8475,6103.0,128.1,4.17,0.08,1.46,0.07,,,1.15,0.161821,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3298,1,False,False,False -390723664,3299.01,,3,4,3,3,1,4,4,13.1,53.9,38.88,0,0,0,PC,PC,13.3888,0.006,,1,qlp,QLP,18:45:14.74,-47:05:10.98,7.908,0.043,-6.263,0.043,2458676.816169,0.0053442,2.9264345,0.001539,3.182,0.417,8.600432,0.021976,7890.0,20.24,6.98436,,557.455,1353.0,11.0,417.019,4.458,5121.0,122.0,4.57,,0.8,,,,0.86,,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3299,1,False,False,False -384299730,3300.01,,3,4,3,3,1,4,4,8.2,28.2,67.69,0,0,0,PC,PC,12.6579,0.006,,1,qlp-s39-tois,QLP,16:24:08.34,-82:33:02.78,-10.073,0.031,-18.396,0.036,2459381.701217,0.006101,6.6926834,6.33e-05,5.96,0.399,3.458142,0.003006,3180.0,2.76886,9.62132,0.559269,678.724,1421.0,14.0,791.797,9.458,5918.0,124.6,3.98,0.07,1.75,0.08,,,1.08,0.136888,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3300,1,False,False,False -384016413,3301.01,,3,4,3,3,3,4,4,12.3,34.4,87.41,0,0,1,PC,PC,12.5815,0.006,,1,qlp-s39-tois,QLP,16:01:52.9,-78:36:09.22,-6.882,0.019,-3.246,0.022,2459380.942313,0.005263,5.451593,4.83e-05,3.628,0.434,3.795847,0.004122,3490.0,3.79618,11.1974,0.681171,359.92,1231.0,14.0,786.257,7.592,5773.0,127.7,3.91,0.07,1.87,0.09,,,1.03,0.123986,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3301,1,False,False,False -383299778,3302.01,,3,4,3,3,1,4,4,27.3,60.8,83.99,2,0,0,PC,PC,12.909,0.006,,1,qlp-s39-tois,QLP,12:20:31.37,-84:55:00.02,-13.0,0.045,-9.03,0.04,2459389.246153,0.0014232,1.5570251,4e-06,1.431,0.387,4.591502,0.018255,4220.0,16.8136,10.9349,0.887735,1213.68,1644.0,23.0,705.625,12.7765,5590.0,126.5,4.08,0.08,1.5,0.08,,,0.99,0.124886,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3302,1,False,False,False -381982417,3303.01,,3,4,3,3,3,4,4,26.2,38.6,317.0,1,0,1,PC,PC,10.5695,0.006,,1,qlp-s39-tois,QLP,18:56:11.74,-70:14:57.93,5.499,0.042,-9.897,0.047,2459384.919206,0.001212,8.6187455,2.25e-05,1.692,0.345,3.730477,0.006957,3430.0,6.40775,15.6647,0.903963,173.998,1011.0,27.0,615.178,11.7855,7400.0,137.4,3.92,0.08,2.37,0.09,,,1.69,0.280472,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3303,1,False,False,False -381789320,3304.01,,3,4,3,3,3,4,4,37.1,96.7,114.45,4,0,2,PC,PC,12.0148,0.006,,1,qlp-s39-tois,QLP,18:00:31.74,-52:40:58.83,-5.304,0.063,-22.698,0.062,2459384.958497,0.0013077,3.4930546,1.12e-05,2.985,0.261,8.69893,0.004312,7980.0,3.97136,13.1021,0.745237,639.317,1400.0,25.0,502.336,11.7135,5986.0,132.6,4.17,0.08,1.42,0.07,,,1.1,0.140713,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3304,1,False,False,False -380775661,3305.01,,3,4,4,3,3,4,4,57.6,141.7,103.77,7,0,1,PC,PC,12.9876,0.006,,1,qlp-s39-tois,QLP,17:58:11.05,-62:28:38.76,2.063,0.022,-15.248,0.026,2459388.22904,0.0006595,2.025289,2.4e-06,2.257,0.052,20.252116,0.003579,18480.0,3.29594,12.3405,0.846774,550.936,1349.0,62.0,394.443,3.484,5297.4,144.7,4.52,0.09,0.86,0.06,0.33686,0.0916612,0.91,0.113476,"13,39",2021-06-04,2023-01-24,2023-05-16 00:00:00,found in faint-star QLP search,3305,1,False,False,False -369861731,3306.01,,5,5,5,5,5,5,5,17.9,63.7,55.64,2,0,0,EB,FP,12.3483,0.006,,1,qlp-s39-tois,QLP,10:44:10.09,-86:19:11.83,-22.42,0.036,15.394,0.033,2459387.095741,0.001433,3.8780401,1.08e-05,2.757,0.352,5.475034,0.001981,5030.0,1.82467,8.5758,0.491188,602.229,1380.0,38.0,403.582,3.1755,5617.0,135.6,4.31,0.08,1.15,0.06,,,0.99,0.122869,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; TFOP NPC/FP,3306,1,False,False,False -369861728,3307.01,,3,4,3,5,1,5,5,24.4,70.6,97.0,0,0,0,PC,PC,13.1045,0.006,,1,qlp,QLP,10:44:08.83,-86:18:59.12,-22.007,0.026,13.715,0.025,2458681.293828,0.0021706,3.8784358,0.0002987,2.677,0.268,10.495346,0.007111,9620.0,6.54987,11.8812,,310.093,1169.0,28.0,560.726,4.587,5636.0,122.0,4.32,,1.14,,,,1.0,,"12,13",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3307,1,False,False,False -365554300,3308.01,,3,5,5,3,1,4,4,,,53.87,4,0,0,PC,APC,13.3095,0.006,,1,qlp-s39-tois,QLP,18:16:11.13,-65:36:29.1,25.747,3.274,-13.083,3.274,2459388.727307,0.0012769,0.7614693,1.9e-06,1.059,0.145,6.512193,0.0124,5980.0,11.4207,,,1543.61,1746.0,21.0,,,5813.0,326.7,,,,,,,,,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; no stellar radius,3308,1,False,False,False -365021641,3309.01,,3,4,4,3,3,4,4,31.2,108.7,101.35,6,0,1,PC,PC,11.8633,0.006,,1,qlp-s39-tois,QLP,18:07:58.07,-49:33:18.35,-2.018,0.067,-38.517,0.057,2459382.076495,0.00108,7.4832824,1.57e-05,3.802,0.23,14.10812,0.003292,12910.0,3.03167,12.264,0.728209,129.267,939.0,47.0,288.963,3.5835,5306.0,126.3,4.35,0.08,1.06,0.06,,,0.91,0.111758,"13,39",2021-06-04,2023-01-24,2023-01-27 00:00:00,found in faint-star QLP search,3309,1,False,False,False -364072092,3310.01,,3,4,4,3,3,4,4,48.2,50.3,317.0,5,0,1,PC,PC,13.0374,0.006,,1,qlp-s39-tois,QLP,17:49:46.97,-53:24:27.2,0.856,0.037,-8.853,0.033,2459387.229823,0.0011736,1.3828196,3.6e-06,1.336,0.163,10.944915,0.01683,10030.0,15.5008,15.7062,,1001.35,1567.0,24.0,890.249,21.48,6362.0,122.0,4.22,,1.45,,,,1.27,,"13,39",2021-06-04,2023-01-24,2023-04-09 00:00:00,found in faint-star QLP search,3310,1,False,False,False -337274055,3311.01,,3,4,3,3,1,4,4,38.2,48.5,317.0,0,0,0,PC,PC,13.1052,0.006,,1,qlp-s39-tois,QLP,17:56:15.26,-57:06:02.15,6.839,0.037,6.96,0.038,2459383.590441,0.0032713,4.8435717,3.35e-05,2.561,0.278,6.665122,3.397922,6120.0,3124.71,15.3767,,693.687,1429.0,14.0,521.922,5.974,5552.0,122.0,4.42,,1.01,,,,0.98,,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; possible secondary at ~0.7 phase,3311,1,False,False,False -332314607,3312.01,,3,4,3,3,3,4,4,105.2,193.3,317.0,0,0,1,PC,PC,12.5578,0.007,,1,qlp,QLP,18:11:37.35,-36:46:55.28,,,,,2458672.498932,0.0015494,5.3890264,0.0013376,3.794,0.689,32.499963,0.093258,29490.0,85.8901,,,93.9124,867.0,34.0,450.91,,3930.3,388.7,,,,,,,,,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3312,1,False,False,False -327210623,3313.01,,5,5,5,5,5,5,5,,,90.98,0,0,1,PC,FP,12.6827,0.006,,1,qlp,QLP,18:02:37.67,-37:26:24.72,-4.301,0.142,-6.36,0.122,2459384.957213,0.0049641,2.128423,2.03e-05,2.872,0.357,12.0971,3.581578,11080.0,3293.32,,,674.806,1419.0,12.0,8341.8,3405.22,3689.6,317.0,,,,,,,,,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; retired as TFOP FP/EB,3313,1,False,False,False -315398848,3314.01,,3,4,3,3,3,4,4,34.1,97.7,53.24,2,0,2,PC,PC,12.4749,0.007,,1,qlp,QLP,18:38:26.56,-40:48:08.11,,,,,2458679.63516,0.0020283,1.3677581,0.0002321,1.363,0.216,6.359287,0.011742,5840.0,10.815,11.144,0.770331,596.492,1376.0,16.0,353.719,,5355.0,139.3,,,1.37,0.07,,,,,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3314,1,False,False,False -312030014,3315.01,,3,4,4,3,3,4,4,24.9,78.3,108.43,1,0,2,PC,PC,11.8748,0.006,,1,qlp-s39-tois,QLP,17:39:44.22,-73:22:39.47,-2.269,0.044,-17.362,0.053,2459386.216984,0.0012336,5.2330803,1.32e-05,4.617,0.352,7.517545,0.001552,6900.0,1.42963,12.7241,0.636417,1001.08,1567.0,49.0,565.094,11.6075,6375.0,128.0,4.2,0.09,1.49,0.07,,,1.27,0.204891,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3315,1,False,False,False -311565540,3316.01,,3,4,3,3,1,4,4,16.8,59.3,74.48,2,0,0,PC,PC,13.4449,0.006,,1,qlp-s39-tois,QLP,17:22:49.67,-73:26:05.59,-4.66,0.032,-19.517,0.039,2459385.08853,0.0027549,4.0668012,1.85e-05,2.373,0.296,11.142346,0.011647,10210.0,10.7271,10.2315,,270.456,1129.0,17.0,642.134,10.734,5789.0,122.0,4.47,,0.98,,,,1.04,,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3316,1,False,False,False -311292015,3317.01,,3,4,3,3,3,4,4,29.8,31.1,317.0,2,0,1,PC,PC,12.8739,0.006,,1,qlp-s39-tois,QLP,17:13:36.54,-74:18:11.43,-4.148,0.022,-10.752,0.025,2459385.043204,0.0018237,2.9519989,1.09e-05,3.518,0.154,9.016373,0.003265,8270.0,3.00726,15.6964,0.804949,1262.03,1660.0,28.0,974.737,15.2045,6136.0,131.8,4.03,0.08,1.73,0.08,,,1.16,0.158586,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3317,1,False,False,False -310854881,3318.01,,3,4,4,3,1,4,4,18.5,35.4,317.0,2,0,0,PC,PC,13.3675,0.006,,1,qlp-s39-tois,QLP,17:01:05.08,-75:25:48.72,12.641,1.208,-4.63,1.208,2459374.800402,0.0101502,12.8777188,0.0001864,4.209,0.552,23.276191,0.033214,21210.0,30.591,,,70.9259,808.0,21.0,586.486,,5281.8,254.8,,,,,,,,,"12,13,39",2021-06-04,2023-01-24,2023-06-12 00:00:00,found in faint-star QLP search; no stellar radius,3318,1,False,False,False -310267134,3319.01,,5,5,5,5,5,5,5,21.0,59.0,34.26,3,0,0,PC,FP,13.5252,0.006,,1,qlp,QLP,16:45:31.77,-76:56:16.18,-14.691,0.027,-30.878,0.037,2458681.71335,0.0027233,0.5438807,4.38e-05,0.78,0.232,3.686899,0.036466,3390.0,33.5861,6.46581,,1246.75,1655.0,13.0,557.804,5.954,5259.0,122.0,4.41,,0.98,,,,0.9,,"12,13",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3319,1,False,False,False -307320565,3320.01,,3,4,3,3,3,4,4,19.0,52.6,104.67,2,0,1,PC,PC,12.4472,0.006,,1,qlp-s39-tois,QLP,17:51:35.03,-63:00:21.41,-1.834,0.033,-2.405,0.041,2459387.964411,0.0047107,2.625748,1.93e-05,3.529,0.263,5.060448,0.007608,4650.0,7.00738,12.4597,0.874559,2401.54,1950.0,15.0,956.388,32.491,6693.0,113.7,4.04,0.09,1.89,0.1,-0.224834,0.0655743,1.42,0.245386,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3320,1,False,False,False -306648160,3321.01,TIC 306648160.01,3,4,4,3,3,4,4,80.1,82.7,317.0,1,19,2,PC,PC,10.6651,0.006,,1,qlp,QLP,17:43:02.48,-65:00:29.71,0.113,0.046,-1.961,0.049,2458681.48892,0.000529,3.6525305,7.52e-05,4.153,0.07,10.659801,0.000426,9770.0,0.392199,14.7302,0.716888,967.919,1553.0,139.0,285.895,3.281,5930.0,129.2,4.14,0.08,1.47,0.07,,,1.08,0.141042,"12,13",2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3321,1,False,False,False -306357884,3322.01,,3,4,3,3,3,4,4,30.1,65.0,98.47,2,0,2,PC,PC,11.5624,0.006,,1,qlp-s39-tois,QLP,17:40:21.02,-63:15:06.78,1.722,0.078,-11.329,0.096,2459387.911246,0.0012359,1.0571733,2.4e-06,1.235,0.258,2.325965,0.004415,2140.0,4.06663,12.0066,1.13779,2168.84,1901.0,37.0,809.845,57.5345,6307.0,130.1,3.72,0.11,2.53,0.21,,,1.24,0.19313,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3322,1,False,False,False -305512837,3323.01,,5,5,5,5,5,5,5,56.1,153.2,90.8,1,0,1,EB,FP,12.7316,0.006,,1,qlp-s39-tois,QLP,17:30:33.76,-64:43:23.31,-11.469,0.021,-27.176,0.024,2459386.357734,0.0011916,3.0223957,7e-06,3.272,0.186,16.188992,0.245702,14800.0,226.274,11.507,1.4904,791.733,1477.0,57.0,234.721,1.1845,4653.0,124.1,4.56,0.09,0.75,0.05,,,0.74,0.0880921,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,V-shaped; found in faint-star QLP search; retired as TFOP FP/NEB,3323,1,False,False,False -304695574,3324.01,,3,4,3,3,3,4,4,20.9,53.0,99.36,1,0,1,PC,PC,12.9566,0.006,,1,qlp-s39-tois,QLP,18:33:54,-70:56:46.54,-4.54,0.022,-22.686,0.024,2459386.640201,0.0021121,2.8090597,1.23e-05,3.24,0.18,7.003825,0.00523,6430.0,4.81704,12.0828,0.69344,1004.86,1568.0,26.0,803.35,10.0185,5852.0,129.2,4.1,0.07,1.52,0.07,,,1.06,0.130822,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3324,1,False,False,False -303617735,3325.01,,3,4,4,3,3,4,4,15.9,57.0,64.43,1,0,1,PC,PC,12.8376,0.006,,1,qlp-s39-tois,QLP,18:08:49.31,-59:53:30.04,,,,,2459382.585819,0.0034855,4.2732096,2.59e-05,3.047,0.342,6.392051,0.008993,5870.0,8.28257,,,286.212,1145.0,17.0,522.799,,5332.0,124.8,,,,,,,,,"13,39",2021-06-04,2023-01-24,2023-06-12 00:00:00,found in faint-star QLP search; no stellar radius,3325,1,False,False,False -301455423,3326.01,,3,4,3,3,3,4,4,59.8,51.8,317.0,8,0,2,PC,PC,13.1482,0.006,,1,qlp-s39-tois,QLP,17:05:43.28,-70:54:34.67,-5.955,0.023,-7.704,0.027,2459387.102253,0.000852,1.0664194,1.8e-06,2.106,0.057,15.693184,0.003583,14350.0,3.29977,14.3422,,2742.65,2016.0,55.0,685.8,9.2315,5897.0,122.0,4.33,,1.18,,,,1.07,,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3326,1,False,False,False -292477426,3327.01,TIC 292477426.01,3,4,3,3,3,4,4,18.8,46.6,117.54,2,0,1,PC,PC,12.4256,0.006,,1,qlp-s39-tois,QLP,18:46:24.52,-68:07:33.94,2.699,0.032,-9.65,0.042,2459382.156519,0.0019138,4.1794516,1.62e-05,3.921,0.144,4.875026,0.00211,4480.0,1.94359,13.3164,0.725707,815.017,1488.0,26.0,891.92,23.9285,6151.0,125.9,3.92,0.08,1.96,0.1,,,1.17,0.1568,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3327,1,False,False,False -276647494,3328.01,,3,4,3,3,3,4,4,3.7,24.3,25.43,0,0,1,PC,PC,12.1098,0.006,,1,qlp-s39-tois,QLP,17:44:29.68,-79:35:40.62,9.636,0.033,5.757,0.038,2459369.72302,0.0066303,10.1923252,0.0001567,6.168,1.216,1.87995,0.002579,1730.0,2.37491,5.40312,0.346144,355.136,1209.0,14.0,426.298,4.0385,5767.0,132.8,4.23,0.08,1.28,0.06,,,1.03,0.130164,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3328,1,False,False,False -256158543,3329.01,TIC 256158543.01,3,4,4,3,3,4,4,39.3,119.5,122.57,1,2,2,PC,PC,11.6723,0.006,,1,qlp-s39-tois,QLP,17:47:31.44,-79:28:00.05,-2.25,0.029,-1.995,0.037,2459386.788351,0.0005814,5.0648278,5.4e-06,4.321,0.046,10.824281,0.00054,9920.0,0.497057,13.6307,0.610454,738.156,1452.0,123.0,441.315,4.0245,6411.0,127.4,4.29,0.08,1.34,0.06,,,1.29,0.201377,"12,13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3329,1,False,False,False -255768108,3330.01,,3,4,4,3,3,4,4,65.4,69.9,317.0,3,0,1,PC,PC,12.4794,0.006,,1,qlp-s39-tois,QLP,17:54:46.38,-53:23:34.52,-2.431,0.05,-8.443,0.05,2459387.736148,0.0007739,1.0815202,1.7e-06,1.317,0.077,9.870645,0.007659,9050.0,7.05463,17.3782,1.0167,1428.47,1712.0,39.0,834.968,20.203,6260.0,133.8,4.02,0.09,1.78,0.09,,,1.22,0.17648,"13,39",2021-06-04,2023-01-24,2023-06-09 00:00:00,found in faint-star QLP search,3330,1,False,False,False -194795551,3331.01,,3,5,5,3,4,4,4,110.8,282.0,99.82,7,7,1,PC,CP,11.3208,0.006,,1,qlp-s39-tois,QLP,18:05:17.8,-34:06:25.82,0.421,0.118,-16.943,0.09,2459383.760485,0.0008179,2.0180196,3.4e-06,1.967,0.069,16.618875,0.007781,15190.0,7.1664,12.168,0.698399,520.136,1330.0,40.0,217.193,2.7145,5544.0,131.1,4.47,0.08,0.96,0.05,,,0.98,0.128706,"13,39",2021-06-04,2023-01-24,2023-03-03 12:02:55,found in faint-star QLP search,3331,1,False,False,False -194179013,3332.01,,5,5,5,5,5,5,5,,,317.0,0,0,1,EB,FP,12.7825,0.007,,1,qlp,QLP,18:04:09.53,-34:07:13.33,-4.526,0.182,-5.123,0.151,2459384.151235,0.0088554,3.1785277,5.95e-05,5.974,0.655,22.300477,4.252089,20330.0,3908.66,,,788.118,1476.0,14.0,6634.95,3149.75,3540.7,294.1,,,,,,,,,13,2021-06-04,2021-08-20,2022-12-14 12:09:24,found in faint-star QLP search; TFOP FP; retired as NEB,3332,1,False,False,False -193782529,3333.01,,3,4,3,3,1,4,4,113.7,266.6,317.0,0,0,0,PC,PC,13.334,0.055,,1,qlp,QLP,18:03:31.56,-35:26:50.23,,,,,2458674.781485,0.0083687,3.9823479,0.003558,4.463,1.02,35.345256,0.290396,32030.0,267.429,,,197.455,1044.0,11.0,,,3986.0,125.8,,,,,,,,,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3333,1,False,False,False -160930264,3334.01,,3,4,4,3,3,4,4,47.6,56.7,317.0,6,0,1,PC,PC,12.8757,0.006,,1,qlp,QLP,18:24:10.02,-51:02:11.94,-2.33,0.034,-8.422,0.032,2458680.862806,0.0020222,1.9242952,0.0002792,3.075,0.155,13.86616,0.007237,12690.0,6.66582,16.9815,0.94611,2478.4,1965.0,39.0,851.085,13.6305,6324.3,126.2,4.19,0.09,1.48,0.07,-0.172305,0.086335,1.25,0.190895,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3334,1,False,False,False -120033290,3335.01,TIC 120033290.01,3,4,3,3,3,4,4,26.0,54.3,107.89,1,0,1,PC,PC,12.5521,0.006,,1,qlp,QLP,18:36:26.24,-57:27:08.63,-2.026,0.073,0.723,0.066,2458682.073691,0.0032864,2.265394,0.000567,3.478,0.349,4.940466,0.004781,4540.0,4.40374,12.6882,1.03445,1585.08,1757.0,21.0,744.585,38.19,5568.0,128.3,3.89,0.1,1.86,0.14,,,0.98,0.127266,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Bouma et al,3335,1,False,False,False -119950057,3336.01,,3,4,3,3,3,4,4,33.7,62.3,317.0,5,0,1,PC,PC,12.388,0.022,,1,qlp,QLP,18:34:59.23,-55:39:48.32,,,,,2458681.503016,0.0020792,10.1822686,0.0028618,2.424,0.642,13.734206,0.058185,12570.0,53.5887,,,,,21.0,535.977,,,,,,,,,,,,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3336,1,False,False,False -119089245,3337.01,,3,4,3,3,1,4,4,33.2,83.4,86.81,1,0,0,PC,PC,13.3234,0.006,,1,qlp-s39-tois,QLP,18:20:35.5,-58:15:11.36,-0.21,0.041,-0.681,0.039,2459388.953701,0.0016934,1.2436504,3.8e-06,1.215,0.13,8.315933,0.015719,7630.0,14.4777,11.1385,,828.458,1494.0,19.0,781.789,20.9495,6070.0,122.0,4.35,,1.18,,,,1.13,,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3337,1,False,False,False -86419190,3338.01,,3,4,3,3,3,4,4,53.1,138.9,105.37,2,0,5,PC,PC,12.5052,0.006,,1,qlp-s39-tois,QLP,18:07:41.62,-42:32:35.44,-4.562,0.061,-15.268,0.054,2459385.193619,0.0016687,1.4893582,4.7e-06,1.286,0.318,9.377714,0.650724,8600.0,599.159,12.5424,3.03828,1946.1,1850.0,20.0,533.245,9.3415,6208.0,126.3,4.42,0.08,1.11,0.05,,,1.19,0.167586,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,V-shaped; found in faint-star QLP search,3338,1,False,False,False -86021841,3339.01,,3,4,3,3,3,4,4,,,103.46,3,0,1,PC,PC,12.2962,0.006,,1,qlp-s39-tois,QLP,18:06:26.67,-44:07:02,2.41,1.145,-0.633,1.144,2459386.458653,0.0010624,3.7465541,9e-06,2.623,0.218,14.086121,0.103671,12890.0,95.4802,,,824.101,1492.0,43.0,,,5766.6,229.2,,,,,,,,,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3339,1,False,False,False -76761591,3340.01,,3,5,5,3,3,4,4,144.5,507.1,317.0,2,0,1,PC,APC,10.9207,0.006,,1,qlp-s39-tois,QLP,18:02:54.4,-55:50:30.5,-12.0,3.6,0.0,3.4,2459376.818774,0.0008596,11.968028,2.6e-05,3.925,0.111,10.341878,1.009833,9480.0,929.658,32.6917,,495.179,,93.0,402.859,,6701.0,,,,1.57,,,,,,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,V-shaped; found in faint-star QLP search; possibly too large to be planetary,3340,1,False,False,False -75919790,3341.01,,3,4,3,3,3,4,4,20.3,79.7,114.42,3,0,1,PC,PC,12.7691,0.006,,1,qlp-s39-tois,QLP,17:53:35.94,-59:39:14.18,6.714,0.037,-9.147,0.041,2459386.224917,0.0017412,8.6369598,3.96e-05,4.91,0.551,14.889355,0.015955,13620.0,14.695,13.0862,0.783856,439.615,1275.0,53.0,543.009,6.2335,6040.0,137.5,4.45,0.08,1.04,0.05,,,1.12,0.150082,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3341,1,False,False,False -75076261,3342.01,,3,4,4,3,3,4,4,34.9,117.2,103.01,3,0,2,PC,PC,11.8482,0.006,,1,qlp-s39-tois,QLP,17:45:26.15,-56:52:58.62,-9.733,0.06,-24.925,0.063,2459383.417373,0.0009597,5.9709305,1.1e-05,3.145,0.104,12.887876,0.002817,11800.0,2.59435,12.3371,0.622648,180.951,1021.0,43.0,340.802,4.3255,5748.0,126.0,4.38,0.08,1.09,0.05,,,1.03,0.127694,"12,13,39",2021-06-04,2023-01-24,2023-06-28 00:00:00,found in faint-star QLP search,3342,1,False,False,False -58046864,3343.01,,3,4,3,3,1,4,4,48.9,60.9,317.0,2,0,0,PC,PC,13.4411,0.006,,1,qlp,QLP,18:20:39.59,-39:13:15.45,9.755,0.047,-15.582,0.041,2458680.4761,0.0059398,2.3651663,0.0010118,2.462,0.478,16.806314,0.061132,15360.0,56.303,19.4747,,851.541,1504.0,11.0,991.209,25.639,5805.0,123.0,4.1,,1.51,,,,1.04,,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3343,1,False,False,False -57093805,3344.01,,3,4,3,3,3,4,4,97.6,91.5,317.0,6,0,1,PC,PC,10.9308,0.007,,1,qlp,QLP,18:09:48.23,-31:53:29.56,-9.895,0.115,-3.343,0.093,2458678.653544,0.0037195,3.2229781,0.0011213,3.793,0.871,10.155552,0.43996,9310.0,405.136,14.58,2.97346,2054.13,1875.0,19.0,248.097,5.077,5488.0,139.9,4.2,0.08,1.29,0.07,,,0.962,0.115975,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,found in faint-star QLP search,3344,1,False,False,False -21997420,3345.01,,3,4,4,3,3,4,4,40.6,62.2,317.0,7,0,1,PC,PC,13.207,0.006,,1,qlp-s39-tois,QLP,17:52:12.56,-45:10:41.88,-1.123,0.048,-4.392,0.043,2459386.770681,0.0021159,2.1917701,9.4e-06,3.145,0.162,12.723083,0.006143,11650.0,5.65744,20.1864,,3396.72,2126.0,22.0,1356.21,49.045,7222.0,123.0,4.12,,1.84,,,,1.62,,"13,39",2021-06-04,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3345,1,False,False,False -6404965,3346.01,,3,4,3,3,3,4,4,18.6,92.9,32.91,3,0,1,PC,PC,11.9812,0.006,,1,qlp,QLP,18:54:39.59,-47:59:39.28,-19.549,0.063,-95.54,0.058,2458681.381272,0.0034428,4.8692603,0.0013765,2.538,0.686,5.998949,0.652065,5510.0,600.394,6.32448,1.96147,215.764,1067.0,19.0,132.574,0.7525,4323.0,124.0,4.58,0.1,0.7,0.06,,,0.68,0.0842838,13,2021-06-04,2021-06-04,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3346,1,False,False,False -131581531,3347.01,,5,5,5,5,5,5,5,11.2,41.9,39.35,0,0,0,PC,FP,12.0536,0.006,,1,qlp,QLP,07:53:23.58,-36:48:10.91,18.437,0.039,0.972,0.039,2459251.478562,0.0049958,3.0591641,2.76e-05,4.25,0.601,2.293324,0.003856,2110.0,3.55194,7.01214,0.460945,2296.74,1928.0,16.0,491.072,5.583,4999.4,290.5,,,1.59,0.07,,,1.21,0.184284,"7,8,34",2021-06-04,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,3347,1,False,False,False -131347421,3348.01,,3,4,3,3,3,4,4,,,15.58,0,0,1,PC,PC,11.4872,0.006,,1,qlp,QLP,07:51:41.9,-37:10:16.81,-7.5,2.7,6.9,2.7,2459250.961281,0.0028754,2.6156239,1.2e-05,2.101,0.228,2.5436,0.002908,2340.0,2.67833,4.05281,0.214842,1128.14,1614.0,11.0,820.182,,7002.0,132.8,,,0.83,0.03,,,,,"7,8,34",2021-06-04,2021-06-03,2022-12-14 12:09:24,found in faint-star QLP search,3348,1,False,False,False -50909831,3349.01,,3,5,5,3,3,4,4,43.9,110.1,118.74,0,1,1,PC,APC,11.3546,0.006,,1,qlp,QLP,07:15:52.27,-04:14:47.47,0.296,0.059,2.296,0.06,2459225.652172,0.0013003,2.0272642,6.4e-06,0.977,0.242,4.700541,0.020247,4320.0,18.6478,13.445,1.05548,388.165,1236.0,14.0,574.167,11.7,6505.5,152.8,,,1.81,0.08,,,1.392,0.237213,"7,33",2021-06-04,2021-06-03,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3349,1,False,False,False -4959676,3350.01,,2,4,2,2,3,4,4,8.5,58.6,8.75,1,0,3,PC,PC,10.6418,0.006,,1,qlp,QLP,09:26:47.93,-38:37:36.55,50.816,0.038,-25.3,0.048,2459302.420442,0.0026751,2.2358979,1.14e-05,1.588,0.415,0.662501,0.007593,610.0,6.99303,2.90907,0.24634,65.6721,793.0,10.0,112.087,0.342,4793.8,119.1,4.42,0.09,0.9,0.06,-0.24,0.08,0.77,0.0902133,"8,9,35,36",2021-06-09,2021-06-09,2022-12-14 12:09:24,potential L1 candidate; possible secondary,3350,1,False,False,False -941340744,3351.01,,3,4,3,3,1,4,4,,,317.0,0,0,0,PC,PC,10.9932,0.007,,1,qlp-s37-tois,QLP,10:51:39.94,-44:59:07.98,0.063,0.058,-7.869,0.06,2459327.23565,0.0005847,4.311529,0.0001052,2.699,0.1,10.714625,0.001832,9820.0,1.68729,15.9679,1.57675,364.211,1217.0,90.0,388.82,6.4115,6777.0,134.5,4.29,0.09,1.57,0.15,,,1.45,0.239271,"36,37",2021-06-09,2023-01-24,2023-01-25 00:00:00,,3351,1,False,False,True -33840683,3352.01,,2,4,2,2,3,4,4,1.6,14.4,10.44,1,1,1,PC,PC,10.2756,0.006,,1,qlp-s61-ffi,QLP,04:19:21.95,-74:35:09.5,-6.575,0.034,57.524,0.035,2459985.597418,0.0118426,13.8198458,0.0001557,4.946,1.179,0.327942,0.028237,302.0,26.0071,3.20854,0.251196,114.274,910.0,12.0,281.692,1.448,5598.0,127.2,3.85,0.08,1.96,0.1,,,0.99,0.129136,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61",2021-06-09,2023-04-04,2023-04-07 12:13:06,possible centroid shift; some asymmetry in the transit shape; some transits at start or end of orbits,3352,1,False,False,False -391903064,3353.01,,1,4,1,1,3,4,4,5.6,65.3,5.55,1,1,5,PC,PC,8.7843,0.006,,1,qlp-s63-ffi,QLP,07:06:07.16,-75:49:10.41,-5.96,0.036,38.599,0.037,2460034.175407,0.001385,4.6657996,5.6e-06,2.622,0.204,0.612528,0.011188,564.0,10.3045,2.21302,0.115768,233.091,1088.0,42.0,78.7577,0.1213,6365.0,197.0,4.54516,0.284258,1.02,0.05,,,1.0,0.127562,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63",2021-06-09,2023-05-11,2023-06-16 12:14:51,variable host; multi candidate,3353,1,True,False,True -391903064,3353.02,,1,4,1,3,3,4,4,4.1,57.0,6.13,1,1,5,PC,PC,8.7843,0.006,,2,qlp-s63-ffi,QLP,07:06:07.16,-75:49:10.41,-5.96,0.036,38.599,0.037,2460026.704332,0.0015362,8.8176198,1.49e-05,3.101,0.134,0.741811,0.014719,683.0,13.5568,2.3476,0.124248,86.5617,849.0,41.0,78.7577,0.1213,6365.0,197.0,4.54516,0.284258,1.02,0.05,,,1.0,0.127562,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63",2021-06-09,2023-05-11,2023-06-16 12:14:51,potential multi; variable host,3353,2,True,False,True -260367888,3354.01,,3,4,3,3,3,4,4,1.0,13.2,20.78,2,0,1,PC,PC,10.9567,0.006,,1,qlp,QLP,06:20:36.45,-59:45:16.82,-5.251,0.041,16.627,0.042,2459288.038137,0.0060462,46.3810093,0.0005605,5.757,0.47,0.825473,0.001,760.0,0.921292,4.82681,0.272953,17.9701,573.0,9.0,415.22,3.7005,6307.9,111.3,4.07,0.08,1.7,0.07,0.10236,0.1,1.24,0.186133,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36",2021-06-09,2021-06-09,2022-12-14 12:09:24,slight centroid offset and some depth-aperture correlation,3354,1,False,False,False -382045742,3355.01,,2,4,2,2,3,4,4,0.8,14.1,5.22,0,0,1,PC,PC,10.8204,0.006,,1,qlp-s39-tois,QLP,05:17:17.68,-59:04:06.21,11.998,0.046,37.044,0.046,2459362.14905,0.0049194,15.6600896,0.0001737,4.785,0.583,0.434381,0.000788,400.0,0.726227,2.14305,0.143654,110.915,904.0,14.0,261.681,1.532,6257.0,134.1,4.42,0.08,1.13,0.05,,,1.22,0.166493,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,29,30,31,32,33,34,35,36,37",2021-06-09,2023-01-24,2023-01-26 12:09:41,low SNR,3355,1,False,False,False -229138584,3356.01,TIC 229138584.01,3,4,3,3,3,4,4,5.6,25.6,22.74,0,0,1,PC,PC,12.1289,0.006,,1,qlp,QLP,01:42:52.72,-48:47:18.35,18.304,0.037,25.095,0.037,2459136.464144,0.0029666,2.9122454,1.7e-05,3.269,0.326,1.314536,0.001773,1210.0,1.63314,5.08343,0.341509,862.596,1509.0,15.0,495.996,7.237,5466.0,137.6,3.94,0.12,1.46,0.08,0.23,0.1,0.97,0.123644,"2,3,29,30",2021-06-15,2019-12-17,2022-12-14 12:09:24,found in faint-star QLP search,3356,1,False,False,False -412259468,3357.01,,5,5,5,5,5,5,5,9.9,53.9,36.3,0,0,0,PC,FP,11.0285,0.012,,1,spoc,SPOC,07:21:33.8,-21:56:18.2,-4.179,0.045,2.297,0.058,2459229.684104,0.0019888342,2.65357769264775,0.00038259715,2.10149144313991,0.36249954,1.57141,0.114828,1446.27536007697,105.75453,6.68595600119995,2.0409603,4941.35234291094,2138.36188682081,11.642596,607.29,13.915,8037.0,156.255,4.26402,0.0793857,1.70185,0.0645226,,,1.94,0.310962,34,2021-06-15,2021-03-11,2022-12-14 12:09:24,centroid plot failed,3357,1,False,False,True -146244533,3358.01,,5,5,5,5,5,5,5,18.8,95.1,81.62,0,0,0,PC,FP,10.5387,0.006,,1,qlp,QLP,08:54:10.09,-48:04:22.05,-13.597,0.048,5.808,0.049,2459296.556389,0.0022374,8.8088443,3.58e-05,4.411,0.582,3.861221,0.007802,3550.0,7.18568,10.7596,0.583036,2579.38,1985.0,32.0,454.844,6.149,8072.0,235.3,4.37,0.53,1.58,0.05,,,2.06,0.301294,"8,9,35,36",2021-06-15,2021-06-15,2022-12-14 12:09:24,possible centroid shift to E,3358,1,False,False,True -360714300,3359.01,,2,5,5,2,3,4,4,1.6,30.4,5.63,3,1,1,PC,PC,9.6216,0.006,,1,qlp-s63-ffi,QLP,09:31:40.75,-63:22:02.63,43.867,0.045,-29.297,0.049,2460013.996804,0.0073577,15.8118347,9.87e-05,4.449,0.568,0.652724,0.041444,601.0,38.1702,2.24252,0.144711,70.4363,807.0,13.0,119.49,0.334,5746.7,49.9,4.43,0.27,1.01,0.05,,,1.06,0.133535,"9,10,11,36,37,63",2021-06-15,2023-05-05,2023-06-16 12:14:51,potential L1; possible slight centroid offset to W,3359,1,False,False,False -342343963,3360.01,,3,5,5,3,3,4,4,18.2,24.8,317.0,4,0,1,PC,APC,10.6857,0.006,,1,qlp,QLP,08:14:42.4,-55:38:33.85,-10.663,0.066,18.239,0.06,2459296.79959,0.001605,16.7375044,5.59e-05,1.319,0.215,2.793934,0.004695,2570.0,4.32422,16.0108,1.01737,12.3014,521.0,15.0,564.342,10.632,6549.0,136.5,3.62,0.09,2.97,0.14,,,1.35,0.223918,"8,9,10,34,35,36",2021-06-15,2021-06-15,2022-12-14 12:09:24,,3360,1,False,False,False -440324561,3361.01,,3,5,5,3,3,4,4,42.4,158.9,99.63,2,0,1,PC,APC,10.956,0.006,,1,qlp,QLP,09:37:49.45,-59:06:54.31,-48.692,0.053,20.043,0.049,2459293.124687,0.0005181,10.5634342,1.26e-05,1.011,0.111,12.173955,0.024769,11150.0,22.8131,12.1545,1.03408,3.01202,367.0,43.0,136.169,0.522,4688.0,125.4,4.33,0.09,0.99,0.07,,,0.75,0.0893737,"10,36",2021-06-15,2021-06-15,2022-12-14 12:09:24,v-shaped,3361,1,False,False,False -464300749,3362.01,,3,5,5,3,4,4,4,16.2,71.0,98.64,5,0,5,CP,CP,10.3823,0.006,,1,qlp-s63-ffi,QLP,10:23:56.19,-56:50:35.22,-24.125,0.05,7.716,0.046,2460031.240934,0.0023043,18.0953159,4.48e-05,2.627,0.709,3.453786,0.3053,3176.0,281.152,12.0619,0.700945,37.2117,688.0,15.0,366.987,4.2115,6509.8,102.5,3.99,0.63,1.8,0.08,,,1.38,0.244044,"9,10,36,37,63",2021-06-15,2023-05-10,2023-06-16 12:14:51,TOI-3362 b,3362,1,False,False,False -385858569,3363.01,,3,4,3,3,3,4,4,8.9,86.0,17.24,0,0,1,PC,PC,10.2509,0.047,,1,qlp-s62-ffi,QLP,09:15:02.16,-54:18:51.34,-6.515,0.123,5.795,0.132,2460007.793273,0.0060386,9.7433732,5.43e-05,3.747,1.265,1.701596,1.868976,1566.0,1719.91,,,,,16.0,2157.7,410.345,8582.0,170.6,4.09,1.39,,,,,,,"9,10,35,36,62",2021-06-15,2023-04-12,2023-04-25 12:12:35,B9 host; possibly a large planet,3363,1,False,False,False -280655495,3364.01,,3,4,4,3,3,4,4,40.3,120.9,100.29,2,0,1,PC,PC,10.8137,0.006,,1,qlp,QLP,09:38:09.07,-49:20:06.8,-26.538,0.056,14.007,0.055,2459296.688479,0.0007508,5.8768877,1.14e-05,4.326,0.076,7.353566,0.000711,6750.0,0.654809,12.1687,0.620023,382.891,1232.0,51.0,277.899,2.483,5805.0,133.1,4.13,0.08,1.45,0.07,,,1.04,0.12862,"9,35,36",2021-06-15,2021-06-15,2023-01-23 00:00:00,crowded field,3364,1,False,False,False -34297761,3365.01,,3,4,3,3,3,4,4,41.4,133.3,93.81,2,0,1,PC,PC,10.8467,0.006,,1,qlp,QLP,09:45:59.31,-46:16:03.51,-42.412,0.05,8.691,0.05,2459302.40877,0.0008475,5.3928876,4.02e-05,3.708,0.41,7.779964,0.002551,7140.0,2.34961,11.705,0.597149,525.92,1334.0,60.0,273.225,2.3585,5970.0,133.3,4.24,0.08,1.32,0.06,,,1.1,0.14415,"9,35,36",2021-06-15,2021-06-15,2022-12-14 12:09:24,crowded field,3365,1,False,False,False -220547837,3366.01,,3,4,3,3,3,4,4,76.7,124.4,317.0,2,0,1,PC,PC,10.7038,0.007,,1,qlp-s37-tois,QLP,10:21:19.7,-50:04:53.26,-31.6,2.1,11.6,1.9,2459328.32233,0.0008928,8.4562659,1.27e-05,4.338,0.206,9.191553,0.418445,8430.0,385.328,17.3093,,833.599,,110.0,238.294,,6144.0,,,,1.3,,,,,,"9,10,36,37",2021-06-15,2023-01-24,2023-01-26 12:09:41,v-shaped,3366,1,False,False,False -131730580,3367.01,,3,4,3,3,3,4,4,,,13.46,0,0,2,PC,PC,10.6973,0.024,,1,qlp,QLP,09:51:10.33,-49:24:38.03,-5.553,0.226,2.362,0.237,2459301.91948,0.0045201,3.7493233,2.74e-05,2.274,0.279,1.271055,0.002419,1170.0,2.22806,,,,,13.0,5366.25,1904.19,,,,,,,,,,,"9,10,36",2021-06-15,2021-06-15,2022-12-14 12:09:24,no stellar parameters,3367,1,False,False,False -131419624,3368.01,,3,4,3,3,3,4,4,18.5,23.4,317.0,0,0,1,PC,PC,12.8281,0.006,,1,qlp,QLP,07:52:20.76,-37:43:15.05,-2.737,0.027,6.263,0.034,2459276.067282,0.0060184,7.2611991,8.63e-05,3.389,0.988,4.329852,0.682868,3980.0,628.747,15.4357,5.05852,1167.97,1628.0,11.0,886.655,12.769,6702.0,131.5,4.07,0.09,1.82,0.08,,,1.42,0.239798,"7,8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3368,1,False,False,False -190981760,3369.01,,5,5,5,5,5,5,5,25.1,67.9,124.53,0,0,0,PC,FP,12.7345,0.006,,1,qlp,QLP,08:57:35.78,-36:51:02.7,-6.195,3.046,1.569,3.046,2459278.824926,0.0032251,3.5463582,1.97e-05,4.168,0.621,6.555885,0.009152,6020.0,8.42887,,,922.838,1535.0,19.0,815.313,,5453.0,291.1,,,,,,,,,"8,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3369,1,False,False,False -131250246,3370.01,,3,4,3,3,3,4,4,9.9,42.5,33.59,1,0,1,PC,PC,12.0148,0.006,,1,qlp,QLP,07:51:07.64,-41:34:42.25,2.154,0.043,-1.175,0.049,2459278.290345,0.0029492,2.3506831,1.23e-05,2.743,0.303,2.108374,0.002188,1940.0,2.01559,6.39563,0.352356,1871.52,1832.0,19.0,549.076,8.4845,6589.0,131.1,4.24,0.09,1.47,0.06,,,1.37,0.229761,"7,8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3370,1,False,False,False -186470510,3371.01,,3,4,3,3,3,4,4,19.9,66.8,88.4,0,0,1,PC,PC,11.5432,0.006,,1,spoc-s61-b0A,QLP,08:50:47.8,-35:00:24.84,-6.6,2.1,6.3,2.2,2459963.833605,0.0020835765,3.51058591741737,0.00056130876,3.0172182322884,0.20029397,3.769103,0.21429,3465.4538124471,197.34845,11.2858701895692,0.9345791,2052.4262472063,1716.66929617277,15.346327,627.758,,7462.0,,,,1.85807001590729,,,,,,"8,35,61",2021-06-16,2023-06-14,2023-06-16 12:14:51,found in faint-star QLP search,3371,1,False,False,False -131036011,3372.01,,5,5,5,5,5,5,5,,,317.0,1,0,0,PC,FP,13.1038,0.009,,1,qlp,QLP,07:50:07.55,-38:42:50.87,-3.709,0.028,4.425,0.031,2459273.404704,0.0025831,11.0701242,6.49e-05,4.097,0.886,12.832942,0.026315,11750.0,24.2363,,,,,20.0,1521.09,41.2,,,,,,,,,,,"7,8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3372,1,False,False,False -186459119,3373.01,,3,4,3,3,3,4,4,15.9,48.8,101.47,0,0,1,PC,PC,12.889,0.006,,1,qlp,QLP,08:50:30.71,-31:58:55.82,-0.814,0.023,-5.679,0.026,2459269.311595,0.0050645,6.534605,5.91e-05,2.957,0.497,7.113107,0.022855,6530.0,21.0504,12.2512,0.940269,167.262,1001.0,8.0,677.509,8.216,5826.0,130.3,4.16,0.08,1.41,0.07,,,1.05,0.1326,"8,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3373,1,False,False,False -131025778,3374.01,,3,4,4,3,1,4,4,63.9,123.5,317.0,3,0,0,PC,PC,13.0959,0.007,,1,qlp,QLP,07:49:03.74,-36:40:40.12,-1.689,0.026,2.127,0.027,2459251.491473,0.0008948,2.6543295,4.3e-06,3.275,0.1,20.241055,0.005392,18470.0,4.96657,23.745,,2779.92,2022.0,44.0,1040.31,18.29,7517.0,122.0,4.21,,1.71,,,,1.73,,"7,8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3374,1,False,False,False -185482513,3375.01,,5,5,5,5,5,5,5,13.2,42.3,43.16,0,0,0,PC,FP,12.6206,0.006,,1,qlp,QLP,08:40:12.52,-31:59:39.43,8.421,0.022,-11.26,0.031,2459279.83151,0.0045956,1.2368321,1.05e-05,2.144,0.486,2.097496,0.007459,1930.0,6.87011,7.3968,0.583536,3451.44,2135.0,10.0,735.596,9.045,6117.0,136.0,4.1,0.08,1.59,0.08,,,1.15,0.153425,"8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3375,1,False,False,False -130797885,3376.01,,3,4,3,3,1,4,4,18.8,24.4,317.0,0,0,0,PC,PC,13.4213,0.007,,1,qlp,QLP,07:48:22.01,-38:01:08.35,-3.674,0.029,3.14,0.034,2459271.005292,0.006425,4.7260751,5.19e-05,4.275,1.324,7.528478,0.476985,6910.0,439.223,14.7931,,4023.58,2218.0,12.0,1055.67,20.775,7311.0,122.0,4.27,,1.55,,,,1.65,,"7,8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,potential weak secondary at phase 0.5; found in faint-star QLP search,3376,1,False,False,False -184670625,3377.01,,5,5,5,5,5,5,5,84.5,69.3,317.0,0,0,0,PC,FP,12.5004,0.006,,1,qlp,QLP,08:30:40.82,-40:16:48.02,-2.163,0.03,-0.308,0.033,2459278.383405,0.0015559,0.5241284,2.1e-06,1.017,0.175,2.608899,1.268555,2400.0,1167.7,16.7968,7.37714,16094.6,3137.0,16.0,810.822,14.079,5860.0,135.1,3.88,0.08,1.95,0.1,,,1.06,0.134429,"8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3377,1,False,False,False -133655284,3378.01,TIC 133655284.01,3,4,3,3,3,4,4,20.4,49.6,118.86,0,0,3,PC,PC,12.0588,0.009,,1,qlp,QLP,08:05:09.57,-41:11:15.42,-5.545,0.045,8.331,0.043,2459275.473692,0.002511,2.6101478,1.12e-05,3.806,0.314,2.69597,0.001803,2480.0,1.66023,13.4197,0.704563,4476.41,2278.0,26.0,915.563,22.8015,5320.0,103.6,4.21,1.97,2.69,0.12,,,1.67,0.278136,"7,8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3378,1,False,False,False -130191319,3379.01,,5,5,5,5,5,5,5,17.2,67.8,35.89,1,2,1,PC,FP,12.1038,0.006,,1,qlp,QLP,07:59:00.98,-25:38:54.79,7.547,0.047,-8.12,0.052,2459250.615192,0.0023799,1.6117444,5.8e-06,1.524,0.177,3.392792,0.004463,3120.0,4.11024,6.63491,0.421165,847.062,1502.0,15.0,446.453,7.7885,6056.0,134.5,4.38,0.08,1.14,0.06,,,1.128,0.150768,"7,8,34",2021-06-16,2021-06-16,2023-02-19 12:02:50,found in faint-star QLP search,3379,1,False,False,False -176148945,3380.01,,3,5,5,3,3,4,4,8.0,36.7,46.63,2,1,1,PC,APC,11.756,0.006,,1,qlp,QLP,08:06:20.58,-22:05:38.66,-0.4,3.6,8.6,3.8,2459249.847236,0.0075393,2.0086823,2.42e-05,1.903,0.412,1.249315,0.005839,1150.0,5.37793,7.75485,,3645.6,,8.0,1062.66,,8516.0,,,,2.19,,,,,,"8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3380,1,False,False,False -129881395,3381.01,,5,5,5,5,5,5,5,47.3,69.7,317.0,2,0,0,PC,FP,13.4704,0.01,,1,qlp,QLP,07:57:57.47,-28:07:21.72,-6.686,0.027,1.711,0.029,2459252.696743,0.0031875,3.3630421,1.65e-05,2.776,0.199,23.03218,0.018456,20990.0,16.9985,20.7277,,509.118,1323.0,19.0,1001.57,19.166,5982.0,122.0,4.17,,1.42,,,,1.1,,"7,8,34",2021-06-16,2021-06-16,2023-01-21 12:02:46,found in faint-star QLP search,3381,1,False,False,False -13737885,3382.01,TIC 13737885.01,1,4,1,3,3,4,4,19.6,53.5,106.68,0,9,1,PC,PC,11.5546,0.007,,1,qlp,QLP,08:55:01.39,-09:09:54.72,0.098,0.062,-6.967,0.065,2459252.368103,0.0017481,4.4575332,1.7e-05,5.319,0.201,3.153209,0.000758,2900.0,0.698202,12.6057,0.656022,1531.89,1742.0,18.0,713.283,19.7345,6289.3,74.0,4.25,2.01,2.16,0.11,,,1.25,0.196788,"8,34",2021-06-16,2021-06-16,2023-05-22 00:00:00,found in faint-star QLP search,3382,1,False,False,False -175317833,3383.01,,3,4,3,3,3,4,4,16.0,55.2,128.43,1,0,1,PC,PC,12.8451,0.007,,1,qlp,QLP,10:08:10.56,-01:13:04.61,-3.966,0.047,-4.523,0.05,2459278.357776,0.0025105,9.7327432,4.34e-05,1.741,0.233,10.769451,0.018362,9870.0,16.9123,14.0294,1.06994,33.304,669.0,15.0,810.86,23.328,6300.4,155.4,4.26,0.1,1.37,0.09,-0.11,0.14,1.24,0.185784,"8,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3383,1,False,False,False -118603213,3384.01,,3,4,3,3,3,4,4,24.1,28.3,317.0,2,0,1,PC,PC,12.2146,0.007,,1,qlp,QLP,08:40:53.63,-19:51:04.44,-2.514,0.116,0.986,0.11,2459277.023695,0.0015386,1.8592079,6.3e-06,2.212,0.151,3.425467,0.002461,3150.0,2.26688,16.4056,2.18195,2679.45,2004.0,25.0,1520.39,191.71,7257.0,135.8,3.75,0.14,2.82,0.37,,,1.63,0.272424,"8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3384,1,False,False,False -175079720,3385.01,,5,5,5,5,5,5,5,10.0,51.4,21.13,0,0,0,PC,FP,12.4698,0.006,,1,qlp,QLP,07:43:29.88,-38:54:31.79,-11.066,0.031,0.834,0.036,2459274.96923,0.0027424,2.2623261,1.14e-05,3.048,0.606,3.196766,0.006476,2940.0,5.96474,4.86815,0.341372,1819.52,1819.0,20.0,343.21,2.1965,5786.0,131.1,4.56,0.07,0.89,0.04,,,1.04,0.129381,"7,8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3385,1,False,False,False -174426662,3386.01,,3,4,3,3,3,4,4,11.7,52.9,22.46,0,0,1,PC,PC,12.4768,0.006,,1,qlp,QLP,07:37:16.23,-36:16:23.38,-3.873,0.047,-0.587,0.048,2458540.32689,0.0053967,0.8855539,0.0001508,1.034,0.356,2.064861,0.022062,1900.0,20.3194,5.05228,0.606624,1788.08,1811.0,9.0,511.818,8.048,6446.0,135.2,4.45,0.09,1.13,0.05,,,1.31,0.200585,"7,8",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3386,1,False,False,False -118072143,3387.01,,3,4,3,3,1,4,4,27.8,75.2,96.13,0,0,0,PC,PC,13.2877,0.006,,1,qlp,QLP,08:35:07.2,-18:14:40.22,-15.512,2.176,-30.573,2.25,2459248.723646,0.0018111,2.7678404,1.04e-05,2.225,0.241,9.991173,0.010022,9160.0,9.23063,,,535.934,1340.0,23.0,617.178,,5908.7,655.1,,,,,,,,,"8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3387,1,False,False,False -173860688,3388.01,,5,5,5,5,5,5,5,,,58.97,0,0,0,PC,FP,10.9017,0.006,,1,qlp,QLP,07:32:24.78,-38:34:29.3,10.092,0.039,-8.556,0.043,2458541.414379,0.0100479,0.845657,0.0002605,1.824,0.384,0.42352,0.002129,390.0,1.96129,8.90314,,2301.5,1929.0,10.0,601.211,8.7915,4969.9,49.4,,,4.52,,-0.410221,0.0668965,,,"7,8",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3388,1,False,False,False -419419534,3389.01,,3,4,3,3,3,4,4,24.6,65.6,69.36,0,0,1,PC,PC,10.9144,0.006,,1,qlp-s08-faintsearch,QLP,08:04:22.56,-34:15:44,-2.405,0.044,-4.972,0.047,2459278.794388,0.0021108,1.680148,5.9e-06,1.217,0.158,1.542841,0.00308,1420.0,2.83645,9.76407,0.62366,575.779,1364.0,18.0,527.277,7.173,5750.5,327.0,3.81,0.67,2.35,0.11,,,1.2,0.17055,"7,8,34,35,61",2021-06-16,2023-07-12,2023-07-12 00:00:00,V-shaped; found in faint-star QLP search; ~800 ppm secondary in SPOC-s61,3389,1,False,False,False -96055535,3390.01,,3,5,5,3,1,4,4,20.1,78.7,71.46,2,0,0,PC,APC,13.2958,0.006,,1,qlp,QLP,09:46:33.92,-08:36:17.27,-2.871,2.198,10.242,2.198,2459278.561159,0.0013473,5.4033373,1.51e-05,1.421,0.147,16.299202,0.018991,14900.0,17.4915,18.9875,0.739532,26.5343,632.0,19.0,,,4977.7,37.0,,,1.49,0.02,-0.134133,0.106059,,,"8,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3390,1,False,False,False -173824688,3391.01,,3,4,3,3,1,4,4,24.2,34.0,317.0,0,0,0,PC,PC,13.5064,0.006,,1,spoc-s61-b02,QLP,07:32:36.84,-41:43:31.45,-3.587,0.03,6.854,0.033,2459963.254463,0.005765691,4.71311186535352,0.0017495801,5.52854558524616,0.34893003,11.452447,0.6819,10492.6573132428,627.85583,19.7629325779692,1.1382807,1722.7646010536,1643.14630453857,13.163545,1249.01,27.83,6785.0,122.0,4.05,,1.88091003894806,,,,1.46,,"7,8,61",2021-06-16,2023-07-07,2023-07-07 00:00:00,found in faint-star QLP search; Gaia DR2 Rstar ~ 2.23; large Rp,3391,1,False,False,False -80174172,3392.01,,5,5,5,5,5,5,5,14.8,42.0,75.49,0,0,0,PC,FP,13.494,0.276,,1,qlp,QLP,08:05:43.09,-42:42:08.49,,,,,2459278.729272,0.0032416,1.1104301,6e-06,1.604,0.324,5.300452,0.015762,4870.0,14.5173,,,,,16.0,,,,,,,,,,,,,"7,8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3392,1,False,False,False -173260345,3393.01,,3,4,3,3,1,4,4,14.0,54.3,86.03,0,0,0,PC,PC,13.6224,0.006,,1,qlp,QLP,07:26:23.68,-40:45:56.13,-8.46,0.031,8.627,0.03,2458538.389463,0.0035516,5.2059716,0.0006831,2.803,0.275,10.045963,0.015883,9210.0,14.6287,11.1254,,280.373,1139.0,16.0,783.101,11.82,6210.0,122.0,4.41,,1.13,,,,1.19,,"7,8",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3393,1,False,False,False -59536337,3394.01,,3,4,3,3,3,4,4,6.5,33.8,45.29,1,0,1,PC,PC,12.1348,0.006,,1,qlp,QLP,07:16:31.76,-44:10:05.53,-7.399,0.044,18.382,0.047,2459276.407683,0.0028513,7.8373997,4.63e-05,3.273,0.372,3.131432,0.003745,2880.0,3.44961,7.62042,0.448041,254.905,1113.0,17.0,646.997,10.6205,6715.0,139.4,4.28,0.09,1.43,0.06,,,1.43,0.240353,"7,8,33,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3394,1,False,False,False -170405772,3395.01,,3,4,3,3,3,4,4,13.5,52.7,42.97,0,0,1,PC,PC,12.683,0.006,,1,qlp,QLP,06:54:34.77,-45:03:51.39,-1.008,3.16,5.24,3.16,2459248.380542,0.0018862,3.2730247,1.18e-05,1.551,0.309,4.384357,0.007602,4030.0,7.00175,,,217.442,1069.0,18.0,440.82,,5769.7,538.4,,,,,,,,,"6,7,8,33,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3395,1,False,False,False -56630436,3396.01,,3,4,3,3,3,4,4,30.2,49.0,317.0,1,0,1,PC,PC,12.5443,0.006,,1,qlp,QLP,08:28:33.64,-34:37:48.81,-2.941,0.034,3.332,0.042,2459269.601348,0.0016721,6.4708153,2.17e-05,5.362,0.231,9.399617,0.002798,8620.0,2.57751,18.8439,0.911929,907.592,1529.0,23.0,928.163,21.2405,6819.0,131.5,4.11,0.09,1.77,0.08,,,1.47,0.250329,"8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3396,1,False,False,False -154616309,3397.01,,3,4,3,3,1,4,4,16.4,69.1,37.27,5,0,0,PC,PC,13.3153,0.007,,1,qlp,QLP,08:08:52.1,-28:56:16.17,14.467,0.027,9.65,0.029,2459248.508703,0.0026846,3.6250244,1.63e-05,2.209,0.291,12.42652,0.019559,11380.0,18.0147,6.80665,0.356151,53.0463,751.0,15.0,180.84,0.6385,3811.0,157.0,4.63,0.01,0.63,0.02,,,0.610723,0.0202611,"7,8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3397,1,False,False,False -46999289,3398.01,,3,4,3,3,4,4,4,18.5,101.6,40.97,0,0,2,PC,PC,12.1945,0.006,,1,qlp,QLP,09:34:09.81,-07:26:00.4,39.577,0.055,-59.206,0.052,2459279.443731,0.0051325,6.2106672,5.58e-05,3.147,0.397,3.490819,1.41081,3210.0,1298.56,7.16278,2.6726,419.973,1261.0,12.0,168.34,1.018,4655.8,119.9,4.67,0.09,0.66,0.05,-0.0272426,0.0702633,0.741,0.090262,"8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3398,1,False,False,False -153197346,3399.01,,5,5,5,5,5,5,5,13.0,16.7,317.0,0,0,0,PC,FP,13.509,0.006,,1,qlp,QLP,08:01:51.55,-24:46:57.42,-7.662,2.014,26.629,2.129,2458540.491991,0.0077846,2.642447,0.0007137,4.373,0.529,5.11499,0.011918,4700.0,10.9766,,,11564.4,2889.0,11.0,2056.31,,8779.8,363.6,,,,,,,,,"7,8",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3399,1,False,False,False -437215469,3400.01,,3,4,3,3,3,4,4,56.0,97.7,317.0,1,0,1,PC,PC,12.6659,0.007,,1,qlp,QLP,08:14:29.93,-19:35:26.36,-9.103,0.028,2.9,0.023,2459252.997055,0.000693,3.8036198,4.5e-06,4.141,0.065,19.599667,0.001374,17890.0,1.26587,22.1057,1.05506,1174.87,1631.0,95.0,913.915,18.299,6464.0,126.6,4.14,0.09,1.61,0.08,,,1.31,0.21763,"7,8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3400,1,False,False,False -26051436,3401.01,,3,4,3,3,1,4,4,28.0,77.4,116.05,2,0,0,PC,PC,13.3298,0.009,,1,qlp,QLP,10:03:41.68,-10:34:30.85,-23.008,0.044,5.071,0.04,2459275.591697,0.0015414,3.6689529,1.02e-05,2.866,0.19,16.166951,0.010201,14780.0,9.39518,13.2074,,377.121,1227.0,32.0,647.95,11.222,5642.0,123.0,4.38,,1.06,,,,1.0,,"8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3401,1,False,False,False -152685831,3402.01,,5,5,5,5,5,5,5,,,34.83,0,0,0,PC,FP,12.6532,0.038,,1,qlp,QLP,08:00:44.56,-33:43:47.45,-2.584,0.047,3.925,0.061,2459250.856372,0.0050446,3.4714171,2.78e-05,3.006,0.902,3.89391,0.018382,3580.0,16.9301,,,,,16.0,5066.53,840.31,,,,,,,,,,,"7,8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3402,1,False,False,False -133107143,3403.01,,3,4,4,3,3,4,4,27.8,52.8,317.0,3,0,1,PC,PC,12.0894,0.008,,1,qlp,QLP,08:02:09.35,-41:12:19.58,0.485,1.053,13.478,1.06,2459262.092572,0.0008087,11.2205176,1.9e-05,3.605,0.096,12.9538,0.001134,11860.0,1.04481,18.076,,129.631,,59.0,678.701,,6764.0,699.9,4.19,1.86,1.6,,,,,,"7,8,34,35",2021-06-16,2021-06-16,2023-05-23 00:00:00,found in faint-star QLP search,3403,1,False,False,True -18795429,3404.01,,3,4,3,3,3,4,4,45.5,129.5,111.7,2,1,1,PC,PC,12.7435,0.006,,1,qlp,QLP,09:12:23.6,-33:15:24.53,-4.73,0.022,-4.949,0.031,2459276.822863,0.0009618,2.5087868,4.2e-06,2.529,0.114,17.236441,0.004961,15750.0,4.56901,12.9918,0.652896,922.499,1535.0,43.0,513.6,5.021,6255.0,135.8,4.52,0.09,1.01,0.05,,,1.22,0.181699,"8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3404,1,False,False,False -152326573,3405.01,,3,4,3,3,1,4,4,23.6,43.2,317.0,3,0,0,PC,PC,13.0178,0.014,,1,qlp,QLP,07:59:28.81,-30:00:22.07,-2.532,0.026,-0.758,0.032,2459244.497961,0.0020337,6.1458884,2.17e-05,2.808,0.199,14.09712,0.011024,12900.0,10.1535,18.4029,,351.407,1206.0,22.0,1203.27,26.995,7231.0,122.0,4.24,,1.6,,,,1.62,,"7,8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3405,1,False,False,False -410159011,3406.01,,3,4,3,3,3,4,4,36.0,40.4,317.0,0,1,1,PC,PC,12.8054,0.009,,1,qlp,QLP,08:53:47.33,-18:00:11.5,-6.49,0.036,4.988,0.035,2459279.359536,0.0018349,2.623354,7.9e-06,2.845,0.327,9.585813,0.00573,8790.0,5.27747,16.3338,0.913873,1425.08,1711.0,26.0,889.866,22.9975,6437.0,132.7,4.1,0.09,1.69,0.08,,,1.3,0.200143,"8,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3406,1,False,False,False -152005053,3407.01,,3,4,3,3,1,4,4,17.1,53.1,52.75,0,0,0,PC,PC,13.0549,0.006,,1,qlp,QLP,07:58:02.16,-33:59:45.94,-6.494,2.849,9.297,2.849,2459251.753886,0.0036428,1.3847905,8.1e-06,2.657,0.424,4.515181,0.007771,4150.0,7.15705,11.9783,1.12612,2691.16,2006.0,18.0,714.755,,5596.0,232.2,,,1.82,0.15,,,,,"7,8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3407,1,False,False,False -7904580,3408.01,,3,4,3,3,1,4,4,15.4,33.8,317.0,1,0,0,PC,PC,13.3008,0.007,,1,qlp,QLP,08:52:49.77,-01:36:23.48,-1.303,0.058,7.184,0.034,2459249.62041,0.0022353,15.8346011,7.16e-05,4.676,0.545,19.721281,0.248507,18000.0,228.857,16.7304,,116.829,915.0,25.0,665.382,14.218,5713.1,90.6,4.37,,1.09,,-0.141,0.088,1.02,,"8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,may be a secondary; potential V-shaped primary or second planet single transit at 2244 days; found in faint-star QLP search,3408,1,False,False,False -405485201,3409.01,,3,4,3,3,3,4,4,4.5,33.1,21.46,0,2,1,PC,PC,11.7483,0.008,,1,qlp,QLP,09:34:55.68,-12:15:01.58,-20.452,0.068,-9.708,0.083,2459278.415912,0.0041879,7.7605254,8.19e-05,3.639,0.482,2.238923,0.003702,2060.0,3.40967,4.92551,0.31777,218.205,1070.0,12.0,364.285,5.473,6070.0,119.1,4.42,0.08,1.09,0.05,,,1.13,0.149285,"8,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3409,1,False,False,False -238012337,3410.01,,3,4,4,3,3,4,4,19.9,72.1,79.75,0,0,1,PC,PC,11.581,0.02,,1,qlp,QLP,06:50:23.03,-48:32:04.04,,,,,2459273.339931,0.0007271,3.9791023,5.2e-06,4.47,0.142,4.351654,0.000217,4000.0,0.199611,,,,,41.0,,,,,,,,,,,,,"6,7,8,33,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3410,1,False,False,False -150424946,3411.01,,3,4,3,3,1,4,4,,,317.0,0,0,0,PC,PC,13.1428,0.013,,1,qlp,QLP,07:49:36.46,-34:27:03.97,-4.183,0.026,4.462,0.028,2459242.489293,0.0023895,7.0628019,2.55e-05,4.385,0.193,14.74627,0.003854,13490.0,3.54995,,,,,31.0,1531.6,39.35,,,,,,,,,,,"7,8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3411,1,False,False,False -396794358,3412.01,,3,4,3,3,3,4,4,27.6,75.0,96.6,1,0,1,PC,PC,12.6977,0.007,,1,qlp,QLP,09:49:55.9,-14:43:59.59,-20.505,0.042,1.939,0.053,2459278.640462,0.0015042,3.1405783,8.6e-06,1.574,0.372,9.344859,0.021804,8570.0,20.0821,11.93,0.90923,210.456,1061.0,27.0,565.295,11.2005,5636.0,131.1,4.24,0.08,1.26,0.07,,,1.0,0.130514,"8,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3412,1,False,False,True -149745822,3413.01,,3,4,3,3,3,4,4,33.5,49.5,317.0,1,0,1,PC,PC,12.5881,0.007,,1,qlp,QLP,07:46:09.2,-33:28:59.12,5.867,0.029,-12.77,0.032,2459245.869732,0.002524,4.7114264,1.83e-05,1.502,0.413,5.889779,1.214434,5410.0,1117.91,15.6522,5.44226,1055.88,1588.0,14.0,726.071,9.721,8238.0,144.9,4.41,0.07,1.47,0.05,,,2.02,0.291521,"7,8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3413,1,False,False,False -131348451,3414.01,,3,4,3,3,3,4,4,9.1,34.0,63.33,0,0,1,PC,PC,11.9685,0.007,,1,qlp,QLP,07:51:40.11,-36:48:56.41,-12.565,0.039,-6.159,0.048,2459272.510411,0.0039,9.7355768,7.5e-05,5.954,0.515,2.815705,0.002001,2590.0,1.84301,9.29033,0.525245,405.451,1250.0,19.0,537.355,7.4125,5033.0,63.5,,,1.81,0.09,,,1.22,0.179985,"7,8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3414,1,False,False,False -386456916,3415.01,,3,4,3,3,3,4,4,31.1,33.9,317.0,2,0,1,PC,PC,12.2665,0.007,,1,qlp,QLP,08:32:49.89,-13:03:51.63,-9.274,0.05,-2.493,0.048,2459247.848235,0.0023248,3.5714448,1.75e-05,2.356,0.89,4.449767,0.061385,4090.0,56.536,18.4074,2.38449,873.532,1514.0,19.0,1053.27,37.97,5942.0,123.5,3.66,0.08,2.56,0.15,,,1.09,0.13889,"8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3415,1,False,False,False -145910571,3416.01,,3,4,4,3,3,4,4,25.6,35.4,317.0,2,1,1,PC,PC,12.6255,0.007,,1,qlp,QLP,08:13:02.85,-31:19:12.63,-4.009,0.043,2.679,0.056,2459277.156063,0.0021959,2.3626917,8.2e-06,2.938,0.167,7.933071,0.0048,7280.0,4.42137,14.4588,0.80143,4798.12,2318.0,24.0,1184.46,45.115,8360.0,153.9,4.33,0.08,1.62,0.08,,,2.07,0.307862,"7,8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3416,1,False,False,False -332710679,3417.01,,3,4,3,3,3,4,4,35.6,97.4,104.67,2,0,2,PC,PC,13.4736,0.008,,1,qlp,QLP,10:01:33.38,-16:07:36.43,-13.143,0.052,-24.336,0.054,2459279.352082,0.0010037,2.7194615,5.2e-06,2.481,0.093,20.650414,0.00495,18840.0,4.55895,12.4906,,422.699,1263.0,42.0,548.679,8.858,5454.0,122.0,4.52,,0.89,,,,0.95,,"8,35",2021-06-16,2021-06-16,2023-02-24 00:00:00,found in faint-star QLP search,3417,1,False,False,False -437144507,3418.01,,3,4,3,3,3,4,4,,,66.93,0,6,1,PC,PC,11.8994,0.006,,1,spoc-s61-b0A,QLP,08:13:05.89,-23:03:12.14,-0.644,1.147,4.764,1.162,2459963.751971,0.0033396797,7.30398688590329,0.0015306633,5.36501086026333,0.16602026,8.416818,0.234711,7722.20553780406,216.15338,,,184.052920679666,939.410538648387,29.098854,,,5308.5,84.8,,,,,,,,,"7,8,61",2021-06-16,2023-05-24,2023-06-16 12:14:51,found in faint-star QLP search; no stellar radius,3418,1,False,False,False -145904365,3419.01,,3,4,3,3,1,4,4,102.8,286.2,317.0,0,0,0,PC,PC,12.935,0.019,,1,qlp,QLP,08:12:35.91,-32:46:36.06,,,,,2459265.19095,0.0017566,7.9969538,2.45e-05,5.4,0.197,20.960301,0.004593,19120.0,4.23032,,,205.724,1055.0,29.0,,,5305.8,263.8,,,,,,,,,"7,8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3419,1,False,False,True -293978434,3420.01,,5,5,5,5,5,5,5,10.4,33.8,49.11,0,0,0,PC,FP,12.6746,0.009,,1,qlp,QLP,08:09:43.39,-22:52:07.29,-0.864,0.038,5.231,0.036,2458540.862165,0.0083122,1.5971426,0.0004152,3.316,0.452,2.336846,0.004865,2150.0,4.4812,7.98964,0.593331,4957.19,2337.0,13.0,950.218,24.6015,6263.0,133.6,4.03,0.09,1.77,0.09,,,1.22,0.180295,"7,8",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3420,1,False,False,False -145023816,3421.01,,3,4,3,3,1,4,4,19.0,25.2,317.0,0,0,0,PC,PC,13.35,0.007,,1,qlp,QLP,08:08:22.23,-30:05:43.62,-4.788,0.029,3.761,0.033,2459248.382446,0.0049705,2.8389301,2.35e-05,2.45,0.6,6.763444,0.023142,6210.0,21.3142,16.9204,,1669.46,1780.0,11.0,1787.36,66.045,7132.0,123.0,3.98,,2.14,,,,1.59,,"7,8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3421,1,False,False,False -286099128,3422.01,,3,5,5,3,5,4,5,49.9,140.7,127.53,0,0,0,KP,KP,12.239,0.008,,1,spoc-s61-b0A,QLP,09:23:22.95,02:55:56.94,-7.181,0.082,-13.548,0.072,2459964.344434,0.00071184506,3.77877521761216,0.00019178858,3.13990496016043,0.058659635,19.364611,0.283997,17677.3554733783,261.5369,14.0012199347216,0.8488102,466.101254326083,1185.05857589005,61.401485,397.313,6.956,5817.7,145.7,4.43,0.09,1.02895998954773,0.060309,0.119,0.022,1.05,0.140534,"8,35,61",2021-06-16,2023-06-14,2023-06-16 12:14:51,found in faint-star QLP search; WASP-143 b (http://exoplanet.eu/catalog/wasp-143_b),3422,1,False,False,False -144970275,3423.01,,5,5,5,5,5,5,5,,,52.71,0,0,0,PC,FP,12.6067,0.016,,1,qlp,QLP,08:08:02.63,-31:11:21.7,-2.771,0.045,3.512,0.053,2459248.478713,0.0021161,2.5313424,1.04e-05,2.246,0.228,6.348366,0.00814,5830.0,7.49754,,,4500.49,2281.0,20.0,4030.62,526.145,9598.5,85.9,,,,,,,,,"7,8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3423,1,False,False,False -283702603,3424.01,,5,5,5,5,5,5,5,23.0,64.0,71.58,0,0,0,PC,FP,12.5772,0.006,,1,qlp,QLP,08:35:12.11,-27:24:27.34,-5.206,0.037,2.36,0.038,2459279.471354,0.0015184,0.6691882,2e-06,1.347,0.278,3.098766,0.008431,2850.0,7.76507,9.96751,0.734671,7244.35,2570.0,19.0,994.33,27.6765,6623.0,123.1,4.09,0.09,1.76,0.09,,,1.39,0.2319,"8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3424,1,False,False,False -144682439,3425.01,,3,4,3,3,1,4,4,18.1,51.9,54.43,0,0,0,PC,PC,13.0391,0.006,,1,qlp,QLP,08:06:39.22,-31:56:40.06,-2.943,0.025,7.36,0.027,2459252.829119,0.0034024,0.765415,4.2e-06,1.389,0.276,2.979,0.010871,2740.0,10.0127,8.47671,,3287.18,2109.0,11.0,923.779,14.1015,6034.0,122.0,4.13,,1.51,,,,1.12,,"7,8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3425,1,False,False,False -277833423,3426.01,,3,4,4,3,3,4,4,38.6,57.4,317.0,2,1,1,PC,PC,12.7761,0.007,,1,qlp-s46-tois,QLP,10:24:54.96,00:26:08.98,1.802,0.049,-4.297,0.044,2459570.358029,0.0008155,6.1786733,9.2e-06,4.289,0.081,18.60516,0.002451,16990.0,2.25705,18.581,1.09717,313.989,1172.0,42.0,687.367,17.1475,5806.0,131.9,4.16,0.08,1.4,0.08,,,1.04,0.12638,"8,35,45,46",2021-06-16,2022-03-11,2023-02-22 00:00:00,found in faint-star QLP search,3426,1,False,False,False -144467913,3427.01,,3,4,3,3,3,4,4,37.4,41.5,317.0,0,0,1,PC,PC,12.7363,0.006,,1,qlp,QLP,08:05:15.95,-31:50:56.57,-0.004,0.027,1.438,0.031,2459248.8939,0.0016031,2.9526508,7.8e-06,2.503,0.205,10.166511,0.006439,9320.0,5.93037,17.072,0.991048,532.564,1338.0,29.0,868.194,15.9455,5812.0,131.7,3.98,0.08,1.73,0.09,,,1.05,0.136316,"7,8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3427,1,False,False,True -271486001,3428.01,,3,4,3,3,3,4,4,,,15.97,0,0,1,PC,PC,12.1927,0.011,,1,qlp,QLP,08:22:37.18,-29:11:16.76,,,,,2459274.293835,0.009258,5.3945125,0.000123,7.126,0.962,1.553714,0.003774,1430.0,3.4756,,,,,9.0,,,,,,,,,,,,,"8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3428,1,False,False,False -134551640,3429.01,,3,4,3,3,3,4,4,11.8,42.0,127.32,2,0,1,PC,PC,12.4493,0.006,,1,qlp,QLP,07:15:26.15,-42:26:53.12,-0.414,0.053,9.366,0.047,2459251.254791,0.0015202,13.9311096,6.57e-05,3.508,0.219,7.320773,0.003394,6720.0,3.12636,14.0219,0.739155,70.2738,806.0,26.0,816.907,18.911,6445.0,134.9,4.1,0.09,1.69,0.08,,,1.31,0.213178,"7,8,33,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3429,1,False,False,False -118329434,3430.01,,3,5,5,3,3,4,4,23.4,27.6,317.0,0,0,1,PC,APC,11.8807,0.007,,1,qlp,QLP,08:37:47.02,-19:38:04.99,-3.406,0.047,-4.061,0.041,2459243.222963,0.0015383,5.0949767,1.53e-05,4.57,0.168,4.515181,0.001241,4150.0,1.14286,15.7588,0.860436,915.595,1532.0,20.0,872.374,25.573,6565.0,248.5,4.18,1.83,2.25,0.12,,,1.31,0.208522,"8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3430,1,False,False,False -270649648,3431.01,,3,4,3,3,1,4,4,30.8,44.1,317.0,1,0,0,PC,PC,13.1291,0.008,,1,qlp,QLP,09:07:24.64,04:17:23.72,-1.523,0.124,-1.84,0.155,2459247.431756,0.0017046,3.919695,1.36e-05,4.027,0.2,13.404388,0.007163,12270.0,6.59701,19.0078,,1108.17,1607.0,33.0,1198.58,90.255,6438.0,21.3,4.08,,1.73,,-0.179,0.0196774,1.3,,"8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3431,1,False,False,True -133849258,3432.01,,3,4,3,3,1,4,4,,,103.8,1,0,0,PC,PC,13.7942,0.007,,1,qlp,QLP,08:05:55.16,-41:27:45.32,,,,,2458533.147759,0.0100496,9.1394374,0.0036266,3.93,0.577,14.141118,4.427691,12940.0,4069.75,,,79.1166,830.0,13.0,,,3999.0,269.3,,,,,,,,,"7,8",2021-06-16,2021-06-16,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3432,1,False,False,False -270471065,3433.01,,3,4,4,3,4,4,4,16.6,63.6,31.0,2,1,3,PC,PC,12.7445,0.006,,1,qlp,QLP,09:01:49.43,00:58:10.61,-4.389,0.111,-49.761,0.079,2459246.89512,0.0017106,2.7765784,9.4e-06,2.076,0.172,6.217321,0.00534,5710.0,4.91815,6.07883,0.502703,130.312,941.0,19.0,210.527,2.6505,4348.2,106.7,4.48,0.09,0.78,0.06,0.282478,0.042546,0.68,0.0806239,"8,34",2021-06-16,2021-06-16,2023-04-29 00:00:00,found in faint-star QLP search,3433,1,False,False,False -270457662,3434.01,,3,4,3,3,3,4,4,31.0,76.7,108.86,2,0,1,PC,PC,12.2609,0.007,,1,qlp,QLP,09:01:15.33,00:50:30.58,3.032,0.102,0.31,0.085,2459249.549067,0.0011368,3.1510024,8.1e-06,0.612,0.126,5.11499,0.116249,4700.0,107.064,12.7872,1.82961,34.0167,672.0,15.0,607.396,17.7415,5927.9,105.2,4.12,0.08,1.5,0.08,-0.063074,0.0496709,1.08,0.133869,"8,34",2021-06-16,2021-06-16,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3434,1,False,False,False -238162973,3435.01,,5,5,5,5,5,5,5,38.5,97.4,317.0,1,0,0,PC,FP,13.3872,0.006,,1,qlp,QLP,07:05:43.68,-49:31:14.15,20.106,0.031,-30.978,0.033,2459260.035982,0.0007724,11.8885643,1.76e-05,2.567,0.094,39.188137,1.757644,35450.0,1617.54,19.2143,,18.8935,580.0,66.0,282.594,1.3605,4427.0,122.0,4.52,,0.75,,,,0.69,,"6,7,8,33,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3435,1,False,False,False -132320310,3436.01,,5,5,5,5,5,5,5,24.6,48.1,77.63,0,0,0,PC,FP,10.9602,0.007,,1,qlp,QLP,07:57:27.7,-38:58:12.87,1.462,0.054,-9.774,0.056,2459277.091098,0.0029202,1.3955317,7.7e-06,2.62,0.393,1.042807,0.001935,960.0,1.78237,10.461,0.718734,3163.13,2089.0,23.0,566.014,11.7905,4957.2,104.3,3.34,0.75,3.29,0.17,,,1.04,0.1272,"7,8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3436,1,False,False,False -132313173,3437.01,,3,4,3,3,1,4,4,23.4,91.1,83.22,0,0,0,PC,PC,13.0707,0.006,,1,qlp,QLP,07:57:38.99,-41:14:29.43,3.068,0.029,26.328,0.035,2459273.84318,0.001529,4.9873145,1.5e-05,2.089,0.13,16.6299,0.011169,15200.0,10.2873,10.8407,,155.574,983.0,22.0,461.605,3.6725,6199.0,122.0,4.63,,0.87,,,,1.19,,"7,8,34,35",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3437,1,False,False,False -455272393,3438.01,,3,4,3,3,3,4,4,20.8,53.7,75.34,2,0,1,PC,PC,11.9581,0.007,,1,qlp-s46-tois,QLP,09:45:19.62,03:05:40.13,-16.476,0.198,12.701,0.264,2459578.539813,0.0014576,1.6660179,4.6e-06,1.445,0.512,2.271563,0.015871,2090.0,14.6173,10.257,1.13691,1529.93,1742.0,23.0,735.129,44.564,5993.3,229.4,3.9,0.1,2.01,0.15,-0.149,0.061,1.16,0.148899,"8,35,45,46",2021-06-16,2022-03-11,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3438,1,False,False,False -394338713,3439.01,,3,4,3,3,1,4,4,24.7,66.8,126.04,0,0,0,PC,PC,13.4001,0.006,,1,qlp-s39-tois,QLP,10:06:20.36,-79:22:36.44,4.43,0.033,-8.184,0.031,2459385.974629,0.0012674,5.9349921,2.37e-05,1.423,0.266,10.736555,0.020248,9840.0,18.6486,13.8526,,38.9292,695.0,21.0,591.628,6.852,5320.0,122.0,4.29,,1.13,,,,0.92,,"11,12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,V-shaped; found in faint-star QLP search,3439,1,False,False,False -208030798,3440.01,,5,5,5,5,5,5,5,,,108.43,0,0,1,PC,FP,12.052,0.163,,1,qlp,QLP,16:17:19.25,-54:08:20.8,-5.538,0.158,-4.609,0.12,2458650.326066,0.005484,1.7167587,0.0013282,2.044,0.356,14.889355,0.05957,13620.0,54.8642,,,215.049,1066.0,10.0,7170.63,2645.94,3917.3,185.3,,,,,,,,,12,2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3440,1,False,False,False -393196631,3441.01,,3,4,3,3,1,4,4,15.4,51.6,75.67,1,0,0,PC,PC,13.2137,0.006,,1,qlp-s39-tois,QLP,10:50:29.97,-79:43:40.29,-6.347,0.027,9.659,0.027,2459384.846313,0.0014241,4.2594558,1.26e-05,3.391,0.111,8.173711,0.003609,7500.0,3.3239,10.33,,433.367,1271.0,29.0,652.833,5.4755,5763.8,81.5,4.31,,1.18,,0.264208,0.0805294,1.03,,"11,12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3441,1,False,False,True -207981861,3442.01,,3,4,3,3,3,4,4,90.9,147.5,317.0,1,0,1,PC,PC,12.6816,0.006,,1,qlp-s39-tois,QLP,16:16:15.97,-55:05:59.95,,,,,2459380.445712,0.0023674,3.4569274,1.61e-05,2.805,0.269,22.710614,0.020978,20700.0,19.3211,,,241.384,1098.0,22.0,611.019,,4973.0,66.8,,,,,,,,,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; no stellar radius,3442,1,False,False,False -392995938,3443.01,,3,4,3,3,3,4,4,28.3,55.3,131.35,0,0,1,PC,PC,11.672,0.011,,1,qlp-s38-tois,QLP,14:33:06.82,-60:05:36.1,4.435,0.04,1.355,0.096,2459358.707236,0.0038395,1.0078907,7.5e-06,2.755,0.366,1.945209,0.003067,1790.0,2.82505,14.2534,1.05338,11995.5,2915.0,18.0,1025.24,43.0915,6808.0,152.5,3.51,0.09,3.52,0.2,,,1.47,0.25365,"11,12,38",2021-06-16,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3443,1,False,False,False -161299119,3444.01,,3,4,3,3,3,4,4,76.3,90.3,317.0,4,0,1,PC,PC,11.9642,0.007,,1,qlp-s39-tois,QLP,16:05:09,-46:33:56.34,-9.289,0.075,-6.902,0.056,2459384.53548,0.000875,2.7188122,5.2e-06,2.182,0.099,13.27249,0.004964,12150.0,4.57209,16.9807,0.835697,708.483,1437.0,41.0,481.703,8.119,6531.0,131.0,4.23,0.09,1.48,0.07,,,1.35,0.22675,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3444,1,False,False,False -364431259,3445.01,,3,4,3,3,3,4,4,59.9,49.8,317.0,1,0,1,PC,PC,12.8311,0.006,,1,qlp-s39-tois,QLP,16:16:33.2,-41:04:26.28,13.51,0.072,15.456,0.037,2459382.37766,0.00111,2.9866836,8.3e-06,2.681,0.24,15.307713,0.009708,14000.0,8.94169,15.0254,1.15328,282.578,1142.0,34.0,353.696,4.0475,4790.0,128.0,4.14,0.1,1.24,0.09,,,0.77,0.091347,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3445,1,False,False,False -149022647,3446.01,,3,4,4,3,3,4,4,95.5,137.5,317.0,1,0,1,PC,PC,13.0573,0.006,,1,qlp-s38-tois,QLP,15:24:44.2,-45:22:48.01,-10.498,2.848,9.784,2.848,2459359.702516,0.0010029,1.8528946,5.2e-06,2.444,0.124,21.569267,3.299741,19670.0,3034.56,,,2142.13,1895.0,47.0,740.15,,5378.5,424.7,,,,,,,,,"12,38",2021-06-16,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3446,1,False,False,False -363749415,3447.01,,3,4,3,3,3,4,4,18.5,58.1,77.25,2,0,1,PC,PC,12.2152,0.006,,1,qlp-s39-tois,QLP,16:41:22.78,-68:33:11.61,-6.786,0.035,-13.527,0.065,2459382.731966,0.0027056,3.6562554,1.9e-05,3.853,0.459,5.409563,0.00454,4970.0,4.18187,10.421,0.615974,1093.63,1602.0,22.0,595.56,11.776,5994.0,130.8,4.12,0.08,1.51,0.07,,,1.1,0.136026,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3447,1,False,False,False -143934343,3448.01,,3,4,3,3,1,4,4,98.0,150.0,317.0,2,0,0,PC,PC,13.2582,0.006,,1,qlp-s38-tois,QLP,15:28:09.61,-52:01:46.83,,,,,2459357.709395,0.0014864,2.1642912,8.5e-06,2.818,0.197,25.208027,2.994536,22950.0,2754.27,,,1248.62,1656.0,30.0,768.479,,4907.3,127.8,,,,,,,,,"12,38",2021-06-16,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3448,1,False,False,False -363083571,3449.01,,3,4,3,3,3,4,4,27.2,30.7,317.0,2,0,1,PC,PC,12.5451,0.006,,1,qlp-s39-tois,QLP,16:32:05.21,-68:14:25.19,8.183,0.031,-5.636,0.054,2459385.434401,0.0014582,3.8249546,1.4e-05,3.874,0.187,8.315933,0.003029,7630.0,2.79008,15.0897,0.811209,1068.52,1592.0,29.0,841.734,23.0865,6341.2,114.6,4.08,0.09,1.69,0.08,-0.152334,0.0755628,1.26,0.193327,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3449,1,False,False,False -126125073,3450.01,,3,4,4,3,1,4,4,33.8,155.4,35.65,1,0,0,PC,PC,10.376,0.018,,1,qlp,QLP,15:12:08.43,-53:18:48.12,,,,,2459353.647517,0.0006746,3.6387748,6.3e-06,3.131,0.269,5.005909,0.000424,4600.0,0.390182,,,501.163,1318.0,77.0,,,5095.6,1241.5,,,,,,,,,"12,38",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,3450,1,False,False,False -361710792,3451.01,,3,4,3,3,3,4,4,15.6,67.8,79.12,4,0,1,PC,PC,12.5517,0.006,,1,qlp-s39-tois,QLP,16:15:12.69,-68:52:34.38,-10.411,0.017,-19.017,0.026,2459380.11405,0.0016871,8.7234738,3.15e-05,2.598,0.283,11.734853,0.009281,10750.0,8.54821,10.5545,0.637956,54.2067,755.0,28.0,404.622,2.7465,5522.0,130.6,4.42,0.08,1.0,0.05,,,0.97,0.123092,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3451,1,False,False,False -360475034,3452.01,,3,4,3,3,1,4,4,21.1,17.3,317.0,0,0,0,PC,PC,13.1151,0.006,,1,qlp-s39-tois,QLP,12:35:04.91,-73:07:46.79,-20.449,0.028,2.306,0.028,2459388.622437,0.0052896,2.8372178,2.1e-05,4.822,1.083,4.417062,0.070733,4060.0,65.1451,14.7827,,4549.21,2287.0,19.0,1024.38,17.56,5604.0,122.0,3.73,,2.24,,,,0.99,,"11,12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3452,1,False,False,True -360473750,3453.01,,3,4,3,3,3,4,4,12.9,32.6,100.2,0,0,1,PC,PC,12.6558,0.006,,1,qlp-s38-tois,QLP,12:35:38.91,-72:40:55.1,-5.777,0.027,-1.729,0.023,2459351.718378,0.0053523,4.3618031,3.55e-05,4.9,0.428,3.403684,0.003612,3130.0,3.32688,12.1596,0.733814,1248.73,1656.0,15.0,966.604,15.126,6126.0,129.4,3.81,0.08,2.21,0.11,,,1.16,0.163943,"11,12,38",2021-06-16,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3453,1,False,False,False -359426909,3454.01,,3,4,3,3,3,4,4,23.8,67.4,102.65,1,0,1,PC,PC,12.9585,0.006,,1,qlp-s38-tois,QLP,12:14:24.1,-72:20:50.32,-6.078,0.031,-1.622,0.028,2459357.82988,0.0022619,3.9415006,1.49e-05,2.177,0.198,9.75013,0.009072,8940.0,8.35519,12.3165,0.69727,264.591,1123.0,25.0,633.798,7.511,6011.0,127.3,4.26,0.08,1.3,0.06,,,1.11,0.146533,"11,12,38",2021-06-16,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3454,1,False,False,False -358938714,3455.01,,3,4,3,3,1,4,4,40.2,87.8,56.82,0,0,0,PC,PC,13.3477,0.006,,1,qlp,QLP,12:01:17.33,-76:23:58.48,-12.5,0.031,3.685,0.027,2458651.744921,0.0025826,0.422425,2.95e-05,0.68,0.159,4.449767,0.038743,4090.0,35.6826,8.6772,,1423.41,1711.0,16.0,532.33,4.7775,5269.0,122.0,4.25,,1.18,,,,0.9,,"11,12",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3455,1,False,False,False -357661805,3456.01,,3,4,4,3,3,4,4,18.1,97.7,99.4,5,0,1,PC,PC,12.0537,0.006,,1,qlp-s39-tois,QLP,12:34:39.89,-79:21:32.29,8.369,0.041,15.839,0.034,2459361.087389,0.0007509,17.0298529,2.48e-05,2.65,0.126,17.446053,0.005271,15940.0,4.85516,12.0922,0.782579,9.23182,485.0,59.0,222.115,1.0265,5022.0,124.8,4.43,0.09,0.92,0.06,,,0.83,0.101055,"11,12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3456,1,False,False,False -357312511,3457.01,,3,4,3,3,3,4,4,5.5,39.7,62.21,1,0,2,PC,PC,11.6146,0.006,,1,qlp-s39-tois,QLP,12:12:49.98,-79:45:25.94,-39.492,0.039,14.9,0.035,2459335.587765,0.0627307,32.6012979,0.0029076,4.366,0.462,4.885933,0.006341,4490.0,5.83981,9.18821,0.577669,17.4858,569.0,17.0,370.666,3.0515,6067.8,122.7,4.23,0.08,1.35,0.07,0.124094,0.0835039,1.13,0.151027,"11,12,39",2021-06-16,2023-01-24,2023-06-13 00:00:00,found in faint-star QLP search,3457,1,False,False,False -340228388,3458.01,TIC 340228388.01,3,4,3,3,3,4,4,49.4,137.1,96.91,4,0,1,PC,PC,12.6553,0.006,,1,qlp-s38-tois,QLP,13:25:21.75,-71:00:43.3,18.365,0.021,6.044,0.022,2459354.400233,0.0007801,3.1726875,4.2e-06,2.05,0.178,20.816414,0.0133,18990.0,12.2493,11.911,0.79364,172.9,1010.0,73.0,302.055,1.46,5056.0,126.7,4.48,0.08,0.87,0.05,,,0.84,0.101359,"11,12,38",2021-06-16,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3458,1,False,False,False -335860261,3459.01,,3,4,3,3,3,4,4,51.8,99.6,317.0,2,0,1,PC,PC,12.2014,0.006,,1,qlp-s38-tois,QLP,14:18:00.02,-62:21:18.79,,,,,2459354.893919,0.0039814,8.4893234,6.03e-05,4.903,0.323,15.329736,2.805004,14020.0,2580.17,,,357.289,1211.0,16.0,595.948,,5030.7,172.3,,,,,,,,,"11,12,38",2021-06-16,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3459,1,False,False,False -39858507,3460.01,,3,4,4,3,3,4,4,123.9,160.3,317.0,8,1,4,PC,PC,8.82719,0.006,,1,qlp,QLP,17:03:41,-30:46:12.35,-14.578,0.083,-10.538,0.055,2459378.7784,0.0013449,4.6288384,2.92e-05,6.264,0.521,5.85703,0.00032,5380.0,0.294727,17.2704,0.794132,4580.01,2291.0,110.0,205.426,2.8765,5978.9,104.1,3.89,0.09,2.22,0.1,,,1.375,0.226955,"12,39",2021-06-16,2021-08-26,2022-12-14 12:09:24,found in faint-star QLP search,3460,1,False,False,True -334080358,3461.01,,3,4,3,3,3,4,4,8.5,37.7,78.12,0,0,1,PC,PC,12.9682,0.006,,1,qlp-s38-tois,QLP,12:51:59.44,-71:36:04.35,0.314,0.028,4.797,0.026,2459357.927622,0.0070891,11.4483792,0.0001209,4.824,0.318,7.25519,0.008753,6660.0,8.06197,10.4552,0.62006,165.825,999.0,13.0,695.231,7.4825,6175.0,135.4,4.29,0.08,1.28,0.06,,,1.18,0.166294,"11,12,38",2021-06-16,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3461,1,False,False,False -324116813,3462.01,,3,4,3,3,3,4,4,9.5,44.0,45.22,1,0,1,PC,PC,12.8749,0.006,,1,qlp-s39-tois,QLP,09:52:59.83,-78:27:35.18,-6.049,0.025,69.692,0.023,2459379.364186,0.0021314,6.3885628,3.33e-05,1.726,0.248,4.798686,0.008204,4410.0,7.55645,7.62451,0.502363,46.0383,725.0,15.0,422.208,2.3115,5474.0,127.6,4.4,0.08,1.03,0.05,,,0.96,0.120377,"11,12,37",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3462,1,False,False,False -292889298,3463.01,,3,4,3,3,1,4,4,,,64.93,0,0,0,PC,PC,13.5313,0.006,,1,qlp,QLP,14:47:22.08,-60:32:41.36,0.342,3.531,-26.099,3.531,2458651.559857,0.0114978,2.2538878,0.0008573,3.664,0.592,8.119016,0.022828,7450.0,21.0249,,,,,9.0,,,,,,,,,,,,,"11,12",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3463,1,False,False,False -290504044,3464.01,,3,4,4,3,3,4,4,27.2,76.1,105.3,3,0,1,PC,PC,12.0719,0.006,,1,qlp-s38-tois,QLP,15:37:55.93,-44:47:23.92,3.716,0.082,-11.814,0.061,2459360.318976,0.0013087,3.6515704,1.36e-05,1.925,0.125,6.348366,0.003978,5830.0,3.66374,12.4868,0.680325,290.61,1150.0,25.0,597.774,13.406,6353.0,131.8,4.13,0.08,1.59,0.08,,,1.26,0.187249,"12,38",2021-06-16,2022-10-04,2023-06-28 00:00:00,found in faint-star QLP search,3464,1,False,False,False -454361389,3465.01,,3,4,3,3,3,4,4,18.1,52.9,103.65,0,0,1,PC,PC,12.7896,0.009,,1,qlp-s39-tois,QLP,11:12:36.57,-74:36:38.07,,,,,2459384.338338,0.0023728,3.9563671,1.83e-05,3.396,0.223,4.711445,0.002815,4330.0,2.59282,,,483.791,1306.0,23.0,876.04,,5601.0,408.9,,,,,,,,,"11,12,37,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; no stellar radius,3465,1,False,False,False -284254253,3466.01,,5,5,5,5,5,5,5,58.7,104.7,126.78,0,0,0,PC,FP,12.8482,0.006,,1,qlp,QLP,15:33:07.27,-57:38:07.01,-9.669,0.033,-5.794,0.036,2458651.973815,0.0136817,1.862908,0.0020072,4.562,0.394,3.719582,1.481857,3420.0,1363.91,13.9775,5.68226,20675.8,3340.0,11.0,527.819,6.746,5626.0,129.6,4.15,0.08,1.39,0.07,,,1.0,0.122714,12,2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3466,1,False,False,False -453289469,3467.01,,5,5,5,5,5,5,5,21.0,42.7,61.5,0,0,0,PC,FP,12.8492,0.006,,1,qlp,QLP,09:52:46.49,-76:09:57.09,-24.132,0.028,5.231,0.026,2458652.436812,0.0029969,0.7799194,5.3e-05,1.543,0.196,2.086617,0.003852,1920.0,3.54741,9.09676,0.647777,2609.72,1991.0,15.0,715.534,7.67,5473.0,128.0,3.8,0.08,2.04,0.11,,,0.96,0.128204,"10,11,12",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3467,1,False,False,False -282091493,3468.01,,5,5,5,5,5,5,5,17.7,59.2,54.9,0,0,0,PC,FP,13.5709,0.006,,1,qlp,QLP,09:01:10.07,-75:05:17.5,-29.443,0.037,30.294,0.047,2458647.685514,0.0030665,3.3789946,0.0002786,3.332,0.3,12.173955,0.011879,11150.0,10.9407,8.56973,,333.667,1190.0,18.0,388.495,3.066,4809.0,122.0,4.51,,0.82,,,,0.78,,"10,11,12",2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3468,1,False,False,False -447192619,3469.01,,3,4,3,3,3,4,4,43.8,56.9,317.0,2,0,1,PC,PC,12.5805,0.006,,1,qlp-s39-tois,QLP,16:41:54.94,-62:08:37.01,2.363,0.042,1.481,0.052,2459382.834181,0.0013125,2.6566986,6.4e-06,3.865,0.118,11.647053,0.002154,10670.0,1.98436,17.7901,0.95928,2780.14,2022.0,29.0,885.345,25.5515,6823.0,134.7,4.16,0.1,1.67,0.09,,,1.47,0.259165,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3469,1,False,False,False -277538491,3470.01,,3,4,3,3,1,4,4,56.1,68.7,317.0,1,0,0,PC,PC,13.3259,0.006,,1,qlp-s38-tois,QLP,10:55:26.01,-73:20:15.18,-13.771,0.035,8.581,0.031,2459357.021986,0.0012758,3.2404614,7.7e-06,1.642,0.25,16.552728,0.053339,15130.0,49.1262,18.8972,,321.441,1179.0,24.0,782.847,12.492,5823.0,130.0,4.2,,1.35,,,,1.05,,"10,11,12,37,38",2021-06-16,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3470,1,False,False,False -407166076,3471.01,,3,4,3,3,3,4,4,20.4,82.5,108.43,3,0,1,PC,PC,12.8852,0.006,,1,qlp-s39-tois,QLP,15:46:12.54,-78:19:32.4,8.846,0.024,-12.987,0.025,2459380.384701,0.0011453,8.7520247,2.43e-05,3.602,0.174,19.06915,0.003176,17410.0,2.92556,12.7543,0.665683,114.611,911.0,59.0,454.021,3.4115,5666.0,131.0,4.5,0.08,0.94,0.05,,,1.01,0.12999,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3471,1,False,False,True -275562670,3472.01,,5,5,5,5,5,5,5,87.3,195.2,126.24,0,0,0,PC,FP,13.5159,0.007,,1,qlp,QLP,16:02:08.85,-52:02:05.32,-10.025,0.063,-10.515,0.045,2458651.449273,0.0028281,1.5810556,0.0003538,2.437,0.197,36.81563,0.041324,33340.0,38.0604,13.941,,1668.68,1780.0,21.0,409.504,4.608,5985.0,122.0,4.72,,0.76,,,,1.1,,12,2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3472,1,False,False,False -406861922,3473.01,,3,4,3,3,1,4,4,32.5,45.4,317.0,2,0,0,PC,PC,13.0656,0.006,,1,qlp-s39-tois,QLP,15:07:18.01,-79:21:50.8,-6.899,0.026,-7.431,0.031,2459384.816539,0.0012335,4.0358074,1.13e-05,2.667,0.123,12.283759,0.013712,11250.0,12.6294,17.8847,,498.733,1316.0,33.0,1014.58,18.1805,6599.0,122.0,4.19,,1.56,,,,1.38,,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3473,1,False,False,False -274367763,3474.01,,3,4,4,3,3,4,4,46.8,126.2,127.8,3,0,1,PC,PC,11.9672,0.006,,1,qlp-s38-tois,QLP,15:34:00.8,-47:57:49.17,-8.542,0.075,-2.304,0.057,2459358.663246,0.0009064,3.8795023,1.01e-05,3.647,0.109,13.393396,0.002881,12260.0,2.65337,14.0735,0.704073,709.036,1437.0,50.0,420.123,7.2595,6048.0,125.5,4.29,0.08,1.26,0.06,,,1.13,0.150027,"12,38",2021-06-16,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,3474,1,False,False,False -403507814,3475.01,TIC 403507814.01,3,4,3,3,3,4,4,46.4,74.5,317.0,2,0,1,PC,PC,12.2587,0.006,,1,qlp-s39-tois,QLP,15:23:38.18,-76:53:44.68,-4.086,0.036,-4.149,0.039,2459383.8426,0.0006338,2.7812908,3.6e-06,3.208,0.125,13.030717,0.002274,11930.0,2.09485,18.2165,0.770351,2647.01,1998.0,78.0,904.833,21.5905,7560.0,140.3,4.26,0.08,1.63,0.06,,,1.75,0.288807,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3475,1,False,False,False -272983172,3476.01,,3,4,4,3,3,4,4,33.8,47.5,317.0,3,0,1,PC,PC,12.6718,0.007,,1,qlp-s39-tois,QLP,15:48:01.99,-50:41:32.95,3.782,0.046,3.342,0.032,2459385.89681,0.0014733,4.3205081,1.48e-05,2.51,0.216,14.526176,0.010398,13290.0,9.57715,14.5156,0.652737,706.863,1436.0,23.0,644.3,9.5835,7627.0,146.5,4.51,0.08,1.23,0.04,,,1.78,0.299591,"12,39",2021-06-16,2023-01-24,2023-06-26 00:00:00,found in faint-star QLP search,3476,1,False,False,False -402391147,3477.01,,3,4,3,3,1,4,4,23.5,59.4,131.44,0,0,0,PC,PC,13.4138,0.006,,1,qlp-s39-tois,QLP,16:30:41.7,-65:13:44.02,-1.675,0.018,-3.525,0.028,2459387.781424,0.0034689,3.3626798,2.61e-05,3.771,0.315,12.009271,0.01401,11000.0,12.9035,14.2118,,1144.81,1620.0,12.0,982.497,19.041,6165.0,122.0,4.22,,1.39,,,,1.17,,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3477,1,False,False,False -255909950,3478.01,,3,4,3,3,3,4,4,93.3,123.2,317.0,4,0,1,PC,PC,12.3282,0.006,,1,qlp-s39-tois,QLP,17:14:38.61,-67:18:09.44,6.399,0.028,-14.637,0.04,2459385.423634,0.0005248,1.82856,2.3e-06,2.961,0.06,19.444906,0.004072,17750.0,3.75077,20.4999,1.08989,2034.63,1871.0,89.0,657.544,11.782,6078.0,130.7,4.13,0.09,1.53,0.08,,,1.14,0.156907,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3478,1,False,False,False -402219289,3479.01,,3,4,3,3,1,4,4,23.9,53.2,106.95,1,0,0,PC,PC,13.4326,0.006,,1,qlp-s39-tois,QLP,14:40:29.62,-76:10:15.26,-7.798,0.028,0.291,0.032,2459386.482274,0.0016426,2.1970052,1.18e-05,2.966,0.127,8.140894,0.005364,7470.0,4.94085,12.6118,,1152.76,1623.0,26.0,880.221,15.7465,5636.0,122.0,4.1,,1.47,,,,1.0,,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3479,1,False,False,False -254909777,3480.01,,3,4,3,3,3,4,4,100.8,181.1,317.0,3,0,2,PC,PC,12.4119,0.006,,1,qlp,QLP,15:50:39.29,-43:07:16.98,,,,,2458650.197309,0.0014311,2.1301227,0.000263,2.646,0.16,17.655704,0.011991,16130.0,11.0442,,,1062.41,1590.0,27.0,805.466,,5830.0,166.9,,,,,,,,,12,2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search,3480,1,False,False,False -396316939,3481.01,,3,4,3,3,3,4,4,9.3,41.1,40.08,0,0,1,PC,PC,12.8719,0.007,,1,qlp-s39-tois,QLP,14:09:23.06,-73:32:06.36,-23.202,3.014,-11.495,3.014,2459386.301953,0.0039651,4.9214799,3.8e-05,2.425,0.324,4.035572,0.009183,3710.0,8.45752,,,110.739,903.0,15.0,438.015,,5055.0,113.1,,,,,,,,,"11,12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; no stellar radius,3481,1,False,False,False -254629854,3482.01,,5,5,5,5,5,5,5,28.8,80.9,57.95,2,0,0,PC,FP,10.7989,0.006,,1,qlp,QLP,15:46:10.24,-43:22:05.6,-14.595,0.093,-18.508,0.065,2459359.54722,0.0013316,0.9714298,2.9e-06,1.251,0.224,1.792944,0.003675,1650.0,3.3845,8.81333,0.626163,2557.87,1981.0,27.0,492.34,10.4695,6495.0,133.9,3.89,0.09,2.18,0.11,,,1.33,0.213055,12,2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search; TFOP FP; retired as EB,3482,1,False,False,False -395926728,3483.01,,3,4,3,3,3,4,4,30.5,61.3,112.36,3,0,1,PC,PC,12.8749,0.006,,1,qlp-s39-tois,QLP,14:00:05.98,-77:54:41.65,-18.592,0.024,-4.841,0.026,2459388.853133,0.0014628,1.4466788,4.6e-06,1.529,0.31,4.798686,0.00836,4410.0,7.69981,12.978,0.832526,1386.27,1699.0,19.0,884.446,14.0725,5881.0,126.4,3.95,0.08,1.81,0.09,,,1.07,0.132934,"11,12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3483,1,False,False,False -221882319,3484.01,,3,4,4,3,3,4,4,37.6,43.0,317.0,4,2,2,PC,PC,11.5616,0.006,,1,qlp-s39-tois,QLP,16:37:57.2,-58:46:49.59,8.728,0.052,9.004,0.054,2459386.556413,0.0011774,5.1890769,1.62e-05,5.011,0.112,7.419155,0.001005,6810.0,0.92558,15.2719,0.758092,863.316,1510.0,26.0,534.304,11.8385,6195.0,133.7,4.0,0.08,1.81,0.09,,,1.19,0.171664,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3484,1,False,False,False -394672497,3485.01,,1,4,1,1,3,4,4,2.7,48.6,5.57,3,1,1,PC,PC,9.6181,0.006,,1,qlp,QLP,13:26:59.94,-73:35:39.29,5.529,0.036,8.253,0.034,2459382.714016,0.0025243,11.8413467,6.07e-05,2.865,0.183,0.836339,0.000906,770.0,0.83445,2.20757,0.187216,18.0311,574.0,16.0,56.8792,0.08055,4554.0,122.3,4.52,0.1,0.77,0.06,,,0.72,0.0867862,"11,12,38,39",2021-06-16,2021-08-26,2022-12-14 12:09:24,found in faint-star QLP search,3485,1,False,False,False -221861843,3486.01,,3,4,4,3,3,4,4,88.6,234.2,77.58,2,3,1,PC,PC,11.4867,0.006,,1,qlp-s39-tois,QLP,16:37:46.37,-59:18:18.39,-25.274,0.049,-73.376,0.052,2459382.517413,0.0003912,2.217782,2.1e-06,1.421,0.065,16.464539,0.006082,15050.0,5.60163,10.4759,0.708659,133.224,946.0,80.0,154.715,0.8955,4841.0,122.0,4.52,0.09,0.81,0.05,,,0.79,0.0913607,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,V-shaped; found in faint-star QLP search,3486,1,False,False,False -301160638,3487.01,,3,5,5,3,3,4,4,87.6,226.6,317.0,2,0,2,PC,APC,10.1862,0.006,,1,qlp,QLP,17:00:27.12,-67:46:51.71,0.095,0.043,-4.0,0.051,2459378.988034,0.0006137,16.0085751,0.0008264,4.452,0.129,15.682169,0.355898,14340.0,327.74,19.3218,2.35152,150.886,976.0,37.0,173.108,1.2335,5992.0,192.0,4.34939,0.286664,1.08,0.05,,,1.09,0.142264,12,2021-06-16,2021-06-16,2022-12-14 12:09:24,found in faint-star QLP search; TFOP APC/BEB,3487,1,False,False,True -394570569,3488.01,,2,4,2,2,3,4,4,2.3,25.3,9.1,0,0,1,PC,PC,11.7789,0.006,,1,qlp-s39-tois,QLP,13:24:41.94,-72:40:35.25,-9.464,0.041,-7.66,0.04,2459379.699385,0.0098549,6.9625419,9.93e-05,4.564,0.623,1.118885,0.002676,1030.0,2.46467,2.97636,0.2175,360.794,1214.0,12.0,278.915,2.0385,5727.0,131.9,4.5,0.08,0.95,0.05,,,1.02,0.133468,"11,12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3488,1,False,False,False -221785300,3489.01,,3,4,4,3,3,4,4,55.7,137.0,118.1,2,0,1,PC,PC,11.7185,0.006,,1,qlp-s39-tois,QLP,16:35:39.54,-54:51:18.93,-8.083,0.067,-27.177,0.053,2459385.904563,0.0009129,3.7833369,7.3e-06,3.386,0.109,12.591267,0.003077,11530.0,2.83408,13.3743,0.813695,370.391,1222.0,48.0,297.152,4.842,5266.0,127.9,4.21,0.08,1.23,0.07,,,0.9,0.111909,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3489,1,False,False,False -394492339,3490.01,,3,4,3,3,3,4,4,41.5,73.0,317.0,3,0,1,PC,PC,12.5911,0.006,,1,qlp-s39-tois,QLP,10:20:47.77,-78:49:55.28,-19.963,0.028,12.486,0.023,2459374.125286,0.0004769,9.1317488,9.6e-06,2.448,0.044,39.21065,0.006155,35470.0,5.66889,14.7541,1.04377,27.2956,636.0,77.0,271.578,1.0595,5198.2,147.1,4.63,0.09,0.75,0.05,0.0178318,0.0859626,0.88,0.10804,"11,12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3490,1,False,False,False -208719443,3491.01,,3,4,4,3,3,4,4,180.8,274.9,317.0,2,0,1,PC,PC,11.8844,0.007,,1,qlp-s39-tois,QLP,16:21:04.18,-59:30:38,-8.338,1.233,-6.273,1.228,2459383.386266,0.0003742,2.4038651,2.4e-06,3.549,0.046,35.771572,0.003017,32410.0,2.77897,22.3961,,1441.91,,135.0,377.32,,5961.0,,,,1.21,,,,,,"12,39",2021-06-16,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,3491,1,False,False,False -81077799,3492.01,,3,4,3,3,3,4,4,66.3,80.7,317.0,1,0,1,PC,PC,8.4504,0.006,,1,qlp-s37-ffi,SPOC,11:06:32.8,-53:43:55.13,-8.847,0.049,-2.115,0.047,2460024.649054,0.0024199,9.2224114,3.81e-05,5.011,0.126,3.676004,0.000235,3380.0,0.21621,15.3135,0.659742,311.425,1170.0,111.0,201.957,1.274,6332.0,133.626,3.7075,0.0835077,2.59,0.11,,,1.25,0.186312,"36,37,63",2021-06-21,2023-05-05,2023-05-05 00:00:00,large PC,3492,1,False,False,True -203377303,3493.01,,1,4,1,1,4,4,4,7.8,77.0,11.43,4,3,7,PC,PC,8.7028,0.006,,1,spoc,SPOC,13:43:11.77,-22:35:07.6,43.375,0.077,-72.227,0.073,2459313.044998,0.0022928803,16.3234610310167,0.0032834504,4.40798273410358,0.43078676,0.829691,0.048605,763.88150696319,44.765427,3.3877094559223,1.1257042,93.9485855494127,794.039872670251,11.051317,96.7224,0.40065,5860.0,126.031,4.29672,0.07941,1.21150994300842,0.0594473,,,1.06,0.136557,37,2021-06-21,2021-06-21,2022-12-14 12:09:24,period could be half (8.16 d); first transit on momentum dump but looks okay,3493,1,False,False,True -165827520,3494.01,,2,4,4,2,3,4,4,1.9,76.9,5.56,8,0,6,PC,PC,12.295,0.007,,1,spoc-s01-s39-b0A-PC,SPOC,13:37:34.07,-37:11:00.45,-206.489,0.127,-16.674,0.154,2459310.020628,0.0020447692,7.74861196179273,2.2258037e-05,1.37433685917081,0.34596077,5.578685,0.489279,5124.98080864993,450.5409,2.21688276058385,0.79533786,3.62444752714885,351.908862053876,10.69108,33.7173,0.08385,3230.0,157.0,4.91717,0.00480017,0.307821005582809,0.00918622,,,0.285561,0.0201715,"11,37",2021-06-21,2022-03-21,2022-12-14 12:09:24,potential L1 candidate,3494,1,False,False,True -272167060,3495.01,,3,4,3,3,3,4,4,7.0,48.5,17.65,1,0,1,PC,PC,8.734,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,12:29:43.04,-58:14:24.47,-12.4,0.042,9.143,0.042,2459347.161831,0.0027228,8.41300337898912,2.5307978e-05,2.56013092206836,0.42843422,0.532614,0.039508,490.435048093288,36.387394,4.37416037504701,2.483735,752.108277954929,1335.64130653228,11.795451,172.372,1.0055,6529.0,133.469,3.99995,0.0868846,1.92409002780914,0.0838945,,,1.35,0.217273,"11,37,38",2021-06-21,2022-03-22,2022-12-14 12:09:24,Potential centroid shift from S38 in the same direction as (less-significant) S37 shift and is suggestive of NEB,3495,1,False,False,True -448358913,3496.01,,3,4,3,3,3,4,4,21.5,118.2,53.46,1,0,2,PC,PC,10.3363,0.007,,1,qlp-s64-ffi,SPOC,10:34:58.45,-52:46:39.38,-10.873,0.074,2.478,0.075,2460067.735126,0.0009518,1.5505494,1.4e-06,1.356,0.062,1.71247,0.07119,1576.0,65.566,8.21753,0.357131,7457.95,2588.0,35.0,656.87,18.65,,,,,2.02,0.07,,,2.86,0.382517,"9,10,36,37,63,64",2021-06-21,2023-06-28,2023-06-28 00:00:00,possible synchronized stellar variability,3496,1,False,False,True -21113347,3497.01,,5,5,5,5,5,5,5,55.4,67.9,317.0,0,0,0,PC,KP,11.4007,0.006,,1,spoc,SPOC,12:27:08.95,-48:58:42.28,,,,,2459310.816523,0.0014173619,4.21806867604378,0.00044293504,3.45698314254477,0.09439024,8.436261,0.202549,7739.9746816027,186.53735,9.86790116899197,0.18708754,382.711193577154,1128.0738729284,32.640713,403.591,,5780.0,,4.438,,1.0,,,,,,37,2021-06-21,2021-06-21,2022-12-14 12:09:24,HATS-58 A b; spoc is assuming solar radius,3497,1,False,False,True -310294189,3498.01,,3,4,3,3,3,4,4,9.3,56.3,20.04,0,0,1,PC,PC,12.0475,0.006,,1,qlp-s38-tois,SPOC,12:20:33.19,-62:24:05.79,-4.232,0.04,-30.494,0.038,2459353.243502,0.0040415,4.8768783,5.39e-05,4.024,1.015,4.133657,0.011142,3800.0,10.2625,4.71563,0.438282,295.298,1154.0,15.0,165.222,0.724,4562.0,120.541,4.54562,0.0962475,0.75,0.06,,,0.72,0.0869566,"11,37,38",2021-06-21,2022-03-22,2022-12-14 12:09:24,likely blended binary; significant secondary,3498,1,False,False,True -446370039,3499.01,TIC 446370039.01,3,4,3,3,3,4,4,37.0,41.3,317.0,0,10,1,PC,PC,11.5226,0.006,,1,spoc,SPOC,10:23:11.36,-52:45:00.76,-3.847,0.058,6.659,0.05,2459307.958794,0.0029553187,4.60012637994835,0.000985915,8.15164747703318,0.24311264,4.177606,0.1376,3840.32390435037,126.72629,19.5358221559234,1.4528362,3113.35860219844,1905.14061707127,19.392721,748.181,21.113,5695.0,132.098,3.45316,0.0824566,3.12330007553101,0.176914,,,1.01,0.131985,37,2021-06-21,2021-06-21,2022-12-14 12:09:24,Large but could still be inflated; possible EB,3499,1,False,False,True -443666343,3500.01,,2,4,2,2,3,4,4,5.1,42.6,15.14,5,3,3,PC,PC,10.8298,0.006,,1,spoc,SPOC,12:27:16.05,-29:49:58.79,-58.419,0.069,-38.693,0.062,2459307.988023,0.006547467,7.35106421849639,0.0030297993,3.84754311966647,0.61792135,1.428367,0.126067,1314.70949591798,116.10533,3.99653696470119,1.929498,175.452992138621,928.239284150271,8.550183,195.884,1.8155,5406.0,131.891,4.32992,0.0813821,1.09809005260468,0.060603,,,0.94,0.118007,37,2021-06-21,2021-06-21,2022-12-14 12:09:24,weak signal,3500,1,False,False,True -98957720,3501.01,TIC 98957720.01,3,5,5,3,3,4,4,73.0,193.6,317.0,0,8,1,PC,APC,10.7413,0.006,,1,qlp-s37-tois,SPOC,12:04:00.19,-28:19:31.25,-42.517,0.061,-3.516,0.031,2459313.471423,0.0002162,15.3502505,7.2e-06,2.87,0.068,28.847874,0.090079,26220.0,82.9622,19.2152,1.34199,52.6633,750.0,253.0,206.21,1.916,5782.5,178.7,3.92,0.12,1.0,0.05,-0.06,0.1,1.099,0.145018,"10,37",2021-06-21,2023-01-24,2023-01-26 12:09:41,period could be half (7.676 d); likely EB,3501,1,False,False,True -452281203,3502.01,,3,4,3,3,3,4,4,42.7,61.3,317.0,1,0,1,PC,PC,11.4712,0.006,,1,spoc,SPOC,11:36:10.35,-56:37:27.03,-14.269,0.044,0.722,0.037,2459307.388819,0.0031442256,3.44628987272758,0.0006688495,1.52513388808873,0.20703055,4.758752,0.613512,4373.38151695234,564.9062,15.0292200595938,24.457378,2682.53749722454,1835.50765430372,12.584627,627.463,11.448,7853.0,136.501,4.33241,0.079684,1.54437005519867,0.0501257,,,1.87,0.29061,37,2021-06-21,2021-06-21,2022-12-14 12:09:24,Gaia DR2 RV error ~5.4 km/s; likely EB,3502,1,False,False,True -459850897,3503.01,,3,4,3,3,3,4,4,35.4,151.2,60.3,2,0,1,PC,PC,10.2726,0.006,,1,qlp-s37-tois,SPOC,10:54:51.47,-58:34:09.42,-14.116,0.049,-1.451,0.041,2459331.415672,0.00206,1.1901816,5.3e-06,2.049,0.175,2.717739,0.00363,2500.0,3.34351,9.02257,0.454531,10290.0,2805.0,19.0,456.891,5.8145,8405.0,154.635,4.25145,0.0732307,1.79,0.06,,,2.08,0.3131,"10,37",2021-06-21,2023-01-24,2023-01-26 12:09:41,possible odd-even; star is a pulsator,3503,1,False,False,True -117689799,3504.01,,3,5,5,3,3,4,4,94.9,223.7,129.97,0,2,1,PC,APC,11.6006,0.007,,1,spoc-s54-b0A,QLP,20:02:56.4,24:26:06.49,4.563,0.036,-10.646,0.04,2459771.87432,0.00066153996,2.15715321026241,0.00010046483,2.22252481378514,0.05641757,19.636547,0.549884,17923.3596180902,506.33356,14.1575287218499,0.76550406,1041.25605744271,1448.8023268067,30.884363,299.999,2.492,5863.0,140.7,4.42,0.08,1.04534995555878,0.0500503,,,1.06,0.138061,"14,54",2021-06-23,2022-10-05,2022-12-14 12:09:24,found in faint-star QLP search; TFOP SB1/APC,3504,1,False,False,True -390988385,3505.01,,3,4,3,3,4,4,4,21.5,86.9,43.44,6,3,3,PC,PC,10.9372,0.007,,1,qlp-s54-tois,QLP,19:48:10.43,18:41:56.09,2.0,1.3,1.7,1.3,2459793.534385,0.0020787,2.9151556,1.17e-05,2.004,0.21,3.164098,0.213114,2910.0,196.266,7.4578,,504.746,,19.0,373.477,,6220.0,,,,1.34,,,,,,"14,41,54",2021-06-23,2022-11-30,2022-12-14 12:09:24,found in faint-star QLP search,3505,1,False,False,True -102159710,3506.01,,3,4,3,3,1,4,4,24.1,69.7,100.27,1,0,0,PC,PC,12.8624,0.006,,1,spoc-s55-b0A,QLP,19:56:53.81,31:25:21.76,-3.317,0.026,-13.306,0.032,2459801.039685,0.004019488,4.4972655421783,0.0012491985,3.46142009836229,0.3680677,11.374427,0.911228,10421.5494141916,838.91974,12.1540564763691,1.593734,426.631352115054,1159.13212263848,11.628543,528.922,5.0785,5554.0,141.2,4.28,0.08,1.18465995788574,0.0600377,,,0.978,0.127123,"14,41,55",2021-06-23,2022-12-08,2022-12-16 12:08:26,found in faint-star QLP search,3506,1,False,False,True -86451883,3507.01,,5,5,5,5,5,5,5,31.0,85.4,54.02,0,0,0,PC,FP,13.3911,0.006,,1,qlp,QLP,19:54:14.71,32:25:32.58,-1.004,0.029,-23.111,0.032,2458708.663596,0.0080666,1.7561019,0.001041,2.858,0.536,12.020249,0.052415,11010.0,48.2745,8.43478,,1012.39,1571.0,9.0,378.906,2.7575,4896.0,122.0,4.52,,0.81,,,,0.801,,14,2021-06-23,2021-06-23,2022-12-14 12:09:24,low SNR; found in faint-star QLP search,3507,1,False,False,True -278968371,3508.01,,5,5,5,5,5,5,5,54.7,109.2,122.53,0,0,0,PC,FP,12.4162,0.032,,1,qlp,QLP,19:20:18.97,21:22:17.31,-5.342,0.033,-1.476,0.041,2458707.691822,0.0041384,1.2997811,0.0003363,2.35,0.272,7.779964,0.012731,7140.0,11.7254,13.6803,0.895715,3036.53,2068.0,17.0,535.034,8.240501,6053.0,247.7,4.08,0.09,1.61,0.08,,,1.13,0.189611,14,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3508,1,False,False,True -244912396,3509.01,,3,4,3,3,1,4,4,58.8,124.7,317.0,1,0,0,PC,PC,13.0815,0.007,,1,qlp-s41-tois,QLP,20:08:47.22,25:27:13.23,-3.948,2.103,-4.584,2.107,2459773.020297,0.003197034,5.1108509,2.14e-05,4.36,0.171,17.40192,0.007288,15900.0,6.71208,,,249.397,1107.0,21.0,1017.59,,4916.0,101.1,,,,,,,,,"14,41,54",2021-06-23,2022-10-06,2022-12-14 12:09:24,found in faint-star QLP search; no stellar parameters,3509,1,False,False,True -57753734,3510.01,,3,4,4,3,3,4,4,40.3,104.4,115.53,3,1,2,PC,PC,12.7595,0.006,,1,qlp-s41-tois,QLP,19:45:24.96,30:46:47.88,9.725,0.026,-1.234,0.026,2459772.035438,0.002093013,2.8724894,1.09e-05,2.772,0.165,14.735264,0.009605,13480.0,8.84634,13.1718,0.741802,614.779,1387.0,26.0,518.905,4.477,5752.0,183.6,4.37,0.08,1.1,0.05,,,1.029,0.13242,"14,41,54",2021-06-23,2022-10-11,2023-06-06 00:00:00,found in faint-star QLP search,3510,1,False,False,True -416368336,3511.01,,3,5,5,3,1,4,4,66.5,116.0,102.21,7,0,0,PC,APC,13.4539,0.01,,1,qlp-s54-tois,QLP,19:09:06.03,28:21:45.48,-21.586,0.028,-7.008,0.033,2459794.669721,0.0012158,1.0848133,2.4e-06,1.074,0.118,15.439859,1.111798,14120.0,1023.48,12.3151,,289.23,1148.0,14.0,427.611,3.8865,4670.0,122.0,4.32,,0.99,,,,0.74,,"14,40,54",2021-06-23,2022-11-30,2023-05-11 12:03:14,found in faint-star QLP search; slightly v-shaped,3511,1,False,False,True -40779013,3512.01,,5,5,5,5,5,5,5,72.3,86.4,317.0,1,4,1,PC,FP,11.8744,0.006,,1,qlp,QLP,19:33:55.24,34:34:25.47,,,,,2458708.891857,0.0021615,1.7113115,0.0002522,1.562,0.339,10.736555,0.024791,9840.0,22.8329,,,1522.7,1740.0,19.0,611.126,,6845.2,270.1,,,,,,,,,14,2021-06-23,2021-06-23,2022-12-14 12:09:24,some odd-even; V-shaped; found in faint-star QLP search,3512,1,False,False,True -244487927,3513.01,,3,4,3,3,3,4,4,27.7,33.1,317.0,2,0,1,PC,PC,12.5001,0.006,,1,qlp-s41-tois,QLP,20:04:53.93,25:00:34.69,9.166,2.099,-26.299,2.168,2459772.815413,0.0028512483,2.9817237,1.58e-05,2.919,0.258,5.409563,0.006656,4970.0,6.13021,15.4413,1.05725,2338.63,1937.0,19.0,,,7717.5,20.6,,,2.14,0.12,0.154,0.019,,,"14,41,54",2021-06-23,2022-10-11,2022-12-14 12:09:24,found in faint-star QLP search,3513,1,False,False,True -1870990135,3514.01,,3,4,3,3,3,4,4,123.0,123.8,317.0,5,0,2,PC,PC,12.8953,0.006,,1,qlp-s41-tois,QLP,19:42:13.63,32:36:50.76,5.939,0.028,13.712,0.028,2459445.482548,0.000758,1.5039495,5.2e-06,1.857,0.336,27.622098,0.782053,25120.0,720.038,17.3816,3.08744,1141.17,1619.0,33.0,413.169,2.803,5623.0,132.1,4.54,0.08,0.95,0.07,,,1.0,0.127789,"14,40,41",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search,3514,1,False,False,True -198725468,3515.01,,3,4,3,3,1,4,4,25.8,76.8,77.06,1,2,0,PC,PC,12.1831,0.006,,1,qlp-s40-tois,QLP,18:58:03.23,28:56:16.33,0.0,4.3,-6.3,4.2,2459771.614539,0.0020685424,3.0415724,1.1e-05,3.602,0.153,6.63235,0.002244,6090.0,2.06687,10.3727,,1021.58,,32.0,508.733,,5814.1,,,,1.3,,0.267,0.018,,,"14,40,53,54",2021-06-23,2022-10-11,2022-12-14 12:09:24,found in faint-star QLP search,3515,1,False,False,True -30254887,3516.01,,3,4,3,3,4,4,4,135.0,170.0,317.0,1,2,3,PC,PC,11.2292,0.01,,1,qlp-s54-tois,QLP,19:15:53.7,30:36:32.97,-1.072,0.034,-5.028,0.04,2459794.639759,0.0014065,2.501531,7.3e-06,1.887,0.139,3.240324,8.686858,2980.0,7968.97,20.1829,15.5508,2388.65,1947.0,25.0,378.28,3.3685,5823.0,130.4,4.06,0.08,1.58,0.08,,,1.05,0.136074,"14,40,41,54",2021-06-23,2022-12-01,2022-12-14 12:09:24,found in faint-star QLP search; v-shaped; large,3516,1,False,False,True -123007594,3517.01,,3,4,4,3,1,4,4,25.8,67.2,121.54,2,0,0,PC,PC,13.4486,0.007,,1,qlp-s41-tois,QLP,18:34:49.24,44:45:31.7,-14.434,0.025,-21.917,0.029,2459772.477975,0.0022151212,3.3687307,1.11e-05,2.645,0.168,14.504169,0.008748,13270.0,8.05674,13.6378,,403.813,1248.0,28.0,775.36,8.4035,5727.0,122.0,4.3,,1.18,,,,1.02,,"14,41,53,54",2021-06-23,2022-10-11,2023-05-15 00:00:00,found in faint-star QLP search,3517,1,False,False,True -1712954983,3518.01,,3,4,4,3,1,4,4,,,317.0,3,0,0,PC,PC,13.3015,0.01,,1,qlp,QLP,19:15:05.76,30:47:07.7,-7.909,0.763,18.966,0.9,2458710.180785,0.0056037,2.9661661,0.0010404,2.068,0.299,21.037787,0.044989,19190.0,41.4358,16.476,0.849796,263.25,1122.0,10.0,7470.05,2918.86,5436.0,32.5,,,1.17,0.01,,,,,14,2021-06-23,2021-06-23,2023-05-02 00:00:00,found in faint-star QLP search,3518,1,False,False,True -417129824,3519.01,,3,4,3,3,3,4,4,29.9,73.0,117.17,1,2,2,PC,PC,12.0676,0.007,,1,qlp-s55-tois,QLP,20:32:18.72,21:20:42.25,2.567,0.052,-5.556,0.055,2459818.762814,0.0013497,3.500869,7.3e-06,3.84,0.166,6.785295,0.209175,6230.0,192.639,13.3258,2.6709,913.394,1531.0,39.0,618.938,13.2435,5870.0,126.7,4.01,0.08,1.69,0.09,,,1.06,0.131351,"14,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search,3519,1,False,False,True -120101789,3520.01,,3,4,3,3,1,4,4,22.7,54.7,123.29,2,0,0,PC,PC,13.3539,0.007,,1,qlp-s41-tois,QLP,18:56:20.15,38:35:05.53,5.765,0.028,9.5,0.028,2459744.308684,0.0024543034,3.0086349,1.46e-05,3.034,0.23,9.301055,0.007323,8530.0,6.74479,13.7329,,831.069,1495.0,24.0,966.909,14.4815,5984.0,122.0,4.15,,1.46,,,,1.1,,"14,40,41,53,54",2021-06-23,2022-10-06,2022-12-14 12:09:24,found in faint-star QLP search,3520,1,False,False,True -429036977,3521.01,,3,4,3,3,2,4,4,,,317.0,3,0,1,PC,PC,12.561,0.019,,1,qlp-s55-tois,QLP,21:07:45.54,31:46:51.42,0.118,2.202,2.633,2.202,2459819.572515,3.3053443,3.0002348,0.006387,0.496,1.023,9.72822,1.721289,8920.0,1584.11,,,39.1931,697.0,19.0,761.867,,5757.3,175.1,,,,,,,,,"15,55",2021-06-23,2022-12-07,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; high RUWE (~34) in Gaia DR3; no stellar parameters,3521,1,False,False,True -106224627,3522.01,,3,4,3,3,1,4,4,28.6,100.5,75.5,3,0,0,PC,PC,12.9096,0.006,,1,qlp-s55-tois,QLP,20:04:19.1,34:23:55.68,-5.288,0.023,-6.038,0.026,2459820.543866,0.0019475,3.3412415,8.3e-06,1.938,0.166,13.503323,0.869668,12360.0,800.673,10.2542,2.86905,161.632,993.0,22.0,383.487,2.361,5285.0,149.4,4.48,0.09,0.9,0.05,,,0.907,0.119294,"14,15,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; ~1 sigma odd-even in spoc-s55-b0A,3522,1,False,False,True -417047499,3523.01,,3,4,4,3,2,4,4,61.5,73.8,317.0,6,3,2,PC,PC,12.1042,0.022,,1,qlp-s41-tois,QLP,20:17:08.03,42:54:23.52,0.661,0.09,-11.592,0.094,2459444.920543,0.0007293,2.304583,3.4e-06,3.457,0.075,11.789731,0.001227,10800.0,1.13023,16.9661,0.97774,2500.98,1970.0,59.0,645.294,24.1695,6562.0,180.9,4.18,0.1,1.58,0.09,,,1.36,0.23958,"14,15,41",2021-06-23,2022-12-12,2023-06-20 00:00:00,found in faint-star QLP search,3523,1,False,False,False -106224626,3524.01,,5,5,5,5,5,5,5,46.6,152.2,119.59,0,0,0,PC,FP,13.4979,0.006,,1,qlp,QLP,20:04:18.91,34:23:52.83,-5.199,0.028,-5.857,0.032,2458731.298955,0.0034507,3.3418892,0.0004222,2.084,0.209,27.332571,0.045329,24860.0,41.749,13.4003,,123.578,928.0,15.0,380.532,2.779,4874.0,122.0,4.53,,0.8,,,,0.795,,"14,15",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3524,1,False,False,True -373576942,3525.01,,5,5,5,5,5,5,5,53.7,47.5,317.0,1,0,0,PC,FP,12.8424,0.009,,1,qlp,QLP,21:21:42.71,37:49:22.2,-4.599,0.023,-11.514,0.026,2458731.568477,0.0043856,0.8912218,0.0003058,1.846,0.309,9.991173,0.026276,9160.0,24.2008,15.1782,1.1299,4445.59,2274.0,16.0,891.899,12.153,6245.0,136.1,4.12,0.09,1.59,0.08,,,1.21,0.173465,15,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3525,1,False,False,True -89876424,3526.01,,5,5,5,5,5,5,5,41.4,45.4,317.0,0,0,0,PC,FP,13.3403,0.013,,1,qlp,QLP,20:06:05,34:18:55.27,-1.741,0.032,-5.531,0.031,2458733.088312,0.0069156,1.5380702,0.0003362,2.226,0.32,9.563906,0.02663,8770.0,24.5268,18.9812,,1996.94,1862.0,11.0,1277.4,30.515,6125.0,122.0,3.87,,2.06,,,,1.16,,"14,15",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3526,1,False,False,True -355748785,3527.01,,3,4,3,3,3,4,4,136.6,241.4,317.0,4,0,2,PC,PC,12.5298,0.015,,1,spoc-s55-b0A,QLP,20:01:03.25,40:34:37.83,-0.86,0.032,-5.666,0.034,2459798.74728,0.0023712958,1.7548325759512,0.000290021,2.22294451164131,0.19141927,8.608317,0.656587,7897.20451332692,604.55646,32.3653534826825,38.83262,7318.31031297044,2358.97020044313,14.768294,974.576,19.939,5889.0,153.7,3.71,0.08,2.40126991271973,0.124875,,,1.07,0.135853,"14,15,41,54,55",2021-06-23,2022-12-08,2022-12-16 12:08:26,found in faint-star QLP search; possibly too large; v-shaped,3527,1,False,False,True -67247610,3528.01,,3,4,3,3,2,4,4,,,317.0,2,0,2,PC,PC,13.134,0.017,,1,spoc-s55-b0A,QLP,20:47:26.94,37:07:04.2,,,,,2459797.788743,0.0027568652,1.97421077043222,0.0003616125,2.07861967903023,0.2354941,22.513881,2.235605,20522.5367177041,2056.9502,,,1053.16884682033,1452.92852606712,12.684056,,,3633.7,351.2,,,,,,,,,"15,55",2021-06-23,2022-11-28,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3528,1,False,False,True -326203952,3529.01,,3,4,3,3,4,4,4,40.9,101.0,126.37,2,0,5,PC,PC,12.8771,0.006,,1,qlp-s56-tois,QLP,21:52:14.34,27:36:26.17,5.966,1.006,3.871,0.943,2459851.01373,0.000901,2.5850398,3.2e-06,2.39,0.126,14.185118,0.441829,12980.0,406.857,14.2221,0.361035,568.458,1360.0,38.0,603.925,,5770.0,52.6,,,1.2,0.02,,,,,"15,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search; possible synchronization; no stellar radius in spoc-s56-b0A,3529,1,False,False,False -64214215,3530.01,,3,5,5,3,2,4,4,,,22.57,0,1,1,PC,APC,11.4204,0.047,,1,qlp-s55-tois,QLP,20:36:20.07,38:54:59.24,-0.582,0.048,-2.352,0.047,2459823.602847,0.0015754,1.3570332,3.1e-06,1.161,0.141,2.336846,0.172869,2150.0,159.206,,,13694.3,3013.0,23.0,897.453,24.624,12679.0,131.0,,,,,,,,,"14,15,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; TFOP RR/APC; possible composite spectrum,3530,1,False,False,True -316038054,3531.01,,3,5,5,3,1,4,4,97.8,146.6,317.0,0,0,0,PC,APC,10.711,0.006,,1,spoc-s56-b0A,QLP,21:25:30.6,55:43:22.57,-17.395,0.1,-15.802,0.065,2459855.812176,0.0004825286,3.81007231312371,9.712723e-05,4.30719462022172,0.029624548,14.200316,0.097309,12993.8158441104,89.6205,18.5489107993672,0.84374946,1563.22779611284,1603.70807787593,110.51198,360.072,6.0195,6674.0,343.5,4.19,0.1,1.5884200334549,0.0715879,,,1.41,0.256041,"15,56,57",2021-06-23,2023-01-30,2023-02-09 12:10:04,found in faint-star QLP search; large; multiple stars in pixel,3531,1,False,False,False -42484503,3532.01,,3,4,4,3,2,4,4,,,90.1,2,0,1,PC,PC,12.5112,0.006,,1,spoc-s55-b0A,QLP,20:09:17.98,39:07:13.95,5.119,2.106,3.157,2.108,2459797.158896,0.0016502701,2.45552945261528,0.0002538773,2.32709865675809,0.15336277,11.960113,0.583876,10955.2204306444,537.62494,,,787.340327263749,1351.01563072121,15.707322,,,4908.5,42.5,,,,,,,,,"14,15,54,55",2021-06-23,2022-12-08,2022-12-16 12:08:26,found in faint-star QLP search; no stellar radius,3532,1,False,False,True -313408643,3533.01,,3,4,3,3,2,4,4,,,71.6,2,1,1,PC,PC,11.9114,0.006,,1,qlp-s55-tois,QLP,20:34:15.05,35:23:42.2,,,,,2459823.894332,0.0009595,4.3167817,6.5e-06,2.75,0.071,9.114908,0.24637,8360.0,226.889,,,192.446,1037.0,32.0,,,5276.4,145.8,,,,,,,,,"14,15,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; centroid near TIC 1965256662 with similar brightness (Tmag~11.968) in spoc-s55; multiple stars in pixel; no stellar radius,3533,1,False,False,True -27916356,3534.01,TIC 27916356.01,3,5,5,3,5,4,5,33.9,82.8,121.31,0,15,2,KP,KP,12.6877,0.007,,1,spoc-s14-s55-b0A-KP,QLP,19:47:20.94,48:14:23.89,0.961,0.025,8.429,0.026,2459825.945136,0.0013901257,3.23469231715689,8.072857e-06,3.62980923130542,0.075277604,11.121032,0.162371,10190.5699792192,149.53772,13.595046761825,0.67460585,843.711873789258,1374.57452175872,53.002205,587.039,5.0285,5613.0,107.7,4.2,0.08,1.31473994255066,0.059593,0.27,0.1,0.99,0.131661,"14,15,41,54,55,56",2021-06-23,2023-03-15,2023-03-24 12:12:10,Kepler-6 b; found in faint-star QLP search,3534,1,False,False,True -304514922,3535.01,,3,4,3,3,1,4,4,60.9,69.8,317.0,1,0,0,PC,PC,13.4268,0.015,,1,qlp-s55-tois,QLP,21:02:33.13,41:55:23.5,3.343,2.209,4.074,2.209,2459820.907597,0.0020177,1.9115371,6.4e-06,2.647,0.215,12.42652,0.755402,11380.0,695.509,,,,,21.0,748.729,,,,,,,,,,,,"15,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; no stellar radius,3535,1,False,False,True -27844066,3536.01,,5,5,5,5,5,5,5,58.0,70.6,317.0,1,0,0,PC,FP,12.5299,0.006,,1,qlp,QLP,19:45:39.44,51:09:43.1,-8.265,2.085,-5.897,2.085,2458732.821053,0.0015932,1.8532983,9.98e-05,1.197,0.21,11.778755,0.021269,10790.0,19.5896,,,480.295,1304.0,18.0,777.748,,6292.8,284.0,,,,,,,,,"14,15",2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3536,1,False,False,True -294599100,3537.01,,5,5,5,5,5,5,5,42.8,54.5,317.0,1,0,0,EB,FP,12.6275,0.006,,1,qlp-s41-tois,QLP,20:09:08.24,49:09:17.55,18.728,0.029,-12.158,0.029,2459440.870522,0.0014025,5.6133922,1.57e-05,1.424,0.38,17.346758,0.558152,15850.0,513.945,15.2695,2.76607,91.3894,861.0,27.0,449.327,3.0325,5848.0,234.5,4.41,0.09,1.07,0.05,,,1.056,0.146743,"14,15,41",2021-06-23,2022-12-12,2022-12-16 12:08:26,V-shaped; found in faint-star QLP search; strong odd/even depth difference in the V-shaped event in qlp-s41-tois,3537,1,False,False,True -27459498,3538.01,,3,4,3,3,1,4,4,16.6,22.3,317.0,2,0,0,PC,PC,13.0197,0.007,,1,qlp-s56-tois,QLP,19:41:18.76,48:09:45.56,-2.654,0.026,-12.971,0.027,2459845.016892,0.0018184,7.3105415,2.52e-05,3.1,0.586,9.75013,0.547069,8940.0,503.742,15.0553,,216.462,1068.0,28.0,999.475,14.733,6353.0,122.0,4.14,,1.58,,,,1.26,,"14,15,40,41,54,55,56",2021-06-23,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search,3538,1,False,False,True -294594423,3539.01,,3,4,3,3,1,4,4,24.8,80.1,131.37,1,0,0,PC,PC,13.1383,0.017,,1,qlp-s41-tois,QLP,20:08:18.89,48:11:54.98,-10.675,0.032,-6.284,0.039,2459801.238913,0.0016711627,6.0978165,1.73e-05,3.402,0.189,16.65195,0.005962,15220.0,5.49127,14.2859,,283.742,1143.0,33.0,649.212,7.8915,6255.0,122.0,4.44,,1.11,,,,1.22,,"14,15,41,54,55",2021-06-23,2022-12-08,2022-12-14 12:09:24,found in faint-star QLP search; weak odd-even,3539,1,False,False,True -17865622,3540.01,,3,5,5,3,4,4,4,76.1,212.5,100.58,2,10,5,PC,CP,10.9541,0.007,,1,spoc-s56-b0A,QLP,21:55:38.73,28:10:46.2,8.41,0.861,2.65,0.859,2459826.736428,0.00060953526,3.11984038989874,0.00012818676,1.76467229033528,0.03779436,8.739208,0.307411,8016.80095305528,283.0963,12.1757999749746,1.3005697,728.1777182852,1324.88778476352,52.71582,,,6011.2,41.8,,,1.13476002216339,0.105497,0.201,0.04,,,"15,56",2021-06-23,2022-12-06,2023-03-03 12:02:56,TOI-3540 A b; found in faint-star QLP search,3540,1,False,False,False -291147951,3541.01,,5,5,5,5,5,5,5,96.8,157.2,317.0,1,0,0,PC,FP,13.3888,0.006,,1,qlp-s41-tois,QLP,20:40:29.12,25:20:12.82,-5.184,0.035,-12.058,0.034,2459444.951847,0.0029031,2.5313956,1.36e-05,3.128,0.208,10.517272,3.991687,9640.0,3669.73,23.2858,,3659.88,2166.0,20.0,721.677,12.8675,5854.0,122.0,4.36,,1.13,,,,1.057,,"14,15,41",2021-06-23,2022-12-12,2023-07-10 12:03:05,found in faint-star QLP search; possible centroid offset in qlp-s41-tois,3541,1,False,False,False -16187321,3542.01,,3,5,5,3,1,4,4,40.3,116.5,129.18,1,2,0,PC,APC,11.7211,0.022,,1,qlp-s55-tois,QLP,20:29:30.47,36:58:14.5,-11.357,0.036,-23.555,0.038,2459813.403681,0.0007292,4.2021893,4.4e-06,2.742,0.076,10.155552,0.21087,9310.0,194.2,14.1363,2.25235,523.564,1332.0,69.0,503.905,6.1525,6702.0,194.0,4.29,0.09,1.42,0.06,,,1.42,0.232747,"14,15,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; TFOP SB1/APC,3542,1,False,False,True -275887811,3543.01,,3,4,3,3,3,4,4,59.4,120.0,317.0,3,1,2,PC,PC,11.9344,0.006,,1,qlp-s55-tois,QLP,20:20:33.85,42:53:37.21,-3.339,0.907,-6.856,0.85,2459815.576298,0.0011353,6.481666,1.05e-05,3.35,0.421,13.107639,0.775351,12000.0,713.87,22.7901,,1063.58,,41.0,755.648,,7849.0,,,,1.99,,,,,,"14,15,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search,3543,1,False,False,True -15460993,3544.01,,3,4,4,3,4,4,4,52.6,121.9,126.02,4,0,3,PC,PC,12.5531,0.006,,1,qlp-s55-tois,QLP,21:32:49.35,26:50:46.09,-5.87,1.106,-5.367,1.031,2459821.701525,0.0009159,2.2020405,2.9e-06,1.675,0.272,12.009271,0.860615,11000.0,792.342,,,317.569,1176.0,40.0,496.773,,5276.4,87.7,,,,,,,,,"15,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,V-shaped; found in faint-star QLP search; no stellar radius,3544,1,False,False,True -274641986,3545.01,,3,4,3,3,1,4,4,104.1,161.1,317.0,6,5,0,PC,PC,11.5954,0.017,,1,spoc-s55-b0A,QLP,20:05:15.46,37:20:59.3,7.384,0.045,2.215,0.051,2459798.431136,0.0008268182,3.1870439414698,0.00017110523,3.35031501192928,0.06229719,17.517754,0.292281,16004.9848271978,269.16467,21.2607113726706,0.983397,2037.80451334731,1713.60365383033,36.10494,567.193,8.5985,6578.0,161.6,4.14,0.09,1.64156997203827,0.071583,,,1.37,0.23143,"14,15,41,54,55",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; multiple stars in pixel,3545,1,False,False,True -13424053,3546.01,,3,4,3,3,2,4,4,16.6,62.2,67.88,1,2,1,PC,PC,12.1833,0.014,,1,qlp-s41-tois,QLP,20:22:04.16,41:15:18.2,3.976,0.049,-0.278,0.05,2459437.706427,0.0031352,5.2019364,2.89e-05,2.994,0.3,6.348366,0.006163,5830.0,5.67601,9.64178,0.572269,312.039,1170.0,20.0,500.216,7.4645,6111.0,144.1,4.29,0.08,1.27,0.06,,,1.15,0.16073,"14,15,41",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search,3546,1,False,False,False -274075364,3547.01,,3,4,3,3,1,4,4,38.9,43.0,317.0,2,0,0,PC,PC,13.3673,0.011,,1,qlp-s55-tois,QLP,20:19:03.62,39:35:44.07,-7.194,0.031,3.269,0.036,2459817.867916,0.0016276,4.1632657,9.7e-06,1.874,0.144,18.064089,0.956862,16500.0,880.914,17.3522,,85.347,846.0,28.0,644.514,9.4815,5145.0,122.0,4.12,,1.34,,,,0.87,,"14,15,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search,3547,1,False,False,True -271167979,3548.01,,5,5,5,5,5,5,5,330.7,218.0,317.0,2,0,0,PC,FP,13.0744,0.007,,1,qlp,QLP,19:38:13.92,47:46:59.26,11.27,0.027,20.887,0.028,2458733.079623,0.0010169,0.3093954,1.04e-05,0.442,0.083,8.370639,4.391945,7680.0,4036.96,15.7244,,1703.73,1789.0,28.0,287.244,1.251,4769.0,122.0,4.59,,0.73,,,,0.77,,"14,15",2021-06-23,2021-06-23,2022-12-14 12:09:24,ultra-short orbital period; found in faint-star QLP search,3548,1,False,False,True -269269740,3549.01,,3,4,3,3,1,4,4,39.2,39.9,317.0,0,0,0,PC,PC,12.5769,0.013,,1,qlp-s41-tois,QLP,19:59:29.37,45:29:58.53,-5.78,0.041,-1.515,0.043,2459770.360298,0.003840994,1.8639309,1.39e-05,3.297,0.245,3.95929,0.921895,3640.0,848.736,14.7339,5.0846,19428.3,3289.0,24.0,769.611,14.0855,6527.4,135.7,4.18,0.09,1.57,0.09,0.097,0.013,1.34,0.213482,"14,15,41,54",2021-06-23,2022-10-11,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3549,1,False,False,True -248058363,3550.01,,3,4,3,3,4,4,4,20.1,78.4,52.47,0,1,2,PC,PC,10.813,0.007,,1,qlp-s56-tois,QLP,21:41:31.96,29:54:48.81,-7.121,0.114,-7.345,0.101,2459851.638856,0.0011882,1.1239202,2.3e-06,0.824,0.201,1.194967,0.150419,1100.0,138.531,8.30438,0.535139,1555.17,1749.0,15.0,632.507,18.0055,7786.1,105.8,4.08,0.08,2.06,0.08,-0.107,0.011,1.84,0.288338,"15,56",2021-06-23,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search; V-shaped; possible odd-even,3550,1,False,False,False -247283596,3551.01,,3,4,3,3,3,4,4,24.3,61.1,111.03,2,2,1,PC,PC,11.6084,0.008,,1,qlp-s55-tois,QLP,20:58:02.62,25:32:25.45,-11.743,0.046,-14.022,0.04,2459818.96021,0.0015698,3.1940809,9.7e-06,3.706,0.173,3.676004,0.127155,3380.0,117.107,12.9018,2.74154,1528.03,1741.0,32.0,680.464,15.1435,6417.0,126.9,3.85,0.09,2.24,0.11,,,1.29,0.206014,"15,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search,3551,1,False,False,True -247283054,3552.01,,3,4,3,3,3,4,4,34.3,65.3,115.71,3,6,1,PC,PC,12.2196,0.01,,1,qlp-s55-tois,QLP,20:58:10.88,25:53:54.49,13.579,0.062,4.387,0.059,2459823.79589,0.0015344,0.9277787,2.2e-06,0.997,0.166,3.283885,0.28393,3020.0,261.475,13.2413,4.36256,1195.25,1638.0,25.0,885.672,33.0135,6123.0,131.2,3.74,0.09,2.42,0.14,,,1.16,0.157546,"15,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,V-shaped; found in faint-star QLP search,3552,1,False,False,True -239628993,3553.01,,3,4,4,3,4,4,4,54.0,152.8,95.67,5,18,3,PC,PC,11.0414,0.006,,1,spoc-s56-b0A,QLP,21:42:24.91,29:52:09.75,17.6,2.3,-12.6,2.2,2459825.770794,0.0008088062,1.94106346410132,9.892338e-05,1.771526047413,0.04699417,5.275108,0.146552,4846.77059050761,134.97005,11.8231227506212,0.22791897,2216.78055590446,1750.04987309632,29.990322,398.925,,6497.2,,,,1.46335995197296,,-0.051,0.011,,,"15,56",2021-06-23,2022-12-08,2023-01-05 00:00:00,found in faint-star QLP search,3553,1,False,False,False -239585909,3554.01,,3,4,3,3,1,4,4,,,80.76,2,0,0,PC,PC,13.3219,0.006,,1,qlp-s55-tois,QLP,21:25:55.91,34:25:28.5,0.464,2.099,-1.585,2.099,2459822.431304,0.0029227,1.6127665,5.5e-06,1.717,0.327,10.506309,24.996246,9630.0,22759.4,,,1829.12,1821.0,8.0,,,5359.2,192.4,,,,,,,,,"15,55,56",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; no stellar parameters,3554,1,False,False,True -233415701,3555.01,,3,4,3,3,1,4,4,35.8,54.6,317.0,1,0,0,PC,PC,13.2883,0.006,,1,qlp-s55-tois,QLP,20:08:59.32,56:30:29.41,,,,,2459822.708049,0.0013144,5.271813,9.6e-06,4.104,0.154,22.366975,0.762862,20390.0,702.375,10.3325,3.08475,435.707,1272.0,49.0,798.449,,5947.6,654.6,,,0.73,0.16,,,,,"14,15,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; no stellar parameters,3555,1,False,False,True -230840853,3556.01,,3,5,5,3,1,4,4,40.5,55.8,317.0,4,0,0,PC,APC,12.7054,0.008,,1,qlp-s55-tois,QLP,20:50:08.86,29:59:00.66,-1.118,0.025,-0.454,0.028,2459823.668611,0.0013482,4.118418,9.3e-06,2.232,0.238,14.361134,0.80876,13140.0,744.618,17.7065,4.58102,320.761,1178.0,37.0,795.26,11.066,6374.0,131.8,4.19,0.08,1.5,0.07,,,1.27,0.193409,"15,41,55",2021-06-23,2022-11-28,2023-01-21 12:02:45,found in faint-star QLP search,3556,1,False,False,True -271042173,3557.01,,5,5,5,5,5,5,5,41.0,31.4,317.0,0,0,0,EB,FP,11.857,0.018,,1,qlp,QLP,19:37:57.1,46:00:07.74,-17.71,1.072,-20.804,1.072,2458733.141437,0.0025961,0.476873,4.42e-05,1.135,0.229,2.097496,0.008386,1930.0,7.72333,16.2032,3.79009,5402.97,2388.0,21.0,447.387,,5877.0,697.0,,,3.57,0.8,-0.382371,0.00707926,,,"14,15",2021-06-23,2021-06-23,2022-12-14 12:09:24,known FP from Kepler (KOI 6204.01),3557,1,False,False,True -195750008,3558.01,,3,4,3,3,1,4,4,28.2,68.4,114.08,4,1,0,PC,PC,13.2016,0.01,,1,qlp-s55-tois,QLP,20:58:18.52,36:26:26.5,6.816,0.03,-6.981,0.028,2459820.541191,0.0031686,2.5650361,1.55e-05,2.273,0.494,10.024047,1.024515,9190.0,943.168,13.0681,,717.151,1441.0,15.0,772.831,11.622,5866.0,122.0,4.21,,1.34,,,,1.06,,"15,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,V-shaped; found in faint-star QLP search,3558,1,False,False,True -184468386,3559.01,,3,4,4,3,4,4,4,48.3,87.0,317.0,4,1,3,PC,PC,11.5948,0.016,,1,spoc-s14-s55-b0A-PC,QLP,19:45:31.53,39:57:35.73,0.331,0.044,0.076,0.045,2459770.25382,0.0012879913,2.54022871089041,5.1571938e-06,2.32047748371572,0.032833926,9.019428,0.157678,8272.79044331482,145.21654,16.3917195875537,0.57539225,7355.90586044803,1939.0,58.82836,813.322,17.3685,9339.0,256.5,4.41,0.07,1.59679996967316,0.0536608,,,2.37,0.323462,"14,15,41,54,55",2021-06-23,2023-03-14,2023-03-24 12:12:10,found in faint-star QLP search; potential other transit-like events in lightcurve (~1712 and 1728 TBJD),3559,1,False,False,True -184295571,3560.01,,3,4,3,3,2,4,4,52.3,163.6,73.51,0,4,2,PC,PC,10.7978,0.006,,1,qlp-s41-tois,QLP,19:44:15.24,40:18:30.85,6.406,0.045,1.632,0.058,2459771.820972,0.0034632557,1.9804293,9.1e-06,2.802,0.206,1.988717,0.786197,1830.0,723.852,10.1264,3.84238,15472.4,3107.0,17.0,297.852,2.6245,6381.0,130.2,4.32,0.09,1.29,0.06,,,1.275,0.195214,"14,15,41,54",2021-06-23,2022-10-11,2022-12-14 12:09:24,found in faint-star QLP search; two stars in pixel; v-shaped,3560,1,False,False,True -172754786,3561.01,,5,5,5,5,5,5,5,40.9,83.9,317.0,1,0,0,EB,FP,12.8903,0.012,,1,qlp-s41-tois,QLP,19:59:14.4,38:23:37.15,-3.035,0.027,-7.855,0.028,2459771.049138,0.005140771,4.1273472,2.34e-05,2.74,0.389,20.650414,0.043973,18840.0,40.4997,20.1447,1.21618,1041.76,1582.0,20.0,1067.6,19.185,7795.0,149.9,4.39,0.08,1.44,0.05,,,1.85,0.286988,"14,15,41,54",2021-06-23,2022-10-05,2022-12-14 12:09:24,found in faint-star QLP search,3561,1,False,False,True -193708920,3562.01,,5,5,5,5,5,5,5,35.8,140.8,39.45,0,0,0,PC,FP,11.9635,0.006,,1,qlp,QLP,20:25:01.5,46:55:23.15,14.763,0.048,42.064,0.042,2458732.453924,0.0064229,1.3298469,0.0003009,3.007,0.139,2.38037,0.867118,2190.0,798.326,6.98364,2.55227,32313.0,3735.0,18.0,289.309,2.213,5791.1,52.5,4.69,0.09,0.81,0.04,,,1.177,0.171211,"14,15",2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3562,1,False,False,True -169461816,3563.01,,3,5,5,3,5,4,5,22.7,42.2,317.0,0,9,5,KP,KP,10.931,0.006,,1,spoc-s14-s55-b0A-KP,QLP,19:49:48.9,41:00:39.67,3.041,0.047,2.598,0.042,2459800.506508,0.0014357478,17.8552321636383,3.4286568e-05,7.52582297082584,0.11007359,9.631459,0.179826,8831.67117438502,165.61226,14.5976753119233,0.68686056,183.213642695366,938.337778729687,42.920555,399.398,4.3495,6779.2,106.3,4.25,0.09,1.49114000797272,0.0669849,0.0814669,0.00885691,1.454,0.245892,"14,15,54,55",2021-06-23,2023-03-15,2023-03-24 12:12:10,found in faint-star QLP search; Kepler-448 b,3563,1,False,False,True -193482096,3564.01,,3,4,3,3,1,4,4,56.7,98.4,317.0,2,3,0,PC,PC,12.2617,0.043,,1,spoc-s14-s60-b0A-PC,QLP,20:23:45.69,46:06:11.31,0.446,0.045,1.275,0.046,2459820.105064,0.0007903,4.0875563423058,9.474743e-05,4.55049301237627,0.0508558,17.139992,0.171989,15662.5623221572,158.39491,19.9932641850021,0.8395072,1655.46402878355,1626.85814764525,99.67929,737.575,14.6115,6454.0,225.6,4.26,0.09,1.55157995223999,0.0637588,,,1.6,0.280124,"14,15,41,55,56",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; possibly too large for insolation,3564,1,False,False,True -1965256662,3565.01,,5,5,5,5,5,5,5,56.7,144.7,111.34,0,0,0,O,FP,11.9683,0.008,,1,qlp-s15-faintsearch,QLP,20:34:14.85,35:23:42.73,-7.377,0.038,-13.809,0.041,2458727.428216,0.0015976,4.3170598,0.0002595,2.879,0.148,11.175254,0.005188,10240.0,4.77829,12.9424,0.684476,361.994,1215.0,17.0,440.708,5.2035,6017.0,147.1,4.29,0.08,1.25,0.06,,,1.113,0.145373,"14,15",2021-06-23,2022-12-07,2022-12-14 12:09:24,found in faint-star QLP search; double alert with TIC 313408643/TOI 3533; this one retired as TFOP FP,3565,1,False,False,True -169187982,3566.01,,5,5,5,5,5,5,5,109.5,189.4,317.0,2,0,0,EB,FP,13.33,0.011,,1,qlp-s41-tois,QLP,19:49:11.02,38:51:26.02,-1.541,0.026,-2.519,0.029,2459446.399559,0.0013382,1.764534,4.8e-06,2.187,0.182,29.851811,2.132089,27120.0,1961.8,23.84,,3379.0,2124.0,43.0,845.721,10.8265,6479.0,122.0,4.4,,1.2,,,,1.32,,"14,15,41",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; retired as NEB by TFOP,3566,1,False,False,True -452658846,3567.01,,3,4,3,3,1,4,4,48.3,115.5,108.48,1,0,0,PC,PC,12.8649,0.009,,1,qlp-s55-tois,QLP,21:12:25.08,29:50:41.24,-15.504,0.093,-10.678,0.092,2459816.833156,0.0009185,1.9990323,2.5e-06,1.19,0.157,13.536303,0.881484,12390.0,811.547,12.7486,3.42818,241.443,1098.0,29.0,516.364,16.18,5675.0,129.4,4.38,0.08,1.07,0.06,,,1.01,0.128087,"15,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; slightly v-shaped,3567,1,False,False,True -160390955,3568.01,,3,4,3,3,4,4,4,16.4,78.3,33.72,4,2,5,PC,PC,12.0729,0.006,,1,spoc-s14-s60-b0A-PC,QLP,21:30:24.57,34:44:22.49,26.349,0.034,-7.721,0.049,2459799.383297,0.0014936574,4.41780423888484,0.00019706432,2.58814339581697,0.13879806,7.397475,0.254778,6790.16820561935,234.63203,6.4020317000258,0.7326464,130.148135398227,861.448337466317,24.302551,197.906,1.2975,4864.0,135.9,4.55,0.09,0.785799026489258,0.0516809,,,0.792,0.0942297,"15,55,56",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,3568,1,False,False,True -436314778,3569.01,,3,4,3,3,4,4,4,63.1,72.6,317.0,3,3,3,PC,PC,11.0161,0.006,,1,qlp-s55-tois,QLP,20:28:03.19,26:24:05.95,9.5,2.0,-11.2,2.1,2459823.59407,0.0005374,4.5956692,3.9e-06,3.424,0.112,12.843929,0.311644,11760.0,286.994,14.2314,,485.021,,101.0,284.927,,6157.0,,,,1.3,,,,,,"14,15,41,55",2021-06-23,2022-12-07,2023-07-07 00:00:00,found in faint-star QLP search; multiple stars in pixel,3569,1,False,False,True -136122328,3570.01,,3,4,3,3,1,4,4,27.4,110.2,113.72,5,0,0,PC,PC,13.1749,0.04,,1,qlp-s55-tois,QLP,20:21:50.79,34:07:33.7,2.203,0.031,-3.647,0.037,2459823.35262,0.0016471,2.1083693,5.5e-06,2.974,0.124,10.089797,0.364891,9250.0,336.021,13.1161,,17992.5,3226.0,27.0,991.273,20.5795,10984.0,130.0,4.64,,1.35,,,,2.86,,"14,15,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search,3570,1,False,False,True -2010186093,3571.01,,3,4,3,3,1,4,4,52.1,72.5,317.0,4,0,0,PC,PC,11.5752,0.034,,1,qlp-s56-tois,QLP,21:53:49.31,47:23:32.13,-10.736,0.046,-8.709,0.046,2459847.742507,0.0006911,3.007925,3e-06,3.032,0.138,8.458173,0.211657,7760.0,194.924,15.3022,1.27075,1401.91,1704.0,43.0,654.254,12.4675,7457.0,287.0,4.14,0.09,1.68,0.14,,,1.71,0.307413,"16,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,3571,1,False,False,False -1976308113,3572.01,,5,5,5,5,5,5,5,,,317.0,0,0,0,PC,FP,13.0852,0.6,,1,qlp,QLP,20:59:34.88,52:23:47.06,17.437,0.057,8.666,0.036,2458761.60297,0.0012315,2.7568649,0.0001438,2.312,0.112,20.141504,0.009852,18380.0,9.07367,,,,,45.0,425.989,4.317,,,,,,,,,,,"15,16",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3572,1,False,False,False -407905370,3573.01,,1,4,1,3,2,4,4,22.4,77.4,108.29,6,6,1,PC,PC,11.438,0.007,,1,qlp,QLP,22:27:59.67,38:17:09.42,0.893,0.034,-9.378,0.045,2458747.792229,0.0020602,9.8170028,0.000614,3.341,1.099,7.09125,0.026202,6510.0,24.1325,12.7271,1.00248,196.707,1043.0,24.0,412.387,5.3875,5994.3,116.9,4.13,0.08,1.49,0.07,0.306,0.027,1.1,0.137442,16,2021-06-23,2021-06-23,2023-05-22 00:00:00,found in faint-star QLP search,3573,1,False,False,False -407694390,3574.01,,3,4,3,3,3,4,4,,,82.6,2,1,2,PC,PC,13.2036,0.007,,1,qlp-s56-tois,QLP,21:46:23.81,41:40:53.68,-8.718,2.165,-22.06,2.165,2459850.561122,0.0025381,3.6691817,1.17e-05,2.112,0.31,10.791383,0.77524,9890.0,713.768,,,104.96,891.0,17.0,302.734,,4675.9,234.5,,,,,,,,,"15,16,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,3574,1,False,False,False -407658979,3575.01,,3,4,3,3,2,4,4,32.4,104.8,129.6,2,4,2,PC,PC,12.1357,0.018,,1,qlp-s16-faintsearch,QLP,21:45:53.58,36:14:51.47,11.995,0.123,-30.227,0.184,2459830.439116,0.0035407862,8.084554,0.0017143,1.991,0.362,6.730669,2.520714,6180.0,2318.97,14.1848,6.136,159.573,990.0,10.0,399.524,17.996,5739.0,160.2,4.33,0.09,1.15,0.07,,,1.03,0.131471,"15,16,56",2021-06-23,2022-12-08,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3575,1,False,False,False -405897415,3576.01,,3,4,3,3,1,4,4,25.5,70.0,113.81,3,0,0,PC,PC,12.9084,0.007,,1,qlp-s56-tois,QLP,20:03:40.09,52:04:50.44,-1.221,0.032,25.518,0.034,2459845.232047,0.0009594,4.6387689,7.1e-06,3.569,0.168,12.448485,0.329156,11400.0,303.118,13.0535,0.656212,340.838,1153.93615676785,56.0,582.817,5.3075,5543.7,113.4,4.27,0.08,1.2,0.06,0.004,0.038,0.98,0.125655,"14,15,16,41,54,55,56",2021-06-23,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search; multiple stars in pixel,3576,1,False,False,True -396133015,3577.01,,1,4,1,3,2,4,4,15.6,57.4,57.28,1,12,1,PC,PC,11.3209,0.006,,1,qlp-s56-tois,QLP,21:48:23.02,48:20:03.84,5.058,0.056,-33.341,0.053,2459847.67339,0.0027794,5.2667367,2.14e-05,2.788,0.375,3.164098,0.227575,2910.0,209.582,8.71675,0.563045,248.814,1106.0,16.0,420.999,6.2935,5938.0,145.3,4.06,0.08,1.6,0.08,,,1.084,0.139892,"16,56",2021-06-23,2023-03-17,2023-06-20 00:00:00,found in faint-star QLP search; slightly v-shaped,3577,1,False,False,False -358186451,3578.01,,5,5,5,5,5,5,5,6.6,38.3,16.34,0,2,1,EB,FP,10.9683,0.006,,1,qlp-s56-tois,QLP,21:08:29.95,49:06:46.23,-1.389,0.048,-17.23,0.048,2459851.521255,0.0057143,1.3176767,8.9e-06,1.692,0.452,0.575593,0.086812,530.0,79.9536,4.16809,0.392416,3463.78,2137.0,9.0,460.849,6.102,7176.0,503.1,4.16,0.1,1.73,0.07,,,1.604,0.316671,"15,16,55,56",2021-06-23,2023-02-05,2023-02-09 12:10:04,low SNR; found in faint-star QLP search; TFOP FP/NEB,3578,1,False,False,True -316606244,3579.01,,5,5,5,5,5,5,5,,,7.52,2,0,0,PC,FP,10.9511,0.037,,1,qlp,QLP,21:28:07.01,56:49:23.3,-2.689,0.122,-4.252,0.117,2458762.172026,0.0137756,3.310636,0.0014244,3.9,0.807,0.640773,0.002864,590.0,2.63784,,,126.954,935.0,10.0,4982.73,1564.38,3245.0,122.0,,,,,,,,,"15,16",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3579,1,False,False,False -305478010,3580.01,,5,5,5,5,5,5,5,38.2,132.4,61.78,0,0,0,PC,FP,13.2966,0.007,,1,qlp,QLP,22:01:05.11,38:31:49.02,132.913,0.026,85.071,0.038,2458762.231266,0.0016564,3.121339,0.0001901,4.331,0.173,28.937075,0.007128,26300.0,6.56512,9.21314,0.317389,235.634,1091.0,38.0,153.214,0.5745,3858.0,157.0,4.69,0.01,0.56,0.02,,,0.5503,0.0203789,"15,16",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3580,1,False,False,False -295413003,3581.01,,5,5,5,5,5,5,5,,,56.22,0,0,0,PC,FP,12.9875,0.006,,1,qlp,QLP,20:13:28.56,53:16:36.66,-7.091,2.171,-8.315,2.171,2458757.57084,0.0046438,3.0373017,0.0003588,4.664,0.631,6.850849,0.624084,6290.0,574.637,,,3202.79,2095.0,21.0,,,4903.0,88.6,,,,,,,,,"14,15,16",2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3581,1,False,False,True -290308758,3582.01,,3,4,3,3,1,4,4,31.0,33.8,317.0,2,1,0,PC,PC,12.7937,0.006,,1,qlp-s55-tois,QLP,20:29:10.22,50:04:36.93,6.541,0.025,5.431,0.027,2459816.901929,0.0017478,4.4168832,1.07e-05,3.659,0.196,12.283759,0.454204,11250.0,418.25,14.9431,3.25702,495.827,1314.0,42.0,624.477,5.2525,5847.0,145.1,4.16,0.08,1.42,0.07,,,1.055,0.138622,"14,15,16,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; multiple stars in pixel,3582,1,False,False,True -289895191,3583.01,,3,4,3,3,2,4,4,,,71.07,2,0,1,PC,PC,12.066,0.007,,1,spoc-s14-s60-b0A-PC,QLP,21:03:31.73,48:41:16.42,-4.513,2.324,1.772,2.324,2459819.110717,0.0022314,5.24625012346914,0.00045076237,5.70266203792917,0.14147413,9.033579,0.27722,8285.71648029286,255.29626,,,286.12603058702,1048.96039732268,32.98919,,,3882.0,201.0,,,,,,,,,"15,16,55,56",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; no stellar radius; host is likely red giant due to Gaia plx + Teff / log g,3583,1,False,False,True -289100911,3584.01,,3,4,4,3,2,4,4,55.8,141.8,108.58,4,0,1,PC,PC,12.4109,0.006,,1,qlp-s56-tois,QLP,20:59:34.9,52:23:45.99,18.217,2.155,-4.542,2.155,2459847.761197,0.0008755,2.7567478,2.9e-06,2.167,0.159,10.68173,0.391406,9790.0,360.433,,,,,46.0,359.363,,,,,,,,,,,,"15,16,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,3584,1,False,False,False -287591638,3585.01,,3,4,3,3,2,4,4,14.4,76.7,19.44,4,9,2,PC,PC,11.2287,0.006,,1,qlp-s56-tois,QLP,21:47:13.71,34:38:47.86,-24.113,0.049,-21.769,0.059,2459851.89853,0.0012807,3.5410781,6.1e-06,2.062,0.243,3.283885,0.141595,3020.0,130.405,4.63661,0.353564,112.33,906.0,32.0,130.802,0.6015,4652.0,119.7,4.48,0.09,0.82,0.06,,,0.74,0.0863743,"15,16,56",2021-06-23,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search,3585,1,False,False,False -286080865,3586.01,,3,4,3,3,1,4,4,26.6,133.9,109.44,2,0,0,PC,PC,12.3944,0.006,,1,qlp-s55-tois,QLP,20:40:52.58,50:55:21.8,-7.465,0.058,15.318,0.061,2459810.521522,0.0008492,11.3201226,1.66e-05,3.276,0.141,34.268993,1.156338,31070.0,1064.46,12.7584,2.80094,28.0204,640.0,76.0,232.183,1.764,4971.0,143.0,4.61,0.09,0.74,0.05,,,0.821,0.0967767,"15,16,41,55,56",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search,3586,1,False,False,True -267373896,3587.01,,3,4,3,3,1,4,4,56.8,74.0,317.0,3,1,0,PC,PC,11.5199,0.006,,1,qlp-s55-tois,QLP,21:07:20.32,49:25:54.53,-9.754,1.412,-7.868,1.412,2459823.921779,0.0009679,4.1584817,5.4e-06,3.796,0.116,8.337815,0.200842,7650.0,184.965,16.4644,,1630.09,,47.0,497.23,,7486.0,,,,1.87,,,,,,"15,16,55,56",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search,3587,1,False,False,True -265242905,3588.01,,3,4,3,3,1,4,4,18.4,48.9,128.99,2,2,0,PC,PC,12.3142,0.011,,1,qlp-s56-tois,QLP,20:33:14,50:55:36.61,-0.977,0.048,-3.495,0.045,2459849.099143,0.0026836,3.7037478,1.33e-05,4.403,0.848,4.580598,0.225367,4210.0,207.549,14.1169,0.833223,2328.97,1935.0,29.0,1023.15,28.674,6688.0,137.9,3.91,0.09,2.2,0.11,,,1.42,0.22706,"15,16,41,56",2021-06-23,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search,3588,1,False,False,False -260761464,3589.01,,3,4,3,3,3,4,4,82.6,148.7,317.0,3,1,4,PC,PC,11.528,0.016,,1,qlp-s56-tois,QLP,21:45:34.1,39:29:42.2,-0.024,0.035,-1.053,0.04,2459847.255364,0.0003525,3.0827487,1.4e-06,3.763,0.051,16.133891,0.173422,14750.0,159.715,20.1593,0.951259,2957.04,2054.0,180.0,574.124,8.962,7658.5,148.8,4.28,0.09,1.61,0.08,0.176,0.011,1.79,0.292587,"15,16,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,3589,1,False,False,False -236638487,3590.01,,3,5,5,3,4,4,4,22.8,25.6,317.0,0,2,2,PC,APC,12.3705,0.007,,1,qlp-s56-tois,QLP,21:57:07.03,31:27:10.7,-9.4,0.098,-6.053,0.071,2459848.889625,0.0012345,4.4064273,7.4e-06,1.422,0.324,5.747875,0.431031,5280.0,396.915,14.7596,1.05284,155.508,983.0,23.0,911.211,36.824,6592.0,121.6,4.04,0.1,1.86,0.11,,,1.37,0.236342,"15,16,56",2021-06-23,2023-02-05,2023-02-09 12:10:04,slightly V-shaped; found in faint-star QLP search; TFOP APC/SB1,3590,1,False,False,False -190479710,3591.01,,3,4,3,3,3,4,4,13.5,40.4,115.23,0,0,2,PC,PC,12.8224,0.079,,1,qlp-s56-tois,QLP,21:40:45.83,43:31:47.19,-6.591,0.024,3.102,0.026,2459849.845852,0.0070639,8.4843917,6.45e-05,4.224,2.395,6.129967,2.319839,5630.0,2134.37,13.159,3.12315,396.459,1243.0,13.0,597.467,6.025,5859.7,131.4,4.03,0.13,1.65,0.2,0.13,0.063,1.06,0.132615,"15,16,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,3591,1,False,False,False -162387333,3592.01,,3,4,3,3,2,4,4,7.1,23.6,54.82,0,0,2,PC,PC,12.231,0.207,,1,qlp-s56-tois,QLP,22:08:29.51,33:20:57.47,,,,,2459851.477825,0.0104756,5.5280331,5.76e-05,5.153,1.355,2.010472,0.186782,1850.0,172.018,9.24388,0.604716,811.914,1487.0,8.0,465.275,,,,,,2.11,0.08,,,,,"15,16,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,low SNR; found in faint-star QLP search,3592,1,False,False,False -162289289,3593.01,,3,4,4,3,2,4,4,57.5,169.5,93.81,6,2,1,PC,PC,11.488,0.006,,1,spoc-s56-b0A,QLP,22:06:01.53,34:12:41.97,0.241,0.045,-21.2,0.056,2459826.449559,0.0005990801,3.82129767522831,0.00015573023,2.45843040892366,0.046968658,14.876139,0.233053,13607.9927553036,214.6267,11.6869490857505,0.67433965,330.730008017043,1087.64745986753,56.215027,226.63,1.69,5342.0,129.4,4.41,0.08,0.992137014865875,0.0536683,,,0.923,0.113199,"15,16,56",2021-06-23,2022-12-06,2022-12-16 12:08:26,found in faint-star QLP search,3593,1,False,False,False -162179096,3594.01,,3,4,3,3,4,4,4,15.6,53.9,119.0,2,0,3,PC,PC,13.2319,0.007,,1,qlp-s56-tois,QLP,22:04:38.97,32:32:13.25,-2.34,0.029,-2.654,0.041,2459849.694456,0.0021944,9.3236885,2.35e-05,2.0,0.213,13.910149,0.858946,12730.0,790.806,13.41,,26.3577,631.0,18.0,631.413,8.6205,5505.0,122.0,4.3,,1.15,,,,0.97,,"15,16,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,3594,1,False,False,True -440113053,3595.01,,3,5,5,3,5,4,5,65.9,158.8,98.34,1,13,0,KP,KP,12.8416,0.007,,1,spoc-s57-b0A,QLP,00:19:26.23,44:01:39.35,0.985,0.031,-8.866,0.017,2459854.762356,0.0004933231,1.80537598367945,5.4447555e-05,2.07902486976053,0.045972418,23.798083,0.366017,21680.3724997718,337.05713,12.0157766266376,0.80621356,535.342285152919,1226.81093026069,50.42036,329.036,2.867,5090.0,127.7,4.54,0.09,0.820537984371185,0.0519572,,,0.85,0.104342,"17,57",2021-06-23,2023-01-30,2023-02-09 12:10:04,found in faint-star QLP search; Qatar-4 b,3595,1,False,False,False -352690548,3596.01,,3,4,4,3,1,4,4,15.8,64.7,64.69,3,0,0,PC,PC,12.8277,0.008,,1,qlp-s57-tois,QLP,23:44:30.79,36:21:42.18,9.433,0.03,-0.893,0.022,2459876.910435,0.0016011,4.9056578,1.42e-05,3.172,0.374,10.336397,0.451123,9475.0,415.413,9.37482,0.500602,357.504,1211.0,24.0,527.73,7.1675,5989.7,100.6,4.47,0.08,1.01,0.05,-0.131,0.026,1.1,0.144856,"17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; weak odd-even,3596,1,False,False,False -267650535,3597.01,,3,5,5,3,5,4,5,58.0,182.2,91.87,0,1,0,KP,KP,11.9475,0.006,,1,spoc-s57-b0A,QLP,00:38:03.98,34:42:41.05,-26.775,0.056,-32.478,0.058,2459853.969135,0.0004159364,4.00882450354233,9.647902e-05,2.73709593885612,0.036535446,23.57989,0.20411,21483.7462243155,187.97467,11.544426196776,0.72864586,165.190060999722,914.356860847222,110.65019,202.078,1.461,5007.0,114.7,4.56,0.08,0.795696020126343,0.0489648,0.32,0.07,0.831,0.0975788,"17,57",2021-06-23,2023-01-31,2023-02-09 12:10:04,found in faint-star QLP search; HAT-P-19 b,3597,1,False,False,False -352469839,3598.01,,3,4,3,3,1,4,4,51.8,76.1,317.0,4,0,0,PC,PC,12.9723,0.01,,1,qlp-s55-tois,QLP,20:24:11.88,59:16:42.35,8.084,0.039,2.077,0.035,2459822.38349,0.0010124,3.7026941,5.5e-06,1.884,0.389,14.350133,3.477171,13130.0,3197.47,20.0,9.40308,540.162,1343.0,39.0,792.835,11.8745,6282.0,136.3,4.17,0.09,1.5,0.07,,,1.23,0.189433,"16,17,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; v-shaped; possibly too large,3598,1,False,False,True -194461202,3599.01,,3,4,3,3,2,4,4,21.5,71.7,68.06,0,1,1,PC,PC,13.2597,0.007,,1,qlp,QLP,00:16:22.8,38:17:54.71,22.135,0.038,-11.169,0.017,2458784.821961,0.0023175,3.2523102,0.0006564,2.711,0.267,12.459467,0.01155,11410.0,10.6376,9.6972,,382.391,1231.0,21.0,481.258,8.5095,5396.4,86.0,4.5,,0.9,,0.280127,0.0807998,0.94,,17,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3599,1,False,False,False -343726435,3600.01,,3,4,3,3,1,4,4,37.2,47.0,317.0,1,0,0,PC,PC,12.9025,0.015,,1,qlp-s57-tois,QLP,21:05:32.14,56:30:15.72,-2.244,0.034,-8.813,0.029,2459880.047725,0.0017565,5.016641,1.38e-05,3.203,0.249,11.292636,0.449978,10347.0,414.359,17.7733,0.899605,489.828,1310.0,23.0,607.523,5.8605,6616.0,150.7,4.05,0.09,1.83,0.08,,,1.38,0.243511,"15,16,17,56,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; likely too large,3600,1,False,False,False -191202679,3601.01,,3,4,3,3,1,4,4,18.6,58.7,88.31,1,2,0,PC,PC,12.4226,0.007,,1,qlp-s57-tois,QLP,00:34:48.29,45:23:14.69,-4.851,0.063,-6.624,0.069,2459879.372447,0.0013487,4.0517972,1e-05,2.84,0.249,6.813701,0.240389,6256.0,221.382,11.2646,0.704377,506.135,1321.0,24.0,694.069,28.8765,6284.0,126.6,4.2,0.09,1.45,0.08,,,1.23,0.184501,"17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3601,1,False,False,False -331146317,3602.01,TIC 331146317.01,3,4,4,3,1,4,4,73.7,83.8,317.0,4,3,0,PC,PC,11.7506,0.026,,1,spoc-s57-b0A,QLP,21:43:53.31,54:34:27.37,3.938,0.05,0.358,0.048,2459853.403508,0.00057183363,2.38741388490579,7.6726916e-05,2.74580951700843,0.0414375,14.575424,0.195935,13334.7552254898,180.44676,15.2324770925829,0.6835881,1799.16018042751,1661.0672176928,44.815174,432.426,5.1015,6566.0,199.1,4.36,0.09,1.2737900018692,0.0550553,,,1.36,0.227334,"16,17,56,57",2021-06-23,2023-02-01,2023-02-09 12:10:04,found in faint-star QLP search; CTOI from Olmschenk et al. (2021); two stars in pixel,3602,1,False,False,False -13961554,3603.01,,3,4,3,3,3,4,4,32.3,88.0,57.58,1,0,2,PC,PC,13.2666,0.007,,1,qlp-s57-tois,QLP,00:54:52.76,24:43:26.67,-3.106,0.042,-9.365,0.039,2459880.567107,0.001195,1.2678043,2.5e-06,0.893,0.295,9.321862,1.400341,8549.0,1288.93,8.74635,,328.939,1186.0,16.0,470.579,5.811,5303.0,124.0,4.49,,0.9,,,,0.91,,"17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,V-shaped; found in faint-star QLP search; potentially synchronized,3603,1,False,False,False -330135981,3604.01,,3,4,4,3,2,4,4,,,317.0,7,3,2,PC,PC,11.7344,0.007,,1,spoc-s57-b0A,QLP,22:14:00.25,56:55:08.33,,,,,2459853.68732,0.00024360786,1.06666974982235,1.5904263e-05,1.64123115751064,0.01837243,20.571044,0.183587,18768.2725805632,169.07532,,,2393.22053878259,1783.8791516921,106.157875,,,4893.1,28.6,,,,,,,,,"16,17,56,57",2021-06-23,2023-02-01,2023-04-17 12:02:58,V-shaped; found in faint-star QLP search; no stellar radius; possible young or evolved K star,3604,1,False,False,False -329373799,3605.01,,3,4,3,3,3,4,4,47.9,57.3,317.0,3,13,2,PC,PC,11.789,0.01,,1,qlp-s56-tois,QLP,22:10:51.74,54:28:52.43,9.023,0.054,4.581,0.046,2459851.820734,0.0006303,3.6554335,3.3e-06,3.699,0.131,10.561125,0.170997,9680.0,157.482,15.7486,0.746894,1005.1,1568.0,40.0,526.417,7.6465,6321.0,134.0,4.15,0.09,1.56,0.07,,,1.25,0.191838,"16,17,56,57",2021-06-23,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search,3605,1,False,False,False -315907220,3606.01,,3,4,4,3,1,4,4,,,119.19,1,1,0,PC,PC,12.6864,0.006,,1,qlp-s57-tois,QLP,21:24:58.81,57:39:59.88,-3.988,2.173,-0.37,2.173,2459866.950313,0.0022422,9.312167,3.22e-05,4.867,1.017,16.658565,10.815354,15226.0,9911.86,,,118.249,918.0,27.0,,,3979.0,137.3,,,,,,,,,"15,16,17,56,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; no stellar radius; centroid offset centered on another star in spoc s56 and s57; Rp likely too large for irradiation,3606,1,False,False,False -277505161,3607.01,,3,4,3,3,1,4,4,,,60.16,2,0,0,PC,PC,13.1142,0.009,,1,qlp-s55-tois,QLP,20:42:49.19,58:30:53.8,6.001,2.164,-16.685,2.164,2459821.520901,0.0038475,3.5884855,1.41e-05,2.481,0.426,7.419155,0.520716,6810.0,479.482,,,,,19.0,,,,,,,,,,,,,"15,16,17,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; multiple stars in pixel; no stellar radius,3607,1,False,False,True -267867517,3608.01,,5,5,5,5,5,5,5,14.7,36.4,116.03,0,0,0,PC,FP,13.1802,0.016,,1,qlp,QLP,20:49:49.5,56:53:47.64,-5.066,0.032,-4.88,0.03,2458787.3585,0.0114087,2.6816329,0.000715,2.695,0.604,3.37101,0.018669,3100.0,17.1943,13.2689,,1859.62,1829.0,9.0,1162.86,24.665,7047.0,122.0,3.89,,2.34,,,,1.56,,"15,16,17",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3608,1,False,False,True -267861788,3609.01,,3,4,3,3,1,4,4,12.9,48.8,66.46,0,0,0,PC,PC,12.796,0.006,,1,qlp-s55-toid,QLP,20:49:31.8,59:42:36.05,19.886,0.032,-3.236,0.032,2459814.534903,0.0031829,6.3854622,2.65e-05,3.682,0.368,7.320773,0.414131,6720.0,381.356,9.57629,2.55507,213.106,1064.0,21.0,474.723,3.64,5519.0,246.3,4.29,0.09,1.17,0.06,,,0.97,0.128742,"15,17,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search,3609,1,False,False,True -267484653,3610.01,,3,5,5,3,2,4,4,23.9,56.0,76.23,1,2,2,PC,APC,12.3512,0.008,,1,qlp-s47-tois,QLP,19:54:49.42,58:18:05.91,-15.839,0.068,1.501,0.079,2459853.828611,0.002738409,1.7384679,4.3e-06,1.869,0.171,4.144555,0.002857,3810.0,2.63105,10.3388,0.659146,767.469,1466.0,38.0,640.122,15.2775,5540.0,126.8,3.95,0.08,1.72,0.1,,,0.97,0.117673,"14,15,16,17,41,47,54,55,56,57",2021-06-23,2023-02-15,2023-02-15 00:00:00,found in faint-star QLP search; weak centroid offset; variable host,3610,1,False,False,True -252549844,3611.01,,3,4,3,3,1,4,4,29.5,32.0,317.0,1,0,0,PC,PC,12.9106,0.009,,1,qlp-s57-tois,QLP,22:59:51.5,50:40:54.85,-8.63,0.028,-0.456,0.026,2459879.645338,0.0017091,3.0789699,6.3e-06,3.709,0.249,10.577571,0.321587,9695.0,296.149,15.4449,0.812247,1319.62,1679.0,31.0,885.434,15.476,6153.0,131.7,4.08,0.08,1.64,0.08,,,1.17,0.159405,"16,17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; neighboring TIC 252549846 (delta Tmag~ 0.23 and 3.85'' away),3611,1,False,False,False -233948455,3612.01,,3,5,5,3,5,4,5,87.0,172.2,128.67,2,15,1,KP,KP,12.883,0.006,,1,qlp-s41-tois,QLP,20:20:53.27,59:26:56.05,9.112,0.033,30.79,0.027,2459854.418388,0.00039701044,1.4822451,1.1e-06,1.595,0.053,24.064054,0.002995,21920.0,2.75825,14.0641,0.891826,442.993,1278.0,115.0,360.313,1.911,5115.0,101.7,4.45,0.08,0.91,0.06,0.23,0.1,0.86,0.0996368,"14,15,17,41,55,57",2021-06-23,2023-02-10,2023-02-10 00:00:00,TrES-5 b; found in faint-star QLP search,3612,1,False,False,True -233795794,3613.01,,3,4,3,3,1,4,4,40.6,110.7,122.57,2,0,0,PC,PC,13.1431,0.006,,1,qlp-s55-tois,QLP,20:13:26.66,58:47:56.9,1.084,0.03,-25.163,0.028,2459819.325302,0.0008919,3.1493729,3.3e-06,2.708,0.073,20.639348,0.455732,18830.0,419.657,13.6409,,465.25,1293.0,55.0,544.531,4.186,5766.0,122.0,4.49,,0.96,,,,1.033,,"14,15,16,17,41,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search,3613,1,False,False,True -233831759,3614.01,,5,5,5,5,5,5,5,30.2,77.2,91.31,0,0,0,PC,FA,11.171,0.225,,1,qlp,QLP,20:15:06.64,59:40:35.66,,,,,2458785.269757,0.0011755,2.9708603,5.45e-05,3.122,0.138,4.373456,0.001015,4020.0,0.93478,,,,,40.0,,,,,,,,,,,,,"14,15,16,17",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3614,1,False,False,True -173711153,3615.01,,3,4,3,3,2,4,4,17.6,45.4,88.26,0,0,1,PC,PC,12.7295,0.007,,1,qlp-s57-tois,QLP,23:17:40.16,44:38:53.91,2.2,0.031,-2.501,0.025,2459879.183744,0.0028131,3.1315583,1.08e-05,3.737,0.545,5.595076,0.27282,5140.0,251.245,11.2819,0.693629,1058.47,1589.0,22.0,722.103,11.3125,5684.0,128.0,3.99,0.08,1.69,0.09,,,1.01,0.122184,"16,17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; multiple stars in pixel,3615,1,False,False,False -173298412,3616.01,,3,4,3,3,2,4,4,37.2,57.1,317.0,2,1,1,PC,PC,12.0526,0.011,,1,qlp-s57-tois,QLP,23:07:00.58,47:02:40.47,2.396,0.046,-1.234,0.044,2459877.451671,0.0012342,2.4188647,4.6e-06,2.5,0.348,5.923621,0.26379,5441.0,242.93,20.8975,1.24817,2177.78,1903.0,33.0,1284.85,50.075,7316.0,141.1,3.73,0.09,2.9,0.15,,,1.66,0.280806,"16,17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3616,1,False,False,False -173176491,3617.01,,3,4,3,3,2,4,4,33.3,35.3,317.0,1,0,2,PC,PC,12.6627,0.007,,1,qlp-s57-tois,QLP,23:04:30.14,45:19:29.11,5.226,0.025,-2.883,0.028,2459879.842983,0.001286,3.2337884,5.9e-06,2.102,0.204,10.021855,0.439046,9188.0,404.295,15.3732,0.858438,366.758,1219.0,26.0,749.393,11.4235,6065.0,125.9,4.06,0.08,1.64,0.08,,,1.13,0.156209,"16,17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3617,1,False,False,False -65981892,3618.01,,3,4,3,3,2,4,4,37.6,99.1,128.91,7,0,2,PC,PC,12.7362,0.01,,1,qlp-s57-tois,QLP,22:42:03.57,52:20:37.25,3.852,0.119,-1.19,0.123,2459878.722216,0.0010651,3.4898546,5.4e-06,1.567,0.154,15.312117,0.716958,14004.0,660.125,14.1029,0.943051,169.429,1005.0,28.0,588.794,25.9615,6083.0,130.9,4.34,0.09,1.2,0.07,,,1.14,0.159508,"16,17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3618,1,False,False,False -64938667,3619.01,,3,4,3,3,1,4,4,45.7,60.1,317.0,2,0,0,PC,PC,13.1611,0.009,,1,spoc-s57-b0A,QLP,22:35:01.3,54:04:44.8,-0.456,0.038,-7.7,0.038,2459855.832249,0.0028168156,3.19846214460346,0.00056447077,3.84251457085833,0.18717349,12.762121,0.543648,11685.5351542149,500.5931,19.8935542785374,0.667012,1852.93762896666,1673.34291720519,19.112175,924.04,20.988,6133.0,122.0,4.04,,1.70764994621277,,,,1.16,,"16,17,57",2021-06-23,2023-02-01,2023-02-09 12:10:04,found in faint-star QLP search,3619,1,False,False,False -620780629,3620.01,,3,4,3,3,2,4,4,,,111.06,1,0,1,PC,PC,12.8069,0.017,,1,qlp-s57-tois,QLP,01:23:11.81,33:14:36.28,-9.743,0.043,-13.651,0.04,2459875.808716,0.0023139,4.8893985,1.92e-05,2.848,0.298,7.525198,0.417007,6907.0,384.004,12.8723,0.859652,227.422,1081.0,18.0,763.466,17.014,5639.0,128.7,4.02,0.08,1.62,0.09,,,1.0,0.131903,"17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3620,1,False,False,False -435861696,3621.01,,5,5,5,5,5,5,5,38.2,45.8,317.0,3,0,0,PC,FP,12.0,0.589,,1,qlp,QLP,00:47:33.09,21:56:18.79,,,,,2458779.819452,0.0005466,5.6902814,0.00058,2.344,0.314,23.364936,0.03069,21290.0,28.266,12.9495,1.18877,121.736,925.0,74.0,,,5400.1,39.0,,,0.86,0.07,0.099,0.037,,,17,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3621,1,False,False,False -432761635,3622.01,,3,4,3,3,3,4,4,26.1,64.1,121.43,1,1,2,PC,PC,13.2595,0.008,,1,qlp-s57-tois,QLP,00:56:39.46,39:53:29.8,11.875,0.053,2.457,0.097,2459879.077421,0.0016619,3.2131823,9e-06,3.325,0.408,15.056679,0.620943,13772.0,571.746,13.6367,,734.312,1450.0,26.0,773.542,20.484,5688.6,51.7,4.22,,1.3,,0.225101,0.0488727,1.01,,"17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3622,1,False,False,False -422881018,3623.01,,3,4,3,3,1,4,4,13.2,46.6,83.48,1,0,0,PC,PC,13.1948,0.007,,1,qlp-s57-tois,QLP,01:04:43.05,40:36:53.86,5.526,0.042,-2.741,0.048,2459881.183645,0.002601,5.7456862,2.12e-05,3.339,0.344,10.299129,0.497092,9441.0,457.734,10.8845,,258.608,1117.0,18.0,736.788,13.9895,5867.3,102.4,4.31,,1.19,,0.327,0.098,1.06,,"17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3623,1,False,False,False -414922696,3624.01,,1,4,1,3,3,4,4,9.3,40.7,51.9,0,2,3,PC,PC,11.8728,0.008,,1,qlp-s57-tois,QLP,01:00:46.51,15:09:58.19,15.871,0.07,0.955,0.053,2459872.028059,0.0024027,7.6460931,3.46e-05,3.508,0.486,3.405862,0.154508,3132.0,142.297,8.25522,0.466303,206.451,1056.0,22.0,484.093,8.928001,6065.0,127.9,4.15,0.08,1.49,0.07,,,1.13,0.147841,"17,42,43,57",2021-06-23,2023-05-01,2023-05-22 00:00:00,found in faint-star QLP search,3624,1,False,False,True -1980725947,3625.01,,3,4,4,3,1,4,4,67.0,69.7,317.0,2,0,0,PC,PC,12.373,0.01,,1,spoc-s14-s60-b0A-PC,QLP,20:15:06.54,59:40:36.88,2.114,0.051,-10.989,0.045,2459798.327927,0.001001454,2.9708659450665,6.035697e-05,3.42955359504298,0.06659876,12.846125,0.251888,11761.9984290799,231.97023,14.813561698729,0.72020733,1181.3395539174,1495.2487082933,48.268257,556.008,7.2365,6122.0,130.4,4.27,0.08,1.30269002914429,0.0597739,,,1.16,0.154142,"14,15,16,17,41,55,56,57",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; multiple stars in pixel,3625,1,False,False,True -398912927,3626.01,,5,5,5,5,5,5,5,20.4,81.4,120.81,0,2,2,PC,FP,10.8154,0.007,,1,qlp,QLP,01:14:12.96,19:28:13.59,-1.346,0.141,10.098,0.106,2458766.790402,0.0025072,19.8875338,0.003569,1.34,0.372,3.283885,1.005337,3020.0,925.521,13.605,5.27748,17.0243,565.0,10.0,318.244,6.5065,5856.2,112.3,4.07,0.08,1.57,0.07,-0.094,0.033,1.06,0.127955,17,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3626,1,False,False,True -1979500576,3627.01,,5,5,5,5,5,5,5,16.5,77.6,25.06,0,0,0,PC,FP,12.2546,0.009,,1,qlp,QLP,20:56:09.72,57:42:30.12,2.459,0.079,4.13,0.08,2458784.456622,0.0056474,2.6342729,0.0004907,3.998,0.52,3.469035,0.620962,3190.0,571.764,,,,,19.0,272.628,3.1125,,,,,,,,,,,"15,16,17",2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3627,1,False,False,True -238624131,3628.01,,3,4,3,3,1,4,4,38.2,114.2,84.75,5,4,0,PC,PC,11.6203,0.008,,1,qlp-s57-tois,QLP,00:51:27.85,47:39:46.1,37.767,0.088,-12.2,0.063,2459879.231564,0.0007303,3.4945148,4.3e-06,2.555,0.192,8.998856,0.309572,8254.0,285.086,11.03,0.610796,362.88,1215.0,41.0,332.852,4.694,5699.0,127.7,4.29,0.08,1.2,0.06,,,1.01,0.131768,"17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3628,1,False,False,False -455784423,3629.01,,3,5,5,3,4,4,4,29.0,117.3,50.98,5,1,0,CP,CP,12.7882,0.007,,1,qlp-s57-tois,QLP,23:59:10.41,39:18:51.32,185.747,0.044,1.023,0.03,2459878.618825,0.0009721,3.9365629,6.1e-06,2.19,0.384,16.917689,0.89256,15461.0,821.74,8.09927,0.333912,41.2897,706.0,32.0,130.091,0.5465,3689.0,157.0,4.64,0.01,0.61,0.02,,,0.600047,0.0202578,"17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; TOI-3629 b,3629,1,False,False,False -189380158,3630.01,,3,5,5,3,5,4,5,39.5,100.4,110.39,1,2,0,PC,KP,13.0942,0.007,,1,qlp,QLP,01:27:29.06,38:58:05.21,-0.176,0.053,-3.236,0.059,2458785.619295,0.0015216,1.9618085,0.0002537,2.749,0.222,15.021451,0.011261,13740.0,10.3718,12.8959,,1611.53,1765.0,45.0,666.802,14.9475,6026.0,122.0,4.41,,1.1,,,,1.12,,17,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3630,1,False,False,False -429414530,3631.01,,5,5,5,5,5,5,5,10.7,58.5,17.3,0,0,0,PC,FP,11.963,0.019,,1,qlp,QLP,20:56:09.72,57:42:30.16,,,,,2458784.455915,0.0065379,2.6340964,0.0006795,3.477,0.901,2.445659,0.013609,2250.0,12.5341,4.1106,1.20258,1091.48,1601.0,16.0,,,5163.2,714.1,,,0.83,0.23,,,,,"15,16,17",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3631,1,False,False,True -186292194,3632.01,,3,4,4,3,2,4,4,31.0,93.5,110.07,4,8,1,PC,PC,12.1665,0.007,,1,qlp-s57-tois,QLP,01:08:22.43,37:42:02.35,-0.487,0.06,-5.809,0.059,2459876.908195,0.0009735,3.2403602,4.5e-06,3.216,0.118,10.5688,0.229858,9687.0,211.685,12.8678,0.743583,1165.99,1627.0,30.0,635.54,16.466,6605.4,145.8,4.31,0.1,1.36,0.08,-0.036,0.019,1.38,0.230143,"17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3632,1,False,False,False -429218084,3633.01,,3,4,3,3,1,4,4,24.6,29.9,317.0,1,0,0,PC,PC,12.2391,0.018,,1,qlp-s55-tois,QLP,20:53:16.13,58:05:40.53,-3.761,0.179,-6.199,0.168,2459823.48709,0.0038569,2.5266409,1.05e-05,1.502,0.297,2.924566,0.271852,2690.0,250.354,18.3972,6.65775,761.094,1463.0,13.0,1246.16,145.72,7233.0,169.6,3.54,0.12,3.6,0.44,,,1.62,0.274325,"15,16,17,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; significant uncertainty on Rp estimates; may be too large,3633,1,False,False,True -80478272,3634.01,,3,4,4,3,2,4,4,,,126.61,1,11,2,PC,PC,11.224,0.032,,1,qlp-s57-tois,QLP,00:50:16.7,27:34:07.7,,,,,2459878.348748,0.0008868,5.0859432,7.2e-06,2.57,0.659,7.726382,1.324929,7091.0,1219.56,13.8966,,756.586,,40.0,364.172,,6360.4,,,,1.48,,-0.0950051,0.00899234,,,"17,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,V-shaped; found in faint-star QLP search,3634,1,False,False,False -428003305,3635.01,,3,4,4,3,4,4,4,29.2,24.5,317.0,2,1,2,PC,PC,12.7382,0.006,,1,spoc-s57-b0A,QLP,23:17:12.43,44:36:44.41,0.507,0.028,0.608,0.022,2459853.65581,0.0024027938,1.80481063596366,0.00026662913,4.36419320938334,0.20256743,4.957882,0.202894,4555.96825387166,186.855,14.8028768409222,1.1897252,5932.98850613246,2238.40221196756,14.349284,1013.06,19.3355,5972.0,123.5,3.81,0.08,2.1619598865509,0.106453,,,1.1,0.140148,"16,17,57",2021-06-23,2023-01-30,2023-02-09 12:10:04,found in faint-star QLP search; multiple stars in pixel; ~3 sigma odd-even in SPOC s57,3635,1,False,False,False -61205803,3636.01,,3,5,5,3,5,4,5,39.1,108.2,122.88,0,1,0,KP,KP,12.7628,0.008,,1,spoc-s57-b0A,QLP,01:24:15.63,32:48:38.52,-9.175,0.054,-16.632,0.077,2459855.36278,0.00097559206,4.21866250280047,0.00025461186,3.25809977611189,0.08111124,20.30483,0.369693,18527.6525232176,340.44202,13.6976777683302,0.8217431,311.709196649798,1071.66032739246,42.139324,440.089,8.045,5425.9,114.6,4.41,0.08,1.00689005851746,0.0550478,0.290173,0.0409939,0.95,0.118815,"17,57",2021-06-23,2023-01-30,2023-02-09 12:10:04,found in faint-star QLP search; HAT-P-51 b,3636,1,False,False,False -370981403,3637.01,,3,4,3,3,1,4,4,88.8,236.2,317.0,2,0,0,PC,PC,12.9487,0.006,,1,qlp-s56-tois,QLP,21:56:55.59,53:49:35.51,-1.548,2.26,-4.098,2.26,2459847.572572,0.0016298,3.7330471,7.4e-06,5.863,0.382,24.519278,0.781666,22330.0,719.682,,,1403.06,1705.0,42.0,1178.63,,5579.5,226.8,,,,,,,,,"16,17,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,3637,1,False,False,False -47094691,3638.01,,3,4,3,3,3,4,4,23.5,71.2,82.02,7,0,1,PC,PC,12.5931,0.008,,1,qlp,QLP,01:33:46.26,17:49:35.87,7.451,0.061,-0.725,0.042,2458785.285561,0.0017014,4.9258489,0.0007354,1.355,0.399,14.064123,0.116676,12870.0,107.457,14.4729,1.53565,55.9229,761.0,9.0,425.321,4.757,5263.0,121.1,4.27,0.08,1.15,0.06,,,0.9,0.113676,17,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3638,1,False,False,True -365447203,3639.01,,3,4,3,3,1,4,4,28.4,35.1,317.0,1,0,0,PC,PC,13.201,0.012,,1,qlp-s56-tois,QLP,21:50:57.66,58:50:25.41,8.017,0.032,7.402,0.033,2459851.117615,0.0017197,5.7208592,1.2e-05,3.034,0.143,17.203349,0.722408,15720.0,665.141,14.6233,,193.036,1038.0,23.0,577.097,5.479,5856.0,122.0,4.36,,1.13,,,,1.06,,"16,17,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,3639,1,False,False,False -200917197,3640.01,,3,4,3,3,3,4,4,76.1,188.6,317.0,2,3,2,PC,PC,12.1395,0.008,,1,spoc-s58-b0A,QLP,03:38:09.18,40:28:31.99,1.229,0.147,-0.771,0.104,2459883.219061,0.0023942941,1.22075098643591,0.0001949232,2.35587329399081,0.1803445,3.478334,0.207182,3198.53783316636,190.80304,31.8093300523374,40.5431,63708.1090241316,4051.99059089714,15.543705,2005.29,318.285,8273.0,138.2,3.66,0.16,3.48916006088257,0.585377,,,2.03,0.286553,"18,58",2021-06-23,2023-02-23,2023-02-25 12:10:55,found in faint-star QLP search; Rp may be too large; v-shaped,3640,1,False,False,False -192878624,3641.01,,3,4,3,3,3,4,4,30.1,46.4,317.0,1,0,2,PC,PC,13.3405,0.006,,1,spoc-s58-b0A,QLP,03:19:26.15,44:44:47.06,0.905,2.254,5.73,2.254,2459885.700496,0.0029160795,5.73586502240189,0.0011884877,5.04860673668066,0.2372786,14.651633,0.606434,13404.0081997622,558.3908,,,254.033385475776,1018.2219350181,18.467154,938.451,,5668.6,621.2,,,,,,,,,"18,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search; no stellar radius; Teff and plx indicate distant G star,3641,1,False,False,False -186614891,3642.01,,3,4,3,3,1,4,4,55.1,64.1,317.0,2,0,0,PC,PC,12.5822,0.008,,1,qlp-s58-tois,QLP,03:00:35.58,39:56:06.4,10.431,0.05,-10.109,0.043,2459902.81919,0.0005635,4.084447,3.4e-06,1.829,0.086,22.689549,0.646541,20681.0,595.309,14.1047,0.815883,101.257,883.0,48.0,379.963,5.888,5458.0,131.5,4.45,0.08,0.96,0.05,,,0.95,0.115203,"18,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search; nearby TIC 641579161 (Tmag~16.5),3642,1,False,False,False -453230066,3643.01,,5,5,5,5,5,5,5,12.4,64.3,37.45,0,1,1,PC,FP,10.9469,0.008,,1,qlp,QLP,01:35:58.22,54:42:59.19,4.255,0.095,-2.194,0.085,2458813.485731,0.0059801,1.5492212,0.000672,2.287,0.448,1.542841,0.004584,1420.0,4.2224,6.80431,0.506666,8634.8,2685.0,11.0,635.734,20.442,8364.0,129.8,4.25,0.08,1.78,0.08,,,2.07,0.317261,18,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3643,1,False,False,False -445496795,3644.01,,3,4,3,3,3,4,4,13.8,39.5,89.32,0,2,1,PC,PC,12.1497,0.009,,1,spoc-s58-b0A,QLP,01:58:58.16,56:51:27.94,5.248,0.06,-2.653,0.078,2459882.944824,0.002984222,1.83107168874416,0.00036747163,1.8721705709222,0.5386276,1.807869,0.17607,1663.72325340832,162.15315,11.3552985657458,5.60289,15536.4972286558,2847.46259341901,8.707327,1204.71,54.355,7308.0,136.0,3.79,0.09,2.70029997825623,0.157729,,,1.65,0.283738,"18,58",2021-06-23,2023-02-22,2023-02-25 12:10:55,found in faint-star QLP search,3644,1,False,False,False -184733148,3645.01,,3,4,4,3,2,4,4,33.5,88.9,105.64,3,0,2,PC,PC,12.851,0.007,,1,spoc-s58-b0A,QLP,02:12:21.17,36:19:56.18,3.816,0.046,-2.582,0.049,2459883.795317,0.0012595423,2.95941644913403,0.0002570077,2.70534797123303,0.0943089,12.493051,0.31671,11440.5781165739,291.65787,12.5327054229274,0.75698835,682.27862275575,1303.49746408056,23.83841,541.244,9.5105,5585.0,122.3,4.33,0.08,1.12542998790741,0.0591457,,,0.99,0.133004,"18,58",2021-06-23,2023-02-22,2023-02-25 12:10:55,found in faint-star QLP search,3645,1,False,False,False -445407434,3646.01,,3,4,4,3,1,4,4,93.2,140.2,317.0,4,1,0,PC,PC,13.3858,0.017,,1,qlp-s58-tois,QLP,00:58:41.43,57:35:24.23,-2.135,0.023,-5.49,0.025,2459908.958083,0.0009468,2.1795448,2.7e-06,2.523,0.089,26.497831,0.662026,24110.0,609.563,21.4131,,875.049,1515.0,39.0,813.253,14.155,5840.0,122.0,4.15,,1.42,,,,1.05,,"17,18,58",2021-06-23,2023-06-27,2023-06-27 00:00:00,found in faint-star QLP search,3646,1,False,False,False -149855074,3647.01,,3,4,3,3,1,4,4,10.8,49.6,28.82,0,2,0,PC,PC,12.3524,0.01,,1,qlp,QLP,02:59:10.76,37:38:07.52,,,,,2458813.248651,0.0057158,3.1116107,0.0014249,2.729,0.402,2.815705,0.009446,2590.0,8.69989,,,,,9.0,355.329,,,,,,,,,,,,18,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3647,1,False,False,False -433144048,3648.01,,3,4,3,3,1,4,4,21.6,20.7,317.0,1,0,0,PC,PC,13.0449,0.008,,1,qlp-s58-tois,QLP,02:42:51.66,39:34:44.16,3.975,0.047,-6.463,0.04,2459909.262666,0.004222,2.923461,1.74e-05,3.379,0.762,5.542692,0.374644,5092.0,345.0,15.738,,1209.83,1643.0,13.0,1354.64,70.115,5858.5,106.7,3.7,,2.4,,-0.103,0.103,1.06,,"18,58",2021-06-23,2023-06-27,2023-06-27 00:00:00,found in faint-star QLP search,3648,1,False,False,False -139559780,3649.01,,3,4,3,3,1,4,4,23.0,58.0,117.68,1,0,0,PC,PC,13.137,0.008,,1,qlp,QLP,02:40:51.93,36:06:28.04,2.028,0.082,-6.618,0.076,2458814.11323,0.0045908,3.2637419,0.0012015,1.977,0.314,8.885006,0.027383,8150.0,25.2203,13.3617,,328.681,1186.0,11.0,879.147,33.041,6016.1,45.4,4.18,,1.42,,0.196,0.044,1.11,,18,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3649,1,False,False,False -139507260,3650.01,,3,4,3,3,1,4,4,40.6,36.9,317.0,2,0,0,PC,PC,13.321,0.018,,1,qlp,QLP,02:38:11.73,39:16:43.14,5.297,2.124,-18.7,2.124,2458814.194955,0.0022041,1.7556768,0.0002993,2.071,0.174,13.393396,0.011753,12260.0,10.8247,13.529,2.53357,888.169,1520.0,13.0,726.26,,5670.5,552.6,,,1.19,0.22,0.2364,0.0393548,,,18,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3650,1,False,False,False -415976665,3651.01,,3,4,3,3,4,4,4,26.3,77.0,73.01,0,2,2,PC,PC,11.4822,0.008,,1,qlp-s58-tois,QLP,02:18:15.01,44:05:16.76,9.393,0.07,-9.299,0.072,2459908.081854,0.0033304,1.5244603,6.3e-06,1.665,0.731,1.790769,4.44182,1648.0,4082.71,14.6878,5.83681,13258.6,2356.94935818127,13.0,626.174,23.0465,6714.1,145.2,4.06,0.1,1.85,0.11,0.172,0.012,1.43,0.229497,"18,58",2021-06-23,2023-06-26,2023-06-26 00:00:00,V-shaped; found in faint-star QLP search,3651,1,False,False,False -116848450,3652.01,,3,4,3,3,3,4,4,37.5,52.5,317.0,2,1,1,PC,PC,11.7419,0.016,,1,qlp-s58-tois,QLP,03:07:04.99,49:00:37.09,0.029,0.065,-4.544,0.061,2459906.291184,0.0014065,3.4796904,8.9e-06,3.691,0.274,4.129297,0.118077,3796.0,108.747,16.6632,0.976654,1684.37,1784.0,22.0,928.908,32.195,6841.0,164.6,3.66,0.09,2.97,0.16,,,1.48,0.245646,"18,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,3652,1,False,False,False -410552165,3653.01,,3,4,3,3,1,4,4,41.1,56.5,317.0,2,0,0,PC,PC,13.0006,0.008,,1,qlp-s58-tois,QLP,01:50:06.85,49:06:17.43,1.543,0.05,-5.622,0.067,2459909.350822,0.0013902,4.6017262,9.8e-06,1.471,0.265,15.486114,1.13459,14162.0,1044.45,13.5575,,87.4587,851.0,19.0,622.117,12.361,5981.0,122.0,4.38,,1.12,,,,1.1,,"18,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,3653,1,False,False,False -396556650,3654.01,,3,4,3,3,3,4,4,23.9,86.6,52.06,0,1,1,PC,PC,12.7096,0.007,,1,qlp,QLP,02:37:25.69,42:58:16.4,5.038,0.118,-1.763,0.109,2458814.364165,0.0036592,2.277182,0.0006275,1.675,0.289,5.682387,0.012584,5220.0,11.5905,8.26117,0.726829,394.584,1241.0,13.0,500.459,23.138,5622.0,127.6,4.34,0.09,1.12,0.08,,,1.0,0.13264,18,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3654,1,False,False,False -94609570,3655.01,,3,5,5,3,3,4,4,115.6,203.2,317.0,1,0,1,PC,APC,12.1904,0.006,,1,qlp-s44-tois,QLP,03:58:34.46,30:51:58.91,-8.887,2.197,-2.475,2.197,2459519.849061,0.0006599,3.3325651,6.4e-06,2.146,0.155,13.767193,1.847366,12600.0,1700.04,24.4764,,1100.44,,20.0,535.52,,6229.9,,,,1.5,,-0.002,0.24,,,"18,43,44",2021-06-23,2022-03-11,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3655,1,False,False,True -77258279,3656.01,,3,4,3,3,1,4,4,16.7,52.3,92.4,1,0,0,PC,PC,13.1951,0.009,,1,spoc-s58-b0A,QLP,02:43:25.57,32:33:28.75,-3.374,0.053,-2.759,0.059,2459884.175674,0.00256699,5.51240311423071,0.0009949836,2.86340774988255,0.21675834,10.09708,0.548673,9256.64564122394,505.2189,11.5826079111979,0.8919554,325.244872672724,1083.10949803405,16.591362,613.169,10.2325,5587.5,119.3,4.29,,1.17528998851776,,0.001,0.115,0.99,,"18,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search,3656,1,False,False,False -381544766,3657.01,,3,4,3,3,3,4,4,66.7,132.2,317.0,3,0,1,PC,PC,12.328,0.176,,1,spoc-s58-b0A,QLP,02:00:00.78,38:31:47.87,,,,,2459886.091914,0.0008193235,4.08958864987115,0.0002717259,2.8474579558359,0.063037485,34.360667,0.652174,31151.808267577,600.49414,,,525.207724829751,1220.96306337495,42.407238,1136.97,,6191.8,,,,,,-0.293,0.035,,,"18,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search; Gaia DR2 Rstar=1.11 Rsun so Rp ~ 20 Re; likely too large to be planetary; possibly synchronized,3657,1,False,False,False -71854732,3658.01,,3,4,4,3,3,4,4,,,317.0,1,1,4,PC,PC,12.6532,0.006,,1,spoc-s58-b0A,QLP,01:45:11.38,54:33:34.75,-19.248,2.01,14.892,2.01,2459884.860175,0.0036331238,3.10000764506857,0.00079696084,5.71695684935676,0.21650152,18.981964,0.842905,17331.0936023911,776.0429,,,577.039673412353,1250.03210680873,16.033049,,,8951.0,338.1,,,,,,,,,"18,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search; strong phase modulations and ~3000 ppm secondary; no stellar radius; Teff ~8000 K,3658,1,False,False,False -374778982,3659.01,,3,4,3,3,2,4,4,50.4,117.5,117.0,0,0,2,PC,PC,13.4977,0.006,,1,spoc-s58-b0A,QLP,02:07:00.07,55:10:43.63,2.898,0.045,-8.263,0.049,2459882.960208,0.0030668862,2.3887344346184,0.00047600825,3.92622150544989,0.23795727,13.630939,0.82853,12476.0793715251,762.8132,13.3086932977322,7.4044228,410.889066307356,1148.28818368151,18.1883,441.614,4.7585,5097.0,122.0,4.5,,0.865700006484985,,,,0.855,,"18,58",2021-06-23,2023-02-22,2023-02-25 12:10:55,low SNR; found in faint-star QLP search; significant odd-even; centroid offset towards two other stars,3659,1,False,False,True -67517533,3660.01,,3,4,4,3,3,4,4,42.5,60.2,317.0,5,0,3,PC,PC,12.8235,0.007,,1,spoc-s58-b0A,QLP,01:58:03.34,41:13:12.89,8.679,0.047,-0.732,0.039,2459884.206655,0.0020568378,3.94976354769938,0.0005687503,1.90114391758761,0.16756944,9.2443,0.812682,8478.17084406006,748.2278,18.257110815555,14.586028,1096.74586967014,1467.73027126791,16.116407,843.524,18.256,6373.0,128.6,4.22,0.09,1.44337999820709,0.0674371,,,1.27,0.194538,"18,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search; v-shaped,3660,1,False,False,False -370123525,3661.01,,3,4,3,3,1,4,4,,,100.45,2,0,0,PC,PC,12.8309,0.007,,1,spoc-s58-b0A,QLP,01:27:10.13,58:57:38.3,4.088,4.072,-9.506,4.072,2459882.957873,0.0017368263,2.64157115886368,0.00029603537,4.05445780782014,0.11000667,13.6008,0.343453,12448.666021137,316.28168,,,714.287320448252,1318.52383448998,24.435955,,,,,,,,,,,,,"18,58",2021-06-23,2023-02-23,2023-02-25 12:10:55,found in faint-star QLP search; nearby neighbor TIC 626333269 ~1'' away(Tmag~14.37); no stellar radius; plx ~0.44 and brightness indicates likely giant host star,3661,1,False,False,False -65446983,3662.01,,3,4,4,3,3,4,4,23.5,87.6,126.76,5,28,2,PC,PC,10.7043,0.006,,1,qlp,QLP,03:37:37.35,46:50:34.33,1.6,1.7,-0.9,1.6,2458813.713584,0.0030008,9.9908116,0.0020103,3.566,0.256,5.027724,0.002838,4620.0,2.61376,13.9288,,335.88,,33.0,545.117,,7934.0,,,,2.02,,,,,,18,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3662,1,False,False,False -354151219,3663.01,,3,4,3,3,3,4,4,11.2,37.4,67.87,0,2,1,PC,PC,11.5917,0.012,,1,qlp-s18-faintsearch,QLP,01:24:42.56,51:40:18.68,-5.113,0.066,-0.221,0.062,2458809.803812,0.0052903,3.5639033,0.0008821,2.111,0.452,1.597206,0.005545,1470.0,5.1068,9.64789,0.826615,657.804,1410.0,12.0,774.636,23.2995,6940.9,137.1,3.85,0.1,2.41,0.14,0.14,0.015,1.52,0.257152,"17,18,58",2021-06-23,2023-02-27,2023-02-27 00:00:00,found in faint-star QLP search; centroid offset in SPOC s58 centered on TIC 354151220 (Tmag~15),3663,1,False,False,False -348437470,3664.01,,3,4,3,3,1,4,4,40.4,95.6,121.14,0,1,0,PC,PC,12.91,0.006,,1,qlp-s58-tois,QLP,02:21:14.04,59:42:42.68,-7.624,0.045,8.731,0.04,2459906.709615,0.0015431,3.2975093,9.4e-06,2.511,0.265,14.651624,0.6777,13404.0,623.99,12.8987,0.778444,349.544,1204.0,21.0,464.748,4.821,5556.0,213.2,4.29,0.09,1.18,0.06,,,0.979,0.131153,"18,58",2021-06-23,2023-06-27,2023-06-27 00:00:00,found in faint-star QLP search,3664,1,False,False,False -65440953,3665.01,,1,4,4,1,4,4,4,12.3,60.9,13.34,1,0,5,PC,PC,12.4829,0.006,,1,qlp,QLP,03:36:51.6,44:46:11.44,-23.228,0.12,-14.648,0.106,2458812.783914,0.0064587,0.8746494,0.0004607,1.576,0.307,2.075739,0.009681,1910.0,8.91633,3.71319,0.355009,1522.95,1740.0,11.0,244.03,3.499,4977.4,111.6,4.54,0.09,0.81,0.05,0.162629,0.0510917,0.823,0.098683,18,2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3665,1,False,False,False -346626688,3666.01,,3,5,5,3,5,4,5,45.9,129.2,105.16,1,2,2,PC,KP,11.4453,0.006,,1,spoc-s58-b0A,QLP,02:57:53.04,30:37:32.15,17.645,0.097,-11.995,0.075,2459886.331856,0.0007477939,4.40851938752088,0.00024606814,3.30167931561148,0.065376036,9.790704,0.14448,8977.03543043807,133.06244,12.498698210408,0.6465426,648.882600950224,1287.24520237889,45.334003,319.031,5.418,5961.2,106.9,4.25,0.07,1.29832994937897,0.0614598,0.0796136,0.0150581,1.092,0.140362,"18,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search; HAT-P-48 b,3666,1,False,False,False -63717709,3667.01,,3,4,3,3,2,4,4,30.0,38.6,317.0,1,0,1,PC,PC,13.0772,0.009,,1,spoc-s58-b0A,QLP,02:15:14.86,33:13:45.4,21.975,0.049,-4.795,0.043,2459884.185008,0.0032865517,5.44397756591126,0.001279759,2.95702327695847,0.23192629,10.01206,1.046853,9179.06084745379,963.7226,16.8830792396374,5.5288196,518.56611968866,1217.08464776274,16.197239,740.924,14.2435,5717.0,122.0,4.14,,1.4198499917984,,,,1.02,,"18,58",2021-06-23,2023-02-23,2023-02-25 12:10:55,found in faint-star QLP search; v-shaped,3667,1,False,False,False -467580267,3668.01,,3,4,3,3,3,4,4,101.4,97.1,317.0,1,2,2,PC,PC,11.2959,0.007,,1,qlp-s58-tois,QLP,03:12:52.43,35:05:36.44,-8.21,0.081,-7.941,0.072,2459908.643175,0.0012656,0.7415247,1.2e-06,1.196,0.196,2.545776,0.171526,2342.0,157.969,13.5277,0.985763,2304.37,1930.0,25.0,647.3,26.9945,5921.0,120.4,3.6,0.08,2.73,0.17,,,1.08,0.133174,"18,58",2021-06-23,2023-06-27,2023-06-27 00:00:00,found in faint-star QLP search,3668,1,False,False,False -63470437,3669.01,,3,4,3,3,1,4,4,24.8,66.1,75.38,3,0,0,PC,PC,13.4357,0.006,,1,qlp-s58-tois,QLP,02:06:24.57,33:51:22.66,1.164,2.169,-0.526,2.169,2459909.846648,0.0027307,1.2126653,4.8e-06,1.356,0.252,5.586345,0.592167,5132.0,545.257,10.8168,1.85428,1112.72,1609.0,11.0,807.206,,5958.7,505.2,,,1.51,0.24,,,,,"18,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,low SNR; found in faint-star QLP search; no stellar radius; Gaia DR2 Rstar = ~1.5 Rsun which would make Rp consistent with a planetary companion,3669,1,False,False,False -331854794,3670.01,,3,4,3,3,2,4,4,59.1,129.8,124.33,1,0,1,PC,PC,12.8464,0.006,,1,spoc-s58-b0A,QLP,01:14:40.72,57:04:39.7,17.254,0.03,-8.567,0.031,2459882.986355,0.0023332103,2.19477674210859,0.00031727116,2.10450723715932,0.18451542,7.817375,0.569283,7174.20961803488,524.1912,13.7928814617161,17.876797,899.185732746756,1396.632363154,17.203392,477.19,4.522,5601.5,121.3,4.39,0.08,1.05234003067017,0.0642663,0.266,0.125,0.99,0.122019,"18,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search; v-shaped,3670,1,False,False,False -312345863,3671.01,,3,4,3,3,1,4,4,84.4,103.0,317.0,4,0,0,PC,PC,12.9892,0.015,,1,spoc-s58-b0A,QLP,00:49:37.82,56:00:05.58,-1.936,0.024,-9.655,0.025,2459883.547313,0.0019324122,1.72674318875193,0.00022107719,1.64960227539193,0.12682465,15.975993,1.710874,14606.7055133108,1574.5323,20.1962679903147,4.384016,2687.81316062534,1836.40944851356,13.838425,749.29,13.224,5972.0,151.6,4.18,0.08,1.41288995742798,0.06799,,,1.1,0.140491,"17,18,58",2021-06-23,2023-02-23,2023-02-25 12:10:55,found in faint-star QLP search,3671,1,False,False,False -50943163,3672.01,,5,5,5,5,5,5,5,18.1,62.8,85.72,0,0,0,PC,FP,11.2351,0.013,,1,qlp,QLP,02:47:37.02,61:18:22.83,5.534,0.042,-3.927,0.058,2458810.750472,0.0053429,2.4254068,0.0013362,3.323,0.523,2.075739,0.00554,1910.0,5.1026,11.0715,0.788839,7043.91,2552.0,13.0,812.606,23.9735,8290.0,167.7,3.95,0.08,2.51,0.11,,,2.04,0.312025,18,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3672,1,False,False,False -452964680,3673.01,,3,4,3,3,1,4,4,62.6,70.2,317.0,1,1,0,PC,PC,13.2514,0.033,,1,spoc-s58-b0A,QLP,00:34:53.42,54:44:36.65,1.372,0.029,-2.994,0.028,2459882.627544,0.0014797023,2.23886695217965,0.0001985816,3.03993358909673,0.105742484,21.093532,0.545435,19240.3563594447,502.23834,18.0465204250345,0.56042916,1332.25533326724,1540.87218802677,24.964977,653.952,11.89,5615.0,122.0,4.21,,1.29179000854492,,,,0.99,,"17,18,57,58",2021-06-23,2023-02-23,2023-02-25 12:10:55,found in faint-star QLP search,3673,1,False,False,False -308613965,3674.01,,3,4,3,3,1,4,4,18.8,53.4,103.93,2,0,0,PC,PC,13.128,0.012,,1,qlp-s58-tois,QLP,01:35:30.51,50:59:16.08,4.012,0.05,-0.922,0.047,2459909.403907,0.0019377,4.4619426,1.45e-05,3.232,0.324,11.339812,0.488799,10390.0,450.099,13.0569,,399.27,1245.0,22.0,727.282,14.4345,5854.0,122.0,4.2,,1.36,,,,1.06,,"18,58",2021-06-23,2023-06-27,2023-06-27 00:00:00,found in faint-star QLP search; slight depth aperture correlation,3674,1,False,False,False -34646336,3675.01,,3,4,3,3,1,4,4,18.1,53.5,100.06,1,0,0,PC,PC,13.4326,0.008,,1,spoc-s14-s60-b0A-PC,QLP,03:00:49.11,27:19:10.74,4.426,0.068,-21.125,0.049,2459520.80339,0.0021673,5.95775999902144,3.9910232e-05,4.64993139813424,0.19715583,12.836078,0.380428,11752.85442536,350.32574,12.1393329398036,0.6077613,218.58067994094,980.669554836894,30.427834,555.939,8.9295,5219.0,122.0,4.29,,1.12249004840851,,,,0.89,,"18,43,44,58",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,3675,1,False,False,True -302470965,3676.01,,3,4,3,3,2,4,4,,,81.51,1,0,2,PC,PC,13.3318,0.007,,1,spoc-s58-b0A,QLP,02:47:47.07,49:24:37.57,0.956,2.196,-7.047,2.18,2459883.174356,0.0018385177,1.93375941557317,0.00024306402,1.90366391466428,0.123123646,10.622349,0.531542,9735.84200712025,489.44803,,,1082.64507544783,1462.98972433922,18.917885,,,4828.4,56.8,,,,,,,,,"18,58",2021-06-23,2023-02-23,2023-02-25 12:10:55,found in faint-star QLP search; no stellar parameters; equally bright neighbor 0.2'' away,3676,1,False,False,False -458876004,3677.01,,3,5,5,3,3,4,4,61.1,207.3,130.18,2,3,1,PC,APC,11.9814,0.006,,1,qlp,QLP,02:23:21.09,60:53:23.87,7.889,0.031,-2.851,0.05,2458814.425212,0.0007812,3.6923071,0.000229,1.139,0.191,15.450872,0.016989,14130.0,15.647,14.2002,1.08284,375.352,1226.0,36.0,369.583,4.4955,8469.0,780.2,4.68,0.12,1.1,0.08,,,2.104,0.418174,18,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3677,1,False,False,False -34551972,3678.01,,3,4,3,3,4,4,4,70.5,111.5,317.0,1,2,3,PC,PC,10.5873,0.01,,1,spoc-s42-s46-b0A,QLP,02:56:55.99,28:46:17.31,-6.69,0.12,-1.271,0.13,2459885.446229,0.00070015906,4.85421480255816,5.799561e-05,5.58820599134143,0.033899758,8.548249,0.058203,7842.31579951541,53.60526,18.9133255975579,0.925474,2370.87941257595,1779.70129289352,136.74275,499.255,14.566,7259.3,108.6,4.03,0.09,2.03943991661072,0.0992162,0.476,0.03,1.63,0.27897,"18,42,43,44,58",2021-06-23,2023-03-22,2023-03-24 12:12:10,found in faint-star QLP search; strong but shallow secondary of ~700 ppm and likely phase modulations consistent with hot Jupiter,3678,1,False,False,True -285354178,3679.01,,3,4,3,3,1,4,4,27.1,97.3,99.12,3,0,0,PC,PC,12.8397,0.007,,1,spoc-s58-b0A,QLP,02:24:30.41,35:31:41.96,31.857,0.042,-3.112,0.045,2459885.843428,0.0008988434,5.9666253137321,0.00036648,2.83057667924795,0.08208452,20.152693,0.411954,18390.1162179921,379.35202,12.0716700429889,0.7088382,153.042711865221,897.062934863344,31.378883,391.982,3.8365,5418.0,118.2,4.51,0.08,0.888433992862701,0.0459045,,,0.94,0.121797,"18,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search,3679,1,False,False,False -311703724,3680.01,,3,5,5,3,3,4,4,69.1,70.9,317.0,0,2,2,PC,APC,11.3584,0.014,,1,qlp-s58-tois,QLP,00:38:34.76,54:34:03.17,-3.393,0.147,-0.77,0.128,2459909.677229,0.0007337,1.7054246,2.3e-06,1.021,0.221,4.112949,0.29745,3781.0,273.924,14.1638,1.39916,437.196,1273.0,31.0,604.837,47.5065,6304.0,146.8,3.83,0.11,2.24,0.2,,,1.24,0.179526,"17,18,57,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,V-shaped; found in faint-star QLP search; TFOP ST3/APC,3680,1,False,False,False -285272237,3681.01,TIC 285272237.01,3,5,5,3,5,4,5,34.0,112.8,74.94,1,3,3,KP,KP,11.7524,0.006,,1,spoc-s58-b0A,QLP,02:21:32.04,32:14:45.76,47.771,0.061,-21.428,0.063,2459886.284961,0.0008576916,4.64012692203827,0.00027934206,3.03201440887801,0.07134514,10.862564,0.194394,9954.9098835482,179.02782,10.2407442820183,0.6686679,243.033715636678,1007.01602395128,38.885468,255.206,2.45,5191.0,131.0,4.37,0.08,1.00935995578766,0.0602211,,,0.881,0.107369,"18,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search; HAT-P-38 b,3681,1,False,False,False -28961316,3682.01,,3,4,4,3,3,4,4,35.3,78.2,100.72,2,9,4,PC,PC,11.3186,0.007,,1,qlp-s44-tois,QLP,03:21:06.05,25:17:50.16,34.943,0.079,-18.464,0.059,2459522.002571,0.0008229,3.3462671,8.2e-06,3.625,0.142,4.427963,0.000858,4070.0,0.790036,12.1727,0.686426,711.319,1438.0,43.0,404.211,7.8025,5501.0,124.7,3.86,0.08,1.91,0.1,,,0.96,0.120273,"18,42,43,44",2021-06-23,2022-03-11,2023-06-28 00:00:00,found in faint-star QLP search,3682,1,False,False,True -264912889,3683.01,,3,4,3,3,3,4,4,103.2,144.4,317.0,4,2,1,PC,PC,11.4374,0.021,,1,qlp-s58-tois,QLP,02:43:49.99,54:46:49.43,-0.574,0.058,-7.291,0.061,2459907.842783,0.0011187,1.3697115,2.4e-06,1.951,0.437,4.206681,4.597837,3867.0,4225.81,20.6045,5.85772,18782.0,3261.0,32.0,685.249,15.721,7321.3,132.5,3.99,0.09,2.15,0.12,0.102,0.017,1.66,0.283867,"18,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,3683,1,False,False,False -28873762,3684.01,,5,5,5,5,5,5,5,40.1,49.6,317.0,0,0,0,PC,FP,13.3483,0.009,,1,qlp-s44-tois,QLP,03:19:10.16,27:15:47.99,1.47,0.091,-3.399,0.065,2459518.690795,0.0010735,3.105654,8.7e-06,1.999,0.381,13.547297,0.027312,12400.0,25.1553,17.6225,,643.523,1403.0,34.0,887.137,32.023,6241.0,122.0,4.2,,1.44,,,,1.21,,"18,42,43,44",2021-06-23,2022-03-11,2022-12-14 12:09:24,potential weak secondary; V-shaped; found in faint-star QLP search,3684,1,False,False,True -252118701,3685.01,,3,4,3,3,1,4,4,20.8,60.7,111.73,1,1,0,PC,PC,13.2757,0.019,,1,spoc-s58-b0A,QLP,01:03:01.04,57:52:44.44,-3.77,0.027,0.236,0.03,2459883.725079,0.002490555,4.9772766295936,0.0008512586,3.14652557101708,0.23330766,12.310896,0.606593,11274.7126433189,558.53687,12.9531910272025,0.97191143,437.589263321002,1166.50448783086,18.641462,651.558,9.596,5785.0,122.0,4.29,,1.20772004127502,,,,1.04,,"17,18,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search,3685,1,False,False,False -13533330,3686.01,,3,4,3,3,3,4,4,68.5,77.2,317.0,5,8,1,PC,PC,11.2381,0.006,,1,spoc-s58-b0A,QLP,02:27:36.14,59:57:09.8,-13.858,0.063,-3.451,0.073,2459884.347294,0.0005558251,5.07780641764799,0.00017270983,3.64139631951908,0.044498328,15.824627,0.184196,14469.3182016856,169.63617,14.934318366264,0.9164556,340.217758398998,1095.36533894573,83.14044,255.803,2.09,5262.0,159.8,4.2,0.09,1.24346995353699,0.0743216,,,0.901,0.116466,"18,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search,3686,1,False,False,False -250803548,3687.01,,3,4,3,3,3,4,4,47.3,86.5,317.0,1,0,2,PC,PC,13.3901,0.006,,1,qlp-s58-tois,QLP,02:16:04.39,53:06:30.01,-17.838,2.316,-17.47,2.335,2459907.561404,0.0019755,4.4543921,1.28e-05,6.186,0.211,19.998831,0.527017,18251.0,485.283,,,1324.64,1680.0,21.0,907.45,,5854.0,417.8,,,,,-0.241,0.072,,,"18,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search; no stellar radius; host likely F star; fainter companion ~0.4'' away,3687,1,False,False,False -245509452,3688.01,,3,5,5,3,4,4,4,47.4,121.7,116.87,5,8,1,PC,CP,11.8433,0.013,,1,spoc-s58-b0A,QLP,02:37:07.76,54:51:04.37,18.844,0.067,-11.37,0.069,2459883.864179,0.0008675453,3.24620800895136,0.0001879109,3.42015129416154,0.07177359,10.260757,0.200591,9405.99104456313,184.73451,13.2996428959182,0.72298074,1107.84722125754,1471.43037747132,32.70218,396.378,5.9425,6088.0,151.3,4.24,0.08,1.34547996520996,0.0669749,,,1.14,0.149953,"18,58",2021-06-23,2023-02-27,2023-03-21 12:03:02,found in faint-star QLP search,3688,1,False,False,False -241135327,3689.01,,3,4,3,3,3,4,4,32.4,36.9,317.0,1,0,2,PC,PC,13.1033,0.007,,1,qlp-s58-tois,QLP,02:01:28.3,48:38:11.48,5.583,0.048,-4.824,0.047,2459909.291498,0.0018494,2.4145007,6.1e-06,2.272,0.484,8.143707,0.450446,7472.57145936933,414.79016,15.7019,,1150.77,1622.0,20.0,1043.15,28.47,6391.0,122.0,4.1,,1.67,,,,1.28,,"18,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,3689,1,False,False,False -240989628,3690.01,,3,4,3,3,3,4,4,12.3,63.5,46.99,1,2,1,PC,PC,11.9017,0.006,,1,qlp-s18-faintsearch,QLP,01:18:40.85,52:41:57.97,19.12,0.069,-3.462,0.063,2459886.868254,0.0016146082,10.0753549,0.0009154,1.11,0.169,5.245901,0.017079,4820.0,15.7305,7.80496,0.763484,4.39054,403.0,11.0,219.829,1.9525,4798.6,106.2,4.36,0.1,0.97,0.08,-0.236,0.021,0.775,0.0933018,"17,18,58",2021-06-23,2023-02-27,2023-02-27 00:00:00,V-shaped; found in faint-star QLP search,3690,1,False,False,False -240959810,3691.01,,3,4,3,3,4,4,4,32.8,93.0,120.13,2,0,2,PC,PC,12.6772,0.006,,1,spoc-s58-b0A,QLP,01:15:05.54,53:07:03.67,-1.337,0.04,-5.154,0.043,2459884.524159,0.0012764775,3.34055661474733,0.00030069315,3.52268374717148,0.1039017,11.183181,0.255978,10247.2259360133,235.73656,13.516566328531,0.68051714,1267.20568890221,1521.70871560861,26.91621,607.498,8.9125,6702.0,155.1,4.36,0.09,1.30285000801086,0.0558543,,,1.422,0.246633,"18,58",2021-06-23,2023-02-22,2023-02-25 12:10:55,found in faint-star QLP search,3691,1,False,False,False -240864953,3692.01,,3,4,3,3,1,4,4,58.5,109.1,317.0,0,1,0,PC,PC,13.3538,0.006,,1,spoc-s58-b0A,QLP,01:07:15.3,53:40:18.41,-0.581,2.187,-1.215,2.187,2459885.367332,0.0022770998,3.32071574223752,0.000549553,5.83493371612851,0.15816061,18.54102,0.449658,16931.9264315043,414.06458,,,526.478239097401,1221.70079326838,22.48146,1182.39,,5218.2,262.2,,,,,,,,,"17,18,58",2021-06-23,2023-02-23,2023-02-25 12:10:55,found in faint-star QLP search; no stellar radius; Teff and plx indicate distant G/K star,3692,1,False,False,False -240823272,3693.01,,3,5,5,3,4,4,4,47.2,201.3,110.71,1,13,1,CP,CP,11.419,0.006,,1,qlp-s18-faintsearch,QLP,01:02:37.05,51:18:14.01,-6.931,0.064,-21.334,0.071,2459888.212325,0.0004959978,9.0881638,0.0003139,3.402,0.092,27.109911,0.003698,24660.0,3.40598,12.8974,0.762001,57.0645,765.0,78.0,176.436,1.216,5211.0,134.1,4.58,0.08,0.8,0.05,,,0.887,0.113155,"17,18,58",2021-06-23,2023-02-27,2023-03-03 12:02:44,found in faint-star QLP search; TOI-3693 b,3693,1,False,False,False -470822809,3694.01,,3,4,3,3,3,4,4,12.9,53.4,22.02,0,0,2,PC,PC,12.6639,0.006,,1,qlp,QLP,01:33:43.72,59:25:32.17,-7.019,0.018,-19.99,0.027,2458812.951218,0.0059227,2.5400911,0.0012765,1.668,0.36,4.635116,0.026738,4260.0,24.6267,5.00683,0.601564,102.529,886.0,10.0,188.226,0.6715,4245.0,140.1,4.49,0.1,0.77,0.07,,,0.664,0.0807417,18,2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3694,1,False,False,False -203096531,3695.01,,3,4,3,3,1,4,4,96.2,124.9,317.0,4,0,0,PC,PC,13.3968,0.008,,1,spoc-s58-b0A,QLP,02:33:02.38,45:17:08.9,2.233,0.05,-2.712,0.055,2459882.550566,0.0016999794,0.604892500567246,6.479833e-05,1.73664703011598,0.13292804,7.577804,0.512801,6955.11621077864,472.19534,24.2195529875201,21.703043,23745.9171201788,3166.04429393243,15.634114,1431.98,73.105,6231.0,122.0,3.93,,1.97344994544983,,,,1.2,,"18,58",2021-06-23,2023-02-23,2023-02-25 12:10:55,found in faint-star QLP search; possible shallow secondary may be consistent with USP hot Jupiter,3695,1,False,False,False -202872757,3696.01,,3,4,3,3,3,4,4,20.5,51.8,129.04,1,0,1,PC,PC,12.4838,0.008,,1,spoc-s58-b0A,QLP,02:26:52.58,45:02:16.67,6.189,0.1,-6.484,0.079,2459885.105882,0.0031791914,4.4231557673524,0.0009102726,4.43104523371234,0.24411604,5.939586,0.285248,5455.62417249438,262.68878,14.0981616578402,1.3880342,1421.69163091867,1566.10581200055,17.700333,866.835,45.374,6120.1,137.5,3.96,0.09,1.86445999145508,0.134432,0.30868,0.0148969,1.16,0.163219,"18,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search,3696,1,False,False,False -470783598,3697.01,,3,5,5,3,3,4,4,93.1,205.4,317.0,1,2,1,PC,APC,11.7635,0.006,,1,spoc-s58-b0A,QLP,01:32:10.28,54:16:34.65,16.814,0.162,-5.48,0.115,2459884.185904,0.0011605854,9.94401621525708,0.000885804,2.70825204213034,0.10441849,16.16199,0.52321,14775.4980298176,481.77805,25.5043082115492,16.983202,166.497979847351,916.161403578372,40.528366,350.16,10.0015,5252.0,129.3,4.12,0.09,1.3652800321579,0.0852136,,,0.898,0.115505,"18,58",2021-06-23,2023-03-09,2023-03-24 12:12:10,found in faint-star QLP search; TFOP ST3/APC; V-shaped and large; possible secondary,3697,1,False,False,False -266425782,3698.01,,3,4,3,3,3,4,4,40.6,38.6,317.0,0,0,1,PC,PC,12.488,0.015,,1,spoc-s59-b0A,QLP,05:51:32.16,36:47:14.28,2.524,0.053,-14.11,0.042,2459911.943119,0.0022736478,2.34672628980868,0.0003721689,4.29235756076836,0.16205618,7.24674,0.257638,6652.26919169333,237.2649,15.2126883464034,0.95395523,3021.66821148985,1890.95608702936,14.805672,741.97,15.147,6121.8,106.5,4.0,0.08,1.7804399728775,0.0931558,0.0729025,0.0272167,1.16,0.155865,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search; two stars in pixel,3698,1,False,False,False -266401846,3699.01,,3,4,3,3,1,4,4,45.5,63.4,317.0,0,1,0,PC,PC,12.7775,0.027,,1,spoc-s59-b0A,QLP,04:03:44.98,50:14:10.34,2.378,0.046,-3.838,0.036,2459912.279232,0.0018578091,3.04239310132843,0.00038302035,2.74915045055526,0.13617158,11.684065,0.507927,10703.7246211932,467.70886,18.1780385340788,1.0154984,2668.91832661152,1833.17349994756,16.963757,770.947,15.8075,7046.0,223.5,4.19,0.09,1.65768003463745,0.0732965,,,1.56,0.265793,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,3699,1,False,False,False -417676091,3700.01,,3,4,3,3,3,4,4,26.2,82.2,104.36,2,0,1,PC,PC,12.8166,0.007,,1,spoc-s59-b0A,QLP,05:29:00.21,68:28:53.06,-2.47,0.019,1.887,0.023,2459910.76855,0.0020249642,4.41846657870744,0.0005987438,3.16609741714815,0.13933049,13.034982,0.488652,11933.8817966049,449.9641,12.4431788546458,0.7862534,526.283061329654,1221.58754927623,25.151104,600.806,5.86,6166.0,129.0,4.41,0.09,1.11998999118805,0.0528769,,,1.17,0.170811,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,3700,1,False,False,False -266213232,3701.01,,3,4,3,3,1,4,4,38.6,44.0,317.0,0,0,0,PC,PC,13.4313,0.029,,1,spoc-s59-b0A,QLP,04:01:27.1,49:15:54.9,1.666,0.049,-10.599,0.041,2459911.332792,0.0024191716,4.26057391571815,0.00071744085,2.58217064456032,0.17129934,22.011554,1.142622,20069.2666289109,1051.8398,15.3220567573389,0.9476163,359.350024071816,1110.45041089485,17.94201,514.526,7.0715,5457.0,122.0,4.35,,1.07589995861053,,,,0.95,,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,3701,1,False,False,False -385400633,3702.01,,3,4,3,3,3,4,4,,,77.06,4,0,2,PC,PC,12.4434,0.006,,1,spoc-s58-b0A,QLP,03:16:24.58,58:17:15.88,-3.756,2.235,-4.25,2.227,2459884.255743,0.0010712432,2.28442843966151,0.00016478909,1.43707165988006,0.064089626,9.940124,0.483553,9113.41170696544,445.27005,,,866.933826705345,1383.93673331867,21.282251,,,4930.6,220.1,,,,,,,,,"18,19,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search,3702,1,False,False,False -260962960,3703.01,,3,4,3,3,3,4,4,40.4,54.1,317.0,2,0,1,PC,PC,12.3653,0.017,,1,spoc-s59-b0A,QLP,05:04:22.18,44:20:02.79,1.876,0.08,-5.63,0.066,2459913.343661,0.00210831,3.88951365107528,0.0006323194,4.25658394566986,0.15835966,7.296948,0.262591,6698.20359134602,241.82588,19.3333467967514,1.1839451,2845.74220615078,1862.8103331804,18.639338,786.966,26.313,6530.0,157.0,3.87,0.09,2.23706007003784,0.11803,,,1.35,0.214604,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,3703,1,False,False,False -367616146,3704.01,,3,4,3,3,1,4,4,125.3,127.3,317.0,1,0,0,PC,PC,13.3088,0.013,,1,spoc-s59-b0A,QLP,04:48:59.33,44:25:09.95,13.283,0.057,-2.515,0.048,2459911.348741,0.0017997448,1.39448794885389,0.00015729578,1.81490616260618,0.1281982,13.918449,0.636765,12737.5470329717,586.3105,18.0998636366333,29.871353,1298.17249077797,1530.92124543087,19.410505,475.206,8.107,5483.9,145.7,4.45,,0.965058982372284,,0.189,0.135,0.96,,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search; 7 sigma odd-even in SPOC s59,3704,1,False,False,False -259506033,3705.01,,3,5,5,3,5,4,5,62.6,148.1,103.63,1,18,1,KP,KP,12.3824,0.006,,1,spoc-s59-b0A,QLP,05:01:55.24,50:07:52.24,-11.021,0.067,-21.44,0.063,2459911.415937,0.00089328527,1.90233868157732,0.00011125526,1.75244906723865,0.057015657,13.047139,0.338958,11944.9450808086,312.14285,12.392386247152,0.7913711,959.142188560197,1419.35325513279,30.346186,338.84,4.1,5464.2,124.5,4.4,0.09,1.0259200334549,0.0609447,0.38,0.061,0.955,0.120544,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search; HAT-P-61 b,3705,1,False,False,False -252430813,3706.01,,3,4,3,3,1,4,4,33.1,41.6,317.0,0,1,0,PC,PC,13.4223,0.05,,1,spoc-s59-b0A,QLP,05:07:18.05,59:43:46.38,-1.981,0.035,-6.361,0.036,2459910.872881,0.0028588765,4.37017951769724,0.00083902024,3.78088218822947,0.18684071,16.410926,0.666906,15001.3632154195,614.05493,15.452326479688,0.6119335,772.649390171755,1344.66891745765,20.9724,740.11,16.2615,6647.1,112.0,4.4,,1.23066997528076,,-0.286,0.107,1.4,,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,3706,1,False,False,False -366311757,3707.01,,3,4,3,3,1,4,4,23.1,24.8,317.0,0,0,0,PC,PC,13.2097,0.02,,1,qlp-s44-tois,QLP,05:03:48.57,31:39:28.35,0.203,0.058,-4.93,0.034,2459914.257661,0.0036777516,4.9107194,3.92e-05,4.445,0.334,8.98353,0.006592,8240.0,6.07132,14.9335,,838.921,1499.0,20.0,755.552,20.654,6302.0,122.0,4.09,,1.66,,,,1.24,,"19,43,44,59",2021-06-23,2023-03-16,2023-03-16 00:00:00,found in faint-star QLP search,3707,1,False,False,True -251652214,3708.01,,3,4,3,3,3,4,4,33.4,106.9,113.6,1,13,3,PC,PC,11.9786,0.006,,1,spoc-s58-b0A,QLP,03:04:37.31,59:21:24.93,22.477,0.042,-6.954,0.074,2459888.434751,0.0012176323,7.2734196620948,0.0009440451,4.47627515341476,0.1119231,14.52677,0.290368,13290.5395414967,267.40338,13.0803993223949,0.8216256,187.707059102199,944.038923376622,33.682674,313.908,3.178,5400.0,277.5,4.3,0.09,1.12948000431061,0.0642186,,,0.938,0.137379,"18,19,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search,3708,1,False,False,False -356322454,3709.01,,3,4,3,3,3,4,4,,,89.39,1,0,2,PC,PC,13.3033,0.009,,1,spoc-s59-b0A,QLP,04:31:10.88,59:09:34.43,2.89,2.197,-5.533,2.197,2459911.635904,0.0029748147,3.25098461053797,0.0006394532,2.29318845855869,0.14046411,11.847212,0.772648,10852.3692090375,711.3822,,,,,17.250647,,,,,,,,,,,,,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search; no stellar parameters,3709,1,False,False,False -174826170,3710.01,,3,4,3,3,1,4,4,26.4,27.7,317.0,0,0,0,PC,PC,13.3727,0.01,,1,qlp,QLP,06:03:14.07,41:38:58.06,-0.463,0.041,-7.643,0.034,2458838.338784,0.0034774,2.4802272,0.0008213,3.51,0.253,9.180604,0.009808,8420.0,9.03318,15.7506,,2003.04,1863.0,15.0,1137.19,29.575,6267.0,122.0,4.06,,1.72,,,,1.22,,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3710,1,False,False,False -355008856,3711.01,,3,4,3,3,1,4,4,30.8,35.8,317.0,1,0,0,PC,PC,13.3125,0.007,,1,qlp,QLP,05:08:39.3,66:31:34,-4.688,0.024,-7.986,0.028,2458836.56062,0.0034103,3.0108217,0.0008003,1.723,0.21,9.640582,0.017982,8840.0,16.562,18.2459,,273.596,1133.0,17.0,1158.64,27.88,5983.0,122.0,3.93,,1.89,,,,1.1,,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3711,1,False,False,False -354442783,3712.01,,3,4,3,3,1,4,4,30.4,74.0,55.88,2,0,0,PC,PC,13.4418,0.006,,1,qlp,QLP,05:56:58.49,36:21:29.21,13.03,0.052,-15.882,0.043,2458838.863688,0.0031868,1.52205,0.0003439,1.274,0.193,9.093011,0.028102,8340.0,25.8829,7.53174,0.842854,224.562,1078.0,12.0,360.509,4.3335,4654.3,230.0,,,0.8,0.08,-0.273,0.115,,,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3712,1,False,False,False -171160885,3713.01,,3,4,3,3,3,4,4,20.2,86.2,87.99,2,0,3,PC,PC,12.5021,0.006,,1,qlp-s44-tois,QLP,04:31:59.7,32:52:09.78,30.815,0.073,-11.286,0.047,2459918.987409,0.00143673,10.4401778,3.21e-05,2.783,0.468,15.439859,0.01937,14120.0,17.8405,11.2253,1.26344,27.7794,639.0,42.0,224.513,1.482,4571.1,148.6,4.4,0.12,0.89,0.09,0.406,0.146,0.722,0.0888869,"19,43,44,59",2021-06-23,2023-03-06,2023-03-06 00:00:00,found in faint-star QLP search,3713,1,False,False,True -155867025,3714.01,,3,5,5,3,4,4,4,99.9,253.0,92.76,5,2,0,PC,CP,13.1751,0.007,,1,spoc-s59-b0A,QLP,04:38:12.56,39:27:28.81,19.7,0.087,-70.764,0.049,2459911.46982,0.0004218115,2.1547472219598,6.124756e-05,1.65822380912763,0.028715586,55.179305,0.620486,49552.182343736,571.32574,11.6102486076215,0.36717308,53.5321998503549,689.879948423049,96.48067,112.71,0.5825,3538.0,157.0,4.73,0.01,0.508430004119873,0.0150691,,,0.506325,0.0202631,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,3714,1,False,False,False -354293303,3715.01,,3,4,3,3,1,4,4,53.2,67.0,317.0,2,0,0,PC,PC,12.9238,0.006,,1,spoc-s59-b0A,QLP,05:55:33.8,39:07:35.47,1.507,2.173,-6.689,2.174,2459912.37098,0.0025417607,2.47135428160864,0.0004766716,2.36498134998057,0.15161632,8.956286,0.618676,8215.11433394451,569.6593,21.0203111082595,0.97019506,1837.10714659513,1669.75737841772,13.153746,348.661,,6351.8,,,,2.04981994628906,,-0.0687475,0.0545383,,,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,3715,1,False,False,False -155351556,3716.01,,3,4,4,3,3,4,4,184.4,855.0,317.0,2,2,4,PC,PC,12.3186,0.006,,1,qlp,QLP,04:32:01.39,36:00:44.91,-0.466,2.233,-3.482,2.231,2458832.542018,0.0009343,6.0985856,0.0006831,6.711,0.262,32.153213,0.003328,29180.0,3.06544,,,486.603,1308.0,93.0,197.528,,4740.0,272.0,,,,,,,,,19,2021-06-23,2021-06-23,2023-03-19 00:00:00,found in faint-star QLP search,3716,1,False,False,False -348099535,3717.01,,3,4,4,3,3,4,4,12.2,49.7,77.98,0,1,1,PC,APC,11.5813,0.015,,1,qlp,QLP,04:39:51.83,46:40:10,0.712,0.096,0.494,0.087,2458823.030985,0.0066603,10.1182835,0.0055293,2.645,0.604,3.392792,0.014491,3120.0,13.3462,10.4862,0.880676,147.401,970.0,10.0,505.231,15.077,7253.0,164.5,4.13,0.09,1.82,0.09,,,1.63,0.280087,19,2021-06-23,2021-06-23,2023-06-18 12:02:56,found in faint-star QLP search,3717,1,False,False,False -417942201,3718.01,TIC 417942201.01,3,4,3,3,3,4,4,18.4,50.1,100.73,0,5,3,PC,PC,12.1578,0.011,,1,qlp,QLP,04:22:51.28,41:07:31.13,0.428,0.109,-0.373,0.06,2458834.649331,0.0049156,4.230596,0.0020719,4.263,0.526,4.100961,0.007861,3770.0,7.23992,12.1709,0.919293,1263.61,1661.0,14.0,767.821,30.4245,6455.1,100.8,3.94,0.1,2.02,0.12,0.0238195,0.0225942,1.31,0.219462,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3718,1,False,False,False -150074121,3719.01,,3,4,4,3,3,4,4,51.5,112.2,117.78,3,1,1,PC,PC,12.8297,0.021,,1,spoc-s59-b0A,QLP,04:13:08.8,54:34:19.54,8.47,0.036,-10.702,0.028,2459911.031517,0.00097241305,1.22222650241352,8.106388e-05,1.59526129513011,0.12201892,8.477268,0.292628,7777.45044162651,269.48367,13.3612411862254,1.2535077,6057.9111479352,2250.093029983,20.915714,583.038,8.4205,6629.1,124.4,4.24,0.1,1.47816002368927,0.0862311,0.035,0.075,1.39,0.224804,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,3719,1,False,False,True -347051112,3720.01,,3,4,3,3,3,4,4,63.2,84.9,317.0,1,24,1,PC,PC,11.4343,0.006,,1,spoc-s59-b0A,QLP,04:02:47.19,39:02:28.76,6.948,0.116,-6.337,0.074,2459913.32114,0.002721827,4.73782653288276,0.0010818044,1.74421362894157,0.20832393,3.623387,0.516046,3331.69997604846,475.18338,20.9386988976257,18.860388,3058.64513219274,1896.71475501152,12.03024,487.904,13.944,6533.0,181.7,3.72,0.09,2.64088010787964,0.126449,,,1.347,0.210971,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,3720,1,False,False,False -143687316,3721.01,,3,4,3,3,3,4,4,22.6,68.1,71.41,0,0,1,PC,PC,12.6975,0.006,,1,spoc-s59-b0A,QLP,05:22:26.78,40:25:33.57,3.046,0.048,-16.249,0.034,2459912.108394,0.0017727327,3.54148366065088,0.00048877194,3.10230716228042,0.16647792,9.042321,0.314453,8293.7013893967,289.58032,9.9539728957394,0.9635662,401.160326153142,1141.42989658621,21.220015,416.005,5.075,5151.0,168.9,4.3,0.09,1.09531998634338,0.0682236,,,0.87,0.11543,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,3721,1,False,False,False -346015394,3722.01,,3,4,4,3,1,4,4,73.2,153.0,117.99,5,2,0,PC,PC,13.186,0.018,,1,spoc-s59-b0A,QLP,03:21:17.96,63:43:57.08,,,,,2459910.394452,0.0011147114,1.07886492403373,7.404691e-05,1.98019430942862,0.078500666,35.532693,0.938982,32197.091618076,864.46094,18.4561493760291,0.5065747,2357.21897521491,1777.13218245761,22.308197,783.568,,4920.0,66.1,,,1.31,0.03,,,,,"18,19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search; TIC 648288748 very close neighbor with nearly identical Tmag,3722,1,False,False,False -3027681,3723.01,,3,4,3,3,1,4,4,30.0,36.4,317.0,1,0,0,PC,PC,13.3025,0.009,,1,qlp-s45-tois,QLP,05:28:51.62,30:13:38.9,1.154,0.057,-1.072,0.039,2459544.669393,0.0011574,3.9442027,1.24e-05,3.269,0.141,14.856334,0.005613,13590.0,5.16944,14.6517,,741.79,1453.0,39.0,787.446,20.9985,6518.1,61.2,4.39,,1.22,,-0.008,0.059,1.34,,"19,43,44,45",2021-06-23,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search,3723,1,False,False,True -143642240,3724.01,,3,4,3,3,3,4,4,,,120.45,0,3,1,PC,PC,11.7012,0.006,,1,qlp,QLP,05:21:42.21,36:16:28.68,6.777,0.075,-18.27,0.052,2458838.121011,0.0018673,0.0,0.0,6.092,1.006,9.574859,0.008624,8780.0,7.94329,13.5121,0.762777,549.591,1348.0,33.0,438.246,8.6785,6523.0,167.7,4.28,0.09,1.39,0.06,,,1.342,0.225289,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,single transit; found in faint-star QLP search,3724,1,False,True,False -339250695,3725.01,,5,5,5,5,5,5,5,17.2,58.6,81.08,1,0,0,PC,FP,13.135,0.011,,1,qlp,QLP,05:39:09.58,60:25:27.69,5.46,0.041,-13.931,0.041,2458837.162353,0.0053631,4.7287783,0.0021319,2.781,0.589,9.027321,0.027115,8280.0,24.9739,10.6995,,340.882,1197.0,13.0,587.219,10.8755,5947.0,122.0,4.36,,1.14,,,,1.09,,19,2021-06-23,2021-06-23,2023-06-28 12:03:00,found in faint-star QLP search,3725,1,False,False,False -122695048,3726.01,,3,4,3,3,1,4,4,55.1,82.4,317.0,0,0,0,PC,PC,13.0789,0.011,,1,spoc-s59-b0A,QLP,05:09:11.59,38:13:42.86,-14.073,0.042,-5.099,0.029,2459912.831385,0.0010678548,4.84168799954757,0.00043691945,2.68727171447218,0.07618145,29.011342,0.744918,26366.6015843623,685.8596,17.8590053950904,0.34998843,366.448002916703,1115.89373513414,31.929983,491.622,6.515,5925.1,131.8,4.43,,1.04742002487183,,-0.377,0.126,1.08,,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,3726,1,False,False,False -339207847,3727.01,,3,4,3,3,3,4,4,16.6,68.3,109.53,0,2,1,PC,PC,11.6439,0.01,,1,spoc-s59-b0A,QLP,05:37:55.13,64:32:43.64,0.403,0.04,1.74,0.041,2459919.63975,0.001966043,13.3988634051776,0.0027077086,4.39262233577521,0.16669339,7.211567,0.264687,6620.08825273137,243.75635,12.8019377380888,0.70575696,230.626373750355,993.909844367717,24.359953,461.037,8.8075,6475.0,134.9,4.23,0.09,1.46636998653412,0.0684875,,,1.32,0.209119,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,3727,1,False,False,False -116257066,3728.01,,5,5,5,5,5,5,5,,,317.0,0,2,2,PC,FP,11.1843,0.153,,1,qlp-s45-tois,QLP,05:40:36.26,34:47:47.99,1.163,0.086,-5.145,0.067,2459545.961039,0.0017094,6.5019596,3.76e-05,3.078,0.682,7.769029,0.02048,7130.0,18.863,,,9344.79,2739.0,34.0,1686.41,141.275,13253.0,143.0,,,,,,,,,"19,43,44,45",2021-06-23,2022-03-10,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; no stellar radius; stellar radius from Gaia DR2 is ~5.1 Rsun which would make candidate Rp~50 Re; very likely EB,3728,1,False,False,True -322160664,3729.01,,3,4,3,3,1,4,4,,,317.0,1,0,0,PC,PC,12.9676,0.006,,1,spoc-s59-b0A,QLP,05:46:22.62,59:31:18,-3.87,2.251,-1.887,2.252,2459914.949513,0.0012354377,8.17443821530939,0.00097445585,2.67214447470145,0.11000509,24.8513,1.185673,22628.9295033752,1091.449,,,158.396460367746,904.807345465152,29.345083,,,5051.3,431.6,,,,,,,,,"19,59",2021-06-23,2023-03-06,2023-03-06 00:00:00,V-shaped; found in faint-star QLP search; no stellar radius,3729,1,False,False,False -417844678,3730.01,,3,4,3,3,3,4,4,77.4,124.4,317.0,1,0,1,PC,PC,13.1507,0.006,,1,spoc-s59-b0A,QLP,04:16:55.42,36:55:26.8,-1.942,2.277,-2.508,2.276,2459910.634543,0.0036670575,2.54045286283263,0.00058305194,4.84341593262292,0.24514727,17.017142,1.12365,15551.1793793166,1034.3845,,,1605.17825525058,1614.3606627538,19.558947,960.168,,4837.0,78.3,,,,,-0.253055,0.077043,,,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search; pulsating host; no stellar radius; v-shaped,3730,1,False,False,False -115457180,3731.01,,3,4,3,3,3,4,4,32.8,115.7,78.68,0,1,2,PC,APC,11.0131,0.009,,1,qlp-s45-tois,QLP,05:35:33.87,31:09:52.37,5.4,3.7,-12.4,3.7,2459911.966229,0.0021599715,5.6619072,1.59e-05,2.149,0.39,4.733255,0.072486,4350.0,66.76,10.5138,,518.945,,48.0,300.021,,6294.0,,,,1.37,,,,,,"19,43,44,45,59",2021-06-23,2023-03-16,2023-03-16 00:00:00,found in faint-star QLP search; TFOP SM/APC following observation of a double or triple lined spectrum; possibly synchronized,3731,1,False,False,True -321894059,3732.01,,3,4,3,3,3,4,4,32.7,38.1,317.0,0,0,1,PC,PC,12.4096,0.007,,1,qlp-s19-faintsearch,QLP,05:38:27.32,57:01:53.13,3.465,0.053,-3.54,0.048,2458837.443197,0.0076882,2.9594651,0.0021098,3.84,0.927,2.674202,0.849886,2460.0,782.468,17.5182,7.27343,11520.9,2886.0,11.0,1033.68,29.015,6633.2,117.8,3.84,0.09,2.35,0.12,-0.281,0.051,1.39,0.227657,"19,59",2021-06-23,2023-03-16,2023-03-16 00:00:00,found in faint-star QLP search,3732,1,False,False,True -321436679,3733.01,,5,5,5,5,5,5,5,110.4,187.3,317.0,5,0,0,PC,FP,12.6396,0.013,,1,spoc-s59-b0A,QLP,05:32:33.76,57:37:23.13,0.18,0.035,-3.739,0.033,2459912.051628,0.0021284767,2.12693804970197,0.00031981023,3.00136930368913,0.1581922,8.475755,0.466602,7776.06784718016,429.66388,28.7582019720141,15.86888,6214.02829712325,2264.45167107899,18.191132,881.379,16.3,6361.4,114.5,3.83,0.09,2.28237009048462,0.11112,-0.152302,0.0259762,1.27,0.193918,"19,59",2021-06-23,2023-03-06,2023-06-20 12:02:47,found in faint-star QLP search,3733,1,False,False,False -105135774,3734.01,,3,4,3,3,1,4,4,47.1,46.1,317.0,0,0,0,PC,PC,13.3835,0.006,,1,spoc-s59-b0A,QLP,05:17:08.55,53:43:24.45,-5.374,2.344,-11.381,2.332,2459910.486192,0.002427424,2.14069541827484,0.00031513468,2.99043314874165,0.14444709,11.186064,0.509044,10249.8539419165,468.73724,,,1027.43529157035,1443.97066162281,15.777805,,,4880.9,76.5,,,,,0.029,0.133,,,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search; no stellar radius; variable host,3734,1,False,False,False -317252733,3735.01,TIC 317252733.01,3,4,3,3,3,4,4,56.8,189.1,86.07,2,14,1,PC,PC,11.3032,0.006,,1,spoc-s59-b0A,QLP,03:42:21.63,58:17:43.2,-7.014,0.039,-10.691,0.041,2459912.078486,0.00076804176,3.35268433312244,0.00016611945,3.95790576371341,0.05016674,12.480416,0.174049,11429.073893485,160.2925,11.1102206632244,1.1268069,643.214436153238,1284.42483811144,71.605354,278.597,2.086,6245.0,106.5,4.51,0.11,1.01575994491577,0.102229,0.037,0.017,1.211,0.172903,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,3735,1,False,False,False -98620619,3736.01,,3,4,3,3,1,4,4,35.7,48.5,317.0,1,0,0,PC,PC,13.3273,0.012,,1,spoc-s59-b0A,QLP,05:18:48.84,43:48:57.37,2.428,0.044,-1.95,0.034,2459910.632235,0.002675836,2.20887215719014,0.00039160394,3.17840306936998,0.18976916,11.075024,0.581852,10148.6256372412,535.7615,18.6398394497497,0.9643538,4483.08524990948,2086.95939330136,14.69688,1280.39,48.49,6876.0,122.0,4.1,,1.79471004009247,,,,1.49,,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,3736,1,False,False,True -96074951,3737.01,,3,4,3,3,3,4,4,52.6,58.0,317.0,1,3,1,PC,PC,11.4963,0.006,,1,qlp-s44-tois,QLP,04:49:42.52,35:18:05.97,-0.108,0.1,-1.196,0.055,2459912.415649,0.0009893118,5.5609997,1.43e-05,4.204,0.19,10.002131,0.00222,9170.0,2.04433,15.2954,0.892006,424.633,1264.0,29.0,324.005,4.981,5863.0,357.4,4.07,0.1,1.58,0.09,,,1.06,0.174382,"19,44,59",2021-06-23,2023-03-16,2023-03-16 00:00:00,found in faint-star QLP search,3737,1,False,False,False -312689217,3738.01,,3,4,3,3,3,4,4,36.3,49.3,317.0,2,2,1,PC,PC,12.1502,0.018,,1,spoc-s14-s60-b0A-PC,QLP,05:55:56.54,34:15:56.91,-0.447,0.089,-9.313,0.076,2459912.780723,0.0019815972,4.38475089699152,1.0735969e-05,4.60138670148299,0.059790656,9.593267,0.109867,8796.80473270999,101.18597,16.9084052654014,1.2973058,1666.41962504863,1629.54306544708,79.76538,715.956,32.655,6806.6,143.8,4.12,0.11,1.75576996803284,0.132995,-0.116271,0.0145516,1.47,0.245244,"19,43,44,45,59",2021-06-23,2023-05-26,2023-06-16 12:14:51,found in faint-star QLP search,3738,1,False,False,True -311441461,3739.01,,3,4,3,3,1,4,4,30.5,34.3,317.0,2,0,0,PC,PC,13.1072,0.007,,1,spoc-s59-b0A,QLP,05:46:32.62,51:14:33.36,2.007,0.071,-4.867,0.061,2459911.354239,0.0027325558,3.44715588468204,0.0006087896,3.74355768307061,0.1853471,10.36134,0.442228,9497.75563851286,407.22427,16.619457401554,0.85376054,1585.8100689675,1609.46872641029,17.343328,962.115,41.823,6083.0,122.0,4.05,,1.67827999591827,,,,1.14,,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,3739,1,False,False,False -87597187,3740.01,,5,5,5,5,5,5,5,99.1,108.4,317.0,0,0,0,PC,FA,12.878,0.019,,1,qlp,QLP,05:26:18.78,47:04:25.61,8.075,2.105,1.177,2.105,2458838.028588,0.0007675,2.0449361,0.0001222,2.732,0.087,32.555901,0.007194,29540.0,6.62592,21.3235,2.17037,1476.47,1726.0,82.0,,,6247.6,44.7,,,1.22,0.12,-0.096,0.043,,,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3740,1,False,False,False -701926762,3741.01,,3,4,3,3,1,4,4,124.0,151.7,317.0,4,0,0,PC,PC,13.1002,0.006,,1,qlp,QLP,05:26:18.78,47:04:25.61,-0.555,0.278,-0.381,0.225,2458838.028865,0.0007492,2.0449545,0.0001213,2.763,0.079,39.874994,0.007311,36060.0,6.73362,18.9624,0.874119,638.907,1400.0,83.0,452.15,42.478,5086.8,110.8,,,0.97,0.04,,,,,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3741,1,False,False,False -286696848,3742.01,,5,5,5,5,5,5,5,39.6,72.2,317.0,1,0,1,PC,FP,12.8814,0.008,,1,qlp,QLP,04:51:11.92,50:05:48.83,40.626,0.046,-29.917,0.044,2458835.622721,0.0013832,8.9279009,0.0009795,3.278,0.243,55.188236,0.041871,49560.0,38.564,15.0384,0.639276,17.5959,570.0,60.0,166.818,0.751,3916.0,157.0,4.59,0.01,0.67,0.02,,,0.641063,0.0202899,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3742,1,False,False,False -87091417,3743.01,,3,4,3,3,1,4,4,,,39.89,1,0,0,PC,PC,12.7508,0.007,,1,qlp,QLP,03:53:57.83,58:44:53.18,-1.38,2.211,3.165,2.21,2458840.233156,0.0046288,2.1186344,0.0009396,2.553,0.358,4.569695,0.011901,4200.0,10.9611,,,236.176,1092.0,12.0,,,3898.0,347.1,,,,,,,,,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3743,1,False,False,False -86075481,3744.01,,3,4,3,3,3,4,4,20.1,19.0,317.0,0,0,1,PC,PC,12.4084,0.017,,1,spoc-s59-b0A,QLP,04:01:05.72,67:30:27.49,1.643,0.025,-4.418,0.042,2459911.429374,0.005191954,3.90105086623934,0.0013503924,4.27438025665804,0.3956558,3.281222,0.254688,3017.5555288976,234.5487,15.3760904492135,2.3441672,3848.72472922966,2008.85671992389,9.604012,938.939,24.714,6257.0,157.3,3.65,0.08,2.74495005607605,0.13852,,,1.22,0.182492,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search; evolved host,3744,1,False,False,False -666567477,3745.01,,3,4,3,3,3,4,4,30.1,92.4,45.07,0,0,1,PC,PC,13.1464,0.012,,1,qlp,QLP,04:22:27.7,46:32:09.64,6.438,0.096,-19.836,0.066,2458838.180464,0.0052216,1.6883103,0.0007907,2.674,0.355,8.064323,0.018215,7400.0,16.7765,7.5805,,941.489,1543.0,11.0,343.885,5.783,4830.0,132.0,4.42,,0.9,,,,0.783,,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3745,1,False,False,False -284747017,3746.01,,5,5,5,5,5,5,5,9.8,60.4,10.44,0,0,0,PC,FP,11.7603,0.006,,1,qlp,QLP,05:12:09.64,34:45:00.12,19.705,0.077,-86.141,0.054,2458839.923433,0.005575,1.8012697,0.000928,3.182,0.426,1.956086,0.00395,1800.0,3.63809,3.19942,0.294622,1024.77,1576.0,12.0,145.759,0.864,4570.0,126.3,4.54,0.1,0.75,0.06,,,0.721,0.0901328,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3746,1,False,False,True -647636934,3747.01,,3,4,3,3,3,4,4,,,317.0,1,0,3,PC,PC,12.5715,0.023,,1,spoc-s59-b0A,QLP,03:55:56.08,57:50:02.84,-0.287,0.033,2.225,0.034,2459911.552961,0.0035180547,1.5503071689468,0.00034876473,2.32424945942824,0.16815567,5.007896,0.451261,4601.82131204441,415.5405,15.6256419921915,1.0999545,12362.1726360327,2689.32600019272,12.168515,937.29,21.296,7747.0,208.7,4.1,0.08,1.98567998409271,0.073329,,,1.83,0.29781,"19,59",2021-06-23,2023-03-16,2023-03-16 00:00:00,V-shaped; low SNR; found in faint-star QLP search,3747,1,False,False,False -82622707,3748.01,,3,4,3,3,1,4,4,34.2,33.5,317.0,4,0,0,PC,PC,13.2064,0.027,,1,spoc-s59-b0A,QLP,03:27:02.65,61:11:21.59,6.083,0.035,-4.266,0.035,2459911.985168,0.0024798384,2.37530092881222,0.00038258807,1.5021940437751,0.20190848,10.565386,0.772972,9683.8865565383,711.67993,14.7510708196037,1.5344483,1905.07244242956,1684.99114646169,12.88492,796.177,15.2345,6087.0,122.0,4.18,,1.43316996097565,,,,1.14,,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,3748,1,False,False,False -284174392,3749.01,,3,4,3,3,1,4,4,40.1,71.3,128.73,0,1,0,PC,PC,13.2474,0.012,,1,qlp-s44-tois,QLP,04:34:09.48,32:48:25.02,6.403,0.069,-11.73,0.047,2459911.346754,0.0026411146,1.8751894,8e-06,2.798,0.172,10.035005,0.004833,9200.0,4.45089,14.0349,,1205.51,1641.0,32.0,639.641,13.618,5410.0,122.0,4.06,,1.5,,,,0.94,,"19,43,44,59",2021-06-23,2023-03-16,2023-03-16 00:00:00,found in faint-star QLP search,3749,1,False,False,True -468777766,3750.01,,3,4,3,3,1,4,4,8.3,71.4,54.49,6,0,0,PC,PC,12.9865,0.007,,1,qlp,QLP,05:05:41.71,67:49:13.14,8.267,0.023,-20.118,0.034,2458826.425862,0.001625,12.4844641,0.0014759,2.827,0.499,18.759802,0.023167,17130.0,21.3373,8.49489,0.407563,7.652,463.0,27.0,156.504,0.568,3815.0,157.0,4.63,0.01,0.63,0.02,,,0.611615,0.0202846,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3750,1,False,False,False -284173938,3751.01,TIC 284173938.01,3,4,3,3,1,4,4,42.9,109.9,124.53,0,1,0,PC,PC,12.8826,0.01,,1,qlp-s44-tois,QLP,04:34:30.97,32:28:35.89,-1.022,0.091,-5.825,0.05,2459910.877562,0.0020387338,2.9157041,7.4e-06,3.375,0.13,13.800181,0.002302,12630.0,2.12034,13.8344,0.708049,1361.85,1692.0,49.0,613.765,11.9225,6400.6,119.9,4.39,0.09,1.2,0.06,0.158,0.079,1.28,0.201972,"19,43,44,59",2021-06-23,2023-03-16,2023-03-16 00:00:00,found in faint-star QLP search,3751,1,False,False,True -81597356,3752.01,,3,4,3,3,1,4,4,47.5,91.9,317.0,1,0,0,PC,PC,12.8963,0.006,,1,spoc-s59-b0A,QLP,03:07:14.84,64:23:43.3,,,,,2459911.590762,0.0043898374,2.80587703271421,0.0008632895,3.7749211332003,0.24203683,8.744508,0.796117,8021.64306559608,732.98175,,,659.06944968752,1292.26786501131,15.085438,1310.21,,4879.0,58.5,,,,,,,,,"18,19,58,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search; no stellar radius,3752,1,False,False,False -467783290,3753.01,,5,5,5,5,5,5,5,54.6,83.7,317.0,1,0,1,PC,FP,12.4332,0.008,,1,qlp-s44-tois,QLP,04:10:28.47,32:18:24.36,2.412,0.085,-5.995,0.036,2459521.512909,0.0010055,3.6502527,1.12e-05,2.506,0.376,9.815864,0.056758,9000.0,52.2744,21.323,1.87409,1462.84,1722.0,44.0,884.571,27.1445,6630.3,102.6,4.0,0.09,1.95,0.1,0.051122,0.0437287,1.39,0.222216,"19,43,44",2021-06-23,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search; odd-even in S43 and s44; likely EB,3753,1,False,False,True -81593515,3754.01,,3,4,3,3,3,4,4,16.5,36.0,94.9,0,3,3,PC,PC,11.8974,0.046,,1,qlp,QLP,03:07:44.21,62:23:58.85,6.068,0.046,-4.071,0.051,2458839.285714,0.0124352,2.5312823,0.0009511,4.428,2.154,1.434119,0.047269,1320.0,43.5352,11.7709,2.26008,9149.72,2724.0,11.0,812.367,23.513,6170.0,337.6,3.56,0.11,2.98,0.17,,,1.18,0.198548,"18,19",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3754,1,False,False,False -281196902,3755.01,,1,4,1,3,3,4,4,19.6,74.4,63.38,2,9,1,PC,PC,12.079,0.006,,1,spoc-s59-b0A,QLP,04:38:59.34,66:40:16.35,-11.435,0.029,11.512,0.054,2459914.24491,0.0014434466,5.5438144716175,0.00056867336,2.87148615242316,0.1388256,8.089251,0.295973,7422.78932460332,272.56448,9.27981027049632,0.83725756,238.510209510317,1002.2971444236,18.02103,322.356,2.953,5354.0,315.4,4.34,0.11,1.07606995105743,0.06451,,,0.926,0.156061,"19,59",2021-06-23,2023-03-06,2023-06-07 00:00:00,found in faint-star QLP search,3755,1,False,False,True -67300566,3756.01,,3,5,5,3,3,4,4,52.9,165.3,106.98,1,2,1,PC,APC,11.5552,0.006,,1,spoc-s59-b0A,QLP,05:34:36.72,36:56:22.66,-1.752,0.079,-14.559,0.059,2459912.449974,0.0009780568,4.42367318911426,0.00029572935,1.47114922330627,0.0549609,11.660391,0.502754,10682.1531771965,462.94644,12.626298557257,0.7520286,457.58944834739,1179.61082664939,25.42691,327.13,4.8355,6096.0,108.2,4.44,0.08,1.06163001060486,0.0532262,0.051,0.019,1.145,0.149481,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search; multiple stars in pixel,3756,1,False,False,False -445751830,3757.01,,3,5,5,3,4,4,4,59.3,159.2,104.29,7,0,0,CP,CP,13.1858,0.007,,1,spoc-s59-b0A,QLP,06:04:00.87,55:01:11.93,-9.036,0.057,-43.154,0.052,2459911.667339,0.0006712113,3.43919542546311,0.00015717234,1.66810964781806,0.04471736,36.337718,0.78512,32914.4087358382,722.86084,12.4377308863411,0.4391133,58.4322156632807,705.152156119977,42.049465,181.139,1.1865,3902.0,157.0,4.62,0.01,0.6372230052948,0.0189888,,,0.617459,0.0203105,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search; TOI-3757 b,3757,1,False,False,False -280254984,3758.01,,3,4,3,3,1,4,4,47.5,45.9,317.0,3,1,0,PC,PC,12.5489,0.015,,1,qlp-s52-tois,QLP,02:45:17.67,69:06:22.53,0.371,0.02,-6.774,0.027,2459736.687477,0.0017102,3.4177514,7.1e-06,3.415,0.155,11.0875,0.002688,10160.0,2.47595,15.3577,0.790461,734.21,1450.0,43.0,477.787,4.2165,5868.0,158.2,4.1,0.08,1.52,0.07,,,1.06,0.142387,"18,19,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; closer neighbor TIC 64929795 with Tmag ~16,3758,1,False,False,True -27244707,3759.01,,5,5,5,5,5,5,5,26.1,84.3,40.02,0,0,0,PC,FP,12.816,0.019,,1,qlp,QLP,04:22:27.7,46:32:09.65,-17.959,2.183,-9.363,2.182,2458838.180194,0.0055464,1.6882863,0.0008722,2.636,0.329,5.649644,0.014345,5190.0,13.212,,,,,10.0,420.132,,,,,,,,,,,,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,low SNR; found in faint-star QLP search,3759,1,False,False,False -440186528,3760.01,,3,5,5,3,1,4,4,,,123.61,2,0,0,PC,APC,13.0123,0.007,,1,qlp-s19-faintsearch,QLP,05:50:35.02,44:41:13.97,,,,,2458840.868452,0.0022909,0.5318566,8.45e-05,0.955,0.321,17.390888,1.453133,15890.0,1337.49,,,2027.68,1869.0,21.0,,,4852.0,249.9,,,,,,,,,"19,59",2021-06-23,2023-03-16,2023-03-16 00:00:00,V-shaped; found in faint-star QLP search,3760,1,False,False,False -275703182,3761.01,,3,4,3,3,1,4,4,16.8,74.1,317.0,1,0,0,PC,PC,12.8508,0.006,,1,qlp,QLP,03:14:40.79,66:55:14.79,17.163,0.018,-26.454,0.027,2458812.228444,0.0010311,25.8944827,0.0005207,2.136,0.162,30.39879,1.77587,27610.0,1634.3,17.6301,3.59975,2.69966,357.0,25.0,215.482,0.7835,4375.0,121.1,4.53,0.1,0.74,0.06,,,0.684,0.0821297,"18,19",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3761,1,False,False,False -9833284,3762.01,,3,4,3,3,4,4,4,21.1,72.9,37.61,1,2,3,PC,PC,10.6872,0.033,,1,qlp,QLP,04:41:18.15,55:55:59.72,1.596,0.06,-14.041,0.055,2458839.718032,0.0022744,0.6843601,0.0001334,0.762,0.186,0.782012,0.006437,720.0,5.92887,6.83269,0.751495,2045.89,1873.0,12.0,476.182,9.745,6779.0,102.4,3.93,0.1,2.17,0.15,-0.077396,0.00696562,1.45,0.246493,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3762,1,False,False,False -432114158,3763.01,,3,4,4,3,3,4,4,47.9,62.6,317.0,1,0,1,PC,PC,12.5159,0.018,,1,spoc-s59-b0A,QLP,03:51:47.44,47:08:59.62,-1.574,0.064,-0.937,0.047,2459910.768255,0.001348855,2.00426607061813,0.00018148088,3.2004170704794,0.09674073,9.489305,0.265918,8701.89050632639,244.88925,17.4679856375517,0.93619144,6165.18110662396,2259.98839612314,24.669828,855.352,21.954,7284.0,174.8,4.14,0.09,1.81490004062653,0.0837362,,,1.64,0.27439,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,3763,1,False,False,False -275702126,3764.01,,3,4,3,3,1,4,4,29.6,32.0,317.0,3,0,0,PC,PC,12.5944,0.023,,1,spoc-s59-b0A,QLP,03:15:09.89,66:35:51.57,-0.733,0.017,-6.036,0.029,2459911.460385,0.0038305798,6.57185338156307,0.001704039,2.4724721675758,0.32847497,9.279557,0.730157,8510.36805272771,672.27374,17.2374291748862,3.663783,150.793835794116,893.749160196655,11.58479,502.731,4.433,4773.0,122.0,,,1.89337003231049,,,,,,"18,19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,3764,1,False,False,False -432078760,3765.01,,3,4,3,3,3,4,4,57.4,85.7,317.0,3,3,3,PC,PC,11.7734,0.025,,1,spoc-s59-b0A,QLP,03:50:02.83,46:40:51.75,0.96,0.07,-0.742,0.05,2459913.047807,0.0008024096,3.14795319738652,0.00019238282,3.35025542777885,0.057989888,11.516016,0.195267,10550.5908783344,179.83112,17.745577015829,0.7244649,2765.48371975358,1849.53488044135,37.107487,620.461,12.775,7298.0,220.4,4.23,0.08,1.63943004608154,0.0635301,,,1.65,0.288671,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,3765,1,False,False,False -9830791,3766.01,,3,4,3,3,2,4,4,13.1,50.4,46.94,1,0,2,PC,PC,13.1021,0.006,,1,qlp,QLP,04:40:58.09,57:30:27.81,-1.667,0.035,-2.829,0.033,2458835.348947,0.0038818,3.5414573,0.0015465,2.83,0.425,6.457581,0.017612,5930.0,16.2215,7.74182,,333.084,1190.0,10.0,451.666,4.96,5244.0,122.0,4.4,,0.99,,,,0.896,,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,low SNR; found in faint-star QLP search,3766,1,False,False,False -274545328,3767.01,,3,4,3,3,1,4,4,65.6,68.7,317.0,0,0,0,PC,PC,13.4784,0.043,,1,spoc-s59-b0A,QLP,04:37:57.15,52:42:58.43,1.887,0.047,-3.2,0.037,2459912.434511,0.0028419008,2.39126902270307,0.00046785222,4.0523269800894,0.22431439,12.67898,0.945261,11609.8516700538,870.2387,22.6603859714365,1.6183239,2834.84664860154,1861.02472138807,11.560365,760.803,23.4885,5382.0,123.0,3.76,,2.09890007972717,,,,0.93,,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search; not quite synchronized,3767,1,False,False,False -268172361,3768.01,,3,4,3,3,3,4,4,33.6,46.1,317.0,2,0,1,PC,PC,12.9859,0.009,,1,spoc-s59-b0A,QLP,05:33:31.07,45:04:54.18,2.476,0.038,-1.383,0.03,2459911.275463,0.0018695588,2.1803153673561,0.0002644617,2.66293080752481,0.14304818,8.738361,0.299972,8016.02638723038,276.24652,18.3770153740332,1.2707536,6330.16224879315,2274.95840224393,22.006554,1309.84,41.05,7166.0,134.8,4.04,0.09,1.99329996109009,0.100849,,,1.6,0.275706,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,3768,1,False,False,False -428251130,3769.01,,3,4,3,3,3,4,4,38.1,125.8,127.66,3,1,4,PC,PC,10.5375,0.006,,1,qlp,QLP,03:39:17.77,52:49:28.73,-9.531,0.075,1.281,0.066,2458821.027915,0.001379,10.3380912,0.0008853,3.972,0.164,7.353566,0.002029,6750.0,1.86915,14.0125,0.645523,183.03,1024.0,42.0,276.632,2.659,6650.0,181.1,4.12,0.09,1.7,0.07,,,1.4,0.23079,"18,19",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3769,1,False,False,False -8621049,3770.01,,3,4,3,3,3,4,4,27.6,76.0,46.66,2,0,1,PC,PC,13.4706,0.006,,1,qlp,QLP,04:25:31.56,57:48:22.02,-3.925,0.04,-3.269,0.034,2458840.119677,0.0054225,0.9183768,0.000376,1.009,0.361,7.058465,0.119047,6480.0,109.64,7.7093,,660.579,1412.0,9.0,462.312,6.36,5176.0,122.0,4.47,,0.9,,,,0.877,,19,2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3770,1,False,False,False -3364732,3771.01,,3,4,3,3,1,4,4,35.7,46.6,317.0,2,0,0,PC,PC,13.1454,0.013,,1,spoc-s42-s46-b0A,QLP,05:30:14.46,31:10:54.28,2.837,0.047,-8.143,0.033,2459544.897158,0.0016495,3.62406826015901,0.00014226808,2.73460833689386,0.105243646,13.14602,0.42255,12034.9260760024,389.10684,16.6115467354254,0.39878014,1310.80534925138,1534.63218020003,27.060982,810.882,18.4005,6717.3,33.1,4.3,,1.39526998996735,,0.032,0.031,1.43,,"19,43,44,45",2021-06-23,2022-07-15,2022-12-14 12:09:24,found in faint-star QLP search; check neighboring TIC 3364733; possible odd-even,3771,1,False,False,True -426319499,3772.01,,3,4,3,3,3,4,4,15.1,64.5,42.31,0,0,1,PC,PC,12.6409,0.006,,1,spoc-s59-b0A,QLP,05:44:10.44,36:04:50.35,7.481,0.047,-17.234,0.04,2459912.316828,0.0017823199,4.16891445287283,0.00059127534,2.19051980441523,0.24199954,7.715906,0.44141,7081.42015206012,406.47116,7.31564260903081,1.3284963,201.890064835486,961.387533932556,14.92673,309.143,2.5255,5119.0,167.1,4.49,0.09,0.874118983745575,0.05399,,,0.861,0.110088,"19,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,3772,1,False,False,False -266772500,3773.01,,3,4,3,3,3,4,4,72.9,82.1,317.0,1,0,1,PC,PC,12.5517,0.006,,1,spoc-s59-b0A,QLP,04:05:59.27,51:43:27.56,10.045,0.043,-6.391,0.032,2459912.938613,0.001748727,2.95080974703101,0.00035781667,2.16997930036896,0.12058646,9.682432,0.789262,8878.20309941843,726.67267,19.4435142149778,3.9033902,1793.39678762718,1659.73535954635,17.066338,683.852,9.6975,5823.8,199.6,3.99,0.14,1.70744001865387,0.211269,0.145,0.189,1.049,0.142824,"19,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search; possibly synchronized; possible secondary,3773,1,False,False,False -704012376,3774.01,,3,4,3,3,1,4,4,69.7,62.0,317.0,1,0,0,PC,PC,13.3678,0.031,,1,qlp,QLP,06:20:38.54,43:09:55.1,7.925,0.732,0.82,0.738,2458865.318987,0.0026813,1.5970752,0.0003327,1.313,0.233,16.971727,3.72893,15510.0,3428.58,,,,,14.0,609.487,289.925,,,,,,,,,,,20,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3774,1,False,False,False -68850908,3775.01,,3,4,3,3,1,4,4,31.6,42.7,317.0,1,0,0,PC,PC,13.1657,0.007,,1,qlp-s47-tois,QLP,07:08:19.77,34:40:28,-2.022,0.046,-5.049,0.04,2459598.37887,0.000841,5.3868381,1.26e-05,3.225,0.153,20.539761,0.005502,18740.0,5.06728,15.8461,,255.316,1113.0,47.0,696.257,11.8145,5915.0,122.0,4.37,,1.13,,,,1.08,,"20,44,45,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search; large Rp,3775,1,False,False,True -68388114,3776.01,,3,5,5,3,1,4,4,115.3,265.7,105.89,2,0,0,PC,APC,12.9076,0.014,,1,qlp-s45-tois,QLP,06:51:18.63,33:32:44.08,-7.694,2.245,-14.871,2.251,2459548.392348,0.0009239,1.3312309,3.6e-06,1.396,0.121,7.7909,3.880333,7150.0,3567.54,12.5661,4.4707,1975.12,1857.0,26.0,,,5247.2,44.8,,,0.66,0.06,-0.072,0.043,,,"20,44,45",2021-06-23,2022-03-10,2023-01-23 12:02:46,V-shaped; found in faint-star QLP search,3776,1,False,False,True -802227190,3777.01,,3,4,3,3,1,4,4,13.4,45.9,66.49,1,0,0,PC,PC,13.1961,0.016,,1,qlp,QLP,08:27:16.49,50:45:28.15,-6.388,0.047,-3.121,0.04,2458867.780707,0.0043475,2.3365744,0.0009253,2.53,0.368,4.984094,0.012738,4580.0,11.7318,9.51324,,1516.77,1738.0,12.0,1028.89,34.1755,6545.0,139.0,4.27,,1.41,,,,1.35,,20,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3777,1,False,False,True -53307409,3778.01,,3,4,3,3,1,4,4,11.5,51.0,50.5,3,0,0,PC,PC,13.0221,0.009,,1,spoc-s14-s60-b0A-PC,QLP,07:47:04.08,56:47:00.37,-5.608,0.032,-1.574,0.026,2459596.981243,0.003146,5.60898858138467,3.9753715e-05,2.75147994871926,0.21970844,8.168113,0.393615,7494.88201616203,362.46667,8.11855892010077,0.8302718,173.825497336435,926.079178227261,16.296915,429.268,3.9375,5353.3,33.6,4.47,,0.927390992641449,,0.186,0.032,0.93,,"20,47,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,3778,1,False,False,True -742648307,3779.01,,3,4,3,3,1,4,4,31.9,152.9,43.05,3,0,0,PC,PC,13.4167,0.019,,1,spoc-s14-s60-b0A-PC,QLP,06:58:55.97,49:58:07.44,2.713,0.845,3.354,0.95,2459937.958248,0.0023175636,1.61805775970696,7.728931e-06,1.82049688543106,0.11863005,18.89767,1.402225,17254.7980934811,1290.6636,,,1373.08471446284,1552.54459167248,18.332323,366.254,126.379,,,,,,,,,,,"20,47,60",2021-06-23,2023-05-25,2023-06-16 12:14:51,found in faint-star QLP search; visual binary; large; v-shaped; nearby neighbor TIC 252910840; no stellar parameters,3779,1,False,False,True -468832904,3780.01,TIC 468832904.01,3,4,4,3,1,4,4,68.6,67.8,317.0,2,1,0,PC,PC,13.4718,0.009,,1,spoc-s14-s55-b0A-PC,QLP,06:10:26.33,71:24:43.68,-1.718,0.023,-1.962,0.03,2459911.210876,0.0009091235,1.40053399865022,2.725757e-06,2.15575584434511,0.045619536,23.21014,0.344643,21150.4535286348,317.37717,15.7147024130179,0.25871965,1816.66834077068,1665.09363818904,50.463406,610.587,7.5935,5765.0,122.0,4.4,,1.06059002876282,,,,1.03,,"19,20,40,53,59",2021-06-23,2023-03-06,2023-04-03 00:00:00,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3780,1,False,False,True -470974162,3781.01,,5,5,5,5,5,5,5,15.5,62.6,32.93,0,0,1,EB,FP,12.3794,0.006,,1,qlp-s47-tois,QLP,07:23:30.89,50:20:58.28,-11.496,0.035,-22.191,0.025,2459603.239373,0.0018286,3.2583798,1.24e-05,2.196,0.267,5.224082,0.005373,4800.0,4.94853,6.27906,0.489746,197.102,1043.0,30.0,270.518,1.725,4992.1,131.4,4.44,0.09,0.9,0.06,0.155,0.135,0.827,0.10103,"20,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search; slight depth aperture correlation in QLP; centroid offset on TIC 470974160 (Tmag ~15.334) in spoc-s47; retired as NEB,3781,1,False,False,True -396813816,3782.01,,3,5,5,3,3,4,4,14.3,53.0,112.98,0,4,1,PC,APC,12.0149,0.009,,1,qlp,QLP,06:34:09.28,66:38:04.79,-0.026,0.031,4.019,0.038,2458864.19712,0.0021797,10.3918699,0.0008908,1.167,0.283,5.224082,0.015035,4800.0,13.8478,13.0244,0.93108,20.6991,594.0,17.0,707.148,14.087,6683.0,129.9,4.13,0.09,1.69,0.08,,,1.41,0.224297,"19,20",2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3782,1,False,False,False -459755750,3783.01,,3,4,3,3,3,4,4,15.4,48.4,110.83,1,0,1,PC,PC,12.8426,0.008,,1,qlp-s47-tois,QLP,08:54:49.36,55:08:02.86,-4.157,0.036,-5.871,0.028,2459604.198616,0.0020827,6.1080224,2.86e-05,4.68,0.2,8.545715,0.004215,7840.0,3.88211,12.8902,0.695123,544.723,1345.0,30.0,854.987,16.3255,6204.0,125.9,4.17,0.08,1.48,0.07,,,1.19,0.168927,"20,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search,3783,1,False,False,True -339503267,3784.01,,3,4,3,3,1,4,4,16.3,18.2,317.0,0,0,0,PC,PC,13.2906,0.007,,1,spoc-s59-b0A,QLP,06:11:23.12,65:45:44.55,1.679,0.081,-5.707,0.109,2459912.023829,0.0052888053,4.93997977417073,0.0018116779,3.27864795682467,0.5393514,4.451019,0.516649,4091.14834356387,475.73822,19.5185921761971,5.0714827,2577.18299743112,1817.21395788868,7.4319644,1702.46,249.255,5646.0,122.0,3.48,,3.02186989784241,,,,1.0,,"19,20,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,3784,1,False,False,False -458419328,3785.01,,3,5,5,3,4,4,4,10.8,84.9,20.04,2,0,1,PC,CP,12.4963,0.007,,1,qlp-s47-tois,QLP,08:43:36.05,63:04:41.08,-42.903,0.04,-17.033,0.049,2459604.77275,0.0011793,4.6747218,1.12e-05,1.61,0.15,8.93974,0.008169,8200.0,7.52428,4.73219,0.206202,11.5347,513.0,20.0,79.7634,0.22365,3502.0,157.0,4.74,0.01,0.5,0.01,,,0.496104,0.0203333,"20,47",2021-06-23,2022-06-28,2023-04-11 12:03:29,found in faint-star QLP search,3785,1,False,False,True -321250206,3786.01,,3,4,3,3,3,4,4,48.8,46.3,317.0,1,2,1,PC,PC,12.3433,0.007,,1,qlp,QLP,06:20:29.07,58:05:39.1,7.746,0.055,-12.047,0.05,2458865.144467,0.0033983,2.1040634,0.0005391,1.38,0.313,3.479927,1.568708,3200.0,1443.79,14.9729,6.49591,1713.13,1792.0,12.0,632.756,18.3765,5973.3,117.6,4.1,0.08,1.54,0.08,0.031,0.067,1.1,0.138609,20,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3786,1,False,False,False -457104362,3787.01,TIC 457104362.01,3,4,3,3,1,4,4,27.5,29.5,317.0,0,1,0,PC,PC,13.398,0.008,,1,spoc-s14-s60-b0A-PC,QLP,08:52:17.42,61:58:19.65,4.12,0.031,-19.734,0.031,2459604.335042,0.0014782,4.81631621077235,2.0960075e-05,3.58307788833668,0.122569986,17.301601,0.389145,15809.0676842909,358.35138,14.7517560269581,0.51857543,330.369815172173,1087.35120391589,42.313972,620.413,7.878,5290.0,122.0,4.26,,1.17429995536804,,,,0.91,,"20,47,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3787,1,False,False,True -312811620,3788.01,,3,4,3,3,3,4,4,50.7,55.1,317.0,3,5,1,PC,PC,11.3321,0.007,,1,qlp,QLP,06:17:43.82,54:22:52.7,11.45,0.061,-11.436,0.065,2458863.845509,0.0010921,3.0923729,0.0003416,3.061,0.492,7.845579,0.011201,7200.0,10.3167,15.1739,1.07166,1605.66,1763.0,62.0,516.643,13.352,6510.2,150.8,4.07,0.1,1.76,0.1,-0.0290486,0.0158244,1.34,0.209588,20,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3788,1,False,False,False -453410966,3789.01,,3,4,4,3,1,4,4,22.7,77.6,77.23,2,0,0,PC,PC,13.1351,0.009,,1,spoc-s14-s60-b0A-PC,QLP,07:40:20.25,49:04:42.99,-1.246,0.035,-15.766,0.027,2459602.973528,0.0010853,4.12000399799647,1.2851746e-05,1.9086349021183,0.10831241,14.574885,0.476502,13334.2651359377,438.7785,10.4236143315372,0.6563313,270.687611219245,1034.51512463981,26.319288,475.616,4.844,5497.6,32.2,4.51,,0.902841985225677,,0.382946,0.0309026,0.96,,"20,47,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,3789,1,False,False,True -29117085,3790.01,,5,5,5,5,5,5,5,28.3,149.0,94.74,0,2,1,PC,FP,11.2119,0.006,,1,qlp,QLP,07:53:42.41,46:28:18.95,-15.033,0.072,-17.056,0.064,2458846.993395,0.0008768,13.247777,0.000244,3.301,0.217,14.669232,0.025898,13420.0,23.8528,11.7716,0.754998,74.203,817.0,48.0,188.294,1.873,5373.8,107.5,4.51,0.08,0.89,0.04,-0.0224923,0.0124495,0.931,0.116936,20,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3790,1,False,False,True -400432230,3791.01,TIC 400432230.01,3,4,4,3,1,4,4,46.3,130.0,124.77,2,31,0,PC,PC,11.5787,0.008,,1,qlp-s50-tois,QLP,19:41:33.05,56:13:04.1,-4.611,0.034,-14.841,0.035,2459827.042109,0.0008477215,3.1833919,2.3e-06,2.017,0.088,10.74752,0.003105,9850.0,2.85947,13.8362,0.682889,430.956,1269.0,129.0,476.831,3.8595,6405.0,201.7,4.27,0.09,1.39,0.06,,,1.31,0.208233,"14,15,16,20,40,41,50,54,55,56",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search,3791,1,False,False,True -453348525,3792.01,,3,4,3,3,3,4,4,16.7,58.9,34.64,0,0,1,PC,PC,12.7859,0.009,,1,qlp,QLP,06:50:23.87,48:56:41.93,-4.148,0.107,-7.422,0.099,2458867.809578,0.0043767,0.7729066,0.0002411,1.109,0.239,3.098766,0.017546,2850.0,16.1603,6.51984,0.67556,2135.77,1893.0,11.0,640.574,27.8615,6125.0,131.8,4.35,0.09,1.19,0.08,,,1.16,0.166856,20,2021-06-23,2021-06-23,2023-02-19 00:00:00,found in faint-star QLP search,3792,1,False,False,False -29105766,3793.01,,3,4,3,3,1,4,4,41.0,58.2,317.0,3,0,0,PC,PC,13.1701,0.01,,1,spoc-s14-s60-b0A-PC,QLP,07:52:39.58,42:47:11.39,-2.739,0.044,-5.616,0.032,2459606.578007,0.001155,3.25513153030681,1.294869e-05,2.34407348914156,0.075017855,15.7421,0.482434,14394.405536406,444.23987,17.8868067254314,0.3908472,1237.42491883369,1512.68835607787,33.467148,930.864,25.6305,6433.0,122.0,4.3,,1.33299005031586,,,,1.3,,"20,47,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; v-shaped,3793,1,False,False,True -416539317,3794.01,,5,5,5,5,5,5,5,3.7,24.2,15.07,8,2,3,PC,FA,12.4091,0.009,,1,qlp-s47-tois,QLP,08:27:23.94,64:45:54.91,0.908,0.033,-37.02,0.045,2459604.715425,0.0131178,2.2019606,4.68e-05,4.326,0.856,1.042807,0.005789,960.0,5.33176,3.97533,0.397716,4911.26,2332.0,8.0,645.718,12.776,6269.0,130.6,4.26,0.09,1.35,0.07,,,1.22,0.178969,"20,47",2021-06-23,2022-06-28,2023-06-05 12:03:22,low SNR; found in faint-star QLP search,3794,1,False,False,True -253030300,3795.01,,3,4,3,3,3,4,4,13.3,61.5,34.25,1,2,1,PC,PC,12.2361,0.008,,1,qlp,QLP,06:34:55.79,49:40:35.67,-1.05,0.062,-1.028,0.059,2458865.943138,0.0044721,2.8300213,0.0009204,1.646,0.556,4.122758,0.030253,3790.0,27.864,6.47417,0.65248,462.811,1292.0,12.0,439.841,8.537,6205.0,109.5,4.51,0.08,1.01,0.04,-0.059,0.042,1.19,0.169474,20,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3795,1,False,False,False -393251073,3796.01,,5,5,5,5,5,5,5,13.8,91.8,65.34,1,3,1,PC,FP,11.6387,0.006,,1,qlp,QLP,07:42:02.13,61:34:28.77,-9.876,0.037,-34.38,0.035,2458849.115258,0.0015202,14.9857436,0.0009352,5.8,0.529,10.89008,0.008801,9980.0,8.10638,9.39924,0.614637,155.741,984.0,49.0,216.16,1.317,5279.0,129.2,4.52,0.09,0.86,0.05,,,0.906,0.114988,20,2021-06-23,2021-06-23,2022-12-14 12:09:24,period may be half; found in faint-star QLP search,3796,1,False,False,True -252912175,3797.01,,3,4,3,3,3,4,4,12.2,62.6,88.4,2,2,2,PC,PC,11.7983,0.007,,1,qlp-s47-tois,QLP,06:59:21.82,48:18:10.37,-7.83,0.063,-6.964,0.059,2459586.242515,0.0013793,17.6229161,5.06e-05,2.976,0.253,9.191553,0.006112,8430.0,5.62915,11.2819,0.69765,23.6888,614.0,41.0,400.069,6.804,5973.8,142.2,4.31,0.09,1.21,0.07,0.207091,0.00936478,1.1,0.143633,"20,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,period may be half; found in faint-star QLP search; weak centroid offset,3797,1,False,False,True -22683951,3798.01,,3,4,3,3,3,4,4,37.1,98.1,101.27,2,0,1,PC,PC,12.7739,0.007,,1,spoc-s14-s60-b0A-PC,QLP,08:16:27.58,47:01:19.16,6.239,0.035,-27.378,0.023,2459604.436695,0.0011554,2.67974356353258,1.0089056e-05,2.02926721607661,0.07561851,10.756209,0.380075,9857.92338306414,350.00034,12.2250401821279,0.7423229,709.984959733835,1316.53387069643,31.311481,488.429,5.18,5573.0,131.6,4.37,0.08,1.07552003860474,0.0583945,,,0.98,0.130499,"20,47,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,3798,1,False,False,True -373614579,3799.01,,3,4,3,3,1,4,4,36.3,58.4,317.0,2,0,0,PC,PC,12.7085,0.007,,1,spoc-s14-s60-b0A-PC,QLP,07:36:45.25,44:03:05.53,18.799,0.035,-29.059,0.024,2459605.774678,0.0005362,8.20648666119672,1.6614476e-05,2.96785421218809,0.046809055,32.266427,0.37561,29281.2259568654,345.89005,14.6693181457277,0.8646077,77.97252766143,757.888213105354,92.820114,328.06,2.192,5236.1,124.7,4.55,0.09,0.8245689868927,0.0476683,-0.25839,0.0139051,0.89,0.111256,"20,47,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,3799,1,False,False,True -21291176,3800.01,,3,4,3,3,3,4,4,9.6,49.6,28.12,0,1,1,PC,PC,11.7248,0.007,,1,qlp,QLP,06:53:06.26,39:07:56.2,1.676,0.081,-1.262,0.074,2458866.227324,0.0051757,1.6667559,0.000626,2.35,0.384,1.87995,0.005108,1730.0,4.70509,5.73913,0.429375,3970.53,2211.0,13.0,598.894,17.984,7189.4,107.2,4.35,0.09,1.4,0.07,-0.214,0.032,1.61,0.265924,20,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3800,1,False,False,False -373612558,3801.01,,3,4,3,3,1,4,4,25.7,81.7,110.01,2,0,0,PC,PC,12.9395,0.007,,1,spoc-s14-s60-b0A-PC,QLP,07:36:02.59,47:15:29.27,-5.563,0.04,-14.066,0.026,2459606.426277,0.001438,5.86779214033263,2.4075267e-05,3.40051198921372,0.09948347,15.399689,0.318593,14083.5242427624,293.39172,12.8354727133588,0.713846,233.717924236956,997.224074959454,46.6177,488.069,6.459,5565.6,106.7,4.39,0.08,1.04332995414734,0.0518216,0.323563,0.0286259,0.98,0.122445,"20,47,60",2021-06-23,2023-05-25,2023-06-16 12:14:51,found in faint-star QLP search; two stars in pixel,3801,1,False,False,True -190250689,3802.01,,3,4,4,3,3,4,4,49.1,102.0,110.91,2,0,1,PC,PC,12.5548,0.008,,1,qlp,QLP,06:35:07.58,45:01:39.65,25.651,0.045,-6.665,0.043,2458866.749372,0.0015738,1.4658218,0.0001651,1.294,0.112,9.487235,0.008384,8700.0,7.72178,12.9122,0.819436,491.415,1311.0,29.0,550.393,11.364,5586.0,129.2,4.17,0.08,1.36,0.07,,,0.99,0.127467,20,2021-06-23,2021-06-23,2023-02-27 00:00:00,V-shaped; found in faint-star QLP search,3802,1,False,False,False -353498819,3803.01,,3,4,3,3,3,4,4,21.1,56.2,115.77,2,2,1,PC,PC,12.1957,0.007,,1,qlp-s47-tois,QLP,07:08:41.72,38:10:51.82,2.058,0.072,-8.012,0.067,2459603.238059,0.001792,2.5492773,8.9e-06,2.301,0.226,4.318952,0.004176,3970.0,3.84637,13.2377,0.858582,1223.62,1647.0,25.0,1039.33,40.895,6862.4,119.6,3.98,0.09,2.07,0.11,0.093,0.066,1.49,0.254943,"20,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search,3803,1,False,False,True -312991501,3804.01,,3,4,3,3,1,4,4,40.6,44.5,317.0,4,0,0,PC,PC,13.1225,0.007,,1,spoc-s14-s60-b0A-PC,QLP,08:58:37.28,74:27:33.06,-4.858,0.038,-1.266,0.042,2459747.058296,0.000796382,3.29056832443105,1.8977984e-05,2.78992664980427,0.07953478,19.809318,0.461983,18079.6226419648,425.41132,14.6087970829959,0.3460885,560.331657812038,1240.88358511745,40.06762,601.602,9.9105,5689.0,122.0,4.39,,1.0620299577713,,,,1.01,,"14,20,40,47,53,60",2021-06-23,2023-05-25,2023-06-16 12:14:51,found in faint-star QLP search,3804,1,False,False,True -189852832,3805.01,,3,4,3,3,3,4,4,33.4,94.5,100.3,0,0,1,PC,PC,12.7251,0.009,,1,qlp,QLP,06:19:35.92,42:18:48.94,11.954,0.04,-4.229,0.034,2458860.700619,0.0020474,3.8960447,0.000934,2.15,0.186,14.581195,0.017071,13340.0,15.7225,12.1478,0.835696,151.232,976.0,25.0,406.497,4.2145,5295.0,131.8,4.38,0.09,1.02,0.06,,,0.91,0.118697,20,2021-06-23,2021-06-23,2023-04-03 00:00:00,found in faint-star QLP search,3805,1,False,False,False -16076354,3806.01,,3,5,5,3,3,4,4,27.6,71.2,128.99,1,1,1,PC,APC,11.9181,0.008,,1,qlp-s47-tois,QLP,07:34:41.99,38:59:11.49,0.172,0.069,-2.636,0.044,2459601.456963,0.0013888,2.9859012,7.5e-06,1.205,0.331,4.515181,0.013634,4150.0,12.5577,14.0883,1.12879,339.369,1195.0,22.0,806.325,28.6895,6709.5,140.9,4.02,0.1,1.94,0.12,-0.128763,0.00945373,1.43,0.243227,"20,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search,3806,1,False,False,True -289661991,3807.01,,3,4,4,3,3,4,4,27.7,82.4,73.04,5,3,1,PC,PC,11.5817,0.008,,1,qlp-s47-tois,QLP,09:16:27.02,69:04:26.86,-0.55,0.032,-1.354,0.037,2459937.078969,0.0023032378,2.8989758,5e-06,1.307,0.371,4.002879,0.019996,3680.0,18.4165,10.0928,0.857036,401.9,1247.0,39.0,421.745,4.611,5908.0,133.4,4.13,0.08,1.47,0.07,,,1.07,0.137427,"14,20,40,47,60",2021-06-23,2023-05-25,2023-05-25 00:00:00,found in faint-star QLP search; v-shaped,3807,1,False,False,True -138497780,3808.01,,3,4,3,3,3,4,4,87.8,146.0,317.0,4,1,1,PC,PC,12.2337,0.021,,1,spoc-s14-s60-b0A-PC,QLP,06:25:00.08,33:01:55.68,2.306,0.072,-5.376,0.06,2459549.76003,0.0007071,3.67548152883421,9.702745e-06,2.30057746692248,0.068785824,10.739991,0.27248,9843.13301154031,250.93195,22.3487035602655,10.045133,1252.57734446821,1517.29800794847,54.45087,595.137,15.5305,6305.0,178.2,4.18,0.09,1.49021005630493,0.0791005,,,1.24,0.187775,"20,43,44,45,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; ~4 sigma odd-even in spoc-s14-s60 multisector,3808,1,False,False,True -252876117,3809.01,,3,4,4,3,1,4,4,48.4,128.5,121.46,3,0,0,PC,PC,13.0456,0.008,,1,qlp,QLP,06:41:09.3,48:51:40.96,-7.578,0.043,-21.135,0.044,2458867.346917,0.0010798,3.6346303,0.0003175,2.728,0.184,27.733475,0.01514,25220.0,13.9448,13.6402,,215.456,1067.0,59.0,359.948,3.65,5058.0,123.0,4.51,,0.85,,,,0.84,,20,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3809,1,False,False,False -239136269,3810.01,,5,5,5,5,5,5,5,15.9,65.0,80.26,1,0,1,EB,FP,13.286,0.008,,1,spoc-s14-s50-b0A-PC,QLP,07:29:18.13,33:35:28.9,-0.852,0.063,-2.591,0.058,2459501.092732,0.0005550786,1.05909936358153,1.2269761e-05,0.985340200190892,0.16574793,5.611771,0.255285,5155.29731079352,235.09889,10.6616564571439,1.6141707,18843.6190458796,2988.20803018142,19.535135,1696.26,114.425,9332.0,126.0,4.5,,1.42848002910614,,,,2.37,,"20,44,45,46,47",2021-06-23,2022-12-12,2022-12-16 12:08:26,no offset in s44/45/46; offset in spoc-s47 likely due to scattered light; low MES; found in faint-star QLP search; 10-sigma odd-even in spoc-s42-s46-b0A; retired as EB,3810,1,False,False,True -138475192,3811.01,,3,4,3,3,3,4,4,23.1,83.1,46.61,0,2,2,PC,PC,11.4102,0.006,,1,qlp-s52-tois,QLP,06:22:11.82,83:51:40.3,32.72,0.039,-23.382,0.046,2459912.976233,0.001599108,2.9594596,5.3e-06,0.706,0.242,2.325965,0.028563,2140.0,26.307,7.75397,0.77082,94.5522,868.0,21.0,294.652,2.002,5560.0,123.6,4.28,0.08,1.19,0.06,,,0.98,0.123858,"19,20,40,47,52,59",2021-06-23,2023-03-16,2023-04-16 00:00:00,apparent odd-even and v-shaped; found in faint-star QLP search,3811,1,False,False,True -239134248,3812.01,,3,4,3,3,3,4,4,42.7,129.5,100.4,5,2,2,PC,PC,12.4679,0.006,,1,spoc-s14-s60-b0A-PC,QLP,07:28:46.65,34:11:07.28,-0.545,0.07,-6.959,0.065,2459602.230996,0.0003665,3.88500005073057,5.297377e-06,2.88154050576195,0.0334155,19.834285,0.158508,18102.2024029998,145.98099,12.1627173650778,0.6193916,268.03769096649,1031.97390719544,130.12819,339.069,5.553,5382.2,108.6,4.51,0.08,0.893149971961975,0.0444924,0.248819,0.0518549,0.934,0.114513,"20,44,45,46,47,60",2021-06-23,2023-05-25,2023-06-16 12:14:51,found in faint-star QLP search,3812,1,False,False,True -4605846,3813.01,,3,4,4,3,1,4,4,22.3,62.6,125.02,2,0,0,PC,PC,13.4461,0.008,,1,spoc-s14-s60-b0A-PC,QLP,07:52:14.41,31:38:48.98,0.134,0.038,-2.917,0.024,2459582.747868,0.002559827,3.71783934158412,1.6945332e-05,3.28189209508801,0.090654455,12.394791,0.274133,11351.1087066193,252.45364,13.837604574526,0.2834892,837.708404559925,1372.12275843263,39.64363,940.296,22.102,6268.0,122.0,4.34,,1.23585999011993,,,,1.22,,"20,44,45,46,47,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,3813,1,False,False,True -155873992,3814.01,TIC 155873992.01,3,4,3,3,3,4,4,27.6,73.7,127.58,3,1,1,PC,PC,12.4988,0.008,,1,spoc-s14-s60-b0A-PC,QLP,09:19:21.23,66:48:11.78,-15.112,0.024,-22.286,0.033,2459606.149028,0.0012061,4.95131062407773,1.503676e-05,4.17042624577138,0.08379923,9.403669,0.165437,8623.70015283223,152.36186,14.0040076898559,0.71640325,663.758062552934,1294.56005393325,49.04616,595.141,7.743,5914.0,126.5,4.16,0.08,1.43624997138977,0.0691508,,,1.08,0.131638,"14,20,40,41,47,60",2021-06-23,2023-05-25,2023-06-16 12:14:51,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3814,1,False,False,True -149995163,3815.01,,3,4,3,3,3,4,4,49.4,71.9,317.0,1,0,1,PC,PC,12.3972,0.008,,1,qlp-s47-tois,QLP,07:17:26.05,49:50:24.3,-7.801,0.056,-9.077,0.039,2459604.923601,0.0009296,4.8709815,1.08e-05,4.437,0.174,13.52531,0.002233,12380.0,2.05649,21.2108,1.15046,611.598,1385.0,70.0,790.338,23.8535,5908.0,130.9,3.92,0.08,1.87,0.1,,,1.07,0.134629,"20,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search; Rp potentially too large for insolation,3815,1,False,False,True -102848207,3816.01,,3,4,3,3,1,4,4,26.8,72.5,73.46,1,0,0,PC,PC,13.4768,0.007,,1,qlp-s47-tois,QLP,08:35:26.79,67:07:42.13,1.366,0.023,-6.584,0.034,2459744.766228,0.0034205783,1.0358225,3.8e-06,1.191,0.348,7.20054,0.050809,6610.0,46.7955,10.1292,,1819.34,1819.0,19.0,868.355,16.097,6180.0,122.0,4.4,,1.14,,,,1.18,,"20,47,53",2021-06-23,2022-11-18,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; two stars in pixel (target and TIC 802543384 Tmag~20),3816,1,False,False,True -99572130,3817.01,,3,4,3,3,1,4,4,19.0,24.8,317.0,0,0,0,PC,PC,13.147,0.009,,1,spoc-s14-s60-b0A-PC,QLP,07:10:01.13,70:58:34.96,-1.076,0.022,-2.102,0.028,2459603.782407,0.0032701,4.85048185868153,5.0810577e-05,4.99570582652163,0.21481718,7.465435,0.269652,6852.33504687465,248.3279,17.4413085920206,0.8009589,1660.3166024422,1628.04902010574,21.261015,1386.95,32.895,6313.0,122.0,3.9,,2.05899000167847,,,,1.24,,"20,40,47,53,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,3817,1,False,False,True -99097200,3818.01,,3,4,4,3,1,4,4,25.6,63.0,125.28,2,0,0,PC,PC,13.2237,0.007,,1,spoc-s14-s60-b0A-PC,QLP,08:06:22.05,42:11:32.89,-4.286,0.038,-4.391,0.027,2459601.148849,0.002034,3.23715013580644,1.6084563e-05,3.35113154798797,0.12712586,11.072894,0.314357,10146.6837063159,289.49194,13.8548637586699,0.53713727,984.904125433855,1428.78946292106,27.33125,814.386,15.9915,5800.1,112.8,4.19,,1.35301995277405,,0.251884,0.107907,1.04,,"20,47,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,3818,1,False,False,True -95660472,3819.01,,3,4,3,3,1,4,4,30.1,79.0,105.07,5,8,0,PC,PC,11.9824,0.009,,1,qlp-s47-tois,QLP,08:07:27.18,29:23:19.12,-6.039,0.069,-22.792,0.051,2459603.316867,0.0006122,3.2443051,5.5e-06,2.325,0.102,6.479426,0.001298,5950.0,1.1955,12.5042,0.669023,423.041,1263.0,44.0,558.141,12.759,5999.0,132.1,4.1,0.08,1.56,0.08,,,1.11,0.141519,"20,44,45,46,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search; v-shaped,3819,1,False,False,True -95234976,3820.01,,3,4,3,3,3,4,4,43.7,62.8,317.0,1,2,1,PC,PC,11.5562,0.006,,1,qlp-s47-tois,QLP,07:42:33.99,28:48:25.67,-12.928,0.084,-7.74,0.068,2459606.24439,0.0008156,5.4290881,1.21e-05,2.615,0.249,7.637813,0.027157,7010.0,25.0125,17.9089,1.41302,748.398,1457.0,55.0,629.284,21.1485,6403.0,125.9,4.01,0.09,1.87,0.1,,,1.29,0.20696,"20,44,45,46,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search; some sectors contaminated by nearby stars; large; v-shaped,3820,1,False,False,True -88485645,3821.01,,3,4,3,3,1,4,4,44.7,79.0,317.0,3,0,0,PC,PC,13.0367,0.008,,1,spoc-s14-s60-b0A-PC,QLP,07:03:28.42,60:51:09.18,1.396,0.034,2.194,0.031,2459602.180529,0.002561,2.59725507370428,1.9770421e-05,2.74034578491603,0.18363607,10.810553,0.651614,9907.48142666326,599.9783,23.7348190641947,1.0927039,5351.18178688353,2181.38426326896,19.642706,1555.25,60.905,7054.0,122.0,3.98,,2.10753011703491,,,,1.56,,"20,47,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; v-shaped; possibly too large for insolation,3821,1,False,False,True -88385463,3822.01,TIC 88385463.01,3,4,4,3,3,4,4,52.1,132.3,116.74,2,2,1,PC,PC,12.3381,0.01,,1,spoc-s14-s60-b0A-PC,QLP,06:58:24.8,59:58:22.73,-1.556,0.041,-46.481,0.038,2459601.358946,0.0005792,3.12351790163408,5.6377144e-06,2.71452349688804,0.04757137,16.916369,0.19424,15459.8027575966,178.88608,13.2914966112158,0.7370533,489.47067904097,1199.64133061837,82.980156,359.079,4.42,5376.0,118.6,4.37,0.08,1.04446995258331,0.0556356,0.277,0.064,0.93,0.115453,"20,47,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3822,1,False,False,True -81212289,3823.01,,3,5,5,3,1,4,4,16.1,76.7,18.34,2,0,0,PC,APC,11.4534,0.007,,1,qlp-s47-tois,QLP,08:28:08.09,56:25:51.88,-9.415,0.099,-11.516,0.086,2459605.942792,0.0016507,0.6848358,2.2e-06,0.88,0.186,1.553714,0.006134,1430.0,5.6494,4.49427,0.353297,2198.68,1907.0,17.0,353.355,8.014,6385.1,111.2,4.47,0.08,1.1,0.05,0.045,0.013,1.28,0.186141,"20,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; bad shape; significant centroid offset; likely EB,3823,1,False,False,False -71134735,3824.01,,5,5,5,5,5,5,5,11.5,41.6,58.38,0,0,0,O,FA,13.041,0.019,,1,spoc-s60-b0A,QLP,08:27:16.49,50:45:28.15,-13.911,2.185,-8.999,2.185,2459938.552345,0.0035395215,2.33748453157151,0.0005645153,2.36684497123318,0.38173506,5.629511,0.569321,5171.55248527383,524.22687,8.31293,1.41815,1340.81394872373,1543.34094921542,8.783214,896.974,,6666.8,541.3,,,1.33,0.21,-0.058,0.028,,,"20,47,60",2021-06-23,2023-03-20,2023-03-20 00:00:00,found in faint-star QLP search; Same signal as TOI-3777.01 but this star is a phantom; retired as TFOP FA,3824,1,False,False,True -39077574,3825.01,,5,5,5,5,5,5,5,11.1,44.6,79.11,1,0,0,EB,FP,13.2971,0.007,,1,qlp-s48-tois,QLP,10:05:01.35,40:20:27.83,-10.015,0.03,-7.317,0.034,2459629.957296,0.0045395,7.1404043,5.51e-05,1.719,0.404,9.049217,0.040766,8300.0,37.5463,10.5731,,53.052,751.0,10.0,715.593,12.76,5886.6,137.9,4.38,,1.11,,-0.267,0.129,1.07,,"21,48",2021-06-23,2022-07-12,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; eccentric EB,3825,1,False,False,True -9346507,3826.01,,3,4,3,3,3,4,4,55.9,79.6,317.0,1,0,1,PC,PC,12.6865,0.007,,1,qlp-s48-tois,QLP,09:59:30.46,36:59:32.82,-18.704,0.038,-6.469,0.035,2459632.217096,0.0006042,4.9807125,6.3e-06,3.333,0.074,29.550533,0.004688,26850.0,4.31756,17.2544,0.814786,231.2,1086.0,94.0,470.353,6.998,5545.7,100.5,4.39,0.07,1.04,0.05,0.397938,0.0250808,0.98,0.120833,"21,48",2021-06-23,2022-07-12,2023-04-03 00:00:00,found in faint-star QLP search,3826,1,False,False,True -8677530,3827.01,,5,5,5,5,5,5,5,38.6,106.7,84.51,0,0,0,PC,FA,12.033,0.018,,1,qlp,QLP,09:09:41.12,31:17:32.93,,,,,2458897.512084,0.0012903,2.91463,0.0003169,2.977,0.199,10.868146,0.005431,9960.0,5.00221,9.96391,,588.827,,48.0,335.744,,5484.8,,,,0.99,,0.35684,0.0184713,,,21,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3827,1,False,False,True -841226526,3828.01,,3,4,3,3,3,4,4,12.4,54.3,76.31,0,1,3,PC,PC,11.227,0.007,,1,qlp-s47-tois,QLP,10:03:34.2,67:59:24.13,-11.82,0.034,-36.584,0.043,2459585.919343,0.0033758,19.5105608,0.0001253,4.471,0.334,3.588854,1.319308,3300.0,1214.39,,,,,23.0,341.6,2.999,,,,,,,,,,,"14,20,21,40,41,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search,3828,1,False,False,True -801354155,3829.01,,3,4,3,3,3,4,4,53.8,132.5,112.14,2,0,1,PC,PC,12.3722,0.007,,1,qlp-s48-tois,QLP,09:09:41.1,31:17:32.72,8.181,0.067,-23.264,0.058,2459632.099977,0.000766,2.9150294,4.7e-06,2.819,0.103,14.790294,0.003621,13530.0,3.33548,12.8379,1.56876,464.816,1293.0,67.0,397.985,7.386,5385.0,137.3,4.33,0.09,1.08,0.13,,,0.93,0.119455,"21,48",2021-06-23,2022-06-29,2023-02-27 00:00:00,found in faint-star QLP search,3829,1,False,False,True -445807396,3830.01,,3,4,3,3,2,4,4,20.4,62.0,76.34,3,5,1,PC,PC,13.239,0.007,,1,qlp-s48-tois,QLP,11:09:10.79,49:57:20.73,-7.94,0.026,-15.179,0.025,2459631.561236,0.0018683,3.2493152,1.04e-05,1.849,0.179,10.100756,0.007985,9260.0,7.35397,10.3587,,173.46,1011.0,23.0,563.928,6.7675,5371.2,71.3,4.37,,1.04,,0.427398,0.0686213,0.93,,"21,48",2021-06-23,2022-07-12,2023-05-19 00:00:00,found in faint-star QLP search,3830,1,False,False,True -393853275,3831.01,,3,4,4,3,1,4,4,35.8,84.9,89.42,4,0,0,PC,PC,13.1894,0.006,,1,qlp-s48-tois,QLP,09:47:16.9,44:38:20.15,-1.928,2.184,-6.073,2.185,2459635.338271,0.0011279,1.7088305,4.5e-06,1.871,0.144,10.60498,0.006964,9720.0,6.41451,,,564.614,1358.0,31.0,,,5253.2,416.3,,,,,0.371,0.176,,,"21,48",2021-06-23,2022-07-12,2023-04-09 00:00:00,found in faint-star QLP search; no stellar radius,3831,1,False,False,True -356736743,3832.01,,3,4,3,3,1,4,4,4.9,38.1,65.29,1,0,0,PC,PC,12.6635,0.012,,1,qlp-s48-tois,QLP,11:50:48.53,75:12:12.13,2.502,0.036,4.528,0.029,2459604.064414,0.002061,24.0819851,9.71e-05,4.032,0.289,8.534772,0.003952,7830.0,3.63989,9.42632,0.500343,22.9814,609.0,29.0,505.207,4.4385,5952.0,138.2,4.43,0.08,1.05,0.05,,,1.09,0.139828,"14,20,21,40,41,47,48,60",2021-06-23,2023-05-25,2023-05-25 00:00:00,found in faint-star QLP search,3832,1,False,False,True -356539624,3833.01,,3,5,5,3,1,4,4,235.7,154.4,317.0,4,0,0,PC,APC,13.3585,0.007,,1,qlp-s48-tois,QLP,10:12:37.31,62:19:46.06,2.805,0.029,-15.2,0.04,2459635.915521,0.0005213,0.4399856,7e-07,0.603,0.13,7.441018,3.44077,6830.0,3164.05,18.9074,,1456.36,1721.0,40.0,412.034,4.014,4423.0,122.0,4.19,,1.1,,,,0.69,,"21,41,47,48",2021-06-23,2022-07-12,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; significant odd-even (~3 sigma),3833,1,False,False,True -355953198,3834.01,,3,4,4,3,1,4,4,19.0,59.2,78.7,3,0,0,PC,PC,13.2742,0.006,,1,qlp-s48-tois,QLP,11:59:37.66,72:18:05.47,0.171,2.269,-7.937,2.267,2459631.909611,0.001151,3.3952015,8.9e-06,2.368,0.131,9.005425,0.003336,8260.0,3.07278,,,321.993,1180.0,36.0,627.829,,5673.6,360.3,,,,,,,,,"20,21,40,41,47,48",2021-06-23,2022-07-12,2023-04-26 00:00:00,found in faint-star QLP search; no stellar radius; likely planetary in size due to distance and magnitude of host star,3834,1,False,False,True -330795142,3835.01,,3,4,4,3,3,4,4,75.1,67.1,317.0,5,0,1,PC,PC,12.5984,0.007,,1,qlp-s48-tois,QLP,09:37:35.02,28:14:43.3,6.049,0.091,-1.121,0.112,2459633.636146,0.0005154,1.3460633,1.4e-06,1.829,0.078,17.269535,0.002797,15780.0,2.57595,14.2662,0.694023,1231.36,1650.0,57.0,504.711,8.3885,5788.7,114.3,4.38,0.07,1.09,0.05,0.317263,0.0483472,1.04,0.125604,"21,48",2021-06-23,2022-07-08,2023-04-03 00:00:00,found in faint-star QLP search,3835,1,False,False,True -900240532,3836.01,,3,4,3,3,1,4,4,35.4,33.5,317.0,3,0,0,PC,PC,12.9621,0.007,,1,qlp-s48-tois,QLP,11:04:57.35,43:27:51.77,-10.935,0.096,2.286,0.098,2459633.448417,0.0023714,2.5733766,1.17e-05,2.457,0.257,7.309842,0.008314,6710.0,7.65736,,,,,22.0,916.981,87.9135,,,,,,,,,,,"21,48",2021-06-23,2022-06-29,2022-12-14 12:09:24,found in faint-star QLP search; multiple stars in pixel; no stellar parameters; possibly synchronized,3836,1,False,False,True -308073360,3837.01,TIC 308073360.01,3,4,3,3,4,4,4,19.7,85.5,85.52,1,3,4,PC,PC,11.366,0.007,,1,qlp-s48-tois,QLP,10:10:39.91,24:16:23.24,50.376,0.077,-37.026,0.078,2459613.379817,0.0009589,11.8886495,2.73e-05,4.803,0.504,8.501943,0.003156,7800.0,2.90688,11.0233,0.6475,138.065,954.0,66.0,311.705,4.3435,5773.9,138.7,4.28,0.08,1.21,0.07,-0.241,0.086,1.03,0.125834,"21,45,46,48",2021-06-23,2022-07-08,2022-12-14 12:09:24,found in faint-star QLP search,3837,1,False,False,True -307915084,3838.01,,3,5,5,3,3,4,4,24.9,71.0,53.67,1,0,1,PC,APC,12.7477,0.006,,1,qlp-s48-tois,QLP,09:25:55.33,33:24:45.86,-1.083,2.242,2.342,2.233,2459635.460006,0.0015941,0.8275646,2.5e-06,1.056,0.131,3.991982,0.008579,3670.0,7.90116,8.41789,0.993163,1716.01,1793.0,17.0,,,6203.3,47.0,,,1.32,0.14,-0.587,0.045,,,"21,48",2021-06-23,2022-07-08,2023-04-03 00:00:00,V-shaped; found in faint-star QLP search; possible odd-even; TFOP APC/BEB,3838,1,False,False,True -298074043,3839.01,,3,4,3,3,1,4,4,28.8,31.1,317.0,1,0,0,PC,PC,12.8957,0.006,,1,qlp-s48-tois,QLP,13:26:02.58,74:45:31.89,0.003,0.031,0.726,0.025,2459632.828449,0.0028873,3.0193545,1.41e-05,1.345,0.276,2.565366,1.656305,2360.0,1524.35,14.357,6.13047,1252.3,1657.0,14.0,872.986,11.559,6341.0,120.2,4.23,0.09,1.42,0.06,,,1.26,0.191329,"14,15,20,21,40,41,47,48,60",2021-06-23,2023-05-25,2023-05-25 00:00:00,found in faint-star QLP search,3839,1,False,False,True -287231664,3840.01,,3,4,3,3,1,4,4,13.8,43.7,73.69,2,0,0,PC,PC,13.1697,0.006,,1,qlp-s48-tois,QLP,10:05:10.44,60:21:07.54,0.503,0.019,-3.506,0.025,2459633.530048,0.0019532,3.6217624,1.76e-05,2.963,0.241,6.68697,0.005444,6140.0,5.01437,10.1723,,493.866,1313.0,24.0,765.939,11.654,5788.0,122.0,4.24,,1.28,,,,1.04,,"21,47,48",2021-06-23,2022-07-26,2022-12-14 12:09:24,found in faint-star QLP search,3840,1,False,False,True -252474634,3841.01,,3,4,3,3,1,4,4,14.4,39.6,104.32,4,0,0,PC,PC,13.0933,0.006,,1,spoc-s48-b0A,QLP,10:19:32.01,48:21:12.8,0.431,0.036,-8.808,0.043,2459629.928738,0.0032367,4.1124956,2.3e-05,1.90711447395496,0.37309387,6.028781,0.583099,5537.32507713673,536.91016,12.4396125328576,3.012068,1230.14009530847,1510.45709358337,13.0,1059.16,47.475,6145.0,122.0,4.07,,1.64364004135132,,,,1.17,,"21,48",2021-06-23,2022-07-07,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; centroid offset not centered on anything in spoc-s48 likely due to scattered light,3841,1,False,False,True -165985431,3842.01,,3,4,3,3,3,4,4,56.6,130.7,121.14,3,3,1,PC,PC,12.6496,0.006,,1,qlp,QLP,08:55:54.63,30:59:25.25,-6.315,0.044,-14.161,0.034,2458895.099104,0.0009479,3.6566206,0.0002678,2.557,0.114,23.853161,0.00909,21730.0,8.37261,13.587,0.997221,113.212,908.0,62.0,253.701,1.95,4489.2,107.4,4.37,0.09,0.91,0.06,0.186,0.032,0.7,0.0810957,21,2021-06-23,2021-06-23,2023-04-03 00:00:00,found in faint-star QLP search,3842,1,False,False,False -841226527,3843.01,,5,5,5,5,5,5,5,13.3,64.9,72.49,0,0,0,PC,FP,11.4794,0.006,,1,qlp,QLP,10:03:34.06,67:59:25.36,-11.332,0.053,-35.591,0.05,2458883.544637,0.0039125,19.5112506,0.0006207,3.896,0.81,4.438865,0.123019,4080.0,113.298,,,,,20.0,345.366,3.565,,,,,,,,,,,"14,20,21",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3843,1,False,False,True -165885558,3844.01,,3,5,5,3,1,4,4,66.3,127.1,126.04,2,0,0,PC,APC,12.9959,0.007,,1,qlp-s47-tois,QLP,08:45:27.9,35:37:01.8,-24.597,0.047,-23.164,0.034,2459606.766668,0.000549,0.896271,1.3e-06,0.996,0.078,13.646245,0.00964,12490.0,8.87913,13.8677,0.905114,818.614,1490.0,57.0,655.503,13.262,5726.0,136.7,4.27,0.08,1.22,0.07,-0.403452,0.0391912,1.02,0.126348,"21,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search; TFOP APC previously retired as BEB; ~6 sigma offset in spoc-s47,3844,1,False,False,True -156816238,3845.01,,5,5,5,5,5,5,5,57.8,63.8,317.0,2,1,0,EB,FP,12.7553,0.007,,1,qlp-s48-tois,QLP,09:21:50.92,38:37:08.26,14.231,0.038,-3.961,0.035,2459632.687208,0.0007264,2.1461672,3.4e-06,1.942,0.122,15.428846,0.006889,14110.0,6.34512,16.91,0.920368,663.959,1414.0,56.0,749.892,15.0685,6046.0,121.0,4.19,0.08,1.41,0.07,,,1.12,0.14631,"21,48",2021-06-23,2022-07-12,2022-12-14 12:09:24,found in faint-star QLP search; 2000 ppm secondary; centered on TIC 840790978; retired as TFOP FP,3845,1,False,False,True -149918151,3846.01,,3,5,5,3,5,4,5,112.0,200.4,117.71,1,10,0,KP,KP,12.9178,0.006,,1,qlp-s48-tois,QLP,10:42:59.54,60:57:50.83,-23.741,0.024,-21.274,0.031,2459632.94338,0.0002608,1.540776,7e-07,1.705,0.026,30.063872,0.001194,27310.0,1.09942,13.3674,1.1963,210.669,1061.0,161.0,213.771,0.837,4234.0,120.1,4.49,0.1,0.77,0.07,,,0.662,0.0763878,"14,21,41,48",2021-06-23,2022-07-12,2022-12-14 12:09:24,Qatar-9 b; found in faint-star QLP search,3846,1,False,False,True -149917086,3847.01,,3,4,4,3,3,4,4,13.7,63.8,74.51,3,2,1,PC,PC,12.228,0.008,,1,qlp-s48-tois,QLP,10:41:37.09,63:53:18.93,12.469,0.038,2.209,0.042,2459616.654357,0.0009776,11.0783748,2.28e-05,2.673,0.153,9.881602,0.00422,9060.0,3.88634,10.2336,0.577323,36.8868,686.0,48.0,387.635,3.885,5623.0,127.5,4.39,0.08,1.06,0.05,,,1.0,0.124231,"14,21,41,47,48",2021-06-23,2022-07-12,2023-04-03 00:00:00,found in faint-star QLP search,3847,1,False,False,True -147994863,3848.01,,3,4,4,3,1,4,4,7.0,46.7,69.84,2,0,0,PC,PC,13.3104,0.007,,1,qlp-s48-tois,QLP,11:22:45.52,70:49:56.2,-16.029,0.029,1.668,0.029,2459592.007861,0.0023271,15.9544918,6.84e-05,3.742,0.41,13.63525,0.013308,12480.0,12.2575,9.88117,,19.3942,584.0,22.0,362.075,2.3445,4798.0,122.0,4.51,,0.82,,,,0.78,,"14,20,21,40,41,47,48",2021-06-23,2022-07-12,2023-04-22 00:00:00,found in faint-star QLP search,3848,1,False,False,True -147890655,3849.01,,3,4,4,3,1,4,4,81.8,66.0,317.0,6,0,0,PC,PC,13.2705,0.007,,1,qlp-s47-tois,QLP,09:28:20.87,66:57:00.56,-0.126,0.023,-26.746,0.036,2459938.035061,0.0007310224,1.2220437,9e-07,1.871,0.063,22.056686,0.00141,20110.0,1.29855,14.8723,,973.648,1556.0,115.0,489.128,4.6715,5196.0,122.0,4.38,,1.0,,,,0.88,,"14,20,21,40,41,47,60",2021-06-23,2023-05-19,2023-05-19 00:00:00,found in faint-star QLP search; weak depth aperture correlation,3849,1,False,False,True -143008050,3850.01,,3,4,3,3,3,4,4,15.6,76.9,114.58,7,2,1,PC,PC,12.4645,0.006,,1,qlp-s48-tois,QLP,12:10:50.27,66:57:07.77,-10.237,0.035,-0.643,0.032,2459614.177984,0.0017826,14.4832964,5.41e-05,4.696,0.355,11.866565,0.227717,10870.0,209.713,13.2087,1.72858,232.655,1088.0,49.0,474.448,5.3275,6039.0,125.5,4.47,0.08,1.02,0.05,,,1.12,0.147017,"15,21,41,48",2021-06-23,2022-07-12,2023-04-03 00:00:00,found in faint-star QLP search,3850,1,False,False,True -142739544,3851.01,,3,4,3,3,3,4,4,7.9,43.1,19.82,1,2,2,PC,PC,11.1774,0.007,,1,qlp-s53-tois,QLP,10:01:31.3,75:12:42.83,-10.942,0.041,-19.695,0.043,2459762.517731,0.0021827,3.383466,1.1e-05,2.746,0.33,1.521096,0.06874,1400.0,63.3101,4.68953,0.256576,559.625,1355.0,25.0,298.349,2.474,5838.0,126.8,4.28,0.08,1.23,0.06,,,1.05,0.125437,"14,20,21,40,41,53",2021-06-23,2022-11-30,2022-12-14 12:09:24,found in faint-star QLP search,3851,1,False,False,True -142635225,3852.01,,3,4,3,3,1,4,4,13.5,70.6,127.56,1,0,0,PC,PC,13.191,0.007,,1,qlp-s48-tois,QLP,11:27:09.53,74:27:55.26,-23.455,0.033,-7.196,0.027,2459945.476803,0.0014398295,16.1020097,3.23e-05,3.871,0.133,24.819163,0.00586,22600.0,5.39687,13.9974,,42.3341,710.0,62.0,578.344,6.139,6010.0,122.0,4.56,,0.92,,,,1.11,,"14,20,21,40,41,47,48,60",2021-06-23,2023-05-25,2023-05-25 00:00:00,found in faint-star QLP search,3852,1,False,False,True -142618165,3853.01,,3,4,3,3,3,4,4,4.1,26.6,19.07,1,2,1,PC,PC,12.1726,0.011,,1,qlp-s48-tois,QLP,11:22:41.7,73:30:28.52,-6.806,0.046,9.726,0.042,2459633.20849,0.0041096,5.6922342,3.74e-05,2.975,0.418,1.684197,0.002612,1550.0,2.40604,4.57552,0.302114,215.174,1067.0,14.0,396.697,3.776,5648.0,139.1,4.34,0.08,1.12,0.06,,,1.0,0.123993,"14,20,21,40,41,47,48,60",2021-06-23,2023-05-26,2023-05-26 00:00:00,found in faint-star QLP search,3853,1,False,False,True -142562395,3854.01,,3,4,3,3,1,4,4,21.1,73.1,71.81,5,0,0,PC,PC,13.2278,0.007,,1,qlp-s48-tois,QLP,11:01:05.62,73:04:05.64,-3.166,0.035,-0.709,0.03,2459940.223533,0.0023366606,3.2693612,5.2e-06,2.029,0.165,11.778755,0.006194,10790.0,5.7045,9.96136,,281.839,1141.0,44.0,559.867,5.9005,5814.0,122.0,4.52,,0.93,,,,1.05,,"14,20,21,41,47,48,60",2021-06-23,2023-05-25,2023-05-25 00:00:00,found in faint-star QLP search,3854,1,False,False,True -126325149,3855.01,,3,4,3,3,1,4,4,35.9,84.1,106.56,2,0,0,PC,PC,13.4791,0.007,,1,qlp-s46-tois,QLP,09:01:59.15,27:28:29.83,-6.529,0.063,-16.84,0.041,2459574.053318,0.0007184,3.4952497,8.1e-06,1.745,0.125,21.104208,0.011771,19250.0,10.8417,12.6528,,50.504,742.0,46.0,321.733,4.8225,4304.8,171.6,4.36,,0.9,,0.096,0.164,0.67,,"21,44,45,46",2021-06-23,2022-03-10,2022-12-14 12:09:24,found in faint-star QLP search,3855,1,False,False,True -125552076,3856.01,,3,4,4,3,3,4,4,80.1,184.8,117.53,6,5,3,PC,PC,11.655,0.007,,1,qlp-s48-tois,QLP,09:40:53.5,27:57:00.57,-20.972,0.064,-5.579,0.052,2459631.884549,0.0003401,2.0436029,1.3e-06,1.513,0.077,14.185118,0.004147,12980.0,3.81919,13.3605,0.771249,321.632,1179.0,110.0,314.443,4.617,5568.0,129.4,4.32,0.08,1.13,0.06,,,0.98,0.12984,"21,48",2021-06-23,2022-07-12,2023-01-15 00:00:00,found in faint-star QLP search,3856,1,False,False,True -105379013,3857.01,TIC 105379013.01,3,4,3,3,1,4,4,41.8,104.9,105.27,3,0,0,PC,PC,13.167,0.006,,1,qlp,QLP,09:27:41.05,46:12:51.63,5.119,0.038,-20.955,0.033,2458894.492951,0.0023054,3.2956376,0.0004862,2.487,0.16,22.26723,0.014831,20300.0,13.6595,12.4635,,155.029,983.0,41.0,330.706,2.8745,4646.6,59.0,4.44,,0.86,,0.24,0.057,0.74,,21,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3857,1,False,False,False -86273567,3858.01,,3,4,3,3,4,4,4,3.0,29.3,21.09,1,2,3,PC,PC,11.1971,0.009,,1,qlp-s47-tois,QLP,09:24:11.75,64:19:06.05,-20.769,0.029,-21.023,0.039,2459606.486129,0.0040191,16.5968329,0.0001088,4.395,0.256,1.901703,0.001539,1750.0,1.41731,4.85367,0.277502,77.8158,827.0,17.0,312.302,2.7985,6329.0,136.0,4.41,0.08,1.16,0.06,,,1.25,0.176429,"20,21,47,60",2021-06-23,2023-05-25,2023-05-25 00:00:00,found in faint-star QLP search; variable host,3858,1,False,False,True -1122079,3859.01,,3,4,3,3,3,4,4,52.5,57.5,317.0,2,0,1,PC,PC,12.7134,0.007,,1,qlp,QLP,11:15:42.28,28:46:51.69,-32.571,0.081,-0.874,0.155,2458924.770085,0.0045802,1.8460997,0.0005517,1.706,0.407,4.068266,2.418683,3740.0,2225.21,16.4485,7.76609,3553.44,2150.0,14.0,784.669,33.213,6123.9,108.7,4.16,0.09,1.48,0.09,-0.614177,0.0424947,1.16,0.156994,22,2021-06-23,2021-06-23,2023-04-03 00:00:00,V-shaped; found in faint-star QLP search,3859,1,False,False,False -416542079,3860.01,,3,4,3,3,1,4,4,28.2,31.9,317.0,4,0,0,PC,PC,13.3887,0.007,,1,qlp-s49-tois,QLP,12:34:56.81,49:59:41.49,1.853,0.023,5.327,0.029,2459661.296287,0.0014631,3.0012386,6.7e-06,3.164,0.218,14.933385,0.007352,13660.0,6.77102,14.4673,,1099.61,1604.0,41.0,926.538,16.374,6331.0,122.0,4.37,,1.21,,,,1.25,,"15,22,49",2021-06-23,2022-07-13,2022-12-14 12:09:24,found in faint-star QLP search,3860,1,False,False,True -396950329,3861.01,,3,4,3,3,3,4,4,65.1,161.7,82.42,2,1,2,PC,PC,12.3903,0.006,,1,qlp-s49-tois,QLP,11:59:49.73,11:51:52.84,-58.894,0.064,6.916,0.05,2459663.904525,0.0006032,1.7763987,2.7e-06,0.638,0.135,6.173643,1.243706,5670.0,1144.84,10.8531,3.18461,137.995,954.0,31.0,256.022,2.97,4899.3,105.6,4.5,0.08,0.84,0.05,0.31,0.032,0.802,0.0885437,"22,45,46,49",2021-06-23,2022-07-13,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; possible weak secondary,3861,1,False,False,True -141205978,3862.01,,3,4,4,3,4,4,4,25.7,95.4,31.7,9,3,3,PC,PC,11.7201,0.007,,1,qlp-s49-tois,QLP,12:23:36.14,50:32:40.65,41.305,0.032,-11.352,0.037,2459662.738608,0.0006192,1.5574603,1.9e-06,1.272,0.068,4.24265,0.001824,3900.0,1.67963,6.15317,0.363828,358.839,1212.0,41.0,249.02,1.6675,5564.4,378.8,4.46,0.08,0.93,0.05,,,0.92,0.11391,"15,22,48,49",2021-06-23,2022-07-13,2023-04-01 00:00:00,found in faint-star QLP search,3862,1,False,False,True -383531543,3863.01,,3,4,4,3,4,4,4,8.7,46.6,61.07,2,0,2,PC,PC,12.8385,0.007,,1,qlp-s49-tois,QLP,12:29:05.57,31:39:17.3,3.986,0.033,-13.26,0.021,2459633.270394,0.0038325,10.9543562,7.11e-05,4.737,0.35,9.563906,0.006343,8770.0,5.84212,9.03653,0.52125,113.516,909.0,21.0,450.577,5.0425,5542.4,117.5,4.46,0.08,0.96,0.05,0.106,0.056,0.98,0.125258,"22,49",2021-06-23,2022-08-19,2023-06-20 00:00:00,found in faint-star QLP search; possible depth-aperture correlation,3863,1,False,False,True -1001477809,3864.01,,5,5,5,5,5,5,5,,,47.91,0,0,0,PC,FP,13.0949,0.6,,1,qlp,QLP,14:15:13.5,67:45:37.94,11.652,0.047,-13.172,0.033,2458904.350933,0.0044987,7.6605425,0.0002271,4.425,0.388,5.671473,0.005184,5210.0,4.77456,,,,,19.0,673.984,10.164,,,,,,,,,,,"14,15,16,21,22",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3864,1,False,False,True -376688393,3865.01,,3,4,4,3,1,4,4,21.2,75.2,57.43,5,0,0,PC,PC,12.5759,0.006,,1,qlp-s49-tois,QLP,12:29:44.24,39:45:38.88,,,,,2459662.921724,0.0019333,3.011593,1.03e-05,1.894,0.269,7.342635,0.008381,6740.0,7.71903,,,266.454,1125.0,23.0,405.395,,5542.1,129.7,,,,,,,,,"22,49",2021-06-23,2022-07-13,2023-05-09 00:00:00,found in faint-star QLP search; two stars in pixel; close neighbor is TIC 376688395; no stellar radius,3865,1,False,False,True -376632626,3866.01,,3,4,4,3,1,4,4,41.8,101.4,115.69,3,0,0,PC,PC,13.2252,0.007,,1,qlp-s49-tois,QLP,12:50:56.74,30:41:09.37,-18.337,0.033,-3.751,0.026,2459660.52553,0.0008761,2.1371195,3.4e-06,2.38,0.084,17.093046,0.003355,15620.0,3.08977,13.2766,,697.213,1431.0,48.0,587.858,8.4215,5570.0,83.2,4.41,,1.03,,0.306091,0.0785602,0.98,,"22,49",2021-06-23,2022-07-19,2023-05-23 00:00:00,found in faint-star QLP search,3866,1,False,False,True -320208949,3867.01,,3,4,3,3,1,4,4,23.0,75.4,96.21,2,1,0,PC,PC,12.7251,0.007,,1,qlp-s49-tois,QLP,12:54:37.27,47:03:58.47,-30.226,0.02,-8.145,0.02,2459653.142376,0.0016906,5.7310859,1.28e-05,1.693,0.266,11.866565,0.011077,10870.0,10.2019,11.8502,0.915913,60.3278,776.0,28.0,488.695,3.573,5552.1,173.2,4.37,0.1,1.07,0.08,0.126,0.158,0.98,0.126531,"15,16,22,49",2021-06-23,2022-07-13,2022-12-14 12:09:24,found in faint-star QLP search; v-shaped,3867,1,False,False,True -310994622,3868.01,,3,4,3,3,3,4,4,6.0,54.6,47.84,0,1,1,PC,PC,12.3572,0.006,,1,qlp-s49-tois,QLP,13:34:16.13,65:07:42.2,29.457,0.039,-35.915,0.029,2459660.902382,0.0018023,18.565813,4.79e-05,3.82,0.356,10.276112,0.005378,9420.0,4.95343,7.83236,0.590228,13.8526,537.0,46.0,215.045,0.973,4671.0,120.5,4.51,0.09,0.79,0.06,,,0.744,0.0858924,"14,15,21,22,41,48,49",2021-06-23,2022-08-16,2023-04-05 00:00:00,found in faint-star QLP search,3868,1,False,False,True -253044312,3869.01,,3,5,5,3,3,4,4,21.9,30.1,317.0,0,1,1,PC,APC,12.0089,0.007,,1,qlp-s49-tois,QLP,11:46:26.87,43:51:48.86,-6.753,0.039,-10.076,0.043,2459648.92653,0.0010223,11.2005651,2.6e-05,1.367,0.312,7.626879,0.018786,7000.0,17.3024,15.4812,1.17919,13.6838,535.0,29.0,539.007,9.4395,5682.2,140.6,4.02,0.09,1.63,0.1,-0.455145,0.00952632,1.01,0.134503,"22,48,49",2021-06-23,2022-07-13,2023-04-03 00:00:00,V-shaped; found in faint-star QLP search; likely EB based on follow-up,3869,1,False,False,True -165989915,3870.01,,3,4,3,3,2,4,4,14.6,49.3,54.2,4,1,2,PC,PC,12.565,0.006,,1,qlp-s49-tois,QLP,14:03:48.26,64:16:15.2,-17.102,0.035,-8.399,0.031,2459662.837468,0.0015838,2.6292572,6e-06,1.582,0.372,4.122758,0.006362,3790.0,5.85926,8.44711,0.540215,469.737,1296.0,36.0,642.727,7.5785,5933.0,117.0,4.21,0.07,1.35,0.06,,,1.08,0.129471,"14,15,16,21,22,41,48,49",2021-06-23,2022-07-13,2022-12-14 12:09:24,found in faint-star QLP search; two stars in pixel,3870,1,False,False,True -165468291,3871.01,,3,4,4,3,3,4,4,31.9,107.9,90.56,3,2,1,PC,PC,12.3591,0.007,,1,qlp-s49-tois,QLP,11:40:34.82,28:32:58.49,-22.65,0.071,1.667,0.073,2459662.673642,0.0008742,4.754432,7.6e-06,2.147,0.346,14.350133,0.011771,13130.0,10.8417,11.4372,0.656093,158.463,988.0,49.0,353.347,8.288,5491.7,97.5,4.47,0.07,0.94,0.05,0.232599,0.0225256,0.96,0.123651,"22,49",2021-06-23,2022-07-13,2023-05-09 00:00:00,found in faint-star QLP search,3871,1,False,False,True -165431806,3872.01,,3,4,3,3,3,4,4,17.3,72.6,50.09,2,2,1,PC,PC,12.3882,0.007,,1,qlp-s48-tois,QLP,10:49:33.18,27:11:25.94,12.226,0.068,-27.413,0.075,2459635.328178,0.0017996,4.4100654,1.79e-05,2.362,0.384,7.025681,0.008315,6450.0,7.65801,8.08157,0.5234,232.658,1088.0,27.0,409.36,7.027,5726.0,126.1,4.46,0.08,0.99,0.05,,,1.02,0.125712,"22,48",2021-06-23,2022-06-29,2022-12-14 12:09:24,2 stars in pixel; found in faint-star QLP search,3872,1,False,False,True -154126149,3873.01,,3,4,3,3,3,4,4,30.7,32.7,317.0,2,0,1,PC,PC,12.6262,0.007,,1,qlp-s49-tois,QLP,14:09:58.45,70:03:55.87,-26.963,0.032,7.79,0.025,2459657.89795,0.0007789,3.8951475,5.1e-06,1.386,0.303,9.782996,0.047194,8970.0,43.4662,14.6884,1.28399,256.108,1114.0,58.0,749.176,8.9915,6071.0,130.8,4.15,0.08,1.48,0.07,,,1.13,0.157395,"14,15,21,22,41,47,48,49",2021-06-23,2022-07-13,2023-04-05 00:00:00,V-shaped; found in faint-star QLP search; potentially synchronized,3873,1,False,False,True -154105890,3874.01,,3,4,3,3,1,4,4,14.9,50.3,93.21,2,0,0,PC,PC,13.0635,0.006,,1,qlp-s49-tois,QLP,14:02:03.23,71:19:36.34,-9.542,0.026,-0.315,0.021,2459659.349904,0.0010862,5.5822739,9.9e-06,1.463,0.235,8.053385,0.007451,7390.0,6.86305,11.6541,,64.0979,788.0,28.0,756.221,7.2605,5997.0,122.0,4.29,,1.25,,,,1.11,,"14,15,20,21,22,40,41,47,48,49",2021-06-23,2022-07-13,2022-12-14 12:09:24,found in faint-star QLP search,3874,1,False,False,True -153978165,3875.01,,3,4,3,3,3,4,4,29.9,93.5,98.96,1,1,1,PC,PC,12.0165,0.007,,1,qlp-s49-tois,QLP,13:36:19.27,68:31:02.5,6.187,0.049,-24.091,0.044,2459662.383448,0.0009475,6.0835972,8e-06,2.133,0.328,9.224403,0.010167,8460.0,9.3645,12.0351,0.747527,102.465,886.0,62.0,404.598,3.777,5579.0,126.1,4.25,0.08,1.22,0.06,,,0.98,0.126055,"14,15,22,41,49",2021-06-23,2022-08-19,2023-04-03 00:00:00,V-shaped; found in faint-star QLP search,3875,1,False,False,True -150388393,3876.01,,3,4,4,3,3,4,4,33.0,47.4,317.0,2,0,1,PC,PC,12.76,0.007,,1,qlp-s49-tois,QLP,12:55:35.68,57:08:27.65,-36.424,0.023,-0.33,0.02,2459659.91131,0.000751,6.5846694,1.03e-05,2.572,0.199,24.663657,0.012955,22460.0,11.9318,14.5999,0.802001,107.766,897.0,71.0,493.754,3.525,5852.0,128.4,4.49,0.08,0.97,0.05,,,1.06,0.129325,"15,22,48,49",2021-06-23,2022-07-13,2023-04-03 00:00:00,found in faint-star QLP search,3876,1,False,False,True -144310492,3877.01,,3,4,4,3,4,4,4,26.7,70.2,99.04,7,4,4,PC,PC,11.9123,0.007,,1,qlp,QLP,11:21:49.07,33:59:28.98,-19.997,0.075,-3.795,0.073,2458920.968885,0.0014894,4.1225477,0.0006274,2.206,0.475,6.271921,0.012277,5760.0,11.3078,12.0574,0.97052,257.46,1115.0,30.0,493.77,13.0,5662.2,141.6,4.06,0.09,1.55,0.1,0.202,0.019,1.01,0.129029,22,2021-06-23,2021-06-23,2023-04-09 00:00:00,found in faint-star QLP search,3877,1,False,False,False -141275395,3878.01,,3,4,4,3,4,4,4,20.5,71.0,36.55,4,2,4,PC,PC,11.3616,0.008,,1,qlp-s49-tois,QLP,12:17:24.33,29:38:00.72,11.169,0.079,-17.829,0.077,2459662.612281,0.0016942,0.8377576,2.6e-06,1.074,0.19,1.531968,0.004026,1410.0,3.70762,6.706,0.502356,2114.06,1889.0,16.0,482.566,11.1335,6322.5,140.8,4.13,0.09,1.6,0.09,-0.214,0.013,1.25,0.189568,"22,49",2021-06-23,2022-07-19,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3878,1,False,False,True -139086171,3879.01,,3,4,3,3,4,4,4,7.2,49.1,16.5,1,2,3,PC,PC,11.3093,0.006,,1,qlp-s49-tois,QLP,12:18:29.9,34:53:52.71,-86.021,0.064,-34.209,0.059,2459656.345154,0.0029665,4.8104679,3e-05,2.547,0.339,2.108374,0.003982,1940.0,3.66771,4.19665,0.335083,167.688,1002.0,14.0,200.724,1.771,5332.3,143.9,4.47,0.09,0.92,0.06,-0.094,0.014,0.92,0.113963,"22,49",2021-06-23,2022-07-19,2022-12-14 12:09:24,found in faint-star QLP search; slight depth aperture correlation,3879,1,False,False,True -138973825,3880.01,,3,4,3,3,1,4,4,27.1,75.2,50.36,3,0,0,PC,PC,13.0673,0.006,,1,qlp,QLP,12:32:43.38,34:29:41.32,-55.043,0.045,-12.371,0.038,2458925.516992,0.0026033,2.1614819,0.0004185,1.076,0.372,6.905481,0.189879,6340.0,174.87,8.10367,,108.567,899.0,14.0,300.232,2.809,4501.0,37.0,4.41,,0.87,,-0.00125564,0.0353741,0.707,,22,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3880,1,False,False,False -136998882,3881.01,,3,4,4,3,4,4,4,18.4,65.9,51.27,4,3,2,PC,PC,12.131,0.008,,1,qlp-s49-tois,QLP,13:07:22.63,44:22:38.54,-41.081,0.027,-6.375,0.034,2459658.750228,0.0015566,3.3401814,9.7e-06,2.452,0.169,5.398651,0.003585,4960.0,3.30162,8.19874,0.453485,332.424,1189.0,29.0,384.153,3.801,5508.5,110.7,4.31,0.08,1.14,0.05,0.374,0.032,0.97,0.122535,"22,49",2021-06-23,2022-07-13,2023-04-03 00:00:00,found in faint-star QLP search,3881,1,False,False,True -101643582,3882.01,,3,5,5,3,4,4,4,11.4,44.8,33.26,0,2,4,PC,APC,11.8825,0.007,,1,qlp-s22-faintsearch,QLP,12:15:50.87,47:25:40.78,-11.293,0.031,-3.667,0.042,2458924.543804,0.0057355,2.071333,0.0008772,2.282,0.41,2.086617,0.006428,1920.0,5.92043,6.35115,0.505465,1179.85,1632.0,13.0,509.299,8.689,6004.0,128.1,4.17,0.08,1.44,0.07,,,1.11,0.138963,"22,49",2021-06-23,2022-08-18,2022-12-14 12:09:24,found in faint-star QLP search; secondary; check neighbor,3882,1,False,False,True -99330090,3883.01,,5,5,5,5,5,5,5,45.3,170.5,115.83,0,9,1,EB,FP,11.1693,0.007,,1,qlp-s41-tois,QLP,12:39:18.95,59:42:12.55,-14.752,0.04,3.149,0.034,2459443.719241,0.0004304,7.0080817,5.9e-06,3.179,0.052,16.299202,0.000919,14900.0,0.846507,13.1807,0.56908,189.492,1033.0,169.0,295.431,1.838,6307.0,121.6,4.48,0.09,1.06,0.05,,,1.24,0.183974,"15,21,22,41",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; Retired as SEB1 by TFOP,3883,1,False,False,True -86263325,3884.01,,3,5,5,3,4,4,4,20.9,232.9,28.33,6,0,1,PC,CP,12.9113,0.007,,1,qlp-s49-tois,QLP,12:06:17.24,12:30:25.29,-186.01,0.15,26.251,0.108,2459656.499824,0.0007065,4.5445569,7.2e-06,1.462,0.06,33.899274,0.011435,30740.0,10.5317,5.7177,0.201745,5.65747,429.0,36.0,43.1448,0.1684,3192.0,157.0,4.92,0.01,0.3,0.01,,,0.2802,0.0201542,"22,46,49",2021-06-23,2022-07-13,2023-03-03 12:02:58,found in faint-star QLP search; possible in transit ramp,3884,1,False,False,True -55748194,3885.01,,5,5,5,5,5,5,5,63.1,172.1,93.26,0,0,0,PC,FA,12.293,0.019,,1,qlp,QLP,12:01:02.15,55:50:46.34,-22.179,2.349,-37.628,2.349,2458923.581192,0.0003694,2.5227786,7.2e-06,2.177,0.114,20.694678,0.003257,18880.0,2.9995,10.9418,0.967064,344.846,1200.0,49.0,,,5268.7,42.0,,,0.78,0.07,-0.124736,0.0403927,,,"15,21,22",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3885,1,False,False,True -48220826,3886.01,,3,4,4,3,1,4,4,,,118.44,2,2,0,PC,PC,13.4971,0.006,,1,spoc-s14-s60-b0A-PC,QLP,18:52:00.83,52:25:58.08,-3.611,2.138,2.431,2.139,2459771.914483,0.0027961272,3.02154284748582,2.7567317e-05,3.08889003933254,0.06361163,16.532567,0.315572,15111.7114542109,290.60995,,,597.105424923644,1260.76023877069,41.924004,,,5622.1,384.3,,,,,,,,,"14,15,19,22,40,41,53,54,55,56,59",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,3886,1,False,False,True -21549805,3887.01,,3,4,3,3,3,4,4,23.1,59.1,128.26,1,0,1,PC,PC,12.7279,0.007,,1,qlp-s49-tois,QLP,12:06:04.5,41:28:17.16,-15.202,0.026,-6.255,0.031,2459658.34288,0.0018806,4.2441117,1.53e-05,3.771,0.224,8.21747,0.003029,7540.0,2.78993,14.06,0.782265,671.867,1418.0,26.0,823.577,15.986,6034.0,127.0,4.1,0.08,1.57,0.08,,,1.12,0.15094,"22,49",2021-06-23,2022-07-13,2023-04-03 00:00:00,found in faint-star QLP search,3887,1,False,False,True -18067025,3888.01,,3,4,3,3,1,4,4,13.4,58.4,48.95,3,1,0,PC,PC,13.0874,0.006,,1,qlp-s49-tois,QLP,12:19:02.37,36:36:34.71,-17.123,0.036,-5.73,0.023,2459661.932316,0.0021803,5.3298577,2.05e-05,1.95,0.223,10.177471,0.012397,9330.0,11.4177,8.01139,,46.3832,727.0,18.0,318.317,2.2475,4773.0,122.0,4.52,,0.8,,,,0.77,,"22,49",2021-06-23,2022-07-13,2022-12-14 12:09:24,found in faint-star QLP search,3888,1,False,False,True -950525831,3889.01,,3,4,3,3,3,4,4,75.8,193.7,108.9,6,0,1,PC,PC,12.4244,0.007,,1,qlp-s48-tois,QLP,12:01:02.14,55:50:46.32,-28.883,0.037,-36.671,0.039,2459635.025563,0.0002882,2.5228506,1.1e-06,2.15,0.04,23.376029,0.000622,21300.0,0.573301,12.9082,0.775932,307.773,1166.0,107.0,301.63,2.2145,5294.0,119.8,4.56,0.08,0.84,0.05,,,0.91,0.109277,"15,21,22,41,48",2021-06-23,2022-07-12,2023-04-03 00:00:00,found in faint-star QLP search; 2 stars in pixel,3889,1,False,False,True -18017227,3890.01,,3,4,4,3,4,4,4,21.8,63.4,47.27,9,15,5,PC,PC,11.9245,0.006,,1,qlp-s48-tois,QLP,11:26:50.72,37:42:18.85,6.551,0.093,-2.248,0.173,2459634.770884,0.0017386,0.6203033,2.3e-06,1.031,0.502,1.510223,0.143098,1390.0,131.789,7.82821,2.30594,10295.4,2806.0,16.0,695.137,35.9215,6294.0,122.5,4.03,0.1,1.78,0.12,,,1.23,0.18306,"22,48",2021-06-23,2022-06-29,2022-12-14 12:09:24,found in faint-star QLP search,3890,1,False,False,True -459215281,3891.01,,2,4,2,2,4,4,4,3.3,24.9,9.46,1,0,2,PC,PC,12.387,0.007,,1,qlp-s49-tois,QLP,13:08:34.85,55:03:04.82,-19.503,0.03,-2.706,0.027,2459659.435404,0.005922,2.7694074,3.22e-05,2.692,0.498,1.097148,0.003988,1010.0,3.67328,3.02805,0.253264,551.573,1350.0,10.0,331.96,2.2645,5269.6,111.0,4.44,0.08,0.94,0.05,0.19,0.036,0.9,0.111878,"15,16,22,48,49",2021-06-23,2022-08-19,2023-04-03 00:00:00,low SNR; found in faint-star QLP search; depth-aperture correlation,3891,1,False,False,True -3896759,3892.01,,3,4,3,3,3,4,4,37.1,107.8,104.34,5,2,2,PC,PC,11.9956,0.007,,1,qlp-s49-tois,QLP,11:25:43.83,18:07:07.79,-27.29,0.081,-3.665,0.094,2459663.101417,0.0008382,4.5808535,7.6e-06,3.488,0.116,12.536349,0.002421,11480.0,2.22956,12.4319,0.781719,328.68,1186.0,54.0,366.405,6.126,5528.7,134.0,4.31,0.09,1.14,0.07,0.168,0.021,0.97,0.127197,"22,49",2021-06-23,2022-07-13,2022-12-14 12:09:24,found in faint-star QLP search,3892,1,False,False,True -458424950,3893.01,,3,4,3,3,2,4,4,3.2,28.8,17.05,0,0,1,PC,PC,12.852,0.006,,1,qlp-s49-tois,QLP,11:50:19.5,37:54:57.86,-2.73,0.053,-86.344,0.041,2459655.552232,0.0056114,9.0576962,4e-05,2.37,0.343,3.730477,0.012459,3430.0,11.4748,4.28974,0.443613,79.0884,830.0,11.0,222.228,1.6215,4485.0,127.1,4.57,0.1,0.72,0.06,,,0.704,0.0843683,"22,49",2021-06-23,2022-07-19,2022-12-14 12:09:24,low SNR; found in faint-star QLP search; period could be half (~4.5 days),3893,1,False,False,True -165464482,3894.01,TIC 165464482.01,3,4,4,3,4,4,4,49.5,56.4,317.0,3,15,2,PC,PC,11.323,0.007,,1,qlp-s49-tois,QLP,13:25:29.96,52:46:05.17,-8.943,0.036,8.538,0.031,2459657.9546,0.000572,4.3345378,3.7e-06,3.336,0.094,10.912014,0.001586,10000.0,1.46059,14.3572,0.704475,546.903,1347.0,127.0,417.365,3.983,6314.8,303.0,4.21,0.09,1.43,0.07,,,1.21,0.180111,"15,16,22,49",2021-06-23,2022-07-13,2023-06-08 00:00:00,found in faint-star QLP search,3894,1,False,False,True -3808740,3895.01,,3,4,3,3,3,4,4,12.6,50.1,67.24,1,0,1,PC,PC,12.7533,0.007,,1,qlp-s49-tois,QLP,11:18:45.57,21:37:01.93,-24.899,0.044,-11.904,0.036,2459664.070543,0.0035406,6.6713748,3.76e-05,3.299,0.318,8.151833,0.008804,7480.0,8.10901,9.63035,0.765534,162.655,994.0,16.0,525.225,7.0235,5614.5,174.7,4.35,0.09,1.11,0.08,0.305,0.171,0.99,0.126717,"22,49",2021-06-23,2022-08-19,2023-04-03 00:00:00,found in faint-star QLP search,3895,1,False,False,True -445837596,3896.01,,1,4,1,1,4,4,4,4.2,41.4,9.11,1,2,3,PC,PC,11.6832,0.006,,1,qlp-s48-tois,QLP,12:31:43.26,63:54:30.77,-108.479,0.037,-5.138,0.036,2459634.322384,0.0030419,4.3773113,2.08e-05,2.329,0.238,1.553714,0.002066,1430.0,1.90317,2.97425,0.205637,144.988,966.0,16.0,181.653,0.713,5127.0,120.1,4.63,0.09,0.75,0.04,,,0.86,0.103238,"15,21,22,41,48",2021-06-23,2022-07-12,2022-12-14 12:09:24,found in faint-star QLP search,3896,1,False,False,True -154181821,3897.01,,3,4,3,3,3,4,4,4.7,32.0,23.19,0,3,1,PC,PC,11.9937,0.006,,1,qlp-s49-tois,QLP,14:15:13.57,67:45:39.3,11.371,1.347,-6.588,1.347,2459655.100154,0.0040238,7.6607094,4.44e-05,4.261,0.466,2.02135,0.00196,1860.0,1.8048,5.12716,,278.513,,23.0,405.176,,5911.7,690.4,,,1.19,,,,,,"14,15,16,21,22,41,48,49",2021-06-23,2022-07-13,2022-12-14 12:09:24,found in faint-star QLP search; two stars in pixel; close neighbor is TIC 1001477809,3897,1,False,False,True -450337675,3898.01,,3,4,3,3,1,4,4,10.2,40.8,86.38,2,0,0,PC,PC,13.4312,0.006,,1,qlp-s50-tois,QLP,13:19:16.02,18:54:51.18,-1.233,0.05,-7.574,0.04,2459678.057054,0.0034601,8.6789911,5.28e-05,3.865,0.342,10.583052,0.012223,9700.0,11.2579,11.1545,,135.622,950.0,16.0,733.953,14.705,5693.8,151.5,4.35,,1.12,,0.166,0.144,1.01,,"23,50",2021-06-23,2022-09-07,2022-12-14 12:09:24,found in faint-star QLP search,3898,1,False,False,True -441697509,3899.01,,1,4,1,1,4,4,4,3.0,32.4,7.61,4,2,4,PC,PC,11.0866,0.006,,1,qlp,QLP,14:15:36.51,57:49:17.3,-68.036,0.04,-28.259,0.041,2458951.991759,0.004714,5.2077671,0.0001814,2.369,0.324,0.923268,0.001919,850.0,1.76769,2.66176,0.209219,144.63,966.0,12.0,194.548,1.0355,5522.5,144.8,4.5,0.08,0.92,0.06,-0.0212663,0.0157205,0.97,0.125084,"15,16,22,23",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3899,1,False,False,False -366755319,3900.01,,3,4,3,3,3,4,4,8.9,52.2,60.66,0,2,2,PC,PC,11.9689,0.006,,1,qlp,QLP,12:34:06.73,04:11:16.17,-15.652,2.312,-1.572,2.312,2458932.910253,0.003157,14.7802661,0.0030347,3.497,0.373,7.45195,0.009487,6840.0,8.73781,9.06559,,38.1314,,18.0,364.747,,5659.0,,,,1.09,,,,,,23,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3900,1,False,False,True -357373216,3901.01,,3,4,3,3,1,4,4,14.9,65.5,104.07,1,0,0,PC,PC,13.3215,0.007,,1,qlp-s50-tois,QLP,14:33:20.77,52:23:09.5,14.751,0.027,-25.029,0.03,2459681.957257,0.0014656,9.546972,2.18e-05,2.112,0.174,18.94761,0.017138,17300.0,15.7849,12.4743,,33.8682,672.0,30.0,593.676,5.9975,5834.0,122.0,4.54,,0.91,,,,1.05,,"16,22,23,49,50",2021-06-23,2022-11-15,2022-12-14 12:09:24,found in faint-star QLP search,3901,1,False,False,True -310094771,3902.01,,3,4,4,3,2,4,4,24.9,75.7,82.78,2,0,2,PC,PC,13.3819,0.006,,1,qlp-s50-tois,QLP,14:27:01.75,28:29:44.74,-28.43,0.038,-6.254,0.049,2459690.091621,0.0023916,2.9406027,1.31e-05,1.167,0.432,10.714625,0.662475,9820.0,609.976,10.835,,168.01,1003.0,14.0,580.009,7.6415,5464.2,26.9,4.44,,0.97,,0.144816,0.0255287,0.96,,"23,50",2021-06-23,2022-12-12,2023-04-29 00:00:00,found in faint-star QLP search,3902,1,False,False,True -288434231,3903.01,,3,4,3,3,2,4,4,5.5,33.9,64.11,2,0,1,PC,PC,13.403,0.007,,1,qlp-s49-tois,QLP,13:31:37.63,45:37:20.99,-23.323,0.024,-19.114,0.026,2459660.241436,0.0049876,14.8496574,0.0001249,4.287,1.01,9.498187,0.026488,8710.0,24.3964,9.3235,,70.8112,808.0,20.0,545.646,5.498,5296.6,30.6,4.43,,0.96,,0.214005,0.0293333,0.91,,"16,22,23,49",2021-06-23,2022-07-13,2022-12-14 12:09:24,found in faint-star QLP search,3903,1,False,False,True -233462817,3904.01,,3,5,5,3,3,4,4,9.5,54.1,45.98,0,2,1,PC,APC,11.3815,0.007,,1,qlp-s50-tois,QLP,14:06:48.15,51:59:31.23,-28.449,0.032,26.473,0.033,2459675.336571,0.0015477,10.1614815,2.41e-05,1.259,0.319,3.512604,0.008301,3230.0,7.64581,7.66646,0.50052,23.4406,612.0,22.0,379.347,3.4,6297.0,120.2,4.34,0.08,1.24,0.05,,,1.23,0.179718,"15,16,22,23,49,50",2021-06-23,2022-12-12,2022-12-16 12:08:26,V-shaped; found in faint-star QLP search; one transit close to momentum dump,3904,1,False,False,True -180672438,3905.01,,3,4,3,3,1,4,4,18.7,67.0,88.28,2,0,0,PC,PC,13.0187,0.007,,1,qlp-s49-tois,QLP,13:21:56.31,40:16:06.46,-14.9,0.017,13.077,0.022,2459664.128775,0.0018367,5.3599361,1.82e-05,3.407,0.189,12.393573,0.005387,11350.0,4.96144,11.2314,,306.956,1166.0,27.0,609.296,6.937,5933.0,122.0,4.43,,1.04,,,,1.08,,"22,23,49",2021-06-23,2022-07-13,2022-12-14 12:09:24,found in faint-star QLP search,3905,1,False,False,True -180607846,3906.01,,3,5,5,3,1,4,4,34.3,102.9,37.48,2,0,0,PC,APC,12.773,0.007,,1,qlp-s49-tois,QLP,13:12:58.66,39:52:01.17,-9.721,0.015,4.909,0.016,2459662.977476,0.0011051,0.6451059,1.3e-06,0.573,0.178,3.730477,0.050276,3430.0,46.3044,6.79091,0.733549,800.418,1481.0,19.0,387.358,2.336,5436.3,106.2,4.52,0.08,0.88,0.04,-0.262615,0.0228271,0.95,0.121894,"22,23,49",2021-06-23,2022-07-13,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; TFOP BEB/APC,3906,1,False,False,True -165723070,3907.01,,3,4,4,3,2,4,4,43.5,108.0,79.75,3,1,1,PC,PC,12.8532,0.007,,1,qlp-s51-tois,QLP,15:24:59.97,57:48:54.39,-22.67,0.031,8.112,0.03,2459714.521101,0.0005552,1.7213564,1.4e-06,2.035,0.073,12.986764,0.002115,11890.0,1.94778,10.674,0.698094,559.726,1355.0,73.0,381.744,2.581,5072.0,129.8,4.42,0.09,0.95,0.06,,,0.85,0.102205,"15,16,22,23,49,50,51",2021-06-23,2022-09-02,2023-07-07 00:00:00,found in faint-star QLP search,3907,1,False,False,True -165412561,3908.01,,3,5,5,3,4,4,4,400.5,551.7,317.0,1,4,2,PC,APC,11.4582,0.007,,1,spoc-s50-b0A,QLP,13:47:07.9,42:44:09.72,-4.159,0.082,4.65,0.08,2459665.882585,0.0005725396,1.46817435513909,4.919531e-05,2.05319637319924,0.03624404,20.236821,0.257934,18466.1722620339,237.53801,24.5094814711986,10.553598,1531.05088130441,1595.39106525032,86.07178,267.999,5.1785,5433.0,122.3,4.33,0.08,1.10122001171112,0.0613568,,,0.95,0.114729,"16,23,49,50",2021-06-23,2022-05-31,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; large,3908,1,False,False,True -161003569,3909.01,TIC 161003569.01,3,4,3,3,3,4,4,31.4,79.6,109.63,2,2,1,PC,PC,12.3758,0.007,,1,qlp-s50-tois,QLP,14:48:39.21,53:50:05.38,-31.538,0.031,-6.787,0.034,2459688.544439,0.000895,3.5115357,4.6e-06,3.527,0.096,10.133633,0.002204,9290.0,2.02994,12.81,0.766814,569.545,1360.0,77.0,511.363,5.098,5490.8,134.8,4.16,0.08,1.35,0.08,0.434316,0.0144855,0.96,0.119534,"16,22,23,49,50",2021-06-23,2022-12-12,2023-04-05 00:00:00,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3909,1,False,False,True -158617175,3910.01,,3,4,3,3,3,4,4,44.3,155.2,101.95,5,3,1,PC,PC,12.0581,0.007,,1,qlp-s50-tois,QLP,14:54:26.28,59:06:07.16,-81.615,0.042,21.755,0.04,2459686.227148,0.000325,5.7158895,2.9e-06,2.437,0.063,24.208372,0.00272,22050.0,2.50481,12.3206,0.743769,76.4949,823.0,172.0,245.248,1.3605,5224.0,126.5,4.56,0.09,0.82,0.05,,,0.89,0.109117,"15,16,22,23,49,50",2021-06-23,2022-09-07,2022-12-14 12:09:24,found in faint-star QLP search,3910,1,False,False,True -158497525,3911.01,,3,4,3,3,4,4,4,3.0,34.0,12.36,1,2,3,PC,PC,11.6301,0.006,,1,qlp-s50-tois,QLP,14:40:09.07,54:08:14.21,15.206,0.035,-69.782,0.042,2459677.077572,0.0043005,9.3517097,6.01e-05,2.682,0.356,1.727694,0.003396,1590.0,3.12779,3.52814,0.251677,47.221,730.0,16.0,219.72,1.0925,5298.6,116.8,4.52,0.08,0.86,0.05,0.158385,0.0216333,0.91,0.113017,"16,22,23,49,50",2021-06-23,2022-09-07,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3911,1,False,False,True -156648452,3912.01,,3,4,4,3,3,4,4,45.2,45.2,317.0,5,4,3,PC,PC,11.8747,0.007,,1,qlp-s50-tois,QLP,14:23:12.36,24:04:35.63,7.744,0.057,-0.526,0.06,2459687.370442,0.0007173,3.4936188,4.9e-06,3.355,0.109,10.615944,0.0021,9730.0,1.93405,14.2355,0.688538,628.664,1394.0,69.0,465.992,6.497,5779.5,111.8,4.15,0.07,1.42,0.07,0.167,0.026,1.04,0.124395,"23,50",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search,3912,1,False,False,True -155898758,3913.01,,3,4,3,3,2,4,4,21.9,76.2,48.64,2,1,1,PC,PC,12.5764,0.006,,1,qlp-s50-tois,QLP,14:35:29.77,48:05:02.14,-43.727,0.021,29.065,0.021,2459687.087393,0.0008082,4.0384773,5.4e-06,1.185,0.104,8.84122,0.00678,8110.0,6.24488,7.98387,0.775449,17.0069,565.0,31.0,186.628,0.494,4180.4,124.0,4.42,0.11,0.83,0.08,0.137,0.11,0.654,0.0813179,"16,23,49,50",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search,3913,1,False,False,True -139118482,3914.01,,5,5,5,5,5,5,5,38.8,138.1,105.86,0,10,2,PC,FP,11.3366,0.007,,1,qlp,QLP,12:54:22.87,30:12:51.71,-6.057,0.05,-8.215,0.043,2458946.965104,0.0005884,6.7136512,0.000476,3.541,0.103,12.547332,0.001841,11490.0,1.69591,12.5036,0.710705,244.013,1101.0,72.0,332.565,4.8205,6179.1,146.5,4.39,0.09,1.15,0.06,-0.076,0.019,1.18,0.171932,23,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3914,1,False,False,True -81247877,3915.01,,3,4,4,3,3,4,4,95.6,224.1,122.25,6,0,2,PC,PC,12.3655,0.006,,1,qlp-s50-tois,QLP,13:41:57.29,17:18:00.24,-36.877,0.046,35.234,0.038,2459688.491692,0.0003973,2.2012625,1.6e-06,2.175,0.069,28.2571,0.003007,25690.0,2.76973,13.6145,0.715826,387.574,1236.0,122.0,275.019,1.946,5177.8,106.9,4.56,0.08,0.81,0.04,0.134422,0.0128951,0.878,0.109381,"23,50",2021-06-23,2022-12-12,2023-04-29 00:00:00,found in faint-star QLP search; two stars in pixel,3915,1,False,False,True -68074302,3916.01,,3,4,3,3,1,4,4,16.9,60.6,63.75,2,1,0,PC,PC,12.9339,0.007,,1,qlp-s50-tois,QLP,14:42:54.4,41:22:06.5,6.379,0.021,-1.318,0.026,2459685.744404,0.0024343,3.4014954,1.11e-05,1.959,0.288,8.031508,0.007719,7370.0,7.10966,9.32202,0.543263,313.317,1172.0,23.0,610.654,6.593,6005.0,128.9,4.43,0.08,1.06,0.05,,,1.11,0.14024,"16,23,50",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search,3916,1,False,False,True -68035558,3917.01,,5,5,5,5,5,5,5,18.9,111.7,44.37,0,0,0,PC,FA,11.483,0.0,,1,qlp,QLP,14:38:56.25,37:01:40.36,,,,,2458953.314052,0.0024586,8.3289771,0.0018843,2.984,0.771,6.544962,0.028926,6010.0,26.6416,,,,,20.0,,,,,,,,,,,,,23,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search; demoted as artifact in TICv8.2,3917,1,False,False,True -23815847,3918.01,,3,4,4,3,2,4,4,15.6,40.1,80.0,2,0,1,PC,PC,13.4565,0.007,,1,qlp-s50-tois,QLP,14:00:49.37,39:18:00.18,9.415,0.021,-14.695,0.028,2459691.328329,0.0026688,3.0654283,1.26e-05,2.194,0.26,6.370208,0.010006,5850.0,9.21559,10.6174,,264.883,1123.0,15.0,769.96,10.8015,5236.0,122.0,4.12,,1.35,,,,0.89,,"16,23,49,50",2021-06-23,2022-12-12,2023-06-20 00:00:00,found in faint-star QLP search,3918,1,False,False,True -23769326,3919.01,,3,4,4,3,4,4,4,12.4,49.9,74.46,4,21,2,PC,PC,12.3342,0.007,,1,qlp-s50-tois,QLP,13:55:46.74,40:23:30.5,2.188,0.026,0.91,0.031,2459682.83197,0.002229,7.4332642,2.35e-05,3.051,0.325,6.534039,0.00502,6000.0,4.62312,10.213,0.57938,184.322,1026.0,31.0,604.591,8.895001,6227.0,123.1,4.28,0.09,1.32,0.06,,,1.2,0.175555,"16,23,49,50",2021-06-23,2022-09-07,2023-04-03 00:00:00,found in faint-star QLP search,3919,1,False,False,True -2016376984,3920.01,,5,5,5,5,5,5,5,69.7,68.4,317.0,3,0,0,PC,FA,12.7509,0.031,,1,qlp,QLP,22:26:45.79,57:26:02.98,10.182,0.027,6.19,0.025,2458981.334869,0.0012392,2.317939,1.65e-05,1.676,0.411,14.361134,0.2104,13140.0,193.767,15.7376,2.07011,719.636,1442.0,41.0,490.701,3.8525,5770.0,231.0,4.25,0.09,1.25,0.06,,,1.03,0.147407,"16,17,24",2021-06-23,2021-06-23,2023-03-25 12:02:49,V-shaped; found in faint-star QLP search,3920,1,False,False,False -1101909431,3921.01,,5,5,5,5,5,5,5,25.2,85.6,317.0,0,0,0,PC,FP,12.5638,0.007,,1,qlp,QLP,15:24:30.58,46:41:42.28,19.353,0.023,-58.486,0.029,2458935.789582,0.0014397,23.2556119,0.0003044,7.878,0.256,39.492102,0.00732,35720.0,6.74157,14.4434,1.11532,51.103,744.0,90.0,222.95,0.6855,4742.0,131.7,4.6,0.1,0.73,0.06,,,0.76,0.0879534,"16,23,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3921,1,False,False,True -1101855081,3922.01,,3,4,3,3,4,4,4,78.9,256.3,99.95,4,0,3,PC,PC,12.251,0.008,,1,qlp-s51-tois,QLP,15:15:19.99,40:16:01.91,40.126,0.033,-35.793,0.044,2459715.758828,0.0003489,3.8960617,2.6e-06,1.734,0.067,24.830272,0.00565,22610.0,5.20339,12.1401,0.760153,84.8919,845.0,115.0,262.531,1.5885,5247.0,129.7,4.59,0.09,0.8,0.05,,,0.9,0.103591,"23,24,50,51",2021-06-23,2022-09-02,2023-06-20 00:00:00,V-shaped; found in faint-star QLP search; 2 stars in pixel,3922,1,False,False,True -467265105,3923.01,,3,4,4,3,2,4,4,42.0,61.4,317.0,5,0,2,PC,PC,13.0743,0.006,,1,spoc-s14-s60-b0A-PC,QLP,20:35:24,61:08:27.35,-3.501,2.204,-4.5,2.204,2459822.349631,0.002055,4.13778862384159,0.000116386655,2.29690365175624,0.08053983,12.547536,0.72169,11490.1857603081,664.4802,,,392.643390784289,1135.32270284749,30.881489,880.411,,4964.3,78.6,,,,,,,,,"15,17,24,55,56,57",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; v-shaped; host is likely distant (plx =1.3) G star; no stellar radius,3923,1,False,False,True -456042145,3924.01,,5,5,5,5,5,5,5,47.8,51.7,317.0,0,0,0,PC,FP,13.4802,0.065,,1,qlp,QLP,22:42:30.83,64:45:17.01,-3.062,0.03,-5.603,0.024,2458980.246552,0.0047183,2.0474832,6.37e-05,3.159,0.3,7.397291,2.63946,6790.0,2428.08,14.3474,,12096.5,2921.0,14.0,620.264,6.713,6791.0,122.0,4.57,,1.04,,,,1.46,,"17,18,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3924,1,False,False,False -435167167,3925.01,,5,5,5,5,5,5,5,7.8,31.5,43.16,0,0,0,PC,FP,12.1474,0.059,,1,qlp,QLP,23:05:36.75,63:27:12.3,-7.046,0.062,-12.754,0.047,2458979.233689,0.0087695,3.0330919,0.0001788,4.043,0.659,1.390633,0.003871,1280.0,3.56566,7.40327,0.548203,4283.51,2253.0,11.0,773.332,19.1705,7471.0,395.3,4.01,0.1,2.14,0.09,,,1.72,0.323354,"17,18,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3925,1,False,False,False -434171145,3926.01,,3,4,4,3,3,4,4,29.2,86.6,79.95,1,1,2,PC,PC,12.089,0.011,,1,qlp-s57-tois,QLP,22:50:31.29,61:09:34.51,0.122,2.182,-13.052,2.182,2459877.813437,0.0017816,2.7873223,6.3e-06,3.671,0.289,6.040436,0.206054,5548.0,189.765,10.6299,,2023.22,,34.0,495.95,,6466.0,,,,1.46,,,,,,"17,24,57,58",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; see observing notes re: very near companion,3926,1,False,False,False -434171113,3927.01,,3,4,3,3,3,4,4,41.9,46.2,317.0,2,0,2,PC,PC,12.7594,0.028,,1,qlp-s58-tois,QLP,22:50:38.75,60:46:12.4,-6.566,0.023,-22.515,0.022,2459902.273403,0.0006147,4.4921154,3.9e-06,3.108,0.086,21.449662,0.528446,19562.0,486.598,14.9094,0.850558,223.672,1077.0,66.0,426.94,2.5875,5353.0,202.7,4.34,0.09,1.08,0.06,,,0.93,0.122937,"17,24,57,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,3927,1,False,False,False -427153307,3928.01,,3,4,3,3,1,4,4,31.8,73.9,118.32,2,1,0,PC,PC,12.9774,0.02,,1,qlp-s56-tois,QLP,21:25:32.78,61:48:44.97,1.438,0.033,-2.275,0.032,2459851.197608,0.0017906,2.2035349,4.9e-06,2.573,0.248,8.25029,0.363171,7570.0,334.437,13.3861,0.73349,1272.37,1663.0,23.0,710.588,9.4765,6141.0,182.4,4.14,0.09,1.52,0.07,,,1.16,0.165885,"16,17,24,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,3928,1,False,False,False -422554579,3929.01,,3,4,3,3,1,4,4,50.8,65.1,317.0,2,0,0,PC,PC,13.2363,0.048,,1,qlp-s58-tois,QLP,23:05:53.99,67:11:18.49,-9.573,0.03,-0.703,0.026,2459909.656029,0.0009168,3.4608812,4.3e-06,3.608,0.11,18.079545,0.386234,16514.0,355.671,19.0253,,672.096,1418.0,45.0,684.911,8.1175,5695.0,122.0,4.08,,1.52,,,,1.01,,"17,18,24,57,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search; multiple stars in pixel,3929,1,False,False,False -422514153,3930.01,,3,4,3,3,2,4,4,30.9,77.1,129.79,1,0,2,PC,PC,12.6265,0.006,,1,qlp-s57-tois,QLP,21:18:11.32,66:09:40.31,-4.374,2.209,-7.829,2.212,2459876.498062,0.0017345,2.9284231,6.7e-06,3.835,0.226,5.615812,0.165427,5159.0,152.352,,,638.648,1400.0,32.0,749.11,,4885.4,54.2,,,,,,,,,"16,17,18,24,56,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; no stellar radius,3930,1,False,False,False -421336001,3931.01,,3,4,3,3,1,4,4,21.3,31.4,317.0,0,0,0,PC,PC,13.4428,0.007,,1,qlp-s50-tois,QLP,19:47:20.14,59:38:26.57,-0.068,0.039,-5.551,0.034,2459683.704752,0.0046625,7.6643665,5.65e-05,4.523,0.569,9.279154,3.399491,8510.0,3126.15,14.9559,,773.524,1469.0,16.0,684.857,9.858,5694.0,122.0,4.41,,1.04,,,,1.01,,"14,15,16,17,20,24,40,41,47,50",2021-06-23,2022-09-07,2022-12-14 12:09:24,found in faint-star QLP search,3931,1,False,False,True -408094424,3932.01,,3,5,5,3,3,4,4,37.3,34.7,317.0,1,1,1,PC,APC,11.3258,0.032,,1,qlp-s56-tois,QLP,21:45:04.13,64:04:02.45,-8.796,0.04,-1.341,0.037,2459849.877536,0.0019442,2.4892754,5.9e-06,1.513,0.568,2.989888,0.280061,2750.0,257.912,15.5724,1.07544,660.426,1412.0,20.0,672.679,9.228,6285.0,229.2,3.65,0.1,2.76,0.13,,,1.23,0.196196,"16,17,18,24,56,58",2021-06-23,2023-02-22,2023-02-23 00:00:00,found in faint-star QLP search,3932,1,False,False,False -388393034,3933.01,,3,4,3,3,1,4,4,20.7,31.6,317.0,2,0,0,PC,PC,13.2345,0.018,,1,qlp-s57-tois,QLP,23:11:52.31,56:51:43.54,-3.224,0.027,-2.585,0.024,2459881.419784,0.003135,1.97549,8.1e-06,2.409,0.401,5.941088,0.381826,5457.0,351.613,17.6764,,5560.11,2405.0,14.0,1898.68,67.975,8523.0,123.0,3.98,,2.46,,,,2.12,,"17,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3933,1,False,False,False -375981105,3934.01,,3,4,3,3,3,4,4,21.6,35.0,317.0,1,0,1,PC,PC,12.7091,0.012,,1,qlp-s57-tois,QLP,22:27:26.14,67:46:09.67,-1.072,0.029,4.424,0.025,2459885.575468,0.00317312,11.7512673,4.1e-05,2.143,0.812,8.373921,2.188714,7683.0,2013.85,17.4049,2.12732,86.313,849.0,14.0,710.669,8.987001,6571.0,144.7,4.12,0.09,1.68,0.08,,,1.36,0.214951,"17,18,24,57,58",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; v-shaped; large Rp for insolation,3934,1,False,False,False -372207084,3935.01,,3,4,3,3,1,4,4,27.0,36.5,317.0,1,0,0,PC,PC,13.4234,0.006,,1,qlp-s58-tois,QLP,22:03:01.22,67:37:24.23,0.393,4.152,7.477,4.152,2459908.987824,0.0025782,1.2257683,3.3e-06,1.874,0.497,6.001132,0.520198,5512.0,479.005,,,2802.16,2026.0,20.0,1872.2,,6205.8,451.2,,,,,,,,,"16,17,18,24,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search; v-shaped; unknown radius; Gaia distance is ~1.9 kpc; host is giant; likely too large to be planetary,3935,1,False,False,False -371676181,3936.01,,3,4,3,3,3,4,4,58.9,79.8,317.0,2,1,4,PC,PC,12.5722,0.007,,1,qlp-s57-tois,QLP,22:57:17.29,59:12:04.94,0.377,2.205,17.307,2.33,2459881.848754,0.0011601,1.4858906,2.7e-06,1.697,0.237,7.915572,0.407079,7264.0,374.863,,,648.608,1405.0,25.0,922.432,,5196.8,134.2,,,,,,,,,"17,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,V-shaped; found in faint-star QLP search; check neighboring TIC 371676187 (delta Tmag ~ 1 and 5.64'' away); no stellar radius,3936,1,False,False,True -367425982,3937.01,,3,4,4,3,1,4,4,68.0,155.0,109.06,5,0,0,PC,PC,12.9577,0.006,,1,spoc-s14-s60-b0A-PC,QLP,22:16:31.92,66:51:38.05,-17.095,0.025,-11.956,0.027,2459853.682844,0.0003938434,1.69235728515888,2.0640513e-05,1.99124327060954,0.033312723,22.126418,0.222748,20172.9323967611,205.1378,12.7696702436224,0.7357958,762.597973589606,1340.27421142602,93.663895,367.428,2.0775,5287.0,138.7,4.5,0.08,0.888759970664978,0.0495226,,,0.908,0.115122,"16,18,24,57,58",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,3937,1,False,False,False -367333043,3938.01,,5,5,5,5,5,5,5,10.6,44.4,42.41,1,0,0,PC,FP,13.2875,0.006,,1,qlp,QLP,22:14:39.21,68:41:07.13,5.923,0.027,0.588,0.024,2458979.960331,0.0055953,2.8778095,0.0001002,2.824,0.524,5.256811,0.013293,4830.0,12.2433,7.35828,,1005.2,1568.0,15.0,617.366,5.6955,6131.0,122.0,4.46,,1.05,,,,1.16,,"17,18,24",2021-06-23,2021-06-23,2023-05-12 12:02:56,found in faint-star QLP search,3938,1,False,False,False -366115856,3939.01,,3,4,4,3,1,4,4,54.7,132.3,89.2,3,1,0,PC,PC,13.2129,0.006,,1,qlp-s58-tois,QLP,23:46:50.01,66:51:38.9,13.19,0.029,-5.307,0.029,2459908.695489,0.000456,2.3466472,1.5e-06,1.957,0.067,27.798079,0.777485,25278.0,715.834,12.2268,,153.353,980.0,80.0,262.301,1.224,4477.0,122.0,4.53,,0.75,,,,0.702,,"17,18,24,57,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,3939,1,False,False,False -346081845,3940.01,,3,4,4,3,3,4,4,52.5,131.1,110.72,3,0,2,PC,PC,13.4454,0.006,,1,qlp-s57-tois,QLP,23:47:32.72,54:10:41.91,22.224,0.032,12.145,0.027,2459879.893471,0.0010316,3.4895723,7e-06,2.378,0.161,35.9399,1.516627,32560.0,1395.89,12.9484,,87.9248,853.0,38.0,250.357,1.483,4315.0,122.0,4.57,,0.71,,,,0.674,,"24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3940,1,False,False,False -345697569,3941.01,,3,4,4,3,3,4,4,36.4,37.5,317.0,3,1,2,PC,PC,12.9307,0.01,,1,qlp-s57-tois,QLP,23:45:37.7,55:13:33.5,-6.47,0.029,-8.78,0.023,2459880.907454,0.0014109,2.8817718,5.7e-06,2.842,0.177,14.572392,0.511122,13332.0,470.65,14.8764,0.788703,854.357,1506.0,32.0,707.03,9.3015,6137.0,133.7,4.23,0.08,1.38,0.06,,,1.16,0.158935,"17,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3941,1,False,False,False -345329200,3942.01,,3,4,3,3,3,4,4,66.4,96.7,317.0,3,0,2,PC,PC,12.8967,0.016,,1,spoc-s58-b0A,QLP,23:42:54.19,58:27:08.73,-13.571,0.027,-10.064,0.031,2459885.151069,0.003300546,3.10793026739721,0.00069412787,1.58974033476302,0.2801212,7.447975,0.893163,6836.36342343761,822.295,20.9078479046435,71.84852,1763.66464127182,1652.81311989707,8.147595,691.327,9.443,6413.0,155.6,4.17,0.09,1.54867994785309,0.0699498,,,1.29,0.203565,"17,24,58",2021-06-23,2023-03-09,2023-03-24 12:12:10,found in faint-star QLP search; potential odd-even,3942,1,False,False,False -343330330,3943.01,,3,4,3,3,3,4,4,9.7,24.6,77.82,0,0,1,PC,PC,12.5714,0.022,,1,qlp-s56-tois,QLP,20:39:04.42,61:27:32.62,-1.106,0.029,2.516,0.028,2459850.550846,0.0051661,5.5613023,3.93e-05,5.64,0.557,2.391251,0.152818,2200.0,140.741,10.4506,0.703996,713.503,1439.0,15.0,766.246,8.523,5607.0,191.5,3.72,0.09,2.27,0.12,,,0.99,0.130408,"15,16,17,24,55,56",2021-06-23,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search,3943,1,False,False,True -338065029,3944.01,,3,4,3,3,1,4,4,44.3,61.6,317.0,2,0,0,PC,PC,12.5871,0.006,,1,qlp-s57-tois,QLP,22:31:08.52,61:38:34.8,-0.272,2.171,2.13,2.171,2459879.299141,0.0022404,2.3151015,6.7e-06,2.084,0.258,5.721679,0.332931,5256.0,306.594,,,285.103,1144.0,16.0,969.298,,4746.7,204.9,,,,,,,,,"16,17,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; scattered light in s57 SPOC report caused difference image to fail; variable host star; no stellar radius,3944,1,False,False,False -336824844,3945.01,,3,4,3,3,3,4,4,14.9,46.1,67.32,1,0,1,PC,PC,12.5917,0.027,,1,qlp-s57-tois,QLP,22:19:57.68,62:39:24,23.599,0.03,9.87,0.026,2459885.028959,0.0062837726,4.4638411,1.81e-05,1.556,0.323,4.123848,0.432624,3791.0,398.382,9.59744,0.732904,78.9834,830.0,9.0,515.394,4.704,5472.0,201.8,4.11,0.09,1.42,0.08,,,0.96,0.131606,"16,17,24,57,58",2021-06-23,2023-05-04,2023-05-06 12:13:45,found in faint-star QLP search; low SNR; crowded field; possible odd-even,3945,1,False,False,False -336399144,3946.01,TIC 336399144.01,3,4,3,3,3,4,4,36.8,45.7,317.0,1,1,1,PC,PC,12.475,0.019,,1,qlp,QLP,22:16:03.31,61:03:27.22,4.407,0.046,-1.347,0.048,2458972.76106,0.0010286,5.7033411,3.84e-05,3.039,0.208,16.111852,0.00708,14730.0,6.52083,15.2151,0.791465,217.888,1070.0,59.0,519.917,6.3385,5933.0,164.4,4.28,0.08,1.24,0.06,,,1.08,0.147587,"16,17,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3946,1,False,False,False -336092760,3947.01,,3,4,3,3,1,4,4,22.8,29.7,317.0,0,1,0,PC,PC,12.933,0.014,,1,qlp-s58-tois,QLP,22:14:54.21,62:51:31.45,-0.039,0.032,-4.333,0.029,2459905.727594,0.0039435,6.7716021,3.67e-05,6.279,0.595,4.984094,0.244493,4580.0,225.161,16.5311,0.982021,831.07,1495.0,18.0,1125.06,20.66,6136.0,152.2,3.67,0.09,2.62,0.13,,,1.16,0.164761,"16,17,24,57,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,3947,1,False,False,False -335489455,3948.01,,5,5,5,5,5,5,5,11.0,55.3,23.45,1,0,1,PC,FP,12.5455,0.006,,1,qlp,QLP,22:10:32.04,61:49:45.87,-32.736,0.03,-21.987,0.026,2458978.435452,0.0064887,2.1176601,7.64e-05,3.591,0.841,2.173647,0.308877,2000.0,284.446,5.16544,1.67143,12280.2,2932.0,14.0,359.83,1.891,5814.0,152.2,4.56,0.08,0.89,0.04,,,1.046,0.127685,"16,17,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3948,1,False,False,False -334493051,3949.01,,3,4,3,3,1,4,4,21.8,61.0,79.25,1,0,0,PC,PC,13.4743,0.028,,1,qlp-s57-tois,QLP,22:04:54.62,64:27:49.5,-0.478,0.03,6.024,0.031,2459881.384085,0.0023864,2.2297524,5.9e-06,2.498,0.301,9.594576,0.427938,8798.0,394.068,10.5562,,970.705,1555.0,24.0,682.99,9.5155,5846.0,123.0,4.32,,1.17,,,,1.06,,"16,17,18,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; transits possibly synchronized with underlying variability,3949,1,False,False,False -334394274,3950.01,,3,4,3,3,1,4,4,36.5,41.4,317.0,2,0,0,PC,PC,13.3364,0.016,,1,qlp-s56-tois,QLP,22:04:18.91,61:37:40.56,1.132,0.046,-4.801,0.047,2459851.55939,0.0016393,3.4488281,7.2e-06,3.091,0.177,15.781311,0.604829,14430.0,556.913,15.6361,,617.246,1388.0,34.0,701.783,11.479,5994.0,123.0,4.27,,1.27,,,,1.1,,"16,17,24,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,3950,1,False,False,True -334385701,3951.01,,3,4,3,3,1,4,4,29.6,65.2,91.68,2,0,0,PC,PC,13.3788,0.015,,1,qlp-s56-tois,QLP,22:02:51.68,60:12:42.62,12.576,0.04,7.638,0.039,2459849.974225,0.00215,2.1861455,5.8e-06,2.42,0.155,9.574859,0.493215,8780.0,454.165,11.5599,,612.53,1385.0,22.0,558.58,7.182,5342.0,123.0,4.22,,1.24,,,,0.92,,"16,17,24,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,3951,1,False,False,False -321861405,3952.01,,3,4,3,3,3,4,4,66.0,94.2,317.0,3,3,1,PC,PC,11.9401,0.006,,1,qlp-s58-tois,QLP,21:32:36.69,67:54:43.01,0.769,0.041,-2.096,0.038,2459907.76999,0.0004485,2.9897732,2e-06,3.06,0.065,14.089421,0.18212,12893.0,167.725,17.6166,0.761057,1317.93,1678.0,63.0,591.367,7.296,6786.0,332.8,4.21,0.1,1.57,0.07,,,1.457,0.277104,"16,17,18,24,57,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,3952,1,False,False,False -320503729,3953.01,,3,4,3,3,1,4,4,16.1,51.6,71.48,1,0,0,PC,PC,13.3171,0.007,,1,qlp-s51-tois,QLP,17:38:00.73,59:38:36.5,-4.662,2.208,-6.315,2.208,2459711.899052,0.0012258,2.9873441,5.4e-06,1.668,0.147,6.63235,1.361041,6090.0,1252.78,,,790.978,1477.0,37.0,729.966,,5734.9,264.3,,,,,,,,,"14,15,16,17,18,19,20,21,22,23,24,40,41,47,48,49,50,51",2021-06-23,2022-09-02,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; no stellar radius; plx and distance and V-K indicate ~1.2 Rsun host which would make companion consistent with hot Jupiter at 3 day period,3953,1,False,False,True -316453500,3954.01,,3,4,3,3,1,4,4,88.4,130.8,317.0,4,0,0,PC,PC,13.3356,0.016,,1,qlp-s57-tois,QLP,21:35:56.43,61:12:32.79,-5.532,0.031,-8.597,0.03,2459878.252241,0.0018717,3.4043154,7.1e-06,0.805,0.357,10.163223,28.044834,9317.0,25499.5,20.3568,,113.665,909.0,13.0,499.795,3.98,5833.0,123.0,4.46,,1.0,,,,1.05,,"16,17,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,V-shaped; found in faint-star QLP search; possibly synchronized; variable host; possible ~2000 ppm secondary at half phase,3954,1,False,False,False -314375831,3955.01,,3,4,4,3,3,4,4,57.3,74.2,317.0,3,1,1,PC,PC,12.402,0.019,,1,spoc-s57-b0A,QLP,23:04:37.53,56:43:53.93,-0.849,0.041,-1.084,0.037,2459855.876841,0.0014548557,3.12780128548077,0.0002955943,2.52791585250354,0.103910014,14.206464,0.53052,12999.405299934,488.50806,17.2617584635553,0.94641364,1481.26766832219,1582.26104319459,25.099802,591.045,9.4085,6457.0,173.2,4.25,0.09,1.41321003437042,0.0663317,,,1.31,0.2125,"16,17,24,57",2021-06-23,2023-02-09,2023-02-25 12:10:55,found in faint-star QLP search,3955,1,False,False,True -309849817,3956.01,,3,4,3,3,2,4,4,46.7,117.2,110.45,2,0,2,PC,PC,13.0795,0.006,,1,qlp-s51-tois,QLP,15:16:52.82,51:23:52.28,-9.649,0.025,-0.18,0.032,2459716.708724,0.0013383,2.6686464,5.5e-06,1.249,0.171,8.031508,2.701173,7370.0,2484.78,12.9106,,332.941,1190.0,14.0,428.906,2.9675,5227.0,122.0,4.48,,0.9,,,,0.89,,"16,23,24,49,50,51",2021-06-23,2022-09-02,2023-07-07 00:00:00,V-shaped; found in faint-star QLP search; possibly synchronized; weak depth aperture correlation,3956,1,False,False,True -305550963,3957.01,,5,5,5,5,5,5,5,22.8,47.2,106.65,2,0,0,EB,FP,13.2445,0.05,,1,qlp-s56-tois,QLP,21:01:03.34,63:25:27.39,-23.138,0.118,-11.834,0.093,2459850.65687,0.0031291,1.5891628,6.2e-06,1.576,0.821,3.861221,0.728451,3550.0,670.703,12.5934,,1679.03,1783.0,13.0,928.965,48.253,6227.0,122.0,3.91,,2.0,,,,1.2,,"15,16,17,24,56",2021-06-23,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search,3957,1,False,False,False -279383896,3958.01,TIC 279383896.01,3,4,3,3,3,4,4,14.1,62.9,82.7,3,2,1,PC,PC,11.5687,0.006,,1,spoc-s58-b0A,QLP,23:18:44.63,63:15:01.79,5.784,0.047,-1.417,0.042,2459888.076856,0.0029100697,12.004373575161,0.0041443934,5.24299442527371,0.27408752,5.870813,0.291798,5392.62607094539,268.71994,10.8520225149923,0.73412395,234.545302956916,998.105467474113,18.221104,436.306,6.095,6362.0,193.3,4.25,0.09,1.40388000011444,0.0664824,,,1.266,0.207823,"17,18,24,58",2021-06-23,2023-03-09,2023-03-24 12:12:10,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3958,1,False,False,False -275421144,3959.01,,3,4,3,3,1,4,4,18.1,51.8,108.83,1,0,0,PC,PC,13.0367,0.025,,1,qlp-s56-tois,QLP,21:18:54.53,65:19:45.35,2.773,0.03,0.592,0.028,2459848.264998,0.0023725,3.8426038,1.22e-05,2.022,0.267,6.402972,0.420806,5880.0,387.502,12.7873,,453.87,1285.0,19.0,868.492,11.478,7032.0,122.0,4.19,,1.66,,,,1.55,,"16,17,18,24,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search; possible slight depth aperture correlation,3959,1,False,False,False -272785423,3960.01,TIC 272785423.01,3,4,3,3,1,4,4,37.6,99.9,121.25,3,0,0,PC,PC,13.2091,0.007,,1,qlp-s51-tois,QLP,15:55:25.9,67:02:34.75,-14.363,0.029,19.541,0.037,2459716.189621,0.000393,3.2399875,2e-06,2.749,0.055,20.20787,0.001296,18440.0,1.19405,13.613,,380.139,1230.0,146.0,541.735,5.269,5521.0,122.0,4.45,,0.97,,,,0.97,,"14,15,16,17,18,20,21,23,24,41,47,48,49,50,51",2021-06-23,2022-09-02,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3960,1,False,False,True -272219353,3961.01,,3,4,4,3,4,4,4,,,317.0,3,0,5,PC,PC,12.8669,0.069,,1,qlp-s57-tois,QLP,23:42:58.67,62:17:24.45,-3.074,0.078,-1.97,0.06,2459880.628277,0.001072,3.5434689,5.2e-06,1.849,0.326,22.228442,1.01231,20265.0,931.937,,,1741.24431854101,1647.53510701287,32.0,9842.0,2286.46,5354.0,153.8,,,,,,,,,"17,18,24,57",2021-06-23,2023-05-01,2023-05-01 00:00:00,found in faint-star QLP search; v-shaped; no radius; likely too large; weak odd-even,3961,1,False,False,False -271761420,3962.01,,3,4,3,3,3,4,4,32.3,33.1,317.0,1,0,1,PC,PC,12.4615,0.035,,1,qlp-s57-tois,QLP,23:40:19.46,62:08:12.29,-2.564,0.029,-3.162,0.029,2459879.600582,0.0023919,3.3501179,9.7e-06,1.651,0.338,4.423603,0.385625,4066.0,355.111,17.5987,1.15662,279.334,1138.0,15.0,836.639,14.7315,6238.0,259.6,3.7,0.09,2.57,0.12,,,1.21,0.193842,"17,18,24,57,58",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; slightly v-shaped transit,3962,1,False,False,False -271439193,3963.01,,3,4,3,3,3,4,4,28.4,31.3,317.0,0,0,1,PC,PC,12.2996,0.037,,1,qlp-s57-tois,QLP,23:36:33.2,60:31:34.35,-2.69,0.033,-11.485,0.032,2459876.941322,0.0065253,6.2329571,4.43e-05,3.043,1.003,2.572984,5.135116,2367.0,4718.45,14.2956,4.83828,1245.8,1655.0,9.0,488.547,4.733,6016.0,275.6,4.1,0.09,1.55,0.07,,,1.11,0.176516,"17,18,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; possible depth aperture correlation; asymmetric transit shape,3963,1,False,False,False -270435047,3964.01,,3,4,3,3,3,4,4,10.3,36.3,61.72,0,0,1,PC,PC,12.8114,0.023,,1,qlp,QLP,23:27:11.27,60:13:54.59,1.701,0.026,-2.624,0.022,2458979.203279,0.013274,1.8011961,0.0001854,3.23,0.861,2.478305,0.015488,2280.0,14.2653,9.1446,0.892622,8355.02,2663.0,10.0,1153.23,21.515,7588.0,212.0,4.09,0.09,1.99,0.07,,,1.76,0.298672,"17,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3964,1,False,False,False -269043098,3965.01,,3,4,3,3,1,4,4,35.6,52.8,317.0,1,1,0,PC,PC,12.8051,0.014,,1,spoc-s58-b0A,QLP,23:16:23,64:43:18.73,-0.507,0.027,-0.348,0.026,2459884.451221,0.002484244,4.72421746434433,0.00085019507,5.39959558187078,0.19915497,8.666886,0.331524,7950.72122116786,305.29785,19.7767599041824,1.0510501,2691.20491074164,1836.98851561069,18.113588,870.816,12.102,7220.0,152.6,3.98,0.08,2.15272998809814,0.0850905,,,1.62,0.267531,"17,18,24,57,58",2021-06-23,2023-02-23,2023-02-25 12:10:55,found in faint-star QLP search,3965,1,False,False,False -262880826,3966.01,,3,5,5,3,1,4,4,40.8,123.6,88.03,0,0,0,PC,APC,12.0753,0.006,,1,qlp-s50-tois,QLP,15:01:31.41,38:31:59.79,,,,,2459684.28561,0.0010929,3.9967263,6.9e-06,2.886,0.201,13.173576,0.004635,12060.0,4.26926,11.278,1.23484,265.248,1124.0,73.0,,,5313.6,49.6,,,1.0,0.11,0.416,0.047,,,"23,24,50",2021-06-23,2022-09-07,2022-12-14 12:09:24,found in faint-star QLP search,3966,1,False,False,False -256867493,3967.01,,3,4,3,3,4,4,4,47.3,89.1,317.0,0,1,3,PC,PC,12.1661,0.007,,1,qlp-s55-tois,QLP,20:06:41.56,61:10:09.66,0.967,0.053,-4.032,0.04,2459817.727215,0.0040409,4.6709424,1.37e-05,0.101,0.007,0.945002,11.218256,870.0,10279.2,21.2461,20.0333,2.26831,341.0,6.0,920.632,22.887,7211.0,123.1,4.14,0.09,1.79,0.08,,,1.62,0.263063,"14,15,16,17,21,24,41,51,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,low SNR found in faint-star QLP search; uncertain radius,3967,1,False,False,True -252071095,3968.01,,3,5,5,3,2,4,4,,,30.06,0,1,2,PC,APC,11.7345,0.006,,1,qlp-s57-tois,QLP,23:36:35.2,58:08:01.16,,,,,2459879.247689,0.0018105,2.2171904,5.7e-06,1.639,0.199,3.272994,0.188616,3010.0,173.707,,,180.255,1020.0,20.0,,,4656.0,227.3,,,,,,,,,"17,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; no stellar radius; v-shaped,3968,1,False,False,False -252049912,3969.01,,3,4,4,3,4,4,4,65.9,99.6,317.0,3,0,3,PC,PC,12.5806,0.006,,1,qlp-s57-tois,QLP,23:34:34.45,54:32:29.95,-2.926,2.146,3.814,2.146,2459876.29526,0.0012173,3.8522402,8.2e-06,4.195,0.156,18.776372,0.471111,17145.0,433.815,,,577.199,1365.0,29.0,608.077,,5371.2,266.3,,,,,,,,,"17,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; no radius; distance of 1.4 kpc from Gaia DR3; likely too large,3969,1,False,False,False -237221436,3970.01,,3,4,3,3,1,4,4,9.9,32.0,115.97,1,0,0,PC,PC,13.3604,0.008,,1,qlp-s58-tois,QLP,19:44:15.9,77:14:07.62,-1.088,0.026,7.764,0.029,2459894.325894,0.0041296,10.6001229,6.41e-05,5.375,1.332,6.65966,0.372059,6115.0,342.62,10.601,,240.751,1097.0,24.0,878.69,12.865,5647.0,122.0,4.08,,1.51,,,,1.0,,"14,17,18,19,20,23,24,40,47,50,52,53,54,57,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,3970,1,False,False,True -237077180,3971.01,,3,4,3,3,1,4,4,,,84.3,1,0,0,PC,PC,13.4642,0.015,,1,qlp-s55-tois,QLP,20:28:22.68,61:56:01.21,,,,,2459823.782533,0.0028575,3.2292942,1.17e-05,2.47,0.299,11.054594,0.730741,10130.0,672.811,,,,,21.0,,,,,,,,,,,,,"15,17,24,55",2021-06-23,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search; two stars in pixel; no stellar parameters,3971,1,False,False,True -284206913,3972.01,TIC 284206913.01,3,4,3,3,4,4,4,41.5,194.6,90.25,5,23,3,PC,PC,10.7486,0.006,,1,spoc-s58-b0A,QLP,00:37:13.22,61:12:18.35,147.833,0.038,-20.892,0.038,2459892.728666,0.0004578299,10.5103240198132,0.0006367652,3.12686992968969,0.046858612,16.437411,0.200119,15025.3901835517,184.29965,11.4241275572997,0.59653693,99.955727092402,806.43927445871,57.29808,162.569,0.702,5908.0,284.9,4.54,0.09,0.920732975006104,0.0463417,,,1.074,0.153089,"24,28",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),3972,1,False,False,False -233654042,3973.01,,3,5,5,3,1,4,4,16.6,55.5,58.22,2,0,0,PC,PC,13.0646,0.008,,1,qlp-s51-tois,QLP,15:18:43.18,44:27:22.34,-2.353,2.186,-10.91,2.186,2459716.388509,0.0024726,2.0615575,9.1e-06,1.694,0.256,4.96228,0.009455,4560.0,8.70865,,,723.916,1445.0,14.0,701.76,,6213.0,415.5,,,,,-0.154,0.064,,,"23,24,50,51",2021-06-23,2022-09-02,2023-04-03 00:00:00,found in faint-star QLP search; no stellar radius,3973,1,False,False,True -156007004,3974.01,,3,4,4,3,2,4,4,51.4,116.2,107.0,6,1,1,PC,PC,13.3926,0.006,,1,qlp-s51-tois,QLP,15:44:56.73,45:37:39.88,-25.992,0.028,22.655,0.034,2459715.060453,0.0005753,1.7922888,1.9e-06,1.622,0.077,20.694678,0.004257,18880.0,3.92121,12.6983,,318.713,1177.0,62.0,467.428,3.5335,5095.7,92.4,4.47,,0.89,,0.424,0.09,0.85,,"23,24,50,51",2021-06-23,2022-09-02,2023-07-07 00:00:00,found in faint-star QLP search,3974,1,False,False,True -155947004,3975.01,,5,5,5,5,5,5,5,25.1,143.1,67.4,1,3,2,PC,FP,11.8993,0.006,,1,qlp,QLP,15:09:13.41,44:42:03.15,15.141,0.032,-26.11,0.049,2458973.711868,0.0018493,9.4258906,0.0001267,2.406,0.19,4.842308,1.537677,4450.0,1415.25,9.65497,2.8658,76.541,824.0,16.0,135.0,0.3895,4507.0,123.7,4.64,0.1,0.67,0.05,,,0.708,0.0847465,"16,23,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3975,1,False,False,True -154293917,3976.01,,3,4,3,3,3,4,4,20.2,68.6,100.16,1,4,2,PC,PC,11.8136,0.007,,1,qlp,QLP,14:57:25.44,44:16:27.56,-19.913,0.032,9.882,0.046,2458978.133817,0.0009736,6.6080989,5.7e-05,3.928,0.183,7.342635,0.001269,6740.0,1.16844,12.1125,0.538039,298.497,1157.0,24.0,516.087,5.8525,5993.0,102.9,4.12,0.07,1.5,0.06,0.094,0.017,1.1,0.139154,"16,23,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3976,1,False,False,False -116382006,3977.01,,3,4,3,3,4,4,4,16.2,120.7,81.97,1,2,4,PC,PC,11.379,0.007,,1,qlp-s51-tois,QLP,15:24:30.37,46:41:40.26,19.527,0.034,-59.225,0.044,2459679.942181,0.0024894,23.2547644,9.41e-05,7.935,0.318,10.265151,0.005994,9410.0,5.52072,10.7553,0.583982,172.212,1009.0,44.0,221.536,0.9935,5627.0,124.1,4.55,0.08,0.88,0.04,,,1.0,0.125324,"16,23,24,50,51",2021-06-23,2022-09-02,2023-06-20 00:00:00,found in faint-star QLP search; two stars in pixel,3977,1,False,False,True -468329664,3978.01,,3,4,3,3,1,4,4,22.8,21.3,317.0,1,1,0,PC,PC,13.4497,0.008,,1,qlp-s52-tois,QLP,00:45:28.84,78:26:51.8,5.559,0.031,1.634,0.033,2459736.354717,0.0045428,3.5472157,2e-05,4.503,0.271,7.134965,0.004116,6550.0,3.79051,16.293,,992.177,1563.0,19.0,987.539,21.2415,5548.0,122.0,3.82,,2.02,,,,0.98,,"18,19,24,52",2021-06-23,2022-12-12,2022-12-14 12:09:24,found in faint-star QLP search,3978,1,False,False,True -444523623,3979.01,,5,5,5,5,5,5,5,12.5,42.9,59.02,0,0,0,PC,FP,12.9447,0.019,,1,qlp,QLP,00:58:14.09,61:05:58.27,-0.492,0.026,-4.173,0.025,2458979.93011,0.0068908,2.041659,0.0001213,3.521,0.95,3.512604,0.0189,3230.0,17.4073,8.90978,0.818121,5195.14,2365.0,13.0,871.833,14.29,6806.0,179.2,4.22,0.09,1.56,0.07,,,1.46,0.249219,"17,18,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3979,1,False,False,False -312548829,3980.01,,3,4,4,3,3,4,4,38.3,90.1,124.16,1,8,3,PC,PC,11.863,0.006,,1,qlp-s58-tois,QLP,00:51:22.06,59:34:33.1,17.157,0.04,3.013,0.041,2459907.83037,0.001638,3.6089193,7.8e-06,2.255,0.628,5.789353,6.707651,5318.0,6158.93,17.0677,5.86311,1247.0,1655.0,27.0,486.721,7.9765,5854.0,169.2,4.04,0.08,1.63,0.08,,,1.057,0.137496,"17,18,24,58",2021-06-23,2023-06-27,2023-06-27 00:00:00,found in faint-star QLP search; slightly v-shaped; multiple stars in pixel,3980,1,False,False,False -312548415,3981.01,,3,4,3,3,3,4,4,11.1,36.6,72.87,0,0,1,PC,PC,12.9165,0.013,,1,qlp,QLP,00:51:25.28,59:24:35.67,1.598,0.023,-2.099,0.025,2458981.5001,0.0079034,2.2437501,0.0001412,3.821,0.638,3.131432,0.009451,2880.0,8.70425,10.0826,0.775679,5651.55,2415.0,10.0,1172.52,27.93,7209.0,146.3,4.06,0.09,1.96,0.09,,,1.62,0.271239,"17,18,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3981,1,False,False,False -25773352,3982.01,,3,4,3,3,3,4,4,14.5,21.7,317.0,1,0,1,PC,PC,12.9324,0.011,,1,qlp-s57-tois,QLP,23:30:13.55,53:09:22.86,-3.06,0.025,-2.821,0.022,2459881.803399,0.0033045,5.3438948,2.31e-05,4.139,0.368,7.057372,0.315681,6479.0,290.711,16.9428,0.920814,1248.08,1655.0,18.0,1619.19,48.09,7469.0,143.4,3.95,0.08,2.3,0.1,,,1.72,0.28037,"17,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,3982,1,False,False,False -20303110,3983.01,,5,5,5,5,5,5,5,37.7,142.7,60.01,0,0,0,PC,FA,11.208,0.018,,1,qlp,QLP,15:15:19.91,40:16:01.04,-7.83,2.0,-74.56,2.0,2458975.507347,0.0007941,3.8961515,0.0001082,1.742,0.257,9.399617,0.005572,8620.0,5.13169,8.40446,0.509456,152.54,979.0,64.0,,,5477.2,22.6,,,0.87,0.05,0.104,0.021,,,"23,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3983,1,False,False,True -20182780,3984.01,,3,5,5,3,4,4,4,19.0,113.6,41.6,5,0,1,PC,CP,13.4609,0.007,,1,qlp-s51-tois,QLP,15:05:20.92,36:47:13.11,-48.936,0.051,42.685,0.055,2459715.022491,0.0011495,4.3533211,8.6e-06,1.894,0.137,23.86426,0.01137,21740.0,10.4724,7.17236,0.270225,14.9972,548.0,35.0,108.883,0.4305,3422.0,157.0,4.77,0.01,0.46,0.01,,,0.461976,0.0203091,"23,24,50,51",2021-06-23,2022-09-02,2023-02-16 12:02:34,found in faint-star QLP search,3984,1,False,False,True -604863428,3985.01,,5,5,5,5,5,5,5,21.7,26.8,317.0,0,0,0,PC,FP,13.2638,0.006,,1,qlp,QLP,00:35:03.01,58:08:11.11,-9.27,0.405,3.321,0.435,2458981.690526,0.0074765,3.2358535,0.0001731,3.777,0.598,5.944363,0.017442,5460.0,16.0641,,,656.917,1410.0,11.0,1432.74,829.62,5095.6,1222.5,,,,,,,,,"17,18,24",2021-06-23,2021-06-23,2023-04-06 00:00:00,found in faint-star QLP search,3985,1,False,False,False -470911286,3986.01,,3,4,3,3,1,4,4,16.9,26.3,75.99,0,0,0,PC,PC,12.5225,0.121,,1,qlp,QLP,00:04:31.05,66:24:10.96,-24.456,0.031,5.743,0.029,2458981.484997,0.0078905,1.6212474,8.63e-05,3.262,0.477,1.194967,0.003855,1100.0,3.55088,10.3122,,1846.95,1826.0,10.0,614.539,7.1835,4949.0,122.0,,,3.11,,,,,,"17,18,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3986,1,False,False,False -452972453,3987.01,,5,5,5,5,5,5,5,13.0,40.8,95.95,0,0,0,PC,FA,12.753,0.019,,1,qlp,QLP,00:35:02.97,58:08:11.21,,,,,2458981.689588,0.0072832,3.2358247,0.0001465,3.629,0.682,3.545282,0.011948,3260.0,11.0042,,,,,11.0,1308.27,,,,,,,,,,,,"17,18,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3987,1,False,False,False -452938965,3988.01,,3,4,3,3,3,4,4,36.4,38.3,317.0,5,3,1,PC,PC,12.2454,0.063,,1,spoc-s58-b0A,QLP,00:34:02.02,58:50:39.45,2.964,0.038,-6.464,0.036,2459884.528725,0.0024089722,2.87504500936744,0.0005000933,4.79531675198415,0.17432028,5.560699,0.198801,5108.50033333173,183.08603,16.4237890040234,0.9857443,3745.2995293643,1995.22275220225,17.745985,773.366,17.554,6334.0,394.2,3.86,0.11,2.17347002029419,0.109045,,,1.25,0.260763,"17,18,24,58",2021-06-23,2023-02-23,2023-02-25 12:10:55,found in faint-star QLP search; multiple stars in pixel,3988,1,False,False,False -444413256,3989.01,,1,4,1,3,4,4,4,,,317.0,4,1,2,PC,PC,11.9551,0.026,,1,qlp-s58-tois,QLP,00:25:32.76,63:02:26.29,-3.39,0.039,-0.993,0.037,2459905.714944,0.0018957,4.0104917,9.5e-06,2.293,0.311,6.589747,0.302157,6051.0,278.258,,,5306.6,2377.0,30.0,2949.29,247.26,12373.0,141.0,,,,,,,,,"17,18,24,58",2021-06-23,2023-06-27,2023-06-27 00:00:00,found in faint-star QLP search; no stellar radius in TIC but Gaia DR2 stellar radius is 5.86 Rsun,3989,1,False,False,False -420446142,3990.01,,5,5,5,5,5,5,5,15.3,26.7,317.0,0,0,0,PC,FP,11.6697,0.011,,1,qlp,QLP,00:20:28.16,63:01:53.03,-3.36,0.042,-1.62,0.033,2458980.604616,0.0060477,5.8423636,0.0002217,2.416,0.419,2.478305,0.007578,2280.0,6.97953,18.7395,1.43879,716.73,1441.0,10.0,1552.26,58.935,8648.0,158.4,3.6,0.08,3.85,0.19,,,2.16,0.333123,"17,18,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped found in faint-star QLP search,3990,1,False,False,False -418133917,3991.01,,3,4,3,3,4,4,4,22.3,15.4,317.0,0,0,4,PC,PC,12.1197,0.016,,1,qlp,QLP,00:00:48.58,62:48:10.96,6.569,0.044,-2.549,0.042,2458981.868452,0.0070242,2.2774846,0.0001184,3.756,0.592,1.651575,0.004339,1520.0,3.99662,17.7506,,1146.77,1621.0,12.0,1089.93,37.43,4827.0,122.0,,,4.7,,,,,,"17,18,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3991,1,False,False,True -403347341,3992.01,,3,4,3,3,3,4,4,36.0,53.3,317.0,1,1,3,PC,PC,12.4316,0.006,,1,qlp-s57-tois,QLP,00:22:30.1,57:52:23.79,-9.079,2.091,-7.725,2.091,2459886.886979,0.0027294485,6.3978904,1.33e-05,1.846,0.43,11.49013,0.797313,10527.0,734.083,,,51.6244,746.0,27.0,673.065,,5324.0,314.0,,,,,,,,,"17,18,24,57,58",2021-06-23,2023-05-08,2023-06-16 12:14:51,V-shaped; found in faint-star QLP search; no stellar radius; Teff and plx indicate likely G star,3992,1,False,False,False -403340402,3993.01,,3,4,4,3,3,4,4,29.9,94.7,68.15,5,1,4,PC,PC,11.5625,0.006,,1,spoc-s58-b0A,QLP,00:21:45.12,59:06:20.72,-2.415,1.319,-1.114,1.319,2459882.86391,0.0020856948,2.22215526661789,0.00026296458,1.49199353702619,0.2828596,4.715784,0.379509,4333.97825427198,349.4796,9.68439968016268,2.391021,1750.0716528407,1649.61921668921,12.178342,457.461,,6424.0,,,,1.43990004062653,,,,,,"17,18,24,57,58",2021-06-23,2023-02-23,2023-05-23 00:00:00,V-shaped; found in faint-star QLP search; ~4 sigma odd-even in SPOC s57 TEC plots,3993,1,False,False,False -372505528,3994.01,,5,5,5,5,5,5,5,12.2,57.3,38.14,1,0,1,PC,FP,11.0986,0.006,,1,qlp,QLP,00:24:33.65,62:14:08.27,-8.743,0.043,0.395,0.042,2458977.165523,0.0028761,3.8974136,7.79e-05,2.061,0.378,2.162768,0.003493,1990.0,3.21743,6.8757,0.423689,504.623,1320.0,19.0,400.234,5.4845,6827.0,188.2,4.25,0.09,1.51,0.07,,,1.473,0.251343,"17,18,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3994,1,False,False,False -347210614,3995.01,,3,5,5,3,3,4,4,82.5,204.8,317.0,0,2,2,PC,APC,12.1602,0.006,,1,qlp-s57-tois,QLP,00:06:22.91,56:11:32.8,2.398,1.677,-5.272,1.677,2459870.688806,0.0009887,6.4219775,8.1e-06,4.211,0.276,24.157304,3.023606,22004.0,2780.97,,,803.471,1483.0,53.0,741.884,,6197.0,487.1,,,,,,,,,"17,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; TFOP APC/SB1; no stellar radius; host is likely evolved F star,3995,1,False,False,False -347011522,3996.01,,3,4,3,3,3,4,4,28.1,64.0,317.0,1,3,1,PC,PC,12.0205,0.013,,1,qlp,QLP,00:04:44.81,54:11:48.05,-5.079,0.049,-8.636,0.041,2458973.929734,0.0068966,17.2045725,0.0008618,4.987,0.656,4.100961,2.14002,3770.0,1969.09,21.5086,8.69046,434.974,1272.0,11.0,659.762,14.4015,6278.0,139.0,4.03,0.09,1.77,0.08,,,1.23,0.171578,"17,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,3996,1,False,False,False -327004130,3997.01,,3,4,4,3,1,4,4,34.8,36.4,317.0,2,0,0,PC,PC,12.9854,0.022,,1,qlp-s58-tois,QLP,00:13:34.28,59:53:47.52,-6.894,0.03,-2.069,0.024,2459908.19918,0.001638,3.4600026,7.1e-06,1.827,0.566,8.955066,9.614599,8214.0,8816.28,17.6761,5.73074,744.569,1455.0,19.0,654.004,8.166,5997.0,191.2,4.21,0.08,1.37,0.07,,,1.11,0.151736,"17,18,24,57,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search; slightly v-shaped,3997,1,False,False,False -320281287,3998.01,,3,4,3,3,3,4,4,71.8,159.0,117.72,4,3,1,PC,PC,12.1134,0.006,,1,qlp-s57-tois,QLP,00:30:32.88,56:19:53.28,40.387,0.042,-3.846,0.041,2459880.386105,0.0005449,1.81451,1.2e-06,1.746,0.129,14.057524,0.530416,12864.0,488.412,13.3431,0.755071,609.008,1383.0,64.0,399.813,5.5985,5696.0,148.9,4.31,0.08,1.17,0.06,,,1.014,0.12664,"17,18,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; multiple stars in pixel,3998,1,False,False,False -284528889,3999.01,,5,5,5,5,5,5,5,15.2,39.2,67.63,1,2,2,PC,FP,11.6437,0.042,,1,qlp,QLP,00:39:46.92,62:23:36.09,33.535,0.045,-8.554,0.042,2458981.890738,0.0046321,4.112385,0.0001344,3.474,0.666,2.293324,0.005233,2110.0,4.81944,9.65749,0.752702,570.966,1361.0,16.0,525.173,8.3505,5659.0,262.1,3.78,0.09,2.14,0.12,,,1.0,0.143718,"17,18,24",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,3999,1,False,False,False -283015592,4000.01,,3,4,3,3,3,4,4,49.8,86.1,317.0,1,1,1,PC,PC,12.5696,0.024,,1,qlp-s57-tois,QLP,00:03:53.91,64:46:34.75,-2.869,0.033,-1.98,0.028,2459879.948933,0.0012595,3.7027104,5.8e-06,3.572,0.205,14.001431,0.407737,12813.0,375.469,21.058,0.868727,1803.49,1815.0,37.0,878.067,15.691,7493.0,216.7,4.12,0.08,1.9,0.07,,,1.73,0.284007,"17,18,24,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,4000,1,False,False,False -83148519,4001.01,,3,4,3,3,4,4,4,7.2,42.2,23.01,0,2,4,PC,PC,11.7194,0.006,,1,qlp-s58-tois,QLP,00:10:06.95,64:34:21.24,38.466,0.046,-7.044,0.039,2459904.236518,0.0036001,4.8982659,2e-05,2.874,0.59,2.233484,0.136007,2055.0,125.259,4.84123,0.315159,293.004,1152.0,14.0,315.572,2.672,5696.0,459.4,4.37,0.13,1.09,0.06,,,1.014,0.234312,"17,18,24,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,4001,1,False,False,False -83053699,4002.01,,5,5,5,5,5,5,5,32.5,40.4,317.0,0,0,0,PC,FP,12.9214,0.009,,1,qlp-s57-tois,QLP,00:09:20.53,60:09:32.68,0.806,0.024,-4.529,0.024,2459876.382409,0.0037281,3.3378852,1.63e-05,3.261,1.312,6.057905,1.353682,5564.0,1246.01,19.0038,2.06249,1878.15,1834.0,15.0,1083.39,21.485,6274.0,135.0,3.86,0.09,2.15,0.11,,,1.22,0.179127,"17,18,24,57",2021-06-23,2023-05-01,2023-05-24 12:02:54,found in faint-star QLP search,4002,1,False,False,False -399346877,4003.01,TIC 399346877.01,3,4,3,3,1,4,4,16.7,53.6,81.12,0,1,0,PC,PC,12.9762,0.014,,1,qlp-s52-tois,QLP,01:45:50.94,63:55:28.98,6.212,0.02,4.976,0.025,2459718.824292,0.002454498,3.9606593,2.12e-05,3.442,0.244,6.326524,0.004358,5810.0,4.01372,10.7218,0.560209,970.247,1554.0,18.0,626.396,6.7525,6647.0,146.7,4.29,0.1,1.4,0.06,,,1.4,0.249422,"18,24,25,52,58",2021-06-23,2023-03-22,2023-03-24 12:12:10,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),4003,1,False,False,True -397924314,4004.01,,3,4,3,3,1,4,4,21.0,66.1,93.18,2,0,0,PC,PC,12.849,0.006,,1,qlp-s52-tois,QLP,01:31:53.64,66:49:09.6,-7.573,2.232,8.172,2.232,2459882.88297,0.002050122,5.3798996,2.22e-05,2.85,0.199,9.322957,0.006819,8550.0,6.28051,7.09264,0.429372,104.667,891.0,22.0,515.607,,4930.3,133.5,,,0.76,0.04,,,,,"18,24,25,52,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search,4004,1,False,False,True -395773226,4005.01,,5,5,5,5,5,5,5,13.5,41.4,44.16,0,0,0,PC,FP,11.7899,0.006,,1,qlp,QLP,02:16:28.78,76:15:11.45,8.866,0.043,-49.591,0.062,2459008.270987,0.0056147,3.8471662,0.0001144,2.214,0.422,1.923456,0.006966,1770.0,6.4163,7.48475,0.678934,173.747,1011.0,11.0,329.268,3.4895,5115.0,159.8,3.91,0.09,1.69,0.11,,,0.86,0.102923,"18,25",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4005,1,False,False,True -390048041,4006.01,,5,5,5,5,5,5,5,113.9,332.9,317.0,0,0,0,O,FA,12.715,0.018,,1,spoc-s52-b0A,QLP,01:35:46.46,65:38:19.63,-10.022,2.187,3.159,2.187,2459720.303663,0.0029281348,3.04916671740863,0.00068440975,4.02628354848046,0.24105516,7.234479,0.375678,6641.05154204516,345.95218,,,589.903716512744,1256.9414051478,13.925139,,,4579.5,433.4,,,,,,,,,"18,24,25,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; TOI4006.01:Same signal as TOI-4075.01 but this star is reported as a phantom so has been retired as an FA.,4006,1,False,False,True -389910188,4007.01,,3,4,4,3,3,4,4,32.6,120.7,113.45,2,0,1,PC,PC,12.4705,0.006,,1,spoc-s58-b0A,QLP,01:34:37.36,62:19:31.86,5.9,0.027,-2.89,0.032,2459883.264542,0.0012776033,4.54318721408868,0.00041819212,3.65210612889845,0.09947123,13.012046,0.395279,11913.0087604108,363.9993,13.0703951498979,0.563194,1097.24231983048,1467.89633783233,25.038292,511.571,6.42,7998.0,592.7,4.6,0.1,1.15674996376038,0.041789,,,1.929,0.390565,"18,24,25,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search,4007,1,False,False,False -379629854,4008.01,,3,4,3,3,3,4,4,6.6,37.3,16.72,0,2,1,PC,PC,10.702,0.006,,1,qlp-s52-tois,QLP,02:17:10.53,70:23:45.53,13.076,0.038,-7.418,0.045,2459008.075403,0.0074598,2.8278059,2.35e-05,2.174,0.347,0.705958,0.001834,650.0,1.68872,4.22619,0.307616,885.332,1519.0,10.0,311.774,2.6125,6603.0,501.3,4.16,0.12,1.62,0.08,,,1.379,0.292712,"18,19,25,52,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search; centroid offset on TIC 379629860 in SPOC s58,4008,1,False,False,True -368734712,4009.01,,3,4,3,3,3,4,4,27.2,27.0,317.0,1,2,1,PC,PC,12.1693,0.014,,1,qlp-s52-tois,QLP,00:51:07.18,70:56:44.92,8.988,0.039,-3.905,0.035,2459882.41759,0.0021567023,4.3271416,1.67e-05,2.382,0.493,5.813367,0.009018,5340.0,8.30595,14.5369,0.932703,400.919,1246.0,28.0,670.801,10.726,5994.0,151.8,3.92,0.08,1.91,0.09,,,1.1,0.147008,"18,24,25,52",2021-06-23,2023-02-22,2023-02-23 00:00:00,found in faint-star QLP search,4009,1,False,False,True -352682207,4010.01,,3,5,5,3,4,4,4,14.5,76.4,31.73,20,2,4,PC,CP,11.5163,0.006,,1,qlp-s52-tois,QLP,01:20:51.56,66:04:19.92,38.616,0.038,-20.377,0.045,2459736.442636,0.0020617,5.4146395,1.77e-05,2.558,0.363,5.180444,0.005833,4760.0,5.37202,6.17589,0.459577,96.42,872.0,24.0,177.504,0.988,4888.0,137.7,4.45,0.09,0.88,0.06,,,0.799,0.0969893,"24,25,52",2021-06-23,2022-12-12,2023-06-09 12:02:55,found in faint-star QLP search; part of multi-planet system,4010,1,True,False,True -352682207,4010.02,,3,5,5,3,4,4,4,7.1,59.1,35.03,20,2,4,PC,CP,11.5163,0.006,,2,spoc-s14-s60-b0A-PC,QLP,01:20:51.56,66:04:19.92,38.616,0.038,-20.377,0.045,2459721.424279,0.0020009635,14.7091662400563,0.00023405314,3.62781517609625,0.18418574,5.494603,0.219267,5047.93263107877,201.932,6.54717871184406,0.5916236,33.3030602285608,612.689990405273,18.941128,177.504,0.988,4888.0,137.7,4.45,0.09,0.880213022232056,0.0571608,,,0.799,0.0969893,"24,25,52,58",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; part of multi-planet system,4010,2,True,False,True -352682207,4010.03,,2,5,5,2,4,4,4,9.5,57.4,10.35,20,2,4,PC,CP,11.5163,0.006,,3,spoc-s14-s60-b0A-PC,QLP,01:20:51.56,66:04:19.92,38.616,0.038,-20.377,0.045,2459741.038966,0.0037803,1.34830750211922,2.0848162e-05,1.75683308208086,0.33433175,1.310572,0.097113,1206.35358839254,89.4403,3.19498757173598,1.4817452,805.779628020242,1358.85720160159,11.874824,177.504,0.988,4888.0,137.7,4.45,0.09,0.880213022232056,0.0571608,,,0.799,0.0969893,"24,25,52,58",2021-07-08,2023-05-19,2023-06-16 12:14:51,Found independently by A. Vanderburg + QLP faint-star search; multi planet system,4010,3,True,False,True -289264348,4011.01,,3,4,3,3,1,4,4,21.8,53.2,126.59,1,0,0,PC,PC,13.2395,0.013,,1,qlp-s52-tois,QLP,01:38:24.24,72:59:35.41,-15.533,0.029,3.866,0.032,2459740.018427,0.0051811,4.3359117,3.01e-05,3.461,0.365,9.301055,0.010446,8530.0,9.62132,13.9797,,485.004,1307.0,20.0,764.591,11.5355,5815.0,122.0,4.1,,1.51,,,,1.05,,"18,19,25,52,58",2021-06-23,2023-02-22,2023-02-25 12:10:55,found in faint-star QLP search,4011,1,False,False,True -280315875,4012.01,,3,4,3,3,1,4,4,69.7,139.2,95.45,4,1,0,PC,PC,13.3507,0.006,,1,qlp-s52-tois,QLP,02:45:35.72,66:21:33.23,-16.957,0.022,-22.559,0.033,2459883.126997,0.0007991784,1.82544,2.3e-06,1.744,0.091,23.764377,0.008188,21650.0,7.54176,11.7503,,181.783,1022.0,55.0,245.737,1.357,4324.0,122.0,4.49,,0.77,,,,0.676,,"18,19,25,52,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search,4012,1,False,False,True -279265701,4013.01,,3,4,3,3,1,4,4,24.1,18.4,317.0,0,0,0,PC,PC,13.0217,0.009,,1,qlp-s52-tois,QLP,01:43:09.87,70:54:51.93,3.42,0.028,-5.921,0.029,2459740.947451,0.0059775,2.6325313,1.89e-05,4.167,0.342,4.591502,0.004137,4220.0,3.80991,15.2766,,1493.24,1731.0,17.0,851.105,12.5925,5407.0,122.0,3.64,,2.42,,,,0.94,,"18,19,24,25,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search,4013,1,False,False,True -85791385,4014.01,,3,4,3,3,1,4,4,39.9,104.1,119.32,0,0,0,PC,PC,13.4891,0.02,,1,qlp-s52-tois,QLP,03:52:49.12,68:46:38.88,-3.418,0.022,1.313,0.029,2459738.792333,0.0015166,2.8067423,6.2e-06,1.997,0.17,19.312272,0.012591,17630.0,11.597,13.4381,,361.087,1214.0,30.0,562.401,5.8965,5863.0,122.0,4.48,,0.98,,,,1.06,,"19,25,52",2021-06-23,2022-09-16,2022-12-14 12:09:24,found in faint-star QLP search; two stars in pixel,4014,1,False,False,True -85429139,4015.01,TIC 85429139.01,3,4,4,3,3,4,4,89.7,120.5,317.0,3,3,1,PC,PC,10.767,0.006,,1,qlp-s52-tois,QLP,03:33:40.8,68:36:45.6,24.156,0.036,-18.145,0.044,2459738.474297,0.0004105,4.7427131,3e-06,3.115,0.082,14.823314,0.001104,13560.0,1.01718,17.876,0.87203,320.783,1179.0,156.0,309.161,2.854,5947.0,150.8,4.12,0.08,1.51,0.07,,,1.087,0.144013,"19,25,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),4015,1,False,False,True -461491274,4016.01,,3,4,3,3,1,4,4,,,47.8,1,0,0,PC,PC,13.1216,0.006,,1,spoc-s58-b0A,QLP,00:21:06.71,66:49:56.44,2.496,2.183,-0.106,2.183,2459883.702209,0.0036788837,1.81429431042877,0.00044375937,1.76934694071879,0.29538348,5.657044,0.679372,5196.78005104966,625.52856,,,1178.72467509136,1494.42059248882,7.930744,,,4032.5,113.0,,,,,,,,,"17,18,24,25,58",2021-06-23,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search; no stellar radius; Gaia astrometry indicates host is likely part of binary,4016,1,False,False,False -407313319,4017.01,,3,4,3,3,2,4,4,20.1,18.9,317.0,1,0,2,PC,PC,12.636,0.025,,1,qlp-s52-tois,QLP,00:30:57.5,68:27:18.39,-2.673,0.029,-1.635,0.024,2459741.999561,0.0037639,7.0423707,3.65e-05,2.687,0.266,6.413894,0.007712,5890.0,7.10255,14.7821,,56.09,762.0,20.0,558.336,5.8795,4892.0,122.0,,,1.88,,,,,,"18,24,25,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; two stars in pixel; neighbor TIC 608401644 with Tmag ~16.8,4017,1,False,False,True -407243316,4018.01,,3,4,3,3,1,4,4,,,48.2,2,0,0,PC,PC,13.4612,0.006,,1,spoc-s58-b0A,QLP,00:28:51.35,66:28:05.48,-1.383,2.223,-0.584,2.223,2459883.866012,0.0030775573,3.07833050580257,0.00065342285,1.53443950252965,0.51382977,5.711708,0.776195,5246.86451590794,714.64667,,,582.463923996536,1252.9594254827,7.7772613,,,4355.4,177.7,,,,,,,,,"17,18,24,25,58",2021-06-23,2023-03-09,2023-03-24 12:12:10,found in faint-star QLP search; some ramp-like transits; low SNR,4018,1,False,False,False -284305328,4019.01,,3,4,3,3,1,4,4,76.5,100.0,317.0,2,0,0,PC,PC,12.6967,0.006,,1,qlp-s25-faintsearch,QLP,00:36:41,65:56:14.95,-2.717,0.028,-2.005,0.028,2459883.460104,0.0024420777,2.2963814,2.19e-05,2.649,0.248,8.666096,0.28633,7950.0,263.685,20.9239,6.70331,5163.1,2361.0,49.0,554.728,5.6135,6620.0,1539.9,4.04,,1.87,0.52,,,1.387,,"17,18,24,25,58",2021-06-23,2023-03-10,2023-03-10 00:00:00,V-shaped; found in faint-star QLP search; Gaia DR2 Rstar ~2.04 slightly larger than TIC value; nearby TIC 284305330 (delta Tmag 3.2 separation 4.52''),4019,1,False,False,False -10974783,4020.01,,5,5,5,5,5,5,5,57.8,98.1,317.0,0,0,0,O,FA,11.852,0.201,,1,spoc-s58-b0A,QLP,01:57:41.53,63:54:15.8,,,,,2459883.685925,0.0024792883,3.2175308,5.74e-05,3.91581716917766,0.13342062,12.898369,0.491418,11809.5500699444,452.5102,,,1947.38686740541,1694.27073276184,20.044277,1245.57,,,,,,,,,,,,"18,24,25,52,58",2021-06-23,2023-02-01,2023-02-09 12:10:04,found in faint-star QLP search; TFOP FA/Phantom,4020,1,False,False,True -10507330,4021.01,,3,4,3,3,3,4,4,26.0,72.5,106.43,3,14,1,PC,PC,11.08,0.006,,1,qlp-s52-tois,QLP,01:54:37.85,64:34:11.46,13.144,0.034,-4.132,0.04,2459737.995607,0.0023506,5.1175439,1.78e-05,1.483,0.394,3.360119,0.009596,3090.0,8.83789,12.6029,0.867576,131.814,943.0,19.0,488.31,6.394,6429.0,195.1,3.92,0.09,2.07,0.09,,,1.298,0.220097,"18,24,25,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; slight odd-even,4021,1,False,False,True -1271152446,4022.01,,3,5,5,3,1,4,4,8.3,45.7,42.45,2,0,0,PC,PC,13.3972,0.006,,1,qlp-s49-tois,QLP,17:00:30.93,59:37:32.38,-12.584,0.457,9.774,0.506,2459652.598161,0.0020883,7.2089041,2.35e-05,3.445,0.155,6.68697,0.003038,6140.0,2.79796,,,,,31.0,506.754,63.5655,,,,,,,,,,,"14,15,16,17,18,19,20,21,22,23,25,40,41,47,48,49",2021-06-23,2022-08-19,2022-12-14 12:09:24,found in faint-star QLP search; no stellar parameters and a Gaia DR3 RUWE of 6.422635; Rp/R* of 8%,4022,1,False,False,True -470678283,4023.01,,3,4,3,3,1,4,4,,,77.54,2,0,0,PC,PC,13.4975,0.006,,1,qlp-s52-tois,QLP,19:48:07.89,85:04:33.79,-3.171,2.248,-1.11,2.249,2459768.045481,0.0012044,2.7991658,5.5e-06,2.157,0.101,10.013089,0.003915,9180.0,3.60598,,,201.078,1049.0,38.0,,,4841.6,165.3,,,,,,,,,"18,19,20,25,40,47,52",2021-06-23,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,4023,1,False,False,True -470169396,4024.01,,3,4,3,3,1,4,4,11.6,30.7,107.76,0,0,0,PC,PC,13.2309,0.008,,1,qlp-s58-tois,QLP,22:22:30.63,78:15:44.4,-0.965,0.099,-2.444,0.103,2459909.262917,0.0037756,6.3262148,2.97e-05,5.353,0.399,5.363735,0.219624,4928.0,202.261,12.5231,,558.3,1354.0,20.0,958.682,59.929,5842.0,122.0,3.9,,1.9,,,,1.05,,"17,18,19,24,25,52,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,4024,1,False,False,True -441730540,4025.01,,3,4,3,3,1,4,4,3.3,20.9,49.24,1,0,0,PC,PC,13.3177,0.007,,1,qlp-s56-tois,QLP,17:09:47.73,77:29:07.18,-1.806,0.023,-2.549,0.031,2459826.494303,0.0045364,16.2840915,0.0001063,6.45,0.81,5.005909,0.254021,4600.0,233.935,7.99273,,121.312,924.0,27.0,769.204,8.56,5770.0,122.0,4.29,,1.2,,,,1.03,,"14,16,17,18,19,20,21,22,24,25,40,41,47,48,49,50,51,52,53,54,55,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,4025,1,False,False,True -428963229,4026.01,,3,4,3,3,1,4,4,18.0,57.8,58.74,1,0,0,PC,PC,13.1759,0.006,,1,spoc-s58-b0A,QLP,23:01:37.31,73:36:35.62,19.403,2.211,2.667,2.21,2459885.41741,0.0025061076,3.12348527254455,0.0006181605,2.67378775358153,0.29067016,5.970412,0.390229,5483.86121785755,359.35,,,571.26385089347,1246.89227796414,13.505573,497.594,,4861.0,317.5,,,,,,,,,"17,18,19,24,25,52,58",2021-06-23,2023-02-23,2023-02-25 12:10:55,found in faint-star QLP search; no stellar radius,4026,1,False,False,True -427866520,4027.01,,2,4,2,2,4,4,4,3.7,35.5,7.71,1,2,6,PC,PC,11.3099,0.006,,1,qlp-s58-tois,QLP,23:32:38.07,69:25:19.71,14.375,0.051,17.256,0.044,2459907.148211,0.0053857,3.6074546,2.48e-05,2.197,0.549,1.268881,0.102181,1168.0,94.108,2.69934,0.222211,297.468,1156.0,10.0,207.243,1.0755,5593.0,202.1,4.52,0.08,0.91,0.05,,,0.988,0.130939,"17,18,24,25,57,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,4027,1,False,False,False -406634633,4028.01,,3,4,3,3,1,4,4,36.2,40.7,317.0,2,1,0,PC,PC,13.0911,0.021,,1,qlp-s52-tois,QLP,23:40:55.35,69:58:28.03,6.993,0.029,-1.151,0.023,2459884.285896,0.0017758795,3.9589142,8.8e-06,2.42,0.192,17.688811,0.010454,16160.0,9.62841,15.2242,,301.848,1161.0,40.0,610.074,6.276,5963.0,122.0,4.3,,1.22,,,,1.09,,"17,18,24,25,52,58",2021-06-23,2023-05-19,2023-05-19 00:00:00,found in faint-star QLP search,4028,1,False,False,True -393633044,4029.01,,3,4,3,3,4,4,4,12.2,61.9,35.57,2,3,5,PC,PC,11.1718,0.006,,1,qlp-s51-tois,QLP,15:56:56.09,16:58:49.03,-8.656,0.045,13.937,0.039,2459711.649348,0.0062249,5.8850401,5.22e-05,3.622,0.276,3.294775,0.002541,3030.0,2.34006,6.61503,0.355533,282.509,1142.0,11.0,274.436,3.3085,5712.4,108.5,4.3,0.07,1.18,0.05,0.10068,0.0461715,1.018,0.127225,"24,25,51",2021-06-23,2022-09-02,2022-12-14 12:09:24,found in faint-star QLP search,4029,1,False,False,True -390021939,4030.01,,3,4,4,3,1,4,4,6.9,31.8,25.85,1,0,0,PC,PC,13.2338,0.007,,1,qlp-s52-tois,QLP,18:30:29.48,56:46:13.63,-3.878,0.029,-12.609,0.029,2459764.28652,0.0027977,2.5089892,9.2e-06,2.341,0.234,3.229435,0.002408,2970.0,2.21766,5.46523,,609.961,1384.0,22.0,571.615,4.45,5574.0,122.0,4.44,,0.99,,,,0.98,,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,48,49,50,51,52,54,56",2021-06-23,2022-12-08,2022-12-16 12:08:26,found in faint-star QLP search,4030,1,False,False,True -389968080,4031.01,,3,4,3,3,1,4,4,26.7,47.8,317.0,1,0,0,PC,PC,13.2687,0.007,,1,spoc-s14-s55-b0A-PC,QLP,18:29:18.11,55:19:13.89,5.591,0.153,-0.539,0.165,2459648.530836,0.0014309,10.046262153113,7.328134e-05,2.19563619748962,0.08344847,19.685577,0.795193,17967.7072776186,732.13184,16.1673774603688,4.0002275,97.2900533957619,801.008011837078,38.944843,565.437,22.707,5637.9,89.8,4.49,,0.945159018039703,,-0.044,0.087,1.0,,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,51,52,53,54,55",2021-06-23,2023-03-14,2023-03-24 12:12:10,possible odd-even; found in faint-star QLP search; slightly v-shaped; possible secondary not at half phase,4031,1,False,False,True -387603144,4032.01,,5,5,5,5,5,5,5,4.4,37.0,9.59,1,2,3,PC,FP,11.0498,0.006,,1,qlp,QLP,20:52:23.65,66:35:57.53,-6.345,0.044,-28.165,0.043,2459007.401949,0.0067776,2.4567112,7.92e-05,1.716,0.886,0.575593,0.013343,530.0,12.2897,3.05136,0.467354,614.383,1387.0,9.0,296.012,2.1815,6223.0,125.1,4.39,0.08,1.16,0.05,,,1.201,0.170375,"15,16,17,18,24,25",2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4032,1,False,False,False -387330895,4033.01,,3,4,3,3,1,4,4,,,92.53,2,0,0,PC,PC,13.2787,0.01,,1,qlp-s58-tois,QLP,20:40:24.11,67:32:01.68,-1.142,2.175,-5.368,2.177,2459905.03388,0.000774,3.6142971,3.6e-06,2.016,0.518,15.548892,25.97472,14219.0,23639.7,,,,,44.0,,,,,,,,,,,,,"15,16,17,18,24,25,52,56,57,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,V-shaped; found in faint-star QLP search; no stellar radius; Teff indicates K star; Gaia DR3 RV error is ~16 km/s,4033,1,False,False,True -375654303,4034.01,,3,4,3,3,3,4,4,53.3,52.9,317.0,4,1,1,PC,PC,12.5798,0.016,,1,qlp-s52-tois,QLP,22:20:35.28,71:46:02.45,-0.177,0.027,3.442,0.024,2459853.880406,0.0011028479,1.8020923,2.8e-06,2.949,0.143,9.344859,0.002013,8570.0,1.85406,17.3634,0.917806,1870.78,1832.0,67.0,745.145,8.8605,5760.0,151.8,3.92,0.08,1.85,0.09,,,1.03,0.127993,"17,18,24,25,52,57",2021-06-23,2023-02-09,2023-02-25 12:10:55,found in faint-star QLP search,4034,1,False,False,True -372392226,4035.01,,3,4,3,3,1,4,4,45.6,110.7,126.79,4,0,0,PC,PC,13.0874,0.006,,1,spoc-s58-b0A,QLP,22:08:29.79,68:54:16.39,11.138,2.233,8.564,2.233,2459882.827958,0.0014605494,3.02986221480115,0.00027295985,2.78409694107279,0.09085768,16.519438,0.417967,15099.8021512112,384.88733,,,594.920390616756,1259.60525312013,28.855343,506.315,,5081.3,223.8,,,,,,,,,"17,18,24,25,58",2021-06-23,2023-03-10,2023-03-24 12:12:10,found in faint-star QLP search; no stellar parameters,4035,1,False,False,False -367913453,4036.01,,5,5,5,5,5,5,5,7.3,26.2,35.53,0,0,0,PC,FP,12.3618,0.011,,1,qlp,QLP,23:42:03.1,76:55:07.62,10.359,0.042,3.955,0.031,2459008.757118,0.0059721,2.7761628,0.0001338,2.139,0.503,1.455862,0.007369,1340.0,6.78709,6.58454,0.625656,538.633,1342.0,8.0,644.55,8.563,5778.0,147.9,3.92,0.08,1.84,0.09,,,1.04,0.129783,"18,19,24,25",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4036,1,False,False,True -367287018,4037.01,,3,4,3,3,3,4,4,15.2,41.3,87.45,1,2,2,PC,PC,11.3896,0.009,,1,qlp,QLP,22:50:12.56,75:51:37.44,3.052,0.039,-3.596,0.037,2459003.140976,0.0042133,4.7255326,0.0001177,2.654,0.504,2.587132,0.004382,2380.0,4.03586,11.2101,0.763841,396.638,1243.0,23.0,653.395,9.3585,6139.0,130.0,3.71,0.09,2.48,0.12,,,1.16,0.169674,"17,18,19,24,25",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4037,1,False,False,True -366580825,4038.01,,3,4,3,3,1,4,4,14.0,41.0,70.95,1,0,0,PC,PC,13.0885,0.015,,1,qlp-s52-tois,QLP,20:20:04.86,73:16:39.95,-0.62,0.024,8.799,0.024,2459765.009444,0.003084,4.2989288,1.63e-05,3.022,0.341,4.995001,0.003997,4590.0,3.68139,9.94472,,371.547,1223.0,30.0,562.818,3.934,5671.0,122.0,4.12,,1.45,,,,1.01,,"16,17,18,19,20,22,23,24,25,40,49,52",2021-06-23,2022-09-16,2022-12-14 12:09:24,found in faint-star QLP search,4038,1,False,False,True -366120401,4039.01,,3,4,3,3,1,4,4,15.7,59.6,69.92,2,0,0,PC,PC,12.9186,0.007,,1,qlp-s52-tois,QLP,18:14:56.27,49:45:41.72,2.733,0.026,17.311,0.028,2459733.900505,0.0022012,4.7308142,1.67e-05,3.062,0.204,9.574859,0.005257,8780.0,4.84153,9.85689,0.530334,295.429,1154.0,27.0,548.908,4.295,5777.0,122.1,4.42,0.07,1.05,0.05,,,1.04,0.123822,"14,25,41,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; one TCE in s52 on momentum dump; scattered light in s54,4039,1,False,False,True -356786657,4040.01,,3,4,3,3,4,4,4,1.7,20.6,8.19,0,0,2,PC,PC,12.3407,0.006,,1,spoc-s14-s60-b0A-PC,QLP,17:54:27.47,77:29:17.92,-0.491,0.035,18.935,0.046,2459658.460639,0.0056308,7.13572588612819,0.00012047496,2.50948933764817,0.53124684,1.137818,0.136552,1047.42059227882,125.76148,2.78530418649282,1.548157,108.110032904221,822.405960836199,8.318972,297.107,2.2425,5446.0,132.8,4.57,0.08,0.835627019405365,0.0471859,,,0.95,0.120621,"14,15,16,17,18,19,20,21,22,23,25,40,41,47,48,49,50,51,52,53,54,55,57,58,59,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; variable host,4040,1,False,False,True -345645749,4041.01,,3,4,3,3,4,4,4,22.2,85.9,74.53,2,6,5,PC,PC,10.9342,0.006,,1,qlp-s52-tois,QLP,16:27:25.31,21:37:00.45,-24.382,0.042,6.134,0.043,2459731.3788,0.001373,7.8808589,1.93e-05,4.788,0.133,5.573249,0.001063,5120.0,0.97874,10.2354,0.503941,289.546,1149.0,32.0,311.111,3.2365,5914.8,118.2,4.17,0.08,1.41,0.07,0.28,0.031,1.077,0.135366,"25,51,52",2021-06-23,2023-03-02,2023-06-20 00:00:00,found in faint-star QLP search,4041,1,False,False,True -332393279,4042.01,,3,4,3,3,3,4,4,30.4,71.0,125.36,2,0,2,PC,PC,13.1659,0.008,,1,qlp,QLP,17:01:27.38,28:59:18.69,3.595,0.025,-3.263,0.025,2459008.333798,0.0030167,2.3238426,0.0005122,2.391,0.222,10.670766,0.012223,9780.0,11.2573,13.8867,,870.497,1513.0,16.0,869.366,11.3755,5983.9,81.1,4.2,,1.38,,0.301,0.079,1.1,,25,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4042,1,False,False,True -322262448,4043.01,,3,4,3,3,3,4,4,24.7,63.4,127.72,1,3,1,PC,PC,12.2319,0.006,,1,qlp-s58-tois,QLP,21:42:13.11,69:30:17.31,6.764,0.034,1.025,0.036,2459906.072719,0.0012097,5.1191172,8.5e-06,5.563,0.237,6.88035,0.135917,6317.0,125.176,13.0806,0.652824,939.766,1542.0,38.0,636.467,7.898,5926.0,207.4,4.01,0.09,1.7,0.08,,,1.08,0.152476,"17,18,24,25,57,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,4043,1,False,False,False -307956396,4044.01,,5,5,5,5,5,5,5,19.0,72.3,52.42,0,0,0,PC,FP,13.2653,0.006,,1,qlp,QLP,17:06:39.44,63:46:42.73,-17.339,0.034,13.465,0.04,2459001.28404,0.0009478,4.1508803,2.06e-05,2.256,0.099,13.426373,0.004399,12290.0,4.05162,8.31799,,70.6022,807.0,55.0,268.508,1.1725,4460.0,122.0,4.56,,0.73,,,,0.699,,"14,15,16,17,18,19,20,21,22,23,24,25",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4044,1,False,False,True -298264260,4045.01,,3,4,3,3,1,4,4,31.6,54.9,317.0,2,0,0,PC,PC,13.2155,0.007,,1,qlp-s49-tois,QLP,16:05:27.48,55:11:09.62,1.584,2.326,-17.191,2.328,2459672.862005,0.0028737148,7.9927894,2.23e-05,3.884,0.424,18.108248,0.009125,16540.0,8.40402,,,147.635,971.0,48.0,598.385,,5530.9,337.7,,,,,-0.264535,0.0575043,,,"16,17,23,25,49,50",2021-06-23,2022-07-12,2022-12-14 12:09:24,found in faint-star QLP search; no radius; potentially large but substellar,4045,1,False,False,True -284760740,4046.01,,3,4,3,3,4,4,4,20.5,80.9,25.33,3,5,5,PC,PC,10.6525,0.006,,1,qlp-s51-tois,QLP,15:54:44.84,25:00:50.18,-5.671,0.093,-8.051,0.125,2459716.464024,0.001747,0.7583741,2.2e-06,0.748,0.191,0.923268,0.004462,850.0,4.10971,5.4111,0.443729,1262.0,1660.0,17.0,328.581,7.7425,6209.0,128.5,4.13,0.09,1.56,0.08,,,1.194,0.166753,"24,25,51",2021-06-23,2022-09-02,2022-12-14 12:09:24,found in faint-star QLP search; slight depth aperture correlation,4046,1,False,False,True -279769094,4047.01,,3,4,3,3,1,4,4,8.8,36.3,65.11,0,0,0,PC,PC,13.028,0.03,,1,qlp,QLP,23:26:25.23,68:02:09.85,-4.452,0.03,-1.239,0.027,2459003.440869,0.0064399,4.5029619,0.0001865,4.169,0.631,3.14232,0.007604,2890.0,7.00385,9.44788,,2710.22,2010.0,11.0,817.383,14.1255,8103.0,122.0,4.24,,1.77,,,,1.97,,"17,18,24,25",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4047,1,False,False,False -279605855,4048.01,,5,5,5,5,5,5,5,30.7,29.2,317.0,0,0,0,PC,FP,13.1947,0.01,,1,qlp,QLP,23:06:18.7,71:12:47.99,-4.948,0.032,2.178,0.027,2459007.051404,0.0021957,1.972401,3e-05,2.435,0.621,8.129955,0.021181,7460.0,19.5085,14.7348,,2239.66,1916.0,24.0,974.435,16.6795,6184.0,122.0,4.1,,1.6,,,,1.18,,"17,18,24,25",2021-06-23,2021-06-23,2022-12-14 12:09:24,potential weak secondary; found in faint-star QLP search,4048,1,False,False,True -259274960,4049.01,,3,4,3,3,1,4,4,3.8,42.8,75.01,2,0,0,PC,PC,13.2588,0.01,,1,spoc-s14-s60-b0A-PC,QLP,19:35:03.55,66:15:18.18,3.834,0.042,1.798,0.033,2459590.894466,0.0030381,31.4001189292252,0.00026086133,2.54549604822867,0.1317232,16.51642,0.647065,15097.0640965811,595.7911,10.2456090788165,0.44985664,10.1567540435002,455.311357288636,24.799442,353.826,2.15,4953.0,122.0,4.55,,0.791712999343872,,,,0.82,,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2021-06-23,2023-05-25,2023-06-16 12:14:51,found in faint-star QLP search,4049,1,False,False,True -255865833,4050.01,,3,4,3,3,1,4,4,15.7,42.4,108.96,0,0,0,PC,PC,13.2838,0.007,,1,qlp-s49-tois,QLP,20:27:24.64,68:13:54.72,-8.515,0.037,-15.538,0.028,2459662.394947,0.0044995,4.6546139,2.59e-05,1.365,0.343,6.031702,0.026213,5540.0,24.143,12.7473,,91.4646,861.0,16.0,903.312,14.8625,5966.0,122.0,4.08,,1.58,,,,1.09,,"15,16,17,18,19,22,24,25,49",2021-06-23,2022-08-19,2022-12-14 12:09:24,found in faint-star QLP search; v-shaped; 2 stars in pixel,4050,1,False,False,True -237101326,4051.01,,3,4,3,3,1,4,4,12.5,44.2,28.36,1,1,0,PC,PC,13.0273,0.007,,1,qlp-s56-tois,QLP,16:02:46.04,71:13:27.44,-1.49,0.055,-6.695,0.059,2459849.641184,0.0015648,1.5373948,3e-06,1.194,0.459,2.946339,0.316535,2710.0,291.497,5.76435,,621.715,1391.0,22.0,441.274,6.1995,5091.0,122.0,4.36,,1.0,,,,0.85,,"14,15,16,17,19,20,21,22,23,24,25,40,41,47,49,50,51,52,53,54,55,56",2021-06-23,2023-03-16,2023-03-24 12:12:10,V-shaped; found in faint-star QLP search; period could be 2x,4051,1,False,False,True -236775063,4052.01,,5,5,5,5,5,5,5,12.5,51.3,19.01,0,0,0,PC,FP,13.0109,0.006,,1,qlp,QLP,18:50:39.16,55:48:05.06,-13.82,0.023,-19.819,0.025,2459008.383184,0.0018954,0.7409429,7e-06,1.084,0.251,2.674202,0.007622,2460.0,7.01997,4.58442,,1523.27,1740.0,14.0,427.299,2.282,5406.0,122.0,4.53,,0.87,,,,0.94,,"14,15,16,18,19,20,22,23,25",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4052,1,False,False,True -235684392,4053.01,,3,4,3,3,1,4,4,9.7,20.0,317.0,1,0,0,PC,PC,13.0309,0.006,,1,spoc-s14-s60-b0A-PC,QLP,19:12:22.29,77:55:21.44,8.115,1.429,-2.767,1.429,2459743.50843,0.0023253,21.7894490657459,0.0002604486,6.80442924645722,0.22370733,13.411866,0.406595,12276.8028409092,374.41772,,,42.8575848755227,652.569351703664,41.871796,681.888,,6118.5,458.0,,,,,,,,,"17,18,19,20,21,23,24,25,40,41,47,48,50,51,52,53,54,55,57,58,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; V-shaped; no stellar radius; centroid offset towards TIC 235684390; ~1500 ppm secondary at 0.58 phase,4053,1,False,False,True -233719215,4054.01,,3,4,3,3,2,4,4,7.3,57.2,68.4,2,0,1,PC,PC,13.0533,0.006,,1,spoc-s14-s60-b0A-PC,QLP,18:25:09.95,60:46:23.87,-2.092,0.025,19.771,0.029,2459657.554147,0.0013891,17.3567190447934,9.450355e-05,2.57071021845693,0.07602446,13.910448,0.356379,12730.2717115585,328.183,9.70538600211511,0.22605944,17.7377655234544,523.412966221737,42.786495,287.646,1.113,4697.0,122.0,4.55,,0.760628998279572,,,,0.75,,"14,15,16,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51,52,53,55,56,57,58,59,60",2021-06-23,2023-05-26,2023-06-16 12:14:51,V-shaped; found in faint-star QLP search,4054,1,False,False,True -233053554,4055.01,,3,4,4,3,1,4,4,30.5,86.3,130.82,4,0,0,PC,PC,13.1755,0.007,,1,qlp-s51-tois,QLP,17:56:43.01,64:45:59.85,-9.964,0.025,-26.592,0.027,2459853.406756,0.0012983318,4.567925,6.1e-06,3.047,0.102,20.20787,0.00464,18440.0,4.27367,14.2306,,266.468,1125.0,73.0,602.399,4.803,5675.0,122.0,4.41,,1.04,,,,1.01,,"14,15,16,17,18,20,21,23,24,25,40,41,47,48,50,51,53,54,55,56,57",2021-06-23,2023-03-14,2023-05-15 00:00:00,found in faint-star QLP search,4055,1,False,False,True -232567319,4056.01,,3,4,4,3,3,4,4,19.0,68.0,74.62,1,3,2,PC,PC,11.4354,0.007,,1,spoc-s50-b0A,QLP,16:30:11.91,49:53:44.85,-3.958,0.039,14.412,0.047,2459665.965169,0.0028098056,5.0529784670836,0.0008289764,4.10756075151266,0.16572218,4.139381,0.178716,3805.25194894926,164.59033,10.21502588746,0.637952,896.673941115623,1395.6559991694,16.699839,484.852,5.0905,6328.9,138.5,4.15,0.09,1.55130994319916,0.0762587,0.0778,0.0143108,1.25,0.192877,"23,24,25,50",2021-06-23,2022-05-31,2023-05-06 00:00:00,found in faint-star QLP search,4056,1,False,False,True -230388132,4057.01,,3,4,3,3,2,4,4,13.2,49.7,40.8,1,1,2,PC,PC,13.2611,0.007,,1,qlp-s52-tois,QLP,19:04:44.77,64:09:11.32,-3.556,0.025,-8.293,0.023,2459854.89776,0.0030405747,2.4076941,4.6e-06,1.438,0.131,5.234991,0.004134,4810.0,3.80744,7.15781,,255.63,1113.0,29.0,590.913,4.3775,5702.0,122.0,4.46,,0.98,,,,1.02,,"14,15,16,17,18,20,21,22,23,24,25,40,41,47,48,49,50,51,52,55,57,58",2021-06-23,2023-02-22,2023-07-07 00:00:00,V-shaped; multiple stars in pixel; found in faint-star QLP search; nearby TIC 1718010948 (TMag~15) less than 3'' away; v-shaped,4057,1,False,False,True -229639351,4058.01,,3,4,3,3,1,4,4,,,63.66,1,0,0,PC,PC,13.4062,0.008,,1,qlp-s51-tois,QLP,18:35:13.18,73:35:58.17,-7.915,2.205,4.579,2.207,2459716.280498,0.0011307,2.8668029,4.4e-06,1.879,0.106,7.933071,0.0033,7280.0,3.03975,,,155.045,983.0,26.0,,,4871.9,163.9,,,,,,,,,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51",2021-06-23,2022-09-02,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,4058,1,False,False,True -229605891,4059.01,,3,4,4,3,1,4,4,67.0,148.9,111.56,7,0,0,PC,PC,13.084,0.008,,1,qlp-s52-tois,QLP,18:16:43.87,76:53:27.28,4.892,0.026,25.079,0.028,2459768.585993,0.0002417,2.0381761,6e-07,1.988,0.037,25.285817,0.000808,23020.0,0.744239,13.0071,,310.835,1169.0,216.0,339.185,1.659,4928.0,122.0,4.52,,0.82,,,,0.81,,"14,15,16,17,18,19,20,21,22,23,24,25,40,47,48,49,50,51,52,53,54,55",2021-06-23,2023-03-14,2023-05-03 00:00:00,found in faint-star QLP search,4059,1,False,False,True -229508727,4060.01,,3,4,3,3,1,4,4,,,75.88,1,0,0,PC,PC,13.1135,0.006,,1,qlp-s52-tois,QLP,19:48:14.8,64:25:33.75,-6.753,2.174,-9.555,2.174,2459755.068432,0.0027328,23.1315739,8.85e-05,2.293,0.626,9.761085,0.033128,8950.0,30.512,,,5.53336,427.0,19.0,,,4952.3,137.4,,,,,,,,,"14,15,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51,52,53,54,55",2021-06-23,2023-03-14,2023-03-15 00:00:00,V-shaped; found in faint-star QLP search; parallax (0.4) and Teff indicated host is most likely a giant and candidate is likely too large to be a planet; no stellar radius,4060,1,False,False,True -224601047,4061.01,,5,5,5,5,5,5,5,6.4,38.3,33.76,0,0,0,O,FA,13.109,0.018,,1,qlp-s25-faintsearch,QLP,17:00:30.93,59:37:32.37,-25.681,2.234,3.513,2.234,2459003.792406,0.0033052,7.2087245,0.0001288,3.506,0.272,5.104081,0.003533,4690.0,3.25444,,,110.913,904.0,22.0,431.258,,5144.9,1191.6,,,,,,,,,"14,15,16,17,18,19,20,21,22,23,25,47,48,50",2021-06-23,2022-05-23,2022-12-14 12:09:24,found in faint-star QLP search; same signal as TOI 4022; this one retired as TFOP FA,4061,1,False,False,True -219866209,4062.01,,3,4,4,3,1,4,4,19.0,59.9,114.33,2,0,0,PC,PC,13.4167,0.007,,1,qlp-s52-tois,QLP,17:16:23.67,67:33:59.79,-10.549,0.032,21.952,0.035,2459857.967075,0.0014879387,6.7473822,7.2e-06,2.112,0.099,16.200013,0.006979,14810.0,6.4281,13.1026,,47.3055,730.0,68.0,611.532,6.0055,5332.0,122.0,4.35,,1.06,,,,0.92,,"14,15,16,17,18,19,20,21,23,24,25,40,41,47,48,49,50,51,52,57,59",2021-06-23,2023-03-16,2023-04-22 00:00:00,found in faint-star QLP search,4062,1,False,False,True -219499488,4063.01,,3,5,5,3,1,4,4,101.8,92.6,317.0,1,0,0,PC,APC,13.0444,0.007,,1,spoc-s50-b0A,QLP,16:17:28.7,46:38:52.88,3.308,0.077,-7.453,0.098,2459666.27176,0.0015623937,1.63226426999281,0.00016717457,1.74877235846547,0.11604745,14.342837,0.787283,13123.3684588351,724.8512,15.8543426542294,16.080006,757.407688807102,1337.98787231364,19.120422,408.646,7.3845,5099.9,120.1,4.45,,0.912575006484985,,0.143464,0.113611,0.86,,"24,25,50",2021-06-23,2022-07-12,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4063,1,False,False,True -219489550,4064.01,,3,4,3,3,4,4,4,12.7,36.5,71.43,1,0,3,PC,PC,12.6555,0.007,,1,spoc-s52-b0A,QLP,16:13:28.89,42:53:07.81,-14.026,0.023,-2.956,0.023,2459721.688176,0.0060045617,3.88500019778041,0.0017892838,2.61978704506912,0.59567946,3.748446,0.487642,3446.49388621607,449.03403,9.95558425502218,4.2272396,1087.67418539545,1464.68574515037,7.3144207,756.022,7.278,5622.4,110.3,3.98,0.07,1.68667995929718,0.0778292,0.329,0.038,1.0,0.12679,"24,25,50,52",2021-06-23,2022-08-11,2023-04-05 00:00:00,found in faint-star QLP search; possible centroid offset towards nearby TIC 1200879399 (Tmag ~14.3); multiple stars in pixel,4064,1,False,False,True -219485050,4065.01,,3,4,4,3,1,4,4,16.9,56.1,69.94,1,0,0,PC,PC,12.8377,0.007,,1,qlp-s52-tois,QLP,16:11:19.67,47:42:45.55,-27.614,0.025,10.681,0.033,2459740.847953,0.0013284,3.5908038,1.01e-05,3.027,0.143,7.287981,0.002381,6690.0,2.19339,9.85407,0.599621,462.467,1291.0,32.0,579.364,5.5635,5657.0,143.4,4.3,0.09,1.18,0.07,0.264,0.132,1.0,0.126893,"23,25,50,51,52",2021-06-23,2022-09-16,2023-06-06 00:00:00,found in faint-star QLP search,4065,1,False,False,True -193556520,4066.01,,3,4,3,3,1,4,4,19.1,69.7,91.92,1,0,0,PC,PC,13.3925,0.006,,1,qlp-s52-tois,QLP,16:23:58.21,45:15:39.95,5.55,0.029,-32.971,0.035,2459736.642282,0.0010835,6.7201811,1.43e-05,3.187,0.126,19.75445,0.006227,18030.0,5.7357,11.5271,,76.4183,823.0,46.0,415.005,2.7545,4914.0,122.0,4.49,,0.85,,,,0.81,,"24,25,50,51,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search,4066,1,False,False,True -162577466,4067.01,,5,5,5,5,5,5,5,27.6,75.9,116.12,1,0,0,O,FP,13.1815,0.006,,1,spoc-s50-b0A,QLP,16:15:44.61,48:19:31.81,-12.953,0.028,15.384,0.028,2459666.709157,0.003393905,3.67723912054782,0.0008793376,4.25170637259344,0.2176457,15.047004,0.884439,13763.2116365298,814.2667,13.2496189211564,0.7206731,567.606657283749,1244.89183843901,14.919447,679.411,6.8585,5801.0,122.0,4.36,,1.11792004108429,,,,1.04,,"23,24,25,50",2021-06-23,2022-07-07,2022-12-14 12:09:24,found in faint-star QLP search; actual source is TIC 162577468 / TOI 5669.01,4067,1,False,False,True -159334269,4068.01,,5,5,5,5,5,5,5,29.1,78.3,88.3,0,0,0,PC,FP,13.3675,0.007,,1,qlp,QLP,15:34:46.77,79:26:59.41,1.98,0.027,7.924,0.03,2459008.761746,0.0013991,1.1578392,7.2e-06,1.363,0.333,10.539198,0.025892,9660.0,23.8474,11.2362,,2519.45,1973.0,45.0,915.093,11.8025,6409.0,122.0,4.4,,1.18,,,,1.29,,"14,15,19,20,21,25",2021-06-23,2021-06-23,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4068,1,False,False,True -143009290,4069.01,,3,4,4,3,3,4,4,32.0,92.9,83.92,4,1,1,PC,PC,13.0531,0.007,,1,qlp-s52-tois,QLP,16:50:22.55,16:58:57.79,-18.621,0.023,0.405,0.028,2459739.127083,0.0015164,2.7240303,8.1e-06,1.649,0.192,13.767193,0.014683,12600.0,13.5237,10.9383,,193.03,1038.0,22.0,437.789,4.213,5366.0,122.0,4.47,,0.93,,,,0.93,,"25,52",2021-06-23,2023-01-24,2023-06-19 00:00:00,found in faint-star QLP search,4069,1,False,False,True -115270627,4070.01,,3,4,3,3,3,4,4,37.4,119.3,72.15,4,1,1,PC,PC,13.0022,0.006,,1,qlp-s52-tois,QLP,16:41:06.27,42:26:10.73,8.728,0.022,-18.502,0.034,2459739.132188,0.001332,3.1504798,7.4e-06,1.096,0.332,10.045963,0.195136,9210.0,179.711,10.0008,,98.0783,876.0,22.0,411.289,2.43,5229.0,122.0,4.49,,0.89,,,,0.89,,"24,25,51,52",2021-06-23,2022-12-01,2022-12-14 12:09:24,found in faint-star QLP search; contamination from evolved bright star (TIC 115270644 w/ Tmag ~ 6.62) with high proper motion causing apparent centroid offset in s52 but not in other sectors,4070,1,False,False,True -115182469,4071.01,,2,4,2,2,4,4,4,3.1,43.0,5.8,0,2,3,PC,PC,10.7133,0.006,,1,qlp,QLP,16:37:09.95,43:20:41.14,-36.022,0.049,-31.743,0.058,2459001.307881,0.0041097,6.5169955,0.0012892,2.416,0.374,1.010204,0.003081,930.0,2.838,2.26174,0.19634,62.6073,783.0,10.0,104.24,0.307,4937.5,123.2,4.64,0.09,0.71,0.05,0.141959,0.00922547,0.812,0.0971188,"24,25",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4071,1,False,False,True -85459171,4072.01,,3,4,3,3,3,4,4,57.9,75.6,317.0,2,0,2,PC,PC,13.3802,0.006,,1,qlp,QLP,17:10:56.4,36:27:10.36,-11.665,2.163,2.44,2.163,2459005.303452,0.0023844,2.1390271,0.0003762,3.556,0.368,20.927095,0.017909,19090.0,16.4947,,,2105.59,1887.0,31.0,860.437,,5869.6,427.7,,,,,,,,,25,2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4072,1,False,False,False -648958344,4073.01,,3,4,3,3,3,4,4,8.9,80.6,5.8,0,0,2,PC,PC,11.7332,0.015,,1,qlp,QLP,03:06:15.88,70:12:52.89,-43.298,0.627,-79.102,0.83,2459004.435589,0.0044744,2.3079651,6.63e-05,2.064,0.359,1.792944,0.00513,1650.0,4.72511,,,,,9.0,59.7061,2.22575,,,,,,,,,,,"18,25",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4073,1,False,False,True -628103717,4074.01,,3,4,3,3,3,4,4,45.1,67.6,317.0,2,0,1,PC,PC,12.6844,0.015,,1,qlp-s58-tois,QLP,01:57:41.61,63:54:16.52,-0.196,0.024,-0.939,0.028,2459906.211599,0.0013633,3.2175013,6.7e-06,3.2,0.235,12.965887,0.492245,11871.0,453.272,16.011,2.13317,1034.94,1580.0,42.0,885.18,14.837,7932.0,169.3,4.32,0.08,1.56,0.2,,,1.9,0.300458,"18,24,25,52,58",2021-06-23,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,4074,1,False,False,True -627323667,4075.01,,3,4,3,3,1,4,4,92.3,242.8,317.0,0,0,0,PC,PC,13.0731,0.012,,1,qlp-s58-tois,QLP,01:35:46.46,65:38:19.63,0.264,0.884,8.684,1.146,2459909.355739,0.0023241,3.0492435,9.5e-06,3.627,0.283,8.091669,0.278788,7425.0,256.74,,,,,27.0,1965.77,1886.52,,,,,,,,,,,"18,24,25,52,58",2021-06-23,2023-06-27,2023-06-27 00:00:00,found in faint-star QLP search,4075,1,False,False,True -57193198,4076.01,,3,4,4,3,4,4,4,15.6,55.8,68.39,4,0,3,PC,PC,12.5834,0.008,,1,qlp,QLP,16:43:37.69,36:08:28.91,-6.37,0.031,-2.523,0.043,2459003.614842,0.0040278,4.3965758,0.0007443,2.827,0.326,6.807146,0.009436,6250.0,8.69091,9.71601,0.618219,350.289,1205.0,13.0,587.551,7.7445,5957.0,131.6,4.3,0.08,1.23,0.06,,,1.09,0.137269,"24,25",2021-06-23,2021-06-23,2023-06-22 00:00:00,found in faint-star QLP search,4076,1,False,False,True -57159675,4077.01,,3,4,3,3,1,4,4,19.9,80.7,65.42,3,1,0,PC,PC,12.8682,0.006,,1,spoc-s51-b0A,QLP,16:41:11.64,38:57:41.6,14.449,0.021,-5.1,0.029,2459694.8367,0.0025030791,5.56897981623787,0.0008529146,2.4584748928646,0.1650083,14.228783,0.662765,13019.6946537235,610.24316,9.45386467091594,0.8570073,100.824190384619,808.185278704756,17.905392,302.435,1.193,4887.0,121.1,4.53,0.09,0.801524996757507,0.0517186,,,0.798,0.100081,"24,25,51",2021-06-23,2022-07-15,2022-12-14 12:09:24,found in faint-star QLP search,4077,1,False,False,True -444724127,4078.01,,3,4,3,3,3,4,4,,,38.92,1,1,1,PC,PC,12.2305,0.035,,1,qlp-s52-tois,QLP,01:40:22.32,65:12:13.96,-0.903,0.039,-0.093,0.043,2459736.714045,0.0025325,3.1639309,1.18e-05,3.143,0.265,4.438865,0.00288,4080.0,2.65239,,,1083.96,1598.0,23.0,5406.92,920.775,6323.0,503.7,,,,,,,,,"18,24,25,52,58",2021-06-23,2023-02-22,2023-02-25 12:10:55,found in faint-star QLP search; Radius unknown; 5.4 kpc; ~1300 K; host is likely giant; likely too large to be a planet,4078,1,False,False,True -444558604,4079.01,,3,4,3,3,3,4,4,101.5,110.8,317.0,3,3,1,PC,PC,12.1484,0.03,,1,qlp-s25-faintsearch,QLP,01:19:55.4,64:32:16.99,18.093,0.038,0.909,0.041,2459882.628132,0.00056089193,1.9872259,7.3e-06,2.486,0.071,21.32564,0.002736,19450.0,2.51995,15.6112,0.765135,1292.25,1670.0,109.0,360.76,3.578,6178.0,242.9,4.44,0.09,1.08,0.05,,,1.18,0.181098,"18,24,25,58",2021-06-23,2023-03-10,2023-03-10 00:00:00,found in faint-star QLP search; multiple stars in pixel; variable host,4079,1,False,False,False -428892437,4080.01,TIC 428892437.01,3,4,3,3,1,4,4,30.2,83.7,112.35,1,1,0,PC,PC,13.3593,0.007,,1,qlp-s52-tois,QLP,05:39:27.65,81:32:36.42,3.818,0.029,-14.204,0.033,2459764.98286,0.0012208,3.7519831,6.2e-06,2.891,0.168,18.881321,0.007128,17240.0,6.56554,12.9516,,297.501,1157.0,51.0,543.607,5.462,5389.0,122.0,4.43,,0.97,,,,0.94,,"19,20,25,40,52,53",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),4080,1,False,False,True -421973253,4081.01,,3,4,4,3,4,4,4,16.6,47.2,94.08,0,2,4,PC,PC,10.6675,0.006,,1,spoc-s14-s60-b0A-PC,QLP,01:26:17.46,64:50:24.03,14.468,0.042,-11.787,0.048,2459736.331232,0.0056065,9.25840546046666,0.00016080604,3.85833230285212,0.29587907,2.216968,0.111433,2039.81955888882,102.628235,11.7073432918997,1.8273736,811.043271893625,1361.07092278696,18.851496,439.932,6.5115,5707.0,154.6,3.64,0.07,2.53631997108459,0.128081,,,1.017,0.123073,"24,25,52,58",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,4081,1,False,False,True -400899926,4082.01,,3,4,3,3,1,4,4,26.3,71.8,115.5,1,0,0,PC,PC,12.804,0.036,,1,qlp-s52-tois,QLP,01:09:35.98,69:43:55.36,8.292,0.045,-2.186,0.039,2459884.621763,0.0024375601,4.625568,1.7e-05,3.645,0.202,10.70366,0.005016,9810.0,4.62029,13.2242,0.745804,493.442,1313.0,29.0,568.171,9.063,5972.0,276.8,4.23,0.09,1.34,0.07,,,1.1,0.166184,"18,24,25,52,58",2021-06-23,2023-03-10,2023-03-24 12:12:10,found in faint-star QLP search; inconsistent centroid offset,4082,1,False,False,True -399444057,4083.01,,5,5,5,5,5,5,5,14.6,45.4,69.11,0,0,0,PC,FP,11.6433,0.021,,1,qlp,QLP,01:46:45.08,63:36:44.05,-2.054,0.031,-4.869,0.039,2459008.356209,0.0035037,2.0714803,5.63e-05,3.108,0.46,1.80382,0.002449,1660.0,2.25536,9.7546,0.584532,4440.11,2274.0,21.0,732.131,14.4435,7047.0,184.4,3.85,0.09,2.46,0.11,,,1.56,0.258149,"18,24,25",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4083,1,False,False,True -346673534,4084.01,,3,4,3,3,3,4,4,10.3,57.7,87.04,1,0,1,PC,PC,12.8934,0.006,,1,qlp-s40-tois,QLP,18:43:07.07,20:13:07.82,8.798,0.031,-31.273,0.035,2459751.832931,0.0027957158,15.634183,0.0001548,2.888,0.274,14.185118,0.01507,12980.0,13.8802,11.238,0.674562,23.2536,611.0,15.0,453.772,4.387,5725.0,131.9,4.49,0.08,0.96,0.05,,,1.022,0.128692,"26,40,53",2021-06-23,2022-10-11,2022-12-14 12:09:24,found in faint-star QLP search,4084,1,False,False,True -336840314,4085.01,,3,4,3,3,4,4,4,41.0,117.2,75.38,1,2,3,PC,PC,11.9705,0.006,,1,spoc-s54-b0A,QLP,18:47:20.55,26:25:04.2,11.812,0.032,-23.847,0.04,2459772.335278,0.0012601124,2.82821293289525,0.00026921026,2.71569736850971,0.10836395,10.455997,0.40149,9584.10638157733,369.71765,10.2763538140594,0.758448,504.126317221783,1208.52208702952,21.498606,290.594,2.1615,5257.0,131.4,4.37,0.09,1.02585995197296,0.0596382,,,0.899,0.114961,"26,53,54",2021-06-23,2022-10-05,2023-07-07 00:00:00,found in faint-star QLP search,4085,1,False,False,True -328814605,4086.01,TIC 328814605.01,3,4,3,3,3,4,4,20.6,56.2,105.64,0,5,1,PC,PC,12.111,0.007,,1,spoc-s14-s55-b0A-PC,QLP,09:13:07.35,85:16:15.71,2.95,0.042,-10.787,0.041,2459910.498359,0.0035531402,5.69178046669588,3.235218e-05,5.29367920080972,0.120152675,5.851869,0.119248,5375.27222129728,109.82517,12.5328629805557,0.6959134,694.627907710032,1309.35619246654,35.63758,592.872,7.663,5783.0,123.1,4.01,0.08,1.66513001918793,0.0806784,,,1.04,0.124523,"19,20,26,40,47,53,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search; CTOI from Olmschenk et al. (2021); apparent depth-aperture correlation likely due to systematics,4086,1,False,False,True -310002617,4087.01,TIC 310002617.01,3,4,4,3,3,4,4,74.4,203.3,125.51,5,8,2,PC,PC,11.2961,0.027,,1,qlp-s52-tois,QLP,14:31:42.19,83:22:21.74,-16.728,0.038,10.376,0.039,2459765.673618,0.0001942,3.1774814,9e-07,2.824,0.037,15.516952,0.000196,14190.0,0.18035,13.9016,0.65223,625.157,1393.0,338.0,301.676,2.209,6071.0,205.3,4.39,0.09,1.12,0.05,,,1.13,0.173434,"14,19,21,26,40,41,47,52",2021-06-23,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021); variable host,4087,1,False,False,True -302381397,4088.01,TIC 302381397.01,3,4,3,3,3,4,4,44.2,109.9,108.31,5,4,1,PC,PC,12.2523,0.009,,1,qlp-s47-tois,QLP,06:40:19.45,76:33:11.05,-11.629,0.037,-14.986,0.045,2459912.553706,0.0009832642,2.7284428,3.6e-06,2.201,0.139,11.416614,0.003462,10460.0,3.18854,12.71,0.677451,427.584,1266.0,75.0,439.803,5.3535,5686.0,130.8,4.28,0.08,1.21,0.06,,,1.01,0.123658,"19,20,26,40,47,59",2021-06-23,2023-03-16,2023-03-16 00:00:00,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),4088,1,False,False,True -298752252,4089.01,,3,4,4,3,4,4,4,138.4,195.3,317.0,4,2,5,PC,PC,11.6421,0.006,,1,qlp-s52-tois,QLP,17:51:24.29,22:39:40.8,-15.6,1.8,-22.5,1.7,2459765.985547,0.0008529,3.2462849,7.2e-06,1.513,0.122,10.045963,3.112975,9210.0,2863.05,18.4686,,610.063,,47.0,321.956,,5895.5,,,,1.06,,0.172,0.025,,,"26,52",2021-06-23,2022-11-18,2023-07-07 00:00:00,V-shaped; found in faint-star QLP search,4089,1,False,False,True -289373041,4090.01,,3,4,4,3,4,4,4,10.0,49.1,22.9,2,0,2,PC,PC,12.5509,0.007,,1,qlp-s40-tois,QLP,18:32:55.74,39:38:16.79,5.365,0.022,2.269,0.022,2459771.717799,0.0025428587,3.177514,1.8e-05,2.043,0.234,3.95929,0.00423,3640.0,3.89601,5.10272,0.395537,150.032,975.0,18.0,250.984,0.812,4740.0,124.5,4.49,0.1,0.82,0.06,,,0.76,0.0908891,"14,26,40,53,54",2021-06-23,2022-10-11,2022-12-14 12:09:24,found in faint-star QLP search,4090,1,False,False,True -289316336,4091.01,,5,5,5,5,5,5,5,4.4,34.9,11.82,3,2,4,PC,FP,11.2834,0.007,,1,qlp,QLP,18:31:55.02,39:40:09.51,0.669,0.039,-17.995,0.045,2459033.693724,0.0071535,3.0038696,0.0001132,3.24,0.711,0.825473,0.003491,760.0,3.21494,3.44576,0.285666,1394.39,1702.0,9.0,337.362,2.514,6171.0,130.0,4.35,0.08,1.2,0.06,,,1.18,0.154908,"14,26",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4091,1,False,False,True -288242606,4092.01,,3,4,3,3,1,4,4,15.9,47.3,107.27,1,0,0,PC,PC,12.8687,0.008,,1,qlp-s52-tois,QLP,17:13:43.48,81:00:14.58,1.225,0.078,12.619,0.094,2459739.321322,0.0013012,7.495973,1.55e-05,5.366,0.138,8.491001,0.001068,7790.0,0.983328,12.6471,0.758967,328.532,1186.0,22.0,686.613,19.3835,5667.0,132.5,4.14,0.08,1.41,0.08,,,1.01,0.130233,"14,18,19,20,21,25,26,40,41,47,48,51,52",2021-06-23,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search; possible depth-aperture correlation,4092,1,False,False,True -284454822,4093.01,,1,4,1,1,4,4,4,1.9,25.6,10.49,1,2,4,PC,PC,12.1517,0.006,,1,spoc-s14-s55-b0A-PC,QLP,19:22:57.23,59:25:52.33,-37.264,0.042,-53.613,0.042,2459777.232773,0.0042954055,10.4719729819298,0.0003097122,3.27018950993309,0.43283865,1.758939,0.133423,1618.73114350876,122.879616,3.22225864388506,1.0477126,56.3210797192009,698.694770252192,12.246454,261.191,1.3755,5388.0,129.8,4.61,0.08,0.791535973548889,0.0439874,,,0.935,0.121174,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,54,55",2021-06-23,2023-03-14,2023-03-24 12:12:10,found in faint-star QLP search,4093,1,True,False,True -284454822,4093.02,,2,4,2,2,4,4,4,0.9,18.4,8.56,1,2,4,PC,PC,12.1517,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,19:22:57.23,59:25:52.33,-37.264,0.042,-53.613,0.042,2459580.625318,0.0052074064,17.7046155300697,0.00044091206,4.25554274403746,0.55132586,1.394661,0.124706,1283.70583161867,114.85193,2.85875987101368,1.112972,27.9636369998982,586.500198624319,10.565542,261.191,1.3755,5388.0,129.8,4.61,0.08,0.791535973548889,0.0439874,,,0.935,0.121174,"47,48,49,50,51,52,53,54,55,56,57,58,59,60",2023-03-02,2023-05-19,2023-06-16 12:14:51,low SNR; potential multi,4093,2,True,False,True -280035202,4094.01,,1,4,1,1,4,4,4,3.4,30.5,11.73,2,2,3,PC,PC,11.1004,0.048,,1,spoc-s14-s60-b0A-PC,QLP,19:50:42.76,68:10:03.58,6.596,0.047,19.065,0.05,2459715.956315,0.0043739,4.91117863279156,5.5656386e-05,2.64592442154746,0.1985484,0.658587,0.03897,606.396829820625,35.89207,3.4399600578148,0.29145503,561.871744144874,1241.73535801077,18.0,312.41,2.847,6186.0,325.3,4.33,0.11,1.23722994327545,0.0571608,,,1.18,0.233717,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,53,54,55,56,57,58,59,60",2021-06-23,2023-05-26,2023-06-16 12:14:51,found in faint-star QLP search,4094,1,False,False,True -274974693,4095.01,,3,4,3,3,2,4,4,14.8,55.0,62.27,3,1,1,PC,PC,12.9287,0.008,,1,spoc-s51-b0A,QLP,17:11:35.92,47:15:25.43,9.467,0.024,-13.573,0.025,2459695.956301,0.0024342292,4.15300150363422,0.0007205453,1.39518402174966,0.32308054,7.605821,0.756564,6980.74079400824,696.5782,9.1841651030272,2.6980782,443.35327160575,1170.32701194444,8.676403,559.648,4.364,5737.0,105.0,4.37,0.07,1.08846998214722,0.0480905,-0.0828207,0.0209318,1.02,0.123219,"24,26,51",2021-06-23,2022-07-15,2023-07-07 00:00:00,found in faint-star QLP search,4095,1,False,False,True -272782321,4096.01,,1,4,1,1,3,4,4,1.6,18.9,11.33,2,0,1,PC,PC,12.4983,0.007,,1,qlp-s56-tois,QLP,15:51:56.84,67:02:22.87,-22.247,0.028,22.007,0.024,2459836.287468,0.004249,10.1045108,6.24e-05,3.23,0.375,1.618953,0.106469,1490.0,98.0566,3.3818,0.251105,47.9649,733.0,15.0,306.261,1.2275,5053.0,125.6,4.46,0.09,0.9,0.06,,,0.84,0.108057,"14,15,16,17,18,20,21,23,24,26,41,47,48,49,50,51,53,54,55,56",2021-06-23,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search,4096,1,False,False,True -264295655,4097.01,,1,4,1,1,3,4,4,5.4,41.1,12.92,4,0,1,PC,PC,12.4222,0.008,,1,qlp-s52-tois,QLP,21:20:55.94,83:01:22,24.599,0.042,-21.36,0.036,2459768.767188,0.0028047,2.7741864,1.11e-05,2.005,0.245,2.075739,0.002204,1910.0,2.02996,3.6487,0.224433,393.387,1240.0,20.0,317.929,1.9595,5636.0,127.9,4.61,0.08,0.82,0.04,,,1.0,0.124063,"18,19,20,24,25,26,40,52",2021-06-23,2022-11-18,2022-12-14 12:09:24,found in faint-star QLP search,4097,1,False,False,True -264223828,4098.01,,3,4,3,3,3,4,4,10.5,40.9,22.29,0,2,1,PC,PC,12.0216,0.008,,1,qlp-s52-tois,QLP,21:17:24.25,79:36:38.52,3.167,0.046,18.734,0.054,2459766.922193,0.0023922,1.1789842,3.5e-06,0.856,0.121,1.260185,0.003395,1160.0,3.12678,5.02454,0.368092,403.61,1248.0,15.0,425.694,4.237,5650.0,128.5,4.17,0.08,1.37,0.07,,,1.0,0.124646,"17,18,19,24,25,26,52",2021-06-23,2023-03-09,2023-03-24 12:12:10,found in faint-star QLP search,4098,1,False,False,True -264173803,4099.01,,1,4,1,1,4,4,4,1.9,22.8,4.8,3,2,2,PC,PC,11.9512,0.006,,1,qlp-s49-tois,QLP,19:38:14.87,71:34:28.32,18.269,0.03,4.065,0.038,2459663.677409,0.005683,4.3954123,3.33e-05,2.306,0.364,0.923268,0.00181,850.0,1.66672,2.02986,0.168567,119.282,920.0,12.0,177.305,0.5505,4836.0,120.5,4.6,0.09,0.73,0.05,,,0.785,0.0921557,"14,15,16,17,18,19,20,21,22,23,25,26,40,41,47,48,49",2021-06-23,2022-08-19,2022-12-14 12:09:24,found in faint-star QLP search; variable host,4099,1,False,False,True -243297296,4100.01,,3,4,3,3,4,4,4,12.0,50.3,43.06,1,5,3,PC,PC,12.1308,0.006,,1,qlp-s52-tois,QLP,19:14:18.96,59:53:44.89,10.756,2.203,-9.603,2.203,2459766.756399,0.0010994,3.585982,6e-06,2.384,0.144,3.174987,0.001038,2920.0,0.955803,,,442.89,1278.0,48.0,489.834,,6195.0,399.3,,,,,,,,,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,54",2021-06-23,2022-10-11,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius; host is F star indicating that companion is likely planetary in radius,4100,1,False,False,True -243280335,4101.01,,3,4,3,3,2,4,4,9.2,38.2,50.67,2,0,1,PC,PC,12.7584,0.006,,1,qlp-s50-tois,QLP,19:14:04.39,56:37:33.61,-0.62,2.154,-12.455,2.154,2459689.642764,0.0021614,4.3202706,1.42e-05,1.211,0.187,3.697793,0.008921,3400.0,8.21653,,,88.2086,853.0,14.0,691.697,,6287.0,260.4,,,,,,,,,"14,15,16,19,20,23,26,40,41,47,49,50",2021-06-23,2022-12-12,2022-12-16 12:08:26,V-shaped; found in faint-star QLP search; no stellar radius; some odd-even in spoc multisector,4101,1,False,False,True -237235093,4102.01,,5,5,5,5,5,5,5,3.7,34.9,6.12,1,1,0,PC,FP,11.812,0.006,,1,qlp,QLP,19:49:56.3,73:05:11.27,9.247,0.074,-9.643,0.084,2459034.03138,0.0034078,2.6834113,4.48e-05,1.146,0.423,0.825473,0.00471,760.0,4.33852,2.33576,0.220728,168.322,1003.0,13.0,185.25,1.4125,5221.0,152.1,4.62,0.09,0.76,0.04,,,0.89,0.115533,"14,15,16,17,18,19,20,21,22,23,24,25,26",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4102,1,False,False,True -235902467,4103.01,,3,4,3,3,3,4,4,30.2,132.2,108.03,5,2,1,PC,PC,11.2056,0.006,,1,qlp-s52-tois,QLP,19:19:00.29,82:52:32.1,14.219,0.044,74.947,0.054,2459754.903759,0.0003786,12.2740928,6.6e-06,3.532,0.04,15.803344,0.000443,14450.0,0.40822,12.7514,0.642275,50.0141,740.0,205.0,243.002,1.43,5674.0,129.2,4.4,0.08,1.05,0.05,,,1.009,0.120724,"18,19,20,24,25,26,40,47,52",2021-06-23,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,4103,1,False,False,True -235664497,4104.01,,3,4,3,3,3,4,4,32.4,41.5,317.0,1,0,1,PC,PC,12.9978,0.009,,1,qlp-s53-tois,QLP,18:30:52.24,19:47:45.63,0.862,0.037,-4.438,0.048,2459766.722246,0.0023836,2.3757662,1.05e-05,3.323,0.298,8.173711,0.346303,7500.0,318.906,19.1019,1.19183,2544.85,1978.0,28.0,1367.43,50.615,6676.0,132.2,3.9,0.09,2.2,0.13,,,1.41,0.234962,"26,40,53",2021-06-23,2022-11-18,2022-12-14 12:09:24,found in faint-star QLP search; large but consistent with insolation,4104,1,False,False,True -233576159,4105.01,,3,4,3,3,3,4,4,8.2,23.1,77.82,1,0,1,PC,PC,12.5452,0.008,,1,qlp-s49-tois,QLP,18:48:48.97,65:56:29.91,1.094,0.035,-4.958,0.034,2459658.130221,0.0036716,5.7152049,3.09e-05,2.783,0.329,2.260683,0.001993,2080.0,1.83577,10.4523,0.62062,213.024,1064.0,24.0,1010.35,18.324,5845.0,128.4,3.75,0.08,2.25,0.11,,,1.05,0.128916,"14,15,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55",2021-06-23,2023-03-14,2023-04-05 00:00:00,found in faint-star QLP search,4105,1,False,False,True -233535738,4106.01,,1,5,5,1,4,4,4,1.8,26.2,11.93,0,2,3,PC,APC,11.2452,0.006,,1,qlp-s52-tois,QLP,18:42:58.99,62:49:06.2,5.271,0.048,33.104,0.044,2459738.567408,0.0033421,16.3558787,7.66e-05,4.674,0.474,1.325407,0.000973,1220.0,0.89658,3.48406,0.205206,68.1566,800.0,26.0,243.519,1.395,5740.0,130.5,4.45,0.08,1.0,0.05,,,1.026,0.13129,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52",2021-06-23,2023-01-30,2023-02-09 12:10:04,found in faint-star QLP search; TFOP SB1/APC,4106,1,False,False,True -232632239,4107.01,,1,4,1,1,2,4,4,5.1,38.0,11.63,2,0,1,PC,PC,12.8398,0.006,,1,qlp-s49-tois,QLP,17:56:57.77,58:52:57.44,-13.792,0.033,6.097,0.031,2459660.461464,0.0026791,3.5322939,1.38e-05,1.901,0.325,2.663318,0.003647,2450.0,3.35884,3.40196,0.369568,64.0026,787.0,19.0,153.899,0.365,4003.0,124.1,4.59,0.12,0.66,0.07,,,0.625,0.086269,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49",2021-06-23,2022-08-19,2022-12-14 12:09:24,found in faint-star QLP search; two stars in pixel; match to TIC 232632236,4107,1,False,False,True -232603560,4108.01,,3,4,3,3,4,4,4,4.2,19.7,50.3,0,2,3,PC,PC,11.9824,0.008,,1,qlp-s52-tois,QLP,17:10:40.17,60:01:42.48,-2.199,0.037,10.935,0.039,2459762.974572,0.0039618,14.4348737,8.14e-05,6.023,1.268,1.782069,0.003568,1640.0,3.28599,8.117,0.555657,220.777,1073.0,28.0,665.929,8.4895,5834.0,131.8,3.89,0.08,1.93,0.1,,,1.05,0.133722,"14,15,16,17,18,19,20,22,23,24,25,26,40,41,47,48,49,50,52,54",2021-06-23,2022-10-11,2023-07-07 00:00:00,found in faint-star QLP search; possible odd-even; two stars in pixel,4108,1,False,False,True -230084146,4109.01,,3,4,3,3,1,4,4,3.6,40.8,23.12,0,0,0,PC,PC,12.73,0.006,,1,qlp-s52-tois,QLP,16:25:28.3,66:21:05.71,8.926,0.02,57.646,0.023,2459746.880654,0.0017121,12.320331,3.13e-05,2.327,0.341,6.304682,0.003998,5790.0,3.68205,5.10721,0.499507,7.71974,464.0,29.0,153.444,0.2955,4103.0,122.6,4.62,0.11,0.65,0.06,,,0.642,0.0821173,"15,16,17,18,20,21,22,23,24,25,26,40,41,47,48,50,51,52",2021-06-23,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,4109,1,False,False,True -230075120,4110.01,,5,5,5,5,5,5,5,4.9,33.7,9.2,2,2,4,EB,FP,11.1315,0.007,,1,qlp-s49-tois,QLP,16:17:45.91,69:26:51.77,-3.663,0.058,10.34,0.054,2459663.9541,0.0026544,0.7676706,3.1e-06,1.057,0.211,0.369213,0.001051,340.0,0.968097,2.98877,0.211164,2825.39,2031.0,15.0,417.852,5.1525,6377.0,122.5,4.17,0.09,1.53,0.07,,,1.27,0.194578,"14,15,16,17,18,19,20,21,22,23,24,25,26,41,47,48,49",2021-06-23,2022-08-16,2022-12-14 12:09:24,found in faint-star QLP search; retired as NEB on TIC 230075121,4110,1,False,False,True -230006888,4111.01,,3,4,3,3,1,4,4,6.1,27.1,67.55,1,0,0,PC,PC,12.955,0.008,,1,qlp-s52-tois,QLP,19:23:55.38,63:33:26.17,2.27,0.031,14.627,0.025,2459768.205231,0.0036137,12.2788421,5.95e-05,4.387,0.373,5.398651,0.003598,4960.0,3.31378,9.64521,0.585322,84.8171,845.0,22.0,705.399,7.9485,5596.0,129.8,4.15,0.08,1.39,0.07,,,0.99,0.125525,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,50,51,52,53,54,55",2021-06-23,2023-03-14,2023-03-15 00:00:00,found in faint-star QLP search,4111,1,False,False,True -229976631,4112.01,,5,5,5,5,5,5,5,2.0,31.5,6.63,0,2,0,O,FA,11.024,0.018,,1,spoc-s14-s50-b0A-PC,QLP,19:20:26.12,61:05:07.56,20.21,2.0,98.83,2.0,2459390.812437,0.0025342063,10.7164870498118,0.00014216028,3.41842789537062,0.34177464,1.455995,0.093106,1340.12240236449,85.74971,2.16171,0.238129,27.0606425423974,581.706980925092,12.648486,,,4235.5,225.9,,,0.65,0.07,,,,,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50",2021-06-23,2022-10-19,2022-12-14 12:09:24,found in faint-star QLP search; TOI4112.01:Same signal as TOI-1697.01 but this star is a phantom; retired as an FA,4112,1,False,False,True -229786610,4113.01,,3,4,3,3,4,4,4,0.7,19.1,5.4,0,2,2,PC,PC,11.101,0.006,,1,qlp-s57-tois,QLP,18:55:33.52,71:24:02.42,11.849,0.039,66.741,0.043,2459839.07625,0.0049233,22.1575175,0.0001375,3.374,0.516,0.909142,0.063334,837.0,58.3308,2.17495,0.166484,12.4497,523.0,12.0,148.616,0.4655,5174.0,132.1,4.58,0.09,0.79,0.05,,,0.877,0.10954,"14,15,16,17,19,20,21,22,23,25,26,40,41,47,49,50,51,52,53,54,55,56,57",2021-06-23,2023-05-01,2023-05-06 12:13:45,V-shaped; found in faint-star QLP search,4113,1,False,False,True -229408913,4114.01,,1,4,1,1,4,4,4,7.0,46.5,15.8,2,1,3,PC,PC,12.3109,0.006,,1,spoc-s14-s60-b0A-PC,QLP,19:31:51.67,61:52:55.39,-9.498,0.031,-20.765,0.031,2459657.535697,0.0046864,4.80385391028854,9.018577e-05,2.7824258610562,0.20454367,2.587526,0.201013,2380.3621290263,185.12244,4.09813883608447,0.47212625,51.6275523986123,683.659941642759,12.4434395,132.393,0.281,4080.0,126.3,4.56,0.12,0.692076027393341,0.0688216,,,0.638,0.0806373,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; bad transit shape,4114,1,False,False,True -199610140,4115.01,,3,4,4,3,1,4,4,37.1,105.0,71.48,3,1,0,PC,PC,12.8076,0.006,,1,qlp-s52-tois,QLP,16:36:29.12,57:09:00.03,-9.154,0.028,34.592,0.032,2459912.623191,0.0013771902,2.9855843,2.6e-06,1.184,0.144,10.901047,0.052278,9990.0,48.1483,10.0005,0.974955,100.984,883.0,41.0,264.995,1.0135,4602.0,123.8,4.48,0.1,0.82,0.06,,,0.728,0.0831325,"16,17,19,22,23,24,25,26,49,50,51,52,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,V-shaped; variable host; found in faint-star QLP search,4115,1,False,False,True -198616607,4116.01,,3,4,3,3,1,4,4,33.3,36.6,317.0,3,0,0,PC,PC,12.4627,0.006,,1,qlp-s40-tois,QLP,18:05:36.87,47:33:01.18,-3.927,2.107,-8.035,2.107,2459417.473162,0.0018373,3.6311186,1.57e-05,2.416,0.527,6.861775,0.328093,6300.0,302.139,15.6552,,1145.48,,30.0,504.87,,5979.9,,,,1.63,,-0.082,0.013,,,"14,26,40",2021-06-23,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,4116,1,False,False,True -198189972,4117.01,,3,4,3,3,2,4,4,4.7,28.3,75.75,1,0,1,PC,PC,12.6541,0.007,,1,spoc-s14-s60-b0A-PC,QLP,16:24:48.67,60:57:55.81,-0.46,0.026,2.061,0.028,2459602.5846,0.0020371312,25.0930010850911,0.0002710362,5.53442860484909,0.15898317,6.338467,0.157953,5820.93574777655,145.4691,10.3058363460274,0.6422571,62.0331917554094,715.773773352141,33.518875,632.646,4.7565,5775.0,126.6,4.2,0.08,1.33728003501892,0.0655326,,,1.03,0.130337,"14,15,16,17,18,19,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59",2021-06-23,2023-05-25,2023-07-07 00:00:00,found in faint-star QLP search,4117,1,False,False,True -193773468,4118.01,,3,4,4,3,1,4,4,40.4,99.5,120.99,5,0,0,PC,PC,12.7376,0.007,,1,qlp-s52-tois,QLP,17:53:29.59,46:20:47.07,-6.419,0.023,-3.643,0.022,2459767.000877,0.0006546,2.5551882,3.3e-06,2.356,0.07,12.701113,0.002101,11630.0,1.93545,13.5962,0.685276,595.9,1376.0,66.0,594.975,4.3695,5855.0,129.3,4.3,0.07,1.21,0.06,,,1.06,0.127161,"25,26,40,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; possible odd-even,4118,1,False,False,True -160618074,4119.01,,3,4,3,3,1,4,4,13.7,43.8,61.81,2,0,0,PC,PC,12.9267,0.007,,1,qlp-s49-tois,QLP,16:25:04.9,73:17:00.58,-18.873,0.03,16.767,0.035,2459911.749689,0.0045934897,5.201975,1.1e-05,1.175,0.315,5.431386,0.010795,4990.0,9.94253,9.15316,0.734403,30.1871,653.0,25.0,468.817,3.5465,4950.0,126.7,4.21,0.09,1.18,0.08,,,0.82,0.0974547,"15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,59",2021-06-23,2023-03-16,2023-03-16 00:00:00,found in faint-star QLP search; close to but not synchronized with underlying variability; v-shaped,4119,1,False,False,True -159438097,4120.01,,3,4,3,3,1,4,4,18.3,44.6,128.64,3,0,0,PC,PC,12.8777,0.008,,1,qlp-s52-tois,QLP,16:07:42.89,82:04:21.13,-15.067,0.027,12.1,0.027,2459914.077004,0.0031176987,4.8952783,1.2e-05,5.325,0.231,5.147716,0.001212,4730.0,1.11667,14.0672,0.74192,883.882,1519.0,53.0,912.594,12.508,5828.0,129.6,3.96,0.08,1.77,0.09,,,1.05,0.133444,"14,19,20,21,25,26,40,41,47,48,52,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,4120,1,False,False,True -157218656,4121.01,,3,4,3,3,3,4,4,73.7,111.1,317.0,3,2,2,PC,PC,11.6881,0.009,,1,qlp-s53-tois,QLP,17:50:49.7,16:46:29.49,-0.033,0.088,-4.656,0.08,2459768.021818,0.0004815,2.8622679,3e-06,2.646,0.363,15.792328,0.534309,14440.0,491.996,18.4047,0.966393,1757.24,1803.0,98.0,605.874,18.2665,7167.0,131.4,4.3,0.09,1.49,0.07,,,1.6,0.264024,"26,53",2021-06-23,2022-11-30,2022-12-14 12:09:24,found in faint-star QLP search,4121,1,False,False,True -156215204,4122.01,,3,5,5,3,3,4,4,13.2,27.5,103.65,0,2,1,PC,APC,12.0844,0.014,,1,qlp-s41-tois,QLP,12:19:52.34,83:14:08.51,-1.07,0.042,-0.947,0.032,2459443.029994,0.0043527,2.4307782,1.99e-05,1.708,0.292,1.423247,0.003454,1310.0,3.18166,12.4035,0.925828,506.486,1321.0,13.0,1212.25,27.185,6015.0,146.7,3.45,0.09,3.3,0.18,,,1.11,0.153902,"14,19,21,26,41,47",2021-06-23,2022-03-07,2023-02-27 00:00:00,found in faint-star QLP search; phase modulations in phase with transits,4122,1,False,False,True -153896150,4123.01,,3,4,3,3,3,4,4,29.2,114.1,44.99,2,2,1,PC,PC,11.8522,0.007,,1,spoc-s14-s60-b0A-PC,QLP,08:44:56.05,75:06:20.44,-20.333,0.034,-44.632,0.04,2459938.189995,0.0028037427,2.78794504620021,1.6583763e-05,1.50847571616982,0.12160534,3.492417,0.239959,3211.46735595023,220.98615,7.58514752315059,8.170832,374.476348880447,1121.95605834878,18.005358,242.624,1.4315,5375.0,122.2,4.55,0.08,0.84724098443985,0.0460552,,,0.93,0.118677,"20,26,47,53,60",2021-06-23,2023-05-25,2023-06-16 12:14:51,V-shaped; found in faint-star QLP search; nearby TIC 802691143,4123,1,False,False,True -150761163,4124.01,,3,4,3,3,3,4,4,77.9,105.0,317.0,1,1,2,PC,PC,11.436,0.018,,1,qlp-s53-tois,QLP,18:37:01.94,14:12:23.76,0.443,1.395,-3.523,1.303,2459762.989003,0.0007998,3.4138019,6.2e-06,2.877,0.161,10.74752,0.338245,9850.0,311.487,22.5559,1.98218,309.683,1168.0,87.0,512.0308,68.7932,5150.0,218.2,,,2.24,0.19,,,,,"26,40,53",2021-06-23,2022-11-30,2022-12-14 12:09:24,found in faint-star QLP search,4124,1,False,False,True -147761049,4125.01,,3,4,4,3,3,4,4,39.5,53.1,317.0,3,0,1,PC,PC,12.72,0.008,,1,spoc-s14-s60-b0A-PC,QLP,07:17:13.29,70:46:48.68,-7.673,0.023,-3.163,0.031,2459600.067684,0.0012942,4.7155974356619,2.3848033e-05,3.47480783331776,0.08424255,12.275451,0.311098,11242.4339671366,286.49048,18.3601488804105,0.9564092,821.376422107968,1365.38556646148,32.91128,766.601,12.394,5873.0,124.0,4.08,0.08,1.55850994586945,0.0763267,,,1.06,0.132959,"20,26,40,47,53,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,4125,1,False,False,True -141616639,4126.01,,5,5,5,5,5,5,5,3.5,35.0,5.91,0,0,0,PC,FP,12.3454,0.006,,1,qlp,QLP,07:15:16.32,81:13:15.54,2.306,0.024,-107.544,0.029,2459032.680649,0.0069174,3.2428744,0.0001546,2.417,0.494,1.597206,0.007156,1470.0,6.59101,2.3171,0.28819,113.659,909.0,9.0,107.33,0.1835,4016.0,126.2,4.72,0.11,0.58,0.06,,,0.628,0.0795975,"19,20,26",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4126,1,False,False,True -141488193,4127.01,,3,5,5,3,4,4,4,7.1,66.2,105.62,1,4,4,PC,CP,11.0383,0.006,,1,qlp-s26-faintsearch,QLP,07:01:37.09,72:24:53.75,3.353,0.042,-3.195,0.058,2459031.931632,0.0009318,56.4043748,0.0002054,4.069,0.512,9.881602,0.002794,9060.0,2.5734,12.5447,0.610691,0.909373,272.0,47.0,319.632,3.317,6433.0,138.4,4.36,0.09,1.25,0.06,,,1.3,0.202365,"20,26,53",2021-06-23,2022-11-18,2023-03-28 12:03:08,found in faint-star QLP search; alerted period of 169 days no longer possible with additional TCE in s53 (~2765.11 TBJD); period updated to new maximum period of ~56 days (1/3 of previously alerted period),4127,1,False,False,True -137420801,4128.01,,3,4,3,3,3,4,4,10.8,50.0,20.59,2,2,1,PC,PC,12.2769,0.006,,1,qlp-s47-tois,QLP,08:33:02.75,82:01:29.14,-13.015,0.046,-28.979,0.044,2459911.959304,0.002526657,1.9795413,7.1e-06,2.088,0.182,2.870134,0.001893,2640.0,1.74308,4.77367,0.316145,604.981,1381.0,22.0,308.87,2.633,5275.0,130.6,4.46,0.09,0.92,0.06,,,0.904,0.112261,"19,20,26,40,47,59",2021-06-23,2023-03-16,2023-03-16 00:00:00,found in faint-star QLP search,4128,1,False,False,True -123357034,4129.01,,3,4,4,3,4,4,4,19.9,87.0,27.66,2,7,4,PC,PC,11.8417,0.006,,1,qlp-s41-tois,QLP,18:46:06.55,46:14:54.84,10.703,0.045,12.602,0.043,2459744.308725,0.0014036067,3.2724973,6.5e-06,1.459,0.108,5.791536,0.002745,5320.0,2.52861,5.6778,0.460887,44.1281,718.0,35.0,130.284,0.435,4279.0,107.4,4.51,0.09,0.75,0.06,-0.004,0.033,0.669,0.0845173,"14,26,40,41,53",2021-06-23,2022-09-06,2023-04-20 00:00:00,found in faint-star QLP search; epoch only from spoc-s53,4129,1,False,False,True -71396541,4130.01,,5,5,5,5,5,5,5,6.3,45.1,14.24,1,0,5,PC,FP,10.7386,0.006,,1,qlp,QLP,07:44:16.73,68:49:34.53,10.168,0.077,14.425,0.111,2459031.311744,0.0058646,6.269716,0.0002671,3.696,0.762,1.347148,0.003547,1240.0,3.26674,3.86288,0.340606,154.408,982.0,12.0,148.525,1.349,4812.0,125.3,4.26,0.09,1.08,0.07,,,0.779,0.0933317,"20,26",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4130,1,False,False,True -47937361,4131.01,,3,4,4,3,1,4,4,40.6,109.2,85.81,3,0,0,PC,PC,12.8667,0.007,,1,qlp-s41-tois,QLP,18:43:50.69,48:08:02.66,-14.056,0.023,-7.825,0.024,2459797.858796,0.0009343292,2.3382502,3.9e-06,2.289,0.072,14.306126,0.001938,13090.0,1.78478,11.123,0.665334,438.011,1274.0,59.0,411.113,2.0835,5263.0,129.6,4.45,0.08,0.94,0.05,,,0.9,0.111664,"14,26,40,41,53,54,55",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; 2 stars in pixel,4131,1,False,False,True -335655755,4132.01,,3,4,3,3,3,4,4,11.9,43.8,91.6,0,3,2,PC,PC,11.8921,0.007,,1,spoc-s14-s60-b0A-PC,QLP,14:27:03.75,78:45:45.84,14.536,0.075,-29.754,0.051,2459395.937372,0.0012257394,11.7647925653559,5.0148403e-05,4.43381844061323,0.12236312,4.819362,0.108419,4428.95919482953,99.853004,11.5240963159955,0.7157869,287.708203106276,1050.40749209255,42.101948,578.129,8.731,5801.0,106.5,4.01,0.08,1.69396996498108,0.0847436,,,1.07,0.132882,"14,15,20,21,26,40,41,47,48,53,60",2021-06-23,2023-05-25,2023-06-16 12:14:51,found in faint-star QLP search; check nearby TIC 1001601963 (Tmag~ 15.7),4132,1,False,False,True -468396217,4133.01,,3,4,3,3,1,4,4,23.1,67.1,110.17,1,0,0,PC,PC,12.9532,0.006,,1,qlp-s52-tois,QLP,05:00:25.1,69:49:14.66,-4.048,2.22,-0.031,2.22,2459768.396961,0.002595,4.1571604,1.47e-05,4.348,0.285,8.7646,0.004286,8040.0,3.9475,,,773.464,1469.0,30.0,708.626,,5766.9,283.8,,,,,,,,,"19,25,26,52,59",2021-06-23,2023-03-16,2023-03-16 00:00:00,found in faint-star QLP search,4133,1,False,False,True -420803693,4134.01,,5,5,5,5,5,5,5,5.0,44.1,5.36,0,0,0,PC,FP,11.2063,0.006,,1,qlp,QLP,04:42:01.48,79:59:15.11,-36.416,0.034,-3.64,0.054,2459033.325227,0.0039978,0.9135968,2.36e-05,1.247,0.326,0.586456,0.003498,540.0,3.22189,2.17077,0.20325,2079.14,1881.0,11.0,228.59,1.121,5987.0,131.7,4.58,0.08,0.89,0.04,,,1.102,0.14026,"19,20,25,26",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4134,1,False,False,True -288471040,4135.01,,5,5,5,5,5,5,5,6.8,32.1,21.52,0,1,2,PC,FP,10.5893,0.009,,1,qlp-s52-tois,QLP,18:05:58.35,78:02:57.45,1.263,0.044,28.005,0.062,2459766.355421,0.0020393,2.5139764,7e-06,2.36,0.278,0.608183,0.000463,560.0,0.426529,4.90303,0.26506,1043.42,1583.0,31.0,421.5,4.582,6150.0,200.2,3.9,0.09,2.05,0.09,,,1.22,0.172811,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52",2021-06-23,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search; significant centroid offset and depth aperture correlation; likely NEB,4135,1,False,False,True -420680343,4136.01,,3,4,3,3,3,4,4,5.8,28.0,29.8,0,0,1,PC,PC,12.1943,0.011,,1,qlp-s52-tois,QLP,01:21:37.78,82:10:07.62,11.096,0.039,-3.657,0.033,2459763.053546,0.0034023,3.7630305,2.01e-05,3.503,0.421,1.71682,0.002178,1580.0,2.00578,5.96705,0.365984,1050.55,1586.0,17.0,608.697,7.403,6357.0,144.5,4.19,0.09,1.5,0.07,,,1.26,0.193829,"18,19,25,26,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search,4136,1,False,False,True -417646390,4137.01,TIC 417646390.01,3,5,5,3,4,4,4,57.3,154.7,121.48,1,8,3,PC,CP,10.8557,0.009,,1,qlp-s52-tois,QLP,05:10:27.09,70:23:27.88,19.859,0.035,-2.936,0.043,2459762.195685,0.0004234,3.8016217,2.6e-06,3.223,0.061,9.060165,0.000709,8310.0,0.652961,13.6371,0.640087,672.585,1418.0,120.0,334.993,3.2815,6244.0,129.2,4.19,0.09,1.47,0.07,,,1.21,0.180656,"19,26,52",2021-06-23,2022-12-12,2023-03-03 12:02:46,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),4137,1,False,False,True -257060897,4138.01,TIC 257060897.01,3,5,5,3,4,4,4,60.8,72.6,317.0,1,2,1,CP,CP,11.2633,0.007,,1,spoc-s14-s60-b0A-CP,QLP,15:10:07.72,72:42:37.13,13.268,0.039,-7.813,0.035,2459660.607824,0.0003275,3.66003195443592,4.4342687e-06,4.78530137239927,0.027072828,8.446925,0.039915,7749.7203264829,36.76219,17.5565567809491,0.81297934,1804.55487188826,1662.31097672073,209.37764,505.703,5.0755,5988.0,140.0,3.93,0.08,1.88626003265381,0.0869244,,,1.11,0.147552,"14,15,16,20,21,22,26,40,41,47,48,49,53,56,60",2021-06-23,2023-06-13,2023-06-16 12:14:51,found in faint-star QLP search; TESS CP (Montalto et al. 2021),4138,1,False,False,True -408729765,4139.01,,5,5,5,5,5,5,5,7.4,35.2,39.54,0,0,0,PC,FP,12.9551,0.008,,1,qlp,QLP,01:38:40.94,80:26:00.05,-9.382,0.03,2.243,0.025,2459026.64911,0.0034724,4.6200781,0.0001123,2.149,0.351,3.784952,0.009819,3480.0,9.0439,7.04607,0.51119,216.021,1068.0,12.0,610.592,5.668,5999.0,128.9,4.36,0.08,1.16,0.06,,,1.11,0.14784,"18,19,25,26",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4139,1,False,False,True -400103802,4140.01,TIC 400103802.01,3,4,3,3,3,4,4,37.1,123.2,87.57,2,5,1,PC,PC,12.1311,0.006,,1,qlp-s40-tois,QLP,06:27:54.69,74:00:29.27,6.91,0.04,-2.301,0.039,2459910.467019,0.0009411711,4.2511214,5.7e-06,2.823,0.1,15.120533,0.002176,13830.0,2.00381,11.2617,0.607523,240.568,1097.0,107.0,311.002,2.5875,5501.0,128.5,4.48,0.08,0.94,0.05,,,0.965,0.121235,"19,20,26,40,53,59",2021-06-23,2023-03-06,2023-03-06 00:00:00,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),4140,1,False,False,True -400093775,4141.01,,3,4,3,3,3,4,4,31.8,34.8,317.0,2,0,1,PC,PC,12.5401,0.008,,1,qlp-s53-tois,QLP,05:51:48.59,71:17:26.19,1.881,0.032,-4.556,0.037,2459763.847708,0.0016072,3.6022715,8.1e-06,2.752,0.157,10.583052,0.389867,9700.0,359.016,14.4799,0.736902,582.883,1368.0,38.0,702.211,12.61,6338.0,126.7,4.21,0.09,1.45,0.07,,,1.25,0.201965,"19,20,26,53",2021-06-23,2022-11-18,2023-02-08 00:00:00,found in faint-star QLP search,4141,1,False,False,True -39573090,4142.01,,3,4,3,3,2,4,4,16.1,40.4,100.1,2,0,1,PC,PC,12.6521,0.007,,1,qlp-s52-tois,QLP,17:35:33.93,35:16:35.44,-4.332,0.023,0.38,0.025,2459767.777771,0.0032779,3.6593967,2.42e-05,3.917,0.429,4.602405,0.005168,4230.0,4.76007,12.1105,0.715638,1001.69,1567.0,21.0,890.805,10.984,5875.0,120.1,3.92,0.08,1.86,0.09,,,1.06,0.135656,"25,26,52",2021-06-23,2022-11-18,2023-06-07 00:00:00,found in faint-star QLP search,4142,1,False,False,True -371711170,4143.01,,5,5,5,5,5,5,5,7.9,19.5,125.31,0,0,0,PC,FP,12.1158,0.007,,1,qlp,QLP,04:40:24.13,81:04:38.18,10.058,0.064,-4.504,0.099,2459015.247898,0.0086838,9.8482192,0.0007348,4.24,0.814,1.814695,0.006716,1670.0,6.18557,13.8742,1.27637,206.691,1056.0,9.0,1283.53,58.315,6126.0,126.4,3.46,0.09,3.31,0.21,,,1.16,0.156119,"17,18,19,23,24,25,26",2021-06-23,2021-06-23,2022-12-14 12:09:24,found in faint-star QLP search,4143,1,False,False,True -313194972,4144.01,,3,4,3,3,3,4,4,15.8,93.6,90.26,2,6,1,PC,PC,11.9039,0.006,,1,qlp-s52-tois,QLP,05:46:28.27,75:02:43.94,-1.746,0.034,-14.478,0.042,2459744.991419,0.000946,16.9020565,2.31e-05,5.729,0.229,16.288181,0.002168,14890.0,1.99691,11.3763,0.641715,62.5724,783.0,104.0,260.002,1.603,5442.0,129.4,4.49,0.08,0.91,0.05,,,0.949,0.126866,"19,20,26,40,52",2021-06-23,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,4144,1,False,False,True -279947414,4145.01,TIC 279947414.01,3,4,4,3,3,4,4,69.1,214.5,100.78,2,11,3,PC,PC,11.5241,0.006,,1,qlp-s52-tois,QLP,02:37:43.14,80:16:02.58,11.766,0.04,-13.413,0.044,2459767.636557,0.000225,4.0664446,1.3e-06,1.712,0.075,21.646797,0.004075,19740.0,3.7531,12.1827,0.685761,89.3911,856.0,235.0,205.387,1.1905,5421.0,155.1,4.54,0.08,0.86,0.05,,,0.944,0.124549,"18,19,25,26,52,53",2021-06-23,2022-12-12,2022-12-16 12:08:26,V-shaped; found in faint-star QLP search; CTOI from Olmschenk et al. (2021); multiple stars in pixel,4145,1,False,False,True -23124038,4146.01,,3,5,5,3,1,4,4,94.7,187.7,116.72,3,0,0,PC,APC,11.5765,0.007,,1,qlp-s52-tois,QLP,18:17:40.27,34:05:28.98,-48.834,0.103,-28.03,0.105,2459768.295468,0.0005156,0.7011578,9e-07,0.932,0.177,6.413894,1.205837,5890.0,1110.0,13.2816,1.3563,4863.59,2326.0,81.0,464.611,12.306,6036.0,128.7,4.13,0.08,1.51,0.08,,,1.12,0.146413,"26,40,53",2021-06-23,2022-11-18,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4146,1,False,False,True -138329479,4147.01,,3,4,3,3,3,4,4,39.5,91.3,121.83,3,1,1,PC,PC,12.7833,0.009,,1,qlp-s52-tois,QLP,05:32:21.16,79:48:32.88,8.892,0.019,1.009,0.022,2459767.712267,0.000859,2.3745416,3.2e-06,3.17,0.13,11.559261,0.002596,10590.0,2.39068,13.6144,0.703471,1303.71,1674.0,57.0,631.739,5.0715,5865.0,129.4,4.23,0.08,1.3,0.06,,,1.06,0.13825,"19,20,25,26,40,52",2021-06-23,2022-12-12,2023-02-19 00:00:00,found in faint-star QLP search,4147,1,False,False,True -137157546,4148.01,,5,5,5,5,5,5,5,6.3,46.1,13.55,1,2,4,EB,FP,12.0672,0.006,,1,qlp-s26-faintsearch,QLP,02:00:05.2,77:22:08.4,-3.332,0.051,-5.546,0.049,2459721.117312,0.0057037505,3.6841446,7.21e-05,2.967,0.382,2.456541,0.002937,2260.0,2.70526,3.74263,0.281723,286.262,1145.0,21.0,204.639,1.293,4939.0,201.8,4.55,0.1,0.79,0.05,,,0.812,0.110491,"18,19,25,26,52",2021-06-23,2023-01-24,2023-01-25 00:00:00,found in faint-star QLP search; TFOP FP/NEB,4148,1,False,False,True -103096524,4149.01,,3,4,3,3,1,4,4,42.7,114.3,97.77,3,0,0,PC,PC,12.8508,0.014,,1,qlp-s52-tois,QLP,04:04:13.22,75:29:47.96,3.733,0.056,-4.069,0.06,2459768.675673,0.0008009,3.2928068,5.4e-06,2.107,0.154,18.019932,0.007743,16460.0,7.13136,11.9432,0.803304,159.842,990.0,55.0,331.43,3.9135,5037.0,143.4,4.44,0.09,0.91,0.06,,,0.84,0.102786,"25,26,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search,4149,1,False,False,True -102719996,4150.01,,3,4,3,3,3,4,4,14.8,47.4,115.11,1,0,1,PC,PC,12.8051,0.014,,1,spoc-s14-s55-b0A-PC,QLP,04:10:05.04,70:54:56.58,-6.49,0.021,12.878,0.028,2459726.067196,0.006738687,9.79383520369886,0.0025256702,4.65423935805026,0.41846794,6.783445,0.636436,6228.30713159326,586.0073,13.18159994416,1.1075028,254.825479441471,1019.01473052713,10.776709,636.934,8.0485,5737.0,143.5,4.12,0.08,1.46202003955841,0.0741256,,,1.02,0.125924,"19,25,26,52,53",2021-06-23,2023-03-09,2023-03-24 12:12:10,found in faint-star QLP search,4150,1,False,False,True -406926040,4151.01,,3,4,3,3,3,4,4,11.5,42.0,99.12,1,2,2,PC,PC,11.2924,0.007,,1,qlp-s50-tois,QLP,19:09:42.48,56:21:51.38,0.31,0.042,6.853,0.045,2459910.920229,0.00587131,11.6999152,2.95e-05,3.863,0.18,3.218545,0.000696,2960.0,0.641485,12.0929,0.56622,157.492,986.0,42.0,701.278,11.6445,6906.0,97.0,3.94,0.09,2.16,0.1,,,1.46,0.245557,"14,15,16,19,20,22,23,26,40,41,47,49,50,53,54,55,56,59",2021-06-23,2023-03-14,2023-03-15 00:00:00,found in faint-star QLP search; 2 stars in pixel; see observing notes re: possible composite spectrum,4151,1,False,False,True -1813844121,4152.01,,3,4,4,3,4,4,4,194.6,276.4,317.0,3,0,2,PC,PC,11.7729,0.052,,1,qlp-s40-tois,QLP,18:43:03.28,24:05:22.93,-0.176,0.177,-5.824,0.243,2459744.512198,0.0008432315,1.5822588,2.8e-06,2.964,0.061,14.515172,0.000467,13280.0,0.430165,,,,,114.0,555.317,43.935,,,,,,,,,,,"26,40,53,54",2021-06-23,2022-10-11,2023-07-01 00:00:00,found in faint-star QLP search; no stellar radius; F star; equally bright neighbor 1 arcsec away,4152,1,False,False,True -470171739,4153.01,TIC 470171739.01,3,4,4,3,3,4,4,57.8,76.5,317.0,5,31,1,PC,PC,11.1477,0.006,,1,spoc-s14-s60-b0A-PC,QLP,22:21:34.43,82:12:57.89,16.33,0.041,8.273,0.038,2459912.598217,0.00064929854,4.6174253907419,1.264706e-05,4.51731381934158,0.028562425,10.267957,0.058538,9412.56005397338,53.913795,16.6632336547447,0.7609565,1212.0072219156,1504.85983684157,169.56935,423.84,3.6345,6411.0,231.7,4.1,0.1,1.67218995094299,0.0757286,,,1.289,0.218178,"18,19,24,25,26,53,58,59,60",2021-06-23,2023-06-13,2023-06-16 12:14:51,found in faint-star QLP search,4153,1,False,False,True -470156846,4154.01,,3,4,3,3,3,4,4,11.2,32.8,110.72,0,0,1,PC,PC,12.7397,0.008,,1,qlp-s52-tois,QLP,22:11:37.27,82:43:50.31,-5.812,0.027,-1.278,0.034,2459764.089651,0.0035519,7.3446285,3.6e-05,5.044,0.33,4.580598,0.002381,4210.0,2.19269,12.8665,0.689679,506.001,1321.0,27.0,975.983,15.678,6320.0,131.8,3.94,0.09,1.99,0.09,,,1.25,0.190994,"18,19,20,24,25,26,52",2021-06-23,2022-09-16,2022-12-14 12:09:24,found in faint-star QLP search,4154,1,False,False,True -467331291,4155.01,,1,4,4,1,3,4,4,4.5,42.6,9.46,4,4,3,PC,PC,11.2473,0.006,,1,qlp-s52-tois,QLP,21:42:32.69,77:44:03.78,31.487,0.041,27.596,0.037,2459913.520622,0.0038257753,3.3207642,1.34e-05,2.487,0.224,1.021072,0.000937,940.0,0.863072,3.02356,0.173903,586.762,1371.0,16.0,240.737,1.2675,6142.0,389.6,4.55,0.11,0.95,0.05,,,1.164,0.222827,"17,18,19,24,25,26,52,58,59",2021-06-23,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,4155,1,False,False,True -462553953,4156.01,,1,4,1,1,3,4,4,2.5,28.0,6.02,1,2,2,PC,PC,10.7152,0.007,,1,qlp-s49-tois,QLP,15:23:07.4,76:19:54.77,-30.984,0.034,35.394,0.038,2459660.594644,0.0037438,4.461878,2.92e-05,2.937,0.473,0.543004,0.000924,500.0,0.851334,2.32515,0.156053,459.495,1289.0,15.0,213.719,0.997,5986.0,132.4,4.45,0.08,1.04,0.05,,,1.1,0.141779,"14,15,19,20,21,26,40,41,47,48,49,53",2021-06-23,2023-03-14,2023-03-15 00:00:00,found in faint-star QLP search; variable host; potential multi,4156,1,True,False,True -462553953,4156.02,,2,4,2,2,3,4,4,2.1,29.0,9.8,1,2,2,PC,PC,10.7152,0.007,,2,spoc-s14-s60-b0A-PC,SPOC,15:23:07.4,76:19:54.77,-30.984,0.034,35.394,0.038,2458844.820135,0.0027304096,12.8226390417398,5.461288e-05,3.1703391958512,0.31028894,0.815592,0.073802,750.905749408423,67.971954,3.09540652292258,0.46385154,101.392898921305,809.322537652763,10.467,213.719,0.997,5986.0,132.4,4.45,0.08,1.03963005542755,0.0514071,,,1.1,0.141779,"20,21,47,48,49,53,60",2023-03-02,2023-05-19,2023-06-16 12:14:51,low SNR; near 3:1 resonance,4156,2,True,False,True -461538935,4157.01,,5,5,5,5,5,5,5,15.0,76.0,45.24,1,2,4,EB,FP,11.5576,0.022,,1,qlp-s52-tois,QLP,23:03:55.66,85:26:34.88,15.327,0.042,-5.791,0.037,2459767.361077,0.0023052,5.289835,1.9e-05,3.179,0.363,2.532717,0.356668,2330.0,328.449,7.64474,2.22559,2582.58,1986.0,28.0,348.692,3.26,6655.0,183.5,4.5,0.09,1.11,0.05,,,1.4,0.240727,"18,20,25,26,40,52,53",2021-06-23,2022-12-12,2022-12-16 12:08:26,V-shaped; found in faint-star QLP search; off target in spoc-s14-s55-b0A-PC on TIC 461538932,4157,1,False,False,True -441797394,4158.01,,3,4,3,3,2,4,4,,,19.23,0,1,1,PC,PC,12.275,0.034,,1,qlp-s56-tois,QLP,17:37:12.23,72:05:11.32,,,,,2459846.562281,0.003497,13.4167713,6.43e-05,2.151,0.744,1.934333,0.223325,1780.0,205.669,,,,,12.0,397.98,,,,,,,,,,,,"14,15,16,17,18,19,21,22,23,24,25,26,41,47,48,49,51,52,53,54,55,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search; large and variable host star,4158,1,False,False,True -441600335,4159.01,,3,4,3,3,1,4,4,20.9,49.7,58.47,0,2,0,PC,PC,12.2075,0.006,,1,qlp-s53-tois,QLP,07:41:48.42,74:11:01.96,-15.879,0.039,-6.103,0.047,2459768.139016,0.0017873,0.8659846,2.9e-06,0.891,0.374,1.80382,0.32123,1660.0,295.82,8.86618,0.87666,1311.06,1676.0,12.0,745.908,16.5805,5815.0,126.8,3.89,0.08,1.92,0.1,,,1.05,0.139542,"20,26,40,47,53",2021-06-23,2022-11-30,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4159,1,False,False,True -441580526,4160.01,,3,4,4,3,3,4,4,32.7,106.2,94.79,2,3,1,PC,PC,12.2319,0.006,,1,spoc-s14-s60-b0A-PC,QLP,07:26:57.87,72:13:45.62,3.754,0.033,-9.493,0.039,2459598.996838,0.0005904,4.44271455044309,1.0754138e-05,3.29668661486494,0.049961254,13.349596,0.151852,12220.1525686591,139.8514,11.7585481431335,0.6272951,375.125002731132,1122.44159560076,87.91641,399.676,3.983,5754.0,132.4,4.41,0.08,1.04412996768951,0.053706,,,1.029,0.129809,"20,26,40,47,53,60",2021-06-23,2023-05-25,2023-06-16 12:14:51,slight depth-aperture correlation; found in faint-star QLP search,4160,1,False,False,True -441572821,4161.01,,3,4,3,3,3,4,4,17.9,54.2,124.16,3,1,2,PC,PC,11.9399,0.007,,1,spoc-s14-s60-b0A-PC,QLP,07:20:36.1,72:45:33.84,-0.957,0.033,-1.67,0.039,2459603.737866,0.0028572,4.26077970193248,4.105649e-05,6.44650030494822,0.17486683,4.195821,0.133867,3857.03641873102,123.28848,13.7822358402022,0.74633783,3322.00215748184,1936.28698860024,21.83979,1064.43,28.815,7409.0,121.8,4.0,0.08,2.15032005310059,0.0938592,,,1.69,0.2887,"20,26,40,47,53,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; fast rotator/pulsator host,4161,1,False,False,True -420114036,4162.01,,3,4,3,3,3,4,4,45.2,59.2,317.0,4,2,1,PC,PC,12.095,0.008,,1,qlp-s52-tois,QLP,19:21:34.04,73:21:00.44,-18.509,0.031,0.002,0.04,2459737.85419,0.0005171,4.3744258,3.3e-06,5.275,0.061,9.355811,0.000149,8580.0,0.137644,19.4866,0.922258,1159.28,1625.0,159.0,725.754,9.786,6013.0,130.7,3.86,0.08,2.05,0.1,,,1.11,0.143635,"14,15,16,17,19,20,21,22,23,24,25,26,40,41,47,49,50,51,52",2021-06-23,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search; possibly inflated,4162,1,False,False,True -420112217,4163.01,,3,4,3,3,2,4,4,3.6,24.7,46.76,0,0,1,PC,PC,12.4899,0.009,,1,qlp-s52-tois,QLP,19:20:13.84,73:59:22.77,-6.959,0.029,-2.382,0.029,2459736.717051,0.0039214,21.5615248,0.000104,5.73,0.51,3.915703,0.002691,3600.0,2.47858,7.76454,0.430661,51.2879,745.0,29.0,485.147,3.6985,5644.0,121.7,4.22,0.08,1.28,0.06,,,1.0,0.120144,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52",2021-06-23,2023-03-22,2023-03-24 12:12:10,found in faint-star QLP search,4163,1,False,False,True -420108587,4164.01,,1,4,3,1,4,4,4,3.0,22.2,13.46,0,1,5,PC,PC,12.2779,0.006,,1,qlp-s56-tois,QLP,18:59:32.3,73:30:47.82,2.877,1.398,1.007,1.398,2459849.162648,0.0051588,3.522843,2.3e-05,2.874,0.5,0.868937,0.069079,800.0,63.6225,3.93303,0.504998,638.021,1400.0,10.0,511.193,,5952.0,353.9,,,1.39,0.17,,,,,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,54,55,56",2021-06-23,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search; potential centroid offset; bad transit shape,4164,1,False,False,True -398371628,4165.01,,3,4,3,3,1,4,4,27.4,100.7,97.82,4,2,0,PC,PC,12.1926,0.008,,1,qlp-s52-tois,QLP,21:04:03.02,85:52:41.55,19.778,0.035,29.594,0.041,2459913.360441,0.0016591797,7.1406422,1.02e-05,1.99165792956491,0.10360395,8.192688,0.443511,7517.34727515542,408.40536,11.9782179990433,5.4364552,156.645257902276,902.296063372496,54.0,338.176,2.7375,5463.0,121.4,4.42,0.08,1.00006997585297,0.0520905,,,0.95,0.121213,"18,19,20,25,26,40,47,52,59",2021-06-23,2023-03-16,2023-03-24 12:12:10,V-shaped; found in faint-star QLP search,4165,1,False,False,True -389777651,4166.01,,2,4,2,2,3,4,4,2.8,27.3,8.99,0,2,2,PC,PC,11.6431,0.006,,1,qlp-s47-tois,QLP,10:24:55.09,84:45:16.99,-28.114,0.04,-5.015,0.037,2459606.707073,0.0057811,5.236124,5.8e-05,2.622,0.407,1.010204,0.002839,930.0,2.61524,2.94616,0.229194,188.943,1032.0,11.0,257.962,1.4595,5604.0,144.5,4.47,0.08,0.96,0.05,,,0.991,0.128995,"14,20,26,40,47",2021-06-23,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search,4166,1,False,False,True -377165123,4167.01,,5,5,5,5,5,5,5,6.4,46.2,53.96,1,0,0,PC,FP,12.9474,0.006,,1,qlp-s56-tois,QLP,19:03:11.28,57:23:17.44,13.523,0.039,14.124,0.032,2459845.365372,0.0015308,14.793901,3.23e-05,3.171,0.259,8.885006,0.423418,8150.0,389.906,8.42756,0.550541,19.3352,584.0,35.0,359.643,2.5885,5095.0,127.5,4.52,0.09,0.84,0.05,,,0.85,0.106445,"14,15,16,17,18,19,20,22,23,24,25,26,40,41,47,48,49,50,52,53,54,55,56",2021-06-23,2023-02-05,2023-06-02 12:02:58,found in faint-star QLP search; depth aperture correlation,4167,1,False,False,True -372758077,4168.01,,3,4,3,3,3,4,4,16.8,42.5,317.0,1,10,2,PC,PC,11.447,0.011,,1,spoc-s14-s60-b0A-PC,QLP,11:35:20.09,79:24:46.99,25.987,0.061,7.203,0.043,2459394.256621,0.0016135245,29.3821475886547,0.00024362988,2.93712933794694,0.18624201,7.162768,0.365426,6575.43948804449,336.51337,14.7329775684534,15.051523,41.9877466146984,649.232708382591,29.363188,326.475,3.004,6016.0,139.7,4.36,0.08,1.15471994876862,0.053186,,,1.11,0.147731,"14,20,21,26,40,41,53,60",2021-06-23,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; v-shaped,4168,1,False,False,True -372747949,4169.01,,3,4,3,3,1,4,4,13.7,31.6,91.8,0,0,0,PC,PC,12.7553,0.008,,1,qlp-s52-tois,QLP,20:47:16.91,76:06:25.23,9.747,0.026,2.337,0.026,2459763.167593,0.0035353,3.4026932,1.59e-05,5.23,0.329,3.153209,0.001387,2900.0,1.27709,11.5347,0.636205,1695.28,1787.0,28.0,917.988,11.8065,5661.0,125.0,3.77,0.08,2.18,0.11,,,1.01,0.129359,"17,18,19,24,25,26,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; 3 stars in pixel,4169,1,False,False,True -366972162,4170.01,,3,4,4,3,3,4,4,49.2,47.1,317.0,5,0,1,PC,PC,12.3623,0.008,,1,qlp-s52-tois,QLP,22:30:22.62,77:51:55.81,-3.678,0.044,-6.046,0.037,2459738.853306,0.0009154,2.190225,2.6e-06,3.151,0.06,9.541999,0.000587,8750.0,0.540498,15.1395,0.741834,1559.45,1750.0,75.0,587.217,7.1785,5929.0,125.5,4.09,0.08,1.56,0.08,,,1.08,0.135717,"17,18,19,24,25,26,52",2021-06-23,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search; not synchronized to underlying variability,4170,1,False,False,True -362223355,4171.01,,3,4,3,3,3,4,4,3.3,28.8,10.21,0,0,1,PC,PC,12.4747,0.006,,1,qlp-s52-tois,QLP,19:06:52.93,81:39:16.34,10.876,0.029,26.487,0.032,2459885.746921,0.003189843,3.7453991,7.08e-05,3.327,0.534,1.510223,0.002653,1390.0,2.44373,3.17171,0.227621,428.765,1267.0,15.0,279.324,1.6515,5133.0,123.2,4.56,0.09,0.81,0.05,,,0.865,0.109538,"14,18,19,20,24,25,26,40,47,52,58",2021-06-23,2023-03-22,2023-03-24 12:12:10,found in faint-star QLP search; bad transit shape (w-like),4171,1,False,False,True -359388309,4172.01,,1,4,1,1,4,4,4,2.0,21.3,6.12,3,0,5,PC,PC,12.2997,0.006,,1,qlp-s56-tois,QLP,17:52:10.85,58:22:00.57,-0.99,0.035,0.125,0.038,2459850.557908,0.0059005,4.1915095,3.03e-05,3.187,0.459,0.977603,0.060056,900.0,55.3122,2.33252,0.176641,270.353,1129.0,15.0,241.956,1.0255,4996.0,127.2,4.56,0.09,0.79,0.05,,,0.828,0.102736,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,50,51,52,53,54,55,56",2021-06-23,2023-02-06,2023-07-07 00:00:00,found in faint-star QLP search; possible stellar variability,4172,1,False,False,True -358613376,4173.01,,3,4,3,3,3,4,4,27.2,102.1,127.56,2,0,1,PC,PC,12.6361,0.007,,1,qlp-s41-tois,QLP,11:40:47.63,79:36:45.21,1.809,0.034,2.398,0.032,2459942.653105,0.0010747293,8.2713274,1.15e-05,3.809,0.07,22.754962,0.001849,20740.0,1.70296,14.0507,0.684684,146.225,968.0,113.0,462.904,3.392,5921.0,128.9,4.5,0.08,0.97,0.05,,,1.08,0.137182,"14,20,21,26,40,41,53,60",2021-06-23,2023-05-19,2023-05-19 00:00:00,found in faint-star QLP search,4173,1,False,False,True -356822426,4174.01,,3,4,3,3,3,4,4,7.2,25.7,38.55,0,2,1,PC,PC,12.456,0.008,,1,qlp-s51-tois,QLP,18:20:23.63,71:09:42.97,1.475,0.032,-5.681,0.036,2459714.79482,0.0027655,1.5569519,6e-06,1.066,0.185,1.03194,0.003021,950.0,2.78202,6.93656,0.492495,614.242,1386.0,14.0,1043.59,19.345,6464.0,124.8,3.94,0.08,2.04,0.09,,,1.31,0.203135,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51",2021-06-23,2022-09-02,2022-12-14 12:09:24,found in faint-star QLP search,4174,1,False,False,True -952046774,4175.01,,3,4,3,3,3,4,4,34.6,254.6,9.25,1,2,1,PC,PC,8.0935,0.007,,1,qlp-s46-tois,QLP,13:14:09.63,-16:33:33.59,140.331,0.213,-140.138,0.247,2459578.454185,0.0012964,2.1632835,1.43e-05,1.362,0.331,0.901535,0.000844,830.0,0.777451,,,,,29.0,46.5528,0.2466,,,,,,,,,,,"37,46",2021-06-29,2022-03-11,2022-12-14 12:09:24,no stellar information; brighter of two real stars (TIC 952046774 and 952046773) which are phantom split with TIC 347752831,4175,1,False,False,True -58533991,4176.01,,3,5,5,3,3,4,4,101.6,156.7,317.0,0,0,1,PC,APC,9.5399,0.009,,1,qlp,QLP,13:28:00.33,-29:47:27.88,-7.708,0.122,8.812,0.185,2459328.306387,0.0016372,3.2089372,0.0014808,3.1,0.19,6.872702,0.007524,6310.0,6.9299,19.3856,1.08927,1849.02,1826.0,12.0,397.15,10.6855,7423.0,131.128,3.89774,0.0851204,2.43,0.1,,,1.7,0.270031,37,2021-06-29,2021-06-29,2022-12-14 12:09:24,large planet candidate; additional variability in LC,4176,1,False,False,True -130981260,4177.01,,3,5,5,3,3,4,4,61.0,77.2,317.0,0,0,1,PC,APC,10.1793,0.006,,1,qlp-s64-ffi,QLP,12:34:15.64,-35:03:13.18,-33.6,0.086,1.661,0.157,2460065.35254,0.000499,3.6928289,3.4e-06,3.866,0.113,5.685661,0.055095,5223.0,50.7434,15.6542,0.776477,1756.36,1803.0,79.0,430.587,13.2545,7042.0,125.8,3.97,0.09,2.13,0.1,,,1.55,0.258256,"10,37,64",2021-06-29,2023-06-28,2023-06-28 00:00:00,variable host,4177,1,False,False,False -289988797,4178.01,,5,5,5,5,5,5,5,65.7,179.2,69.61,0,2,3,EB,FP,10.0415,0.006,,1,qlp-s46-tois,QLP,12:48:31.95,-13:39:12.17,-64.101,0.081,-23.867,0.049,2459576.857352,0.0003848,2.2042212,1.3e-06,1.011,0.27,4.624212,0.001685,4250.0,1.55179,9.78883,0.537635,97.961,876.0,14.0,197.507,2.1175,5702.0,130.2,4.14,0.08,1.42,0.07,,,1.016,0.132269,"10,37,46",2021-06-29,2022-03-11,2022-12-14 12:09:24,TFOP FP (SEB2),4178,1,False,False,True -297148017,4179.01,,3,4,3,3,3,4,4,,,14.43,1,2,1,PC,PC,10.3738,0.006,,1,qlp,QLP,13:29:39.88,-16:33:18.46,-55.88,2.0,-4.41,2.0,2459330.92687,0.003807,2.5485772,2.38e-05,3.113,0.383,1.379761,0.58778,1270.0,541.219,,,4846.69,2324.0,13.0,,,4813.4,147.7,,,,,,,,,"10,37",2021-06-29,2021-06-29,2022-12-14 12:09:24,possible depth-aperture correlation; check neighbor TIC 2917148024,4179,1,False,False,False -126737992,4180.01,,3,4,4,3,3,4,4,18.0,109.0,17.29,1,0,3,PC,APC,8.2938,0.006,,1,spoc,SPOC,09:07:40.62,-50:38:24.83,-42.768,0.198,16.208,0.194,2458518.176889,0.00034392558,1.59543192386627,5.244442e-06,1.00000000000001,0.118444346,0.51437,0.032038,473.63974365215,29.50773,4.32199354002826,1.553364,10433.7609370105,2577.6857460226,21.354738,166.873,3.04,7511.0,212.0,3.92857,0.448202,1.92067003250122,0.0697889,,,1.75,0.282141,"8,9,35,36",2021-07-01,2021-07-01,2022-12-14 12:09:24,possible odd-even or secondary,4180,1,False,False,True -426017070,4181.01,,5,5,5,5,5,5,5,8.2,359.4,9.22,10,0,2,PC,FP,15.951,0.0,,1,spoc,SPOC,02:51:14.98,-73:09:19.84,1.758,0.085,-0.781,0.083,2458354.576309,0.0009535105,0.599246232075453,4.1201765e-06,2.21604622404521,0.109470725,25.637872,1.33959,23336.7389089149,1233.0469,2.98511066933168,1.7268035,228938.906951062,5578.91379551692,19.603586,5885.3,1094.32,31000.0,,5.59998,,0.180000007152557,0.104,,,0.47,0.03,"2,13,27,28,29",2021-07-01,2021-07-01,2022-12-14 12:09:24,V-shaped but consistent with grazing incidence; possible odd-even,4181,1,False,False,True -31637479,4182.01,,2,4,2,2,3,4,4,1.4,21.3,9.15,0,1,5,PC,PC,9.2747,0.006,,1,spoc,SPOC,03:03:39.54,-69:44:51.71,127.585,0.053,58.437,0.051,2458346.888105,0.0036926146,27.8483155968451,0.00019709418,4.11241456805456,0.52429,0.380613,0.035512,350.495735936535,32.70758,3.01701421226762,1.5521715,59.9330636684375,746.176737149258,9.263752,132.682,0.437,5399.6,104.0,3.9,0.16,1.58653,0.173168,-0.77,0.11,0.94,0.116785,"1,2,3,27,28,29,30",2021-07-08,2021-07-08,2022-12-14 12:09:24,potential L1 planet; low SNR,4182,1,False,False,True -421951960,4183.01,,2,4,2,2,3,4,4,4.2,52.3,10.76,1,4,1,PC,PC,9.10478,0.006,,1,spoc,SPOC,21:59:19.17,-19:44:40.56,25.977,0.091,6.913,0.093,2458332.496296,0.0017838152,11.7915574401153,4.2793923e-05,1.60633452991379,0.7325485,0.718961,0.083525,661.968515661218,76.9263,3.26878021079721,4.8328824,187.592805935713,943.895236632874,7.5005584,135.086,0.9965,6407.0,197.0,4.35687,0.325366,1.24512004852295,0.0545578,,,1.257,0.180278,"1,28",2021-07-08,2021-07-08,2022-12-14 12:09:24,potential L1 planet; low SNR,4183,1,False,False,True -394357918,4184.01,,2,4,4,2,3,4,4,2.2,64.5,7.07,8,0,2,PC,PC,14.2612,0.007,,1,spoc-s01-s39-b0A-PC,SPOC,02:55:18.83,-79:24:52.93,79.049,0.151,165.735,0.109,2458326.789691,0.0011867856,4.90199383996472,1.396118e-05,1.32438037042445,0.2470788,11.762238,1.029329,10774.951205986,947.59814,2.55541452816516,0.43741205,5.05348481037763,382.399654070162,11.158407,69.3649,0.3229,3147.0,99.0,5.04654,0.551884,0.240806996822357,0.00741195,,,0.210978,0.0201844,"1,28,39",2021-07-08,2022-03-21,2022-12-14 12:09:24,small star,4184,1,False,False,True -152563846,4185.01,,1,4,2,1,3,4,4,2.1,31.0,11.08,1,1,3,PC,PC,10.7194,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,11:28:54.69,-38:06:25.12,-86.584,0.044,69.757,0.048,2458576.460093,0.0035744067,16.5414218961519,0.00012691574,3.42236332552141,0.44012034,1.193518,0.10696,1098.66663309141,98.509155,3.32702342481822,0.85245556,23.3426363860112,560.60533423033,10.98966,99.0303,0.3682,4395.6,79.0,4.49,0.16,0.938435018062592,0.0774372,-0.67,0.09,0.69,0.0810885,"10,36,37",2021-07-08,2022-03-21,2023-05-05 00:00:00,weak signal; even transit shapes worse than odd,4185,1,False,False,True -300579472,4186.01,,2,4,4,2,3,4,4,3.1,55.3,5.92,2,4,1,PC,PC,8.985,0.006,,1,spoc,SPOC,21:24:25.92,-29:14:53.6,145.385,0.354,-201.617,0.166,2458332.282845,0.0029916335,12.7612027073675,0.004303363,3.6568621115173,0.5886002,0.737023,0.071807,678.592628543327,66.1343,2.30141006187149,1.5090859,52.8528221755714,687.68063545617,10.533612,68.4487,0.45105,5639.0,188.0,4.55041,0.268311,0.87635999917984,0.0476382,,,0.94,0.117648,"1,28",2021-07-08,2021-07-08,2022-12-14 12:09:24,,4186,1,False,False,True -176780257,4187.01,TIC 176780257.01,3,4,3,3,3,4,4,4.8,38.3,24.46,0,4,1,PC,PC,8.301,0.006,,1,spoc,SPOC,03:13:08.15,-34:22:31.5,87.231,0.04,32.742,0.044,2458425.23933,0.008904724,30.8812601370476,0.00044275643,10.7723374291207,0.4890031,0.461709,0.02864,425.159699855429,26.378208,5.2996591592079,0.35812038,148.961074565319,891.021018232454,13.299181,154.732,0.797,6047.0,135.898,3.7899,0.0818679,2.23199009895325,0.106372,,,1.12,0.150456,"4,30,31",2021-07-08,2021-07-08,2022-12-14 12:09:24,,4187,1,False,False,True -424747720,4188.01,,5,5,5,5,5,5,5,20.4,128.7,96.4,1,0,0,PC,FP,13.0123,0.008,,1,spoc,SPOC,19:22:41.34,-51:25:35.07,-8.162,0.048,-37.911,0.045,2458655.604161,0.0006476378,10.2813283926383,2.9710822e-05,2.44149163761176,0.07057238,41.310875,0.821865,37333.9631684062,756.6788,11.875911930378,0.42105705,10.9982809225144,464.462816780139,51.878952,148.134,0.8115,3919.0,169.0,4.63413,0.262631,0.593316972255707,0.0176925,,,0.582602,0.0203219,"13,27",2021-07-08,2021-07-08,2022-12-14 12:09:24,,4188,1,False,False,True -7422496,4189.01,TIC 7422496.01,1,4,1,1,3,4,4,1.1,44.0,6.67,6,3,3,PC,PC,8.7601,0.006,,1,spoc,SPOC,05:25:23.73,-44:25:52.63,-44.098,0.042,-110.328,0.051,2458470.361615,0.002622208,46.9621052609146,0.0002137691,5.76657216561993,0.2839883,0.823071,0.037253,757.788731374543,34.311115,2.46806953360305,0.39548135,11.3814426062799,468.456293353311,16.444445,69.6026,0.1272,5744.0,117.134,4.56261,0.0761973,0.879320979118347,0.0413869,,,1.03,0.129726,"5,6,31,32,33",2021-07-08,2021-07-08,2022-12-14 12:09:24,,4189,1,False,False,True -65416038,4190.01,,2,4,2,2,4,4,4,1.1,24.2,5.27,2,3,2,PC,PC,10.6617,0.006,,1,spoc,SPOC,02:43:41.76,-28:20:38.36,-3.726,0.053,-68.86,0.059,2458388.816262,0.004340777,15.6062307330769,0.00012200552,3.64448492391089,0.6608778,0.715814,0.076631,659.071789053919,70.57729,2.14949544851533,1.4133782,29.418363490668,593.983494433923,8.667278,121.494,0.445,5067.0,128.23,4.54195,0.0876687,0.816585004329681,0.0507965,,,0.847,0.0983194,"3,30,31",2021-07-08,2021-07-08,2022-12-14 12:09:24,potential L1 planet; low SNR,4190,1,False,False,True -167905035,4191.01,,2,4,2,2,3,4,4,0.0,12.0,5.81,0,2,1,PC,PC,8.6282,0.006,,1,spoc,SPOC,10:06:49.91,-29:58:00.27,-73.111,0.066,-111.819,0.064,2458548.668852,0.0042389184,742.856116365499,0.006044841,5.64832849197377,0.73893756,0.451044,0.047579,415.34041786696,43.82107,2.27561430621794,1.3284355,0.467105330614345,210.849927218162,9.040324,83.9132,0.241,5816.0,116.194,4.37494,0.0723557,1.10194003582001,0.0502312,,,1.05,0.12454,"9,35,36",2021-07-08,2021-07-08,2022-12-14 12:09:24,actual period is likely shorter,4191,1,False,False,True -41995709,4192.01,,3,4,3,3,3,4,4,55.9,70.2,317.0,0,6,1,PC,PC,11.8791,0.006,,1,qlp,QLP,01:35:09.15,-41:30:25.98,16.548,0.027,21.795,0.032,2458403.421558,0.0026421,4.2300182,0.0009736,1.847,0.226,3.774056,1.736459,3470.0,1598.06,17.0408,6.38388,927.501,1537.0,18.0,507.639,6.9805,6064.1,126.4,4.18,0.08,1.44,0.07,-0.45,0.12,1.13,0.147748,3,2021-07-12,2021-07-12,2022-12-14 12:09:24,somewhat V-shaped; found in faint-star QLP search,4192,1,False,False,False -382419744,4193.01,,3,4,3,3,3,4,4,16.0,53.5,91.53,0,0,1,PC,PC,12.7464,0.006,,1,qlp,QLP,02:20:11.37,-54:06:11.95,28.508,0.027,-5.544,0.023,2458397.745101,0.0016827,6.5081212,0.0005307,5.472,0.331,9.005425,0.004132,8260.0,3.80614,11.511,0.63935,473.037,1299.0,52.0,597.937,5.667,5652.8,442.1,4.38,2.0,1.27,0.06,,,1.01,0.127536,"2,3",2021-07-12,2021-07-09,2022-12-14 12:09:24,found in faint-star QLP search,4193,1,False,False,False -299176311,4194.01,,3,5,5,3,4,4,4,19.0,67.4,34.58,5,0,2,PC,APC,12.5496,0.007,,1,qlp,QLP,01:29:03.9,-08:10:45.66,8.914,0.072,9.862,0.054,2458404.822816,0.0036543,1.0432995,0.0002818,1.169,0.313,3.545282,0.020032,3260.0,18.4501,6.51532,0.603765,1405.89,1705.0,13.0,505.742,10.5875,5943.0,121.0,4.42,0.08,1.07,0.05,,,1.09,0.135835,3,2021-07-12,2021-07-12,2023-04-03 12:03:24,found in faint-star QLP search,4194,1,False,False,False -67598139,4195.01,,3,4,3,3,3,4,4,12.1,50.2,56.18,0,0,1,PC,PC,12.6802,0.006,,1,qlp,QLP,01:10:31.74,-34:16:14.44,19.339,3.329,8.408,3.329,2458399.818502,0.0022451,5.4447698,0.001653,1.366,0.285,5.900696,0.021416,5420.0,19.7245,,,55.9408,761.0,13.0,491.261,,5890.0,139.1,,,,,,,,,3,2021-07-12,2021-07-12,2022-12-14 12:09:24,some odd-even but few transits; found in faint-star QLP search,4195,1,False,False,False -67566164,4196.01,,3,4,3,3,3,4,4,60.7,75.3,317.0,2,1,1,PC,PC,12.5345,0.006,,1,qlp,QLP,01:04:00.25,-31:41:07.76,-2.776,0.043,-0.341,0.038,2458404.326719,0.0007633,3.125924,0.0002101,2.985,0.075,20.484439,0.002817,18690.0,2.59475,17.3686,0.908541,600.297,1378.0,82.0,560.078,9.9665,5828.0,130.4,4.28,0.08,1.24,0.06,,,1.05,0.134593,3,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4196,1,False,False,False -332579116,4197.01,TIC 332579116.01,3,4,3,3,3,4,4,56.5,163.0,107.63,3,1,1,PC,PC,12.8512,0.006,,1,qlp,QLP,04:08:05.41,-12:19:56.58,-2.192,0.03,-4.431,0.021,2458456.806385,0.0005058,3.9017499,0.0002889,1.845,0.221,30.197827,0.020094,27430.0,18.5068,12.6062,0.971587,73.9553,816.0,70.0,240.7,1.3865,4665.0,121.8,4.6,0.09,0.71,0.05,,,0.74,0.0897944,5,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),4197,1,False,False,False -459913687,4198.01,,3,4,3,3,1,4,4,24.1,70.6,101.75,2,0,0,PC,PC,13.3547,0.009,,1,qlp,QLP,03:56:04.45,03:36:36.41,0.533,0.05,1.524,0.036,2458458.49423,0.001914,4.746318,0.0008478,3.117,0.343,13.624255,0.013246,12470.0,12.1998,12.2509,,290.335,1149.0,24.0,545.887,9.4395,5648.0,19.1,4.36,,1.09,,0.0459514,0.0184471,1.0,,5,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4198,1,False,False,False -220144363,4199.01,,3,4,3,3,3,4,4,42.5,54.4,317.0,3,2,2,PC,PC,11.5141,0.006,,1,qlp,QLP,06:36:09.6,06:28:20.52,-4.312,0.064,-6.163,0.057,2458487.70703,0.0019091,4.4466179,0.0007335,4.511,0.347,8.644208,0.00273,7930.0,2.51405,16.7023,0.870113,1257.77,1659.0,47.0,598.941,12.54,6534.0,192.2,4.03,0.09,1.85,0.09,,,1.347,0.227049,6,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4199,1,False,False,False -53593542,4200.01,,3,4,3,3,1,4,4,72.2,110.1,317.0,2,0,0,PC,PC,13.5569,0.007,,1,qlp,QLP,06:41:28.28,-03:53:32.54,0.931,2.159,-2.906,2.159,2458489.557328,0.0027083,1.027641,0.0002127,1.977,0.278,13.800181,0.024829,12630.0,22.8684,,,2542.32,1978.0,21.0,1362.6,,5640.0,271.7,,,,,,,,,6,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4200,1,False,False,False -95057860,4201.01,,3,4,4,3,4,4,4,49.8,141.6,99.87,4,0,2,PC,CP,13.5011,0.008,,1,qlp,QLP,06:01:53.93,-13:27:40.94,11.721,0.057,6.204,0.064,2458485.286309,0.0008542,3.5809733,0.0003732,2.18,0.115,40.765178,0.021199,36850.0,19.5244,12.0428,0.469155,40.4443,702.0,50.0,189.011,0.9885,3790.0,157.0,4.64,0.01,0.61,0.02,,,0.599491,0.0204013,6,2021-07-12,2021-07-12,2023-07-14 12:02:54,found in faint-star QLP search,4201,1,False,False,False -237603062,4202.01,,3,4,3,3,1,4,4,61.8,128.8,317.0,1,0,0,PC,PC,13.519,0.008,,1,qlp,QLP,06:53:14.58,02:56:13.14,-13.985,2.275,-3.021,2.257,2458485.594249,0.003309,2.6689906,0.0008983,2.854,0.737,15.461885,0.049937,14140.0,45.9929,,,728.121,1447.0,20.0,1466.79,,5247.8,173.5,,,,,,,,,6,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4202,1,False,False,False -72494421,4203.01,,3,4,3,3,1,4,4,59.2,126.7,317.0,0,0,0,PC,PC,13.5854,0.006,,1,qlp,QLP,06:13:20.35,-11:29:32.31,1.233,2.203,-2.738,2.203,2458488.940223,0.0025956,2.9531039,0.0006847,2.501,0.179,18.362197,0.017277,16770.0,15.9124,,,332.97,1190.0,24.0,1500.32,,5304.5,91.3,,,,,,,,,6,2021-07-12,2021-07-12,2022-12-14 12:09:24,some odd-even but few transits; found in faint-star QLP search,4203,1,False,False,False -158697949,4204.01,,3,4,3,3,3,4,4,18.3,83.1,47.56,0,2,1,PC,PC,10.9786,0.006,,1,qlp,QLP,05:47:37.24,04:22:58.43,3.983,0.062,-13.723,0.055,2458484.978133,0.0020931,3.9592516,0.0007277,3.269,0.437,3.436359,0.004094,3160.0,3.7703,7.85756,0.44129,1272.37,1663.0,34.0,346.758,4.3165,7068.0,436.7,4.35,0.11,1.39,0.06,,,1.564,0.322769,6,2021-07-12,2021-07-12,2023-02-08 00:00:00,found in faint-star QLP search,4204,1,False,False,False -280645209,4205.01,,3,4,3,3,3,4,4,27.6,87.6,91.03,1,0,1,PC,PC,12.672,0.006,,1,qlp,QLP,06:45:11.28,-01:57:37.77,-3.901,0.149,-16.391,0.162,2459217.815236,0.0022669,5.9056572,2.69e-05,4.314,0.664,11.701927,0.078609,10720.0,72.3988,11.5383,1.184,523.023,1332.0,28.0,344.106,10.2975,5076.0,126.4,4.4,0.09,0.97,0.06,,,0.85,0.105131,"6,33",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4205,1,False,False,False -281242007,4206.01,,3,4,3,3,3,4,4,26.8,58.9,127.19,0,0,1,PC,PC,13.2045,0.014,,1,qlp,QLP,06:35:56.22,04:42:48.52,-1.802,0.049,0.266,0.044,2458489.048222,0.006519,2.4170503,0.0011611,3.246,0.339,8.425347,0.015253,7730.0,14.0481,13.975,,1340.72,1685.0,12.0,860.033,25.1195,5796.8,115.6,4.07,,1.56,,0.317,0.112,1.04,,6,2021-07-12,2021-07-12,2023-04-05 00:00:00,found in faint-star QLP search,4206,1,False,False,False -37242226,4207.01,,5,5,5,5,5,5,5,38.7,50.4,317.0,1,0,0,PC,FP,13.3581,0.014,,1,qlp,QLP,06:33:15.27,-04:06:22.68,-2.766,0.039,1.328,0.038,2458488.379945,0.0053666,1.0681394,0.0004473,2.082,0.336,7.944008,0.025076,7290.0,23.0956,19.5184,,7148.75,2561.0,12.0,1719.42,67.545,7248.0,122.0,3.95,,2.23,,,,1.63,,6,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4207,1,False,False,False -280304556,4208.01,,3,4,3,3,1,4,4,70.4,158.1,317.0,1,0,0,PC,PC,13.6625,0.017,,1,qlp,QLP,06:43:35.74,-01:09:30.47,,,,,2458489.275982,0.0055711,1.72328,0.0006888,3.005,0.441,15.505938,0.032908,14180.0,30.3091,,,,,18.0,1725.36,,,,,,,,,,,,6,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4208,1,False,False,False -200090347,4209.01,,3,4,3,3,1,4,4,44.7,89.9,108.93,0,0,0,PC,PC,13.2977,0.016,,1,qlp,QLP,05:46:43.69,03:59:23.06,-0.921,0.046,-5.176,0.042,2458489.686771,0.0027541,0.8631737,0.0001986,1.227,0.222,6.894555,0.026762,6330.0,24.6483,12.7525,,2000.07,1863.0,15.0,764.305,20.977,6142.0,122.0,4.17,,1.47,,,,1.16,,6,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4209,1,False,False,False -409315469,4210.01,,3,5,5,3,3,4,4,40.7,80.0,65.25,1,0,1,PC,APC,12.9715,0.006,,1,qlp,QLP,07:19:05.39,-14:58:14.12,-9.827,0.037,-0.647,0.036,2459251.255943,0.0012206,1.0754208,3.1e-06,1.01,0.276,5.38774,0.023621,4950.0,21.7557,9.41227,0.917771,358.947,1212.0,18.0,393.038,4.1795,4614.0,120.5,4.16,0.09,1.17,0.09,,,0.731,0.0854667,"7,33,34",2021-07-12,2021-07-12,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4210,1,False,False,False -385654601,4211.01,,3,4,3,3,3,4,4,40.3,72.5,317.0,0,0,2,PC,PC,12.9289,0.006,,1,qlp,QLP,07:23:10.18,-13:13:10.62,1.157,1.471,1.065,1.471,2459250.468953,0.0023475,2.2715616,8.4e-06,2.741,0.247,8.928793,0.007148,8190.0,6.58332,,,1884.67,1835.0,19.0,1523.53,,6671.3,412.2,,,,,,,,,"7,34",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4211,1,False,False,False -126864892,4212.01,,3,5,5,3,3,4,4,37.3,145.0,317.0,0,2,1,PC,APC,11.974,0.019,,1,qlp,QLP,07:45:31.71,-25:59:04.89,-6.1,3.0,0.3,2.6,2459252.978961,0.0033543,2.3485025,1.25e-05,1.804,0.282,3.338337,0.007406,3070.0,6.82139,,,2588.32,1987.0,12.0,1051.92,,8807.8,421.8,,,,,,,,,"7,34",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4212,1,False,False,False -32408928,4213.01,,5,5,5,5,5,5,5,26.3,80.2,61.57,2,0,0,PC,FP,12.6825,0.007,,1,qlp,QLP,07:49:54.21,-10:22:54.86,-4.925,0.042,1.018,0.027,2459252.322453,0.0015066,1.0435229,2.6e-06,1.476,0.165,5.409563,0.004878,4970.0,4.49265,9.09391,0.521429,2148.73,1896.0,24.0,656.326,10.5245,6259.0,129.6,4.34,0.09,1.23,0.06,,,1.22,0.174447,"7,34",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4213,1,False,False,False -409594381,4214.01,,3,4,4,3,4,4,4,36.3,102.2,86.27,4,2,3,PC,PC,11.0071,0.006,,1,qlp,QLP,07:20:59.88,-13:55:34.55,-0.331,0.073,-15.227,0.06,2459248.541475,0.000653,3.491383,5.4e-06,2.999,0.14,5.060448,0.000536,4650.0,0.493613,11.154,0.567462,555.531,1352.0,65.0,346.881,5.017,5936.5,531.5,4.28,0.43,1.59,0.08,,,1.044,0.138368,"7,33,34",2021-07-12,2021-07-09,2023-06-28 00:00:00,found in faint-star QLP search,4214,1,False,False,False -7274938,4215.01,,3,4,3,3,1,4,4,20.4,56.9,85.25,1,0,0,PC,PC,13.0896,0.011,,1,qlp,QLP,07:35:20.72,-11:00:05.76,-0.429,0.033,3.603,0.027,2459251.093808,0.0026247,1.0994412,5e-06,1.394,0.253,4.199051,0.012881,3860.0,11.8634,11.0223,,2816.92,2029.0,12.0,1183.53,29.39,6915.0,122.0,4.19,,1.63,,,,1.51,,"7,34",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4215,1,False,False,False -187861378,4216.01,,5,5,5,5,5,5,5,8.7,128.9,14.53,0,1,0,PC,FP,11.2486,0.011,,1,qlp,QLP,07:25:10.37,-08:37:12.19,-2.694,0.093,0.375,0.079,2459251.531855,0.0038019,2.1816809,1.4e-05,3.83,0.474,1.390633,0.001852,1280.0,1.7059,,,13037.6,2976.0,16.0,1675.78,176.07,8582.7,1083.8,4.08,1.23,,,,,,,"7,34",2021-07-12,2021-07-09,2022-12-14 12:09:24,found in faint-star QLP search,4216,1,False,False,False -108939482,4217.01,,3,4,3,3,1,4,4,25.2,70.6,80.17,0,0,0,PC,PC,13.5295,0.01,,1,qlp,QLP,07:30:55.16,-28:41:03.36,-6.705,0.031,3.376,0.035,2458515.488191,0.0068512,1.1866441,0.0005418,2.625,0.811,8.151833,0.20307,7480.0,187.017,10.6653,,6831.53,2532.0,13.0,927.754,19.568,6325.0,122.0,4.41,,1.16,,,,1.25,,7,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4217,1,False,False,False -142628514,4218.01,TIC 142628514.01,3,4,3,3,3,4,4,41.3,56.1,317.0,0,0,1,PC,PC,12.7868,0.008,,1,qlp,QLP,07:55:09.93,-22:36:39.63,-4.648,0.027,0.138,0.028,2458514.633837,0.0021186,2.6269521,0.0004542,3.503,0.152,13.118628,0.004857,12010.0,4.47312,17.6062,0.893172,2547.74,1979.0,34.0,1016.95,21.812,6976.0,129.5,4.22,0.09,1.58,0.07,,,1.53,0.263362,7,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),4218,1,False,False,False -114103136,4219.01,,5,5,5,5,5,5,5,3.6,14.3,14.48,0,0,0,PC,FP,16.0657,0.011,,1,qlp,QLP,07:35:55.9,-30:44:53.45,-9.684,0.111,7.815,0.132,2458515.145173,0.0019992,1.1471548,0.0001725,1.403,0.171,2.902793,0.003518,2670.0,3.24018,3.90118,,249.626,1107.0,26.0,695.78,36.3075,3901.0,124.0,4.47,,0.75,,,,0.605,,7,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4219,1,False,False,False -346995484,4220.01,,3,4,4,3,1,4,4,58.0,94.2,317.0,3,0,0,PC,PC,13.475,0.006,,1,qlp,QLP,07:49:24.81,-14:33:52.86,-4.807,2.154,2.527,2.154,2459251.118701,0.0009163,1.9138779,3.4e-06,2.352,0.118,20.517632,0.007547,18720.0,6.95089,,,2433.26,1956.0,38.0,1289.89,,7246.0,253.3,,,,,,,,,"7,34",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4220,1,False,False,False -334252687,4221.01,,3,4,4,3,3,4,4,37.2,40.6,317.0,2,0,1,PC,PC,12.8542,0.006,,1,qlp,QLP,07:47:13.59,-14:33:29.49,-1.736,2.155,-1.268,2.155,2459249.304348,0.0016244,2.8395663,9.3e-06,2.1,0.201,10.758486,0.009393,9860.0,8.65151,,,412.404,1255.0,21.0,746.058,,5858.0,612.9,,,,,,,,,"7,34",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4221,1,False,False,False -318054782,4222.01,,5,5,5,5,5,5,5,25.7,50.9,105.27,1,0,2,PC,FP,12.9913,0.007,,1,qlp,QLP,07:23:28.34,03:08:05.81,-3.72,0.058,-4.636,0.052,2459226.922752,0.0017766,0.8335712,3.5e-06,1.509,0.194,3.632428,0.006675,3340.0,6.14771,12.5164,0.965677,3359.53,2120.0,15.0,1246.21,49.09,6158.0,123.6,3.87,0.09,2.09,0.13,,,1.17,0.161059,"7,33",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4222,1,False,False,False -157088184,4223.01,,3,4,3,3,3,4,4,23.7,83.6,112.92,0,0,1,PC,PC,12.8006,0.006,,1,qlp,QLP,06:59:13.77,-37:27:07.27,-6.148,0.022,7.725,0.024,2459244.780823,0.0007977,7.2654708,1.45e-05,3.568,0.16,15.230635,0.003158,13930.0,2.90887,13.0064,0.644084,181.435,1022.0,63.0,502.584,3.264,5944.0,134.0,4.43,0.08,1.05,0.05,,,1.09,0.134972,"6,7,33,34",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4223,1,False,False,False -148667071,4224.01,,3,4,3,3,3,4,4,30.0,77.9,81.81,3,0,1,PC,PC,12.2815,0.013,,1,qlp,QLP,07:38:59.5,-30:34:31.01,-5.535,0.042,-4.433,0.045,2459251.830486,0.0034486,1.161347,6.9e-06,2.471,0.557,4.700541,0.010066,4320.0,9.27084,10.7619,0.746989,6500.64,2501.0,15.0,715.234,14.499,6289.0,144.4,4.11,0.09,1.62,0.08,,,1.23,0.178309,"7,34",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4224,1,False,False,False -141405814,4225.01,,5,5,5,5,5,5,5,,,112.95,0,1,0,PC,FP,9.7402,0.01,,1,qlp,QLP,07:48:29.07,-19:20:24.75,-2.377,0.066,0.806,0.071,2459250.333738,0.0036103,1.1355486,8.4e-06,2.63,0.345,0.42352,0.000801,390.0,0.737317,13.0419,,47965.7,4122.0,14.0,1658.75,153.26,10262.0,124.0,,,7.04,,,,,,"7,34",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4225,1,False,False,False -127328218,4226.01,,3,4,3,3,3,4,4,28.3,37.7,317.0,1,1,3,PC,PC,11.5637,0.006,,1,qlp,QLP,07:47:51.46,-25:34:04.57,-8.7,2.3,2.3,2.0,2459252.246864,0.0017301,2.9628955,9.6e-06,1.909,0.408,5.016817,0.00696,4610.0,6.41046,14.7038,,1606.41,,18.0,867.497,,7998.0,,,,2.04,,,,,,"7,34",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4226,1,False,False,False -99081059,4227.01,,3,4,3,3,3,4,4,23.8,64.2,123.93,1,0,1,PC,PC,12.5536,0.015,,1,qlp,QLP,07:10:50.29,-20:03:19.1,-0.938,0.044,-3.338,0.048,2459250.439665,0.0013361,3.4169475,1.08e-05,2.454,0.323,7.49568,0.006885,6880.0,6.34149,13.7893,0.81458,705.607,1435.0,28.0,857.708,21.99,6610.0,159.7,4.16,0.09,1.63,0.08,,,1.38,0.237503,"7,33,34",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4227,1,False,False,False -415143674,4228.01,,3,4,3,3,1,4,4,17.7,21.0,317.0,0,0,0,PC,PC,13.5444,0.012,,1,qlp,QLP,07:38:15.85,-23:48:16.47,-3.453,0.048,6.656,0.053,2458509.18299,0.0092368,6.0154139,0.0050472,5.144,0.989,10.013089,0.038633,9180.0,35.5819,15.7735,,614.168,1386.0,10.0,1114.01,49.245,5932.0,122.0,4.07,,1.59,,,,1.08,,7,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4228,1,False,False,False -319282294,4229.01,,5,5,5,5,5,5,5,21.7,31.1,317.0,0,0,0,PC,FP,13.5964,0.017,,1,qlp,QLP,07:21:10.63,-09:30:02.15,-1.076,0.043,1.827,0.035,2458514.968282,0.0057169,1.1385671,0.0004625,1.897,0.332,6.774369,0.025689,6220.0,23.6598,16.0326,,13181.3,2985.0,11.0,2348.86,165.835,9024.0,123.0,4.19,,2.0,,,,2.28,,7,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4229,1,False,False,False -128127712,4230.01,,3,4,3,3,3,4,4,,,31.66,0,2,3,PC,PC,12.6356,0.006,,1,qlp,QLP,07:50:41.55,-26:31:33.53,,,,,2458515.68982,0.0054126,1.9409946,0.0009169,1.868,0.385,3.479927,0.013574,3200.0,12.5018,,,616.916,1388.0,11.0,,,5436.9,303.5,,,,,,,,,7,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4230,1,False,False,False -127895118,4231.01,,3,4,3,3,3,4,4,19.7,73.7,119.03,2,1,1,PC,PC,12.3563,0.019,,1,qlp-s07-faintsearch,QLP,07:49:53.31,-28:21:12.54,-2.777,0.045,3.373,0.047,2459965.923212,0.0015374874,3.2970252,0.000991,2.279,0.286,7.134965,0.013795,6550.0,12.7057,13.4619,0.885817,2098.67,1885.0,15.0,1175.96,40.215,8945.0,289.8,4.35,0.08,1.67,0.07,,,2.26,0.315742,"7,61",2021-07-12,2023-07-12,2023-07-12 00:00:00,found in faint-star QLP search,4231,1,False,False,False -126357909,4232.01,,5,5,5,5,5,5,5,23.2,73.7,52.56,0,0,0,PC,FP,13.5184,0.006,,1,qlp,QLP,07:43:14.3,-26:14:21.45,-17.136,0.028,8.553,0.032,2458513.957617,0.0057291,1.2247985,0.0005312,1.645,0.33,8.326874,0.039885,7640.0,36.7347,8.32531,,1294.24,1670.0,12.0,591.382,7.0885,5699.0,122.0,4.55,,0.89,,,,1.015,,7,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4232,1,False,False,False -113295476,4233.01,,3,4,3,3,1,4,4,26.9,26.7,317.0,0,0,0,PC,PC,13.5689,0.009,,1,qlp,QLP,07:33:03.98,-30:06:14.75,-5.172,0.026,9.271,0.031,2458514.824342,0.005891,1.820443,0.0009277,2.643,0.605,7.987757,0.039909,7330.0,36.7573,16.6319,,2155.48,1898.0,10.0,1469.53,37.92,6079.0,122.0,3.92,,1.94,,,,1.14,,7,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4233,1,False,False,False -81055189,4234.01,,3,4,3,3,1,4,4,17.0,53.8,54.76,0,0,0,PC,PC,13.5392,0.009,,1,qlp,QLP,07:05:25.22,-21:06:34.29,-1.854,0.027,12.205,0.035,2458515.925371,0.0065367,0.908232,0.0004065,2.28,0.348,5.464122,0.015792,5020.0,14.5452,8.54322,,7791.46,2617.0,12.0,1003.03,25.043,6481.0,122.0,4.38,,1.23,,,,1.32,,7,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4234,1,False,False,False -157528286,4235.01,,5,5,5,5,5,5,5,21.2,62.3,66.3,1,0,0,PC,FP,13.0556,0.006,,1,qlp,QLP,07:06:31.95,-38:03:16.19,-1.926,0.026,4.019,0.024,2459251.03979,0.0009901,1.6562803,3.6e-06,0.929,0.114,6.108129,0.008734,5610.0,8.04431,9.54495,,291.778,1151.0,21.0,706.679,7.333,6044.0,122.0,4.29,,1.25,,,,1.12,,"6,7,33,34",2021-07-12,2021-07-12,2023-03-19 12:03:20,found in faint-star QLP search,4235,1,False,False,False -36227841,4236.01,,3,4,3,3,3,4,4,70.6,63.8,317.0,0,0,1,PC,PC,12.7411,0.006,,1,qlp,QLP,09:59:24.92,-45:26:57.67,-6.003,0.028,3.499,0.026,2459304.832898,0.0025942,0.4021282,1.9e-06,0.804,0.29,2.64155,1.086638,2430.0,1000.33,18.3131,8.56128,17100.1,3185.0,10.0,1171.09,22.815,6115.0,127.4,3.72,0.08,2.45,0.12,,,1.15,0.154203,"9,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4236,1,False,False,True -30825828,4237.01,,3,4,3,3,1,4,4,20.6,62.9,78.02,2,0,0,PC,PC,13.1731,0.006,,1,qlp,QLP,08:59:01.49,-42:11:12.49,-12.528,3.008,6.762,3.008,2459275.547041,0.0024745,3.0482015,1.26e-05,2.433,0.192,8.304992,0.007836,7620.0,7.21704,,,464.675,1293.0,18.0,616.409,,5774.7,393.5,,,,,,,,,"8,9,35",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4237,1,False,False,False -24615998,4238.01,,3,4,3,3,1,4,4,92.8,173.6,126.07,1,0,0,PC,PC,13.3502,0.006,,1,qlp,QLP,09:25:35.03,-33:13:46.03,-6.345,0.023,7.72,0.032,2459277.637194,0.000765,1.2732245,1.6e-06,1.634,0.149,25.374726,0.03998,23100.0,36.8219,13.8628,,1086.11,1599.0,63.0,395.573,3.3465,4973.0,122.0,4.49,,0.85,,,,0.82,,"8,9,35",2021-07-12,2021-07-12,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4238,1,False,False,False -22121296,4239.01,,3,4,3,3,3,4,4,20.9,52.6,127.04,1,0,1,PC,PC,12.7797,0.007,,1,qlp,QLP,09:54:15.77,-25:05:36.89,-6.626,0.055,2.254,0.062,2459277.476881,0.0031271,2.8132443,1.34e-05,3.717,0.296,5.78062,0.004145,5310.0,3.81746,13.996,0.861127,2289.3,1927.0,9.0,1126.25,36.25,6614.0,129.2,4.05,0.09,1.85,0.1,,,1.38,0.226481,"9,35",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4239,1,False,False,False -19547831,4240.01,,3,4,3,3,3,4,4,15.2,22.0,317.0,1,0,1,PC,PC,12.6943,0.006,,1,qlp,QLP,09:18:38.8,-32:44:55.39,-6.186,0.02,4.542,0.026,2459267.532477,0.0050823,10.1238604,8.24e-05,2.239,0.54,7.725288,0.020869,7090.0,19.2212,15.7944,1.13933,79.2946,831.0,9.0,949.356,16.8025,6531.0,129.1,4.05,0.09,1.81,0.08,,,1.35,0.221272,"8,9,35",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4240,1,False,False,False -4102368,4241.01,,3,4,3,3,1,4,4,31.7,82.0,112.31,0,0,0,PC,PC,13.6438,0.006,,1,qlp,QLP,09:21:18.8,-39:19:30.06,-10.393,2.953,-10.951,2.953,2458562.364095,0.0021958,3.1124985,0.0002587,2.761,0.201,18.240736,0.011692,16660.0,10.7686,14.3339,1.15499,406.945,1251.0,29.0,598.001,,5412.6,222.9,,,1.08,0.08,,,,,"8,9",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4241,1,False,False,False -445582110,4242.01,TIC 445582110.01,3,4,3,3,3,4,4,34.0,78.1,130.51,2,0,1,PC,PC,12.4688,0.006,,1,qlp,QLP,07:32:42.03,-51:59:53.33,-0.183,0.122,14.838,0.147,2459299.527243,0.0007076,3.0579913,4e-06,2.905,0.086,8.0862,0.000989,7420.0,0.910723,14.1536,0.950707,713.213,1439.0,61.0,656.6,29.118,5967.0,135.6,4.07,0.09,1.59,0.11,,,1.09,0.140633,"7,8,9,33,34,35,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search; CTOI from Olmschenk et al. (2021),4242,1,False,False,False -400683848,4243.01,,3,4,3,3,3,4,4,20.5,39.0,71.2,0,0,1,PC,PC,10.7492,0.007,,1,qlp,QLP,08:57:29.12,-52:02:22.49,-0.7,0.05,-9.192,0.044,2459303.954945,0.0040317,1.08833,8.6e-06,2.417,0.469,0.586456,0.00179,540.0,1.64888,9.94597,0.767252,6126.37,2464.0,15.0,650.191,11.178,6127.0,138.8,3.25,0.08,4.22,0.21,,,1.16,0.162067,"8,9,35,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4243,1,False,False,False -393340920,4244.01,,3,4,3,3,3,4,4,,,74.57,0,0,1,PC,PC,12.4027,0.014,,1,qlp-s09-faintsearch,QLP,08:42:50.25,-46:12:47.98,0.05,0.051,0.887,0.05,2459990.230842,0.0018281227,1.8665254,6.2e-06,3.109,0.156,3.922241,0.001595,3606.0,1.46874,10.2057,0.662486,2933.46,2050.0,22.0,767.846,20.635,6310.3,203.4,,,1.61,0.1,,,,,"8,9,35,36,61,62",2021-07-12,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,4244,1,False,False,False -52928939,4245.01,,3,4,3,3,3,4,4,16.6,87.9,24.67,1,0,2,PC,PC,11.7519,0.006,,1,spoc-s61-b0A,QLP,08:23:13.5,-45:47:32.85,-17.41,0.052,28.214,0.051,2459963.828597,0.0023750644,3.15187114283624,0.0005562057,2.00298439853041,0.15197301,4.650071,0.356282,4273.71525617177,328.09406,6.0819007545655,0.47351968,316.505542740799,1075.75922636928,13.146834,211.183,1.318,5093.0,121.3,4.52,0.45,0.800840973854065,0.0430553,,,0.99,0.127907,"8,9,34,35,61",2021-07-12,2023-06-28,2023-06-28 00:00:00,found in faint-star QLP search; multiple stars in pixel,4245,1,False,False,True -291465998,4246.01,,3,4,3,3,3,4,4,12.2,55.2,100.62,2,0,1,PC,PC,12.9,0.006,,1,qlp,QLP,07:24:26.71,-51:41:50.51,-3.617,0.032,-3.277,0.028,2459270.583615,0.0016455,12.8860009,3.73e-05,4.866,0.161,12.854916,0.00292,11770.0,2.68943,12.1436,0.577102,121.215,924.0,40.0,600.771,5.5095,6126.0,129.1,4.41,0.08,1.11,0.05,,,1.16,0.155801,"7,8,9,33,34,35",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4246,1,False,False,False -286153328,4247.01,,3,4,3,3,1,4,4,59.5,86.2,317.0,2,0,0,PC,PC,13.5597,0.006,,1,qlp,QLP,08:15:38.97,-50:37:15.07,-46.762,0.036,19.713,0.03,2458563.642908,0.001143,4.3537052,0.0002198,3.237,0.21,35.760351,0.01972,32400.0,18.1624,19.599,,368.289,1220.0,54.0,631.768,7.3195,5883.0,122.0,4.39,,1.1,,,,1.07,,"8,9",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4247,1,False,False,False -190986054,4248.01,,3,4,3,3,3,4,4,24.4,65.2,124.99,0,6,1,PC,PC,11.548,0.006,,1,qlp,QLP,08:57:43.98,-38:22:16.13,-18.742,0.045,10.358,0.046,2458561.897544,0.0025564,5.1442317,0.0005085,5.856,0.272,4.689636,0.001746,4310.0,1.60781,13.8382,0.706199,1708.0,1790.0,25.0,654.475,11.876,5936.0,70.8,4.18,1.81,2.09,0.1,,,1.42,0.223068,"8,9",2021-07-12,2021-07-09,2022-12-14 12:09:24,found in faint-star QLP search,4248,1,False,False,False -269568703,4249.01,,3,4,3,3,1,4,4,,,317.0,0,0,0,PC,PC,13.551,0.006,,1,qlp,QLP,07:57:55.37,-52:39:03.72,-4.533,2.951,8.446,2.951,2458562.122123,0.0052151,6.773653,0.00087,3.078,1.187,7.21147,0.304086,6620.0,280.034,19.1292,4.51001,118.065,918.0,12.0,,,4360.5,271.1,,,2.12,0.25,,,,,"7,8,9",2021-07-12,2021-07-12,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4249,1,False,False,False -269249506,4250.01,,3,4,3,3,1,4,4,13.6,39.6,126.87,0,0,0,PC,PC,13.4202,0.006,,1,qlp,QLP,07:55:12.1,-48:42:11.33,-2.574,0.029,1.116,0.03,2459272.138098,0.0032075,4.0185922,2.17e-05,4.47,0.302,6.785295,0.004202,6230.0,3.87041,13.9642,,2154.02,1897.0,19.0,1432.78,32.94,7156.0,122.0,4.15,,1.77,,,,1.6,,"7,8,9,34,35",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4250,1,False,False,False -192520375,4251.01,,5,5,5,5,5,5,5,28.1,105.8,112.81,4,0,1,PC,FP,12.5405,0.007,,1,qlp,QLP,09:12:12.55,-39:39:28.54,-5.496,0.041,3.348,0.044,2459278.486338,0.0024004,0.9109508,3.3e-06,1.473,0.352,5.136807,0.011588,4720.0,10.6729,13.0531,0.85219,18809.1,3262.0,21.0,1297.87,46.94,9421.0,185.2,4.31,0.07,1.79,0.08,,,2.39,0.318624,"8,9,35",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4251,1,False,False,False -145038729,4252.01,,3,4,3,3,3,4,4,36.2,108.6,107.99,1,0,1,PC,PC,12.6583,0.006,,1,qlp,QLP,08:46:52.81,-51:11:27.66,-10.768,0.032,12.123,0.031,2459301.061079,0.0011608,2.6085023,5.8e-06,1.473,0.289,11.273986,0.017761,10330.0,16.3581,12.672,0.720955,712.029,1439.0,31.0,631.32,7.668,7302.0,138.7,4.49,0.08,1.21,0.05,,,1.65,0.260181,"8,9,35,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4252,1,False,False,False -145249556,4253.01,,3,4,3,3,3,4,4,67.4,120.2,317.0,2,0,1,PC,PC,12.9027,0.006,,1,qlp,QLP,08:47:52.7,-50:28:14.18,-4.211,2.919,10.659,2.919,2459299.818789,0.0010314,3.4192373,6.4e-06,2.747,0.401,19.301219,0.027982,17620.0,25.7723,,,485.925,1308.0,39.0,884.15,,5658.5,448.4,,,,,,,,,"8,9,35,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4253,1,False,False,False -92744152,4254.01,,3,4,3,3,3,4,4,29.0,63.4,110.65,0,0,1,PC,PC,12.5347,0.006,,1,qlp,QLP,08:35:42.6,-53:49:41.74,-2.955,0.035,4.388,0.04,2459305.480506,0.0016679,1.1462769,3.7e-06,2.394,0.423,3.937496,0.004236,3620.0,3.90126,12.8874,0.741754,6593.33,2510.0,30.0,955.191,16.9245,6416.0,137.0,3.9,0.09,2.12,0.1,,,1.29,0.199098,"8,9,35,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4254,1,False,False,False -82302240,4255.01,,3,4,3,3,3,4,4,17.1,52.6,111.85,0,0,1,PC,PC,12.5225,0.01,,1,qlp-s09-faintsearch,QLP,08:17:24.35,-45:24:23.56,-3.26,0.048,6.8,0.045,2459964.80591,0.00248469,2.5057108,1.5e-05,1.962,0.404,3.447251,0.008476,3170.0,7.80667,12.9673,0.899836,2430.56,1956.0,13.0,1131.58,41.115,8330.0,168.4,4.04,0.08,2.26,0.1,,,2.06,0.312169,"8,9,34,35,61",2021-07-12,2023-07-07,2023-07-07 00:00:00,found in faint-star QLP search; possible centroid centered near TIC 82302236,4255,1,False,False,False -77102895,4256.01,,5,5,5,5,5,5,5,25.0,21.3,317.0,0,0,0,PC,FP,12.7158,0.008,,1,qlp,QLP,09:24:59.48,-42:47:59.15,-7.42,0.036,8.119,0.036,2459303.475037,0.002885,1.0962372,6.5e-06,2.336,0.407,2.674202,0.004597,2460.0,4.23428,15.7533,1.09518,6446.8,2496.0,17.0,1391.51,45.805,6519.0,136.7,3.54,0.09,3.25,0.17,,,1.34,0.221153,"8,9,35,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4256,1,False,False,False -75208638,4257.01,,3,4,3,3,3,4,4,10.1,59.5,32.13,0,0,1,PC,PC,11.7159,0.006,,1,qlp,QLP,09:14:57.86,-45:07:22.69,-10.617,0.045,7.292,0.047,2459302.335242,0.0016754,4.6512523,1.63e-05,2.251,0.209,3.381901,0.003565,3110.0,3.28362,6.22936,0.331398,432.038,1270.0,25.0,407.374,4.4685,7192.0,142.9,4.56,0.08,1.1,0.04,,,1.61,0.264165,"8,9,35,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4257,1,False,False,False -74484886,4258.01,,5,5,5,5,5,5,5,21.5,23.8,317.0,0,0,0,PC,FP,13.3285,0.008,,1,qlp,QLP,09:09:57.69,-43:12:06.19,-3.138,0.037,0.456,0.033,2459298.033322,0.0040394,3.8505662,2.74e-05,2.499,0.331,6.610502,0.013286,6070.0,12.2367,16.5768,,475.693,1301.0,11.0,1080.66,24.895,6353.0,122.0,3.88,,2.13,,,,1.26,,"8,9,35,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4258,1,False,False,False -268643535,4259.01,,3,4,3,3,3,4,4,28.8,103.5,115.04,1,0,1,PC,PC,11.9452,0.006,,1,qlp,QLP,07:49:19.21,-51:15:42.14,-3.992,0.039,0.508,0.038,2459300.284576,0.0006365,8.9617618,1.09e-05,1.536,0.257,11.690952,0.0149,10710.0,13.723,13.1691,0.760255,57.5298,767.0,53.0,390.587,3.3085,5435.5,23.7,,,1.17,0.05,,,1.24,0.182745,"7,8,9,34,35,36",2021-07-12,2021-07-09,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4259,1,False,False,False -74967390,4260.01,,3,4,3,3,3,4,4,12.2,45.4,76.57,0,0,1,PC,PC,12.1899,0.006,,1,qlp,QLP,09:13:40.9,-43:10:49.71,-18.41,1.047,13.045,1.047,2459297.736102,0.0024928,5.4588359,2.74e-05,4.555,0.458,3.577961,0.002381,3290.0,2.19302,8.59319,0.373715,809.823,1486.0,15.0,764.85,,6349.0,111.4,,,1.41,0.05,,,,,"8,9,35,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4260,1,False,False,False -74197917,4261.01,,3,4,3,3,3,4,4,,,55.01,0,0,2,PC,PC,13.7682,0.006,,1,qlp,QLP,09:09:08.41,-46:11:04.74,-2.682,2.915,2.327,2.915,2458567.169341,0.0044464,1.5040804,0.0002519,2.955,0.322,6.676046,0.010771,6130.0,9.92064,,,558.567,1354.0,20.0,,,3810.2,529.9,,,,,,,,,"8,9,35,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4261,1,False,False,False -53365065,4262.01,,3,4,4,3,3,4,4,30.6,112.2,88.22,2,5,1,PC,PC,11.1882,0.006,,1,qlp,QLP,08:25:20.5,-47:02:34.96,-18.522,0.055,19.434,0.048,2459276.291059,0.0008462,5.9977892,1.15e-05,4.322,0.159,8.447231,0.001086,7750.0,1.00034,11.3071,0.507708,627.104,1394.0,95.0,337.209,3.4695,6613.0,131.6,4.36,0.09,1.29,0.06,,,1.38,0.220521,"8,9,34,35",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4262,1,False,False,False -48276576,4263.01,,3,4,3,3,1,4,4,17.1,47.3,57.61,0,0,0,PC,PC,13.5379,0.006,,1,qlp,QLP,09:52:20.79,-34:57:28.4,-6.708,0.04,3.585,0.046,2458566.819743,0.0044868,0.8338716,0.0002918,1.62,0.314,4.373456,0.017267,4020.0,15.9035,8.75677,,3840.84,2193.0,11.0,1001.77,25.359,6071.0,122.0,4.2,,1.39,,,,1.13,,9,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4263,1,False,False,False -45996325,4264.01,,3,4,3,3,3,4,4,,,52.87,1,0,1,PC,PC,11.8471,0.006,,1,qlp,QLP,10:00:19.33,-39:39:34.42,-7.0,3.5,-0.6,3.3,2459304.328163,0.0019849,3.1582574,1.25e-05,2.202,0.279,7.102178,0.01054,6520.0,9.70729,8.3204,0.44621,1158.1,1625.0,20.0,,,7606.3,128.2,,,1.01,0.03,,,,,"9,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4264,1,False,False,False -118308828,4265.01,,3,4,3,3,3,4,4,14.1,46.5,55.81,0,0,1,PC,PC,12.1162,0.006,,1,qlp,QLP,08:34:48.37,-56:19:54.58,-12.294,0.043,14.66,0.04,2459301.93331,0.0050935,3.7353995,0.000728,1.836,0.42,2.565366,0.013797,2360.0,12.7074,8.61993,0.724542,230.421,1085.0,14.0,538.114,6.523,5895.0,127.7,4.1,0.08,1.53,0.07,,,1.07,0.139919,"8,9,10,35,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4265,1,False,False,False -442050698,4266.01,,3,4,3,3,1,4,4,41.4,33.2,317.0,0,0,0,PC,PC,13.453,0.016,,1,qlp-s37-tois,QLP,09:43:06.88,-58:30:38.8,-10.956,0.145,7.607,0.146,2459332.149876,0.0018176,0.8118585,3.1e-06,1.102,0.187,7.025681,0.017782,6450.0,16.3777,16.3456,0.99731,832.714,1496.0,17.0,1039.14,82.6905,5051.7,73.6,,,1.97,0.06,,,,,"9,10,36,37",2021-07-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,4266,1,False,False,False -80783538,4267.01,,3,4,3,3,1,4,4,24.6,66.2,86.23,0,0,0,PC,PC,13.079,0.006,,1,qlp-s37-tois,QLP,11:04:16.86,-49:49:17.39,-6.707,0.026,2.203,0.025,2459330.970678,0.0015833,1.2125595,4.2e-06,1.344,0.215,5.562336,0.011548,5110.0,10.6361,11.1279,,1780.99,1809.0,17.0,963.819,16.6865,6719.0,122.0,4.25,,1.48,,,,1.43,,"10,36,37",2021-07-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,4267,1,False,False,False -341272282,4268.01,,5,5,5,5,5,5,5,7.2,40.3,17.74,2,0,1,PC,FP,11.0418,0.006,,1,qlp,QLP,07:57:14.81,-56:57:46.53,-22.247,3.449,6.065,2.116,2459304.022578,0.0030848,0.8133123,4.3e-06,1.079,0.215,0.33663,0.001627,310.0,1.49887,4.37963,,6736.59,,10.0,433.157,,8265.0,,,,2.12,,,,,,"7,8,9,10,34,35,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4268,1,False,False,False -178657161,4269.01,,3,4,3,3,3,4,4,12.8,49.0,58.95,0,0,1,PC,PC,12.4946,0.007,,1,qlp-s37-tois,QLP,11:03:26.14,-44:16:07.59,-11.187,1.139,13.301,1.138,2459323.331883,0.0018969,4.5766182,2.11e-05,4.912,0.235,4.100961,0.001718,3770.0,1.58235,,,881.978,1527.0,22.0,575.478,,5816.5,554.7,,,,,,,,,"10,36,37",2021-07-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; no stellar radius,4269,1,False,False,False -151920165,4270.01,,3,5,5,3,4,4,4,20.4,54.7,93.26,1,0,1,PC,CP,12.5695,0.006,,1,qlp,QLP,11:14:15.33,-37:54:36.48,-0.632,0.026,0.544,0.027,2459303.974235,0.0025651,3.4671474,0.0008057,2.405,0.261,5.191353,0.007429,4770.0,6.84251,11.6401,0.737909,391.83,1239.0,26.0,683.062,10.8785,5886.0,135.1,4.07,0.08,1.58,0.08,,,1.07,0.134524,"9,10,36",2021-07-12,2021-07-12,2023-03-03 12:02:54,found in faint-star QLP search,4270,1,False,False,False -146842334,4271.01,,3,4,3,3,1,4,4,21.5,72.6,74.99,1,3,0,PC,PC,11.693,0.018,,1,qlp-s37-tois,QLP,10:43:35.15,-47:15:22.79,4.5,2.6,3.5,2.3,2459329.602172,0.0010117,4.5016988,8.8e-06,4.716,0.128,4.74416,0.000663,4360.0,0.610377,,,820.448,1491.0,33.0,460.819,,5829.0,81.6,,,,,-0.3,0.05,,,"9,10,36,37",2021-07-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; no stellar radius,4271,1,False,False,False -146664561,4272.01,,3,4,3,3,3,4,4,30.8,80.0,124.12,2,0,1,PC,PC,12.8441,0.006,,1,qlp,QLP,10:39:55.1,-43:46:13.4,-13.113,0.029,9.012,0.029,2459305.560437,0.0014227,2.7302636,6.7e-06,2.645,0.166,10.265151,0.003263,9410.0,3.00537,13.7961,0.711839,945.722,1544.0,9.0,770.937,11.6375,6307.0,130.7,4.25,0.09,1.39,0.07,,,1.24,0.189437,"9,10,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4272,1,False,False,False -133331642,4273.01,,3,4,3,3,1,4,4,42.6,70.8,317.0,1,0,0,PC,PC,13.3012,0.007,,1,qlp,QLP,09:59:00.34,-48:11:55.18,-8.729,0.029,4.391,0.028,2459302.62352,0.0022749,2.9346956,1.14e-05,3.447,0.159,12.184935,0.006148,11160.0,5.66214,23.898,,1718.88,1793.0,23.0,1370.72,35.805,6728.0,122.0,3.9,,2.23,,,,1.43,,"9,10,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4273,1,False,False,False -290388627,4274.01,,3,4,3,3,1,4,4,88.1,141.0,317.0,2,0,0,PC,PC,13.3992,0.009,,1,qlp-s38-tois,QLP,11:34:52.36,-63:26:44.95,-7.336,0.024,-0.125,0.026,2459359.93453,0.0009411,0.4459299,1e-06,1.266,0.242,16.00166,0.026386,14630.0,24.3019,20.4459,,44946.6,4056.0,48.0,1321.29,26.785,8878.0,123.0,4.33,,1.7,,,,2.24,,"10,11,37,38",2021-07-12,2022-09-20,2022-12-14 12:09:24,found in faint-star QLP search,4274,1,False,False,False -363635669,4275.01,,3,4,3,3,3,4,4,23.1,72.9,53.77,0,0,1,PC,PC,12.2951,0.007,,1,qlp,QLP,09:50:51.16,-62:12:11.19,-4.721,1.173,-0.982,1.184,2459305.084015,0.0023807,0.761774,3e-06,1.275,0.176,2.565366,0.004758,2360.0,4.38231,,,2904.23,2045.0,16.0,689.348,,6132.7,440.6,,,,,,,,,"9,10,11,36",2021-07-12,2021-07-12,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4275,1,False,False,False -469811655,4276.01,,3,4,3,3,3,4,4,,,42.94,1,0,1,PC,PC,12.0846,0.006,,1,qlp,QLP,19:59:54.03,-73:52:33.36,-1.71,4.142,-89.061,4.142,2459043.953903,0.0036034,11.851162,0.0001708,3.376,1.247,4.984094,0.490359,4580.0,451.535,,,112.345,906.0,14.0,,,4983.0,161.0,,,,,,,,,"13,27",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4276,1,False,False,False -466682238,4277.01,,3,4,3,3,1,4,4,33.9,35.8,317.0,3,0,0,PC,PC,13.2152,0.006,,1,qlp,QLP,19:41:24.31,-76:13:11.52,6.436,0.025,-16.652,0.027,2459055.668975,0.0014756,3.2738129,1.8e-05,3.306,0.174,14.427148,0.00659,13200.0,6.06985,14.6729,,786.258,1475.0,35.0,748.416,10.6145,5976.0,123.0,4.27,,1.27,,,,1.1,,"13,27",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4277,1,False,False,False -466222485,4278.01,,3,4,3,3,1,4,4,19.6,50.7,62.5,2,0,0,PC,PC,13.0236,0.006,,1,qlp,QLP,20:11:28.41,-64:20:46.61,-7.35,0.027,-3.78,0.03,2459058.678662,0.0019605,1.7519943,1.16e-05,1.624,0.233,4.74416,0.007542,4360.0,6.94619,9.23623,,559.892,1355.0,14.0,688.773,9.8765,5483.0,124.0,4.14,,1.39,,,,0.96,,"13,27",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4278,1,False,False,False -407146536,4279.01,TIC 407146536.01,3,4,3,3,1,4,4,32.6,61.4,111.07,6,0,0,PC,PC,11.2851,0.006,,1,qlp-s39-tois,QLP,15:40:39.68,-81:12:11.94,-7.455,0.037,-11.535,0.039,2459385.924603,0.0017064,2.0976705,5.9e-06,3.016,0.162,2.304204,0.000911,2120.0,0.83907,12.8941,0.7271,1737.52,1798.0,35.0,628.105,9.0045,5914.8,124.6,3.59,0.08,2.77,0.14,0.36,0.1,1.08,0.139962,"12,13,39",2021-07-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; check neighbor TIC 407146500,4279,1,False,False,True -387193925,4280.01,,3,4,3,3,1,4,4,30.1,81.5,124.9,4,0,0,PC,PC,13.1296,0.006,,1,qlp,QLP,20:18:48.22,-58:41:14.46,1.02,0.034,0.71,0.032,2459055.690823,0.0012721,3.518972,1.83e-05,3.21,0.206,15.109523,0.006883,13820.0,6.3391,13.7987,,650.74,1407.0,36.0,709.048,11.0565,5972.0,122.0,4.35,,1.16,,,,1.1,,"13,27",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4280,1,False,False,False -384386061,4281.01,,3,4,3,3,1,4,4,,,64.7,0,0,0,PC,PC,13.1335,0.006,,1,qlp-s39-tois,QLP,16:37:28.5,-80:58:26.66,,,,,2459380.93326,0.0034513,5.7626055,3.38e-05,3.963,0.723,8.0862,0.069375,7420.0,63.8943,,,281.843,1141.0,22.0,,,5558.7,688.5,,,,,,,,,"12,13,39",2021-07-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search; no stellar radius,4281,1,False,False,False -374348168,4282.01,,3,4,4,3,3,4,4,35.5,76.3,317.0,2,0,1,PC,PC,12.0797,0.006,,1,qlp,QLP,20:07:59.77,-70:36:56.13,18.25,0.03,-10.596,0.035,2459045.476307,0.000748,13.5098037,3.65e-05,2.695,0.167,26.931816,0.035228,24500.0,32.4456,16.3981,0.979644,47.2072,730.0,44.0,334.396,2.436,5780.0,130.5,4.51,0.08,0.94,0.04,,,1.04,0.125473,"13,27",2021-07-12,2021-07-12,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4282,1,False,False,False -343952976,4283.01,,3,4,4,3,3,4,4,85.0,118.8,317.0,3,0,1,PC,PC,11.227,0.006,,1,qlp-s39-tois,QLP,18:27:18.88,-77:07:53.95,1.843,0.035,-16.178,0.043,2459385.636462,0.0002538,3.0131053,1.4e-06,2.207,0.095,14.933385,0.000859,13660.0,0.791153,17.061,0.719195,1049.56,1585.0,211.0,417.879,3.8625,6838.0,131.8,4.32,0.09,1.4,0.06,,,1.48,0.254976,"12,13,39",2021-07-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,4283,1,False,False,False -280726137,4284.01,,3,4,3,3,3,4,4,17.0,41.9,116.23,1,0,2,PC,PC,13.0528,0.006,,1,qlp,QLP,23:02:52.62,-80:08:22.09,0.179,0.023,2.963,0.024,2459056.257486,0.0024981,3.5008785,2.12e-05,4.719,0.272,5.562336,0.002396,5110.0,2.20648,13.2886,,1615.69,1766.0,22.0,1038.06,13.52,5759.0,5691.5,4.3,,1.81,,,,1.13,,"1,13,27",2021-07-12,2021-07-09,2023-01-24 00:00:00,found in faint-star QLP search,4284,1,False,False,False -310105752,4285.01,,3,4,3,3,3,4,4,26.4,77.3,69.65,2,0,1,PC,PC,12.9526,0.006,,1,qlp-s39-tois,QLP,16:43:33.78,-75:59:18.29,3.496,0.021,-5.0,0.029,2459386.666789,0.0013049,1.1703152,3.2e-06,1.319,0.313,5.85703,0.016608,5380.0,15.2964,9.82528,0.682327,2357.73,1941.0,24.0,746.443,8.882,6328.0,128.8,4.36,0.08,1.23,0.05,,,1.25,0.180269,"12,13,39",2021-07-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,4285,1,False,False,False -294097592,4286.01,,2,4,2,2,3,4,4,5.1,28.2,10.76,1,0,2,PC,PC,13.5159,0.006,,1,qlp,QLP,07:10:05.61,-55:51:23.61,4.721,0.038,-3.08,0.038,2458682.235801,0.0089315,1.0268508,5.61e-05,2.172,0.551,1.553714,0.008643,1430.0,7.96037,3.2806,,2280.33,1925.0,10.0,415.392,3.489,4938.0,122.0,4.49,,0.85,,,,0.81,,"3,6,7,8,9,13",2021-07-12,2021-07-12,2023-05-27 00:00:00,found in faint-star QLP search,4286,1,False,False,False -290407621,4287.01,,3,4,3,3,1,4,4,22.2,24.2,317.0,3,0,0,PC,PC,12.5483,0.006,,1,qlp-s39-tois,QLP,15:39:24.82,-85:28:25.47,-2.174,0.033,-1.595,0.033,2459381.865757,0.0021209,4.2337624,1.53e-05,2.413,0.183,6.250081,0.0041,5740.0,3.7758,14.6498,0.773758,360.852,1214.0,29.0,939.295,17.87,6387.0,129.7,4.0,0.09,1.86,0.08,,,1.28,0.201714,"12,13,39",2021-07-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,4287,1,False,False,False -278821913,4288.01,,3,4,3,3,1,4,4,11.5,53.4,49.87,1,0,0,PC,PC,13.1853,0.006,,1,qlp-s39-tois,QLP,06:40:47.72,-56:32:46.94,22.333,0.048,27.087,0.044,2459965.283094,0.0026149284,6.0597,9.4e-06,1.242,0.167,9.016373,0.006572,8270.0,6.05315,8.06637,,21.9969,603.0,39.0,372.21,2.6775,5036.0,122.0,4.54,,0.82,,,,0.84,,"1,2,3,4,5,6,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,61",2021-07-12,2023-07-12,2023-07-12 00:00:00,found in faint-star QLP search,4288,1,False,False,False -278540265,4289.01,,3,4,3,3,1,4,4,58.6,62.6,317.0,1,0,0,PC,PC,12.0021,0.006,,1,qlp-s39-tois,QLP,08:04:45.21,-82:03:56.75,4.124,0.042,0.125,0.043,2459385.628111,0.0006891,2.9757428,4.1e-06,4.43,0.074,7.430086,0.000359,6820.0,0.330728,18.7018,0.915001,1810.83,1817.0,59.0,610.604,9.2515,6025.0,134.3,3.81,0.08,2.18,0.11,,,1.12,0.146855,"11,12,13,27",2021-07-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,4289,1,False,False,False -278196907,4290.01,,2,4,2,2,1,4,4,7.8,50.5,9.0,1,0,0,PC,PC,12.1412,0.006,,1,qlp-s39-tois,QLP,07:19:15.65,-80:28:25.6,-4.659,0.036,-9.221,0.039,2459388.733133,0.0019481,1.1771655,4.9e-06,1.048,0.223,1.140622,0.003594,1050.0,3.31018,2.93951,0.22735,695.522,1430.0,18.0,228.13,0.9375,5313.0,126.0,4.59,0.08,0.8,0.04,,,0.91,0.118796,"4,7,11,12,13,27,34,37",2021-07-12,2023-01-24,2023-01-26 12:09:41,V-shaped; found in faint-star QLP search,4290,1,False,False,False -257520272,4291.01,,3,4,3,3,1,4,4,6.6,30.4,72.41,0,0,0,PC,PC,13.3404,0.006,,1,qlp-s39-tois,QLP,19:22:07.3,-83:14:00.41,7.279,0.03,-9.133,0.029,2459383.47146,0.00863,12.1525595,0.0001805,5.254,1.169,6.971043,0.013107,6400.0,12.0723,10.0438,,232.183,1087.0,12.0,753.31,10.33,6029.0,122.0,4.27,,1.28,,,,1.12,,"12,13,27",2021-07-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,4291,1,False,False,False -255918903,4292.01,,5,5,5,5,5,5,5,25.1,72.0,69.6,3,0,1,PC,FP,13.0566,0.006,,1,qlp-s39-tois,QLP,17:46:32.11,-70:24:35.32,3.862,0.02,-0.178,0.023,2459388.452702,0.0017585,1.7201092,5.6e-06,2.622,0.117,8.25029,0.004245,7570.0,3.90987,9.82252,,1736.59,1798.0,29.0,641.969,6.084,5878.0,122.0,4.36,,1.13,,,,1.06,,"12,13,39",2021-07-12,2023-01-24,2023-05-27 12:02:45,found in faint-star QLP search,4292,1,False,False,False -101696403,4293.01,,3,4,4,3,3,4,4,79.8,77.4,317.0,3,0,1,PC,PC,12.6211,0.006,,1,qlp,QLP,20:11:54.83,-49:00:05.65,4.345,0.035,-28.993,0.026,2459059.497032,0.0004985,1.6242109,4.1e-06,2.273,0.059,19.433853,0.002107,17740.0,1.94069,14.9916,0.772717,1180.41,1632.0,29.0,472.755,5.083,5705.0,124.0,4.39,0.08,1.06,0.05,,,1.02,0.125994,"13,27",2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4293,1,False,False,False -30499203,4294.01,,3,4,3,3,1,4,4,42.3,43.9,317.0,1,0,0,PC,PC,13.5137,0.008,,1,qlp,QLP,19:02:30.84,-31:32:35.56,-5.418,2.154,-4.815,2.186,2458677.763801,0.0030767,2.4330551,0.0008361,1.882,0.313,16.718103,0.044905,15280.0,41.3584,,,359.358,1212.0,11.0,726.227,,5512.0,170.1,,,,,,,,,13,2021-07-12,2021-07-12,2022-12-14 12:09:24,found in faint-star QLP search,4294,1,False,False,False -325527653,4295.01,,3,4,3,3,1,4,4,7.2,32.2,72.35,0,0,0,PC,PC,13.4783,0.006,,1,qlp-s39-tois,QLP,00:18:31.79,-84:21:36.03,15.483,0.032,-5.997,0.027,2459380.285734,0.0066253,11.3929129,0.0001444,4.46,0.458,7.49568,0.008493,6880.0,7.82188,10.0728,,81.354,836.0,15.0,575.978,5.103,5217.0,122.0,4.28,,1.14,,,,0.89,,"12,13,27",2021-07-12,2023-01-24,2023-01-26 12:09:41,found in faint-star QLP search,4295,1,False,False,False -72668830,4296.01,,2,4,2,2,3,4,4,2.0,35.1,10.07,1,3,1,PC,APC,10.4161,0.006,,1,spoc,SPOC,02:13:48,-27:52:03.64,-9.49,0.062,-64.522,0.067,2458399.48997,0.0033032363,19.9706573613551,0.00012220004,1.88019961143458,0.48639578,1.126906,0.142945,1037.3799061957,131.64896,3.14546119697007,1.3951696,24.4738095526522,567.276958162059,7.7775908,115.716,0.511,4985.0,122.5,4.45,0.09,0.899080991744995,0.0569975,,,0.825,0.0965059,"3,30",2021-07-15,2021-07-15,2022-12-14 12:09:24,Bad transit shape; low SNR,4296,1,False,False,True -28116365,4297.01,,2,4,2,2,4,4,4,1.7,32.2,8.9,1,2,2,PC,PC,10.8724,0.006,,1,spoc,SPOC,00:57:24.45,-21:33:01.71,101.444,0.079,23.048,0.055,2458391.647306,0.005096725,16.5272651477254,0.00014831667,3.59457093454377,0.5063287,1.167174,0.121857,1074.42975124786,112.22795,2.92415558552786,0.6940974,27.0141494118317,581.456960797642,8.683127,132.887,0.838,5030.0,129.203,4.53132,0.0886395,0.821739017963409,0.0537287,,,0.837,0.0991383,"3,30",2021-07-15,2021-07-15,2022-12-14 12:09:24,Three events on silicon. Low SNR. Centroid offset consistent across sectors.,4297,1,False,False,True -146282666,4298.01,,2,4,2,2,3,4,4,0.0,10.5,7.87,0,1,1,PC,PC,9.1259,0.006,,1,spoc,SPOC,02:23:57.16,-34:06:35.75,-7.434,0.026,-115.125,0.048,2458398.395589,0.005070193,722.2619756368,0.007336378,7.7126297792611,0.74143183,0.522144,0.052079,480.796334969911,47.96545,2.72070782266134,1.0212622,0.677143919323061,231.360916119078,10.269325,125.077,0.534,5857.0,190.0,4.26578,0.278088,1.22058999538422,0.0573694,,,1.14,0.154343,"3,30",2021-07-15,2021-12-02,2022-12-14 12:09:24,,4298,1,False,False,True -67535663,4299.01,,1,4,1,1,3,4,4,3.5,33.2,12.37,0,1,1,PC,PC,10.2696,0.006,,1,qlp,QLP,12:08:24.13,-55:02:49.52,-26.664,0.041,-4.989,0.038,2459329.652372,0.005838,6.6019866,9.83e-05,5.754,0.935,0.651637,0.001236,600.0,1.13863,3.55715,0.231234,1325.35,1680.0,11.0,284.376,2.731,6758.0,133.0,4.28,0.09,1.45,0.06,,,1.45,0.255291,"10,11,37",2021-07-19,2021-07-19,2022-12-14 12:09:24,SG1 should check the neighbor TIC 67535668,4299,1,False,False,False -266843799,4300.01,,5,5,5,5,5,5,5,21.2,69.8,60.66,0,0,0,PC,FP,9.9747,0.006,,1,qlp,QLP,11:42:09.59,-57:22:06.56,-7.127,0.042,-4.654,0.044,2459331.490509,0.0021495,0.8062768,2.8e-06,1.963,0.229,0.716822,0.000891,660.0,0.820279,9.05313,0.452419,18112.6,3231.0,20.0,668.389,12.815,7311.1,113.6,4.16,1.73,3.37,0.11,,,1.88,0.319429,"10,11,37",2021-07-19,2021-07-19,2022-12-14 12:09:24,V-shaped; some stellar variability; possibly,4300,1,False,False,False -307079330,4301.01,,2,4,2,2,3,4,4,3.5,40.6,7.47,0,0,1,PC,PC,10.1737,0.006,,1,qlp-s63-ffi,QLP,11:05:00.23,-46:02:04.34,-64.498,0.04,18.916,0.04,2460028.65432,0.0050334,6.5445251,3.92e-05,2.138,0.56,0.854811,0.077124,787.0,71.0309,2.62701,0.203486,94.6613,868.0,10.0,143.833,0.5545,5686.0,124.7,4.46,0.08,0.98,0.05,,,1.01,0.132169,"10,36,37,63",2021-07-19,2023-05-05,2023-06-16 12:14:51,slight depth aperture correlation; low SNR,4301,1,False,False,False -182078202,4302.01,,2,4,2,2,3,4,4,0.8,26.7,7.91,0,0,1,PC,PC,10.2891,0.006,,1,spoc,SPOC,00:58:56.68,-76:35:23.61,167.08,0.112,-46.002,0.061,2458347.765451,0.005783632,38.7617055748399,0.0004386249,4.61258542771368,0.44396222,0.812792,0.074182,748.329208979048,68.32196,2.72761660354294,0.29995486,13.9589668695144,492.984277417341,8.7437315,132.802,0.7175,5653.0,124.84,4.55306,0.0766456,0.876001000404358,0.0424071,,,1.0,0.122956,"1,13,27,28",2021-07-19,2021-07-19,2022-12-14 12:09:24,Period could be double.,4302,1,False,False,True -200296137,4303.01,,3,4,3,3,3,4,4,4.8,37.3,17.18,1,2,1,PC,PC,9.4623,0.006,,1,spoc,SPOC,04:49:25.53,-43:21:13.27,45.909,0.04,0.569,0.054,2458438.485322,0.0017303101,8.61108444470498,3.703415e-05,2.01817976651962,0.43965584,0.589291,0.062657,542.610203819314,57.70742,4.30636747557607,2.1791077,716.934347849565,1319.74369687525,8.451531,256.048,1.618,6908.0,121.736,4.12055,0.0889241,1.76523995399475,0.0731658,,,1.5,0.257055,"5,32",2021-07-19,2021-07-19,2022-12-14 12:09:24,,4303,1,False,False,True -366443426,4304.01,,1,4,1,2,5,4,5,2.6,41.2,6.84,0,11,0,KP,KP,8.4642,0.006,,1,qlp-s45-ffi,SPOC,08:26:27.8,10:04:49.33,-48.143,0.104,0.059,0.059,2459550.369653,0.0034892,15.5719921,2.67e-05,5.118,0.263,2.859248,9.5e-05,2630.0,0.0878724,2.5066,0.140914,148.891,973.0,28.0,106.289,0.672,6352.33,149.652,4.30502,0.0955413,1.31,0.07,0.021,0.013,1.261,0.194835,"7,34,44,45",2021-07-19,2022-01-24,2023-04-07 00:00:00,HIP 41378 b,4304,1,True,False,True -366443426,4304.03,,5,5,5,5,5,5,5,1.3,29.1,5.92,0,11,0,KP,KP,8.4642,0.006,,3,spoc,SPOC,08:26:27.8,10:04:49.33,-48.143,0.104,0.059,0.059,2458494.909195,0.0033878942,31.7180208316155,0.00012969133,2.33263213009818,0.838543,0.318021,0.042485,292.864964508886,39.129612,2.29980485432181,3.6733382,55.6174649547748,696.502287374735,7.9325233,106.289,0.672,6352.33,149.652,4.30502,0.0955413,1.30883002281189,0.0701232,0.021,0.013,1.261,0.194835,"7,34,44,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,HIP 41378 c,4304,3,True,False,True -372068780,4305.01,,2,4,2,2,3,4,4,1.3,20.8,26.8,0,0,1,PC,PC,7.8459,0.006,,1,spoc,SPOC,20:41:46.46,-68:08:05.95,14.324,0.038,16.837,0.053,2458679.490787,0.002629357,183.001910591663,0.0019671875,2.54835051179599,0.74222255,0.430435,0.053273,396.367000540031,49.06526,5.59312046998251,6.8133955,22.4438469032226,555.129202529616,7.965195,159.007,0.8155,6200.0,133.686,3.63371,0.0844045,2.75391006469727,0.123563,,,1.19,0.170538,"13,27",2021-07-19,2021-07-19,2022-12-14 12:09:24,only 2 transits; low SNR,4305,1,True,False,True -372068780,4305.02,,3,4,3,3,3,4,4,0.5,14.6,23.08,0,0,1,PC,PC,7.8459,0.006,,2,spoc,SPOC,20:41:46.46,-68:08:05.95,14.324,0.038,16.837,0.053,2458670.445038,0.0038632434,374.364431509782,0.005572987,3.63928633374634,0.4670722,0.337186,0.046061,310.511444448259,42.422695,5.12237057132366,1.8963538,8.64261877443129,437.301622554035,7.186293,159.007,0.8155,6200.0,133.686,3.63371,0.0844045,2.75391006469727,0.123563,,,1.19,0.170538,"13,27",2021-07-28,2021-07-28,2022-12-14 12:09:24,possible multi; odd-transit significantly better shape than even transit; only two transits two years apart; low MES,4305,2,True,False,True -44898913,4306.01,,2,5,5,2,4,4,4,1.7,10.8,2.39,11,1,4,PC,CP,14.2683,0.008,,1,spoc,SPOC,04:16:31.42,-28:18:56.85,218.534,0.096,-251.131,0.117,2458413.191882,0.0010724914,2.72990488543893,1.19619135e-05,0.825728846912796,0.3995385,8.09465,1.089824,7427.72496639624,1003.2614,1.35136063406926,0.77290535,4.06697675001569,362.191014635742,8.324998,32.4298,0.07005,2887.0,157.0,5.15917,0.0427824,0.155497997999191,0.00468671,,,0.127219,0.0200353,"4,5,31,32",2021-07-19,2021-07-19,2023-03-03 12:02:43,potential stellar variability; low SNR,4306,1,False,False,True -141186075,4307.01,TIC 141186075.01,2,4,2,2,3,4,4,0.9,5.8,1.77,0,0,3,PC,PC,6.6418,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,05:25:18.6,-75:41:37.44,-103.892,0.033,-309.406,0.038,2458349.746768,0.0025417395,32.6972744683812,0.00013514279,4.88438227349858,0.24791096,0.117532,0.007665,108.244764340429,7.059962,1.18176524789815,0.40949318,33.7467433423105,614.720528691691,13.689239,36.0469,0.02375,6079.16,43.8376,4.438,,1.09843003749847,0.0429949,,,1.14,0.151726,"1,2,3,4,5,6,7,8,9,10,11,12,27,28,29,31,32,33,34,35,36,37,38,39",2021-07-19,2022-03-22,2022-12-14 12:09:24,possible multi,4307,1,True,False,True -141186075,4307.02,TIC 141186075.02,2,4,2,2,3,4,4,0.9,16.7,0.15,0,0,3,PC,PC,6.6418,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,05:25:18.6,-75:41:37.44,-103.892,0.033,-309.406,0.038,2458328.010533,0.0026675153,4.65441933672429,3.3434317e-05,2.88240409331875,0.14447035,0.027016,0.003565,24.8822966331108,3.2838788,0.587936684757796,0.16721696,454.039107657969,1177.31605072295,7.445844,36.0469,0.02375,6079.16,43.8376,4.438,,1.09843003749847,0.0429949,,,1.14,0.151726,"1,2,3,4,5,6,7,8,9,10,11,12,27,28,29,31,32,33,34,35,36,37,38,39",2021-07-19,2022-03-21,2022-12-14 12:09:24,low SNR; potential multiplanet system,4307,2,True,False,True -144193715,4308.01,,2,4,2,2,3,4,4,2.2,36.4,5.51,0,1,1,PC,PC,10.339,0.006,,1,spoc,SPOC,21:51:00.74,-43:33:44.51,-72.111,0.063,-1.864,0.06,2458333.435014,0.0024289966,9.15112547580615,5.531112e-05,2.5336897169564,0.55405915,0.841245,0.088344,774.514855517696,81.36459,2.20562921905769,2.4680645,62.3013820262635,716.54615471054,9.768072,108.932,0.638,5015.0,180.0,4.47652,0.304279,0.793448984622955,0.0464723,,,0.9,0.113319,"1,28",2021-07-19,2021-07-19,2022-12-14 12:09:24,low SNR; signal may be indicative of momentum dump,4308,1,False,False,True -56662591,4309.01,,2,4,2,2,4,4,4,0.2,23.3,5.2,0,2,3,PC,PC,9.456101,0.006,,1,spoc,SPOC,10:34:18.84,-09:09:46.25,-186.762,0.072,76.51,0.081,2458564.609862,0.0036522243,87.2228700013521,0.0006250998,2.03798525453628,0.9869923,0.721419,0.127883,664.230991124509,117.77729,2.13174051022839,5.221608,3.33896578222072,344.764659575713,7.3916535,75.7444,0.43885,5220.0,126.735,4.54936,0.083395,0.829943001270294,0.0494171,,,0.89,0.110067,"9,35",2021-07-19,2021-07-19,2022-12-14 12:09:24,low SNR; only 2 transits,4309,1,False,False,True -303317324,4310.01,TIC 303317324.01,1,4,1,1,4,4,4,0.0,18.1,7.64,3,5,2,PC,PC,9.4961,0.006,,1,spoc,SPOC,23:27:36.85,-25:30:30.46,-33.704,0.119,-87.513,0.069,2458365.181534,0.0029425519,739.16700068671,0.0040522036,5.71836041893506,0.31619948,1.495153,0.09903,1376.1395052727,91.20565,2.67359920355015,0.5437476,0.072487155985693,132.338136449528,14.332114,40.0268,0.08675,4159.0,127.589,4.53501,0.109622,0.721083998680115,0.0692336,,,0.65,0.0775779,"2,29",2021-07-19,2021-07-19,2022-12-14 12:09:24,some centroid offset; maximum period is ~739.2 days,4310,1,False,False,True -122617317,4311.01,,2,4,2,2,3,4,4,1.8,30.8,7.91,3,1,1,PC,PC,10.7236,0.006,,1,spoc,SPOC,02:46:44.53,-31:10:45.55,170.932,0.089,73.688,0.095,2458394.738879,0.0062619797,15.0700779431836,0.00015247852,3.86756408139934,0.4908442,0.926112,0.090749,852.616572065095,83.579414,2.72932348007789,0.5532457,35.2598429266011,621.498153816279,8.810635,134.988,0.926,5159.0,123.858,4.519,0.0898566,0.850728988647461,0.0504723,,,0.872,0.110561,"3,4,30,31",2021-07-19,2021-07-19,2022-12-14 12:09:24,low SNR; potential stellar variability,4311,1,True,False,True -122617317,4311.02,TIC 122617317.02,1,4,1,1,3,4,4,3.1,4.9,2.59,3,1,1,PC,PC,10.7236,0.006,,2,spoc,SPOC,02:46:44.53,-31:10:45.55,170.932,0.089,73.688,0.095,2458382.635952,0.0015867128,0.990289193656433,1.2096841e-05,1.35673557123887,0.32307628,0.302865,0.046411,278.909699166875,42.74519,1.41565286303946,2.9516218,1329.69382345257,1540.13099973546,7.614891,134.988,0.926,5159.0,123.858,4.519,0.0898566,0.850728988647461,0.0504723,,,0.872,0.110561,"3,4,30,31",2021-07-28,2021-07-28,2022-12-14 12:09:24,low MES; possible multi,4311,2,True,False,True -251086776,4312.01,,2,4,2,2,4,4,4,0.0,15.5,6.54,2,2,5,PC,PC,10.4779,0.008,,1,spoc-s01-s36-b02-L1,SPOC,02:30:11.42,-03:24:18.45,-73.952,0.092,-51.381,0.122,2458434.864936,0.0026682545,726.1175224889,0.0004215629,2.25433676045496,0.33717096,1.855689,0.186697,1707.69278089714,171.93939,2.43852958903519,0.47190765,0.63932587906437,228.06063051818,10.535669,40.9223,0.1073,3808.0,157.0,4.69366,0.010723,0.550329983234406,0.0173641,,,0.545551,0.0209578,"4,31",2021-07-19,2022-05-25,2022-12-14 12:09:24,low SNR; potential stellar variability; ~ 726 is longest possible period; may be shorter period,4312,1,False,False,True -294324819,4313.01,,2,4,2,2,3,4,4,3.9,26.7,12.96,0,1,3,PC,PC,9.6032,0.006,,1,spoc,SPOC,07:15:32.3,-55:33:18.06,-25.414,0.045,62.862,0.05,2458498.262939,0.006833178,6.82296186208644,8.504329e-05,6.50084735900364,0.51929677,0.250849,0.022607,231.014211849476,20.821619,3.64689998108586,0.36777332,832.743725135063,1370.0852529826,9.433972,232.521,1.3175,5781.0,129.08,3.82788,0.0766707,2.05876994132996,0.0972059,,,1.04,0.129003,"7,8,30,33,34,35,36",2021-07-19,2021-07-19,2022-12-14 12:09:24,low SNR; potential stellar variability,4313,1,False,False,True -459952217,4314.01,,5,5,5,5,5,5,5,1.2,28.3,11.49,0,0,1,PC,FA,8.22109,0.006,,1,spoc,SPOC,04:45:03.98,05:52:17.71,13.672,0.098,-21.479,0.068,2458448.205642,0.003367054,73.5809819958847,0.00047789348,2.14415975281033,0.8634284,0.377299,0.052157,347.445036481946,48.037334,3.39910251718171,4.635859,57.7754893554836,703.16242904375,7.4124866,158.797,1.3925,7802.0,152.01,4.21386,0.0738195,1.76118004322052,0.0496935,,,1.851,0.290116,"5,32",2021-07-19,2021-07-19,2022-12-14 12:09:24,low SNR; potential stellar variability,4314,1,False,False,True -139148528,4315.01,,1,4,2,1,3,4,4,2.4,34.4,6.04,0,1,1,PC,PC,10.2768,0.006,,1,spoc,SPOC,22:58:29.51,-44:43:00.97,42.234,0.067,-15.407,0.069,2458326.328697,0.0033780201,8.28604681758302,7.739272e-05,3.47534881665363,0.4529665,0.58701,0.064282,540.509741532141,59.204323,2.32936695556294,0.53587997,109.80090012265,825.602928284579,8.408551,134.093,1.324,5809.0,190.0,4.56733,0.290406,0.91421502828598,0.0492286,,,0.97,0.123684,"1,28",2021-07-19,2021-07-19,2022-12-14 12:09:24,low SNR potential L1 candidate,4315,1,False,False,True -7020254,4316.01,,5,5,5,5,5,5,5,9.3,65.9,91.58,0,0,5,KP,KP,12.7462,0.006,,1,spoc-s01-s46-b0A,SPOC,08:26:12.84,12:16:54.66,15.565,0.043,-21.666,0.029,2459549.374541,0.0005475,20.2729989423158,2.8775139e-05,3.73574487960754,0.090973824,18.208566,0.325693,16630.8637931172,299.92944,11.523444320393,0.5987556,33.0633613174992,611.58454256795,51.053673,413.591,4.2685,5742.0,129.041,4.58473,0.0726594,0.855539977550507,0.0416809,,,1.026,0.120504,"7,34,45,46",2021-07-19,2022-07-15,2022-12-14 12:09:24,K2-115 b,4316,1,False,False,True -422914082,4317.01,TIC 422914082.01,1,4,1,1,4,4,4,0.1,24.4,13.76,3,4,10,PC,PC,10.0121,0.006,,1,spoc,SPOC,02:33:14.5,01:41:27.35,397.201,0.077,-2.532,0.083,2458431.554344,0.00227632,238.854207223566,0.0010418084,4.12158597800237,0.28935996,2.11114,0.111344,1942.54235508435,102.5459,3.77798938956306,0.8958819,0.549681891043399,219.607721979136,17.465199,67.368,0.21765,4354.29,103.046,4.39555,0.0872734,0.865987002849579,0.0620603,0.037,0.03,0.68,0.0784796,"4,31",2021-07-19,2021-07-19,2022-12-14 12:09:24,potential L1 candidate; only 2 transits,4317,1,False,False,True -311130133,4318.01,,2,4,2,2,4,4,4,5.2,51.2,3.73,0,3,6,PC,PC,10.3687,0.006,,1,spoc,SPOC,03:59:05.25,06:55:28.1,32.243,0.085,-29.805,0.051,2458438.114877,0.0017245066,1.13438238395378,1.3080751e-05,1.44449996425389,0.316853,0.340807,0.04745,313.845886060871,43.702003,1.75324463979016,0.39842597,1466.68754631464,1578.35303850663,8.023294,120.871,0.63,5683.0,233.6,4.58721,0.0851552,0.846841990947723,0.0459046,,,1.011,0.133492,"5,32",2021-07-19,2021-07-19,2022-12-14 12:09:24,low SNR; potential stellar variability,4318,1,False,False,True -157115010,4319.01,,3,5,5,3,3,4,4,,,35.07,0,0,3,PC,PC,10.82,0.006,,1,spoc,SPOC,06:43:53.25,-43:53:34.74,-27.632,1.049,78.907,1.05,2459231.757702,0.007155176,0.0,0.0,7.72720551916567,0.52975136,7.346401,0.779623,6743.44552614686,717.80194,6.55196885941497,0.4984175,4.89458162326042,379.357472737502,7.1534576,83.6486,,4438.0,,4.438,,0.725032985210419,,,,,,"6,7,33,34",2021-07-26,2021-07-26,2022-12-14 12:09:24,alert as single transit on second event,4319,1,False,True,True -404518509,4320.01,TIC 404518509.01,1,4,1,1,3,4,4,0.0,19.0,9.02,3,1,3,PC,PC,8.6022,0.006,,1,spoc,SPOC,03:26:33.68,-43:36:49.19,-2.359,0.037,-22.812,0.055,2458431.268721,0.0039323447,703.615614821246,0.0054826885,5.13393445104761,0.3236778,0.698554,0.060235,643.185497039052,55.47728,2.94832431151693,0.27142635,0.457659231130012,209.775761472562,11.9246025,79.208,0.1595,5871.0,125.293,4.43296,0.0790908,1.03562998771667,0.0503367,,,1.06,0.135938,"3,4,30,31",2021-07-27,2021-07-26,2022-12-14 12:09:24,two transits; actual period likely shorter than 703.6 days,4320,1,True,False,True -404518509,4320.02,,5,5,5,5,5,5,5,0.9,31.3,5.43,3,1,3,PC,FA,8.6022,0.006,,2,spoc,SPOC,03:26:33.68,-43:36:49.19,-2.359,0.037,-22.812,0.055,2458417.466332,0.004318958,46.4093732462209,0.0003647566,4.82233701122434,0.8341399,0.473196,0.061634,435.734750459407,56.765373,2.18629967494351,1.712195,17.1730953263344,519.196665682136,7.139741,79.208,0.1595,5871.0,125.293,4.43296,0.0790908,1.03562998771667,0.0503367,,,1.06,0.135938,"3,4,30,31",2021-07-27,2021-07-26,2022-12-14 12:09:24,two transits; actual period likely shorter than 742.55 days; possible multi,4320,2,True,False,True -325081244,4321.01,,2,5,5,2,3,4,4,,,11.22,0,1,1,PC,PC,7.3016,0.006,,1,spoc,SPOC,21:51:47.51,-70:21:06.89,24.465,0.046,-50.714,0.044,2458679.442502,0.0037320806,0.0,0.0,5.74088580005335,0.79073614,0.193197,0.022999,177.924897673432,21.182976,3.35206767288207,2.7874317,431.047078358809,1162.11986777519,7.4347234,110.275,0.368,6163.97,113.083,3.72396,0.0825978,2.46119999885559,0.105005,,,1.17,0.16376,"13,27",2021-07-27,2021-07-26,2022-12-14 12:09:24,single transit; potential L1 planet,4321,1,False,True,True -13883872,4322.01,,2,4,4,2,3,4,4,1.4,20.7,6.44,2,0,1,PC,PC,10.162,0.006,,1,spoc,SPOC,04:54:57.86,-41:20:39.16,38.388,0.046,-6.136,0.064,2458417.282799,0.005484244,13.4190971500722,0.00014669292,5.20924401630592,0.5614782,0.378161,0.044203,348.238406519581,40.711212,2.41685147171014,0.60772747,123.728679687936,850.623436353255,8.141539,188.964,1.045,5914.2,121.77,4.30929,0.0781974,1.20530998706818,0.0582413,-0.05,0.09,1.08,0.140143,"4,5,31,32",2021-07-27,2021-07-26,2022-12-14 12:09:24,weak signal; possibly off-target; odd transits might not be real,4322,1,False,False,True -143022742,4323.01,,5,5,5,5,5,5,5,0.9,37.8,8.53,3,0,1,PC,FA,12.531,0.007,,1,spoc,SPOC,03:37:52.03,-30:03:26.78,-27.104,0.042,-60.598,0.059,2458416.548124,0.013202551,14.676265843378,0.00032541223,3.23204554927842,1.1914431,3.806675,1.132012,3499.93797342749,1042.0787,2.8523347853539,1.2104801,3.13982496587714,339.504948795957,9.150719,70.7878,0.17105,3414.0,157.0,4.77364,0.00645192,0.458860993385315,0.0136024,,,0.455971,0.0202541,"4,31",2021-07-27,2021-07-26,2022-12-14 12:09:24,potential L1 planet; low SNR; fit appears to be underestimating depth; centroid offset but not centered on anything,4323,1,True,False,True -143022742,4323.02,,5,5,5,5,5,5,5,0.9,47.7,15.85,3,0,1,PC,FA,12.531,0.007,,2,spoc,SPOC,03:37:52.03,-30:03:26.78,-27.104,0.042,-60.598,0.059,2458412.896474,0.006486537,21.9692577844538,0.00025938038,3.56623066157515,0.6793756,8.655825,1.411097,7940.61523893446,1298.8241,4.10617392108669,0.9829199,1.83360458011039,296.787886330734,9.256836,70.7878,0.17105,3414.0,157.0,4.77364,0.00645192,0.458860993385315,0.0136024,,,0.455971,0.0202541,"4,31",2021-07-27,2021-07-26,2022-12-14 12:09:24,possible 3:2 resonance; 3.6 sigma odd-even,4323,2,True,False,True -408416746,4324.01,,2,4,2,2,4,4,4,2.5,12.4,2.28,3,2,5,PC,PC,9.75311,0.008,,1,spoc,SPOC,09:42:35.15,-19:14:08.52,-474.872,0.108,-217.949,0.111,2458518.995425,0.0015390672,6.25099896551684,2.409182e-05,1.19323574182688,0.22356923,0.868676,0.10437,799.760139795749,96.12339,1.3119877111596,0.19412069,8.76231262016391,438.807897776396,8.616135,17.038,0.0178,3479.0,157.0,4.8309,0.00325853,0.395397007465363,0.0119085,,,0.386274,0.0203574,"8,35",2021-07-27,2021-07-26,2022-12-14 12:09:24,potential L1 planet; low SNR,4324,1,False,False,True -202185707,4325.01,,2,4,2,2,4,4,4,11.4,89.7,6.36,13,1,6,PC,PC,11.8206,0.007,,1,spoc,SPOC,06:47:23.66,06:07:43.38,74.438,0.126,-169.751,0.11,2458469.368876,0.0007408795,1.6500673350986,1.2731499e-05,0.919867870963516,0.27313098,2.945833,0.359868,2709.53495756801,331.39545,2.39900778402387,1.2909414,60.7790529263192,712.128278203547,10.393739,51.0354,0.20495,3896.0,147.0,4.70541,0.396179,0.454048991203308,0.0138638,,,0.450871,0.0205581,"6,33",2021-07-27,2021-07-26,2022-12-14 12:09:24,underlying SV at a much shorter period; signal could be linked to that,4325,1,False,False,True -303586471,4326.01,TIC 303586471.01,2,5,5,2,4,4,4,,,5.73,0,1,4,PC,PC,7.7158,0.006,,1,spoc,SPOC,23:27:57.22,-26:27:16.64,145.862,0.091,-44.339,0.083,2458363.762294,0.0029031814,0.0,0.0,3.63679641005668,0.72617835,0.456245,0.043296,420.129212234867,39.87619,2.25684246246119,1.7967627,2.15056931873891,308.857470968122,11.6979475,57.7233,0.1657,6034.49,111.364,4.42122,0.0734804,1.07903003692627,0.0455201,,,1.12,0.138172,"2,29",2021-07-27,2021-07-26,2022-12-14 12:09:24,single transit; possible L1 planet,4326,1,False,True,True -140687214,4327.01,,1,4,1,1,3,4,4,25.1,104.8,11.63,4,0,1,PC,PC,12.1285,0.007,,1,qlp-s39-tois,SPOC,04:52:49.65,-76:20:22.85,6.697,0.042,80.118,0.055,2459387.017748,0.0012894,0.8303285,2e-06,0.665,0.278,0.738552,0.640357,680.0,589.617,3.44971,1.5138,691.538,1428.0,19.0,84.4016,0.15225,3672.0,157.0,4.68064,0.0100081,0.57,0.02,,,0.558945,0.0202654,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2021-07-27,2022-03-21,2022-12-14 12:09:24,possible L1 planet; two stars in pixel,4327,1,False,False,True -77175217,4328.01,,2,4,2,2,3,4,4,0.0,24.4,4.12,2,1,1,PC,PC,7.7679,0.006,,1,spoc,SPOC,04:33:09.32,-36:56:45.09,-16.988,0.042,43.619,0.051,2458459.446061,0.0021894013,703.79367004987,0.0016713823,2.92973009349035,0.33086753,0.653763,0.070244,601.956684290386,64.69537,1.86029495909819,0.9054883,0.306658929810902,189.794513337248,9.05818,25.0039,0.0173,4709.0,125.217,4.57486,0.0933947,0.739835023880005,0.0543568,,,0.75,0.0848081,"4,5,31,32",2021-07-27,2021-07-26,2022-12-14 12:09:24,two transits; actual period likely shorter than 704 days,4328,1,False,False,True -256722647,4329.01,TIC 256722647.01,3,5,5,3,4,4,4,54.4,59.3,317.0,2,2,0,CP,CP,11.8832,0.039,,1,spoc-s14-s60-b0A-CP,CTOI,21:58:15.34,71:07:53.78,4.416,0.036,0.468,0.034,2459855.156794,0.0017260404,2.92246609239435,2.4140474e-05,5.55602552825818,0.08230493,6.232628,0.077576,5724.01767303931,71.44731,20.8842189081747,1.272273,3990.57163411999,2027.11565375393,66.027565,717.128,10.569,5520.0,262.7,3.55,0.09,2.7442901134491,0.157266,,,0.97,0.135216,"17,18,25,52,57,58",2021-07-27,2023-06-13,2023-06-16 12:14:51,TOI-4329 b; CTOI from Samuel Grunblatt,4329,1,False,False,True -47617038,4330.01,,3,4,3,3,3,4,4,,,317.0,0,0,1,PC,PC,7.6581,0.006,,1,qlp,QLP,14:41:24.05,-33:57:01.74,-35.111,0.097,-22.63,0.087,2459358.397242,0.0037028,3.3513304,2.77e-05,2.739,0.347,0.434381,0.001077,400.0,0.991643,17.7728,,295.994,1155.0,9.0,290.313,4.595,4886.0,122.0,,,8.71,,,,,,"11,38",2021-07-28,2021-07-28,2022-12-14 12:09:24,short duration for period and star; a/Rs < 2,4330,1,False,False,False -148833828,4331.01,,3,4,3,3,3,4,4,13.9,48.3,35.75,1,0,1,PC,PC,10.1952,0.006,,1,qlp,QLP,15:24:59.65,-40:12:59.88,-22.736,0.078,-23.502,0.053,2459360.395379,0.0058185,2.9034242,0.0013211,2.154,0.273,0.934135,0.001549,860.0,1.4267,6.62177,0.433148,554.218,1351.0,12.0,346.327,4.3565,5992.0,132.5,3.77,0.08,2.25,0.11,,,1.1,0.1404,38,2021-07-28,2021-07-28,2022-12-14 12:09:24,possible centroid offset; possibly synchronized,4331,1,False,False,False -178959058,4332.01,,3,4,3,3,3,4,4,5.4,38.8,15.83,0,0,1,PC,PC,9.783,0.006,,1,qlp-s64-ffi,QLP,13:58:47.8,-40:37:08.66,-18.488,0.08,-4.145,0.081,2460061.842391,0.0025282,5.4468377,2.16e-05,3.303,0.528,0.914575,0.044002,842.0,40.5265,4.39864,0.245629,631.423,1396.0,18.0,269.304,4.151,6793.0,129.1,4.15,0.09,1.68,0.07,,,1.46,0.249873,"11,38,64",2021-07-28,2023-06-28,2023-06-28 00:00:00,possible centroid offset,4332,1,False,False,False -144645881,4333.01,,3,4,3,3,1,4,4,13.7,75.2,36.68,0,0,0,PC,PC,9.326,0.007,,1,qlp,QLP,15:18:55.43,-44:30:01.44,-23.189,0.39,-14.867,0.327,2459356.713578,0.002617,8.8998556,0.0019739,1.13,0.188,1.325407,0.003508,1220.0,3.23065,6.71909,0.537883,23.8985,615.0,12.0,212.956,8.695,6606.0,132.9,4.09,0.1,1.75,0.11,,,1.38,0.22957,38,2021-07-28,2021-07-28,2022-12-14 12:09:24,possible depth-aperture; V-shaped,4333,1,False,False,True -128531633,4334.01,,3,4,3,3,3,4,4,9.6,43.5,45.86,1,0,1,PC,PC,10.2591,0.007,,1,qlp,QLP,14:37:54.47,-46:17:06.44,-12.388,0.325,-2.425,0.276,2459358.587889,0.0029638,8.2197647,5.72e-05,1.673,0.335,1.129753,0.005182,1040.0,4.77307,7.65998,0.817237,70.2704,806.0,10.0,398.085,28.033,6657.0,134.2,3.93,0.1,2.12,0.18,,,1.4,0.23185,"11,38",2021-07-28,2021-07-28,2022-12-14 12:09:24,possible odd-even,4334,1,False,False,False -443658196,4335.01,,5,5,5,5,5,5,5,34.8,133.8,130.71,0,0,0,EB,FP,11.5124,0.007,,1,qlp-s38-tois,SPOC,13:18:56.21,-62:58:27.91,-10.636,0.041,-4.467,0.048,2459351.741023,0.0049928,4.5006638,5.64e-05,4.588,0.523,2.293324,1.007527,2110.0,927.536,14.2378,4.97144,25501.0,3520.0,12.0,636.157,15.602,8933.0,169.165,4.45175,0.0675799,1.48,0.05,,,2.25,0.322149,"11,38",2021-07-28,2022-10-04,2022-12-14 12:09:24,TFOP FP; retired as NEB,4335,1,False,False,True -166184428,4336.01,,1,4,4,1,3,4,4,0.9,87.4,5.11,7,2,7,PC,PC,11.0196,0.007,,1,spoc,SPOC,13:44:25.68,-40:20:14.46,151.518,0.102,69.023,0.135,2459335.572603,0.0017441779,16.3360299514134,0.0025027962,1.98574521741082,0.3233367,4.492848,0.337847,4129.51594331187,311.12048,2.11123898401829,0.5501385,1.6933452234895,290.941803301989,14.169919,22.5455,0.03825,3365.0,157.0,4.89744,0.00242422,0.326568007469177,0.00988657,,,0.30713,0.0202867,38,2021-07-28,2021-07-28,2023-04-20 00:00:00,potential L1 candidate; check nearby stars,4336,1,False,False,True -399642071,4337.01,,2,4,2,2,3,4,4,15.0,121.5,8.35,1,0,3,PC,PC,11.1567,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,10:57:09.55,-69:58:45.77,-29.87,0.057,-0.01,0.046,2459335.387793,0.0057187034,2.28617920624135,0.00032269396,4.79327241015566,0.41793948,2.273419,0.175291,2091.70557299153,161.4355,2.81729218264641,0.6762643,99.4164306416886,805.349310518174,10.605815,65.1329,0.14575,3953.0,123.519,4.6489,0.120623,0.617703020572662,0.0645854,,,0.62,0.08314,"37,38",2021-07-28,2022-03-21,2022-12-14 12:09:24,low SNR; possible instrument systematics; v-shaped,4337,1,False,False,True -253434221,4338.01,,3,5,5,3,3,4,4,28.0,80.7,74.41,1,2,1,PC,APC,10.0865,0.006,,1,qlp,SPOC,13:06:56,-58:06:39.44,-31.466,0.037,-56.85,0.039,2459350.811013,0.0013979,7.4997774,2.1e-05,1.278,0.211,2.228044,0.004824,2050.0,4.44292,10.1994,0.751493,475.605384294505,587.0,20.0,219.732,1.638,4979.2,88.5,3.92,0.31,1.91,0.11,,,0.9,0.117789,"11,38",2021-07-28,2021-08-12,2022-12-14 12:09:24,check nearby stars; V-shaped,4338,1,False,False,True -7439481,4339.01,,5,5,5,5,5,5,5,107.1,263.4,76.29,2,0,2,PC,FP,14.0644,0.008,,1,spoc,SPOC,14:11:42.9,-29:58:26.33,-79.125,0.118,24.051,0.102,2459333.969005,0.0005009447,1.25408055209495,3.9808045e-05,1.34355168935015,0.037663072,74.161987,1.510383,66025.0994260211,1390.1466,10.3493319111719,0.37656295,73.5478382884674,746.89960144404,38.572582,123.032,1.061,3455.0,157.0,4.82691,0.00418249,0.399724006652832,0.0125234,,,0.391168,0.0207321,38,2021-07-28,2021-07-28,2022-12-14 12:09:24,check neighbor TIC 7439480,4339,1,False,False,True -454038613,4340.01,,1,4,1,1,3,4,4,6.5,48.9,11.8,0,1,3,PC,PC,10.0116,0.006,,1,qlp,QLP,11:42:38.79,-40:03:37.84,-47.529,0.044,1.405,0.036,2459330.281814,0.0029142,2.6680587,2.23e-05,2.978,0.382,0.62991,0.000985,580.0,0.907189,3.45609,0.216187,1634.14,1771.0,15.0,231.084,1.751,6406.0,134.5,4.23,0.09,1.44,0.06,,,1.29,0.200842,"10,37",2021-07-28,2021-07-28,2022-12-14 12:09:24,Odd-even likely not real. Possible multi.,4340,1,False,False,False -62301521,4341.01,,5,5,5,5,5,5,5,0.0,8.7,2.19,0,1,0,PC,FA,13.7827,0.008,,1,spoc,SPOC,19:26:08.37,-43:11:13.88,-157.84,0.149,-1098.04,0.116,2458661.048552,0.009240395,18.4043334143754,0.012458659,7.87933095348761,0.83414465,9.964011,1.179399,9135.21101619144,1085.6766,1.28344327393838,0.16381204,0.263869342647955,182.796124260207,7.571882,23.7607,0.049,2891.0,157.0,5.22041,0.0557763,0.133376002311707,0.00396582,,,0.10777,0.0200166,"13,27",2021-07-28,2021-07-28,2022-12-14 12:09:24,even transit looks better than odd; low SNR,4341,1,False,False,True -354944123,4342.01,,1,4,4,1,4,4,4,3.6,49.0,5.79,10,6,2,PC,CP,11.0318,0.007,,1,spoc,SPOC,21:37:33.46,-77:58:44.93,120.399,0.043,-91.425,0.043,2458654.532426,0.0015552475,5.53832899923516,3.8025082e-05,2.22638882354132,0.41871506,1.528828,0.141217,1407.11186478991,130.05675,2.27214086268217,1.1171762,27.6818339104765,585.01697007936,8.499877,61.5204,0.1022,3883.0,157.0,4.65275,0.0107329,0.59817498922348,0.0177148,,,0.586597,0.0202492,"13,27",2021-07-28,2021-07-28,2023-03-03 12:02:49,potential L1 planet; near 2:1 resonance,4342,1,True,False,True -354944123,4342.02,,1,4,4,1,4,4,4,2.1,43.7,6.65,10,6,2,PC,CP,11.0318,0.007,,2,spoc,SPOC,21:37:33.46,-77:58:44.93,120.399,0.043,-91.425,0.043,2458659.348023,0.0024497588,10.6886083506691,0.00011466265,2.66722448779472,0.34568244,1.631102,0.175957,1501.17263406582,162.0491,2.46422452476959,0.4968625,11.5205083015932,469.880757130345,8.190688,61.5204,0.1022,3883.0,157.0,4.65275,0.0107329,0.59817498922348,0.0177148,,,0.586597,0.0202492,"13,27",2021-07-28,2021-07-28,2023-03-03 12:02:48,possible multi,4342,2,True,False,True -278988097,4343.01,,2,4,2,2,3,4,4,1.0,19.2,5.49,0,0,1,PC,PC,11.255,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,06:47:19.34,-56:37:03.01,-8.744,0.053,55.104,0.049,2458411.634631,0.0041982583,11.5419995560888,8.554041e-05,2.97824559881271,0.35722074,0.474486,0.047329,436.922491185755,43.59038,2.20032482445918,0.23430239,92.6531332670931,791.288359952889,9.664697,242.572,1.276,6112.0,130.898,4.5884,0.0805274,0.901955008506775,0.0413141,,,1.15,0.155106,"4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2021-07-28,2022-03-21,2022-12-14 12:09:24,,4343,1,False,False,True -38939275,4344.01,,1,4,1,2,3,4,4,0.0,5.1,10.67,0,1,3,PC,PC,9.4826,0.006,,1,spoc,SPOC,04:38:36.25,-61:20:36.5,8.477,0.047,-20.372,0.065,2458507.586416,0.014388347,731.480877919014,0.020350799,14.7095051059258,1.7781773,0.265939,0.039181,244.908877161069,36.08673,3.25371070043504,2.2459438,1.69066125108796,290.826448156417,7.5742183,232.265,1.241,5854.0,128.805,3.83792,0.077154,2.05460000038147,0.098744,,,1.06,0.130742,"4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36",2021-07-28,2021-07-28,2022-12-14 12:09:24,check neighbor TIC 6649664; low MES,4344,1,False,False,True -469791892,4345.01,,2,4,3,2,1,4,4,2.0,169.0,6.16,1,0,0,PC,PC,14.752,0.0,,1,spoc,SPOC,19:53:45.21,-69:51:07.57,-5.633,0.052,0.011,0.063,2458657.983826,0.0061300416,12.8910022210525,0.0002806083,4.09052865938255,0.57591254,16.541032,2.106463,15119.3900088524,1938.243,2.35475287711111,1.3727763,3826.58275502071,2005.96119339072,7.729805,983.721,42.4365,31000.0,7000.0,5.59962,0.544746,0.180000007152557,0.104,,,0.47,0.03,"13,27",2021-07-28,2021-07-28,2022-12-14 12:09:24,low MES,4345,1,False,False,True -389371332,4346.01,,5,5,5,5,5,5,5,1.2,16.4,3.1,0,0,0,PC,FP,12.4375,0.007,,1,spoc,SPOC,05:44:04.53,-66:21:32.75,-44.82,0.081,35.22,0.081,2458494.060524,0.0055972436,3.90771159427544,4.6213863e-05,9.52783635353654,0.77758694,0.651237,0.052148,599.631909867529,48.029163,1.57227991698766,0.5293573,50.3800694701178,679.492144160818,10.342199,130.457,0.644,3917.0,157.0,4.61771,0.0115687,0.640110015869141,0.0189905,,,0.61966,0.0202647,"7,27,28,29,31,32,34,35",2021-07-28,2021-07-28,2022-12-14 12:09:24,crowded field; potential L1 planet,4346,1,False,False,True -32498058,4347.01,,3,4,3,3,3,4,4,2.3,34.5,15.35,0,3,3,PC,PC,8.83419,0.006,,1,spoc,SPOC,05:36:46.45,-24:01:52.39,13.013,0.034,-5.781,0.05,2458449.129982,0.0054715094,35.3573239243673,0.0003555365,6.86697835840642,0.5118849,0.670644,0.059724,617.495316953028,55.006767,4.02995357381912,0.7152688,112.927500499895,831.418489806818,11.313465,195.126,1.1235,7607.0,214.0,4.31008,0.359171,1.56284999847412,0.0492563,,,1.775,0.297797,"5,6,32,33",2021-07-28,2021-07-28,2022-12-14 12:09:24,could be L1 given Rp uncertainty; pulsating host; possibly SV,4347,1,False,False,True -350299588,4348.01,,2,4,2,2,3,4,4,0.0,8.6,8.27,0,1,3,PC,PC,8.3987,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,05:35:38.39,-57:08:19.07,41.302,0.042,-29.11,0.044,2458507.660183,0.007963274,602.241437674016,0.012024281,8.94131538497144,0.8475241,0.230572,0.029022,212.342270092258,26.729952,2.80076905263735,1.2447399,2.03618045202229,304.665877101559,7.539507,136.786,0.457,6128.0,132.772,3.96225,0.0826951,1.86266994476318,0.086721,,,1.16,0.161499,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,33,34,35,36,37,38,39",2021-07-28,2022-03-22,2022-12-14 12:09:24,period may be half the max period of ~602 days,4348,1,False,False,True -313889049,4349.01,,2,4,2,2,4,4,4,0.0,8.4,6.11,0,0,4,PC,PC,11.7463,0.006,,1,spoc,SPOC,00:00:31.1,-26:13:51.9,278.218,0.073,105.663,0.055,2458355.68965,0.005415323,749.160523093357,0.00804294,4.98942106332534,0.7835969,1.902769,0.20605,1750.98016908437,189.76117,2.34389597360103,0.9431504,0.0334520480411825,109.07505170291,8.911839,72.4603,0.2199,3851.0,125.312,4.71539,0.135062,0.558169007301331,0.0637437,,,0.59,0.0834059,"2,29",2021-07-28,2021-07-28,2022-12-14 12:09:24,two transits; actual period likely shorter than 749.2 days; another star in the pixel,4349,1,False,False,True -50379036,4350.01,,1,4,1,2,3,4,4,2.0,30.4,2.86,2,1,1,PC,PC,8.9504,0.006,,1,spoc,SPOC,02:11:32.14,-76:06:26.76,60.505,0.042,32.893,0.041,2458328.389294,0.0024507712,4.87590700647755,3.9563893e-05,3.05530300891049,0.38996747,0.175455,0.020591,161.587135320258,18.964478,1.50122686261229,1.2102476,440.179213290996,1168.22671117658,7.802036,103.01,0.2475,5937.0,122.905,4.35104,0.0779042,1.14874994754791,0.0552161,0.18,0.1,1.08,0.140861,"1,2,13,27,28",2021-07-28,2021-07-28,2022-12-14 12:09:24,check faint neighbor TIC 630848191,4350,1,False,False,True -358253047,4351.01,,2,4,2,2,3,4,4,1.2,23.1,8.05,0,1,1,PC,PC,11.0155,0.006,,1,spoc,SPOC,04:07:02.22,-58:09:03.65,-15.484,0.054,-51.929,0.062,2458362.72964,0.009279394,20.1459393335393,0.00031501256,4.71328629748749,0.6934358,0.7177,0.089374,660.807929121387,82.312996,2.75575664058936,0.34255102,28.3520925312887,588.526508211995,7.784159,169.402,0.8015,5303.0,130.287,4.4996,0.0843677,0.888701021671295,0.0504498,,,0.91,0.116059,"2,3,4,29,30,31,35",2021-07-28,2021-07-28,2022-12-14 12:09:24,,4351,1,False,False,True -237332812,4352.01,,2,5,5,2,3,4,4,1.6,35.2,3.51,1,0,1,PC,PC,9.3391,0.006,,1,spoc,SPOC,23:07:19.88,-60:05:05.9,8.953,0.038,3.46,0.046,2458333.456166,0.0047345585,11.8918632559834,0.00015309542,4.78247997943688,0.60536265,0.393857,0.049075,362.689945199481,45.198753,1.6923029875024,0.6221302,55.1801286683202,695.129031385189,7.322253,78.6946,0.17505,5461.0,122.168,4.57288,0.0813071,0.834551990032196,0.0432865,,,0.95,0.120089,"1,28",2021-07-28,2021-07-28,2022-12-14 12:09:24,low MES; may be variability,4352,1,False,False,True -176797879,4353.01,,2,4,4,2,3,4,4,0.0,1.8,2.44,4,1,1,PC,PC,10.3347,0.007,,1,spoc,SPOC,03:14:20.01,-34:01:58.09,199.226,0.055,310.448,0.065,2458427.019739,0.0040517324,718.180931703518,0.00054976414,2.92331513745715,0.67049795,1.057617,0.13341,973.626915580975,122.86767,1.3653088808735,0.7672082,0.431256497491868,206.682479226774,7.295866,25.1426,0.02985,3614.0,157.0,4.80335,0.00489999,0.425622999668121,0.0126833,,,0.420079,0.0202882,"4,31",2021-07-28,2021-10-04,2022-12-14 12:09:24,period may be shorter than max period 718.181 days,4353,1,False,False,True -332715376,4354.01,,2,4,2,2,2,4,4,2.8,39.4,8.24,3,3,2,PC,PC,10.1075,0.006,,1,spoc,SPOC,02:10:41.08,-00:40:43.98,64.006,0.202,11.626,0.122,2458417.574247,0.0022560526,10.6306165388748,5.5350993e-05,1.88474462994234,0.68448627,0.842296,0.118317,775.482605689826,108.96834,2.794347240813,2.7907526,100.183996252019,806.89929756603,7.1679225,140.228,1.372,5737.0,128.163,4.47544,0.0786754,0.969790995121002,0.048603,,,1.025,0.130838,"4,31",2021-07-28,2021-07-28,2022-12-14 12:09:24,Odd events look real; evens don't. Scattered light. Some centroid offset.,4354,1,False,False,True -260655847,4355.01,,2,4,2,2,3,4,4,0.1,12.6,9.66,0,1,1,PC,PC,7.2298,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,06:32:34.52,-55:38:56.29,114.58,0.057,-86.783,0.053,2458507.585878,0.008445462,674.233712600332,0.011640218,12.2281537377095,0.5740679,0.202283,0.027008,186.29208325222,24.875027,3.06784826046142,0.74815905,1.68488955743041,290.577919015939,7.247839,76.6142,0.14815,5423.0,120.272,3.73635,0.0789344,2.17481994628906,0.116246,,,0.94,0.120172,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,38,39",2021-07-28,2022-03-21,2022-12-14 12:09:24,bad transit shape; low SNR; period could be half,4355,1,False,False,True -149389419,4356.01,,2,4,2,2,3,4,4,0.1,10.4,12.68,0,1,1,PC,PC,9.2546,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,05:35:59.03,-63:55:35,-10.08,0.064,26.447,0.046,2458538.754594,0.004925933,579.649141324751,0.0068815886,4.56779706520076,0.8849305,0.523446,0.076447,481.995614853151,70.40735,3.60096157824973,2.2147377,2.08492995654121,306.47328038941,7.153257,204.982,1.1675,6855.0,133.837,4.20414,0.087322,1.5925600528717,0.0662061,,,1.48,0.253973,"2,3,5,6,7,8,9,10,12,13,27,28,29,30,32,33,34,35,36,37,38,39",2021-07-28,2022-03-21,2022-12-14 12:09:24,period could be half; low SNR; bad transit shape,4356,1,False,False,True -300011941,4357.01,,5,5,5,5,5,5,5,1.3,2.6,2.3,0,0,0,EB,FP,10.5385,0.006,,1,spoc,SPOC,07:07:39.17,-66:24:23.68,-13.875,0.077,10.847,0.049,2458327.104401,0.0021359867,1.81412152094214,1.7152974e-05,4.60061540235987,0.3483414,0.140508,0.016269,129.404120127498,14.983914,1.31804644309185,0.6717385,1468.56742840869,1578.85854708584,7.3588576,189.148,1.071,5789.58,122.276,4.35115,0.0753651,1.12713003158569,0.0557387,-0.117411,0.1,1.04,0.128776,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36",2021-07-28,2021-07-28,2022-12-14 12:09:24,TFOP FP; retired as EB; contact binary,4357,1,False,False,True -273418421,4358.01,TIC 273418421.01,1,4,1,1,3,4,4,0.0,18.3,5.02,0,1,1,PC,PC,8.9077,0.006,,1,spoc,SPOC,22:56:29.83,-76:47:51.65,-180.288,0.037,34.75,0.039,2458356.192638,0.0066510537,390.4585364439,0.00077914464,5.28935929821421,0.5122586,0.679938,0.048049,626.050026039448,44.254074,2.08857991077546,0.7736776,5.93834686704825,398.140300591408,11.755434,66.1798,0.09645,5830.0,190.0,4.57203,0.25627,0.823673009872437,0.0432362,,,0.98,0.125822,"1,13,27,28",2021-07-28,2021-07-28,2022-12-14 12:09:24,actual period is likely shorter than 390.4584 days,4358,1,False,False,True -133505138,4359.01,,5,5,5,5,5,5,5,4.7,46.9,6.71,1,0,1,PC,FP,9.5115,0.006,,1,qlp,QLP,09:58:55.55,-53:18:05.45,-31.465,0.056,7.711,0.057,2459330.394075,0.0027911,2.4360845,1.7e-05,2.495,0.432,0.380074,0.000851,350.0,0.784155,2.46916,0.169002,1556.22,1749.0,14.0,177.018,1.111,6529.0,131.2,4.33,0.09,1.32,0.06,,,1.35,0.217593,"9,10,36,37",2021-08-06,2021-08-05,2022-12-14 12:09:24,other dips in LC; possible SV or multi; slight depth aperture correlation,4359,1,False,False,True -52307802,4360.01,,2,4,2,2,3,4,4,1.7,6.3,2.23,1,0,1,PC,PC,12.747,0.007,,1,spoc,SPOC,01:26:52.62,-68:38:04.28,-122.555,0.078,-59.979,0.065,2458328.294362,0.0014545587,3.07493380399329,1.5514932e-05,1.3032724062538,0.48177174,1.800113,0.217961,1656.59204939048,200.72925,1.29488497033253,0.87936926,12.6974685993014,481.447611459224,8.253607,43.2301,0.07705,3246.0,157.0,4.91671,0.0047144,0.308246999979019,0.0092169,,,0.286048,0.0201829,"1,2,27,28,29",2021-08-06,2021-08-05,2022-12-14 12:09:24,weak signal; possible odd-even,4360,1,False,False,True -334632624,4361.01,TIC 334632624.01,2,4,4,2,4,4,4,0.0,13.2,8.11,0,5,3,PC,PC,8.6661,0.006,,1,spoc,SPOC,09:25:23.44,-15:55:19.73,66.673,0.072,-59.705,0.077,2458520.648703,0.003475973,741.425589590544,0.0050121015,5.2428848283452,0.594259,0.54085,0.052403,498.017414272265,48.264156,2.7683483322035,1.2324685,0.611235886084883,225.513196361357,10.060948,98.2063,0.44725,5944.0,125.143,4.30249,0.0780578,1.22038996219635,0.0575729,,,1.09,0.135114,"8,35",2021-08-06,2021-08-05,2023-03-02 00:00:00,possible L1 planet; two transits; actual period is likely shorter than 741.426 d,4361,1,False,False,True -238164799,4362.01,,2,4,2,2,3,4,4,4.3,48.3,8.4,0,1,1,PC,PC,8.4592,0.006,,1,spoc-s01-s36-b02-L1,SPOC,07:05:35.07,-51:23:02.37,-4.246,0.048,14.18,0.045,2458470.49495,0.002883676,7.54806117208927,5.01783e-05,5.18501844316637,0.26266825,0.269874,0.031397,248.531874895183,28.917595,2.82706156618696,0.2452805,618.552573569983,1271.93203051775,7.8397946,135.183,0.4865,6688.0,135.842,4.19679,0.0889893,1.57318997383118,0.0652713,,,1.42,0.241044,"6,7,8,33,35,61,62",2021-08-06,2023-04-12,2023-04-12 00:00:00,possible odd-even; some bad difference images; possibly SV,4362,1,False,False,True -325682877,4363.01,,2,4,2,2,4,4,4,4.4,38.1,4.02,2,2,4,PC,PC,11.2473,0.006,,1,spoc,SPOC,02:28:26.53,-12:32:57.71,-8.149,0.066,-98.33,0.061,2458412.27724,0.0019442178,2.11865900761235,1.6776867e-05,1.55855263648867,0.5593729,0.722051,0.102457,664.812055633028,94.3619,1.83255338754713,2.4164007,144.785351002841,884.709937271223,7.830102,77.7751,0.21545,4002.0,122.102,4.5511,0.122855,0.69132000207901,0.0706156,,,0.62,0.0829526,"4,31",2021-08-06,2021-08-05,2022-12-14 12:09:24,weak signal,4363,1,False,False,True -4070275,4364.01,,2,4,4,2,3,4,4,3.2,56.9,5.04,9,3,5,PC,PC,11.3993,0.008,,1,spoc,SPOC,05:20:16.06,-04:14:21.29,64.29,0.084,43.813,0.064,2458439.340243,0.0015271378,5.42406914989545,2.0911104e-05,1.68750365400652,0.29708984,1.920039,0.193119,1766.85892964807,177.85298,2.09370701057662,0.47302234,13.3328223741382,487.360439035267,9.643645,43.9662,0.1044,3500.0,157.0,4.76752,0.00696466,0.465777009725571,0.0139892,,,0.463239,0.0203923,"5,32",2021-08-06,2021-08-05,2022-12-14 12:09:24,weak signal,4364,1,False,False,True -413343957,4365.01,,3,4,3,3,3,4,4,9.3,53.7,19.12,0,0,1,PC,PC,10.3593,0.006,,1,qlp,QLP,15:27:49.36,-56:19:08.59,-7.576,0.089,-45.498,0.074,2459383.537057,0.0020025,3.3784254,1.96e-05,2.093,0.244,1.086279,0.001705,1000.0,1.57019,4.57722,0.281012,477.405,1302.0,17.0,253.221,2.875,6311.0,129.8,4.23,0.09,1.41,0.06,,,1.24,0.185745,"12,38,39",2021-08-06,2021-08-24,2022-12-14 12:09:24,crowded field,4365,1,False,False,False -297361900,4366.01,,3,4,3,3,3,4,4,8.6,36.5,18.11,0,0,1,PC,PC,10.1441,0.006,,1,qlp,QLP,12:01:11.56,-67:45:36.84,4.018,0.066,8.296,0.086,2459359.425922,0.0032106,2.6374675,3.03e-05,1.703,0.401,0.477829,0.002096,440.0,1.93086,4.45268,0.386278,298.846,1158.0,10.0,245.444,3.034,5355.0,127.5,3.82,0.08,1.96,0.11,,,0.93,0.116263,"11,37",2021-08-06,2021-08-05,2022-12-14 12:09:24,possible centroid offset/depth aperture correlation,4366,1,False,False,False -313675203,4367.01,,1,4,1,1,3,4,4,3.7,44.5,3.17,5,1,1,PC,PC,9.462,0.006,,1,qlp,QLP,13:28:40.12,-61:50:04.99,64.648,0.036,-38.083,0.042,2459358.521957,0.0044199,2.5110467,2.56e-05,2.973,0.584,0.445243,0.001295,410.0,1.19285,1.58723953736147,2.4792538,1026.29,1576.0,12.0,87.7559,0.2534,5603.0,187.0,4.49875,0.266979,0.91,0.05,,,0.93,0.117136,"11,38",2021-08-06,2021-08-05,2022-12-14 12:09:24,possible L1 planet; possible centroid offset; weak signal,4367,1,False,False,True -314724818,4368.01,,3,4,3,3,3,4,4,39.8,85.7,317.0,0,0,1,PC,PC,10.0199,0.009,,1,qlp,QLP,13:30:36.49,-61:13:04.91,-10.045,0.039,-4.541,0.053,2459359.273565,0.0015953,4.4518639,1.31e-05,1.9,0.334,2.500069,0.00352,2300.0,3.242,19.7335,1.00486,2252.87,1919.0,19.0,882.905,30.175,8353.8,221.3,4.1,1.45,3.61,0.13,,,2.75,0.380213,"11,38",2021-08-06,2021-08-05,2022-12-14 12:09:24,likely EB; possible depth-aperture correlation,4368,1,False,False,True -278862750,4369.01,,2,4,2,2,3,4,4,2.0,18.5,12.58,0,1,1,PC,PC,9.329001,0.006,,1,qlp-s63-ffi,QLP,06:42:21.07,-58:10:59.59,20.953,0.216,-28.742,0.181,2460037.083967,0.0068708,13.576898,0.0001041,4.649,0.714,0.28993,0.019229,267.0,17.7104,3.58985,0.258526,185.285,1027.0,15.0,311.844,8.8115,6730.0,126.4,3.8,0.09,2.5,0.12,,,1.43,0.249748,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,35,36,37,38,39,61,62,63",2021-08-12,2023-05-10,2023-06-16 12:14:51,two stars in pixel of similar magnitude; possible centroid shift; L1 candidate,4369,1,False,False,True -335040423,4370.01,,2,4,2,2,4,4,4,3.1,27.3,6.13,0,44,3,PC,PC,9.32312,0.006,,1,qlp,QLP,13:25:50.68,-16:25:41.43,9.943,0.091,-17.687,0.09,2459330.970789,0.012573,2.5610662,7.22e-05,4.338,1.865,0.184591,0.001828,170.0,1.68341,2.3454,0.292756,3075.23,2074.0,9.0,211.98,2.423,6161.0,136.8,3.95,0.08,1.9,0.09,,,1.173,0.16989,"10,37",2021-08-12,2021-08-12,2022-12-14 12:09:24,weak signal; potential L1 planet,4370,1,False,False,False -450649506,4371.01,,3,4,3,3,3,4,4,15.3,68.5,18.79,0,0,1,PC,PC,10.2089,0.006,,1,qlp,QLP,12:27:36.2,-60:09:47.99,6.786,0.071,-1.423,0.055,2459359.873486,0.0019193,1.0604139,3.9e-06,2.084,0.139,1.140622,0.000649,1050.0,0.597776,4.5487,0.253922,4172.86,2239.0,36.0,261.247,2.7585,5801.2,38.2,4.22,0.38,1.62,0.08,,,1.21,0.172709,"11,37,38",2021-08-13,2021-08-12,2022-12-14 12:09:24,weak centroid offset; v-shaped; slight depth aperture correlation,4371,1,False,False,False -401980624,4372.01,,1,4,1,1,3,4,4,5.6,47.6,8.31,0,0,1,PC,PC,10.4286,0.006,,1,qlp,QLP,14:35:25.32,-76:12:50.74,-34.4,2.6,-1.9,2.4,2459388.846628,0.0016643,3.2752127,1.37e-05,2.473,0.405,0.695094,0.000673,640.0,0.619608,2.81928,,563.835,,16.0,150.664,,5496.0,,,,1.03,,,,,,"12,38,39",2021-08-13,2021-08-26,2022-12-14 12:09:24,potential L1 planet; potential centroid offset,4372,1,False,False,False -315350812,4373.01,,3,4,3,3,3,4,4,9.8,64.9,28.63,0,0,1,PC,PC,9.8459,0.006,,1,qlp,QLP,13:32:42.22,-65:14:28.92,-15.373,0.04,-12.331,0.046,2459352.269422,0.0035434,5.9423119,3.35e-05,1.906,0.228,1.292795,0.002384,1190.0,2.19591,5.82885,0.313616,281.66,1141.0,10.0,302.514,2.7845,7217.6,90.0,4.11,0.45,1.63,0.05,,,1.86,0.287439,"11,38",2021-08-13,2021-08-12,2022-12-14 12:09:24,small centroid offset; crowded field,4373,1,False,False,False -308191940,4374.01,,3,4,3,3,3,4,4,4.4,28.7,46.74,0,0,1,PC,PC,10.1908,0.007,,1,qlp,QLP,12:01:43.97,-61:57:17.07,-6.965,0.053,-0.108,0.053,2459343.366967,0.0062043,13.2689495,0.0001896,2.8,0.589,0.836339,0.002838,770.0,2.61378,7.74981,0.591634,328.707,1186.0,9.0,795.894,24.758,9635.0,191.0,3.92,0.07,2.85,0.11,,,2.46,0.344523,"10,11,37,38",2021-08-13,2021-08-12,2022-12-14 12:09:24,possible odd-even; weak signal,4374,1,False,False,False -343708863,4375.01,,5,5,5,5,5,5,5,5.1,34.6,35.95,0,0,0,EB,FP,9.4128,0.006,,1,qlp,QLP,13:47:06,-70:30:27.11,-4.943,0.056,-2.104,0.062,2459379.13132,0.0061411,5.9685742,7.46e-05,2.059,0.382,0.369213,0.001941,340.0,1.78727,6.64236,0.55943,1041.97,1582.0,9.0,689.355,18.97,10390.0,221.8,3.79,0.07,3.44,0.12,,,2.68,0.361704,"11,12,38,39",2021-08-13,2021-08-24,2022-12-14 12:09:24,possible secondary not at phase 0.5; hot host star; centroid shift in s39; TFOP FP; retired as NEB,4375,1,False,False,False -250306572,4376.01,,3,4,3,3,3,4,4,6.2,32.5,18.52,0,0,1,PC,PC,10.2973,0.006,,1,qlp,QLP,14:53:13.32,-50:47:46.47,-24.269,0.065,-20.497,0.065,2459359.388606,0.0042932,1.6089592,2.07e-05,2.58,0.418,0.347491,0.00136,320.0,1.25219,4.49321,0.35392,5042.03,2347.0,9.0,454.074,8.9975,7029.0,126.3,3.86,0.09,2.42,0.1,,,1.55,0.266897,"11,38",2021-08-13,2021-08-12,2022-12-14 12:09:24,low SNR; likely SV,4376,1,False,False,False -394918211,4377.01,TIC 394918211.01,3,4,3,3,3,4,4,30.2,45.8,126.64,0,6,2,PC,PC,10.7934,0.006,,1,spoc-s01-s39-b0A,CTOI,10:59:43.79,-82:13:16.86,-16.228,0.042,12.839,0.036,2459363.904851,0.0040667923,4.37716022976658,0.000489777,8.41255829257333,0.22227994,1.69743,0.051667,1562.16904336149,47.5855,13.9426479637234,0.7987437,431.095393285879,1162.15243114216,20.717003,455.82,4.8585,4913.0,122.0,,,3.41348004341125,,,,,,"11,12,13,38,39",2021-08-13,2022-03-21,2022-12-14 12:09:24,CTOI from Samuel Grunblatt; evolved star,4377,1,False,False,True -394721720,4378.01,TIC 394721720.01,3,4,3,3,1,4,4,52.4,145.5,65.07,1,0,0,PC,PC,11.7993,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,01:21:06.85,-85:35:26.35,-15.4,0.038,-26.608,0.033,2459362.616226,0.0014110415,1.06906647910126,4.1236153e-06,1.48077142722767,0.08712427,3.151689,0.178412,2898.6037458658,164.30977,9.42354107963732,6.8581543,3231.51822909062,1922.96509922372,24.39218,355.943,2.492,5930.0,126.607,4.36195,0.0823954,1.13442003726959,0.0522613,,,1.08,0.147562,"27,39",2021-08-13,2022-03-22,2022-12-14 12:09:24,V-shaped; Gaia RV error = 1.1 km/s,4378,1,False,False,True -97766057,4379.01,TIC 97766057.01,3,4,4,3,3,4,4,43.6,47.4,317.0,7,0,3,PC,PC,11.8994,0.007,,1,spoc,UNKNOWN,16:48:11.49,-32:26:01.51,-11.159,0.096,-17.117,0.055,2459363.368768,0.0017335427,3.25322925337084,0.00042363437,5.14760180864621,0.14062846,6.788021,0.188299,6232.49547398101,173.41483,16.6046173179451,1.042507,2886.44592793083,1869.43601901874,21.46312,645.158,18.517,6368.0,135.81,3.91383,0.0867394,2.06071996688843,0.111709,,,1.27,0.189016,39,2021-08-13,2021-08-12,2023-05-30 00:00:00,CTOI from Sam Grunblatt; evolved star,4379,1,False,False,True -169958952,4380.01,,3,4,3,3,3,4,4,19.8,111.1,23.61,1,0,1,PC,PC,11.2211,0.006,,1,spoc,SPOC,16:49:07.59,-54:12:16.85,-0.122,1.261,-0.19,1.257,2459362.801567,0.0027104942,1.32898053137932,0.00023618466,1.81214976849192,0.26377767,2.463523,0.376276,2266.41597270069,346.50327,,,1785.1081578514,1657.81430679755,11.238585,,,5780.0,,4.438,,,,,,,,39,2021-08-13,2021-08-12,2022-12-14 12:09:24,no stellar radius; colors indicate F/G star,4380,1,False,False,True -305767364,4381.01,,3,4,4,3,3,4,4,176.3,176.7,317.0,6,0,1,PC,PC,12.2907,0.006,,1,spoc,SPOC,17:32:40.18,-64:21:10.79,-9.613,0.03,13.723,0.036,2459362.92619,0.00021118138,1.49742234616995,2.1348344e-05,2.22384262050756,0.01594842,43.558222,0.339335,39324.5082011683,312.49063,16.7115651308879,0.93622744,846.505583412267,1375.71098878902,130.13509,289.745,2.4295,5377.0,130.812,4.5569,0.0823989,0.841058015823364,0.0468091,,,0.93,0.118868,39,2021-08-13,2021-08-12,2022-12-14 12:09:24,near synchronization with stellar variability; possible secondary,4381,1,False,False,True -32460142,4382.01,,2,4,2,2,3,4,4,5.0,48.2,13.8,0,0,3,PC,PC,9.3397,0.006,,1,spoc,SPOC,17:44:40.21,-44:14:45.56,6.767,0.073,-33.981,0.06,2459363.823865,0.003794086,10.6895416703056,0.0029700985,3.64966754651451,0.6652289,0.698783,0.08217,643.395843719762,75.67829,3.78479996404716,2.0968177,281.558994970808,1044.74932962276,7.4722476,164.406,1.3145,6255.0,135.269,4.19885,0.0866151,1.45475995540619,0.0666633,,,1.22,0.179328,39,2021-08-13,2021-08-12,2022-12-14 12:09:24,1 transit at the end of an orbit,4382,1,False,False,True -384744828,4383.01,,3,4,3,3,1,4,4,84.8,100.0,317.0,0,0,0,PC,PC,9.8062,0.006,,1,spoc,SPOC,17:15:40.52,-79:38:53.46,5.045,0.034,-12.114,0.041,2459363.498874,0.0012318377,3.04213336933983,0.00026675937,1.59646853636238,0.113493025,2.232727,0.149401,2054.30502765432,137.59407,16.8899987909321,15.51775,4675.49373033325,2109.00019214408,22.833036,335.446,2.496,5715.4,211.2,3.92,0.4,2.40324997901917,0.107332,,,1.37,0.226823,39,2021-08-13,2021-08-12,2022-12-14 12:09:24,possible synchronization; v-shaped; possible odd-even,4383,1,False,False,True -259230140,4384.01,,3,4,3,3,3,4,4,6.8,53.5,30.59,1,0,1,PC,PC,9.657,0.006,,1,qlp,SPOC,14:52:46.46,-68:39:59.56,-13.388,0.039,-13.839,0.062,2459383.028423,0.004545,14.3172763,0.0001865,5.368,0.439,1.423247,0.001365,1310.0,1.25756,6.03394,0.289135,334.623,1191.0,17.0,283.585,3.343,7596.0,144.339,4.27063,0.0813654,1.61,0.06,,,1.77,0.296619,"12,38,39",2021-08-13,2021-08-19,2022-12-14 12:09:24,centroid offset is inconsistent,4384,1,False,False,True -22186226,4385.01,,3,4,3,3,3,4,4,18.6,54.5,128.32,0,0,1,PC,PC,10.6163,0.006,,1,spoc,SPOC,17:52:47.54,-45:04:58.1,2.936,0.081,-6.434,0.067,2459369.101131,0.0034185757,9.21698681818801,0.0033596181,7.48217140924505,0.3069035,2.540954,0.158124,2337.56911578056,145.62654,14.0521118951245,1.0026307,1556.91936020978,1602.08767490725,13.525689,612.688,18.0425,6840.0,132.294,3.72526,0.0949605,2.76396989822388,0.130894,,,1.48,0.270534,39,2021-08-13,2021-08-12,2022-12-14 12:09:24,evolved star,4385,1,False,False,True -350575997,4386.01,,3,4,3,3,3,4,4,15.2,84.5,29.22,4,0,1,PC,PC,9.7688,0.006,,1,spoc,SPOC,16:26:29.13,-63:27:28.36,-0.447,0.065,-8.043,0.06,2459363.255517,0.0017462706,2.01316725332523,0.00023551949,1.33941440187842,0.24370088,1.065273,0.06823,980.671748373221,62.84047,5.88532722644533,1.2339861,7795.13680537087,2396.49035217093,14.818044,351.087,5.2135,8127.0,143.048,4.24828,0.0766255,1.75075995922089,0.0595628,,,1.98,0.312867,39,2021-08-13,2021-08-12,2022-12-14 12:09:24,possible odd-even; centroid between target and other stars,4386,1,False,False,True -33350443,4387.01,,3,4,3,3,3,4,4,42.1,52.3,317.0,0,0,1,PC,PC,10.8267,0.006,,1,spoc,SPOC,17:46:59.19,-47:12:30.22,0.922,0.066,-14.672,0.055,2459364.142928,0.0013188199,3.56203053846637,0.00031200884,6.14410718002793,0.10257376,4.720635,0.107633,4338.42697937276,99.12874,16.453408561601,0.8273218,4654.12216533268,2106.58600320173,24.562016,631.098,15.5705,7042.0,134.409,3.85746,0.0842882,2.4292299747467,0.110312,,,1.55,0.246071,39,2021-08-13,2021-08-12,2022-12-14 12:09:24,Odd-even not real - due to transit at end of O1,4387,1,False,False,True -313554509,4388.01,,3,4,3,3,3,4,4,10.3,48.5,27.69,0,0,1,PC,PC,12.0996,0.006,,1,spoc,SPOC,20:10:19.69,-78:43:34.16,-2.755,0.112,-32.92,0.144,2459364.300107,0.00268205,4.47512151305838,0.00089235284,2.88308490387938,0.35964498,3.279264,0.195863,3015.75750963336,180.38002,5.70068053453087,1.6489244,277.734358046833,1041.18319964948,15.224795,284.225,5.731,5225.05,115.648,4.35079,0.0820206,1.04312002658844,0.0625251,0.259077,0.0707248,0.89,0.10724,39,2021-08-13,2021-08-12,2022-12-14 12:09:24,,4388,1,False,False,True -41387532,4389.01,,3,5,5,3,3,4,4,48.3,66.6,317.0,0,0,1,PC,APC,9.50494,0.006,,1,spoc,SPOC,17:05:45.64,-30:49:00.14,1.773,0.392,3.429,0.244,2459367.619383,0.0019503668,11.4041935130782,0.002760482,1.74789688881692,0.17056927,2.409444,0.377397,2216.71914010852,347.53546,18.1901191434675,7.189976,1064.60199472781,1456.85580386564,13.099222,330.437,25.252,6160.0,300.456,3.55136,0.117524,3.0048201084137,0.261458,,,1.172,0.187207,39,2021-08-13,2021-08-12,2022-12-14 12:09:24,V-shaped; short duration,4389,1,False,False,True -369345064,4390.01,,3,4,3,3,3,4,4,,,34.02,0,0,1,PC,PC,9.4148,0.007,,1,qlp,QLP,17:30:35.41,-52:20:12.23,-0.5,3.3,-11.8,3.0,2459378.636429,0.0012049,4.3954317,1.29e-05,1.558,0.165,0.814608,0.001574,750.0,1.44965,,,63.9493,787.0,14.0,,,5095.6,1222.5,,,,,,,,,"12,39",2021-08-19,2021-08-19,2022-12-14 12:09:24,transit slightly v-shaped; no stellar radius but likely dwarf or subdwarf from giant from temperature and parallax,4390,1,False,False,False -66620917,4391.01,,3,4,3,3,1,4,4,,,18.21,0,0,0,PC,PC,7.301,0.028,,1,qlp,QLP,15:44:16.63,-54:19:15.2,-18.4,1.4,-13.3,1.5,2459377.163409,0.0031349,5.2910096,4.57e-05,4.122,0.286,1.814695,0.001539,1670.0,1.41754,,,,,18.0,162.338,,,,,,,,,,,,"12,39",2021-08-19,2021-08-19,2022-12-14 12:09:24,known visual binary; variable star; no stellar radius/temperature; likely F star,4391,1,False,False,False -429791387,4392.01,,3,4,3,3,3,4,4,12.6,58.4,33.09,0,0,1,PC,PC,9.2752,0.006,,1,qlp,QLP,16:07:06.87,-55:46:04.81,-12.877,0.057,-15.737,0.047,2459379.961551,0.0045011,3.9693722,3.51e-05,2.005,0.679,0.619046,0.003262,570.0,3.00477,6.3435,0.529529,1088.68,1600.0,9.0,307.139,3.517,7030.0,138.3,3.86,0.09,2.43,0.1,,,1.55,0.260007,"12,39",2021-08-19,2021-08-19,2022-12-14 12:09:24,low SNR; weak BLS,4392,1,False,False,False -107440797,4393.01,,3,4,3,3,4,4,4,14.5,53.7,34.01,0,0,2,PC,PC,10.4708,0.006,,1,qlp,QLP,17:39:54.67,-31:00:37.73,2.279,0.089,-8.494,0.07,2459386.167504,0.0051826,2.2676081,0.0010669,1.671,0.377,0.955869,0.005616,880.0,5.17289,6.4197,0.588323,541.948,1344.0,10.0,359.343,7.3985,5958.0,163.5,3.87,0.08,2.0,0.1,,,1.091,0.144899,39,2021-08-19,2021-08-19,2022-12-14 12:09:24,third transit at end of orbit could be distorting odd transit shape,4393,1,False,False,False -341805908,4394.01,,3,4,3,3,3,4,4,23.8,33.7,317.0,0,0,1,PC,PC,10.3355,0.007,,1,qlp,QLP,15:58:14.73,-65:05:04.22,-3.938,0.053,-8.02,0.088,2459388.679253,0.0024354,1.488954,6.9e-06,1.816,0.265,1.03194,0.001995,950.0,1.83735,15.4738,1.5511,10232.2,2801.0,15.0,1337.35,118.615,9747.0,200.5,3.54,0.1,4.43,0.4,,,2.49,0.31699,"12,39",2021-08-19,2021-08-19,2022-12-14 12:09:24,a/Rs < 2; evolved star; orbital period close to variability period but not exact,4394,1,False,False,False -218483943,4395.01,,3,4,3,3,3,4,4,11.8,63.3,45.44,0,0,1,PC,PC,9.087,0.007,,1,qlp,QLP,17:30:04.8,-42:27:22.95,-1.479,0.085,-2.885,0.067,2459382.362267,0.0025446,3.7589382,5.21e-05,2.75,0.27,0.572334,0.001003,527.0,0.923487,7.61924,0.428898,3166.13,2089.0,9.0,483.206,12.035,9505.0,187.6,3.83,0.07,3.13,0.11,,,2.42,0.336109,"12,39",2021-08-19,2021-08-19,2022-12-14 12:09:24,evolved star; weak BLS; potential variability,4395,1,False,False,False -379723086,4396.01,,5,5,5,5,5,5,5,7.8,47.0,20.94,0,0,1,PC,FP,10.0288,0.006,,1,qlp,QLP,17:07:16.8,-66:07:37.4,27.386,0.032,-13.44,0.04,2459376.681406,0.0025169,7.4398907,4.35e-05,2.89,0.292,1.097148,0.001564,1010.0,1.44085,4.85036,0.306659,123.356,928.0,15.0,205.112,1.175,5822.0,133.5,4.14,0.08,1.45,0.07,,,1.05,0.130332,"12,39",2021-08-19,2021-08-19,2022-12-14 12:09:24,possible depth aperture correlation; systematics may be effecting TCE at ~1633 TBJD,4396,1,False,False,False -107728509,4397.01,,5,5,5,5,5,5,5,6.3,63.5,16.85,0,0,1,PC,FP,10.4304,0.011,,1,qlp,QLP,17:40:26.25,-32:07:26.71,-0.846,0.134,-5.041,0.107,2459385.728999,0.0131984,2.6646183,0.0028351,4.135,0.775,0.912402,0.003456,840.0,3.18309,4.25649,0.355755,32848.2,3750.0,9.0,458.16,17.575,11526.0,399.9,4.56,0.07,1.52,0.07,,,3.04,0.406015,39,2021-08-19,2021-08-19,2022-12-14 12:09:24,crowded field; weak signal; inconsistent stellar parameters,4397,1,False,False,True -214243287,4398.01,,3,4,3,3,1,4,4,,,74.79,1,0,0,PC,PC,9.933,0.018,,1,qlp,QLP,17:23:11.82,-51:01:27.96,5.9,2.0,-4.4,1.9,2459379.721026,0.0008257,5.7525297,2.16e-05,4.641,0.282,9.596767,0.01048,8800.0,9.65231,,,,,110.0,213.41,,,,,,,,,,,,"12,39",2021-08-19,2021-08-19,2022-12-14 12:09:24,Secondary eclipse depth may be consistent with a planet; slight depth aperture correlation; possible centroid shift; no stellar parameters,4398,1,False,False,False -464646604,4399.01,,3,4,3,3,4,4,4,10.7,122.1,9.32,1,11,4,PC,CP,7.7582,0.006,,1,spoc,SPOC/QLP,19:10:57.87,-60:16:21.49,11.569,0.045,-100.748,0.047,2459037.871491,0.0014371289,7.7121208408771,0.001126115,2.43434812621892,0.3040559,0.791231,0.081058,728.484910863131,74.65436,3.00403804267934,1.1901833,219.284125796537,981.457612771309,9.714047,58.5146,0.12605,5985.4,119.7,4.4,0.08,1.08958,0.0482412,,,1.1,0.139862,27,2021-08-26,2021-08-26,2022-12-14 12:09:24,highly variable star,4399,1,False,False,True -231630147,4400.01,TIC 231630147.01,3,4,3,3,3,4,4,49.1,74.6,317.0,3,0,1,PC,PC,11.943,0.006,,1,spoc,SPOC,21:08:38.26,-55:33:54.58,3.471,0.045,-21.988,0.045,2459038.946551,0.0018371987,7.06730864498414,0.0009928533,3.7698983685744,0.11289774,12.420005,0.428475,11374.0675653418,394.56216,19.8612190297399,1.1420913,473.908396331833,1189.99010559024,28.796797,534.436,8.3535,5478.8,5470.4,4.4,2.0,1.63563,0.0853693,,,1.01,0.130448,27,2021-08-27,2021-08-26,2022-12-14 12:09:24,large; evolved star; Gaia RV error 3.3 km/s,4400,1,False,False,True -178170828,4401.01,,2,4,2,2,4,4,4,5.1,41.7,3.55,0,1,2,PC,PC,11.0876,0.006,,1,spoc,SPOC,02:52:32.78,-30:12:23.72,-9.595,0.039,-88.167,0.045,2459116.209945,0.0018445514,0.45026401558072,3.4460143e-05,1.18715660706544,0.37119496,0.35987,0.043328,331.397458273476,39.905834,1.70327986096932,2.363301,4762.26491302356,2118.71790702615,7.4181905,180.524,1.0295,5366.0,124.174,4.49884,0.0816531,0.898717999458313,0.0486834,,,0.929,0.124495,"30,31",2021-08-27,2021-08-26,2022-12-14 12:09:24,potential L1 planet; low SNR,4401,1,False,False,True -197807778,4402.01,,2,4,2,2,3,4,4,1.9,24.9,3.41,0,1,1,PC,PC,9.8429,0.006,,1,spoc,SPOC,03:34:01.15,-54:22:00.44,22.201,0.039,-43.72,0.051,2458355.491365,0.0023837471,3.69899353652044,2.8973851e-05,3.17143653174804,0.6214126,0.21998,0.025767,202.588731409507,23.731989,1.6638173067846,2.1987064,600.252642117167,1262.41826575007,8.069374,151.543,0.485,5811.0,126.011,4.33357,0.0762952,1.15017998218536,0.0527035,,,1.04,0.130963,"2,3,4,29,30,31",2021-08-27,2021-08-05,2022-12-14 12:09:24,weak signal; inconsistent centroid offsets,4402,1,False,False,True -350931281,4403.01,,1,4,1,1,3,4,4,3.1,22.0,11.47,0,1,1,PC,PC,10.7888,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,06:02:50.43,-55:31:58.55,-3.205,0.044,41.745,0.039,2459036.767189,0.005223525,4.46198493646721,0.00011995585,4.73775540309205,0.35870674,0.314092,0.022814,289.24731761966,21.011951,3.39484515664209,0.31856337,1062.13337516086,1456.01052217969,13.284815,339.264,2.196,5515.2,119.3,3.91,0.37,1.72395002841949,0.0832236,,,1.06,0.13089,"27,28,29,30,31,32,33,34,35,36,37,38,39",2021-08-27,2022-03-21,2022-12-14 12:09:24,potential L1 planet; 2 sectors show significant centroid offsets not centered on other stars,4403,1,False,False,True -342314656,4404.01,,3,4,3,3,3,4,4,19.7,50.3,317.0,2,0,1,PC,PC,10.7108,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,08:14:54,-57:25:59.08,26.113,0.042,-46.355,0.041,2459248.474955,0.0015775136,39.6244592625923,0.0012341411,2.01981823985484,0.14646664,4.908493,0.290423,4510.68520781399,267.4538,16.7643990501049,18.898289,48.5323771880514,673.174475477684,22.203856,286.115,1.734,5869.0,129.109,4.07271,0.0811518,1.56795001029968,0.0765428,,,1.06,0.142834,"34,35,36,37",2021-08-27,2022-03-21,2022-12-14 12:09:24,possible secondary at QLP at phase=0.25 ruled out by later SPOC data,4404,1,False,False,True -177254988,4405.01,,1,4,1,1,3,4,4,1.9,23.5,6.4,2,0,1,PC,PC,12.3813,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,06:46:22.88,-75:26:38.86,41.801,0.021,44.798,0.03,2459039.642486,0.0025693679,5.92138229999501,6.17144e-05,2.04127153863214,0.36069018,1.354585,0.098047,1246.84139105419,90.30015,2.40798872142933,1.7765304,48.1563231539408,671.866642897789,13.1057205,155.501,0.309,4361.0,128.258,4.59663,0.103323,0.687025010585785,0.0593969,,,0.68,0.0812134,"27,28,29,30,31,33,34,35,36,37,38,39",2021-08-27,2022-03-21,2022-12-14 12:09:24,small star multi,4405,1,True,False,True -177254988,4405.02,,1,4,1,1,3,4,4,2.1,3.0,2.43,2,0,1,PC,PC,12.3813,0.006,,2,spoc-s01-s39-b0A-PC,SPOC,06:46:22.88,-75:26:38.86,41.801,0.021,44.798,0.03,2459036.822498,0.0020719988,1.09293799367413,1.9145888e-05,1.62886236878345,0.27481946,0.412515,0.050912,379.868607966067,46.890705,1.36072893196707,1.5337285,458.236933795706,1180.0278904076,7.886687,155.501,0.309,4361.0,128.258,4.59663,0.103323,0.687025010585785,0.0593969,,,0.68,0.0812134,"27,28,29,30,31,33,34,35,36,37,38,39",2022-03-24,2022-03-24,2022-12-14 12:09:24,possible multi,4405,2,True,False,True -206541859,4406.01,TIC 206541859.01,3,5,5,3,4,4,4,13.1,77.2,98.34,3,2,1,PC,CP,10.5663,0.006,,1,spoc,SPOC,01:12:11.64,-56:55:31.39,34.476,0.04,19.112,0.037,2459064.118993,0.0016191426,30.0817796692668,0.0022749586,3.93425598225312,0.12023673,5.865434,0.177832,5387.69877791119,163.77551,12.0155026293519,0.67605656,58.0097915362197,703.87424703329,34.010437,261.834,1.738,5906.5,126.206,4.16721,0.0781693,1.41293001174927,0.0729724,-0.07,0.1,1.07,0.131212,"28,29",2021-08-27,2021-08-26,2022-12-21 00:00:00,Warm Jupiter Candidate,4406,1,False,False,True -207238953,4407.01,,2,4,2,2,3,4,4,2.9,31.5,9.16,2,0,3,PC,PC,10.9015,0.006,,1,spoc,SPOC,03:20:52.75,-56:04:18.19,45.882,0.05,11.012,0.045,2459089.903814,0.0030946187,7.13629664876648,0.0004912646,1.94589428465776,0.64879745,0.897378,0.115229,826.174169379508,106.12429,2.97445542684086,3.3181157,170.512030598776,921.634038678938,8.018326,199.286,0.9925,5559.0,130.709,4.41401,0.0813556,1.01775002479553,0.0521809,,,0.98,0.124674,"29,30,31",2021-08-27,2021-08-26,2022-12-14 12:09:24,low SNR L1 candidate,4407,1,False,False,True -260189643,4408.01,,1,4,1,1,1,4,4,4.4,30.1,8.98,3,0,0,PC,PC,13.2896,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,06:12:43.35,-57:18:51.87,-16.392,0.027,56.681,0.03,2459036.340571,0.0009855154,2.0542479490676,1.3854801e-05,1.08934891069564,0.30065382,2.214725,0.15801,2037.75792067386,145.52219,2.93946754349547,2.7402215,182.765282535057,937.763176435983,13.779928,234.682,0.8225,4389.0,122.0,4.64365,,0.655595004558563,,,,0.69,,"27,28,29,30,31,32,34,35,36,37,38,39",2021-08-27,2022-03-21,2022-12-14 12:09:24,,4408,1,False,False,True -382200986,4409.01,TIC 382200986.01,3,4,3,3,3,4,4,0.8,44.4,46.71,9,1,1,PC,PC,11.8911,0.006,,1,spoc-s01-s39-b0A-PC,SPOC,05:27:16.48,-54:56:45.95,-6.307,0.05,17.58,0.047,2459076.346853,0.0013032816,92.4922760109321,0.0007927904,6.89752266269092,0.13015375,12.495024,0.198872,11442.3745247381,183.15143,7.75491247076896,0.5162126,2.04654202905809,305.052730424775,55.7121,179.419,0.7355,4930.5,39.1,,,0.73200798034668,0.0451131,,,0.81,0.0943649,"27,28,30,31,32,33,34,36,37,38,39",2021-08-27,2022-03-22,2022-12-14 12:09:24,,4409,1,False,False,True -366484980,4411.01,,2,5,5,2,5,4,5,2.2,29.2,7.9,0,5,9,KP,KP,9.15722,0.006,,1,qlp-s46-tois,SPOC,08:27:35.24,11:40:02.69,-24.887,0.094,-14.026,0.059,2459575.434353,0.0024186,13.7748217,1.76e-05,4.473,0.652,0.33663,3.6e-05,310.0,0.0327823,2.72859,0.134177,212.836,1064.0,27.0,160.125,1.503,6266.98,136.509,4.19069,0.0903409,1.47,0.07,-0.082,0.028,1.221,0.184102,"7,34,44,45,46",2021-08-27,2022-03-11,2022-12-14 12:09:24,K2-330 b,4411,1,False,False,True -35315453,4412.01,,3,4,3,3,3,4,4,13.0,57.1,31.69,0,0,1,PC,PC,10.2956,0.006,,1,qlp,QLP,16:39:14,-52:05:59.42,9.666,0.115,5.64,0.069,2459382.69012,0.0041369,2.0341258,2.7e-05,3.658,0.493,1.108016,0.001576,1020.0,1.45115,6.17442,0.400771,5515.59,2400.0,13.0,389.597,10.237,6849.0,129.9,3.99,0.09,2.05,0.1,,,1.48,0.259407,"12,39",2021-08-27,2021-08-26,2022-12-14 12:09:24,crowded field; weak transit shape,4412,1,False,False,False -142019343,4413.01,,2,4,2,2,3,4,4,1.1,4.1,1.27,0,1,1,PC,PC,9.6256,0.006,,1,qlp-s63-ffi,QLP,06:28:54.69,-73:19:36,-4.277,0.038,88.346,0.04,2460038.018186,0.0048924,4.4719842,1.99e-05,2.523,0.554,0.178075,0.013534,164.0,12.4656,1.07281,0.0791994,223.062,1076.0,13.0,92.9715,0.17795,5364.0,118.0,4.5,0.08,0.89,0.05,,,0.93,0.116604,"1,3,4,5,6,7,8,9,10,11,13,27,28,29,30,31,33,34,35,36,37,38,39,61,62,63",2021-08-27,2023-05-11,2023-06-16 12:14:51,variable host,4413,1,False,False,True -1405997635,4414.01,,5,5,5,5,5,5,5,,,29.46,1,0,1,PC,FP,10.3147,0.119,,1,qlp,QLP,17:49:54.05,-37:31:52.74,,,,,2459385.39488,0.0044289,1.8697825,0.0006838,2.721,0.264,3.196766,0.003926,2940.0,3.61625,,,,,13.0,,,,,,,,,,,,,39,2021-08-27,2021-08-26,2022-12-14 12:09:24,centroid offset but not onto another star; weak transit shape; no stellar information,4414,1,False,False,False -1234810324,4415.01,,3,4,3,3,3,4,4,,,317.0,0,0,1,PC,PC,10.0209,0.007,,1,qlp,QLP,16:28:23.61,-49:30:50.95,4.882,0.116,-1.123,0.061,2459385.695057,0.0014792,1.8303538,0.000191,1.971,0.061,3.414575,0.001542,3140.0,1.42039,,,,,36.0,455.557,13.5835,,,,,,,,,,,39,2021-08-27,2021-08-26,2022-12-14 12:09:24,no stellar information; visual binary; crowded field,4415,1,False,False,False -79605791,4416.01,,3,4,3,3,3,4,4,58.1,75.5,317.0,1,0,1,PC,PC,9.5378,0.006,,1,qlp,QLP,16:47:07.2,-39:56:50.31,-13.477,0.078,-41.327,0.056,2459378.525751,0.0009546,9.3305377,2.14e-05,5.232,0.11,6.108129,0.000846,5610.0,0.779648,15.2895,0.739889,299.515,1158.0,66.0,236.604,2.565,6238.0,137.4,3.94,0.08,1.96,0.09,,,1.21,0.175858,"12,39",2021-08-27,2021-08-26,2022-12-14 12:09:24,Large planet candidate,4416,1,False,False,False -208297760,4417.01,,1,4,1,1,3,4,4,10.2,105.6,8.79,4,1,1,PC,PC,9.3456,0.006,,1,qlp,QLP,16:17:52.13,-54:09:59.32,-107.969,0.055,-48.958,0.045,2459382.714035,0.002699,5.2574854,3.15e-05,2.05,0.387,1.358019,0.002264,1250.0,2.08509,2.88855,0.229326,69.4717,804.0,13.0,56.8503,0.12805,4846.0,123.1,4.57,0.09,0.76,0.05,,,0.79,0.0949626,"12,39",2021-08-27,2021-08-26,2022-12-14 12:09:24,,4417,1,False,False,False -295593712,4418.01,,2,4,2,2,3,4,4,2.5,38.8,5.01,0,0,1,PC,PC,10.0819,0.006,,1,qlp,QLP,18:15:23.12,-68:35:42.91,42.936,0.034,3.603,0.041,2459388.367541,0.002936,7.6247981,5.54e-05,1.938,0.191,0.662501,0.001649,610.0,1.51903,2.09235,0.16074,38.5805,694.0,10.0,101.606,0.316,5343.0,132.0,4.58,0.09,0.82,0.05,,,0.92,0.11823,"13,39",2021-08-27,2021-08-26,2022-12-14 12:09:24,Potential additional single transit at 2365.5 TBJD; low SNR,4418,1,False,False,True -352229268,4419.01,,2,4,2,2,3,4,4,1.3,24.0,6.45,1,1,1,PC,PC,10.3468,0.006,,1,qlp,QLP,19:13:57.35,-76:05:21.55,19.248,0.036,-56.693,0.04,2459365.246873,0.0068199,16.155134,0.0002826,3.528,0.439,0.640773,0.001986,590.0,1.82875,2.42196,0.193266,39.0235,696.0,10.0,163.32,0.7415,5785.0,133.7,4.45,0.08,1.01,0.05,,,1.04,0.134795,"13,27,39",2021-08-27,2021-08-26,2022-12-14 12:09:24,Slight depth-aperture correlation. Low-SNR candidate.,4419,1,False,False,True -362709886,4420.01,,3,4,3,3,3,4,4,140.4,201.3,317.0,1,0,1,PC,PC,9.550201,0.006,,1,qlp,QLP,16:27:11.91,-69:20:38.53,4.587,0.036,13.679,0.046,2459386.781009,0.0005036,4.7259465,4.9e-06,2.978,0.235,7.24426,0.17705,6650.0,163.056,19.3465,2.7441,1388.33,1700.0,115.0,230.661,1.5785,6203.0,124.8,3.98,0.08,1.86,0.08,,,1.19,0.172051,"12,39",2021-08-27,2021-08-26,2022-12-14 12:09:24,Large planet candidate. V-shaped. Secondary seen is only 500 ppm so may still be planetary. Gaia RV error is only 500 m/s.,4420,1,False,False,True -141412823,4421.01,,5,5,5,5,5,5,5,1.2,13.8,10.96,2,1,1,PC,FP,10.4078,0.006,,1,qlp,QLP,05:36:56.93,-75:36:41.12,-8.2,0.039,14.166,0.048,2459370.461327,0.0081913,21.7008057,0.0003078,9.387,2.917,0.32577,0.001189,300.0,1.09519,3.29698,0.257224,492.038,1312.0,17.0,300.427,2.0575,5788.7,164.7,4.22,0.12,1.78,0.08,-0.134461,0.0482678,1.08,0.144515,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,34,35,36,37,38,39",2021-08-27,2021-08-26,2022-12-14 12:09:24,some depth-aperture correlation; some odd-even,4421,1,False,False,False -263748033,4422.01,,3,4,3,3,3,4,4,67.7,103.5,317.0,1,0,1,PC,PC,9.944,0.007,,1,qlp,QLP,18:00:12.28,-31:36:30.94,-2.563,0.107,-9.978,0.083,2459383.280147,0.0017139,4.9082538,1.95e-05,4.381,0.387,7.998695,0.004534,7340.0,4.1764,15.8039,0.690069,2285.85,1926.0,30.0,359.619,8.348,7995.0,142.5,4.2,0.08,1.83,0.06,,,1.93,0.292087,"13,39",2021-08-27,2021-08-26,2022-12-14 12:09:24,Large planet candidate. Crowded field. Potential slight depth-aperture correlation.,4422,1,False,False,False -344600402,4423.01,,5,5,5,5,5,5,5,13.5,78.3,13.44,1,0,1,PC,FP,10.4425,0.006,,1,qlp,QLP,16:48:07.46,-56:41:12.39,-7.245,0.058,-15.389,0.055,2459385.015588,0.0032492,1.3875331,9.7e-06,2.372,0.411,1.238445,0.002254,1140.0,2.07593,3.73939,0.261331,2514.14,1972.0,18.0,182.238,1.485,5678.0,131.9,4.33,0.08,1.14,0.06,,,1.01,0.120539,"12,39",2021-08-27,2021-08-26,2022-12-14 12:09:24,small centroid offset,4423,1,False,False,False -326386495,4424.01,,2,4,2,2,3,4,4,1.3,40.2,4.62,1,0,3,PC,PC,9.8496,0.006,,1,qlp,QLP,17:52:58.66,-48:33:47.09,-56.272,0.086,-172.215,0.067,2459383.797001,0.0047292,17.7424733,0.0002131,3.082,0.328,0.955869,0.002322,880.0,2.13818,2.00179,0.158804,12.8216,527.0,11.0,67.266,0.23755,4926.2,109.6,4.67,0.08,0.69,0.04,0.0384604,0.0556267,0.81,0.0915571,"13,39",2021-08-27,2021-08-26,2022-12-14 12:09:24,weak BLS,4424,1,False,False,False -106940971,4425.01,,3,4,3,3,3,4,4,49.1,177.7,63.73,0,0,1,PC,PC,9.3777,0.006,,1,qlp,QLP,17:39:21.95,-35:23:30.55,2.115,0.084,-19.12,0.065,2459385.73448,0.0011464,5.412802,1.24e-05,4.168,0.108,4.199051,0.001317,3860.0,1.21307,9.28727,0.438673,673.425,1419.0,13.0,175.367,1.526,6468.0,134.0,4.22,0.09,1.47,0.06,,,1.32,0.207078,"12,39",2021-08-27,2021-08-26,2022-12-14 12:09:24,,4425,1,False,False,False -271354351,4426.01,TIC 271354351.01,5,5,5,5,5,5,5,21.0,23.6,317.0,0,0,3,KP,KP,14.5787,0.008,,1,spoc-s14-s55-b0A-KP,SPOC,19:39:27.71,46:17:08.93,-2.343,0.039,-1.073,0.041,2459422.126663,0.004410522,3.90512604052311,3.592987e-05,2.91369187252647,0.25234547,25.874893,1.482339,23549.92598876,1364.353,14.5499430574445,1.0240471,300.156973844499,1061.59009832148,16.358217,914.699,17.1675,5381.0,25.0,4.45342,,0.947475016117096,,0.11,0.1,0.93,,"40,41,54",2021-09-09,2023-03-15,2023-03-24 12:12:10,Kepler-71 b/KOI-217 b,4426,1,False,False,True -207339000,4427.01,TIC 207339000.01,3,4,4,3,3,4,4,77.8,233.5,118.34,5,15,1,PC,PC,11.3427,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,09:00:11.82,72:08:51.89,37.526,0.032,-19.985,0.035,2459940.464211,0.0003679859,4.61826314544925,2.950908e-06,2.70086372131813,0.017135521,22.253508,0.107911,20287.6182680282,99.38516,13.3976161718627,0.77745295,204.812152275735,964.847508941066,202.18034,198.251,0.9255,5328.0,136.083,4.50337,0.0818582,0.889217972755432,0.0514397,,,0.919,0.113044,"14,20,40,47,53,60",2021-09-09,2023-05-25,2023-06-16 12:14:51,,4427,1,False,False,True -271042217,4428.01,TIC 271042217.01,5,5,5,5,5,5,5,28.1,25.3,317.0,0,2,4,KP,KP,13.9174,0.008,,1,spoc-s14-s55-b0A-KP,SPOC,19:38:03.18,45:58:53.92,3.037,0.041,2.999,0.046,2459770.501306,0.0027508193,1.85557453747958,1.134596e-05,2.31217424982159,0.1818484,11.886364,0.579822,10888.037726098,533.8932,14.8951809056988,1.1898398,2077.52915911932,1721.89447123286,17.988153,1093.08,27.0,5651.75,122.545,4.13988,,1.40959000587463,,0.314793,0.0135153,1.0,,"40,54",2021-09-09,2023-03-15,2023-03-24 12:12:10,Kepler-41 b,4428,1,False,False,True -233188747,4429.01,TIC 233188747.01,3,4,3,3,1,4,4,36.8,97.4,109.7,5,0,0,PC,PC,12.7714,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,15:02:21.51,70:56:58.54,4.614,0.035,-16.482,0.028,2459939.613796,0.0011661723,3.45056575263354,5.0336103e-06,3.03976984403281,0.035425954,16.458636,0.127986,15044.6453236768,117.87247,12.8140087264771,0.70176715,432.635072592473,1163.18871599656,125.780205,461.898,3.5425,5402.0,121.807,4.37462,0.082245,1.04300999641418,0.0557789,,,0.94,0.116914,"14,15,16,20,21,22,40,41,47,48,49,60",2021-09-09,2023-05-26,2023-06-16 12:14:51,,4429,1,False,False,True -362222177,4430.01,,3,4,3,3,3,4,4,14.9,43.0,101.61,0,0,1,PC,PC,12.8668,0.009,,1,qlp-s52-tois,SPOC,19:06:43.24,78:34:44.91,6.71,0.025,26.91,0.027,2459884.031242,0.003078278,6.6363577,1.69e-05,6.385,0.275,8.140894,0.001459,7470.0,1.34344,12.2701,0.695633,543.643,1345.0,47.0,665.068,6.579,5490.0,133.259,4.09312,0.0799201,1.46,0.08,,,0.96,0.121869,"14,17,18,19,20,21,23,24,25,26,40,41,47,48,50,51,52,53,54,57,58",2021-09-09,2023-03-22,2023-04-05 00:00:00,,4430,1,False,False,True -121660904,4431.01,,5,5,5,5,5,5,5,29.3,37.3,317.0,0,4,3,KP,KP,12.4532,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,19:14:19.56,41:05:23.04,-2.956,0.05,-20.95,0.042,2459422.843797,0.0025892977,4.88548438505688,1.8391755e-05,5.23339846253327,0.09878528,7.636872,0.124586,7009.1394982708,114.74143,18.175955703371,1.1472291,1459.35473008334,1576.37655495102,46.606422,922.562,20.172,5974.0,149.111,3.84282,0.0854445,2.08121991157532,0.126088,0.17,0.1,1.1,0.139516,"40,41,54,55",2021-09-09,2023-03-15,2023-03-24 12:12:10,Kepler-7 b,4431,1,False,False,True -198610218,4432.01,,3,4,4,3,3,4,4,254.9,337.3,317.0,2,0,2,PC,PC,12.5386,0.007,,1,spoc-s54-b0A,SPOC,18:05:13.97,47:54:40.4,8.539,0.044,-18.755,0.042,2459771.229475,0.0004978641,3.04133912218329,0.00010709683,1.51499617977316,0.04369181,30.438413,0.808009,27645.4859583292,743.9272,25.347110723505,12.725472,201.631837885463,961.079971331501,46.253414,209.435,0.9585,4034.0,123.647,4.21431,0.117701,1.02777004241943,0.101359,,,0.631,0.0797871,"40,53,54",2021-09-09,2022-10-11,2022-12-14 12:09:24,probably too large but large radius error; v-shaped; not synchronized with underlying short period variability; some odd-even,4432,1,False,False,True -158551257,4433.01,TIC 158551257.01,5,5,5,5,5,5,5,17.1,48.3,50.04,0,0,0,EB,FP,14.2502,0.008,,1,spoc-s14-s55-b0A-PC,SPOC,19:10:16.93,43:31:54.15,-8.984,2.119,-9.457,2.119,2459797.231728,0.0037624245,0.902395084078124,6.070394e-06,1.6045864918787,0.120528,5.862584,0.385014,5385.08710911813,354.54797,,,2991.07336493308,1886.15125079248,17.45898,833.364,,5780.0,,4.438,,,,,,,,"40,41,53,54,55",2021-09-09,2023-02-23,2023-02-25 12:10:55,KOI 6918.01; no stellar radius; SPOC assuming solar stellar parameters; KOI 6918.01; in Kepler EB catalog,4433,1,False,False,True -63452790,4434.01,TIC 63452790.01,5,5,5,5,5,5,5,31.3,78.7,127.13,0,2,1,KP,KP,13.814,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,19:31:25.37,46:23:28.28,-2.007,0.041,3.755,0.045,2459392.813554,0.00095980114,2.68430809910922,1.0812647e-05,2.76833520837019,0.11968497,19.953402,0.720369,18209.9206621422,663.26434,13.9748498833302,0.5327162,651.25574962292,1288.42054731749,23.728523,758.753,12.76,5616.02,121.761,4.4174,,1.01894998550415,,0.0914204,0.0128958,0.99,,"40,41,54,55",2021-09-09,2023-03-15,2023-03-24 12:12:10,Kepler-423 b,4434,1,False,False,True -122596693,4435.01,TIC 122596693.01,5,5,5,5,5,5,5,20.8,61.4,99.81,0,2,1,KP,KP,14.6147,0.007,,1,spoc-s14-s55-b0A-PC,SPOC,19:22:19.62,40:34:38.32,1.317,0.056,-15.867,0.059,2459420.667731,0.0034090423,3.52565351438726,1.5917218e-05,2.51117989194966,0.13922079,26.244978,0.919841,23882.7029386148,846.8462,12.1210085786135,0.63119096,189.762183994091,946.612351915502,26.39653,686.284,15.431,5003.05,263.03,4.56877,,0.783767998218536,,0.318,0.251,0.83,,"40,41,54,55",2021-09-09,2023-03-15,2023-03-24 12:12:10,Kepler-428 b,4435,1,False,False,True -420268415,4436.01,TIC 420268415.01,3,4,3,3,3,4,4,92.9,118.0,317.0,12,2,1,PC,PC,11.8931,0.011,,1,spoc-s14-s60-b0A-PC,SPOC,20:33:42.38,87:00:33.58,1.679,0.033,6.066,0.038,2459767.611028,0.0002523,1.75905659356417,9.935828e-07,3.53492636357836,0.018699536,11.460477,0.058516,10499.9757194427,53.89361,20.9577863811502,0.9638307,5910.48550153599,2236.27669892903,191.13959,621.061,7.1225,6250.0,136.01,3.91912,0.082032,1.99925005435944,0.0914069,,,1.21,0.169129,"18,19,20,25,26,40,47,52,53,59,60",2021-09-09,2023-05-19,2023-06-16 12:14:51,evolved host star; secondary consistent with inflated planet,4436,1,False,False,True -237205154,4437.01,TIC 237205154.01,3,4,3,3,1,4,4,30.5,44.7,317.0,1,0,0,PC,PC,13.0024,0.007,,1,qlp-s52-tois,SPOC,19:34:19.97,76:39:39.91,-1.687,0.024,2.752,0.023,2459915.163041,0.0014526442,5.8929985,6.2e-06,3.788,0.063,19.555448,0.001799,17850.0,1.6565,16.0223,,342.766,1198.0,85.0,686.482,5.6115,6182.0,122.0,4.3753,,1.17,,,,1.18,,"14,16,17,18,19,20,21,23,24,40,41,47,49,50,51,52,59",2021-09-09,2023-03-16,2023-03-24 12:12:10,warm Jupiter candidate,4437,1,False,False,True -22233480,4438.01,,1,4,4,1,4,4,4,3.4,94.7,6.38,3,0,5,PC,PC,11.2695,0.007,,1,spoc-s14-s55-b0A-PC,SPOC,18:01:16.14,35:35:41.64,29.109,0.043,-571.47,0.049,2459396.409578,0.00075457105,7.44630337680409,2.3020093e-05,2.00331377616967,0.15890975,4.401499,0.139295,4045.72417847442,128.28719,2.40486443504248,0.3086393,5.62861139341486,392.843947064714,23.146442,30.0346,0.0233,3353.0,157.0,4.84911,0.00161128,0.375858992338181,0.0111301,,,0.363996,0.0201927,"40,52,53",2021-09-09,2023-03-09,2023-05-24 00:00:00,potential L1 planet,4438,1,False,False,True -267545252,4439.01,TIC 267545252.01,3,4,3,3,1,4,4,26.1,71.1,113.31,2,0,0,PC,PC,13.8686,0.007,,1,spoc-s14-s41-b0A-PC,SPOC,18:57:07.4,48:32:16.5,-15.115,0.035,-31.524,0.04,2459420.207144,0.0018298243,3.37923577236328,0.0001425314,2.89939282277579,0.100816555,20.586827,0.499094,18782.5364498631,459.57657,13.0595620252972,0.417089,395.451868805711,1137.34744840415,32.16667,714.501,9.423,5529.0,122.0,4.47066,,0.948616981506348,,,,0.97,,"40,41",2021-09-09,2022-03-28,2022-12-14 12:09:24,warm Jupiter candidate,4439,1,False,False,True -164786087,4440.01,TIC 164786087.01,5,5,5,5,5,5,5,16.2,49.8,104.62,0,0,1,KP,KP,14.6979,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,18:59:19.31,44:39:29.14,-4.972,2.12,-10.392,2.12,2459391.084226,0.0017519436,4.08228938921105,2.5357342e-05,3.28825567874917,0.1811264,18.047504,0.715166,16484.9762857776,658.4754,,,399.77685060144,1140.44451330859,22.862934,1071.8,,5780.0,,4.438,,,,,,,,"40,41,53,54,55",2021-09-09,2023-03-15,2023-03-24 12:12:10,Kepler-723 b; no stellar radius,4440,1,False,False,True -23982469,4441.01,,3,4,4,3,3,4,4,54.6,87.4,317.0,1,1,1,PC,PC,11.0477,0.008,,1,spoc-s54-b0A,SPOC,18:24:29.65,32:03:55.41,3.317,0.046,5.397,0.047,2459772.037311,0.002108498,4.37537136070917,0.00069592276,4.87018139079166,0.11626154,8.660661,0.20124,7945.03381793976,185.33183,18.6732609775877,0.84553623,2658.98014959906,1831.46457748674,25.561268,627.308,10.7765,7305.0,134.849,4.05424,0.0877405,1.99827003479004,0.0832713,,,1.65,0.28548,"40,53,54",2021-09-09,2022-10-06,2023-05-06 00:00:00,pulsating host star,4441,1,False,False,True -446158352,4442.01,TIC 446158352.01,3,4,3,3,3,4,4,19.3,25.5,317.0,2,0,1,PC,PC,13.4835,0.008,,1,qlp-s52-tois,SPOC,05:55:01.13,82:53:20.44,-1.113,0.024,-4.741,0.027,2459910.394832,0.0035648686,4.0434287,1.7e-05,3.388,0.244,9.772041,0.006271,8960.0,5.77609,16.7752,,827.311,1494.0,24.0,1435.21,32.68,6557.0,122.0,4.08473,,1.75,,,,1.36,,"19,20,25,40,47,52",2021-09-09,2023-03-16,2023-03-24 12:12:10,large Rp,4442,1,False,False,True -158241252,4443.01,TIC 158241252.01,2,4,2,2,4,4,4,8.3,96.5,3.61,1,2,5,PC,PC,7.9147,0.006,,1,spoc-s14-s41-b0A-PC,SPOC,18:17:04.48,21:54:34.37,-50.671,0.027,26.134,0.052,2459415.15198,0.0028258,1.84985667758623,1.4782097e-05,2.51827597573564,0.18107398,0.212185,0.016422,195.41024981131,15.124655,1.71932648175135,0.13466027,1194.21036538013,1499.30489419919,12.050691,56.0739,0.09555,5834.0,128.702,4.44433,0.0782619,1.01733005046844,0.0490452,,,1.05,0.138412,"26,40",2021-09-09,2022-03-28,2022-12-14 12:09:24,potential L1 planet; inconsistent centroid between sectors; bright host; possible multi,4443,1,True,False,True -158241252,4443.02,,1,4,4,1,4,4,4,4.7,75.6,5.54,1,2,5,PC,PC,7.9147,0.006,,2,spoc-s14-s41-b0A-PC,SPOC,18:17:04.48,21:54:34.37,-50.671,0.027,26.134,0.052,2459393.257825,0.0028969399,10.3088724146951,8.475257e-05,2.27636446317493,0.26711896,0.404327,0.035778,372.329580210404,32.95236,2.21228410464763,0.36691362,120.869500012587,845.666118462505,9.93305,56.0739,0.09555,5834.0,128.702,4.44433,0.0782619,1.01733005046844,0.0490452,,,1.05,0.138412,"26,40",2021-10-21,2022-03-28,2022-12-14 12:09:24,possible multi; bright host,4443,2,True,False,True -158167408,4444.01,TIC 158167408.01,3,4,3,3,3,4,4,13.9,43.4,104.07,1,1,2,PC,PC,13.5728,0.006,,1,spoc-s14-s41-b0A-PC,SPOC,19:03:53.22,42:32:44.25,-5.832,0.03,-18.29,0.034,2459423.780179,0.004336454,5.24106591022248,0.000490104,3.01136962271952,0.22965385,9.75791,0.546073,8947.10152963645,502.82495,12.4231452813601,0.94127536,528.75002727241,1223.01659580065,13.880108,989.963,16.669,6064.0,122.0,4.27292,,1.28561997413635,,,,1.13,,"40,41",2021-09-09,2022-02-15,2022-12-14 12:09:24,KOI 3689.01,4444,1,False,False,True -158388163,4445.01,TIC 158388163.01,5,5,5,5,5,5,5,11.5,43.7,58.91,0,5,3,KP,KP,13.4584,0.007,,1,spoc-s14-s55-b0A-PC,SPOC,19:08:31.34,42:21:00.55,-4.248,0.027,-3.627,0.028,2459394.539688,0.0012635565,4.2253498253575,2.2081951e-05,2.76952973787251,0.16871645,7.890216,0.325123,7240.8152367186,299.4049,8.88931966041412,0.6742691,342.301404572149,1097.03862802266,23.187595,630.785,6.368,5501.0,122.0,4.39363,,1.03121995925903,,,,0.96,,"40,41,53,55",2021-09-09,2023-03-15,2023-03-24 12:12:10,Kepler-491 b,4445,1,False,False,True -137899948,4446.01,,5,5,5,5,5,5,5,38.9,88.5,112.32,0,3,5,KP,KP,14.9826,0.008,,1,spoc-s14-s55-b0A-KP,SPOC,19:31:29.5,41:03:51.02,4.635,0.071,-21.579,0.083,2459420.803667,0.002000892,2.45523883411541,8.146201e-06,1.73232709193372,0.09519274,49.003104,1.744048,44130.1605859296,1605.0383,12.9928630508023,0.65082085,77.5068034819799,756.753966741099,27.592943,381.949,6.3825,3792.0,157.0,4.63873,0.0126343,0.61482298374176,0.0197802,,,0.600017,0.0211568,"40,41,54,55",2021-09-09,2023-03-15,2023-03-24 12:12:10,Kepler-45 b,4446,1,False,False,True -153937417,4447.01,TIC 153937417.01,3,4,3,3,1,4,4,25.1,84.3,72.29,2,0,0,PC,PC,13.5868,0.006,,1,spoc-s14-s41-b0A-PC,SPOC,11:31:29.35,71:04:53.35,-57.1,0.032,-26.226,0.029,2459608.48447,0.001835017,4.15968372862564,0.00017019654,2.59732024705193,0.09320818,19.611248,0.514081,17900.4756513958,473.3737,10.0262442755454,0.30725962,74.5819100390723,749.511196543399,29.467,268.37,1.286,4230.0,122.0,4.55383,,0.711036026477814,,,,0.66,,"40,41,47,48",2021-09-09,2022-03-30,2022-12-14 12:09:24,warm Jupiter candidate,4447,1,False,False,True -138359318,4448.01,,5,5,5,5,5,5,5,179.9,245.5,317.0,0,0,0,KP,KP,14.956,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,19:34:55.87,36:48:55.78,0.142,2.123,-0.954,2.123,2459769.924018,0.002113991,1.01869894431387,3.8931075e-06,1.4947874563752,0.06945683,104.257747,3.438477,91558.6353269076,3161.9446,,,2544.65094923811,1811.4518899572,27.87013,,,5780.0,,4.438,,,,,,,,"40,41,54,55",2021-09-09,2023-03-15,2023-03-24 12:12:10,WTS-2 b; K dwarf host; no stellar radius,4448,1,False,False,True -322046084,4449.01,,3,4,4,3,4,4,4,95.8,246.6,112.47,7,2,3,PC,PC,10.3446,0.006,,1,qlp,SPOC/QLP,18:33:18.25,25:23:42.57,6.43,0.029,-19.931,0.041,2459413.789549,0.0003444,2.7518942,8.82e-05,1.259,0.151,10.659801,0.003585,9770.0,3.30194,12.9899,0.655784,209.138,1059.0,127.0,213.604,1.191,5856.0,131.0,4.25,0.07,1.28,0.06,,,1.058,0.127536,40,2021-09-09,2021-11-23,2023-07-04 00:00:00,v-shaped,4449,1,False,False,True -373017346,4450.01,,3,4,3,3,3,4,4,4.0,40.4,15.13,0,2,3,PC,PC,10.5801,0.006,,1,qlp-s52-tois,SPOC,20:24:33.08,87:04:16.16,45.004,0.04,78.317,0.043,2459759.877559,0.002256,10.6925011,3.88e-05,3.491,0.324,1.303666,0.000714,1200.0,0.657689,4.01292,0.223035,93.3426,865.0,27.0,210.858,0.935,5844.0,134.577,4.34318,0.0769439,1.15,0.06,,,1.054,0.128222,"18,19,20,25,26,40,47,52",2021-09-09,2022-10-04,2022-12-14 12:09:24,,4450,1,False,False,True -23229805,4451.01,,1,4,1,1,4,4,4,10.0,106.2,13.05,1,2,6,PC,PC,8.5608,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,18:19:02.51,34:02:44.53,6.987,0.038,140.7,0.042,2459778.550072,0.001961957,8.85173541436088,2.2537048e-05,4.34018786697114,0.11429499,1.124173,0.040415,1034.86612846439,37.222885,3.66249119920358,0.22714698,190.272208605662,947.24776533672,19.10598,87.8966,0.1805,6138.0,112.712,4.43818,0.0769598,1.07688999176025,0.0452387,,,1.16,0.15577,"26,40,53,54",2021-09-09,2023-03-14,2023-03-24 12:12:10,pulsating star,4451,1,False,False,True -229581160,4452.01,TIC 229581160.01,3,4,3,3,1,4,4,27.7,69.1,126.24,3,0,0,PC,PC,13.5167,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,18:00:39.77,72:56:22.2,0.475,0.03,4.02,0.033,2459911.846148,0.0022050168,3.41490914984403,8.311735e-06,2.72318793203789,0.049219605,14.448766,0.192377,13219.6475165121,177.1697,13.9171881241617,0.17855234,537.983636882385,1228.32139417264,63.833977,718.574,8.544,5480.0,122.0,4.31394,,1.13031995296478,,,,0.96,,"40,41,47,48,49,50,51,52,53,54,55,57,58,59",2021-09-09,2023-02-15,2023-02-25 12:10:55,,4452,1,False,False,True -243333538,4453.01,TIC 243333538.01,3,4,4,3,1,4,4,47.4,65.2,317.0,2,0,0,PC,PC,13.7703,0.009,,1,spoc-s14-s55-b0A-PC,SPOC,19:19:21.48,56:55:49.33,2.392,0.032,-7.592,0.029,2459772.753949,0.0012510436,2.99856673611241,4.688712e-06,3.02516595934563,0.03693332,30.880032,0.297422,28040.906857207,273.89795,17.8036846597582,0.15423219,748.092222553883,1333.85473400457,100.78261,880.941,12.45,6126.0,122.0,4.46702,,1.04172003269196,,,,1.16,,"40,41,47,49,50,53,54,55",2021-09-09,2023-03-14,2023-03-24 12:12:10,~2000 ppm secondary in spoc-s14-s55 multisector,4453,1,False,False,True -48217457,4454.01,TIC 48217457.01,5,5,5,5,5,5,5,26.6,33.5,317.0,0,1,0,KP,KP,14.3168,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,18:51:51.89,48:20:42.2,1.565,0.043,1.242,0.042,2459422.76782,0.0029580025,3.12083962396792,1.594364e-05,2.40527802281124,0.10575633,18.646477,0.887446,17027.4064902025,817.03375,16.2108254295111,0.5737162,744.411075837015,1332.21081852325,23.049154,1145.28,29.165,5983.0,122.0,4.3973,,1.09921002388,,,,1.1,,"40,41,53,54,55",2021-09-09,2023-03-15,2023-03-24 12:12:10,Kepler-488 b,4454,1,False,False,True -138644215,4455.01,,5,5,5,5,5,5,5,21.2,58.2,80.76,0,1,2,KP,KP,12.8939,0.008,,1,spoc-s14-s55-b0A-KP,SPOC,19:36:46.11,39:37:08.3,-0.485,0.024,-2.528,0.026,2459420.580429,0.0022299993,1.54493336286523,5.8710034e-06,1.10434589988144,0.18416916,5.378869,0.282177,4941.87009134437,259.86115,10.7011777011709,2.2396216,3717.19918849963,1991.4697226172,19.470558,822.96,10.3085,6136.25,132.502,4.15767,0.0885656,1.48740005493164,0.0734472,0.0853783,0.0126289,1.16,0.164239,"40,41,54,55",2021-09-09,2023-03-15,2023-03-24 12:12:10,Kepler-76 b,4455,1,False,False,True -27774415,4456.01,TIC 27774415.01,5,5,5,5,5,5,5,25.2,29.2,317.0,0,3,4,KP,KP,13.2394,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,19:44:48.13,49:08:24.11,-2.78,0.032,-12.122,0.036,2459422.773399,0.0034566796,4.94279853350153,2.2025532e-05,3.31538275775367,0.10438958,12.393006,0.320359,11349.4838660999,295.01813,15.3204960725362,0.35390317,469.339961903159,1187.1118302567,34.365154,739.412,11.158,5550.93,21.5889,4.18442,,1.32567000389099,,0.192744,0.0203602,0.98,,"40,41,54,55",2021-09-09,2023-03-15,2023-03-24 12:12:10,Kepler-15 b / KOI-128.01,4456,1,False,False,True -299220166,4457.01,TIC 299220166.01,5,5,5,5,5,5,5,14.8,48.4,78.87,0,1,3,KP,KP,14.3258,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,19:17:44.32,49:28:24.44,0.166,0.039,8.565,0.039,2459770.385346,0.0037095712,3.21751842830121,1.2193385e-05,1.8986263655888,0.12947512,13.868144,0.566097,12691.8036892843,521.25836,10.5529772614482,0.6339099,393.991042424831,1136.2956303129,22.169394,843.695,13.668,5549.0,25.0,4.50842,,0.912926971912384,,-0.22,0.1,0.98,,"40,41,53,54,55",2021-09-09,2023-03-15,2023-03-24 12:12:10,Kepler-426 b,4457,1,False,False,True -229671380,4458.01,TIC 229671380.01,3,4,3,3,3,4,4,34.1,79.5,121.33,3,2,2,PC,PC,11.0672,0.007,,1,qlp-s51-tois,SPOC,16:48:30.24,74:45:49.5,-0.535,0.034,-13.443,0.048,2459711.665481,0.0005189,3.9393773,3.1e-06,5.61,0.057,4.471571,8.7e-05,4110.0,0.0801398,13.625,0.654098,1680.38,1783.0,111.0,505.432,5.05,5904.4,122.0,3.84,0.08,2.1,0.1,,,1.11,0.143863,"14,15,16,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51",2021-09-09,2022-09-02,2022-12-14 12:09:24,,4458,1,False,False,True -230129753,4459.01,,3,4,3,3,1,4,4,6.2,38.8,33.72,0,0,0,PC,PC,14.3668,0.008,,1,qlp-s56-tois,SPOC,16:47:18.56,67:17:52.99,-13.67,0.061,34.279,0.073,2459840.458684,0.002928,5.7475343,6.45e-05,1.846,0.229,12.986764,0.959714,11890.0,883.539,6.43097,0.338546,12.9407,528.0,16.0,254.968,2.0625,3750.0,157.0,4.67041,0.0106476,0.58,0.02,,,0.569246,0.0204743,"40,41,47,48,49,50,51,52,53,54,55,56",2021-09-09,2023-02-06,2023-02-09 12:10:04,faint target; small star,4459,1,False,False,True -461635621,4460.01,,1,4,1,2,3,4,4,0.8,31.0,5.74,2,2,3,PC,PC,10.3859,0.006,,1,qlp-s53-ffi,QLP,01:19:38.41,85:08:03.8,-60.989,0.046,-16.771,0.041,2459749.077099,0.0057626,28.6650818,0.0002788,4.334,0.729,1.053675,0.002173,970.0,2.00154,2.25021,0.190205,10.2433,498.0,10.0,82.2168,0.1497,4818.0,125.8,4.65,0.09,0.69,0.05,,,0.78,0.0962705,"18,19,20,25,26,40,52,53",2021-09-09,2022-09-02,2022-12-14 12:09:24,TESS LC contaminated by red giant; potential L1 candidate,4460,1,False,False,False -149282072,4461.01,,1,4,1,1,4,4,4,6.2,58.9,7.43,1,2,7,PC,PC,10.4787,0.006,,1,qlp-s53-tois,QLP,18:36:35.25,16:27:08.79,-42.628,0.079,3.593,0.088,2459761.942759,0.0093908,3.7006742,0.0001122,3.115,2.494,0.912402,0.573635,840.0,528.198,2.61277,0.787872,1434.65,1714.0,11.0,106.424,0.5535,5025.0,142.2,4.56,0.09,0.79,0.05,,,0.836,0.10594,"26,40,53",2021-09-09,2022-11-30,2022-12-14 12:09:24,potential L1; matched to neighboring TIC 149282076 in pixel,4461,1,False,False,True -76420654,4462.01,,3,5,5,3,3,4,4,19.8,61.8,63.99,0,8,1,PC,APC,10.445,0.006,,1,qlp-s54-ffi,QLP,18:18:40.79,36:15:17.48,6.882,0.056,-2.91,0.082,2459789.419251,0.0018272,4.9133022,2.14e-05,5.159,0.454,2.217164,0.000665,2040.0,0.612828,9.33912,0.457334,999.403,1566.0,11.0,368.922,4.876,5918.0,112.3,3.84,0.08,2.06,0.09,,,1.08,0.138125,"26,40,53,54",2021-09-09,2022-10-04,2023-04-03 00:00:00,TFOP SB1/APC,4462,1,False,False,False -8599009,4463.01,,3,4,4,3,4,4,4,336.2,525.0,317.0,3,3,5,PC,PC,10.4673,0.006,,1,qlp-s53-ffi,QLP,18:37:25.95,18:43:47.83,-5.208,0.069,50.723,0.073,2459766.955834,0.0019643,2.88069,3.14e-05,1.784,0.066,11.328841,0.469843,10380.0,432.648,22.4297,2.75197,678.487,1421.0,80.0,173.117,1.294,5541.0,139.8,4.36,0.08,1.09,0.06,,,0.975,0.125947,"26,40,53",2021-09-09,2022-09-02,2022-12-14 12:09:24,slight depth aperture correlation; v-shaped,4463,1,False,False,False -441589581,4464.01,,3,4,3,3,3,4,4,,,45.68,0,2,4,PC,PC,9.12551,0.006,,1,qlp-s47-ffi,QLP,07:32:31.98,75:47:22.88,14.983,0.034,-4.29,0.042,2459602.566546,0.0085378,8.0379975,0.0001662,3.287,0.582,0.347491,0.001598,320.0,1.47161,7.65886,,83.2088,841.0,1000.0,360.444,3.251,5022.0,122.0,,,5.14,,,,,,"20,26,40,47",2021-09-09,2022-06-28,2022-12-14 12:09:24,low SNR,4464,1,False,False,False -157236902,4465.01,,1,4,1,3,4,4,4,,,93.26,34,15,5,PC,PC,9.85277,0.006,,1,qlp-s40-ffi,QLP,18:24:32.17,15:50:30.79,-54.422,0.078,43.693,0.083,2459395.124979,0.0043832,0.0,0.0,12.002,0.095,14.779288,0.000256,13520.0,0.236121,11.62,0.611949,130.528,941.0,257.0,121.139,0.6105,5557.0,128.8,4.44,0.08,0.99,0.05,,,0.979,0.127108,"26,40,53",2021-09-09,2022-08-31,2022-12-14 12:09:24,radius consistent with planet; still a single transit as of s53,4465,1,False,True,True -268604331,4466.01,TIC 268604331.01,5,5,5,5,5,5,5,12.4,37.1,119.74,0,1,7,KP,KP,13.3926,0.012,,1,spoc-s14-s55-b0A-KP,SPOC,19:56:23.4,43:29:51.31,-3.56,0.026,-2.141,0.034,2459799.901292,0.006698529,5.01419910866077,5.806411e-05,4.56068712962464,0.33510303,6.562577,0.388791,6026.12600699471,358.0255,13.4911728108545,1.0645723,1233.09798886603,1511.36425619055,14.778816,1249.41,23.61,6669.0,122.0,4.12805,,1.69675004482269,,,,1.41,,"14,15,41,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-471 b,4466,1,False,False,True -48506505,4467.01,,5,5,5,5,5,5,5,5.4,40.8,21.53,0,3,8,KP,KP,11.8933,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,19:01:04.45,48:33:35.58,-5.735,0.053,-23.482,0.045,2459420.812052,0.0021864164,7.79421550591304,2.9955845e-05,0.971031114137343,0.35073993,3.208457,0.29713,2950.73571040647,273.62897,4.91698420441239,3.60311,112.112431377455,829.914193977637,12.189462,268.041,1.8355,5461.54,121.201,4.50982,0.0828782,0.897403001785278,0.047799,0.0553929,0.0136375,0.95,0.125051,"40,41,53,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-447 b,4467,1,False,False,True -441763252,4468.01,TIC 441763252.01,3,4,3,3,1,4,4,45.7,120.8,101.58,4,0,0,PC,PC,13.2847,0.006,,1,qlp-s56-tois,SPOC,17:22:18.01,72:38:43.34,-7.097,0.028,-5.068,0.034,2459848.554322,0.000307,2.7708596,1.1e-06,2.17,0.049,24.863598,0.301348,22640.0,277.513,12.2577,,208.594,1058.0,18.0,375.517,2.5815,4975.0,122.0,4.55845,,0.79,,,,0.822,,"14,15,16,17,18,19,20,21,22,23,24,25,41,48,49,50,51,52,53,54,55,56",2021-10-07,2023-02-06,2023-02-09 12:10:04,,4468,1,True,False,True -441763252,4468.02,,2,4,2,4,1,4,4,2.1,20.5,12.99,4,0,0,PC,PC,13.2847,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,17:22:18.01,72:38:43.34,-7.097,0.028,-5.068,0.034,2459424.229778,0.0064869476,7.01400095472321,0.00012986199,2.96813344926036,0.41169938,1.789326,0.179956,1646.67326837641,165.73215,3.65286205800766,0.44695416,75.6935338834761,752.284629396091,9.704482,375.517,2.5815,4975.0,122.0,4.55845,,0.78930401802063,,,,0.822,,"41,48,49,50,51,52,53,54,55,56,57,58,59,60",2023-03-02,2023-05-19,2023-06-16 12:14:51,low SNR; potential multi,4468,2,True,False,True -75262942,4469.01,,5,5,5,5,5,5,5,52.4,113.6,122.69,0,0,0,KP,KP,14.1959,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,19:56:12.15,17:34:11.87,4.131,0.041,-1.832,0.039,2459421.462837,0.0007375168,2.66341539186883,9.022697e-06,1.84296876362503,0.096652344,41.524042,1.309725,37522.948949991,1205.5743,13.6857367175059,0.5672584,113.614249670104,832.679649501872,27.384752,305.3,2.9735,4051.0,122.0,4.54826,,0.701368987560272,,,,0.634,,"41,54",2021-10-07,2023-03-15,2023-03-24 12:12:10,Wendelstein-1 b,4469,1,False,False,True -256364928,4470.01,,5,5,5,5,5,5,5,1172.7,2802.3,116.88,1,0,3,KP,KP,6.8481,0.006,,1,spoc-s14-s55-b0A-KP,SPOC/QLP,20:00:43.71,22:42:35.19,-3.294,0.043,-250.225,0.049,2459770.410421,3.4337467e-05,2.21857480391221,1.7653721e-07,1.82336213680771,0.0016358565,28.44011,0.022421,25854.2144559256,20.650656,13.3010355046919,0.9522985,348.150619474531,1101.69541659719,1480.6505,19.7638,0.01275,5023.0,142.5,4.58,0.1,0.77648401260376,0.0555905,0.02,0.1,0.84,0.10566,"41,54",2021-10-07,2023-03-15,2023-03-24 12:12:10,HD 189733 b,4470,1,False,False,True -27318774,4471.01,TIC 27318774.01,5,5,5,5,5,5,5,21.0,23.1,317.0,0,1,1,KP,KP,14.4394,0.008,,1,spoc-s14-s55-b0A-KP,SPOC,19:39:59.12,50:28:12.17,4.282,0.047,-1.88,0.04,2459422.907793,0.0013922509,3.24324876796633,1.8660974e-05,3.07484405344571,0.16554756,19.148514,0.762725,17481.821644802,702.2493,14.5800064246742,0.69098556,631.420421362212,1278.49609389837,21.382334,1140.95,26.315,5778.0,25.0,4.37783,,1.09303998947144,,0.14,0.1,1.04,,"41,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-485 b,4471,1,False,False,True -63211674,4472.01,,5,5,5,5,5,5,5,8.6,9.6,317.0,0,4,2,KP,KP,13.1981,0.008,,1,spoc-s14-s55-b0A-KP,SPOC,19:29:08.95,43:11:50.12,2.265,0.031,-2.917,0.029,2459422.501343,0.009092091,8.60045163404611,0.00018952943,8.95052099502062,0.53443956,3.889182,0.22867,3575.66142265458,210.59106,14.5481209944695,0.9332466,862.894723181338,1382.32194550987,13.878862,1418.77,35.37,6011.95,158.693,3.75585,,2.31083989143372,,-0.120381,0.00640884,1.11,,"40,41,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-435 b,4472,1,False,False,True -122441491,4473.01,TIC 122441491.01,5,5,5,5,5,5,5,21.5,64.7,94.75,0,1,1,KP,KP,14.148,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,19:21:25.91,40:34:03.71,-4.449,0.044,-9.51,0.047,2459420.412953,0.0032646847,3.79700756452242,2.2977301e-05,2.52567781914703,0.14604452,17.977688,0.807466,16421.7314915638,743.4276,11.7557578782702,0.4925161,218.002912806402,980.02086857929,22.830034,646.647,10.7805,5211.36,247.58,4.54655,,0.83263099193573,,0.442,0.232,0.89,,"40,41,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-425 b,4473,1,False,False,True -264508014,4474.01,,5,5,5,5,5,5,5,18.0,52.0,84.15,0,2,4,KP,KP,13.692,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,19:54:30,48:34:38.82,6.187,0.04,1.159,0.04,2459422.509996,0.0014538708,3.31190262734765,2.0474112e-05,1.18107197140603,0.14491338,8.305812,0.833669,7620.74938373965,767.54266,10.9625326737192,0.93211395,487.203380529553,1198.24968316218,10.737596,698.646,9.9845,5355.0,122.0,4.33005,,1.09205996990204,,,,0.93,,"41,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-424 b,4474,1,False,False,True -159098316,4475.01,TIC 159098316.01,5,5,5,5,5,5,5,23.0,65.8,100.1,0,2,4,KP,KP,13.4231,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,19:18:25.91,44:20:43.56,-2.604,0.029,-0.413,0.036,2459422.607769,0.0037264184,3.57875698546331,1.6464932e-05,3.18065015330919,0.12019504,12.439412,0.342201,11391.7385882465,315.12952,12.141604242483,0.3430124,445.832337851654,1171.95960072086,31.807556,639.411,7.055,5482.59,78.16,4.36922,,1.06061995029449,,0.338,0.076,0.96,,"40,41,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-77 b,4475,1,False,False,True -399794420,4476.01,,5,5,5,5,5,5,5,22.4,19.5,317.0,0,0,1,KP,KP,15.0236,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,19:00:51.32,39:01:38.88,0.104,0.052,4.231,0.06,2459421.077646,0.004484477,1.59475349752962,1.2115041e-05,1.94144998522589,0.21554792,16.481356,1.138462,15065.2565497152,1048.0123,14.3739674134689,1.4737438,1761.2885418985,1652.25614979509,14.165951,1490.94,65.035,5703.0,123.0,4.31786,,1.15986001491547,,,,1.02,,"40,41,53,54",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-686 b,4476,1,False,False,True -64531556,4477.01,,3,5,5,3,3,4,4,40.1,84.9,317.0,0,2,1,PC,APC,11.7018,0.044,,1,qlp-s55-tois,SPOC,20:37:50.75,37:09:21.38,-2.429,0.034,-4.534,0.036,2459813.939921,0.0013136,7.8127906,1.36e-05,6.304,0.136,8.852167,0.178552,8120.0,164.439,22.0599,3.44074,2051.05,1874.0,41.0,782.732,13.4895,8451.0,462.885,4.00707,0.0781978,2.38,0.08,,,2.1,0.342396,"14,15,41,55",2021-10-07,2022-12-07,2022-12-16 12:08:26,possibly too large for period/insolation; TFOP SB1/APC,4477,1,False,False,True -233823679,4478.01,TIC 233823679.01,3,4,3,3,4,4,4,24.3,86.8,46.69,4,0,3,PC,PC,11.4682,0.006,,1,qlp-s55-tois,SPOC,20:14:11.8,54:41:39.86,10.307,0.04,27.092,0.041,2459819.787515,0.0010968,2.7586362,4.2e-06,2.868,0.114,4.613309,0.137602,4240.0,126.728,7.78435,1.49576,787.087,1475.0,48.0,296.293,1.9225,5774.0,174.227,4.32015,0.08036,1.17,0.06,,,1.035,0.127917,"15,16,41,55,56",2021-10-07,2022-12-07,2022-12-16 12:08:26,,4478,1,False,False,True -126606859,4479.01,,2,4,4,2,4,4,4,11.7,75.5,7.69,5,0,0,CP,CP,12.9374,0.008,,1,spoc-s14-s55-b0A-CP,SPOC,21:04:23.27,24:39:13.23,90.926,0.07,-121.112,0.07,2459797.406342,0.001633398,1.15890129424359,7.702015e-06,1.16887016806511,0.19994436,3.774793,0.3008,3470.67593016847,277.00897,2.68297218802467,0.46727428,88.1856149054927,781.572349418761,13.868706,80.6532,0.2566,3449.0,157.0,4.80176,0.00495294,0.427388995885849,0.012702,,,0.422022,0.0202638,"15,41,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,TOI-4479 b,4479,1,False,False,True -377873569,4480.01,,5,5,5,5,5,5,5,23.7,22.8,317.0,0,7,6,KP,KP,11.0418,0.009,,1,spoc-s14-s55-b0A-KP,SPOC,19:37:25.57,38:56:50.43,-0.071,0.047,-5.376,0.054,2459771.442186,0.0035833402,3.84938455983611,3.2197382e-05,2.69082692121091,0.18554522,1.490966,0.093734,1372.28766783604,86.32825,16.8088000784585,1.2394345,6689.78639245818,2306.60278608377,15.62898,788.238,17.0705,5843.47,135.15,3.27448,0.0854146,3.91191005706787,0.219008,-0.246731,0.00687914,1.05,0.136793,"41,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-1658 b,4480,1,False,False,True -239332587,4481.01,,1,4,4,1,4,4,4,37.2,304.6,3.46,6,56,7,PC,PC,8.72762,0.007,,1,qlp-s55-tois,SPOC,20:45:04.73,44:30:00.85,434.079,0.047,271.143,0.059,2459823.515159,0.0004797,0.9263245,9e-07,0.884,0.26,1.053675,0.269102,970.0,247.821,1.69692,0.737938,437.879,1274.0,37.0,12.0445,0.00435,3573.0,157.0,4.80376,0.00467167,0.43,0.01,,,0.419577,0.0201656,"15,41,55",2021-10-07,2022-11-09,2022-12-14 12:09:24,potential L1 planet,4481,1,False,False,True -27990610,4482.01,TIC 27990610.01,5,5,5,5,5,5,5,25.7,26.0,317.0,0,2,0,KP,KP,14.4889,0.008,,1,spoc-s14-s55-b0A-KP,SPOC,19:48:03.71,49:13:31.08,-2.464,0.043,-3.825,0.047,2459772.312716,0.004160398,2.81649787731269,1.6316702e-05,2.68966648234709,0.16742851,21.127154,0.884688,19270.7270340282,814.49554,14.4894174027723,0.70000917,539.397235605012,1229.1274806152,19.980913,939.744,17.915,5413.0,122.0,4.39994,,1.01303994655609,,,,0.94,,"41,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-670 b,4482,1,False,False,True -209752908,4483.01,,5,5,5,5,5,5,5,90.0,97.8,317.0,0,0,0,KP,KP,15.1403,0.009,,1,spoc-s14-s55-b0A-KP,SPOC,19:51:09.82,16:54:45.24,8.954,0.054,2.754,0.055,2459420.283409,0.001505039,1.75221701511118,1.2987489e-05,2.17143751642009,0.20267011,87.737563,5.131245,77630.4124578375,4714.9014,20.3177656460663,1.4685148,282.310138730073,1045.44542980187,15.331902,565.541,13.9575,4355.0,122.0,4.53128,,0.740711987018585,,,,0.68,,"41,54",2021-10-07,2023-03-15,2023-03-24 12:12:10,Wendelstein-2 b,4483,1,False,False,True -272707711,4484.01,,3,4,3,3,2,4,4,33.7,33.3,317.0,2,0,1,PC,PC,15.0893,0.01,,1,spoc,SPOC,19:46:43.94,42:58:04.37,4.537,0.063,1.17,0.06,2459420.963218,0.002946769,2.68907026904307,0.00055422436,2.12099616722247,0.25296244,42.435292,3.069719,38330.4094984134,2823.323,15.2271225089572,1.5922306,248.529258267175,1012.66110703823,13.322793,734.772,18.055,4844.0,122.0,4.54518,,0.785703003406525,,,,0.79,,41,2021-10-07,2021-10-06,2022-12-14 12:09:24,KOI 883.01,4484,1,False,False,True -137903329,4485.01,,5,5,5,5,5,5,5,15.5,22.0,317.0,0,1,3,KP,KP,13.9154,0.01,,1,spoc-s14-s55-b0A-KP,SPOC,19:32:22.21,41:21:19.83,-1.535,0.035,-4.732,0.037,2459423.155978,0.0043344563,7.34056751477665,9.2465285e-05,3.25570040031924,0.28121445,12.162647,0.887301,11139.7005929238,816.90076,16.7317044009087,0.9979907,378.064550376312,1124.63407736626,13.585815,1177.55,28.485,5828.81,125.918,4.14418,,1.43728005886078,,0.237773,0.0129102,1.05,,"40,41,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-74 b,4485,1,False,False,True -99224131,4486.01,,5,5,5,5,5,5,5,102.0,133.4,317.0,0,0,1,KP,KP,9.93225,0.006,,1,spoc-s14-s55-b0A-KP,SPOC/QLP,20:21:45.92,26:41:33.63,-9.203,0.04,1.901,0.042,2459820.592337,0.0014365,2.69156138443368,2.418236e-06,4.2401265571428,0.024895312,7.753479,0.050607,7115.7804048894,46.609352,17.2177258499338,0.709391,4243.27858872566,2058.47281566344,143.86018,350.351,3.517,6955.0,139.1,4.04,0.09,1.96079003810883,0.0800804,,,1.522,0.249355,"14,41,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,HAT-P-49 b,4486,1,False,False,True -193754373,4487.01,TIC 193754373.01,3,4,4,3,3,4,4,34.3,89.2,113.76,1,0,2,PC,PC,11.4923,0.016,,1,qlp-s55-tois,SPOC,20:25:41.3,45:58:15.71,-0.62,0.045,-13.411,0.047,2459818.051018,0.0012739,3.9540617,7.1e-06,3.869,0.127,6.337445,0.18659,5820.0,171.841,13.1238,2.50981,792.078,1477.0,39.0,479.145,6.128,5773.0,41.3,4.03,0.08,1.69,0.08,,,1.11,0.14729,"14,15,41,55",2021-10-07,2022-12-07,2023-06-28 00:00:00,,4487,1,False,False,True -269269546,4488.01,TIC 269269546.01,5,5,5,5,5,5,5,21.5,60.1,124.47,0,1,1,KP,KP,14.3945,0.009,,1,spoc-s14-s55-b0A-KP,SPOC,19:59:37.42,45:26:22.6,-0.429,0.041,-15.097,0.048,2459798.529256,0.0040897047,4.45417003140808,3.5969406e-05,2.27142996889905,0.2337509,23.497015,1.41388,21409.0524466087,1301.3839,13.8017217975174,1.1355016,233.71938108347,997.225628968444,16.522558,751.776,13.0105,5353.54,33.74,4.47701,,0.922087013721466,,0.277,0.032,0.93,,"41,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-548 b,4488,1,False,False,True -267572272,4489.01,,5,5,5,5,5,5,5,44.6,128.7,98.33,0,0,0,KP,KP,12.7678,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,18:57:11.05,51:16:08.84,-4.114,0.03,-0.854,0.027,2459911.038989,0.0008949156,2.79747573594296,3.0997653e-06,2.21491324373294,0.032511935,20.495337,0.627882,18699.8504805319,578.13324,12.0149088299925,0.6621212,412.391358059243,1149.33633989299,29.906387,390.594,2.7045,5477.0,122.969,4.54393,0.0834737,0.86736798286438,0.0448141,,,0.96,0.123927,"26,40,41,53,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,HAT-P-37 b,4489,1,False,False,True -268924036,4490.01,,5,5,5,5,5,5,5,55.1,80.5,317.0,0,1,0,KP,KP,14.7344,0.01,,1,spoc-s14-s55-b0A-KP,SPOC,19:58:14.85,43:30:12.66,-4.417,0.046,-9.668,0.055,2459421.60304,0.0017948213,2.0523416565289,1.5078293e-05,2.12249573823356,0.20605198,38.092418,2.553521,34476.0907387218,2349.1162,22.5105620642008,1.3698725,1327.24986788468,1539.4228275283,13.474866,1302.33,46.81,5767.0,123.0,4.31546,,1.16875004768372,,,,1.03,,"41,54,55",2021-10-07,2023-03-15,2023-03-24 12:12:10,Kepler-718 b,4490,1,False,False,True -193336820,4491.01,,2,4,2,2,4,4,4,4.7,61.9,5.15,1,2,5,PC,PC,10.4382,0.006,,1,qlp-s41-tois,QLP,20:22:45.54,47:18:31.03,227.022,0.039,204.489,0.043,2459829.762042,0.0028280078,5.0066385,2.31e-05,1.484,0.226,1.249315,0.00259,1150.0,2.38586,2.12746,0.243855,18.0481,574.0,13.0,46.4488,0.051,4006.0,123.3,4.68,0.12,0.6,0.06,,,0.63,0.0790289,"14,15,41,56",2021-10-07,2022-12-12,2022-12-16 12:08:26,low MES,4491,1,False,False,False -298297931,4492.01,,3,4,3,3,4,4,4,96.7,282.6,103.01,1,2,4,PC,PC,9.63105,0.006,,1,qlp-s55-ffi,QLP,20:34:36.19,29:14:17.17,-55.188,0.055,-74.837,0.058,2459819.412035,0.0009755,4.4331839,6.1e-06,3.856,0.302,9.980216,0.003014,9150.0,2.7763,12.3472,0.670328,611.202,1385.0,85.0,143.184,0.895,5667.0,137.9,4.24,0.08,1.26,0.06,,,1.007,0.12579,"14,15,41,55",2021-10-07,2022-11-09,2023-07-04 00:00:00,part of visual binary; underlying variability,4492,1,False,False,False -263218688,4493.01,,3,4,3,3,4,4,4,15.0,46.0,19.87,2,2,6,PC,PC,8.94942,0.006,,1,qlp-s54-ffi,QLP,19:54:44.86,23:03:39.39,14.321,0.046,31.288,0.045,2459794.386139,0.0043738,1.5076298,1.23e-05,1.93,0.378,0.304049,0.001057,280.0,0.973235,4.68666,,820.873,1491.0,12.0,181.32,1.0865,4954.0,122.0,,,2.82,,,,,,"14,41,54",2021-10-07,2022-10-05,2022-12-14 12:09:24,low SNR; bright star,4493,1,False,False,False -40466976,4494.01,,3,4,3,3,3,4,4,,,36.8,0,16,2,PC,PC,7.3664,0.006,,1,qlp-s41-tois,QLP,19:33:18.77,33:28:57.38,12.9,1.1,4.4,1.2,2459407.23255,0.0006492,32.5350178,0.0008776,3.417,0.309,4.155454,0.00218,3820.0,2.0076,,,33.301,669.0,95.0,54.9701,,6303.8,156.0,,,,,,,,,"14,40,41",2021-10-07,2022-12-12,2022-12-16 12:08:26,no stellar radius; double star on SIMBAD,4494,1,False,False,False -120826158,4495.01,,1,4,1,1,4,4,4,8.7,74.1,12.86,1,3,2,PC,PC,9.00568,0.006,,1,qlp-s54-ffi,SPOC/QLP,19:05:27,37:01:33.56,12.296,0.039,-25.192,0.04,2459765.914829,0.003206,5.1830043,3.25e-05,2.783,0.377,0.727687,0.000751,670.0,0.692152,3.63045,0.2078,346.626,1202.0,20.0,132.214,0.4945,6156.0,132.372,4.25196,0.0864041,1.34,0.06,,,1.171,0.170474,"14,40,41,53,54",2021-10-07,2022-10-05,2022-12-14 12:09:24,potential multi near 2:1 resonance,4495,1,True,False,True -120826158,4495.02,,1,4,1,1,4,4,4,4.7,47.6,5.42,1,3,2,PC,PC,9.00568,0.006,,2,qlp-s41-ffi,SPOC,19:05:27,37:01:33.56,12.296,0.039,-25.192,0.04,2459770.010155,0.0041718143,2.5693728,2.54e-05,2.471,0.305,0.314909,0.000728,290.0,0.670733,2.18392,0.157374,1001.28,1567.0,12.0,132.214,0.4945,6156.0,132.372,4.25196,0.0864041,1.34,0.06,,,1.171,0.170474,"14,40,41,54",2021-10-21,2022-10-11,2022-12-14 12:09:24,potential L1 planet; near 2:1 resonance,4495,2,True,False,True -275758701,4496.01,,3,4,3,3,3,4,4,,,27.67,5,2,2,PC,PC,9.159,0.007,,1,spoc-s56-b0A,QLP,20:21:05.02,43:40:30.6,8.4,1.3,-2.1,1.3,2459826.109155,0.00082243024,1.1880300906436,6.2618856e-05,1.88808038048921,0.0664964,2.969537,0.194205,2731.30743391253,178.85313,,,2072.93701088028,1720.94216722608,32.928185,264.751,,,,,,,,,,,,"14,15,41,56",2021-10-07,2022-12-08,2022-12-16 12:08:26,Double star. No stellar parameters but stellar radius seems super-solar (1.5-2.5 Rs). Radius may still be planetary (radius ratio ~4%). Slight odd-even.,4496,1,False,False,False -436166416,4497.01,,3,4,4,3,4,4,4,72.7,98.1,317.0,4,4,4,PC,PC,10.3544,0.01,,1,qlp-s41-tois,QLP,20:25:35.06,27:48:57.92,12.348,0.038,9.1,0.041,2459440.840426,0.0013342,3.6001959,1.01e-05,2.887,0.283,8.523829,0.004196,7820.0,3.86438,16.1928,0.723226,1141.26,1619.0,32.0,395.542,4.1925,7172.0,136.4,4.16,0.09,1.75,0.07,,,1.6,0.267377,"14,15,41",2021-10-07,2022-12-12,2022-12-16 12:08:26,secondary and large; lightcurve contaminated by nearby EB,4497,1,False,False,False -305943739,4498.01,,5,5,5,5,5,5,5,4.5,52.0,4.86,0,1,1,PC,FP,7.948,0.006,,1,qlp,QLP,19:41:52.46,23:22:38.22,68.321,0.052,-164.342,0.058,2459441.270166,0.005168,5.3073459,0.0001065,3.714,0.702,0.217169,0.000618,200.0,0.568889,2.05347,0.145249,494.046,1313.0,13.0,79.4746,0.2669,5821.4,107.6,4.16,0.07,1.42,0.06,-0.27,0.06,1.05,0.122055,"14,40,41",2021-10-07,2021-10-06,2022-12-14 12:09:24,ambiguous centroid plot; potential L1 candidate,4498,1,False,False,True -120183168,4499.01,,2,4,2,2,4,4,4,2.6,31.1,4.71,1,2,4,PC,PC,10.1293,0.006,,1,qlp-s54-ffi,QLP,18:57:26.85,39:04:34.26,22.207,0.04,29.304,0.039,2459794.454653,0.0050793,3.4902174,2.87e-05,2.348,0.359,0.362696,0.001017,334.0,0.936345,2.01404,0.146926,504.673,1320.0,9.0,175.743,0.667,6111.0,124.9,4.43,0.08,1.09,0.05,,,1.151,0.161583,"14,26,40,41,53,54",2021-10-07,2022-10-05,2022-12-14 12:09:24,potential L1 candidate; variable host,4499,1,False,False,False -406190563,4500.01,,3,4,3,3,4,4,4,13.0,43.2,48.79,0,1,4,PC,PC,10.351,0.014,,1,qlp-s41-tois,QLP,20:24:58.58,30:20:53.47,4.555,0.044,-2.177,0.044,2459446.222222,0.0044908,1.773346,2.28e-05,3.291,0.644,0.771146,0.002237,710.0,2.06031,7.95884,0.603468,6411.52,2492.0,12.0,604.164,11.793,6802.0,154.0,3.63,0.1,3.08,0.14,,,1.46,0.251227,"14,41",2021-10-07,2022-12-12,2022-12-16 12:08:26,low SNR; check nearby matched star TIC 406190550,4500,1,False,False,False -22069559,4501.01,,1,4,1,1,4,4,4,4.8,41.7,12.54,1,2,6,PC,PC,8.46837,0.006,,1,qlp-s54-tois,QLP,19:30:53.69,30:26:00.43,2.742,0.046,4.353,0.052,2459792.423295,0.0065818,2.0348811,3.33e-05,2.631,0.416,0.173732,0.017042,160.0,15.6961,3.57655,1.28644,6279.82,2480.0,9.0,334.551,3.311,8279.0,139.5,3.81,0.08,2.94,0.09,,,2.037,0.317656,"14,40,41,54",2021-10-07,2022-11-30,2022-12-14 12:09:24,variable host star,4501,1,False,False,False -239372503,4502.01,,5,5,5,5,5,5,5,7.4,73.4,16.6,0,1,1,PC,FP,8.716291,0.006,,1,qlp,QLP,20:45:44.49,43:26:42.54,2.207,0.063,1.131,0.069,2459444.109839,0.0059153,1.7104291,0.0007619,1.275,0.693,0.271468,0.00537,250.0,4.94577,4.22474,,21027.8,,9.0,413.683,7.065,11798.0,,4.18,,2.38,,,,3.135,,41,2021-10-07,2021-10-06,2022-12-14 12:09:24,star is hot and variable,4502,1,False,False,False -167719618,4503.01,,2,4,2,2,3,4,4,0.0,20.2,5.04,0,0,1,PC,PC,9.0803,0.006,,1,spoc,SPOC,06:52:22.29,-65:05:51.56,-62.709,0.055,-62.418,0.061,2458523.918857,0.004158453,236.899400612618,0.0018930349,7.14501961377902,0.51572984,0.750928,0.076569,691.39147279767,70.52027,2.09284053154171,0.66080403,0.836481659562082,243.912386442864,7.120223,62.505,0.14425,5334.0,184.0,4.6001,0.270484,0.796253979206085,0.0433718,,,0.91,0.112922,"1,2,3,4,5,6,7,8,10,11,12,13,27,28,29,30,31,32,33,34,35,36",2021-10-21,2021-10-21,2022-12-14 12:09:24,two transits; actual period likely shorter than 710.697 days; first event is after momentum dump,4503,1,False,False,True -349972412,4504.01,TIC 349972412.01,3,4,3,3,3,4,4,2.0,39.2,91.23,7,1,1,PC,PC,12.5542,0.006,,1,spoc,SPOC,07:37:52.15,-62:04:41.8,-8.658,0.026,-8.319,0.03,2459065.23706,0.00245225,82.938307308604,0.0032656323,7.80806620490059,0.20260938,14.488838,0.311135,13256.0672674073,286.52496,11.4973523000158,0.70768696,1.96035416268506,301.788984973382,40.80318,342.605,1.707,5271.0,130.4,4.43,0.08,0.96091902256012,0.0548341,,,0.9,0.10837,"27,28,29,30,31,32,33,34,35,36",2021-10-21,2021-10-21,2022-12-14 12:09:24,8 hour TTV; potential multi,4504,1,True,False,True -349972412,4504.02,,1,4,1,1,3,4,4,2.8,22.3,8.15,7,1,1,PC,PC,12.5542,0.006,,2,spoc,SPOC,07:37:52.15,-62:04:41.8,-8.658,0.026,-8.319,0.03,2459038.462476,0.0020714905,2.42607976624926,3.83492e-05,2.12903575279571,0.65879285,0.909746,0.094643,837.556287591634,87.16517,2.77633084432472,3.6515253,548.07667840923,1234.04239567187,10.976939,342.605,1.707,5271.0,130.4,4.43,0.08,0.96091902256012,0.0548341,,,0.9,0.10837,"27,28,29,30,31,32,33,34,35,36",2021-10-21,2021-10-21,2022-12-14 12:09:24,potential multi; L1 candidate,4504,2,True,False,True -150299840,4505.01,TIC 150299840.01,3,4,3,3,3,4,4,27.4,56.1,317.0,12,0,1,PC,PC,10.4223,0.006,,1,spoc,SPOC,06:20:58.03,-60:57:20.81,-1.117,0.071,29.537,0.06,2459068.255071,0.0010108565,19.473547710881,0.00013567168,7.47069486196325,0.05025408,7.605866,0.193785,6980.78181376706,178.46628,17.4286725459825,0.74897045,289.544778807773,1052.07980450029,27.355328,421.749,5.5485,7182.7,117.2,4.24,0.11,1.96747994422913,0.0799372,-0.459839,0.0458331,1.48,0.247615,"28,29,30,31,32,33,34,35,36",2021-10-21,2021-10-21,2022-12-14 12:09:24,multiple transits in Y1; period is ambiguous; Gaia DR2 RV error 3.76 km/s; strong stellar pulsations; large PC for period,4505,1,False,False,True -434105094,4506.01,,2,4,2,2,1,4,4,3.5,166.8,8.72,1,1,0,PC,PC,13.6343,0.009,,1,spoc-s01-s46-b0A,SPOC,23:37:38.55,-12:50:33.11,203.26,2.0,-319.09,2.0,2458357.517521,0.00067070324,5.41071456246998,9.597818e-06,0.643939741309354,0.19262587,25.889874,2.952292,23563.3983761048,2715.4675,2.89028658461325,0.62937737,1.90021004313374,299.447127814194,8.9943695,,,2938.0,93.0,5.14513,0.477512,0.185012996196747,0.00588037,,,0.154449,0.0201359,"2,29,42",2021-10-21,2022-07-15,2022-12-14 12:09:24,v-shaped; low SNR,4506,1,False,False,True -179582003,4507.01,TIC 179582003.01,3,4,3,3,3,4,4,7.4,27.9,317.0,2,1,1,PC,PC,10.2301,0.006,,1,spoc,SPOC,05:21:48.33,-69:59:17.58,21.922,0.061,4.006,0.063,2458413.851025,0.0019838985,104.615940624114,0.0006776889,9.39158711862128,0.10748556,6.939786,0.155028,6371.39481587272,142.77618,16.1985334815241,0.7952008,9.35685684882549,446.069208813542,43.77653,178.26,1.0135,6115.26,120.386,3.90726,0.081305,1.97584998607635,0.0913716,-0.0159192,0.1,1.15,0.156888,"2,3,5,6,7,8,9,10,11,12,13,27,28,29,30,32,33,34,35,36",2021-11-18,2021-11-18,2022-12-14 12:09:24,large PC,4507,1,False,False,True -170789802,4508.01,,2,4,4,2,3,4,4,5.9,99.2,5.13,8,0,1,PC,PC,11.8371,0.007,,1,spoc,SPOC,04:38:27.54,-31:11:21.61,86.8,0.076,20.513,0.08,2458438.012099,0.00049501995,3.46727789358939,9.109895e-06,0.405592768803134,0.23701005,3.977881,0.456074,3657.06035533876,419.9717,2.113546581762,1.3841863,13.9606165624412,492.998842188553,9.370191,33.4412,0.04995,3383.0,157.0,4.89132,0.00204166,0.332563996315002,0.0099286,,,0.314054,0.020206,"5,32",2021-10-21,2021-10-21,2022-12-14 12:09:24,potential L1 planet; low MES,4508,1,False,False,True -319610598,4509.01,,3,5,5,3,3,4,4,,,78.04,0,0,1,PC,PC,11.4003,0.006,,1,spoc,SPOC,06:43:48.82,-52:38:18.17,-0.11,0.038,-6.068,0.049,2459231.763893,0.0046747755,0.0,0.0,6.45677093051225,0.4512109,3.455551,0.432705,3177.62049851249,398.45673,10.4883207069409,1.2455252,18.6516855158276,530.028558684463,7.823683,629.031,8.456,6930.0,130.941,4.10087,0.0830529,1.81171000003815,0.074186,,,1.51,0.248738,"29,32,33,34",2021-10-21,2021-10-21,2022-12-14 12:09:24,single transit,4509,1,False,True,True -340458804,4510.01,,3,4,3,3,3,4,4,0.3,12.7,18.46,0,0,1,PC,PC,10.3607,0.006,,1,spoc,SPOC,07:42:33.37,-58:37:23.78,-4.994,0.043,7.688,0.035,2459039.763662,0.007843848,194.242074833968,0.011037557,9.28328770763082,1.0725,0.888026,0.081715,817.567572953855,75.25912,4.4905881297472,1.1487128,12.3018294495158,477.652631812941,9.925253,373.289,2.741,7923.0,147.92,4.35405,0.078026,1.51839995384216,0.042603,,,1.9,0.307104,"27,30,34,35,36",2021-10-21,2021-10-21,2022-12-14 12:09:24,weak signal; just 2 transits,4510,1,False,False,True -333674399,4511.01,,2,4,2,2,4,4,4,2.3,39.8,9.77,0,2,7,PC,PC,9.81932,0.006,,1,spoc-s42-s43-b0A,SPOC,03:17:13.27,15:30:06.22,-18.774,0.08,-98.362,0.066,2459449.123566,0.0046092332,20.9038860328393,0.0033866551,4.94997299628205,0.37585858,0.910755,0.07473,838.484292327579,68.82673,3.08988370129539,0.4582198,42.7179918176185,652.037324360861,11.045474,121.832,0.7085,5708.0,140.54,4.44413,0.0791339,1.00144994258881,0.0503166,,,1.017,0.126354,"42,43",2021-10-21,2022-01-26,2022-12-14 12:09:24,potential multi,4511,1,True,False,True -333674399,4511.02,,2,4,2,2,4,4,4,2.6,37.9,7.06,0,2,7,PC,PC,9.81932,0.006,,2,spoc-s42-s43-b0A,SPOC,03:17:13.27,15:30:06.22,-18.774,0.08,-98.362,0.066,2459457.337104,0.0074322447,10.9771075979605,0.003389025,2.82102392875947,1.0545045,0.693038,0.10576,638.107586038398,97.40402,2.55194333041241,3.8441231,100.831517951005,808.199962358224,7.906761,121.832,0.7085,5708.0,140.54,4.44413,0.0791339,1.00144994258881,0.0503166,,,1.017,0.126354,"42,43",2022-01-25,2022-01-25,2022-12-14 12:09:24,potential multi,4511,2,True,False,True -243014114,4512.01,,5,5,5,5,5,5,5,1.7,33.5,11.05,0,4,6,KP,KP,11.2723,0.006,,1,qlp-s44-ffi,SPOC/QLP,04:03:10.31,16:20:49.8,31.845,0.073,-62.191,0.041,2459489.959992,0.0080648,19.5624363,6.6e-05,6.591,0.894,1.521096,0.001039,1400.0,0.957142,3.32657,0.279354,95.7696,871.0,32.0,99.9293,0.3594,4246.8,108.6,4.5,0.1,0.76,0.06,-0.029416,0.0317855,0.66,0.0826157,"42,43,44",2021-10-21,2022-01-07,2022-12-14 12:09:24,K2-174 b,4512,1,False,False,True -408261725,4513.01,,2,4,2,2,4,4,4,2.5,43.3,5.57,2,3,4,PC,PC,9.96064,0.006,,1,qlp,SPOC,01:12:21.72,13:45:18.29,106.605,0.081,-76.3,0.071,2459488.218864,0.0036711,9.7607632,0.0021508,1.967,0.424,0.858071,0.003241,790.0,2.98468,2.22799,0.187881,30.3621,653.0,12.0,102.609,0.4615,5558.0,120.728,4.62634,0.076868,0.8,0.04,,,0.979,0.123907,"42,43",2021-10-21,2021-11-09,2022-12-14 12:09:24,potential L1 planet; period could be half (~9.26 days),4513,1,False,False,True -436875934,4514.01,,5,5,5,5,5,5,5,36.2,101.0,80.35,0,0,0,KP,KP,13.1361,0.007,,1,qlp-s44-tois,SPOC,02:50:53.22,29:01:20.1,14.865,0.053,-27.458,0.039,2459883.369678,0.0012147411,2.7535993,5.3e-06,2.141,0.082,15.814361,0.003376,14460.0,3.10945,10.7107,,227.759,1082.0,59.0,361.155,4.2875,5032.08,87.55,4.49678,,0.86,,0.288,0.084,0.84,,"18,42,43,44,58",2021-10-21,2023-03-22,2023-03-22 00:00:00,HAT-P-52 b,4514,1,False,False,True -456862677,4515.01,,3,4,4,3,3,4,4,26.8,146.6,101.85,3,18,1,PC,PC,11.302,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,01:24:44.68,21:30:47.03,-4.123,0.092,3.589,0.066,2459451.62303,0.00037558825,15.2664658181527,2.6904545e-05,2.66737922409819,0.03686849,17.717695,0.222423,16186.1729540338,204.83841,12.2663967670131,0.6762973,42.298670551569,650.431295238667,85.68674,193.499,1.7115,5420.82,118.023,4.52994,0.0837945,0.874077975749969,0.0473292,0.123,0.106,0.944,0.123632,"17,42,43,57",2021-10-21,2023-05-19,2023-06-16 12:14:51,period could be half (7.63 d); possible unrelated transits at TBJD ~2859 and ~2880,4515,1,False,False,True -85593751,4516.01,,5,5,5,5,5,5,5,98.3,289.8,90.85,0,0,2,KP,KP,10.9332,0.006,,1,spoc-s58-b0A,SPOC,03:09:28.55,30:40:24.17,3.856,0.267,-44.826,0.213,2459885.541633,0.00025403767,3.72246259498485,6.929837e-05,2.59567797294309,0.022484735,21.893388,0.129816,19962.6105831649,119.55813,11.4694856142279,0.9716158,184.988035046246,940.601483549925,156.51118,124.73,2.078,4926.0,136.738,4.51771,0.104576,0.820640027523041,0.0690754,0.19,0.1,0.809,0.101693,"42,58",2021-10-21,2023-03-10,2023-03-24 12:12:10,WASP-11 b,4516,1,False,False,True -301289516,4517.01,,5,5,5,5,5,5,5,14.3,121.2,3.27,0,2,10,KP,KP,9.0684,0.006,,1,spoc,SPOC,23:27:05.23,-01:17:07.24,376.019,0.094,216.071,0.07,2459448.316003,0.0015508655,1.20891224083645,0.00013110261,1.19935442514415,0.15835539,0.730025,0.05629,672.151721268615,51.843765,1.62187094799169,1.391869,299.246519056293,1060.78416074246,13.010741,29.661,0.0542,4199.0,127.194,4.65321,0.111146,0.634163022041321,0.0604824,,,0.66,0.0832528,42,2021-10-21,2021-10-21,2022-12-14 12:09:24,GJ 9827 b,4517,1,False,False,True -398572544,4518.01,,5,5,5,5,5,5,5,65.8,179.5,130.35,0,0,0,KP,KP,11.6238,0.008,,1,spoc,SPOC/QLP,23:34:27.9,-01:34:47.95,22.318,0.068,10.78,0.05,2459449.184766,0.0005629088,3.4086164125258,0.00014452277,3.3186145277409,0.046772324,16.537576,0.166081,15116.2553219055,152.9546,14.1821523735971,0.7733129,724.645935278203,1323.27837306971,91.99448,348.494,5.5665,6134.0,146.8,4.41,0.09,1.11381995677948,0.0596031,-0.12,0.03,1.16,0.151726,42,2021-10-21,2021-10-21,2022-12-14 12:09:24,WASP-28 b,4518,1,False,False,True -419957393,4519.01,,3,4,3,3,1,4,4,13.4,44.7,71.97,1,0,0,PC,PC,13.4911,0.007,,1,spoc-s42-s43-b0A,SPOC,02:04:25.55,03:59:56.15,19.882,2.21,-0.574,2.209,2459448.624749,0.002652454,5.8903557525641,0.0005131482,2.53747377014781,0.26509014,9.170327,0.612334,8410.61433691693,563.8216,,,245.188817828893,1009.24106798334,14.940282,,,5780.0,,4.438,,,,,,,,"42,43",2021-10-21,2022-01-13,2022-12-14 12:09:24,no stellar parameters but Gaia DR2 Teff + astrometry suggest star is M dwarf,4519,1,False,False,True -404243877,4520.01,,5,5,5,5,5,5,5,17.6,60.6,60.76,0,2,4,KP,KP,13.1749,0.006,,1,spoc,SPOC,23:10:49.04,-07:51:27.21,,,,,2459448.614456,0.004058661,3.2047095,4.4e-06,3.07046617460534,0.31453407,8.105223,0.71242,7437.3913154565,655.94745,,,552.636316015751,1236.60103247231,10.132514,537.963,,5342.0,452.3,,,,,,,,,42,2021-10-21,2021-10-21,2022-12-14 12:09:24,K2-238 b; SPOC assuming solar parameters for star,4520,1,False,False,True -439842788,4521.01,,5,5,5,5,5,5,5,84.8,236.9,98.19,0,0,0,KP,KP,11.4825,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,22:19:11.28,-01:50:03.95,-57.586,0.091,-56.075,0.098,2459450.367505,0.00033975494,3.07171816382087,4.2719375e-06,1.59834261563328,0.028929517,15.559495,0.431648,14228.626608717,397.48376,12.0054948623187,0.9131838,279.773616774372,1043.08917615399,73.11146,176.818,2.396,5082.0,130.016,4.5108,0.0861456,0.848393976688385,0.055201,,,0.851,0.0985124,"42,55",2021-10-21,2023-03-15,2023-03-24 12:12:10,WASP-177 b,4521,1,False,False,True -369480087,4522.01,,5,5,5,5,5,5,5,61.9,137.5,38.8,1,1,2,PC,FP,15.6615,0.009,,1,spoc,SPOC,01:33:13.01,05:38:42.75,-45.078,0.309,-32.668,0.186,2459447.841312,0.0004242017,0.364322479038833,1.555192e-05,0.212068439355669,0.17750025,42.307021,6.881612,38216.7895418059,6318.155,6.95273914129087,3.9343698,329.304895562328,1086.47389619701,7.353479,233.735,6.5175,3473.0,158.0,4.87657,0.00460571,0.347330987453461,0.0138193,,,0.331123,0.022815,42,2021-10-21,2021-10-21,2022-12-14 12:09:24,very short Tdur; could be on fainter M dwarf nearby; EPIC 220448185.01,4522,1,False,False,True -427332229,4523.01,,5,5,5,5,5,5,5,80.8,244.3,104.12,0,0,0,KP,KP,11.021,0.007,,1,qlp-s43-tois,SPOC,00:15:50.81,01:12:01.84,1.896,0.09,16.589,0.062,2459498.195167,0.0003988,2.7186256,4.15e-05,2.129,0.053,14.383138,0.000805,13160.0,0.741095,12.4543,0.65872,616.33,1388.0,161.0,275.994,3.3055,6427.0,155.74,4.52834,0.0966261,1.03,0.05,0.28,0.1,1.3,0.20889,"42,43",2021-10-21,2022-09-20,2022-12-14 12:09:24,WASP-32 b,4523,1,False,False,True -333657795,4524.01,,2,5,5,2,4,4,4,9.9,93.9,3.5,0,2,4,PC,CP,8.1359,0.006,,1,qlp-s44-tois,SPOC/QLP,03:16:42.75,15:39:22.88,111.854,0.09,-202.255,0.078,2459524.000604,0.0026764,0.9260139,5.48e-05,0.978,0.149,0.228029,0.000639,210.0,0.588703,1.69417,0.120979,876.253,1515.0,17.0,63.6796,0.28505,5640.0,111.0,4.35,0.07,1.11,0.05,-0.05,0.04,1.0,0.123961,"42,43,44",2021-10-21,2022-03-11,2022-12-14 12:09:24,potential L1 planet; low SNR/MES; centroid offset but not towards particularly bright star,4524,1,False,False,True -36592530,4525.01,,5,5,5,5,5,5,5,80.5,206.9,118.17,0,0,3,KP,KP,10.931,0.007,,1,qlp-s42-tois,SPOC/QLP,22:49:32.62,-10:40:31.69,45.787,0.078,15.52,0.065,2459469.300711,0.000806,2.4841967,8e-07,1.802,0.03,10.276112,0.001466,9420.0,1.35029,13.4339,0.671543,1242.93,1654.0,197.0,294.001,4.349,6089.0,123.4,4.28,0.08,1.28,0.06,,,1.14,0.147084,42,2021-10-21,2022-09-20,2022-12-14 12:09:24,WASP-75 b,4525,1,False,False,True -39926974,4526.01,,5,5,5,5,5,5,5,7.7,76.7,7.9,1,1,0,KP,KP,13.3455,0.008,,1,spoc,SPOC,22:22:29.6,-07:57:22.87,-254.655,0.136,-194.551,0.109,2459448.654225,0.0027132186,2.26026548696204,0.0004324147,1.01034931784601,0.44925383,6.675695,0.935719,6129.67882695305,861.4576,2.72623736429689,1.4096905,21.3031000651891,547.936777699069,7.13926,62.9969,0.31965,3236.0,157.0,4.88,,0.34102401137352,0.0103601,,,0.323833,0.0203379,42,2021-10-21,2021-10-21,2022-12-14 12:09:24,K2-28 b,4526,1,False,False,True -380887434,4527.01,,2,4,2,2,4,4,4,12.9,31.9,0.69,1,2,6,PC,PC,9.16764,0.007,,1,spoc-s42-s43-b0A,SPOC/QLP,01:17:53.34,05:28:16.32,87.767,0.105,-634.337,0.07,2459474.200243,0.0013564837,0.399444495232738,1.3364168e-05,0.802879641990536,0.19708219,0.35924,0.028736,330.817373689199,26.466192,0.908661736316413,0.95341295,571.507150376726,1247.02501864391,11.964,18.1037,0.0174,3702.0,157.0,4.75,0.01,0.485947996377945,0.014338,,,0.483997,0.0202128,"42,43",2021-10-21,2022-01-14,2022-12-14 12:09:24,potential L1 planet; low MES; ultra short period,4527,1,False,False,True -376981340,4528.01,,5,5,5,5,5,5,5,38.5,118.0,82.77,0,0,1,O,FA,12.806,0.038,,1,spoc-s42-b02,SPOC,01:18:26.35,06:49:00.48,79.9,2.0,-17.57,2.0,2459448.108233,0.0009339727,4.02497118697644,0.00029288707,2.5421501878158,0.09519731,22.401037,0.567586,20420.7314775108,522.62897,10.8574370832203,0.47342888,110.844485699365,827.557678685881,30.254791,220.761,,4492.0,124.206,4.51578,,0.770497024059296,,,,,,42,2021-10-21,2022-02-22,2022-12-14 12:09:24,match to TOI 4545,4528,1,False,False,True -384888319,4529.01,,1,4,1,1,4,4,4,3.8,75.4,3.96,6,2,6,PC,PC,10.1406,0.007,,1,qlp,SPOC/QLP,01:07:52.52,12:52:51.44,276.136,0.09,-22.641,0.072,2459495.543564,0.0034016,5.8789642,0.000669,2.058,0.284,1.390633,0.00187,1280.0,1.72269,1.80477,0.0893594,15.3327,551.0,17.0,28.384,0.0411,3611.0,157.0,4.74,0.01,0.49,0.01,,,0.490854,0.0203761,"42,43",2021-10-21,2021-11-09,2022-12-14 12:09:24,potential L1 planet; strong centroid offset in QLP; SG1 should confirm on target,4529,1,False,False,True -35022727,4530.01,TIC 35022727.01,5,5,5,5,5,5,5,62.6,176.9,112.01,0,0,0,KP,KP,12.2192,0.006,,1,qlp-s44-tois,SPOC,03:13:44.51,25:11:50.48,13.49,0.098,-13.586,0.064,2459523.70294,0.0003033,3.652821,3.5e-06,2.676,0.046,20.893889,0.001629,19060.0,1.5003,13.0049,0.720216,300.692,1160.0,141.0,300.384,4.241,5610.0,119.488,4.51915,0.078953,0.91,0.05,0.42,0.08,0.993,0.128387,"18,42,43,44",2021-10-21,2022-03-11,2022-12-14 12:09:24,HAT-P-25 b,4530,1,False,False,True -262662119,4531.01,,5,5,5,5,5,5,5,38.4,108.2,122.72,0,0,2,KP,KP,12.1796,0.008,,1,qlp,SPOC/QLP,23:16:15.23,00:18:24.08,-0.127,0.065,-10.564,0.054,2459463.724715,0.0011005,4.5334624,3e-06,3.619,0.121,13.943142,0.000599,12760.0,0.552146,13.7214,0.73642,487.96,1309.0,90.0,453.099,9.8425,5846.0,131.9,4.31,0.08,1.2,0.06,,,1.06,0.12834,42,2021-10-21,2021-10-21,2022-12-14 12:09:24,WASP-151 b; detected with combined QLP + K2 data,4531,1,False,False,True -376939759,4532.01,,5,5,5,5,5,5,5,15.2,50.5,87.62,0,2,4,KP,KP,13.0121,0.008,,1,qlp,SPOC/QLP,01:17:47.85,06:52:07.85,20.267,0.051,-12.702,0.036,2459493.04029,0.0023084,5.8175986,6.5e-06,2.845,0.106,9.476282,0.002209,8690.0,2.0343,11.2266,,170.928,1007.0,42.0,635.722,13.43,5633.4,29.4,4.27,,1.22,,0.224,0.028,1.0,,"42,43",2021-10-21,2021-11-09,2022-12-14 12:09:24,K2-113 b; detected with combined QLP + K2 data,4532,1,False,False,True -418761354,4533.01,,5,5,5,5,5,5,5,3.5,34.0,3.97,0,4,8,KP,KP,11.375,0.006,,1,qlp,QLP,00:45:55.26,06:20:49.31,-1.97,0.097,10.605,0.061,2459494.881247,0.0060093,2.1747669,9.6e-06,1.739,0.293,0.608183,0.001005,560.0,0.925699,1.80848,0.158469,315.279,1173.0,17.0,115.461,0.7055,4542.0,122.4,4.58,0.1,0.71,0.05,,,0.715,0.083869,"42,43",2021-10-21,2021-10-29,2022-12-14 12:09:24,detected with combined QLP + K2 data; marginal detection in TESS data,4533,1,False,False,True -437704321,4534.01,,5,5,5,5,5,5,5,13.0,60.0,20.21,0,3,7,KP,KP,12.3071,0.006,,1,qlp,SPOC/QLP,22:15:00.45,-17:15:02.88,-12.59,0.049,-22.096,0.048,2459470.846025,0.0028798,2.849282,3.3e-06,1.907,0.07,4.362555,0.001084,4010.0,0.997955,4.75272,0.44965,115.305,912.0,47.0,159.522,0.7275,4279.0,130.7,4.53,0.11,0.74,0.07,,,0.669,0.082246,42,2021-10-21,2021-10-21,2022-12-14 12:09:24,K2-55 b; detected with combined QLP + K2 data,4534,1,False,False,True -26017005,4535.01,,5,5,5,5,5,5,5,55.7,57.7,317.0,0,1,5,KP,KP,12.5489,0.006,,1,spoc-s42-s46-b0A,SPOC/QLP,03:29:22.09,22:17:57.66,16.579,0.058,-14.027,0.038,2459502.400339,0.0009808213,4.09841721044261,6.386243e-05,2.32930592871213,0.047063574,17.989562,0.293784,16432.4884663687,270.54828,14.762051108628,0.8463614,319.881429883079,1078.61636877747,49.181496,333.042,2.9945,5198.0,124.8,4.33,0.08,1.06394994258881,0.0588618,,,0.883,0.106699,"42,43,44",2021-10-21,2022-07-15,2022-12-14 12:09:24,K2-30 b; detected with combined QLP + K2 data,4535,1,False,False,True -380907135,4536.01,,5,5,5,5,5,5,5,66.2,78.9,317.0,0,0,5,KP,KP,10.5559,0.007,,1,spoc-s42-s43-b0A,SPOC/QLP,01:18:12.14,02:42:10.03,2.461,0.084,-14.595,0.071,2459474.39271,0.00063742185,4.04606564692054,7.6918834e-05,4.91782944334041,0.039887402,8.212972,0.061028,7535.88836545806,56.206913,16.0618412838308,0.8673603,1687.71033415182,1748.0,121.015045,376.658,10.8895,6404.0,123.1,4.03,0.09,1.81,0.1,,,1.29,0.195838,"42,43",2021-10-21,2022-01-13,2022-12-14 12:09:24,WASP-118 b,4536,1,False,False,True -251039147,4537.01,,1,4,4,1,4,4,4,16.1,150.1,14.42,5,2,4,PC,PC,8.1954,0.006,,1,qlp,QLP,22:42:21.98,-06:52:15.78,11.57,0.084,17.732,0.062,2459464.161726,0.0025388,6.6612775,0.0016581,1.224,0.333,1.260185,0.003985,1160.0,3.67076,3.86933,0.272556,45.7105,724.0,14.0,70.2468,0.21695,5975.0,102.5,4.42,0.07,1.07,0.04,0.15,0.1,1.1,0.131779,42,2021-10-21,2021-10-21,2023-06-07 00:00:00,potential L1 planet,4537,1,False,False,True -262715204,4538.01,,5,5,5,5,5,5,5,4.9,52.5,12.58,0,0,2,KP,KP,11.2451,0.006,,1,qlp,SPOC/QLP,23:17:32.24,01:18:00.55,15.023,0.076,-33.874,0.057,2459457.79217,0.0020935,7.138561,1.03e-05,2.469,0.107,2.097496,0.000769,1930.0,0.707902,3.57358,0.242747,57.1385,765.0,23.0,154.961,1.1525,5144.5,136.4,4.6,0.09,0.77,0.05,0.099,0.022,0.868,0.108059,42,2021-10-21,2021-10-21,2022-12-14 12:09:24,K2-285 c; multi; detected with combined QLP + K2 data,4538,1,True,False,True -262715204,4538.02,,5,5,5,5,5,5,5,4.6,44.6,7.58,0,0,2,KP,KP,11.2451,0.006,,2,qlp,QLP,23:17:32.24,01:18:00.55,15.023,0.076,-33.874,0.057,2459468.742204,0.0023645,3.4715644,5.9e-06,2.13,0.364,1.140622,0.001158,1050.0,1.06639,2.65245,0.193246,304.054,1163.0,22.0,154.961,1.1525,5144.5,136.4,4.6,0.09,0.77,0.05,0.099,0.022,0.868,0.108059,42,2021-10-21,2021-10-21,2022-12-14 12:09:24,K2-285 b; multi; detected with combined QLP + K2 data; marginal TESS detection,4538,2,True,False,True -102264230,4539.01,,5,5,5,5,5,5,5,54.8,159.6,100.58,0,0,4,KP,KP,11.29,0.006,,1,qlp,SPOC/QLP,22:04:48.74,-12:01:08.64,15.024,0.09,-41.309,0.092,2459470.147334,0.0011402,4.1591488,1.8e-06,3.54,0.032,13.987133,6.7e-05,12800.0,0.0613901,12.1616,0.657021,417.295,1259.0,88.0,264.78,4.802,5576.0,118.2,4.34,0.08,1.11,0.06,0.36,0.05,0.984,0.127092,42,2021-10-21,2021-10-21,2022-12-14 12:09:24,WASP-47 b; multi; detected with combined QLP + K2 data,4539,1,False,False,True -388816604,4540.01,,3,4,3,5,3,5,5,4.8,30.0,14.98,1,1,3,PC,PC,12.9485,0.007,,1,qlp-s43-tois,QLP,01:14:21.22,01:00:17.27,27.981,0.068,22.357,0.042,2459494.50239,0.0046615,2.5048167,5.7e-06,2.092,0.289,1.836446,0.000689,1690.0,0.63415,3.97081,0.227071,504.633,1320.0,7.0,427.038,7.38,5328.0,120.1,4.47,0.08,0.92,0.05,,,0.92,0.112273,"3,30,42,43",2021-10-21,2022-09-20,2022-12-14 12:09:24,K2 target; EPIC 220228500; detected with combined QLP + K2 data; marginal TESS detection,4540,1,False,False,True -293432942,4541.01,,3,5,5,3,3,4,4,,,7.95,1,1,1,PC,APC,10.027,0.019,,1,qlp-s43-tois,QLP,01:45:14.04,03:30:49.1,228.655,2.681,-10.022,0.61,2459496.050413,0.0020556,1.1339769,7.83e-05,0.852,0.188,0.684229,0.00321,630.0,2.95663,,,609.124,1384.0,16.0,337.7234,47.0287,5986.2,168.7,,,,,-1.822,0.011,,,"42,43",2021-10-21,2022-09-20,2022-12-14 12:09:24,DR3 parallax ~ 0.3; possibly small planet; SB with ~6600 day period; no radii,4541,1,False,False,False -4464022,4542.01,,3,4,3,3,4,4,4,65.0,79.5,317.0,1,1,2,PC,PC,12.2614,0.007,,1,qlp,QLP,23:06:22.26,-09:12:05.32,34.004,0.063,6.239,0.056,2459459.123417,0.0008765,5.9167848,4.8e-06,1.297,0.177,15.406821,0.019992,14090.0,18.4134,16.4899,1.27293,20.1923,590.0,14.0,284.21,2.739,4781.0,125.2,4.29,0.09,1.05,0.07,,,0.771,0.0922977,42,2021-10-21,2021-10-21,2022-12-14 12:09:24,variable star; possible odd-even; possibly V-shaped; detected with combined QLP + K2 data,4542,1,False,False,True -435336785,4543.01,,3,4,3,3,4,4,4,,,317.0,0,2,3,PC,PC,6.7943,0.006,,1,qlp-s44-ffi,QLP,03:40:33.8,13:33:09.98,12.1,1.1,-0.2,1.1,2459519.314253,0.0004836,5.7740318,6.3e-05,4.551,0.12,5.245901,0.001063,4820.0,0.97894,24.6129,2.63376,660.328,1412.0,168.0,,,4837.8,251.9,,,3.19,0.34,-0.06,0.062,,,"42,43,44",2021-10-21,2022-01-07,2022-12-14 12:09:24,possibly too large for insolation; evolved and possibly pulsating host,4543,1,False,False,False -435339847,4544.01,,5,5,5,5,5,5,5,2.1,28.7,6.47,0,2,10,KP,KP,11.2867,0.006,,1,qlp,QLP,03:40:54.85,12:34:20.81,22.558,0.117,-37.906,0.06,2459498.028282,0.0055534,8.2000786,1.93e-05,2.393,0.334,0.966735,0.000542,890.0,0.499659,2.41401,0.226489,38.3953,693.0,16.0,141.731,0.8685,4865.6,101.5,4.54,0.1,0.79,0.07,0.237,0.023,0.793,0.0975742,"5,42,43",2021-10-21,2021-10-29,2022-12-14 12:09:24,K2-77 b; detected with combined QLP + K2 data,4544,1,False,False,True -610976842,4545.01,,5,5,5,5,5,5,5,45.4,131.3,95.19,0,4,3,KP,KP,12.813,0.013,,1,qlp-s42-tois,QLP,01:18:26.43,06:49:00.22,54.983,0.053,-34.965,0.043,2459496.405619,0.0010576,4.0248884,2.1e-06,2.432,0.257,24.308297,0.008685,22140.0,7.9988,10.2508,1.01095,120.042,922.0,164.0,232.801,1.821,4492.0,124.2,4.52,0.1,0.67,0.06,,,0.71,0.0859677,"42,43",2021-10-21,2022-09-20,2022-12-14 12:09:24,K2-295 b; detected with combined QLP + K2 data,4545,1,False,False,True -25911962,4546.01,,3,4,3,3,3,4,4,82.9,215.0,91.85,0,2,1,PC,PC,10.0376,0.009,,1,qlp-s44-tois,QLP,03:25:45.76,23:11:19.2,-12.533,0.095,-4.911,0.084,2459522.892285,0.0012729,0.745638,2.24e-05,0.76,0.134,1.075411,0.404912,990.0,372.868,11.543,4.19119,12297.4,2933.0,23.0,329.537,5.6725,6984.0,133.6,4.04,0.09,1.96,0.08,,,1.53,0.26474,"42,43,44",2021-10-21,2022-03-11,2022-12-14 12:09:24,two stars in pixel,4546,1,False,False,False -206284139,4547.01,,5,5,5,5,5,5,5,45.4,100.6,129.29,0,2,3,KP,KP,12.1112,0.01,,1,qlp,QLP,22:34:25.5,-13:43:54.5,8.479,0.096,-21.602,0.075,2459468.229719,0.0149895,3.0026215,1.86e-05,3.595,0.166,5.485947,0.153128,5040.0,141.026,14.0672,2.02594,4289.27,2254.0,49.0,491.87,11.2195,5630.0,105.1,4.11,0.07,1.45,0.07,0.18,0.1,1.0,0.125187,42,2021-10-21,2021-10-21,2022-12-14 12:09:24,K2-60 b; detected with combined QLP + K2 data,4547,1,False,False,True -21130820,4548.01,,3,4,3,3,4,4,4,11.3,57.3,25.02,0,2,3,PC,PC,9.962,0.006,,1,qlp-s58-ffi,QLP,02:25:21.87,25:31:50.44,-10.4,1.1,-2.6,1.2,2459907.810983,0.0017661,4.6004146,1.5e-05,1.365,0.191,0.858071,0.065894,790.0,60.6884,5.36549,,84.8718,,17.0,165.593,,5970.5,,,,1.59,,0.153667,0.0069282,,,"18,42,43,44,58",2021-10-21,2023-02-03,2023-02-09 12:10:04,see observing notes re: stellar multiplicity not responsible for transits,4548,1,False,False,False -9030119,4549.01,,3,4,3,3,4,4,4,4.6,26.9,17.54,0,0,3,PC,PC,12.8466,0.007,,1,qlp,QLP,23:42:48.57,-09:35:19.36,26.674,0.044,-30.385,0.033,2459469.241536,0.0065497,3.312912,1.27e-05,2.167,0.338,1.912579,0.000391,1760.0,0.359941,4.36584,0.244798,474.706,1300.0,20.0,456.122,5.6075,5512.0,126.5,4.44,0.08,0.98,0.05,,,0.97,0.120316,"2,29,42",2021-10-21,2021-10-21,2022-12-14 12:09:24,detected with combined QLP + K2 data,4549,1,False,False,True -400972123,4550.01,,3,4,3,3,3,4,4,5.8,39.7,20.34,0,0,1,PC,PC,9.7741,0.006,,1,qlp,QLP,11:11:16.75,-68:28:21.13,-11.638,0.051,0.419,0.042,2459357.168418,0.003922,1.8868668,1.72e-05,2.351,0.407,0.369213,0.000985,340.0,0.907178,4.74953,0.305157,8350.15,2663.0,13.0,554.449,8.4755,7751.0,937.7,3.81,0.68,2.57,0.08,,,2.26,0.317705,"10,11,37,38",2021-10-25,2021-10-25,2022-12-14 12:09:24,possible centroid offset,4550,1,False,False,False -204650483,4551.01,TIC 204650483.01,3,4,3,3,3,4,4,14.8,39.2,52.61,0,18,3,PC,PC,9.02765,0.006,,1,qlp,CTOI,12:19:54.9,-25:49:40.27,-33.998,0.068,-16.114,0.063,2459312.392162,0.0096602,9.956296,0.000254,10.474,3.442,1.112364,0.003304,1024.0,3.04272,8.32411,,1247.74,1655.0,9.0,215.986,2.436,4956.0,122.0,,,3.38,,,,,,"10,37",2021-10-28,2021-10-27,2022-12-14 12:09:24,variable star; CTOI from Sam Grunblatt,4551,1,False,False,False -248250955,4552.01,,2,4,4,2,3,4,4,20.2,21.8,2.18,11,1,9,PC,PC,11.9251,0.007,,1,spoc,SPOC,17:38:51.42,-47:38:13.36,-134.727,0.092,-472.486,0.073,2459361.882335,0.0011699441,0.301150580637201,2.9006222e-05,0.64048413083924,0.19197765,1.583829,0.201811,1457.69739751313,185.85797,1.28011238337802,0.24046646,263.518632878574,1027.59641804422,9.10204,27.2684,0.0505,3304.0,100.0,4.96212,0.508614,0.28617799282074,0.00856701,,,0.260928,0.0201584,39,2021-10-28,2021-10-27,2022-12-14 12:09:24,possible L1 planet,4552,1,False,False,True -383721338,4553.01,TIC 383721338.01,3,4,3,3,4,4,4,14.0,75.6,82.07,1,2,3,PC,PC,10.4895,0.006,,1,spoc-s14-s41-b02,SPOC,18:32:44.78,43:15:10.15,1.825,0.04,10.419,0.044,2459422.817477,0.0015339128,20.3129648533101,0.0010462701,7.18524022593044,0.113316074,5.654366,0.14889,5194.325804186,137.12343,10.8026737253787,0.5280178,133.099142187568,866.290523672647,33.104496,309.746,2.1425,6490.0,125.3,4.23,0.09,1.46589994430542,0.0636935,,,1.327,0.213712,"14,26,40,41,53",2021-10-28,2022-09-02,2022-12-14 12:09:24,period is 20.3 d,4553,1,False,False,True -369768787,4554.01,,3,4,3,3,1,4,4,0.3,2.7,2.75,0,0,0,PC,PC,9.6632,0.006,,1,spoc,SPOC,09:37:16.64,-84:41:46.53,-41.508,0.04,75.703,0.042,2458605.029306,0.007514495,39.1076478247838,0.0005529405,9.02453681642069,1.0797133,0.36645,0.053132,337.456161457023,48.93497,1.46693773025792,1.0123287,10.4193507051613,458.226196199833,7.60769,88.0207,0.1777,5490.0,123.62,4.61819,0.0785336,0.796293020248413,0.0420603,,,0.96,0.122568,"11,12,13,38,39",2021-10-28,2021-10-27,2022-12-14 12:09:24,only one real transit in each Y1 and Y3; period could be double or up to 2 years,4554,1,False,False,True -141770198,4555.01,,3,4,3,3,3,4,4,0.0,11.4,5.68,0,0,1,PC,PC,8.1676,0.006,,1,spoc,SPOC,06:07:30.12,-76:41:26.12,3.751,0.061,72.71,0.056,2458523.844604,0.0070496034,522.627267732424,0.009696043,9.86392368068544,0.62812155,0.259071,0.032764,238.584415353465,30.176264,2.24454258223684,0.62502056,1.45057145606278,279.901052409568,7.2000117,96.7153,0.25065,6199.0,119.629,4.21534,0.0815857,1.40972995758057,0.0594347,,,1.19,0.171303,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2021-10-28,2021-10-27,2022-12-14 12:09:24,weak signal; period may be shorter but unsure due to gap,4555,1,False,False,True -107018378,4556.01,,2,4,2,2,1,4,4,2.2,73.3,3.06,10,0,0,PC,PC,13.0454,0.007,,1,spoc,SPOC,12:11:42.02,-32:31:57.29,-265.946,0.094,-282.684,0.072,2458570.934925,0.0020804948,3.79242208071527,2.1155918e-05,1.23084287531311,0.23922932,4.029282,0.67538,3704.22836365673,621.85425,1.56026239485541,0.21874163,6.98633491047463,414.650410639483,8.390083,36.6717,0.08675,3319.0,157.0,5.03236,0.0204889,0.218553006649017,0.00658607,,,0.187676,0.0200914,"10,37",2021-10-28,2021-10-27,2022-12-14 12:09:24,small planet around M dwarf; low SNR with some odd-even depth difference,4556,1,False,False,True -258917846,4557.01,TIC 258917846.01,3,4,3,3,3,4,4,3.2,37.7,25.0,0,3,1,PC,PC,10.3342,0.006,,1,spoc,SPOC,13:11:39,-47:27:16.45,-11.6,1.8,-13.0,1.7,2458605.101722,0.005006327,32.2924417103338,0.00027789344,8.2622590097767,0.36273,1.671571,0.07686,1538.38948463174,70.788345,5.3693496598772,0.22307065,34.163259648772,616.608596228852,19.238316,220.465,,6013.0,,4.438,,1.23318004608154,,,,,,"11,37,38",2021-10-28,2021-10-27,2022-12-14 12:09:24,,4557,1,False,False,True -220414682,4558.01,,2,4,2,2,3,4,4,1.4,13.7,3.85,0,0,1,PC,PC,8.7147,0.006,,1,spoc,SPOC,04:44:26.96,-59:19:17.21,54.43,0.057,76.79,0.082,2458325.460622,0.0041385298,6.58124759412861,5.9029342e-05,5.00080029713029,0.28150573,0.059466,0.007419,54.7688957773392,6.832763,1.78593979111129,0.6858471,241.948031847633,1005.88949582653,7.1876593,145.248,0.7045,5217.0,122.0,4.438,,2.26311993598938,,,,,,"1,2,3,4,5,6,7,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2021-10-28,2021-10-27,2022-12-14 12:09:24,weak signal; evolved host star,4558,1,False,False,True -271169413,4559.01,,1,4,1,2,3,4,4,3.2,61.2,2.98,4,0,3,PC,PC,10.9139,0.007,,1,spoc,SPOC,14:04:03.25,-30:00:50.85,37.154,0.119,-246.151,0.179,2458597.858372,0.0013970048,3.96498491783226,1.6125543e-05,1.50928263484553,0.45993468,1.325617,0.137034,1220.19335600083,126.20545,1.53728141187943,1.0142795,17.6152591928414,522.506874849898,9.969001,31.6354,0.07385,3476.0,157.0,4.80232,0.00517381,0.426766991615295,0.0128868,,,0.421338,0.020418,"11,38",2021-10-28,2021-10-27,2023-07-11 12:02:59,potential L1 planet,4559,1,False,False,True -307716123,4560.01,,2,4,2,2,3,4,4,2.7,26.3,6.26,0,0,1,PC,PC,9.1007,0.006,,1,spoc,SPOC,08:31:19.73,-68:01:26.04,-8.912,0.037,25.959,0.036,2458441.146325,0.0017272851,3.76346188213788,1.9585088e-05,2.26396173611494,0.25562772,0.148341,0.016076,136.617509742325,14.806425,2.37736946494108,0.9000249,2109.39007064185,1728.45856861877,8.112517,207.571,0.8395,6491.0,129.148,4.00559,0.0907558,1.89742004871368,0.0776357,,,1.33,0.214048,"5,9,10,11,12,29,32,35,36,37,38",2021-10-28,2021-10-27,2022-12-14 12:09:24,weak signal; odd transits more ramp-like than even,4560,1,False,False,True -33716474,4561.01,,2,4,2,2,3,4,4,1.0,18.8,3.84,0,0,1,PC,PC,11.0559,0.006,,1,spoc,SPOC,04:03:50.85,-76:01:17.25,28.616,0.035,93.101,0.033,2458330.064129,0.0023529935,8.93556375121747,4.5230794e-05,1.89255313067714,0.54465955,0.445474,0.053411,410.212642415364,49.192505,1.78421659710692,2.050301,91.9636317984557,789.812091214843,8.785121,179.008,0.5605,5631.0,128.852,4.57723,0.0756473,0.851957023143768,0.0414372,,,1.0,0.123914,"1,2,5,6,8,9,12,13,27,28,29,32,35,36,39",2021-10-28,2021-10-27,2022-12-14 12:09:24,weak signal,4561,1,False,False,True -349576261,4562.01,TIC 349576261.01,1,4,1,3,4,4,4,1.1,36.2,117.77,5,47,3,PC,CP,11.5326,0.006,,1,spoc,SPOC,07:28:02.41,-63:31:04,-5.977,0.043,10.433,0.04,2459132.214628,0.0011401327,225.130133280843,0.0014948952,4.12923942034673,0.099511,11.925345,0.371334,10923.548446824,341.9527,13.3599230738312,0.682737,3.20055143717357,341.134742873077,31.857893,339.605,2.5095,5965.99,109.137,4.28007,0.0724984,1.25231003761292,0.0545578,0.130362,0.0477393,1.09,0.135063,"27,28,29,30,31,32,33,34,35,36,37,38,39",2021-10-28,2021-10-27,2023-03-03 12:02:47,very long period but short duration,4562,1,False,False,True -418255064,4563.01,TIC 418255064.01,3,4,3,3,3,4,4,0.0,17.7,25.65,2,0,2,PC,PC,11.6157,0.006,,1,spoc,SPOC,13:06:36.73,-80:37:01.21,-15.547,0.052,24.202,0.049,2458629.331333,0.0021657841,743.4843887942,0.00025303723,3.80416232059967,0.21732779,6.026746,0.277467,5535.46040853587,255.52345,5.4510787581336,0.4374106,3.99390636312133,360.553087791421,17.914175,156.348,0.635,5342.0,117.665,4.71456,0.0814719,0.697665989398956,0.0356532,,,0.92,0.116229,"11,12,38,39",2021-10-28,2021-10-27,2022-12-14 12:09:24,two transits; period likely shorter than 743 d,4563,1,False,False,True -400786146,4564.01,TIC 400786146.01,5,5,5,5,5,5,5,16.4,72.7,109.59,4,0,1,PC,FP,10.7716,0.006,,1,spoc,SPOC,11:08:00.22,-67:08:59.37,-0.789,0.052,-1.28,0.038,2459323.07979,0.0034511704,22.1557917054499,0.0051152953,7.33301362854,0.253706,4.960845,0.191986,4558.68424679631,176.81038,12.8064545847261,0.6943106,126.507788907913,855.360253677055,28.004599,333.206,2.7475,6123.0,135.602,4.07991,0.0824875,1.62670004367828,0.0768643,,,1.16,0.154554,"37,38",2021-10-28,2021-10-27,2023-03-11 12:02:52,slight centroid offset to W,4564,1,False,False,True -381897917,4565.01,,1,4,4,1,3,4,4,0.0,17.0,5.82,8,4,5,PC,PC,10.3154,0.007,,1,spoc,SPOC,18:00:25.92,-48:28:28.69,27.384,0.067,-376.379,0.056,2458676.610066,0.0021968347,692.515064579292,0.0007926829,2.63831407288164,0.43655467,1.967269,0.161016,1810.28116236078,148.29057,2.27820154326507,0.8695328,0.178452821166757,165.76796426553,12.695424,33.2345,0.0446,3614.0,157.0,4.71017,0.00909829,0.531247973442078,0.0157642,,,0.528076,0.0202764,"13,39",2021-10-28,2021-10-27,2023-06-28 00:00:00,two transits 2 years apart; period likely shorter than 692 days; potential L1 candidate,4565,1,False,False,True -269728501,4566.01,,2,4,2,2,3,4,4,2.8,27.5,3.39,0,0,1,PC,PC,11.5832,0.006,,1,spoc,SPOC,03:47:04.77,-79:20:03.56,79.983,0.053,37.745,0.044,2459036.380784,0.0020931878,2.08445574243216,2.8911407e-05,1.5953180726472,0.29181,0.608531,0.072298,560.320753211067,66.58674,1.65747778206304,2.3630996,220.774404034865,983.120902369862,8.13808,118.765,0.3325,4443.39,115.215,4.57662,0.0943553,0.713303983211517,0.0541357,-0.0704768,0.0719796,0.7,0.0802411,"27,28,32,35,39",2021-10-28,2021-10-27,2022-12-14 12:09:24,weak signal,4566,1,False,False,True -307849973,4567.01,,2,4,2,2,3,4,4,4.1,4.9,2.58,2,0,5,PC,PC,11.9212,0.007,,1,spoc,SPOC,08:34:01.58,-66:46:06.78,63.377,0.041,-37.33,0.036,2458543.8625,0.0012079421,0.840934295590172,1.0832087e-05,1.01531933277497,0.44071305,0.572118,0.079372,526.801181608184,73.10165,1.41328242682164,2.684161,331.565884131348,1088.33403058311,9.030376,91.313,0.19435,3830.0,157.0,4.64404,0.0109469,0.608497977256775,0.0180226,,,0.594967,0.0202493,"9,11,35,36,37,38",2021-10-28,2021-10-27,2022-12-14 12:09:24,weak signal; possibly SV; potential multi,4567,1,True,False,True -307849973,4567.02,,2,4,2,2,3,4,4,0.5,23.1,7.11,2,0,5,PC,PC,11.9212,0.007,,2,spoc,SPOC,08:34:01.58,-66:46:06.78,63.377,0.041,-37.33,0.036,2458548.585409,0.008521351,23.5422221212153,0.00032987917,3.5680356558724,0.60387236,1.41124,0.197583,1298.95603140093,181.96413,2.56229087801977,0.34091938,3.90052129864165,358.426748887194,8.639816,91.313,0.19435,3830.0,157.0,4.64404,0.0109469,0.608497977256775,0.0180226,,,0.594967,0.0202493,"9,11,35,36,37,38",2021-10-28,2021-10-27,2022-12-14 12:09:24,weak signal; possible multi; potential L1 planet,4567,2,True,False,True -447088034,4568.01,,2,4,2,2,3,4,4,5.1,74.2,5.96,0,0,2,PC,PC,6.9608,0.006,,1,spoc,SPOC,15:54:48.54,-65:54:04.04,16.459,0.035,21.305,0.058,2458636.789514,0.0016491793,14.0064208130979,5.386308e-05,2.11232509232604,0.4717477,0.312555,0.038178,287.832501617185,35.162624,2.31030031033365,2.4881856,140.906257746441,878.723659320222,8.266566,48.0378,0.0833,5899.0,126.849,4.22221,0.0766885,1.32623994350433,0.0619095,,,1.07,0.133785,"12,39",2021-10-28,2021-10-27,2023-05-27 00:00:00,weak signal; possible ramps before and after transit; star is part of a visual binary,4568,1,False,False,True -149126400,4569.01,,5,5,5,5,5,5,5,3.7,30.7,6.28,3,0,0,PC,FP,15.764,0.008,,1,spoc,SPOC,05:24:06.75,-63:01:43.89,412.58,0.109,-214.467,0.1,2459036.84286,0.0049288743,1.22531587062166,3.3922515e-05,3.43575795300198,0.65840364,6.541158,0.92843,6006.51750693148,854.75,2.38200116599451,0.4548741,72.0671412622925,743.111655763343,7.770379,212.947,2.3335,3725.0,157.0,4.92832,0.00110036,0.29764398932457,0.0114841,,,0.273932,0.0217968,"27,30,35,36,37,38,39",2021-10-28,2021-10-27,2023-01-04 12:03:40,weak signal; somewhat V-shaped; possibly off-target or SV,4569,1,False,False,True -137402055,4570.01,,5,5,5,5,5,5,5,43.5,37.1,317.0,0,0,1,KP,KP,15.0523,0.009,,1,spoc-s14-s55-b0A-KP,SPOC,19:28:16.39,38:50:31.92,-1.827,0.063,-14.356,0.07,2459391.459891,0.0023744695,1.9737719355324,1.8750794e-05,2.17717014323531,0.20392774,35.704738,4.603161,32350.4373938519,4230.6934,14.2783974024637,1.7593518,265.974711338496,1029.98247692402,12.472726,642.051,16.232,4664.23,99.2267,4.61963,,0.697970986366272,,0.198857,0.0142384,0.74,,"40,41,54,55",2021-11-01,2023-03-15,2023-03-24 12:12:10,Kepler-785 b,4570,1,False,False,True -48451130,4571.01,,5,5,5,5,5,5,5,3.7,37.9,87.45,0,1,1,KP,KP,13.7589,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,18:59:31.19,49:16:01.27,-2.631,0.033,6.42,0.033,2459413.718798,0.0035896348,30.3599811785999,0.00031322188,6.08237453261554,0.25691837,21.21226,0.675409,19347.5990647253,621.8815,11.2141215967871,0.4613171,9.8942348601578,452.340322493766,32.561897,436.257,3.177,4815.0,122.0,4.5293,,0.795117974281311,,,,0.78,,"40,41,54,55",2021-11-01,2023-03-15,2023-03-24 12:12:10,Kepler-486 b,4571,1,False,False,True -154940895,4572.01,,2,4,2,2,3,4,4,0.5,22.8,3.1,1,0,2,PC,PC,11.9212,0.007,,1,spoc-s14-s55-b0A-PC,SPOC,14:00:11.73,88:36:43.57,111.901,0.049,91.802,0.041,2458822.701914,0.0027605765,13.475546134167,7.140521e-05,2.27639476646416,0.70866597,1.184199,0.13529,1090.09344135194,124.59899,1.57187190696552,1.375563,5.05495158793085,382.427398993232,9.094992,61.7358,0.0897,3710.0,157.0,4.7642,0.0070109,0.469523996114731,0.0140048,,,0.467145,0.0203219,"19,20,25,26,40,47,52,53",2021-11-01,2023-03-09,2023-03-24 12:12:10,potential L1 planet; period updated to ~13.5 days with spoc-s14-s50 multisector,4572,1,False,False,True -362103298,4573.01,,2,4,2,2,4,4,4,0.7,3.2,2.59,0,3,4,PC,PC,11.0444,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,17:53:00.9,66:08:04.51,42.175,0.053,-17.355,0.053,2458693.433927,0.0031253586,10.7155521233118,4.8808117e-05,2.7277770398273,0.44978714,0.460775,0.04852,424.299807029001,44.6875,1.41603907997383,0.5014855,15.8954977011942,509.258494956984,8.657228,72.8333,0.14325,4207.0,121.244,4.66778,0.106103,0.623616993427277,0.0552965,,,0.66,0.0813212,"14,15,16,19,22,25,26,40,41,48,49,52,53,57,58,59,60",2021-11-01,2023-05-19,2023-06-16 12:14:51,,4573,1,False,False,True -298428237,4574.01,,2,4,2,2,4,4,4,11.4,69.7,4.77,2,2,4,PC,PC,11.7495,0.007,,1,qlp-s55-tois,SPOC,20:48:15.7,24:29:04.38,52.78,0.063,4.55,0.053,2459823.526701,0.0021049,0.768988,2.3e-06,0.512,0.211,0.945002,0.404638,870.0,372.616,2.01326,1.15468,70.4453,807.0,11.0,69.81,0.22395,3734.0,157.0,4.69992,0.0093548,0.54,0.02,,,0.538988,0.0202252,"14,15,41,55",2021-11-01,2022-12-07,2022-12-16 12:08:26,some centroid variation between sectors but not centered on another star,4574,1,False,False,True -372759746,4575.01,,2,4,2,2,3,4,4,0.9,18.5,7.52,0,4,2,PC,PC,10.3203,0.006,,1,qlp-s48-tois,SPOC,11:40:47.25,71:58:43.41,-4.996,0.06,17.883,0.036,2459589.709151,0.0093231,27.9818653,0.001132,4.705,0.779,0.553867,0.001969,510.0,1.81324,2.65679,0.209649,26.8608,634.0,6.0,194.791,0.905,5905.0,124.107,4.34239,0.0772149,1.16,0.05,,,1.073,0.137558,"14,20,21,40,41,47,48",2021-11-01,2022-07-08,2022-12-14 12:09:24,low SNR,4575,1,False,False,True -157667414,4576.01,,1,4,1,1,4,4,4,6.4,87.6,12.15,3,2,5,PC,PC,10.1658,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,18:20:54.44,16:27:09.73,-0.658,0.102,4.336,0.11,2459010.844549,0.0034868133,10.4834062234393,6.563504e-05,3.29817771607206,0.19752139,1.921155,0.158549,1767.88418345692,146.01807,3.51194123467329,0.3759256,20.3357653813369,541.607762579293,12.343209,54.9588,0.1899,4271.0,127.626,4.60188,0.110252,0.677846014499664,0.0625503,,,0.67,0.081439,"26,40,53",2021-11-01,2023-03-09,2023-03-24 12:12:10,potential L1 planet,4576,1,False,False,True -138364831,4577.01,,5,5,5,5,5,5,5,20.7,53.1,88.55,0,2,1,KP,KP,14.4669,0.011,,1,spoc-s14-s55-b0A-KP,SPOC,19:35:29.26,38:25:22.51,-0.298,0.045,-6.646,0.055,2459391.112176,0.002098081,1.625512355222,1.59479e-05,2.65900291533393,0.23525885,11.016602,0.810943,10095.3614496826,746.6269,11.2971803470103,0.77843285,1238.86612225465,1513.12861311516,13.056615,938.715,30.934,5483.74,114.91,4.38272,,1.04426002502441,,0.388,0.111,0.96,,"40,41,54,55",2021-11-01,2023-03-15,2023-03-24 12:12:10,Kepler-685 b,4577,1,False,False,True -154474036,4578.01,,2,4,2,2,3,4,4,2.9,38.9,8.87,0,2,2,PC,PC,10.7757,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,12:16:50.63,75:08:24.85,56.817,0.039,48.84,0.033,2459634.198599,0.0046933,8.62390972455811,6.340511e-05,2.61929640884156,0.27989498,0.733251,0.16911,675.121080574598,155.74353,2.91769457857877,0.5352698,119.024778956859,842.420827357808,10.094296,182.249,0.747,5917.0,123.979,4.58257,0.0759372,0.87873500585556,0.0406809,,,1.077,0.138334,"14,20,21,40,41,47,48,60",2021-11-01,2023-05-25,2023-06-16 12:14:51,potential L1 planet; low SNR,4578,1,False,False,True -27769688,4579.01,,5,5,5,5,5,5,5,0.6,23.3,23.35,0,4,8,KP,KP,11.3523,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,19:44:31.88,48:58:38.31,2.458,0.057,-15.926,0.058,2458733.312542,0.0040153395,88.4956829658291,0.010978528,6.95108488405611,0.39727047,3.086327,0.296918,2838.57565688213,273.43457,5.15743025745616,0.5870564,0.452397113855949,209.170149095203,8.96966,223.757,1.7975,5509.61,124.841,4.47728,0.0799178,0.939951002597809,0.049598,0.155811,0.0136096,0.967,0.119071,"14,15,40,41,54,55",2021-11-01,2023-03-15,2023-03-24 12:12:10,Kepler-396 c / KOI 2672.01; multi,4579,1,False,False,True -219742885,4580.01,,2,4,4,2,4,4,4,1.3,13.7,0.17,5,2,4,PC,PC,8.5954,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,16:09:39.61,65:49:40.87,92.938,0.037,-259.033,0.05,2458684.084719,0.0016142612,0.916799170796793,1.2274705e-05,1.3578155462139,0.10961732,0.042386,0.007314,39.0383592350219,6.7366953,0.611587058155063,1.0230371,2437.34333064185,1792.04506555304,7.5813622,67.7223,0.10305,5659.0,187.0,5.62196,0.266946,0.973028004169464,0.0505728,,,0.98,0.126658,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,50,51,52,53,54,55",2021-11-01,2023-03-09,2023-03-24 12:12:10,shallow transit; centroids scattered around target,4580,1,False,False,True -273231214,4581.01,,5,5,5,5,5,5,5,8.6,46.2,89.07,0,8,8,KP,KP,11.7889,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,19:49:19.94,41:53:28.03,1.967,0.038,1.365,0.044,2458719.361769,0.004101746,22.3428773004532,8.6310654e-05,6.70012799367121,0.21941786,6.462955,0.263141,5934.92001164691,242.33246,11.3355032379005,0.8318238,99.0860360229935,804.679362583775,20.2419,477.052,4.9495,6184.0,129.495,4.20121,0.0908924,1.42864000797272,0.0894347,0.11,0.07,1.183,0.16666,"14,15,41,54,55",2021-11-01,2023-03-15,2023-03-24 12:12:10,KOI-94 d,4581,1,True,False,True -273231214,4581.02,,5,5,5,5,5,5,5,,,59.27,0,8,8,KP,KP,11.7889,0.006,,2,spoc-s54-b0A,SPOC,19:49:19.94,41:53:28.03,1.967,0.038,1.365,0.044,2459774.45043,0.005147671,0.0,0.0,6.61712060067757,0.5140849,4.09826,0.431446,3767.52174776642,397.2976,8.92050856114734,1.2158191,138.57536421797,875.066900159662,9.250516,477.052,4.9495,6184.0,129.495,4.20121,0.0908924,1.42864000797272,0.0894347,0.11,0.07,1.183,0.16666,54,2022-12-01,2022-12-01,2022-12-14 12:09:24,single transit of Kepler-89 e at ~2774 TBJD,4581,2,True,True,True -219854519,4582.01,TIC 219854519.01,3,5,5,3,4,4,4,4.8,21.5,59.0,0,2,4,PC,CP,10.5481,0.007,,1,qlp-s52-tois,SPOC,17:07:26.43,68:51:56.25,-20.084,0.04,1.059,0.045,2459705.280402,0.0033585,31.0345576,0.0001593,11.606,0.487,1.336278,0.000356,1230.0,0.328279,8.89964,,73.2914,815.0,35.0,383.846,3.595,5234.0,122.0,4.438,,2.57,,,,,,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52",2021-11-01,2022-11-18,2023-03-03 12:02:44,,4582,1,False,False,True -103604037,4583.01,,5,5,5,5,5,5,5,11.2,50.6,69.61,0,1,0,PC,FA,10.571,0.018,,1,spoc,SPOC,10:03:34.14,67:59:24.72,1.96,2.0,-80.99,2.0,2459390.798699,0.0031788826,19.5202385591324,0.0025303585,4.09605804785528,0.30676994,3.221162,0.207777,2962.40355654555,191.35121,,,49.6259917076337,676.935124611174,11.220469,,,5780.0,,4.438,,,,,,,,"40,41",2021-11-01,2021-11-01,2022-12-14 12:09:24,no stellar parameters,4583,1,False,False,True -120255950,4584.01,,5,5,5,5,5,5,5,2.5,35.4,21.21,0,4,14,KP,KP,10.6114,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,18:57:53.34,39:54:42.8,10.865,0.04,17.52,0.049,2459399.639202,0.0014361754,31.5786847112054,0.00017918501,2.12950550935654,0.47941405,2.30347,0.143613,2119.32566761632,132.26393,4.87433890720114,2.462469,27.0094646836455,581.4317504446,19.077679,185.875,0.831,5696.0,99.3593,4.40025,0.0686936,1.05177998542786,0.0430553,0.11,0.1,1.014,0.125475,"40,41,53,54",2021-11-01,2023-03-15,2023-03-24 12:12:10,Kepler-1656 b,4584,1,False,False,True -233529335,4585.01,,2,4,2,2,4,4,4,,,7.12,0,2,6,PC,PC,9.64656,0.006,,1,spoc-s14-s41-b02,SPOC,18:40:48.8,62:30:22.85,26.287,0.036,-10.478,0.038,2458915.989125,0.010644719,0.0,0.0,12.8976377724944,1.159778,0.417823,0.054629,384.755274586267,50.313766,2.5653804578668,1.0226225,1.06015042821995,258.798421350205,7.3422637,156.873,0.507,6000.0,190.0,5.03448,0.391527,1.28866994380951,0.0635578,,,1.052,0.133328,"14,15,16,17,19,20,21,22,23,24,25,26,40,41",2021-11-01,2022-11-15,2022-12-14 12:09:24,single transit,4585,1,False,True,True -416534875,4586.01,,2,4,2,2,4,4,4,2.6,32.0,5.53,0,2,4,PC,PC,10.7382,0.006,,1,qlp-s48-tois,SPOC,10:58:05.91,59:25:48.65,25.618,0.04,-4.73,0.037,2459632.557861,0.0070951,5.3909915,6.79e-05,1.954,0.482,0.619046,0.003981,570.0,3.66698,2.22182,0.218502,91.5265,861.0,8.0,150.445,0.7265,5405.0,124.416,4.53628,0.0816835,0.87,0.05,,,0.94,0.12037,"14,21,41,48",2021-11-01,2022-07-12,2022-12-14 12:09:24,weak signal,4586,1,False,False,True -137683938,4587.01,,3,5,5,3,5,4,5,13.3,55.2,44.43,0,0,2,KP,KP,14.5505,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,19:30:19.17,37:22:34.54,-2.58,0.07,-30.239,0.069,2459393.659836,0.002058617,3.29031359088435,2.6656375e-05,1.74652534818498,0.22024432,16.777885,1.564134,15334.2181362341,1439.5836,7.52960694675421,0.68621206,37.0869990994312,629.397731098928,10.759113,258.979,2.951,3579.0,157.0,4.67905,0.0107839,0.567309021949768,0.0175218,,,0.560561,0.0207092,"40,41,54,55",2021-11-01,2023-03-15,2023-03-24 12:12:10,Kepler-1624 b,4587,1,False,False,True -48031665,4588.01,,2,4,2,2,4,4,4,2.3,33.3,9.22,0,5,5,PC,PC,9.06584,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,18:48:00.1,48:32:32.12,10.433,0.051,8.646,0.058,2458689.149116,0.0034040923,13.1187745915961,6.328044e-05,4.52784131740058,0.65618974,0.361613,0.023999,333.002783119974,22.103518,2.98578714811039,1.5011593,459.905412338774,1181.10057163683,11.703625,225.181,1.4505,7800.0,100.24,4.31091,0.0707776,1.57457995414734,0.0364874,0.21,0.08,1.85,0.286597,"14,26,40,41,53,54,55",2021-11-01,2023-03-09,2023-03-24 12:12:10,TOI 4588.01 and KOI 972.01,4588,1,False,False,True -164458714,4589.01,,5,5,5,5,5,5,5,2.1,31.0,7.77,0,7,17,KP,KP,9.03131,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,18:52:36.25,45:08:24.3,61.515,0.042,61.846,0.048,2458687.967262,0.0039974335,17.8335418768708,0.00010673799,4.60482115216423,0.4081011,0.337277,0.035517,310.595038351079,32.71164,2.69969887562836,0.65901595,139.984986543197,877.283809747525,9.868545,147.527,0.492,6304.0,141.297,4.22164,0.0935252,1.42748999595642,0.0694674,0.02,0.1,1.238,0.200415,"14,26,40,41,53,54,55",2021-11-01,2023-03-15,2023-03-24 12:12:10,Kepler-410 A b,4589,1,False,False,True -154923406,4590.01,,2,4,2,2,3,4,4,0.9,29.6,4.32,0,2,2,PC,PC,9.6446,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,13:32:46.83,84:30:52.94,-125.001,0.037,-38.631,0.036,2458703.264605,0.0023876764,25.9213508724218,9.159385e-05,2.12083921828654,0.4743136,0.640032,0.072656,589.317152741666,66.9165,1.91197018911707,2.278492,13.4574782511118,488.495616810887,8.148816,72.1096,0.1143,5011.0,125.831,4.56555,0.0879681,0.78667801618576,0.0502764,,,0.83,0.100782,"14,19,20,21,26,40,47,53,59,60",2021-11-01,2023-05-19,2023-06-16 12:14:51,low SNR; actual period is ~25.9 days found in spoc-s14-s60 multisector,4590,1,False,False,True -356868487,4591.01,,5,5,5,5,5,5,5,21.4,63.2,317.0,3,3,1,PC,FP,11.7167,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,18:23:21.35,69:51:42.93,-12.235,1.392,-2.898,1.392,2459692.968529,0.0008986,27.9102929440988,0.000107296706,10.6336017912165,0.07870411,20.03037,0.199199,18279.5176542606,183.45238,19.2884325772855,0.13362968,55.0960465744481,694.864074897943,86.54392,526.166,,6327.0,,4.438,,1.39013004302979,,,,,,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,56,57,58,59,60",2021-11-01,2023-05-19,2023-06-16 12:14:51,likely too large for insolation; ~2000 ppm secondary at phase 0.18,4591,1,False,False,True -122785299,4592.01,,5,5,5,5,5,5,5,10.1,36.5,107.82,0,1,1,KP,KP,14.575,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,19:24:33.03,36:34:38.44,7.99,0.044,-2.449,0.05,2459392.140389,0.0025442983,8.88495108586945,0.0001548176,1.99585070202848,0.38120145,18.579719,2.102222,16966.9658671274,1934.3452,12.6838436627397,2.6857061,94.2936983866037,794.768081265581,9.239769,835.356,18.3645,5160.0,123.0,4.39775,,0.977053999900818,,,,0.87,,"40,41,54",2021-11-01,2023-03-15,2023-03-24 12:12:10,Kepler-75 b,4592,1,False,False,True -399954349,4593.01,,2,5,5,2,5,4,5,4.9,52.6,13.87,0,16,12,KP,KP,11.6052,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,19:10:25.37,49:31:24.22,13.516,0.036,32.603,0.035,2458689.578278,0.0024529248,7.83446882552987,2.6944654e-05,3.12608025341368,0.19029874,2.192536,0.138634,2017.36287711264,127.67857,3.79733534697305,0.35556725,51.6399558569558,683.701000066759,13.867318,153.676,0.454,4837.0,138.283,4.60493,0.0969596,0.731145977973938,0.0558291,0.11,0.1,0.785,0.0938175,"14,26,40,41,53,54,55",2021-11-01,2023-03-15,2023-03-24 12:12:10,Kepler-411 c,4593,1,True,False,True -399954349,4593.02,,5,5,5,5,5,5,5,3.3,33.9,5.25,0,16,12,KP,KP,11.6052,0.006,,2,spoc-s14-s55-b0A-KP,SPOC,19:10:25.37,49:31:24.22,13.516,0.036,32.603,0.035,2458684.471974,0.0016365838,3.00519286221904,1.3073835e-05,1.81116477691183,0.36130047,0.80139,0.102066,737.835583116959,94.001976,2.14343551791933,0.97001,185.282957003183,940.976154183718,7.8623304,153.676,0.454,4837.0,138.283,4.60493,0.0969596,0.731145977973938,0.0558291,0.11,0.1,0.785,0.0938175,"14,26,40,41,53,54,55",2023-03-23,2023-03-23,2023-03-26 12:03:21,Kepler-411 b,4593,2,True,False,True -158555987,4594.01,,3,5,5,3,5,4,5,10.3,39.3,72.99,0,15,2,KP,KP,11.8995,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,19:11:13.73,43:11:19.68,0.685,0.036,0.621,0.039,2459747.24026,0.003165051,5.54608109422837,1.731399e-05,2.75097114748972,0.16848858,2.303604,0.147881,2119.44857570168,136.19446,10.0832239262824,0.6277355,1504.94756846606,1588.54708500474,15.500086,847.299,14.2685,6963.86,138.256,4.07013,0.092063,1.88936996459961,0.0908442,0.032,0.015,1.53,0.263806,"14,40,41,53,54,55",2021-11-01,2023-03-15,2023-03-24 12:12:10,KOI 3728.01 / Kepler-1517 b,4594,1,False,False,True -159725995,4595.01,,5,5,5,5,5,5,5,13.6,16.0,317.0,0,0,1,KP,KP,14.9767,0.007,,1,spoc-s14-s55-b0A-KP,SPOC,19:25:06.16,47:19:46.24,2.018,0.055,-0.284,0.054,2459394.278533,0.0033511382,3.7705864541407,4.517575e-05,3.9149764099662,0.3688026,13.975846,1.06518,12789.7368576989,980.5863,15.8224619656539,1.4224659,878.88277789532,1388.68098289715,11.841265,1898.26,111.615,5897.0,123.0,4.18651,,1.38188004493713,,,,1.07,,"40,41,54,55",2021-11-01,2023-03-15,2023-03-24 12:12:10,Kepler-762 b,4595,1,False,False,True -86951294,4596.01,,1,4,1,1,3,4,4,7.6,75.6,7.9,1,3,1,PC,PC,9.2564,0.006,,1,qlp-s45-tois,SPOC/QLP,06:34:49.88,27:23:16.86,-7.294,0.086,-26.161,0.074,2459550.067606,0.0021797,4.1193984,0.0002051,2.109,0.152,0.825473,0.000533,760.0,0.490572,2.71566,0.155313,186.214,1029.0,25.0,93.4913,0.44985,5598.0,121.1,4.45,0.08,0.98,0.05,,,0.99,0.126377,"43,44,45",2021-11-01,2022-03-11,2023-01-04 00:00:00,possible centroid offset towards no particular star; some depth aperture correlation,4596,1,False,False,True -68573534,4597.01,,3,4,3,3,4,4,4,145.9,530.2,115.65,2,2,3,PC,PC,7.82403,0.006,,1,qlp-s44-ffi,SPOC/QLP,04:54:49.36,22:08:46.98,-25.384,0.138,-24.687,0.067,2459523.197223,0.0031309,4.6663795,0.0005406,2.526,0.215,7.517545,0.008737,6900.0,8.04671,13.2255,0.621088,711.568,1438.0,23.0,125.189,1.1175,7712.0,240.8,4.31,0.08,1.57,0.05,,,1.814,0.307355,"43,44",2021-11-01,2022-01-07,2022-12-14 12:09:24,,4597,1,False,False,True -29017001,4598.01,,3,4,3,3,3,4,4,20.2,86.1,50.75,0,3,2,PC,PC,9.58025,0.006,,1,qlp-s44-ffi,QLP,03:23:08.93,24:41:24.14,20.982,0.098,-7.522,0.07,2459513.491722,0.0018833,8.2008655,0.0004273,2.093,0.412,1.477606,0.021424,1360.0,19.7321,8.1525,0.938824,317.729,1176.0,20.0,208.41,2.213,6011.0,133.1,3.99,0.08,1.76,0.08,,,1.111,0.149584,"18,42,43,44",2021-11-01,2022-01-07,2022-12-14 12:09:24,,4598,1,False,False,True -307809773,4599.01,,1,5,5,1,4,4,4,15.4,33.0,2.73,0,2,5,PC,CP,7.89863,0.008,,1,qlp-s45-ffi,SPOC/QLP,06:37:09.97,17:33:58.57,-764.522,0.088,337.802,0.075,2459547.761052,0.0010623,2.7695085,7.16e-05,1.232,0.246,0.705958,0.004172,650.0,3.84284,1.47334,0.109683,175.614,1014.0,32.0,10.0055,0.00505,3807.0,157.0,4.77,0.01,0.47,0.01,,,0.463011,0.020376,"43,44,45",2021-11-01,2022-01-24,2022-12-14 12:09:24,potential multi; potential L1 candidate,4599,1,True,False,True -307809773,4599.02,,1,5,5,1,4,4,4,45.3,554.5,12.35,0,2,5,PC,CP,7.89863,0.008,,2,qlp-s45-ffi,SPOC/QLP,06:37:09.97,17:33:58.57,-764.522,0.088,337.802,0.075,2459547.422942,0.0010147,5.7057959,0.000129,0.892,0.128,0.901535,0.577842,830.0,532.071,3.57973,1.18615,30.1876,653.0,29.0,10.0055,0.00505,3807.0,157.0,4.77,0.01,0.47,0.01,,,0.463011,0.020376,"43,44,45",2021-11-01,2022-01-24,2022-12-14 12:09:24,TOI 4599.02; potential multi,4599,2,True,False,True -232608943,4600.01,,1,4,1,3,4,4,4,0.8,32.3,37.59,5,9,4,PC,PC,11.8787,0.006,,1,spoc-s14-s60-b0A-PC,CTOI,17:13:48.09,64:33:58.22,7.459,0.042,0.215,0.046,2459584.765681,0.0031528,82.6876878,0.0004452,7.52402979928273,0.19026233,7.112644,0.149642,6529.57651258169,137.81633,6.82369246774588,0.4793511,3.31592817838731,344.168428175383,26.0,216.056,1.1645,5073.0,123.9,4.53,0.08,0.831915020942688,0.0509397,,,0.849,0.100353,"14,15,16,17,18,19,21,22,23,24,25,26,40,41,47,48,49,51,52,53,54,55,56,57,58,59,60",2021-11-02,2023-05-18,2023-06-16 12:14:51,single transit near ~1786 TBJD unrelated to this signal,4600,1,False,False,True -349071261,4601.01,,3,4,4,3,4,4,4,137.9,156.8,317.0,7,4,5,PC,PC,10.3099,0.006,,1,spoc-s44-b0A,SPOC/QLP,05:03:15.39,24:13:23.77,4.301,0.095,-14.898,0.061,2459501.2671,0.0005891561,2.78752325411355,0.000117913085,1.73841207453019,0.043914832,8.805835,0.247014,8077.67261281405,227.48209,15.2099907089392,2.913487,1379.13725638292,1554.25267057066,56.89227,225.749,2.3855,6408.3,122.5,4.34,0.1,1.27487003803253,0.0778015,0.139,0.057,1.288,0.209271,"43,44",2021-11-02,2022-01-10,2022-12-14 12:09:24,V-shaped,4601,1,False,False,True -467651916,4602.01,,1,4,1,1,4,4,4,10.9,110.8,7.05,0,3,3,PC,PC,7.7746,0.006,,1,spoc-s42-s46-b0A,SPOC/QLP,04:02:24.08,31:19:47.41,-115.36,0.093,-192.354,0.062,2459516.545335,0.0027423,3.98120913657934,0.00024357489,3.4681720649703,0.2729579,0.506428,0.019847,466.328295431402,18.279762,2.55044898549666,0.78361243,603.693469875779,1264.22352956742,23.880322,63.0637,0.1994,6011.9,122.6,4.36,0.08,1.15664005279541,0.0530076,,,1.11,0.148627,"43,44",2021-11-02,2022-07-15,2022-12-14 12:09:24,possible centroid offset to NE,4602,1,False,False,True -437856897,4603.01,,3,5,5,3,4,4,4,24.2,82.1,60.42,0,13,3,PC,CP,8.6554,0.006,,1,qlp-s45-tois,SPOC/QLP,05:35:27.82,21:17:39.27,0.171,0.079,-23.035,0.061,2459549.120518,0.0016151,7.2454963,0.0002753,2.048,0.269,1.108016,0.000849,1020.0,0.782026,9.01953,0.55427,92.69,864.0,37.0,225.643,2.458,6169.1,128.7,3.65,0.08,2.68,0.15,0.287,0.116,1.176,0.164146,"43,44,45",2021-11-02,2022-03-11,2023-03-22 12:03:01,variable host,4603,1,False,False,True -27039476,4604.01,,5,5,5,5,5,5,5,3.7,45.4,3.03,0,1,8,KP,KP,9.3928,0.006,,1,qlp,QLP,05:05:47.03,21:32:53.52,30.712,0.098,-97.082,0.056,2459496.921217,0.0412562,2.2254527,5.64e-05,1.701,0.191,0.304049,0.000208,280.0,0.191349,1.55656,0.0911609,476.883,1301.0,25.0,90.0562,0.49265,5509.0,121.7,4.5,0.08,0.92,0.05,,,0.97,0.123457,43,2021-11-02,2021-11-09,2022-12-14 12:09:24,weak detection; K2-291 b; detected with combined QLP + K2 data,4604,1,False,False,True -19155785,4605.01,,5,5,5,5,5,5,5,25.7,125.5,28.23,3,2,3,PC,FP,10.2207,0.006,,1,qlp-s45-tois,QLP,05:26:51.77,18:25:11.34,44.849,0.092,-33.859,0.066,2459550.035092,0.0016388,3.1440629,0.0001175,2.188,0.36,2.032227,0.190847,1870.0,175.761,5.78315,1.48212,2017.46,1867.0,38.0,148.574,1.229,5691.0,162.2,4.45,0.08,1.0,0.05,,,1.013,0.134258,"43,44,45",2021-11-02,2022-03-11,2023-01-06 12:03:20,possible centroid offset and secondary in QLP s44; very sight centroid shift in QLP s45-tois,4605,1,False,False,False -68577662,4606.01,,5,5,5,5,5,5,5,65.0,263.2,108.41,0,8,6,KP,KP,9.31437,0.006,,1,qlp-s44-ffi,SPOC/QLP,04:55:04.03,18:39:15.56,62.064,0.077,-48.245,0.051,2459522.948827,0.0019656,11.1684037,1.26e-05,5.354,0.399,10.539198,0.002336,9660.0,2.15196,12.77,0.620274,312.155,1171.0,278.0,130.72,0.7635,5981.0,139.4,4.31,0.08,1.22,0.06,,,1.1,0.145955,"43,44",2021-11-02,2022-01-07,2022-12-14 12:09:24,K2-232 b,4606,1,False,False,True -28294709,4607.01,,2,4,2,2,4,4,4,4.6,44.9,9.79,0,3,6,PC,PC,9.67952,0.006,,1,qlp,QLP,01:55:37.25,24:07:05.35,62.062,0.086,-24.561,0.09,2459498.183252,0.0026956,5.5109534,6.27e-05,2.411,0.367,0.56473,0.001206,520.0,1.11034,3.08109,0.201652,262.935,1121.0,11.0,180.022,1.5405,6404.0,164.9,4.31,0.09,1.31,0.06,,,1.286,0.216007,"17,42,43",2021-11-09,2021-11-09,2022-12-14 12:09:24,possible SV,4607,1,False,False,True -427740976,4608.01,,3,4,3,3,4,4,4,99.0,149.6,317.0,5,11,11,PC,PC,11.4512,0.009,,1,qlp-s44-ffi,SPOC/QLP,03:58:35.33,25:23:18.91,-1.07,0.093,-5.539,0.049,2459522.975096,0.0007225,2.3494907,1e-06,2.66,0.182,9.914472,0.432244,9090.0,398.032,18.7348,3.4225,7752.07,2614.0,102.0,550.363,18.387,7418.5,106.2,4.31,0.09,1.51,0.07,0.22,0.024,1.7,0.283231,"43,44",2021-11-09,2022-01-07,2022-12-14 12:09:24,host is possibly a pulsating star; detected with combined TESS and K2 data,4608,1,False,False,True -118820486,4609.01,,3,4,4,3,3,4,4,112.4,151.1,317.0,3,2,2,PC,PC,10.4117,0.006,,1,qlp-s44-ffi,QLP,04:41:29.81,21:15:27.84,-0.528,0.099,-6.052,0.051,2459524.097251,0.0010374,2.6922358,9.76e-05,3.199,0.073,10.19939,0.001339,9350.0,1.23285,16.7316,2.46911,2656.5,2000.0,79.0,349.025,6.665,7461.4,102.4,4.22,0.15,1.68,0.25,0.172,0.034,1.713,0.279496,"43,44",2021-11-09,2022-01-07,2022-12-14 12:09:24,SG1 should clear the bright neighbor (TIC 1188204860). Large PC.,4609,1,False,False,False -1950736,4610.01,,2,4,2,2,4,4,4,3.9,45.3,3.01,0,2,3,PC,PC,10.0745,0.006,,1,qlp-s46-tois,QLP,05:16:10.38,30:35:06.26,-112.604,0.088,-71.913,0.06,2459548.167513,0.002641,3.1130066,4.14e-05,2.198,0.365,0.543004,0.001225,500.0,1.12825,1.55514,0.169906,114.273,910.0,15.0,47.914,0.1197,4104.0,124.6,4.57,0.11,0.69,0.07,,,0.64,0.0784044,"19,43,44,45",2021-11-09,2022-03-11,2023-02-08 00:00:00,Possible SV,4610,1,False,False,False -68646526,4611.01,,1,4,1,1,4,4,4,3.8,44.4,6.17,0,4,8,PC,PC,9.02078,0.006,,1,qlp-s44-ffi,SPOC/QLP,04:55:21.98,19:16:51.33,36.117,0.118,5.562,0.068,2459520.906327,0.0038721,5.2289874,1.21e-05,3.386,0.211,0.347491,8.8e-05,320.0,0.0811669,2.3513,0.114674,538.64,1342.0,31.0,128.654,0.835,6213.0,161.2,4.3,0.09,1.28,0.06,,,1.196,0.181151,"43,44",2021-11-09,2022-01-07,2022-12-14 12:09:24,K2 multi (EPIC247164043),4611,1,False,False,True -97735908,4612.01,,5,5,5,5,5,5,5,158.8,166.8,317.0,0,0,1,KP,KP,8.22398,0.006,,1,qlp-s45-tois,SPOC/QLP,06:10:39.37,30:57:25.68,16.74,0.078,-2.405,0.065,2459549.474338,0.0002356,4.113769,2.1e-05,4.941,0.019,6.151805,2.4e-05,5650.0,0.0221907,14.5845,0.672289,1438.39,1715.0,434.0,134.058,0.7975,6327.0,132.2,3.99,0.09,1.88,0.09,,,1.249,0.195063,"43,44,45",2021-11-09,2022-03-11,2022-12-14 12:09:24,KELT-2 A b,4612,1,False,False,True -436652523,4613.01,,3,5,5,3,3,4,4,34.9,49.9,317.0,0,3,3,PC,APC,12.0336,0.006,,1,qlp-s44-ffi,SPOC,04:50:32.07,13:36:48.48,,,,,2459523.626981,0.0013614,4.5461673,4.4e-06,3.176,0.216,5.311363,0.00656,4880.0,6.04242,19.1579,,2452.06,,61.0,678.46,,5341.8,367.5,3.98,0.02,2.4,,0.041,0.021,,,"5,32,43,44",2021-11-09,2022-01-07,2022-12-14 12:09:24,v-shaped; marginal secondary,4613,1,False,False,True -408809625,4614.01,,3,4,3,3,4,4,4,26.8,142.6,77.37,2,3,5,PC,PC,11.0302,0.006,,1,spoc-s42-s43-b0A,SPOC,02:32:36.84,16:20:15.44,-5.684,0.153,24.086,0.121,2459448.534256,0.00069150963,13.8338893192443,0.0003857336,1.42605979597692,0.05642194,9.705611,0.481066,8899.36215599414,442.98007,10.4349704328144,1.7835469,22.7363971097508,556.929421020419,37.925327,101.255,0.728,4225.95,104.703,4.37245,0.0962712,0.876814007759094,0.070892,-0.063,0.033,0.661,0.079287,"42,43",2021-11-09,2022-01-26,2022-12-14 12:09:24,V-shaped; could be an eccentric EB with primary transit in gap,4614,1,False,False,True -84599716,4615.01,,3,4,3,3,3,4,4,37.4,51.9,317.0,1,0,3,PC,PC,11.7892,0.01,,1,spoc-s42-s46-b0A,SPOC,06:26:43.01,25:12:18.01,3.664,0.09,5.778,0.079,2459550.580295,0.0021634,5.31937553733398,0.00018053318,6.69139952369387,0.1024427,7.120849,0.144872,6537.08398186041,133.42345,19.6684639460614,1.4940084,1968.90032302218,1698.93077011313,36.62315,835.907,48.7905,6350.0,139.074,3.78918,0.0988027,2.36933994293213,0.174784,,,1.26,0.193629,"43,44,45",2021-11-09,2022-07-15,2023-02-08 00:00:00,evolved host; potentially too large for insolation,4615,1,False,False,True -258796169,4616.01,,2,4,4,2,4,4,4,4.8,15.0,1.99,5,0,4,PC,PC,12.8872,0.007,,1,spoc-s01-s46-b0A,SPOC,00:59:16.34,13:51:38.86,31.563,0.132,178.888,0.095,2459448.706988,0.0014133087,1.55380992495645,9.512384e-06,1.00379319667074,0.13730182,3.621705,0.49579,3330.15664432397,456.53528,1.22231603273244,0.7920717,17.9816251163532,525.202741464873,10.452713,28.1016,0.06625,3244.0,157.0,5.07736,0.0280122,0.192728996276855,0.00578436,,,0.161878,0.0200574,"17,42,43",2021-11-09,2022-07-15,2022-12-14 12:09:24,potential L1 planet; small M dwarf; somewhat V-shaped,4616,1,False,False,True -18373995,4617.01,,3,4,3,3,4,4,4,68.1,76.2,317.0,1,2,3,PC,PC,12.357,0.034,,1,spoc-s44-b0A,SPOC,04:44:05.44,22:34:03.37,13.237,0.077,-13.955,0.034,2459502.325343,0.00092038134,3.48762859679603,0.00025014358,2.82464669558532,0.07374356,18.592607,0.454275,16978.6341080531,418.31482,16.3866773949959,1.2433856,706.463787979539,1314.89848798253,35.026867,333.973,4.6105,5752.44,99.4005,4.27789,0.0919258,1.22040998935699,0.0883792,0.254,0.037,1.03,0.125602,"43,44",2021-11-09,2022-01-07,2023-02-27 00:00:00,large Rp,4617,1,False,False,True -284326455,4618.01,,5,5,5,5,5,5,5,83.5,201.6,116.33,0,0,3,KP,KP,12.2341,0.006,,1,qlp-s45-tois,SPOC,06:39:35.52,25:28:56.64,-0.073,0.05,-33.237,0.043,2459544.379501,0.0003597,3.7998451,3.49e-05,1.428,0.042,30.331798,0.004074,27550.0,3.75199,13.2747,1.13686,22.2041,604.0,108.0,143.651,0.581,4133.4,108.675,4.48806,0.100894,0.76,0.06,0.145,0.101,0.647,0.076851,"43,44,45",2021-11-09,2022-03-10,2022-12-14 12:09:24,HAT-P-54 b,4618,1,False,False,True -238586172,4619.01,,3,4,3,3,2,4,4,22.5,31.4,317.0,2,0,2,PC,PC,13.8232,0.021,,1,spoc-s42-s46-b0A,SPOC,06:04:25.99,22:29:58.02,1.429,0.058,-5.974,0.047,2459528.34243,0.004903067,3.47323985883491,0.00025120119,4.37310994914198,0.21540959,11.283003,0.484,10338.2192806827,445.68143,16.6589645278826,0.5923028,2304.52863970264,1767.11688648208,18.895731,1490.49,70.99,7406.97,38.45,4.27763,,1.56373000144958,,0.031,0.037,1.69,,"43,44,45",2021-11-09,2022-07-15,2022-12-14 12:09:24,K2 candidate EPIC 208833261.01,4619,1,False,False,True -171160243,4620.01,,3,4,3,3,3,4,4,146.3,173.6,317.0,1,1,1,PC,PC,9.56967,0.006,,1,qlp-s59-ffi,SPOC,04:32:17.15,33:23:46.98,11.109,0.083,-2.743,0.063,2459933.972235,0.0013553,1.3887494,5e-06,1.38,0.355,3.589944,2.899538,3301.0,2667.01,15.9057,4.4088,12503.9,2945.0,24.0,272.645,3.4035,7825.0,304.131,4.07227,0.0889779,2.08,0.07,,,1.86,0.328712,"19,43,44,59",2021-11-09,2023-02-09,2023-02-25 12:10:55,pulsating star; V-shaped; multiple stars in pixel,4620,1,False,False,True -293457754,4621.01,,5,5,5,5,5,5,5,42.9,127.4,129.05,0,0,1,KP,KP,12.3553,0.008,,1,spoc-s42-s43-b0A,SPOC,01:47:10.37,03:07:58.56,-5.343,0.084,-21.97,0.065,2459478.63846,0.0007891299,4.51951197033112,0.00011608457,3.14577987693495,0.050301243,19.021501,0.254824,17366.8769818821,234.67366,14.0991847993053,0.69983065,382.448848038806,1127.88050175294,64.39609,437.495,7.8265,5887.0,126.911,4.44001,0.0788172,1.0320999622345,0.0495527,,,1.07,0.139048,"42,43",2021-11-09,2022-01-26,2022-12-14 12:09:24,WASP-181 b,4621,1,False,False,True -94727308,4622.01,,3,4,3,3,3,4,4,44.4,93.3,88.4,3,0,1,PC,APC,16.1779,0.009,,1,spoc-s42-s46-b0A,SPOC,04:00:54.37,31:41:27.84,4.121,0.291,-6.203,0.193,2459474.773371,0.0058530546,1.29694038977361,0.00027360095,3.43016674209462,0.3676931,58.205376,5.338932,52197.5005433262,4905.2676,11.2860341919551,0.9806869,48.3357373562042,672.491557562799,10.462735,297.693,13.937,3003.0,157.0,4.76981,0.0148368,0.463183999061584,0.0211904,,,0.460522,0.0264049,"43,44",2021-11-09,2022-07-15,2023-04-05 00:00:00,likely faint M dwarf host; low SNR,4622,1,False,False,True -56399553,4623.01,,5,5,5,5,5,5,5,103.1,283.8,110.49,0,4,3,KP,KP,11.5476,0.006,,1,spoc-s42-s46-b0A,SPOC,04:10:40.9,24:24:05.96,16.452,0.102,-21.988,0.064,2459502.039849,0.0003314381,3.25881102949248,3.3309436e-05,2.21546903063652,0.020491328,25.08016,0.181681,22834.925536067,167.32019,12.8684431771136,1.0721823,284.416575755442,1047.39012608243,151.31818,178.475,1.3105,5387.06,142.59,4.58431,0.106817,0.817113995552063,0.0678241,0.282941,0.0188692,0.935,0.120793,"43,44",2021-11-09,2022-07-15,2022-12-14 12:09:24,K2-29 b,4623,1,False,False,True -84339983,4624.01,,5,5,5,5,5,5,5,109.5,142.2,317.0,0,0,6,KP,KP,10.5136,0.006,,1,spoc-s42-s46-b0A,SPOC,06:43:23.52,27:15:07.86,-8.161,0.074,-22.954,0.07,2459548.173846,0.001082,2.79082576687429,2.7944992e-05,2.2330145922594,0.022900276,10.987194,0.127558,10068.548681748,117.477936,16.7369907124514,0.8824193,1998.78378782508,1705.34088447642,93.47204,320.639,5.5575,6635.91,146.32,4.24728,0.0921547,1.47070002555847,0.076696,-0.0568545,0.00666903,1.394,0.227308,"43,44,45",2021-11-09,2022-07-15,2022-12-14 12:09:24,HAT-P-56 b,4624,1,False,False,True -58472992,4625.01,,2,4,2,2,3,4,4,8.9,69.8,6.31,1,15,1,PC,PC,10.5774,0.006,,1,spoc-s42-s46-b0A,SPOC,04:22:36.84,25:41:59.56,,,,,2459523.854094,0.0028159,2.19142768367654,0.00013644746,1.83409358461762,0.22931677,1.187567,0.105693,1093.19152535096,97.34249,2.38941158934582,1.2358307,243.699202687232,1007.70468259418,9.01464,,,4384.23,40.15,4.438,,0.72012597322464,0.062549,0.04,0.036,,,"43,44",2021-11-09,2022-07-15,2022-12-14 12:09:24,potential L1 planet; host Prot ~5 d; low SNR,4625,1,False,False,True -241442273,4626.01,,1,4,1,1,3,4,4,4.1,81.9,7.56,0,1,3,PC,PC,8.4492,0.006,,1,qlp,QLP,13:42:03.25,-48:27:59.19,-170.743,0.074,-148.406,0.08,2459338.399136,0.0021652,17.4756122,7.91e-05,2.895,0.708,0.858071,0.001456,790.0,1.34075,2.65592,0.164885,24.581,620.0,21.0,51.1333,0.1188,5387.2,91.4,,,0.84,0.04,,,0.93,0.121798,"11,38",2021-11-18,2021-11-18,2022-12-14 12:09:24,slight centroid shift; potential L1 candidate,4626,1,False,False,False -89702406,4627.01,,3,4,3,3,3,4,4,18.9,103.2,121.04,2,0,1,PC,PC,11.5252,0.006,,1,spoc,SPOC,08:30:36,-58:31:42.63,-2.6,4.9,29.1,4.4,2459264.711072,0.003038021,23.1464034462078,0.004088174,5.9036898753511,0.2851061,7.830038,0.360368,7185.78942587308,331.85596,13.5770264346263,8.474366,36.1980745868905,625.591900364578,27.082985,260.383,,5356.0,18.9,4.38,2.0,1.06356000900269,,,,,,"35,36",2021-11-18,2021-11-18,2022-12-14 12:09:24,v-shaped,4627,1,False,False,True -404421005,4628.01,,2,5,5,2,5,4,5,3.4,42.8,5.87,0,2,4,PC,KP,9.66562,0.006,,1,spoc,SPOC,13:28:03.89,-15:56:16.71,-98.674,0.098,-36.096,0.102,2458575.158194,0.0020096845,6.32668003681937,3.5812423e-05,2.03106011475288,0.5508015,0.565599,0.074486,520.800215446204,68.6017,2.2901553721618,2.260206,195.730356322151,953.969074832727,7.731756,113.123,0.696,5673.0,135.223,4.46318,0.0785692,0.97538298368454,0.049706,,,1.008,0.130452,"10,37",2021-11-19,2021-11-18,2022-12-14 12:09:24,weak signal,4628,1,False,False,True -304339227,4629.01,TIC 304339227.01,1,4,1,1,3,4,4,0.0,13.5,7.08,0,0,1,PC,PC,8.6577,0.006,,1,spoc,SPOC,18:23:46.35,-68:20:41.82,-63.515,0.035,-14.805,0.048,2458673.334546,0.0036252367,714.692730278397,0.005206772,5.71333226906281,0.66491055,0.54393,0.046388,500.852918512328,42.724457,2.55704453217504,1.1821307,0.564765421880067,221.098997944711,12.21757,92.0015,0.24925,6324.0,196.0,4.37047,0.285301,1.12576997280121,0.0506985,,,1.11,0.14269,"13,39",2021-11-19,2021-11-18,2022-12-14 12:09:24,two transits; period likely shorter than ~715 days,4629,1,False,False,True -292202337,4630.01,TIC 292202337.01,3,4,3,3,4,4,4,0.0,26.9,18.88,0,3,7,PC,PC,9.046,0.006,,1,spoc,SPOC,15:23:32.93,-25:22:14.21,-21.417,0.091,29.471,0.076,2458619.207165,0.0011860324,721.562219056956,0.0017129949,4.59334133522563,0.15292706,2.367238,0.087614,2177.93199104436,80.69187,4.55212379188349,0.40981224,0.347009315468831,195.751470395417,26.765064,85.3751,0.6195,6294.0,196.0,4.53886,0.279601,0.968886017799377,0.0494145,,,1.01,0.12877,"11,38",2021-11-19,2021-11-18,2022-12-14 12:09:24,two transits separated by 2 years; period likely shorter than ~721 days,4630,1,False,False,True -313006381,4631.01,TIC 313006381.01,2,4,2,2,3,4,4,1.4,50.2,5.9,0,3,1,PC,PC,8.7551,0.006,,1,qlp-s53-ffi,SPOC,09:10:05.95,75:36:39.03,52.96,0.046,-9.187,0.044,2459714.752854,0.0043909,33.6357031,0.0002295,3.729,0.994,0.695094,0.003229,640.0,2.97359,2.29227,0.193789,28.2932,642.0,14.0,62.2978,0.089,5614.0,125.01,4.60434,0.0792344,0.82,0.04,,,0.99,0.127851,"14,20,26,40,47,53",2021-11-19,2022-08-31,2022-12-14 12:09:24,formerly a signal transit; now have a period,4631,1,False,False,True -336075472,4632.01,TIC 336075472.01,1,4,1,1,4,4,4,0.3,28.6,8.69,0,3,5,PC,PC,10.6329,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,18:27:26.98,45:27:16.16,32.536,0.038,111.749,0.039,2458712.448605,0.0057421513,63.1448518916239,0.00042500047,4.99255091338157,0.33290884,1.84408,0.13702,1697.01881026408,126.19228,2.88285491853101,0.6612263,1.81398461039179,295.990756803775,14.309427,65.4707,0.09755,4152.0,121.771,4.55825,0.111566,0.702045023441315,0.0657186,,,0.65,0.0805943,"14,26,40,41,52,53,54",2021-11-19,2023-03-09,2023-03-24 12:12:10,period updated to ~63 days with two consecutive transits in s52 and s54,4632,1,False,False,True -307958020,4633.01,TIC 307958020.01,1,4,1,1,4,4,4,0.1,15.4,12.22,0,1,5,PC,PC,8.3498,0.006,,1,spoc-s14-s55-b0A-PC,SPOC,17:07:22.34,62:28:31.97,-23.056,0.046,-67.019,0.046,2458864.835181,0.0050281864,543.877277942282,0.006732476,11.1301666116914,0.3909785,0.521433,0.028507,480.141972672806,26.255383,3.52437761787407,0.55287844,1.22954693826518,268.56909006371,16.521877,95.2016,0.23835,5490.04,148.457,4.02198,0.0885438,1.5819000005722,0.0978291,0.237922,0.0124109,0.96,0.124546,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,55",2021-11-19,2023-03-14,2023-03-24 12:12:10,two transits; actual period likely shorter than ~544 days,4633,1,False,False,True -17150865,4634.01,,3,4,3,3,3,4,4,72.3,138.2,112.76,9,2,5,PC,PC,12.5065,0.011,,1,spoc-s42-s46-b0A,SPOC,04:18:34.79,19:10:44.54,10.725,0.065,-2.569,0.042,2459501.044213,0.0020968819,0.870674504735467,6.0840142e-05,1.68942828569204,0.15180904,3.700691,0.316001,3402.66058322817,291.00558,13.0226788827284,13.656843,7760.76890237562,2393.84450791728,14.668042,568.754,9.298,6121.0,156.078,4.16573,0.0953664,1.47365999221802,0.0908872,-0.0665579,0.0135413,1.16,0.160438,"43,44",2021-11-19,2022-07-15,2022-12-14 12:09:24,EPIC 210754505; odd-even,4634,1,False,False,True -337129672,4635.01,,5,5,5,5,5,5,5,9.1,183.9,103.05,0,11,2,PC,FP,10.6029,0.006,,1,spoc,SPOC,02:14:31.26,08:04:45.34,122.405,0.11,-203.403,0.127,2459448.748501,0.00027307932,49.1077047395584,0.0003962217,2.94023192783815,0.02597165,30.974135,0.256645,28125.1452075096,236.35126,12.3506371827368,0.9999361,3.16343892956357,340.141492697874,90.2659,75.3511,0.3932,4358.0,115.996,4.55296,0.098456,0.722450017929077,0.0581784,,,0.68,0.0790813,"42,43",2021-11-19,2021-11-18,2022-12-14 12:09:24,Period may be half or 1/4,4635,1,False,False,True -405484221,4636.01,,5,5,5,5,5,5,5,0.1,55.1,55.02,0,0,0,PC,FP,15.7488,0.009,,1,spoc,SPOC,03:46:55.33,24:11:16.1,20.298,0.457,-43.964,0.239,2459454.50904,0.0032540874,42.82891524015,0.00427197,2.32485261915231,0.28903484,97.264925,8.178772,85688.8204518609,7504.626,8.5394160056,0.7230957,0.288475374604335,186.916196906693,11.763273,136.79,3.8355,3090.0,159.0,4.93803,0.00249581,0.289034008979797,0.010993,,,0.264156,0.0215732,"42,43",2021-11-19,2021-11-18,2022-12-14 12:09:24,SG1 should clear the bright neighbor,4636,1,False,False,True -306485267,4637.01,,2,4,2,2,4,4,4,2.3,37.7,8.29,1,2,5,PC,PC,10.3991,0.006,,1,spoc,SPOC,02:13:03.56,19:24:09.6,47.918,0.099,-14.521,0.076,2459451.613,0.0033136955,14.3540583235874,0.0018016987,2.51225290507498,0.6408329,1.143961,0.143144,1053.07196676576,131.83142,2.80521044334384,2.726502,38.4877432810488,635.25831943129,8.554153,112.147,0.5515,5142.48,107.614,4.50291,0.0831359,0.864650011062622,0.0538945,0.14,0.028,0.868,0.106163,"42,43",2021-11-19,2021-11-18,2022-12-14 12:09:24,Significant odd-even; possible EB,4637,1,False,False,True -58824746,4638.01,,2,4,2,2,4,4,4,2.3,32.9,7.86,0,2,4,PC,PC,10.7434,0.006,,1,spoc,SPOC,00:51:16.96,12:47:16.75,5.34,0.126,-13.309,0.056,2459449.353563,0.0054626437,10.2829582517974,0.0020126419,3.53489155847534,0.6153171,0.939704,0.105482,865.124645705015,97.14795,2.71867163484988,1.2306396,87.4018995879787,779.830052136514,8.948416,168.248,1.7425,5700.0,130.62,4.54131,0.0794487,0.894563019275665,0.0439874,,,1.015,0.130915,"42,43",2021-11-19,2021-11-18,2022-12-14 12:09:24,SG1 should clear the neighbors,4638,1,False,False,True -91251292,4639.01,,1,4,1,1,4,4,4,4.3,41.9,8.69,0,2,4,PC,PC,10.671,0.007,,1,spoc,SPOC,01:49:15.49,21:42:12.57,17.106,0.077,-23.889,0.071,2459451.090061,0.003512168,3.99018014819759,0.0005589745,2.9093772883584,0.47423643,0.794065,0.071767,731.093476561468,66.09809,2.88304873562429,1.154921,502.424286382094,1207.50074020876,9.246307,205.737,1.786,6153.0,123.997,4.48335,0.0823031,1.02672004699707,0.0468543,,,1.17,0.161473,"42,43",2021-11-19,2021-11-18,2022-12-14 12:09:24,potential L1 candidate,4639,1,False,False,True -337216118,4640.01,,2,4,2,2,4,4,4,4.4,37.8,8.58,0,2,5,PC,PC,11.0771,0.008,,1,spoc,SPOC,02:32:49.28,10:04:20.88,36.363,0.063,-33.043,0.065,2459447.755126,0.0037904172,2.685722911326,0.00035690423,2.2391181880052,0.50021476,0.687282,0.072802,632.809774720648,67.051155,2.86223251836042,1.2594844,854.274104189157,1378.85646585696,8.685985,245.089,2.169,5978.0,122.788,4.42301,0.0767611,1.06714999675751,0.048892,,,1.1,0.142665,"42,43",2021-11-19,2021-11-18,2022-12-14 12:09:24,possibly SV,4640,1,False,False,True -436873727,4641.01,TIC 436873727.01,3,4,4,3,3,4,4,40.4,234.6,69.06,0,15,2,PC,PC,7.1323,0.006,,1,spoc-s14-s60-b0A-PC,SPOC/QLP,02:50:13.97,25:20:00.72,61.564,0.099,-19.888,0.089,2459886.413632,0.00071262557,22.0933921788079,1.9395588e-05,5.40950761573261,0.034828953,2.863168,0.050653,2633.60091105918,46.651608,9.76032934086369,0.37578428,192.58020833786,950.107316799316,53.175365,86.3501,0.4789,6798.4,109.0,4.11,0.08,1.75449001789093,0.0650955,,,1.46,0.248129,"18,42,43,44,58",2021-11-19,2023-05-19,2023-06-16 12:14:51,variable host star,4641,1,False,False,True -336961891,4642.01,,2,4,4,2,4,4,4,2.1,12.4,1.69,8,0,4,PC,PC,11.9847,0.008,,1,spoc,SPOC,02:03:32.32,06:48:57.13,92.162,0.119,-122.045,0.099,2459449.129554,0.0024413865,3.60223773777829,0.0003134855,1.03255200089646,0.5174124,2.42388,0.324842,2229.98568822383,299.14587,1.16718554522632,1.038172,7.92791207202236,427.966185403985,7.1671104,23.651,0.0297,3266.0,157.0,4.99716,0.0148263,0.242091000080109,0.00739339,,,0.21235,0.0201627,"42,43",2021-11-19,2021-11-18,2022-12-14 12:09:24,low SNR,4642,1,False,False,True -270355392,4643.01,,2,4,2,2,4,4,4,2.0,5.9,2.44,2,2,6,PC,PC,10.6127,0.007,,1,spoc-s01-s46-b0A,SPOC,02:08:52.31,04:18:24.94,-19.526,0.074,119.094,0.065,2459451.700418,0.0037587958,5.02564379804663,1.7121754e-05,1.83929652660068,0.52505445,0.711837,0.072303,655.411185235175,66.59149,1.36654912235126,1.1486199,23.1771538486898,559.609109502045,10.131058,40.1036,0.06965,3782.0,157.0,4.72167,0.00870736,0.518020987510681,0.0153843,,,0.515581,0.0202851,"4,31,42,43",2021-11-19,2022-07-15,2022-12-14 12:09:24,potential multi,4643,1,True,False,True -270355392,4643.02,,1,4,1,1,4,4,4,0.9,5.0,2.69,2,2,6,PC,PC,10.6127,0.007,,2,spoc-s01-46-b0A,SPOC,02:08:52.31,04:18:24.94,-19.526,0.074,119.094,0.065,2458415.856148,0.0023942774,10.7386930921677,3.8935606e-05,1.33737763843315,1.2315575,0.838521,0.165578,772.007984005401,152.49132,1.44635488611255,4.9624853,8.4213257726822,434.475074715948,7.297484,40.1036,0.06965,3782.0,157.0,4.72167,0.00870736,0.518020987510681,0.0153843,,,0.515581,0.0202851,"4,31,42,43",2022-04-20,2022-04-20,2022-12-14 12:09:24,potential multi; low SNR,4643,2,True,False,True -387423096,4644.01,,2,4,2,2,4,4,4,11.5,64.7,3.84,0,2,6,PC,PC,11.0505,0.006,,1,qlp-s44-tois,SPOC,02:46:54.93,10:01:33.51,-25.552,0.074,-31.768,0.068,2459524.090945,0.0023208,0.3181853,1.81e-05,0.762,0.172,0.521278,0.002799,480.0,2.57826,1.78228,0.229303,1654.43,1776.0,15.0,88.7751,0.31475,4242.23,142.251,4.5065,0.119222,0.75,0.08,-0.108,0.032,0.66,0.0797945,"42,43,44",2021-11-19,2022-03-11,2022-12-14 12:09:24,small a/Rs; possibly variability; v-shaped,4644,1,False,False,True -46698351,4645.01,,3,4,3,3,3,4,4,53.1,107.6,317.0,0,0,1,PC,PC,10.2381,0.008,,1,qlp,QLP,15:22:50.54,-59:50:07.35,-5.206,0.053,-3.484,0.068,2459382.774436,0.0011188,5.0872671,1.71e-05,8.374,0.178,5.224082,0.000466,4800.0,0.429556,20.8718,0.833369,11288.2,2871.0,47.0,709.453,20.6395,8972.0,177.7,3.83,0.07,3.02,0.12,,,2.26,0.315238,"12,38,39",2021-12-03,2021-12-02,2022-12-14 12:09:24,inflated hot Jupiter,4645,1,False,False,False -286696849,4646.01,,3,4,3,3,3,4,4,35.7,140.4,107.43,1,0,1,PC,PC,12.2257,0.006,,1,spoc-s59-b0A,QLP,04:51:11.91,50:05:52.53,40.603,0.062,-30.896,0.06,2459915.972155,0.00082154357,8.92994827169825,0.00057449396,3.20026676851587,0.087834865,29.178403,0.529972,26516.4016202203,488.0032,12.6566077914625,1.1154569,36.0859625136436,625.106943548967,52.706245,169.637,1.0075,4379.0,126.2,4.49,0.1,0.777585983276367,0.0651859,,,0.685,0.0792681,"19,59",2021-12-03,2023-03-06,2023-03-24 12:12:10,real host of TCEs matching TIC 286696848 / TOI 3742.01,4646,1,False,False,True -303204165,4647.01,,2,4,2,2,4,4,4,4.3,55.6,8.5,0,2,6,PC,PC,9.59055,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,00:20:59.06,12:19:26.41,21.893,0.43,31.344,0.112,2459451.580762,0.0023482225,8.8334569701503,7.697122e-05,3.29368477920404,0.24781844,0.767801,0.056095,706.920915319027,51.664333,2.84627331983102,0.30437142,144.707236559853,884.590583673106,12.982893,117.411,1.8135,5991.0,128.907,4.50886,0.0797627,0.968041002750397,0.0469849,,,1.103,0.140423,"42,43,57",2021-12-03,2023-05-19,2023-06-16 12:14:51,,4647,1,True,False,True -303204165,4647.02,,2,4,2,2,4,4,4,3.0,44.5,7.15,0,2,6,PC,PC,9.59055,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,00:20:59.06,12:19:26.41,21.893,0.43,31.344,0.112,2459451.352968,0.0038961635,11.070770753927,0.00013347497,3.0389629242096,0.46050057,0.683504,0.068855,629.331984815104,63.415447,2.57132048633687,1.01876,107.092905983406,820.464747000917,8.208996,117.411,1.8135,5991.0,128.907,4.50886,0.0797627,0.968041002750397,0.0469849,,,1.103,0.140423,"42,43,57",2023-05-18,2023-05-18,2023-06-16 12:14:51,potential multi; low SNR; some asymmetry in transit shape,4647,2,True,False,True -257774438,4648.01,,5,5,5,5,5,5,5,2.2,40.2,5.85,0,3,5,KP,KP,8.97055,0.006,,1,spoc,SPOC,01:05:51,11:45:13.38,55.296,0.107,67.12,0.105,2459461.175924,0.006080335,15.3948858779999,0.00420453,3.68220285843045,0.6978918,0.465916,0.061449,429.032799844823,56.594883,2.28414286360917,1.386587,87.0599602393784,779.066205225779,7.2675114,101.321,0.6285,6101.0,127.896,4.44514,0.0824554,1.06229996681213,0.0498995,,,1.147,0.156625,"42,43",2021-12-03,2021-12-02,2022-12-14 12:09:24,K2-222 b,4648,1,False,False,True -404713783,4649.01,,2,4,2,2,4,4,4,2.0,31.8,8.01,0,2,6,PC,PC,10.1448,0.006,,1,spoc,SPOC,01:59:49.57,16:20:48.1,51.869,0.072,-6.366,0.068,2459449.727395,0.0042188484,15.0805829966741,0.0022804486,4.15067544922587,0.64807034,0.781371,0.075276,719.409933233989,69.32926,2.74881565778408,1.5082355,68.5663295178035,733.917891252104,11.339075,148.252,0.886,5744.71,114.921,4.44026,0.0763711,1.01084995269775,0.0476759,0.157,0.049,1.027,0.129107,"42,43",2021-12-03,2021-12-02,2022-12-14 12:09:24,weak signal; low SNR,4649,1,False,False,True -60646268,4650.01,,3,4,3,3,1,4,4,23.9,72.7,56.07,5,0,0,PC,PC,13.492,0.006,,1,qlp-s28-faintsearch,QLP,22:17:18.83,-32:51:40.65,33.551,0.043,26.19,0.045,2459084.536102,0.0023655,2.6672418,1.32e-05,2.858,0.437,12.173955,0.029458,11150.0,27.1318,8.5917,,307.867,1166.0,19.0,314.596,3.232,4432.0,122.0,4.5,,0.77,,,,0.69,,"1,28",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4650,1,False,False,False -147302550,4651.01,,3,4,3,3,1,4,4,7.6,37.2,73.41,1,0,0,PC,PC,13.3592,0.006,,1,qlp-s28-faintsearch,QLP,21:40:23.87,-46:17:47.86,-2.441,0.033,3.364,0.032,2459071.960195,0.0042337,11.1878978,0.0001038,2.457,0.436,8.928793,0.029685,8190.0,27.3406,10.1018,,36.1679,683.0,10.0,686.148,10.9605,5721.0,122.0,4.39,,1.07,,,,1.02,,"1,28",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4651,1,False,False,False -139877968,4652.01,TIC 139877968.01,3,4,4,3,3,4,4,15.0,82.8,109.75,2,0,1,PC,PC,12.1679,0.006,,1,qlp-s28-faintsearch,QLP,21:45:21.88,-48:08:01.7,50.245,0.051,-15.682,0.044,2459078.330446,0.0023958,18.6224802,7.43e-05,4.088,0.383,10.791383,0.306072,9890.0,281.863,12.759,1.95431,84.0311,843.0,27.0,356.061,4.274,5654.5,119.5,4.44,0.08,0.99,0.05,-0.936155,0.0675372,1.0,0.124991,"1,28",2021-12-21,2021-12-20,2023-06-12 00:00:00,found in faint-star QLP search,4652,1,False,False,False -238854767,4653.01,,3,4,3,3,3,4,4,2.1,21.6,16.72,0,0,1,PC,PC,11.3326,0.006,,1,qlp-s28-faintsearch,QLP,22:51:01.29,-71:44:30.83,-12.935,0.037,7.404,0.039,2459080.375956,0.0097823,16.3764188,0.0003377,4.775,1.016,1.336278,0.004431,1230.0,4.08131,4.23355,0.33228,115.374,913.0,10.0,376.59,4.0305,6397.0,134.8,4.36,0.09,1.24,0.05,,,1.28,0.202636,"1,13,27,28",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4653,1,False,False,False -99648579,4654.01,,3,4,3,3,1,4,4,11.8,47.7,102.04,0,0,0,PC,PC,13.2157,0.008,,1,qlp-s28-faintsearch,QLP,21:25:34.66,-21:47:54.28,-10.246,0.048,-6.826,0.041,2459084.090632,0.0030052,10.6936683,6.14e-05,2.411,0.246,11.658028,0.020845,10680.0,19.1986,12.2512,,37.24,688.0,13.0,695.482,15.9005,5820.0,122.0,4.34,,1.14,,,,1.05,,"1,28",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4654,1,False,False,False -209310912,4655.01,,3,4,3,3,1,4,4,33.8,110.8,93.89,3,0,0,PC,PC,13.4227,0.006,,1,qlp-s28-faintsearch,QLP,22:28:41.17,-23:56:08.75,12.992,0.047,-16.015,0.04,2459085.462981,0.0016955,3.6749802,0.0004913,1.743,0.199,26.175236,0.028247,23820.0,26.0164,11.714,,92.6245,864.0,27.0,382.837,3.2985,5134.0,122.0,4.66,,0.72,,,,0.866,,28,2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4655,1,False,False,False -120523488,4656.01,,3,4,3,3,1,4,4,9.1,39.7,32.19,1,0,0,PC,PC,13.3652,0.006,,1,qlp-s29-faintsearch,QLP,00:11:38.65,-38:00:36.96,2.005,0.049,-8.435,0.047,2459110.795172,0.0034698,3.439221,3.92e-05,1.693,0.374,5.496859,0.021874,5050.0,20.1469,6.2369,,117.243,916.0,9.0,443.769,7.307,5053.0,122.0,4.48,,0.87,,,,0.84,,"2,29",2021-12-21,2021-12-20,2022-12-14 12:09:24,low SNR; found in faint-star QLP search,4656,1,False,False,False -434110695,4657.01,,3,4,3,3,3,4,4,15.6,64.4,69.95,0,2,1,PC,PC,11.5471,0.007,,1,qlp-s29-faintsearch,QLP,23:40:04.43,-15:56:46.84,3.93,0.076,-3.368,0.065,2459104.0983,0.0024395,8.1129531,5.34e-05,0.976,0.391,2.728624,0.957351,2510.0,881.364,9.82115,4.43979,70.3075,806.0,9.0,433.817,8.5375,6200.0,127.0,4.25,0.08,1.35,0.07,,,1.19,0.168357,"2,29",2021-12-21,2021-12-20,2022-12-14 12:09:24,low SNR; found in faint-star QLP search,4657,1,False,False,False -224279091,4658.01,,3,4,3,3,3,4,4,3.0,34.0,9.03,0,0,1,PC,PC,11.5047,0.006,,1,qlp-s29-faintsearch,QLP,23:42:08.52,-39:03:39.91,51.936,0.041,-67.728,0.051,2459103.831934,0.0042638,6.0142432,7.77e-05,2.262,0.415,1.314536,0.005348,1210.0,4.92548,2.96676,0.257235,103.111,887.0,9.0,222.47,1.8255,5575.0,130.4,4.58,0.08,0.85,0.04,,,0.98,0.127325,"2,29",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4658,1,False,False,False -178215634,4659.01,,3,4,3,3,3,4,4,19.7,72.8,31.29,1,2,1,PC,PC,10.9774,0.007,,1,qlp-s31-faintsearch,QLP,03:55:15.42,-20:18:45.76,-5.322,0.049,-6.297,0.046,2459167.858358,0.0014534,1.0451165,2.6e-06,0.794,0.334,1.097148,0.01554,1010.0,14.313,6.13091,0.690941,1195.11,1638.0,18.0,329.19,4.2275,5921.2,110.8,4.11,0.07,1.52,0.07,-0.56,0.11,1.08,0.132455,"4,5,31",2021-12-21,2021-12-20,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4659,1,False,False,False -435259601,4660.01,,3,4,4,3,1,4,4,114.8,79.8,317.0,2,0,0,PC,PC,13.2616,0.007,,1,qlp-s44-tois,QLP,03:27:59.95,12:31:24.29,-2.895,0.056,-27.459,0.039,2459523.062741,0.0003296,1.5090806,3e-06,1.796,0.044,28.658345,0.002008,26050.0,1.84957,14.3177,,365.719,1218.0,96.0,257.346,2.023,4674.0,123.0,4.46,,0.84,,,,0.745,,"31,42,43,44",2021-12-21,2022-03-11,2023-01-05 00:00:00,found in faint-star QLP search,4660,1,False,False,False -441135051,4661.01,,3,4,3,3,1,4,4,31.2,99.4,103.59,0,0,0,PC,PC,11.858,0.017,,1,qlp-s31-faintsearch,QLP,02:42:04.84,-17:30:06.23,28.2,2.0,-42.05,2.0,2459156.854569,0.0012061,8.8085782,2.63e-05,1.92,0.443,10.418609,0.024998,9550.0,23.0241,,,,,33.0,179.125,,,,,,,,,,,,"4,31",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search; no stellar parameters,4661,1,False,False,False -166778944,4662.01,,2,4,2,2,3,4,4,4.1,42.3,7.26,0,0,1,PC,PC,11.4031,0.006,,1,qlp-s31-faintsearch,QLP,03:50:03.85,-31:05:38.49,26.588,0.034,36.894,0.042,2459165.007854,0.0031485,4.7034187,3.14e-05,1.937,0.255,1.510223,0.004634,1390.0,4.26765,2.58065,0.257087,50.104,741.0,10.0,111.047,0.2885,4481.0,121.7,4.6,0.09,0.69,0.05,,,0.703,0.0760207,"4,31",2021-12-21,2021-12-20,2023-01-10 00:00:00,found in faint-star QLP search,4662,1,False,False,True -237358490,4663.01,,3,4,3,3,1,4,4,25.7,93.1,73.75,1,0,0,PC,PC,13.0006,0.006,,1,qlp-s31-faintsearch,QLP,04:04:19.98,-49:07:24.71,26.414,0.032,24.153,0.037,2459159.619518,0.0007531,5.2916448,7.7e-06,2.645,0.123,19.577557,0.006205,17870.0,5.7147,10.1289,,51.2343,745.0,72.0,230.3,0.936,4397.1,77.2,4.56,0.24,0.75,,,,0.68,,"3,4,5,30,31",2021-12-21,2021-12-13,2022-12-14 12:09:24,found in faint-star QLP search,4663,1,False,False,False -299551666,4664.01,,3,4,3,3,3,4,4,33.8,86.3,105.02,0,0,1,PC,PC,12.7285,0.007,,1,qlp-s31-faintsearch,QLP,03:38:39.66,04:55:17.15,-2.391,0.046,-10.085,0.037,2459165.08637,0.0013739,3.0002713,8e-06,3.519,0.177,9.257253,0.002791,8490.0,2.57039,12.4821,0.616435,1054.22,1587.0,11.0,606.404,10.2755,5902.3,102.6,4.27,0.07,1.26,0.06,0.152,0.03,1.07,0.138012,"5,31",2021-12-21,2021-12-20,2023-01-15 00:00:00,found in faint-star QLP search,4664,1,False,False,False -165201455,4665.01,,3,4,3,3,1,4,4,13.5,38.1,104.5,1,0,0,PC,PC,13.2467,0.006,,1,qlp-s31-faintsearch,QLP,03:45:12.1,-41:18:35.42,3.931,0.023,-1.63,0.029,2459165.067431,0.0022398,3.6831574,2.49e-05,4.43,0.261,6.741594,0.004556,6190.0,4.19641,12.4845,,1500.66,1733.0,24.0,1196.83,19.025,6304.0,122.0,4.09,,1.66,,,,1.24,,"4,30,31",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4665,1,False,False,False -165202476,4666.01,,3,4,3,3,1,4,4,75.2,189.4,109.43,5,0,0,PC,PC,13.3272,0.008,,1,qlp-s31-faintsearch,QLP,03:45:09.57,-39:03:47.45,4.108,0.035,-22.098,0.046,2459168.476368,0.0009683,2.9093856,0.0001922,2.075,0.101,50.17349,0.017556,45160.0,16.1691,12.8688,0.465005,46.992,729.0,68.0,154.749,0.5445,3666.0,157.0,4.66,0.01,0.59,0.02,,,0.577043,0.0203816,31,2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4666,1,False,False,False -422884521,4667.01,,3,4,3,3,1,4,4,9.5,48.0,117.71,3,0,0,PC,PC,13.413,0.006,,1,qlp-s31-faintsearch,QLP,02:28:58.56,01:18:34.11,18.148,0.046,1.331,0.047,2459165.819787,0.0019376,17.9450925,6.98e-05,1.673,0.202,18.119288,0.027048,16550.0,24.9114,13.3791,,5.5686,427.0,18.0,652.129,11.3895,5681.0,122.0,4.44,,1.01,,,,1.01,,"4,31",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4667,1,False,False,False -142938659,4668.01,,3,4,3,3,1,4,4,35.1,122.5,23.87,1,0,0,PC,PC,13.8371,0.008,,1,qlp-s31-faintsearch,QLP,03:30:35.36,-35:12:13.37,35.823,0.072,-4.514,0.109,2459169.299411,0.0033847,1.0049552,0.0002556,0.92,0.749,9.377714,1.275186,8600.0,1173.8,5.19137,1.60086,63.8249,787.0,16.0,106.188,0.5875,3210.0,157.0,4.81,,0.42,0.01,,,0.416912,0.020375,31,2021-12-21,2021-12-20,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4668,1,False,False,False -71401634,4669.01,,5,5,5,5,5,5,5,44.4,117.9,28.48,1,0,0,PC,FP,13.1599,0.007,,1,qlp-s31-faintsearch,QLP,03:07:37.34,-17:53:39.86,-0.987,0.037,2.809,0.04,2459169.548716,0.001666,0.2476684,2.85e-05,0.401,0.116,2.674202,0.074601,2460.0,68.7076,5.81442,,1087.04,1599.0,12.0,320.901,2.596,4886.0,122.0,4.59,,0.75,,,,0.8,,31,2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4669,1,False,False,False -404506270,4670.01,,3,4,3,3,1,4,4,4.3,95.7,80.87,0,0,0,PC,PC,14.8743,0.008,,1,qlp-s31-faintsearch,QLP,04:06:39.79,-39:26:40.6,-22.179,3.44,-43.197,3.44,2459150.617565,0.0019588,15.5014296,0.002701,1.663,0.167,102.480041,0.167819,90070.0,154.555,10.8287,0.617651,0.691797,254.0,18.0,,,3382.0,157.0,4.87,,0.36,0.01,,,0.341209,0.0216089,31,2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4670,1,False,False,False -439873430,4671.01,,3,4,3,3,3,4,4,3.2,28.5,24.86,0,8,2,PC,PC,11.6733,0.008,,1,qlp-s31-faintsearch,QLP,02:54:46.95,-04:51:46.81,50.511,0.083,3.054,0.106,2459167.096077,0.0061769,17.1470323,0.0001936,3.895,0.88,2.510952,0.005558,2310.0,5.11899,5.37173,0.404925,46.4785,727.0,13.0,325.257,6.6275,5689.0,125.6,4.34,0.08,1.13,0.06,,,1.01,0.127163,"4,31",2021-12-21,2021-12-20,2023-04-16 00:00:00,found in faint-star QLP search,4671,1,False,False,False -332911893,4672.01,,3,4,3,3,3,4,4,31.6,40.4,317.0,0,2,4,PC,PC,11.8795,0.007,,1,qlp-s31-faintsearch,QLP,02:20:51.78,-01:49:33.75,8.625,0.095,1.857,0.113,2459168.770633,0.0010837,6.6132132,1.65e-05,5.646,0.141,10.922981,0.001677,10010.0,1.54447,15.5423,0.795715,619.404,1389.0,81.0,559.243,15.677,6110.0,105.1,4.1,0.08,1.58,0.08,-0.141,0.015,1.15,0.158305,"4,31",2021-12-21,2021-12-20,2023-02-24 00:00:00,found in faint-star QLP search,4672,1,False,False,False -118573065,4673.01,,3,4,3,3,1,4,4,52.8,67.9,317.0,1,0,0,PC,PC,12.9735,0.007,,1,qlp-s31-faintsearch,QLP,03:33:11.18,-08:15:30.34,4.92,0.058,-17.642,0.084,2459164.646167,0.0015342,4.8667353,2.13e-05,0.728,0.322,6.938262,4.686376,6370.0,4307.01,16.8337,7.53444,35.4585,679.0,13.0,480.34,8.857,5383.0,126.5,4.38,0.08,1.03,0.06,,,0.93,0.1166,"4,31",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4673,1,False,False,False -89062142,4674.01,,3,4,3,3,1,4,4,17.6,44.3,111.48,0,0,0,PC,PC,13.1662,0.007,,1,qlp-s31-faintsearch,QLP,03:37:49.69,-24:36:45.46,10.518,0.031,-5.765,0.031,2459161.883903,0.0026232,4.2430633,2.22e-05,3.582,0.286,7.922134,0.00638,7270.0,5.87641,12.965,,459.164,1289.0,20.0,860.97,17.4005,5595.0,122.0,4.07,,1.53,,,,0.99,,"4,31",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4674,1,False,False,False -279095914,4675.01,TIC 279095914.01,2,4,2,2,3,4,4,4.8,51.3,5.22,0,2,3,PC,PC,11.0418,0.006,,1,qlp-s31-faintsearch,QLP,03:22:10.27,-04:06:42.02,-6.765,0.079,-22.516,0.097,2459165.52615,0.0054252,3.5779775,3.33e-05,1.795,0.409,0.901535,0.004575,830.0,4.21371,2.15124,0.251913,54.0709,755.0,9.0,61.629,0.1918,3991.0,119.0,4.67,0.12,0.61,0.06,,,0.62,0.0807863,"4,31",2021-12-21,2021-12-20,2023-01-10 00:00:00,found in faint-star QLP search,4675,1,False,False,True -219225319,4676.01,,3,4,3,3,1,4,4,6.0,38.8,56.43,1,0,0,PC,PC,13.2172,0.006,,1,qlp-s31-faintsearch,QLP,04:10:53.82,-49:22:59.52,10.064,0.029,9.383,0.036,2459163.082504,0.0025266,13.291966,6.6e-05,2.48,0.941,8.020571,0.362999,7360.0,334.279,8.65633,,30.0086,652.0,17.0,428.86,3.0135,5042.0,122.0,4.45,,0.9,,,,0.84,,"3,4,5,30,31",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4676,1,False,False,False -100974694,4677.01,,3,4,3,3,3,4,4,8.0,41.2,28.85,0,0,1,PC,PC,12.4969,0.006,,1,qlp-s31-faintsearch,QLP,03:37:29.18,-43:42:16.23,5.93,0.036,-12.431,0.047,2459166.440518,0.0023526,4.0589926,1.87e-05,0.789,0.286,2.652434,0.065424,2440.0,60.256,5.84962,0.899575,28.012,640.0,10.0,408.611,3.435,5556.0,136.2,4.44,0.08,0.99,0.05,,,0.98,0.126356,"3,4,30,31",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4677,1,False,False,False -206717400,4678.01,,3,4,3,3,1,4,4,20.8,61.5,102.67,1,0,0,PC,PC,13.0862,0.007,,1,qlp-s31-faintsearch,QLP,03:40:00.41,-14:04:08.31,-1.325,0.036,-4.952,0.037,2459168.253288,0.0019957,4.7743169,2.39e-05,2.968,0.328,11.669003,0.01162,10690.0,10.7019,12.3583,,239.866,1096.0,26.0,614.098,8.291,5549.0,122.0,4.29,,1.18,,,,0.98,,"4,31",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4678,1,False,False,False -283605976,4679.01,,3,4,3,3,3,4,4,8.7,42.3,32.97,0,2,3,PC,PC,11.7948,0.006,,1,qlp-s44-tois,QLP,04:07:35.99,11:31:03.16,32.0,0.083,-23.608,0.055,2459515.87633,0.0017184,6.8170909,2.55e-05,3.878,0.215,2.739508,0.000807,2520.0,0.743555,6.33236,0.378161,233.351,1088.0,6.0,320.502,3.954,4955.0,98.2,,,1.26,0.07,0.0142397,0.0123465,1.013,0.128922,"5,32,42,43,44",2021-12-21,2022-03-11,2023-04-05 00:00:00,found in faint-star QLP search,4679,1,False,False,False -31258738,4680.01,,3,4,4,3,1,4,4,5.4,33.1,70.11,0,0,0,PC,PC,13.1744,0.007,,1,qlp-s32-faintsearch,QLP,05:28:37.69,-27:01:54.08,4.856,0.023,12.214,0.027,2459173.504974,0.0052586,17.4314043,0.0001512,4.06,0.323,8.917846,0.009648,8180.0,8.88644,9.8169,,43.2591,714.0,17.0,671.413,6.7035,5923.0,122.0,4.4,,1.08,,,,1.08,,"5,6,32",2021-12-21,2021-12-20,2023-07-12 00:00:00,found in faint-star QLP search,4680,1,False,False,False -248689510,4681.01,,3,4,3,3,1,4,4,44.8,47.1,317.0,2,0,0,PC,PC,13.3206,0.01,,1,qlp-s32-faintsearch,QLP,04:32:34.51,-04:47:07.61,0.078,0.076,-15.689,0.054,2459194.880219,0.0011728,3.0421828,0.0003832,2.628,0.104,22.366975,0.009126,20390.0,8.40549,14.5498,,414.535,1257.0,47.0,567.879,15.342,5582.5,95.8,4.43,,1.0,,-0.137908,0.0929921,0.99,,32,2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4681,1,False,False,False -449197624,4682.01,TIC 449197624.01,5,5,5,5,5,5,5,20.7,24.1,317.0,0,2,2,PC,FP,12.2624,0.008,,1,qlp-s32-faintsearch,QLP,05:18:44.21,00:17:32.63,3.381,0.056,-5.674,0.047,2459187.795987,0.0019212,6.7934811,2.65e-05,1.824,0.541,5.878863,0.026159,5400.0,24.0931,15.1938,1.28426,111.068,904.0,19.0,816.554,20.548,6121.0,128.9,3.94,0.08,1.92,0.1,,,1.16,0.151006,"5,32",2021-12-21,2021-12-13,2022-12-14 12:09:24,potential slight offset to E but star seems isolated; found in faint-star QLP search,4682,1,False,False,False -264460005,4683.01,,5,5,5,5,5,5,5,20.5,53.8,93.35,1,0,1,PC,FP,12.9876,0.007,,1,qlp-s32-faintsearch,QLP,05:24:39.96,01:45:26.44,5.042,0.041,-19.948,0.035,2459194.816461,0.0025733,3.0929206,1.83e-05,2.248,0.403,6.140886,0.010313,5640.0,9.49902,11.6629,0.750498,460.711,1290.0,14.0,757.235,15.262,5787.4,106.0,4.15,0.08,1.43,0.07,0.376,0.026,1.04,0.126391,"6,32",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4683,1,False,False,False -399757537,4684.01,,3,4,3,3,3,4,4,20.8,30.5,317.0,1,0,1,PC,PC,12.8181,0.008,,1,qlp-s32-faintsearch,QLP,04:54:20.03,07:46:31.42,-1.993,0.045,-2.395,0.027,2459194.248543,0.0022707,6.4879123,2.84e-05,1.648,0.202,7.911197,0.01608,7260.0,14.8105,16.7425,1.12232,92.2897,863.0,12.0,1077.65,30.02,6782.0,132.0,4.13,0.09,1.73,0.09,,,1.46,0.251422,"5,32",2021-12-21,2021-12-20,2023-02-27 00:00:00,star marker in diffimage is not on target; found in faint-star QLP search,4684,1,False,False,False -431693152,4685.01,,2,4,2,2,3,4,4,3.4,35.0,12.82,0,2,1,PC,PC,11.6829,0.006,,1,qlp-s32-faintsearch,QLP,04:56:56.85,02:39:44.35,20.805,0.056,-11.563,0.037,2459188.98641,0.0061292,7.0308254,8.81e-05,3.198,0.539,1.695071,0.005963,1560.0,5.49239,3.61495,0.299195,149.202,973.0,10.0,249.796,1.8905,5516.0,127.1,4.51,0.08,0.9,0.05,,,0.969,0.128746,"5,32",2021-12-21,2021-12-20,2023-02-19 00:00:00,found in faint-star QLP search,4685,1,False,False,False -316875094,4686.01,,3,4,3,3,1,4,4,16.3,44.6,123.11,1,0,0,PC,PC,13.372,0.009,,1,qlp-s32-faintsearch,QLP,04:57:01.15,-15:06:12.53,13.652,0.133,3.33,0.145,2459190.957776,0.0023323,7.9461192,4.01e-05,2.339,0.27,9.541999,0.014452,8750.0,13.3111,13.6973,,49.6833,739.0,13.0,751.692,47.713,5416.0,125.0,4.13,,1.38,,,,0.94,,"5,32",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4686,1,False,False,False -302759417,4687.01,,3,4,3,3,3,4,4,22.3,20.9,317.0,1,0,1,PC,PC,13.3354,0.013,,1,qlp-s45-tois,QLP,05:31:17.65,14:18:51.72,-2.919,0.05,-0.349,0.038,2459548.927537,0.0019103,3.313358,1.49e-05,3.014,0.242,6.785295,0.005164,6230.0,4.75613,14.6999,,817.242,1489.0,23.0,977.374,28.735,6209.0,122.0,3.97,,1.87,,,,1.19,,"6,32,43,44,45",2021-12-21,2022-03-11,2023-04-05 00:00:00,found in faint-star QLP search,4687,1,False,False,False -245793479,4688.01,,3,4,3,3,1,4,4,19.8,72.5,91.16,2,0,0,PC,PC,12.587,0.01,,1,qlp-s44-tois,QLP,04:28:37.86,14:31:59.85,-6.637,0.05,-6.286,0.034,2459512.429858,0.001294,7.7688831,1.86e-05,1.353,0.361,8.687985,0.051656,7970.0,47.576,11.4556,1.05342,40.9939,704.0,23.0,435.088,5.534,5851.0,134.8,4.35,0.08,1.14,0.06,,,1.06,0.133067,"5,32,43,44",2021-12-21,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search,4688,1,False,False,False -396935099,4689.01,,3,4,3,3,3,4,4,35.3,115.0,45.32,1,0,1,PC,PC,12.52,0.173,,1,qlp-s32-faintsearch,QLP,04:13:59.05,02:45:44.27,,,,,2459198.970846,0.0009791,2.4337374,0.0001529,1.835,0.092,13.701219,0.003927,12540.0,3.61706,8.67796,1.32915,116.886,916.0,52.0,,,4294.3,362.1,,,0.74,0.11,-0.095026,0.061637,,,32,2021-12-21,2021-12-20,2023-04-05 00:00:00,found in faint-star QLP search,4689,1,False,False,False -455033897,4690.01,,3,5,5,3,3,4,4,6.4,38.3,37.49,0,2,1,PC,APC,11.0796,0.009,,1,qlp-s32-faintsearch,QLP,05:06:23.32,03:16:49.76,-2.111,0.24,-3.495,0.174,2459180.689567,0.0038891,11.5341529,8.6e-05,1.332,0.424,1.901703,0.016866,1750.0,15.5342,6.82739,0.80733,19.425,584.0,9.0,395.245,20.5795,6356.0,137.3,4.18,0.1,1.51,0.1,,,1.26,0.199044,"5,32",2021-12-21,2021-12-20,2023-02-19 00:00:00,found in faint-star QLP search,4690,1,False,False,False -200321577,4691.01,,3,4,3,3,1,4,4,6.8,25.3,76.76,0,0,0,PC,PC,13.364,0.006,,1,qlp-s32-faintsearch,QLP,05:05:16.86,-44:39:17.92,5.787,0.023,1.893,0.029,2459185.213746,0.0041218,8.5725884,7.08e-05,4.495,0.54,5.311363,0.007384,4880.0,6.80098,10.4135,,222.607,1076.0,16.0,994.05,14.6365,5807.0,122.0,4.11,,1.5,,,,1.04,,"4,5,6,31,32",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4691,1,False,False,False -153723304,4692.01,,3,4,3,3,1,4,4,19.3,53.6,81.1,0,0,0,PC,PC,13.2815,0.006,,1,qlp-s32-faintsearch,QLP,04:24:16.81,-47:06:42.07,-0.831,0.027,-0.952,0.027,2459198.541053,0.0026639,4.0519584,0.000132,0.666,0.271,5.78062,0.441233,5310.0,406.308,10.7206,,24.4556,619.0,12.0,574.438,4.3645,5147.0,122.0,4.28,,1.12,,,,0.87,,"4,5,30,31,32",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4692,1,False,False,False -117843365,4693.01,,3,5,5,3,3,4,4,64.0,137.6,73.95,1,1,1,PC,APC,11.8326,0.007,,1,qlp-s32-faintsearch,QLP,04:40:53.28,-16:35:24.09,25.179,0.039,-13.253,0.038,2459198.727602,0.0008519,1.9113216,0.0001204,1.167,0.271,8.064323,0.057038,7400.0,52.5326,10.1581,1.14983,223.347,1076.0,46.0,213.014,1.521,4578.0,126.6,4.25,0.1,1.05,0.08,,,0.723,0.0812038,32,2021-12-21,2021-12-20,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4693,1,False,False,False -50745119,4694.01,,3,4,3,3,1,4,4,20.7,20.8,317.0,2,0,0,PC,PC,13.5249,0.008,,1,qlp-s32-faintsearch,QLP,05:32:00.12,-02:25:03.48,3.438,0.059,-2.612,0.045,2459193.698371,0.0041554,5.629318,0.0001422,1.847,0.37,8.753655,0.053503,8030.0,49.2769,14.4974,,86.4308,849.0,10.0,759.794,17.343,5885.0,122.0,4.1,,1.53,,,,1.07,,"6,32",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4694,1,False,False,False -139550876,4695.01,,3,4,3,3,3,4,4,8.1,76.8,115.05,0,0,1,PC,PC,12.4332,0.006,,1,qlp-s32-faintsearch,QLP,04:16:47.29,-21:36:36.49,-10.767,0.033,-65.897,0.037,2459155.04089,0.0009322,35.7861915,7.67e-05,2.924,0.245,22.112088,0.08336,20160.0,76.7743,13.2073,1.04822,8.69035,478.0,61.0,358.057,3.5235,5755.0,122.6,4.59,0.08,0.85,0.04,,,1.03,0.13202,"5,31,32",2021-12-21,2021-12-20,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4695,1,False,False,False -243011228,4696.01,,3,4,3,3,3,4,4,14.8,43.8,82.04,0,0,1,PC,PC,13.3233,0.009,,1,qlp-s44-tois,QLP,04:02:20.64,12:24:51.41,7.282,0.076,1.495,0.067,2459521.210956,0.0018522,4.1249095,1.18e-05,3.025,0.199,5.966197,0.003776,5480.0,3.4778,10.7709,,453.643,1285.0,25.0,759.867,23.365,6007.5,24.5,4.16,,1.44,,0.122848,0.0234639,1.11,,"5,32,42,43,44",2021-12-21,2022-03-11,2023-04-05 00:00:00,found in faint-star QLP search,4696,1,False,False,False -250189842,4697.01,,3,4,3,3,1,4,4,11.9,24.2,126.22,0,0,0,PC,PC,13.5473,0.007,,1,qlp-s32-faintsearch,QLP,04:19:23.35,-04:32:52.39,4.02,0.035,-1.74,0.02,2459195.473718,0.0078865,5.0274739,9.84e-05,6.229,1.056,4.427963,0.013258,4070.0,12.2109,13.8852,,861.273,1509.0,12.0,1206.44,36.675,5178.0,122.0,,,2.12,,,,,,"5,32",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4697,1,False,False,False -411781649,4698.01,,3,4,3,3,3,4,4,26.3,69.3,105.33,2,0,1,PC,PC,13.5306,0.011,,1,qlp-s32-faintsearch,QLP,05:14:41.61,14:26:50.47,9.835,0.067,-19.758,0.049,2459191.579713,0.0032873,4.2333233,0.0013356,2.325,0.358,11.844612,0.024486,10850.0,22.5524,12.5093,,217.929,1070.0,15.0,624.495,14.802,5696.0,33.7,4.33,,1.14,,0.245,0.032,1.01,,32,2021-12-21,2021-12-20,2023-04-05 00:00:00,found in faint-star QLP search,4698,1,False,False,False -34395020,4699.01,,3,4,3,3,1,4,4,9.9,39.0,84.8,0,0,0,PC,PC,13.2669,0.008,,1,qlp-s32-faintsearch,QLP,05:29:12.95,-10:19:43.31,6.73,0.035,19.161,0.035,2459186.707588,0.0055734,10.1766089,0.000103,4.474,1.133,8.69893,0.033054,7980.0,30.4434,11.0026,,154.351,981.0,17.0,621.613,8.748,5452.0,122.0,4.26,,1.19,,,,0.95,,"6,32",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4699,1,False,False,False -468911753,4700.01,,3,4,3,3,1,4,4,,,33.58,0,0,0,PC,PC,13.8159,0.009,,1,qlp-s32-faintsearch,QLP,04:10:52.91,08:25:26.96,,,,,2459197.315409,0.0027928,2.2964514,1.23e-05,1.734,0.244,3.730477,0.00866,3430.0,7.97608,,,150.096,975.0,13.0,,,4391.0,123.3,,,,,,,,,"5,32",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius or parallax,4700,1,False,False,False -9344899,4701.01,,3,4,3,3,1,4,4,9.8,46.0,63.23,1,0,0,PC,PC,12.735,0.006,,1,qlp-s32-faintsearch,QLP,04:51:10.54,-08:26:50.35,9.441,0.032,4.204,0.03,2459197.981561,0.0025735,8.5821795,6.05e-05,3.835,0.31,7.397291,0.007681,6790.0,7.07428,9.30439,0.542853,149.861,974.0,18.0,532.228,5.3035,5818.0,127.8,4.38,0.07,1.1,0.05,,,1.047,0.127378,"5,32",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4701,1,False,False,False -248690688,4702.01,,3,4,3,3,3,4,4,48.2,52.4,317.0,1,2,1,PC,PC,12.2469,0.008,,1,qlp-s32-faintsearch,QLP,04:32:52.63,-03:44:14.88,0.354,0.051,-6.667,0.039,2459194.134783,0.0009654,3.121702,0.0002565,3.323,0.111,13.822174,0.002454,12650.0,2.2599,14.8115,0.787713,842.648,1500.0,64.0,521.26,9.665,5944.0,131.5,4.25,0.08,1.29,0.07,,,1.09,0.130788,32,2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4702,1,False,False,False -293514367,4703.01,,3,4,3,3,3,4,4,16.6,45.2,123.01,2,0,1,PC,PC,13.1052,0.008,,1,qlp-s44-tois,QLP,05:06:19.22,13:46:19.95,1.986,0.049,-8.642,0.038,2459517.108882,0.0023394,5.1155806,2.12e-05,3.042,0.198,6.807146,0.005299,6250.0,4.88072,13.6976,,366.902,1219.0,21.0,934.743,23.838,6349.0,122.0,4.07,,1.71,,,,1.26,,"5,32,43,44",2021-12-21,2022-03-11,2023-02-27 00:00:00,found in faint-star QLP search,4703,1,False,False,False -455030519,4704.01,,3,5,5,3,3,4,4,20.6,44.2,117.92,0,1,1,PC,APC,12.4562,0.007,,1,qlp-s32-faintsearch,QLP,05:06:19.06,03:35:18.66,-0.485,0.054,-4.897,0.041,2459197.724648,0.0022265,2.6875966,1.18e-05,1.469,0.259,2.69597,0.007643,2480.0,7.03954,13.3886,0.99904,272.867,1132.0,14.0,954.316,31.9,5885.0,131.4,3.77,0.08,2.24,0.13,,,1.07,0.132579,"5,32",2021-12-21,2021-12-20,2023-02-19 00:00:00,found in faint-star QLP search,4704,1,False,False,False -436637677,4705.01,TIC 436637677.01,3,4,3,3,3,4,4,11.0,44.6,70.65,0,11,2,PC,PC,11.4616,0.014,,1,qlp-s44-tois,QLP,04:48:39.59,12:57:18.9,-11.299,0.072,-3.552,0.037,2459519.126558,0.0025982,11.9140328,4.91e-05,5.076,0.341,3.316556,0.00195,3050.0,1.79604,9.89059,0.547111,194.396,1040.0,25.0,454.797,8.648,5359.0,235.8,4.08,0.72,1.77,0.09,,,1.22,0.172489,"5,32,43,44",2021-12-21,2022-03-11,2023-04-16 00:00:00,found in faint-star QLP search,4705,1,False,False,True -37117064,4706.01,TIC 37117064.01,3,4,3,3,3,4,4,0.1,32.0,106.06,0,7,1,PC,PC,11.4558,0.006,,1,qlp-s33-faintsearch,QLP,06:01:57.19,-29:08:11.12,25.37,2.0,-27.01,2.0,2458483.114646,0.0011867,735.982363,9.53e-05,5.289,0.377,9.925429,0.082876,9100.0,76.3286,12.541,,0.0728708,,50.0,217.627,,5309.0,35.1,4.41,2.0,1.01,,,,,,"6,33",2021-12-21,2019-12-17,2022-12-14 12:09:24,period may be several times shorter than max period of ~736 days; found in faint-star QLP search,4706,1,False,False,True -322825139,4707.01,,3,4,3,3,3,4,4,91.1,82.0,317.0,2,2,1,PC,PC,12.2096,0.014,,1,qlp-s33-faintsearch,QLP,06:44:58.57,-14:32:47.99,-5.192,0.063,9.409,0.073,2459226.690709,0.0022156,0.4709937,6.64e-05,0.336,0.172,2.064861,1.85983,1900.0,1711.5,14.5973,6.74063,2761.87,2019.0,11.0,688.203,17.597,6719.0,153.5,4.26,0.09,1.47,0.08,,,1.43,0.237635,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4707,1,False,False,False -232194097,4708.01,,3,4,3,3,3,4,4,38.7,38.5,317.0,1,0,1,PC,PC,13.4142,0.011,,1,qlp-s33-faintsearch,QLP,06:05:53.6,00:21:26.12,0.258,0.049,-4.48,0.045,2459223.248135,0.0029808,3.3560085,0.0008467,3.354,0.938,11.844612,0.446323,10850.0,410.994,15.1419,,1635.6,1771.0,13.0,708.347,18.3615,5906.0,123.0,4.26,,1.27,,,,1.07,,33,2021-12-21,2021-12-20,2023-04-05 00:00:00,found in faint-star QLP search,4708,1,False,False,False -317328621,4709.01,,3,4,3,3,1,4,4,,,48.76,3,0,0,PC,PC,12.8771,0.009,,1,qlp-s33-faintsearch,QLP,05:49:57.72,-12:50:06.76,2.078,2.249,-0.931,2.249,2459220.512929,0.0018239,6.2397532,3.09e-05,3.209,0.453,12.547332,2.706637,11490.0,2489.8,7.89594,3.42391,587.658,1371.0,26.0,,,5956.9,807.0,,,0.5,0.13,,,,,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4709,1,False,False,False -144486060,4710.01,,3,4,3,3,3,4,4,16.0,42.2,53.1,0,0,1,PC,PC,12.8983,0.006,,1,qlp-s33-faintsearch,QLP,05:36:40.01,-38:31:08.86,7.676,0.022,-6.491,0.031,2459226.526882,0.0020354,1.4798437,6.3e-06,2.702,0.322,3.360119,0.002388,3090.0,2.19901,8.37272,0.524977,2205.43,1909.0,16.0,713.662,7.404,5475.0,131.7,4.07,0.08,1.5,0.08,,,0.96,0.122672,"5,6,32,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4710,1,False,False,False -177718896,4711.01,,3,4,3,3,3,4,4,11.9,20.7,121.99,0,0,1,PC,PC,12.6127,0.03,,1,qlp-s33-faintsearch,QLP,07:09:14.79,-11:03:47.74,1.709,0.04,-2.203,0.038,2459221.348914,0.0079394,3.7081082,8.35e-05,6.54,0.742,1.618953,0.004015,1490.0,3.69798,13.6266,,1874.58,1833.0,10.0,1162.16,32.88,5337.0,122.0,,,3.56,,,,,,"7,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4711,1,False,False,False -317089770,4712.01,,3,4,3,3,1,4,4,8.9,38.4,57.57,0,0,0,PC,PC,12.4505,0.012,,1,qlp-s33-faintsearch,QLP,05:45:41.07,-12:07:42.19,-5.139,0.05,-4.147,0.058,2459221.840496,0.0024013,8.8720052,6.2e-05,3.592,0.375,4.755065,0.004482,4370.0,4.12787,8.76898,0.545847,117.013,916.0,21.0,494.543,6.571,5626.0,138.4,4.2,0.08,1.31,0.07,,,1.0,0.125953,"6,32,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4712,1,False,False,False -102542376,4713.01,,3,5,5,3,3,4,4,43.7,76.3,317.0,0,2,2,PC,APC,11.8362,0.006,,1,qlp-s33-faintsearch,QLP,05:58:33.8,10:13:14.12,,,,,2459224.623802,0.0019302,2.9532479,1.26e-05,3.095,0.352,6.763444,0.005548,6210.0,5.10948,,,2007.04,1864.0,18.0,1028.39,,7076.3,338.2,,,,,,,,,"6,33",2021-12-21,2021-12-20,2023-04-16 00:00:00,found in faint-star QLP search,4713,1,False,False,False -251111783,4714.01,,3,4,3,3,1,4,4,25.3,33.7,317.0,0,0,0,PC,PC,13.2837,0.017,,1,qlp-s33-faintsearch,QLP,06:19:44.87,-05:43:09.1,2.497,0.071,-1.325,0.072,2459219.562126,0.0031914,7.9144674,5.53e-05,3.114,0.336,22.777137,0.031855,20760.0,29.3388,14.5746,,80.2209,833.0,15.0,517.611,11.617,5431.0,122.0,4.42,,1.0,,,,0.95,,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4714,1,False,False,False -268372005,4715.01,,5,5,5,5,5,5,5,23.2,70.1,111.6,0,2,0,PC,FP,11.907,0.008,,1,qlp-s33-faintsearch,QLP,07:00:00.46,-02:20:22.22,-3.207,0.066,-0.582,0.058,2459214.764692,0.0020006,6.4274159,3.42e-05,1.277,0.196,4.28625,0.018898,3940.0,17.406,12.9491,1.05624,41.0821,705.0,11.0,583.6,14.2765,6227.0,148.7,4.12,0.09,1.58,0.09,0.132,0.019,1.2,0.17028,"7,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4715,1,False,False,False -268689126,4716.01,,3,4,3,3,3,4,4,11.1,15.6,317.0,0,0,1,PC,PC,12.9871,0.016,,1,qlp-s33-faintsearch,QLP,07:00:58.4,-02:15:32.92,-0.431,0.05,-1.891,0.048,2459218.398096,0.006439,5.2376102,8.49e-05,6.518,0.635,4.166353,0.00775,3830.0,7.13816,16.2444,1.48178,3686.59,2170.0,10.0,2046.79,144.535,7666.0,178.1,3.87,0.09,2.59,0.2,,,1.8,0.294916,"7,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4716,1,False,False,False -269190305,4717.01,,3,4,3,3,1,4,4,21.4,33.9,317.0,0,0,0,PC,PC,13.187,0.01,,1,qlp-s33-faintsearch,QLP,07:02:56.98,-00:48:12.02,0.308,0.051,-0.877,0.048,2459219.329857,0.0026693,4.1583367,3.01e-05,3.043,0.315,10.484383,0.014871,9610.0,13.6963,16.0152,,1509.9,1736.0,12.0,1422.73,64.565,8131.7,53.4,4.35,,1.55,,0.213,0.051,1.98,,"7,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4717,1,False,False,False -234958949,4718.01,,3,4,3,3,3,4,4,12.4,54.6,52.45,1,0,2,PC,PC,12.6581,0.019,,1,qlp-s33-faintsearch,QLP,06:34:45.75,04:23:45.14,-2.894,0.041,-1.136,0.037,2459220.398799,0.0037437,5.1409029,3.46e-05,2.265,0.294,6.348366,0.014281,5830.0,13.1535,8.29803,0.690693,207.445,1057.0,9.0,563.123,9.377,6282.4,140.6,4.47,0.1,1.07,0.07,0.429,0.132,1.23,0.167406,"6,33",2021-12-21,2021-12-20,2023-01-10 00:00:00,found in faint-star QLP search,4718,1,False,False,False -306363166,4719.01,,3,4,4,3,3,4,4,16.4,98.4,93.16,1,0,1,PC,PC,12.4967,0.006,,1,qlp-s33-faintsearch,QLP,06:04:22.67,-16:20:24.93,-10.051,0.029,16.681,0.037,2459201.745874,0.0013784,14.3953055,4.5e-05,2.87,0.466,18.964183,0.06933,17315.0,63.8537,11.615,1.03378,23.3681,612.0,16.0,239.104,1.054,4850.0,127.9,4.56,0.09,0.77,0.05,,,0.789,0.0920999,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4719,1,False,False,False -124322274,4720.01,,3,4,3,3,1,4,4,21.8,25.2,317.0,0,0,0,PC,PC,13.3224,0.011,,1,qlp-s33-faintsearch,QLP,06:56:43.78,-07:49:27.94,-4.163,0.051,2.15,0.051,2459225.607183,0.0027024,3.7810832,2.35e-05,3.069,0.311,8.753655,0.012804,8030.0,11.793,15.3456,,702.278,1434.0,15.0,1113.96,33.535,6364.0,122.0,4.14,,1.59,,,,1.27,,"6,7,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4720,1,False,False,False -229210014,4721.01,,3,4,3,3,1,4,4,16.7,70.7,43.71,1,0,0,PC,PC,12.8219,0.008,,1,qlp-s33-faintsearch,QLP,06:09:18.18,11:24:41.36,8.318,2.261,-20.373,2.262,2459223.127694,0.0018503,4.0086493,1.6e-05,2.384,0.208,7.058465,0.007987,6480.0,7.35663,7.43884,,120.607,,15.0,285.885,,4779.0,,,,0.77,,0.359,0.049,,,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4721,1,False,False,False -142530031,4722.01,,3,4,3,3,3,4,4,6.9,28.2,79.89,0,0,1,PC,PC,12.9256,0.074,,1,qlp-s33-faintsearch,QLP,06:53:19.16,-12:30:14.09,4.205,0.039,-13.823,0.037,2459219.500661,0.0056551,10.8910909,9.78e-05,3.992,0.381,4.733255,0.008252,4350.0,7.60062,10.6208,0.702194,177.179,1016.0,11.0,942.214,21.1,6619.0,499.3,4.17,0.12,1.61,0.08,,,1.39,0.317135,"6,7,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4722,1,False,False,False -322824542,4723.01,,3,4,3,3,1,4,4,22.2,25.9,317.0,1,0,0,PC,PC,13.0796,0.011,,1,qlp-s33-faintsearch,QLP,06:44:54.68,-14:17:24.14,-0.505,0.049,-4.443,0.051,2459226.361286,0.0036247,3.6590997,0.0009724,2.955,0.247,9.410569,0.01117,8630.0,10.288,14.6976,,814.239,1488.0,19.0,982.931,24.02,6624.0,123.0,4.18,,1.58,,,,1.39,,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4723,1,False,False,False -119638424,4724.01,,2,4,2,2,4,4,4,5.7,48.6,11.79,0,2,3,PC,PC,11.2567,0.006,,1,qlp-s33-faintsearch,QLP,06:43:37.76,-10:35:02.91,-3.075,0.083,11.605,0.097,2459221.311524,0.005248,3.572359,3.12e-05,2.731,0.476,1.412375,0.004519,1300.0,4.16208,3.43709,0.275018,495.575,1314.0,10.0,225.229,2.11,5730.0,135.0,4.52,0.08,0.92,0.05,,,1.023,0.128462,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4724,1,False,False,False -26587613,4725.01,,3,4,3,3,3,4,4,65.3,172.0,106.52,5,2,1,PC,PC,12.2651,0.006,,1,qlp-s45-tois,QLP,07:12:02.13,15:20:56.07,-5.753,0.075,-6.822,0.065,2459546.99513,0.00037,2.0763072,3.4e-06,1.223,0.107,17.755027,0.006228,16220.0,5.73659,12.6426,0.703632,243.693,1100.0,104.0,367.045,5.0275,5805.0,134.4,4.5,0.08,0.95,0.05,,,1.043,0.132035,"33,44,45",2021-12-21,2022-03-11,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4725,1,False,False,False -409009431,4726.01,,3,4,4,3,3,4,4,69.5,198.8,129.37,4,3,1,PC,PC,12.1022,0.015,,1,qlp-s33-faintsearch,QLP,06:10:55.16,-13:10:00.9,-1.54,0.064,-18.699,0.062,2459223.153269,0.000539,4.2971136,0.0002266,2.775,0.061,28.613755,0.003254,26010.0,2.99713,14.1426,0.82402,166.22,1000.0,115.0,250.87,2.1935,5203.0,142.5,4.53,0.08,0.85,0.05,,,0.88,0.11313,33,2021-12-21,2021-12-20,2023-01-10 00:00:00,found in faint-star QLP search,4726,1,False,False,False -39824732,4727.01,,3,4,3,3,1,4,4,72.4,139.9,317.0,1,0,0,PC,PC,12.7858,0.006,,1,qlp-s33-faintsearch,QLP,06:01:05.5,-02:17:16.43,8.672,0.035,-0.34,0.038,2459214.055371,0.002505,7.151653,2.81e-05,1.193,0.196,12.821956,4.547202,11740.0,4179.37,22.4773,8.20837,44.731,720.0,11.0,467.492,5.2135,5635.0,250.5,4.32,0.09,1.14,0.06,,,0.999,0.13545,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4727,1,False,False,False -270716565,4728.01,,3,4,4,3,3,4,4,37.0,127.5,110.4,3,0,1,PC,PC,13.2415,0.008,,1,qlp-s33-faintsearch,QLP,06:59:25.61,09:22:39.33,9.185,0.06,-28.056,0.048,2459223.951267,0.0010576,6.0879495,1.4e-05,1.639,0.304,29.405502,0.083339,26720.0,76.755,12.8134,0.745785,12.8029,526.0,26.0,196.016,1.4125,3971.0,157.0,4.6,0.01,0.66,0.02,,,0.636409,0.0204111,"6,33",2021-12-21,2021-12-20,2023-04-09 00:00:00,found in faint-star QLP search,4728,1,False,False,False -52738649,4729.01,,3,4,3,3,3,4,4,14.0,62.2,66.39,2,0,1,PC,PC,12.5934,0.006,,1,qlp-s33-faintsearch,QLP,06:36:31.54,-02:08:15.54,0.136,0.04,-14.945,0.04,2459220.206779,0.0025492,6.9279673,3.31e-05,1.868,0.332,7.441018,0.016193,6830.0,14.9139,9.55039,0.639462,70.231,806.0,10.0,464.949,4.91,5950.0,201.3,4.44,0.09,1.04,0.05,,,1.088,0.160647,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4729,1,False,False,False -97866515,4730.01,,3,4,3,3,3,4,4,16.4,59.2,69.07,0,2,3,PC,PC,11.5548,0.006,,1,qlp-s45-tois,QLP,06:02:29.02,16:29:58.06,-4.156,0.103,-10.292,0.078,2459545.314424,0.0020388,4.0681112,1.86e-05,3.284,0.806,2.336846,0.020039,2150.0,18.4566,9.75584,0.982277,4517.28,2283.0,30.0,572.079,20.4815,7070.0,406.1,4.13,0.1,1.78,0.09,,,1.565,0.296598,"6,33,43,44,45",2021-12-21,2022-03-11,2023-02-08 00:00:00,found in faint-star QLP search,4730,1,False,False,False -438368981,4731.01,,3,4,4,3,3,4,4,73.5,71.4,317.0,4,3,1,PC,PC,11.801,0.018,,1,qlp-s45-tois,QLP,06:28:35.34,14:56:25.39,,,,,2459548.375865,0.0002985,1.4553693,9e-07,1.236,0.176,10.70366,0.007687,9810.0,7.07973,13.4308,1.90665,1295.38,1671.0,102.0,,,6344.5,437.2,,,1.25,0.17,,,,,"6,33,43,44,45",2021-12-21,2022-03-11,2023-02-27 00:00:00,found in faint-star QLP search; v-shaped,4731,1,False,False,False -78489364,4732.01,,3,4,3,3,1,4,4,129.8,187.8,317.0,1,0,0,PC,PC,13.1802,0.007,,1,qlp-s33-faintsearch,QLP,06:50:42.03,-18:23:05.48,-0.844,0.038,3.154,0.037,2459225.157456,0.0016095,1.8911553,0.0002379,1.085,0.223,15.89148,4.803299,14530.0,4414.23,21.7999,,538.48,1342.0,19.0,570.837,10.2715,5711.0,123.0,4.44,,1.01,,,,1.018,,33,2021-12-21,2021-12-20,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4732,1,False,False,False -438149332,4733.01,,3,4,3,3,3,4,4,34.2,53.6,317.0,1,0,1,PC,PC,13.0454,0.015,,1,qlp-s45-tois,QLP,06:24:00.14,14:00:46.52,-1.903,0.048,-2.825,0.041,2459544.58483,0.0009234,5.3054422,1.55e-05,3.785,0.108,19.942431,0.003785,18200.0,3.48618,17.4742,,510.647,1324.0,49.0,796.776,16.7305,6473.0,122.0,4.35,,1.27,,,,1.32,,"6,33,43,44,45",2021-12-21,2022-03-11,2023-04-03 00:00:00,found in faint-star QLP search,4733,1,False,False,False -97714451,4734.01,,3,4,4,3,3,4,4,10.6,37.0,60.43,5,3,7,PC,PC,11.9039,0.014,,1,qlp-s45-tois,QLP,06:01:25.95,12:32:52.38,-1.641,0.185,-5.178,0.152,2459541.87525,0.0022294,6.2356356,2.98e-05,5.544,0.277,2.685086,0.001038,2470.0,0.956138,9.02698,0.578445,633.344,1397.0,23.0,563.068,19.151,5854.0,149.4,3.97,0.08,1.76,0.11,,,1.06,0.133033,"6,33,43,44,45",2021-12-21,2022-03-11,2023-05-12 00:00:00,found in faint-star QLP search,4734,1,False,False,False -280292434,4735.01,,3,4,3,3,1,4,4,52.5,147.4,90.85,2,0,0,PC,PC,12.922,0.019,,1,qlp-s33-faintsearch,QLP,06:43:35.89,-05:33:06.96,-26.123,2.162,-29.634,2.162,2459221.109539,0.0008386,3.541053,6.4e-06,2.031,0.211,23.731084,0.013086,21620.0,12.0527,,,,,35.0,,,,,,,,,,,,,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius; Gaia DR2 Rstar ~ 0.587 Rsun which would make Rp planetary (~7 Re),4735,1,False,False,False -265619984,4736.01,,3,4,3,3,1,4,4,56.0,75.1,317.0,0,0,0,PC,PC,13.4148,0.011,,1,alert with qlp-s33-faintsearch,QLP,06:19:14.27,00:39:05.99,4.023,0.043,-8.087,0.04,2459222.792459,0.0078987,2.8564778,5.02e-05,4.678,0.682,5.791536,2.567553,5320.0,2362.01,21.5886,,8379.19,2665.0,10.0,914.606,24.497,5777.0,122.0,4.02,,1.65,,,,1.04,,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4736,1,False,False,False -142532090,4737.01,,1,4,1,3,3,4,4,6.3,27.9,48.09,0,14,3,PC,PC,11.992,0.006,,1,qlp-s33-faintsearch,QLP,06:53:38.52,-13:26:10.98,11.298,0.061,-20.718,0.071,2459222.401832,0.0050227,9.3202467,9.15e-05,4.963,0.533,2.391251,0.003517,2200.0,3.2391,7.8768,0.526547,250.474,1108.0,15.0,580.199,12.472,5916.0,160.0,4.02,0.08,1.67,0.09,,,1.077,0.144326,"6,7,33",2021-12-21,2021-12-20,2023-06-07 00:00:00,found in faint-star QLP search,4737,1,False,False,False -247873937,4738.01,,3,5,5,3,3,4,4,27.0,49.3,317.0,0,2,1,PC,APC,12.1359,0.01,,1,qlp-s45-tois,QLP,05:51:17.81,13:44:45.21,-1.524,0.107,-2.472,0.086,2459549.304788,0.0009582,4.6498719,8.1e-06,4.995,0.11,8.84122,0.000886,8110.0,0.815987,16.6839,1.12486,4756.94,2313.0,37.0,1102.97,67.07,9056.0,164.0,4.3,0.09,1.78,0.12,,,2.29,0.31967,"6,33,44,45",2021-12-21,2022-03-11,2023-02-08 00:00:00,found in faint-star QLP search,4738,1,False,False,False -281716779,4739.01,,3,4,3,3,3,4,4,58.2,141.6,317.0,1,1,1,PC,PC,10.5293,0.006,,1,qlp-s33-faintsearch,QLP,06:50:01.37,-05:12:07.43,-3.1,1.7,3.3,1.9,2459223.200936,0.0008547,8.1703609,1.66e-05,3.365,0.186,10.265151,0.007172,9410.0,6.60552,22.3829,,1223.74,,55.0,626.217,,8190.0,,4.438,,2.1,,,,,,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search; likely inflated hot Jupiter,4739,1,False,False,True -72097808,4740.01,,3,4,3,3,1,4,4,,,60.83,0,1,0,PC,PC,11.572,0.018,,1,qlp-s33-faintsearch,QLP,06:09:29.61,-06:03:41.49,,,,,2459226.154086,0.0014336,5.7728793,0.0005881,3.883,0.296,7.517545,0.002506,6900.0,2.30808,,,,,41.0,633.036,,,,,,,,,,,,33,2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius; Rp may be too large if host star is evolved,4740,1,False,False,False -291198795,4741.01,,3,4,3,3,3,4,4,31.3,74.1,127.8,1,0,2,PC,PC,12.6648,0.026,,1,qlp-s33-faintsearch,QLP,07:01:40.46,02:11:20.94,-4.481,0.041,5.829,0.035,2459223.677938,0.0021153,2.4849639,0.0004804,2.977,0.213,7.441018,0.005811,6830.0,5.35247,14.0194,0.976199,1421.21,1710.0,14.0,772.403,14.6945,6252.0,105.3,4.11,0.09,1.6,0.1,-0.295,0.029,1.21,0.169145,33,2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4741,1,False,False,False -237637903,4742.01,TIC 237637903.01,3,4,3,3,3,4,4,14.5,54.6,77.75,2,0,1,PC,PC,12.9065,0.009,,1,qlp-s33-faintsearch,QLP,06:54:06.36,05:28:33.71,-3.345,0.046,-3.488,0.039,2459226.761013,0.0029643,4.1034672,3.38e-05,2.918,0.274,7.539411,0.010605,6920.0,9.76711,10.5038,0.652592,689.785,1427.0,11.0,803.756,16.4875,6753.0,133.6,4.39,0.09,1.27,0.06,,,1.44,0.24886,"6,33",2021-12-21,2021-12-20,2023-04-05 00:00:00,found in faint-star QLP search,4742,1,False,False,False -23725901,4743.01,,3,4,3,3,1,4,4,17.1,32.1,317.0,3,0,0,PC,PC,13.0802,0.01,,1,qlp-s33-faintsearch,QLP,07:14:59.16,-00:14:34.56,-1.318,0.045,-0.298,0.037,2459217.210283,0.0036254,6.2185453,5.79e-05,3.122,0.733,8.545715,0.031524,7840.0,29.0341,19.4459,,798.226,1480.0,14.0,1882.37,82.125,7968.0,123.0,4.06,,2.14,,,,1.92,,"7,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4743,1,False,False,False -293931909,4744.01,,3,4,3,3,3,4,4,16.7,41.2,130.71,0,0,2,PC,PC,12.7323,0.029,,1,qlp-s33-faintsearch,QLP,06:23:15.73,04:53:47.06,2.178,0.04,-0.122,0.036,2459220.296088,0.0048311,4.8013522,4.2e-05,4.644,0.618,5.104081,0.008391,4690.0,7.72825,14.2355,1.32821,1151.39,1622.0,13.0,999.297,24.677,6399.9,149.9,3.9,0.11,2.11,0.17,0.237,0.083,1.28,0.20503,"6,33",2021-12-21,2021-12-20,2023-01-10 00:00:00,found in faint-star QLP search,4744,1,False,False,False -269278156,4745.01,,3,4,3,3,3,4,4,26.8,33.4,317.0,2,0,1,PC,PC,13.1524,0.006,,1,qlp-s33-faintsearch,QLP,06:58:57.19,07:56:40.61,-0.487,2.214,-0.456,2.214,2459220.372965,0.0021444,4.413935,2.21e-05,2.604,0.308,11.31787,0.013373,10370.0,12.3169,13.3105,2.07289,293.437,1153.0,16.0,898.386,,5972.0,484.6,,,1.28,0.19,,,,,"6,33",2021-12-21,2021-12-20,2023-04-03 00:00:00,found in faint-star QLP search,4745,1,False,False,False -160180298,4746.01,,3,4,3,3,3,4,4,5.2,44.3,17.96,0,0,1,PC,PC,11.9046,0.006,,1,qlp-s33-faintsearch,QLP,05:16:31.13,-41:26:50.7,52.876,0.032,43.429,0.044,2459213.185298,0.0020748,7.5395871,4.5e-05,2.44,0.236,3.174987,0.004284,2920.0,3.94601,4.39334,0.315644,55.2646,759.0,20.0,218.705,0.9425,5223.0,135.1,4.6,0.09,0.78,0.05,,,0.89,0.109551,"5,31,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4746,1,False,False,False -235078021,4747.01,TIC 235078021.01,2,4,2,2,3,4,4,4.0,33.9,14.07,0,0,1,PC,PC,11.8128,0.006,,1,qlp-s33-faintsearch,QLP,05:45:42.64,-45:01:45.22,9.399,0.04,59.156,0.042,2459222.486906,0.0038421,5.2192426,3.43e-05,2.45,0.472,1.629827,0.003353,1500.0,3.0884,3.8343,0.273951,190.795,1035.0,14.0,304.615,2.015,5688.0,133.4,4.45,0.08,0.99,0.05,,,1.01,0.128202,"5,6,32,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4747,1,False,False,False -59770954,4748.01,,3,4,3,3,3,4,4,23.8,66.3,126.68,2,0,1,PC,PC,13.3212,0.013,,1,qlp-s46-tois,QLP,06:43:43.97,13:35:57.17,-0.935,0.051,-5.169,0.045,2459544.135431,0.0020375,4.1018859,1.44e-05,3.576,0.215,11.669003,0.007438,10690.0,6.85043,13.8992,,759.181,1462.0,24.0,883.931,22.6775,6327.7,115.2,4.3,,1.31,,0.0245324,0.107848,1.25,,"6,33,44,45",2021-12-21,2022-03-11,2023-04-05 00:00:00,7 arcsec from brighter 59770952 but faint-star diffimage indicates 59770954 is the correct target; found in faint-star QLP search,4748,1,False,False,False -153412485,4749.01,,3,4,3,3,3,4,4,67.4,66.5,317.0,2,0,1,PC,PC,13.4835,0.015,,1,qlp-s33-faintsearch,QLP,06:12:30.75,06:14:42.57,-0.397,0.044,-5.693,0.041,2459226.693605,0.0035472,1.3832999,8.8e-06,2.774,0.183,9.837776,1.736666,9020.0,1598.25,16.4864,,10840.4,2842.0,16.0,692.636,13.5395,5786.0,122.0,4.33,,1.16,,,,1.04,,"6,33",2021-12-21,2021-12-20,2023-04-05 00:00:00,found in faint-star QLP search,4749,1,False,False,False -317189702,4750.01,,3,4,3,3,3,4,4,24.4,79.5,96.22,2,4,1,PC,PC,11.6252,0.008,,1,qlp-s33-faintsearch,QLP,05:48:17.8,-15:11:58.19,-0.86,0.06,-0.619,0.069,2459222.777563,0.0006657,3.2141617,6.3e-06,1.618,0.162,3.66511,0.003602,3370.0,3.31717,11.8959,0.646356,462.146,1291.0,36.0,670.702,16.37,7137.0,129.0,4.17,0.09,1.72,0.08,,,1.59,0.273602,"6,32,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4750,1,False,False,False -291580615,4751.01,,3,4,4,3,1,4,4,,,88.95,2,1,0,PC,PC,12.097,0.035,,1,qlp-s33-faintsearch,QLP,07:03:22.1,01:40:52.4,0.4,2.8,-0.7,3.0,2459227.341639,0.000916,3.6014534,7.7e-06,3.747,0.239,11.778755,0.002642,10790.0,2.43349,,,,,46.0,773.945,,,,,,,,,,,,"7,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search; no stellar parameters; Rp may be too large depending on stellar radius,4751,1,False,False,False -237700098,4752.01,,3,4,3,3,1,4,4,12.4,48.4,71.3,0,0,0,PC,PC,13.3596,0.017,,1,qlp-s33-faintsearch,QLP,06:55:19.85,01:06:19.08,11.16,0.06,-3.877,0.049,2459218.934935,0.0051612,5.0467874,6.9e-05,4.516,1.071,7.834643,0.026804,7190.0,24.6873,9.9097,,995.585,1564.0,11.0,746.986,22.5215,6252.0,122.0,4.45,,1.08,,,,1.21,,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4752,1,False,False,False -306604742,4753.01,,3,4,3,3,3,4,4,12.2,32.3,94.52,0,0,2,PC,PC,12.4037,0.006,,1,qlp-s45-tois,QLP,06:30:28.16,14:03:29.96,-4.832,0.064,-3.695,0.057,2459541.712722,0.0038459,5.3970484,4.93e-05,6.194,0.581,3.044325,0.002577,2800.0,2.37396,11.7601,0.812642,1200.61,1639.0,22.0,835.645,30.099,5996.0,172.8,3.78,0.09,2.24,0.14,,,1.105,0.156741,"6,33,43,44,45",2021-12-21,2022-03-11,2023-01-10 00:00:00,found in faint-star QLP search,4753,1,False,False,False -61344769,4754.01,,3,4,3,3,1,4,4,28.4,81.5,127.7,0,0,0,PC,PC,13.0345,0.032,,1,qlp-s33-faintsearch,QLP,06:37:54.26,-14:02:26.68,-2.45,0.04,3.974,0.045,2459226.014665,0.0016343,3.6307276,1.15e-05,3.198,0.357,11.515368,0.008747,10550.0,8.05624,14.0586,,855.031,1506.0,31.0,746.24,13.242,6350.0,122.0,4.35,,1.25,,,,1.26,,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4754,1,False,False,False -267197567,4755.01,,3,4,3,3,3,4,4,16.3,34.2,317.0,1,0,1,PC,PC,12.022,0.006,,1,qlp-s33-faintsearch,QLP,06:13:57.04,-37:40:07.91,2.434,0.037,8.204,0.041,2459216.543014,0.0022427,22.7273078,9.59e-05,2.485,0.624,7.09125,0.338406,6510.0,311.635,19.0824,3.93491,34.998,677.0,22.0,757.269,13.6025,6243.0,126.4,3.93,0.08,1.98,0.09,,,1.21,0.170729,"6,7,32,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4755,1,False,False,False -119556803,4756.01,,3,4,3,3,3,4,4,35.5,51.3,317.0,0,0,1,PC,PC,12.687,0.022,,1,qlp-s33-faintsearch,QLP,06:43:27,-07:11:45.76,-15.241,2.162,5.028,2.163,2459216.307194,0.0027922,8.0823172,4.08e-05,1.414,0.417,4.74416,3.872673,4360.0,3560.51,15.2282,6.66046,59.7456,774.0,9.0,553.387,,5351.5,313.9,,,0.98,0.11,,,,,"6,33",2021-12-21,2021-12-20,2023-01-10 00:00:00,found in faint-star QLP search,4756,1,False,False,False -53744258,4757.01,,3,4,3,3,1,4,4,14.8,40.7,92.04,0,0,0,PC,PC,13.4965,0.011,,1,qlp-s33-faintsearch,QLP,06:53:22.26,-24:13:40.32,-0.963,0.024,3.523,0.03,2459227.260198,0.0038733,2.0804611,2.27e-05,3.608,0.477,5.726045,0.008941,5260.0,8.23508,11.5464,,3648.06,2165.0,17.0,1273.46,36.205,6434.0,122.0,4.14,,1.6,,,,1.3,,"6,7,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4757,1,False,False,False -34524670,4758.01,,3,4,3,3,3,4,4,25.2,35.3,317.0,1,0,1,PC,PC,12.7743,0.008,,1,qlp-s33-faintsearch,QLP,06:21:31.02,-16:31:32.06,4.279,0.046,5.047,0.039,2459222.180238,0.0027749,5.7627112,3.83e-05,3.501,0.953,10.550162,0.760565,9670.0,700.261,15.7774,4.36427,1176.49,1631.0,29.0,817.426,13.236,6589.0,126.9,4.24,0.09,1.48,0.07,,,1.37,0.215391,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4758,1,False,False,False -49705089,4759.01,,3,4,3,3,3,4,4,6.9,22.8,71.54,0,15,1,PC,PC,12.2627,0.007,,1,qlp-s33-faintsearch,QLP,06:23:44.23,-24:01:28.76,0.599,0.028,7.779,0.04,2459226.011756,0.0070672,9.6578504,0.0001249,5.943,0.619,2.500069,0.004627,2300.0,4.26169,9.98401,0.720278,258.473,1117.0,12.0,766.516,14.1815,5557.0,131.3,3.79,0.08,2.09,0.11,,,0.98,0.120076,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4759,1,False,False,False -291332861,4760.01,,3,4,3,3,3,4,4,22.2,63.6,317.0,2,0,1,PC,PC,13.4145,0.006,,1,qlp-s33-faintsearch,QLP,06:17:17.83,09:38:14.8,-0.295,2.28,5.583,2.28,2459226.580412,0.00374,7.7223185,7.16e-05,3.344,0.689,12.437502,0.030173,11390.0,27.7898,,,717.021,1441.0,13.0,2406.51,,8539.7,456.9,,,,,,,,,"6,33",2021-12-21,2021-12-20,2023-04-05 00:00:00,found in faint-star QLP search; no stellar radius,4760,1,False,False,False -440849210,4761.01,,3,4,3,3,3,4,4,10.1,33.4,71.31,1,2,2,PC,PC,12.1499,0.007,,1,qlp-s46-tois,QLP,07:18:17.9,14:06:57.13,-2.651,0.074,-2.894,0.06,2459575.895584,0.0019974,3.7863767,1.5e-05,5.123,0.301,2.38037,0.001021,2190.0,0.940273,9.94411,0.665626,2897.86,2044.0,27.0,1053.95,49.35,6892.9,107.2,3.95,0.09,2.16,0.14,-0.019,0.044,1.5,0.262896,"7,33,44,45,46",2021-12-21,2022-03-11,2023-01-10 00:00:00,found in faint-star QLP search,4761,1,False,False,False -119069946,4762.01,,2,4,2,2,4,4,4,4.1,32.5,12.8,0,2,5,PC,PC,11.2806,0.006,,1,qlp-s33-faintsearch,QLP,06:40:14.06,-06:55:55.51,16.588,0.068,-43.981,0.071,2459220.411888,0.0072041,4.3591525,5.61e-05,3.559,0.665,1.118885,0.003694,1030.0,3.402,3.61577,0.304788,626.954,1394.0,9.0,304.955,4.3165,5866.0,143.2,4.3,0.08,1.2,0.06,,,1.061,0.13331,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,low SNR; found in faint-star QLP search,4762,1,False,False,False -143072696,4763.01,,3,4,3,3,3,4,4,18.9,22.3,317.0,0,2,1,PC,PC,11.9337,0.024,,1,qlp-s33-faintsearch,QLP,06:14:52.99,-10:51:17.96,1.325,0.054,-11.509,0.07,2459223.399542,0.0027662,5.8679992,3.54e-05,5.605,0.334,4.951373,0.00331,4550.0,3.04842,14.2889,0.823283,1505.89,1735.0,19.0,849.357,25.497,7054.0,205.5,3.96,0.09,2.16,0.11,,,1.56,0.269361,"6,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4763,1,False,False,False -268456052,4764.01,,3,4,3,3,1,4,4,35.5,84.0,77.93,2,0,0,PC,PC,13.488,0.007,,1,qlp-s33-faintsearch,QLP,07:00:22.55,-01:29:01.4,4.425,0.052,5.187,0.045,2459224.633627,0.0046501,1.6025971,0.000513,2.212,0.308,14.262122,0.026175,13050.0,24.1074,10.4975,,905.776,1528.0,13.0,514.58,9.339,5164.0,124.0,4.43,,0.95,,,,0.874,,33,2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4764,1,False,False,False -21747057,4765.01,,3,4,3,3,1,4,4,6.9,38.0,79.72,0,0,0,PC,PC,13.0513,0.006,,1,qlp-s33-faintsearch,QLP,05:53:43.75,-38:01:52.4,7.654,1.241,10.548,1.241,2459206.230052,0.0026124,16.3734954,0.0001018,5.022,0.298,8.512886,0.004815,7810.0,4.43435,,,67.779,799.0,24.0,600.635,,5809.3,263.3,,,,,,,,,"5,6,32,33",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius; Rp be too large to be planetary depending on Rstar,4765,1,False,False,False -271307949,4766.01,,3,4,4,3,3,4,4,51.1,128.8,78.31,4,0,1,PC,PC,12.6574,0.006,,1,spoc-s61-b0A,QLP,07:48:23.41,02:06:41.24,-7.815,0.046,-9.925,0.032,2459963.946425,0.00076674414,1.93265725661457,0.000104912746,1.61910560560168,0.06687374,15.364955,0.378655,14051.9827876475,348.69324,10.5088307152656,0.817063,484.1155351971,1196.3465579222,30.83476,300.512,2.415,4909.0,124.0,4.47,0.09,0.861742973327637,0.0574598,,,0.804,0.0969495,"7,34,61",2021-12-21,2023-06-14,2023-06-16 12:14:51,found in faint-star QLP search,4766,1,False,False,False -157127081,4767.01,,3,4,3,3,1,4,4,19.8,37.3,115.75,0,0,0,PC,PC,13.1935,0.006,,1,qlp-s34-faintsearch,QLP,06:59:59.47,-36:19:09.8,10.283,0.024,-7.743,0.029,2459252.112384,0.0046021,2.7319222,2.11e-05,3.913,1.106,4.22085,0.019327,3880.0,17.801,13.2415,,2289.27,1927.0,23.0,969.091,13.762,5473.0,125.0,3.79,,2.08,,,,0.96,,"6,7,33,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4767,1,False,False,False -108940329,4768.01,,3,4,3,3,3,4,4,47.7,65.4,317.0,4,2,1,PC,PC,10.4397,0.006,,1,qlp-s61-ffi,QLP,07:30:36.14,-28:54:46.32,-3.142,0.037,-3.566,0.049,2459979.776645,0.001389,7.2644599,3.3e-05,3.233,0.131,8.707686,0.329677,7988.0,303.598,15.0763,0.720355,468.187,1295.0,92.0,345.959,3.323,6617.0,136.1,4.15,0.09,1.64,0.07,,,1.385,0.236333,"7,34,61",2021-12-21,2023-03-27,2023-03-31 12:12:24,found in faint-star QLP search,4768,1,False,False,False -333814134,4769.01,,3,4,3,3,1,4,4,24.0,34.9,317.0,0,0,0,PC,PC,12.512,0.147,,1,qlp-s34-faintsearch,QLP,07:45:08.57,-14:20:15.49,,,,,2459249.745957,0.0021541,2.8636452,1.09e-05,3.402,1.124,9.366762,0.31987,8590.0,294.568,,,11583.8,2890.0,25.0,1662.71,,8675.5,328.7,,,,,,,,,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,4769,1,False,False,False -112110888,4770.01,,3,4,3,3,3,4,4,46.6,51.9,317.0,1,0,1,PC,PC,12.9825,0.006,,1,qlp-s34-faintsearch,QLP,07:27:03.6,-32:11:08.91,-4.006,0.025,2.335,0.027,2459252.030644,0.0034326,1.9491813,9.8e-06,3.119,0.861,12.745054,0.11528,11670.0,106.171,15.8333,1.68889,3650.34,2165.0,23.0,799.474,10.536,6472.0,133.7,4.29,0.09,1.36,0.06,,,1.32,0.213468,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4770,1,False,False,False -266441563,4771.01,,3,5,5,3,3,4,4,26.7,92.7,108.24,0,2,2,PC,APC,11.9135,0.006,,1,qlp-s34-faintsearch,QLP,07:54:11.17,01:47:34.78,-4.393,0.065,0.344,0.044,2459249.632763,0.0014871,6.0049484,2.22e-05,3.366,0.171,9.741366,0.003964,8932.0,3.65134,12.6954,0.674977,315.049,1173.0,18.0,498.418,9.3925,6373.5,110.5,4.26,2.01,1.26,0.06,,,1.26,0.192334,"7,34",2021-12-21,2021-12-13,2022-12-14 12:09:24,found in faint-star QLP search,4771,1,False,False,False -455153906,4772.01,,3,4,3,3,1,4,4,35.5,93.7,113.22,1,0,0,PC,PC,13.3319,0.006,,1,qlp-s34-faintsearch,QLP,08:18:11.31,02:34:51.83,0.487,0.066,-17.011,0.044,2459248.942017,0.0014144,2.8894603,8.2e-06,2.561,0.257,18.649341,0.015498,17030.0,14.274,13.0354,,480.071,1304.0,35.0,591.645,13.627,5604.0,122.0,4.46,,0.97,,,,0.99,,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4772,1,False,False,False -415276070,4773.01,,3,4,3,3,3,4,4,55.0,145.5,113.38,5,2,1,PC,PC,11.4048,0.006,,1,qlp-s34-faintsearch,QLP,07:39:46.24,-21:29:08.23,-7.904,0.04,-1.659,0.044,2459251.179086,0.0019622,1.7448812,0.0002934,1.45,0.183,8.064323,0.011135,7400.0,10.2556,13.0906,0.77866,920.674,1534.0,17.0,492.888,7.729,6674.0,128.6,4.24,0.09,1.49,0.07,,,1.41,0.241322,34,2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4773,1,False,False,False -148129139,4774.01,,3,4,3,3,3,4,4,2.6,19.5,18.88,0,0,1,PC,PC,12.5447,0.006,,1,qlp-s34-faintsearch,QLP,06:42:49.88,-41:24:34.54,3.974,0.026,16.939,0.029,2459243.036813,0.0071986,8.6000244,0.000193,3.974,0.738,1.760319,0.008389,1620.0,7.72661,4.55822,0.424835,180.356,1020.0,11.0,469.594,3.533,5700.8,129.4,4.33,0.08,1.14,0.06,0.34878,0.0793574,1.02,0.126622,"6,7,33,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4774,1,False,False,False -412521892,4775.01,,3,4,3,3,3,4,4,47.7,53.0,317.0,1,14,1,PC,PC,11.5293,0.012,,1,qlp-s34-faintsearch,QLP,07:23:08.37,-22:26:23.08,3.958,0.037,-10.469,0.047,2459248.828614,0.0014355,2.4732088,6.1e-06,2.244,0.725,2.979,0.010237,2740.0,9.42897,15.4982,0.982332,1846.66,1826.0,9.0,635.261,13.085,6643.0,145.6,4.04,0.09,1.87,0.09,,,1.4,0.232454,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4775,1,False,False,False -196286578,4776.01,,3,4,3,3,4,4,4,15.4,71.1,72.63,0,9,4,PC,PC,11.6309,0.006,,1,qlp-s34-faintsearch,QLP,08:22:13.07,-25:04:03.13,20.178,0.042,-26.068,0.041,2459245.97102,0.0027326,10.4137997,4.65e-05,3.774,0.303,7.320773,0.003746,6720.0,3.44993,10.0431,0.519066,118.725,919.0,13.0,385.641,4.5625,6079.0,128.0,4.33,0.08,1.2,0.05,,,1.138,0.153033,"7,8,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4776,1,False,False,False -170368805,4777.01,,3,4,3,3,1,4,4,34.7,39.8,317.0,1,0,0,PC,PC,13.3209,0.007,,1,qlp-s34-faintsearch,QLP,08:08:12.75,-09:29:13.99,-4.361,0.035,0.766,0.022,2459250.950635,0.00205,2.9588764,1.08e-05,2.682,0.647,14.09712,0.185806,12900.0,171.119,14.8585,,1285.38,1668.0,16.0,767.763,14.1875,6041.0,122.0,4.38,,1.13,,,,1.12,,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,star marker in diffimage does not look accurate; V-shaped; found in faint-star QLP search,4777,1,False,False,False -145163386,4778.01,,3,4,3,3,3,4,4,32.5,30.8,317.0,0,0,1,PC,PC,12.9318,0.006,,1,spoc-s61-b0A,QLP,08:09:22.14,-34:34:02.22,-0.122,0.026,5.286,0.027,2459966.545076,0.004181814,3.8074213,2.23e-05,4.4775157444609,0.308612,9.42567,0.536297,8643.7888966217,493.82547,15.4202704659464,1.3066698,805.223586397581,1358.62271541538,13.697488,685.855,7.9765,5296.0,133.8,4.01,0.09,1.56375002861023,0.0917464,,,0.91,0.119812,"7,8,34,61",2021-12-21,2023-05-24,2023-06-16 12:14:51,found in faint-star QLP search,4778,1,False,False,False -170221808,4779.01,,3,4,3,3,1,4,4,9.4,38.0,90.25,1,0,0,PC,PC,13.4765,0.006,,1,qlp-s34-faintsearch,QLP,06:49:19.11,-43:44:23.5,2.059,0.028,16.64,0.029,2459249.337732,0.0028344,10.7490194,6.21e-05,2.256,0.393,10.078839,0.022171,9240.0,20.4203,11.4707,,27.7925,639.0,16.0,664.114,6.6545,5424.0,122.0,4.3,,1.14,,,,0.94,,"6,7,33,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,star marker in diffimage does not look accurate; found in faint-star QLP search,4779,1,False,False,False -231937828,4780.01,,3,4,3,3,3,4,4,24.1,29.1,317.0,1,0,1,PC,PC,12.4648,0.006,,1,qlp-s34-faintsearch,QLP,06:15:26.94,-42:23:31.81,-4.736,0.036,8.795,0.038,2459247.48951,0.001726,4.6942884,2.03e-05,3.224,0.799,5.78062,0.015221,5310.0,14.0189,16.4932,1.16024,948.685,1546.0,33.0,1004.09,21.793,6400.0,132.9,3.93,0.09,2.03,0.1,,,1.28,0.20279,"7,32,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4780,1,False,False,False -176242778,4781.01,,3,4,3,3,3,4,4,47.2,141.1,80.27,1,3,1,PC,PC,11.14,0.021,,1,qlp-s34-faintsearch,QLP,08:07:07.71,-18:43:36.35,-0.7,3.2,-6.1,3.4,2459250.822205,0.0010595,1.9055614,3.4e-06,1.726,0.251,6.360379,0.007298,5841.0,6.72124,,,,,15.0,,,6071.0,193.0,,,,,,,,,"7,34",2021-12-21,2021-12-13,2022-12-14 12:09:24,found in faint-star QLP search; no stellar parameters,4781,1,False,False,False -423128096,4782.01,,3,5,5,3,3,4,4,27.8,32.9,317.0,0,1,1,PC,APC,12.2563,0.006,,1,qlp-s34-faintsearch,QLP,07:32:17.81,-19:15:39.77,-3.526,1.094,2.175,1.094,2459247.428982,0.0024553,3.7244324,1.51e-05,2.913,0.984,7.189611,0.400766,6600.0,369.051,,,3666.29,2167.0,19.0,814.057,,7759.0,431.7,,,,,,,,,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,star marker in diffimage does not look accurate; found in faint-star QLP search; no stellar radius; Rp may be too large depending on Rstar,4782,1,False,False,False -218988652,4783.01,,3,5,5,3,3,4,4,24.6,53.1,317.0,0,2,1,PC,APC,12.6847,0.007,,1,qlp-s34-faintsearch,QLP,08:19:18.07,-21:57:25.05,-1.038,0.042,0.786,0.036,2459252.171087,0.0014873,6.7519508,1.92e-05,1.603,0.313,12.064163,0.020867,11050.0,19.2193,19.5004,1.33286,209.336,1059.0,22.0,1349.57,61.78,8297.0,129.6,4.29,0.08,1.69,0.09,,,2.04,0.303586,"7,8,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4783,1,False,False,False -409207712,4784.01,,3,4,3,3,1,4,4,18.2,63.1,58.88,0,0,0,PC,PC,13.2701,0.008,,1,qlp-s34-faintsearch,QLP,07:18:55.41,-15:45:39.26,-5.611,0.043,7.38,0.033,2459246.338861,0.002867,3.3583921,2.37e-05,2.644,0.532,10.002131,0.02014,9170.0,18.5496,8.84831,,344.843,1200.0,13.0,446.767,5.134,5177.0,124.0,4.46,,0.91,,,,0.88,,"7,33,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4784,1,False,False,False -50751260,4785.01,,3,4,3,3,3,4,4,11.4,44.2,90.38,1,0,1,PC,PC,12.7651,0.007,,1,qlp-s34-faintsearch,QLP,08:26:18.68,-10:30:17.1,-3.037,0.051,-1.03,0.038,2459242.498402,0.0025471,6.4311106,3.47e-05,2.385,0.345,6.457581,0.01236,5930.0,11.384,11.4436,0.805081,202.251,1050.0,14.0,911.737,30.6825,6741.0,126.6,4.27,0.09,1.45,0.08,,,1.44,0.243455,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4785,1,False,False,True -127012328,4786.01,,3,4,3,3,3,4,4,12.0,48.3,82.9,0,1,1,PC,PC,11.9623,0.011,,1,qlp-s34-faintsearch,QLP,07:46:21.83,-25:09:23.13,-5.114,0.047,1.892,0.052,2459245.419299,0.0042352,5.6984189,4.95e-05,4.475,0.491,4.385447,0.005673,4031.0,5.22457,10.8479,0.661949,1406.27,1706.0,11.0,885.636,27.872,7528.0,146.5,4.2,0.08,1.74,0.08,,,1.74,0.273815,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4786,1,False,False,False -431981595,4787.01,,3,4,3,3,3,4,4,26.9,72.9,113.13,1,0,1,PC,PC,12.5494,0.008,,1,qlp-s34-faintsearch,QLP,08:02:18.87,-19:30:27.4,-1.325,0.033,-7.392,0.03,2459251.312378,0.0019873,3.5037708,1.24e-05,2.716,0.359,6.68697,0.007061,6140.0,6.50349,13.0482,0.702736,608.189,1383.0,11.0,695.55,11.0155,6107.0,122.7,4.19,0.08,1.42,0.06,,,1.15,0.162016,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4787,1,False,False,False -156999527,4788.01,TIC 156999527.01,3,4,3,3,3,4,4,31.9,88.7,127.44,1,0,1,PC,PC,12.4832,0.006,,1,qlp-s34-faintsearch,QLP,06:57:45.51,-40:18:28.53,-2.416,0.037,-0.795,0.041,2459244.550352,0.0006983,4.3930669,6.2e-06,2.33,0.091,12.130037,0.003137,11110.0,2.88974,14.0261,0.669007,275.326,1134.0,79.0,620.549,9.399,6328.0,131.9,4.3,0.09,1.32,0.06,,,1.25,0.201483,"6,7,33,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4788,1,False,False,False -134221850,4789.01,,3,4,3,3,1,4,4,13.2,49.3,88.15,1,0,0,PC,PC,13.1637,0.006,,1,qlp-s34-faintsearch,QLP,07:06:59.26,-44:59:11.86,0.723,0.027,15.373,0.025,2459251.273628,0.0023713,7.5002702,3.66e-05,2.487,0.252,9.541999,0.010497,8750.0,9.66785,11.2467,,72.4941,812.0,18.0,626.811,5.6625,5644.0,122.0,4.32,,1.14,,,,1.0,,"6,7,8,33,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4789,1,False,False,False -452903647,4790.01,,3,5,5,3,1,4,4,22.4,55.0,87.59,2,0,0,PC,APC,13.1561,0.007,,1,spoc-s61-b0A,QLP,08:05:20.35,04:26:28.37,3.317,0.072,-7.325,0.037,2459964.406443,0.004091589,1.61024354745396,0.00048295408,2.32587105697402,0.3088379,5.925235,0.692684,5442.47859340163,637.7822,16.8320485494605,30.649446,3426.34354618397,1951.31541779908,9.369143,954.883,40.178,6080.2,29.5,4.15,,1.48651003837585,,0.085,0.028,1.14,,"7,34,61",2021-12-21,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search; TFOP BEB/APC; v-shaped,4790,1,False,False,False -100389539,4791.01,,3,4,4,3,3,4,4,48.4,133.5,112.87,2,8,1,PC,PC,10.8961,0.006,,1,qlp-s34-faintsearch,QLP,07:17:33.21,-19:49:44.18,-14.285,0.048,6.141,0.048,2459246.158055,0.001055,4.2809767,0.0001609,3.145,0.188,8.19559,0.002608,7520.0,2.402,13.0113,0.672296,445.261,1279.0,65.0,328.802,3.656,5964.0,130.5,4.13,0.08,1.49,0.07,,,1.093,0.140824,"33,34",2021-12-21,2021-12-20,2023-01-15 00:00:00,found in faint-star QLP search,4791,1,False,False,False -265350422,4792.01,,3,5,5,3,4,4,4,27.1,120.0,75.21,0,2,3,PC,APC,11.0783,0.006,,1,qlp-s34-faintsearch,QLP,08:54:20.74,01:34:31.81,-21.66,0.076,0.105,0.049,2459235.815084,0.0009986,8.4481666,1.88e-05,1.255,0.281,8.069792,0.018302,7405.0,16.8564,10.2494,0.732487,22.9265,609.0,10.0,243.539,2.641,5826.1,136.1,4.42,0.08,1.05,0.06,0.022,0.02,1.049,0.12636,"8,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4792,1,False,False,False -65949719,4793.01,,3,4,3,3,1,4,4,22.7,27.7,317.0,0,0,0,PC,PC,13.2584,0.006,,1,qlp-s34-faintsearch,QLP,07:38:13.07,-04:00:24.89,-2.901,0.038,0.326,0.029,2459248.821949,0.0028928,3.4658629,2.28e-05,3.301,0.281,10.451496,0.012476,9580.0,11.4904,15.0462,,1145.52,1620.0,18.0,1174.05,29.83,6688.0,122.0,4.24,,1.49,,,,1.42,,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4793,1,False,False,False -95589845,4794.01,TIC 95589845.01,3,4,4,3,3,4,4,38.3,102.7,123.46,1,2,1,PC,PC,12.0465,0.014,,1,qlp-s34-faintsearch,QLP,07:21:56.05,-12:33:55.72,-14.434,0.053,-2.603,0.048,2459249.835617,0.0016313,3.5658043,8.1e-06,3.914,0.167,10.944915,0.002013,10030.0,1.85403,13.7385,0.702907,1115.66,1610.0,30.0,543.008,10.599,6214.0,160.5,4.23,0.09,1.4,0.07,,,1.2,0.177601,"7,34",2021-12-21,2021-12-20,2023-06-28 00:00:00,crowded field; found in faint-star QLP search,4794,1,False,False,False -107090327,4795.01,,3,4,3,3,3,4,4,34.3,56.8,317.0,0,0,1,PC,PC,12.9188,0.007,,1,qlp-s34-faintsearch,QLP,07:22:37.09,-26:30:23.24,-0.585,2.043,7.936,2.043,2459250.177227,0.0032272,2.7431176,1.46e-05,3.134,0.236,8.972582,0.009126,8230.0,8.4056,,,2172.06,1901.0,15.0,1429.87,,7143.0,202.1,,,,,,,,,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,star marker in diffimage does not look accurate; found in faint-star QLP search; no stellar radius,4795,1,False,False,False -65905621,4796.01,,3,4,3,3,1,4,4,22.9,26.7,317.0,0,0,0,PC,PC,13.1502,0.007,,1,qlp-s34-faintsearch,QLP,07:14:43.72,-27:42:03.34,3.202,0.025,-11.228,0.024,2459250.341527,0.0018346,3.5775958,1.4e-05,2.779,0.257,9.520093,0.006789,8730.0,6.25319,15.3215,,665.763,1415.0,13.0,1090.77,19.325,6355.0,122.0,4.12,,1.61,,,,1.26,,"7,33,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4796,1,False,False,False -265011923,4797.01,,3,4,3,3,1,4,4,44.1,58.6,317.0,0,0,0,PC,PC,13.3736,0.008,,1,qlp-s34-faintsearch,QLP,08:26:29.28,03:00:04.86,-0.135,0.058,-4.39,0.037,2459248.080834,0.0014572,2.9922495,8.5e-06,1.594,0.182,11.894007,0.019078,10895.0,17.5711,20.032,,218.392,1070.0,11.0,1055.16,42.015,5932.0,122.0,4.09,,1.55,,,,1.08,,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4797,1,False,False,False -274137295,4798.01,,3,4,3,3,3,4,4,17.9,73.8,59.98,2,0,2,PC,PC,12.7577,0.006,,1,qlp-s34-faintsearch,QLP,07:46:27.91,07:55:46.31,-23.637,0.047,-25.126,0.027,2459248.758205,0.0019006,5.5261155,1.92e-05,1.873,0.488,7.987757,0.03355,7330.0,30.8999,9.00518,0.799995,65.4488,792.0,16.0,293.788,2.443,4824.0,122.8,4.48,0.09,0.84,0.06,,,0.782,0.0899673,"7,34",2021-12-21,2021-12-20,2023-01-10 00:00:00,found in faint-star QLP search,4798,1,False,False,False -65805840,4799.01,,3,4,3,3,1,4,4,16.9,51.7,110.8,0,0,0,PC,PC,13.0983,0.012,,1,qlp-s34-faintsearch,QLP,07:14:21.03,-25:38:46.78,-2.348,0.022,0.978,0.024,2459250.007806,0.0028725,4.0234634,2.51e-05,3.204,0.311,8.23935,0.010679,7560.0,9.83588,12.891,,832.08,1496.0,13.0,1008.83,16.6475,6678.0,122.0,4.26,,1.45,,,,1.41,,"7,33,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4799,1,False,False,False -280307604,4800.01,,3,4,3,3,4,4,4,16.1,70.6,44.39,0,4,4,PC,PC,10.9833,0.009,,1,qlp-s34-faintsearch,QLP,07:38:50.06,04:21:22.93,-4.723,0.159,-1.102,0.124,2459244.040521,0.0016566,4.3229915,1.76e-05,0.875,0.248,2.151889,0.019989,1980.0,18.4103,7.54314,0.759125,50.2356,741.0,13.0,344.296,10.057,6121.0,44.2,4.25,2.01,1.37,0.07,,,1.26,0.197957,"7,34",2021-12-21,2021-12-13,2022-12-14 12:09:24,found in faint-star QLP search; possibly on TIC 280307607,4800,1,False,False,False -419092044,4801.01,,3,4,3,3,3,4,4,,,68.1,0,0,1,PC,PC,12.9613,0.006,,1,qlp-s34-faintsearch,QLP,08:02:37.32,-32:07:37.77,0.031,2.096,2.426,2.096,2459964.586749,0.003926272,3.251269,2.19e-05,2.569,0.766,8.589489,0.116603,7880.0,107.39,,,549.047,1348.0,13.0,,,4883.7,149.4,,,,,,,,,"7,8,34",2021-12-21,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search; no stellar radius; Rp may be too large to be planetary if Rstar is evolved,4801,1,False,False,False -50575306,4802.01,,3,4,3,3,1,4,4,12.8,47.7,37.96,0,0,0,PC,PC,13.1675,0.006,,1,qlp-s34-faintsearch,QLP,07:29:57.86,-13:37:30.2,-14.536,0.036,-21.278,0.03,2459249.153752,0.0034844,1.7131374,1.74e-05,2.608,0.329,4.188152,0.008987,3850.0,8.27739,6.86542,,1919.49,1844.0,10.0,610.318,9.6275,5843.0,122.0,4.39,,1.08,,,,1.054,,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4802,1,False,False,False -19117967,4803.01,,3,4,3,3,3,4,4,7.9,34.5,52.18,0,3,2,PC,PC,12.0548,0.008,,1,qlp-s45-tois,QLP,08:01:13.79,14:09:47.61,-0.99,0.066,-6.162,0.042,2459540.496396,0.0027822,8.4516737,0.0001182,3.896,0.349,3.185877,0.002902,2930.0,2.67327,8.2562,0.505184,168.924,1004.0,19.0,531.218,11.221,5782.9,119.2,4.11,0.08,1.48,0.08,0.333,0.071,1.04,0.127051,"34,44,45",2021-12-21,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search,4803,1,False,False,False -320341952,4804.01,,3,4,3,3,3,4,4,11.1,41.8,52.37,0,2,1,PC,PC,10.2278,0.011,,1,qlp-s61-ffi,QLP,07:20:39.21,-29:57:05.7,4.74,0.045,3.41,0.065,2459982.488346,0.0039957,5.0648401,2.64e-05,3.009,0.785,0.993903,0.084238,915.0,77.5832,8.28506,0.55227,873.95,1514.0,19.0,495.004,8.3585,6675.0,146.8,3.75,0.09,2.62,0.12,,,1.41,0.243049,"7,33,34,61",2021-12-21,2023-04-04,2023-04-07 12:13:06,found in faint-star QLP search; possible offset to S,4804,1,False,False,False -7976072,4805.01,,3,4,3,3,3,4,4,7.2,30.6,66.6,0,0,2,PC,PC,13.2933,0.007,,1,qlp-s34-faintsearch,QLP,08:53:56.23,-04:55:33,3.371,0.045,-20.549,0.052,2459239.289015,0.0047356,8.9981735,8.25e-05,4.547,0.488,7.058465,0.010583,6480.0,9.74735,9.52189,,155.205,983.0,11.0,695.316,13.713,5444.0,122.0,4.24,,1.22,,,,0.95,,"8,34",2021-12-21,2021-12-20,2023-02-24 00:00:00,found in faint-star QLP search,4805,1,False,False,False -96317115,4806.01,,3,4,3,3,3,4,4,4.5,31.5,21.85,0,0,1,PC,PC,11.7503,0.008,,1,qlp-s34-faintsearch,QLP,06:55:09.51,-31:06:23.76,3.1,0.035,13.368,0.04,2459248.293164,0.0035021,8.4476983,8.1e-05,3.79,0.522,2.173647,0.003125,2000.0,2.87847,4.97976,0.321895,189.537,1033.0,17.0,349.88,2.867,5902.0,129.4,4.36,0.08,1.13,0.06,,,1.07,0.134183,"6,33,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4806,1,False,False,False -174546820,4807.01,,3,4,3,3,3,4,4,10.1,82.9,57.91,2,0,1,PC,PC,11.9698,0.006,,1,qlp-s34-faintsearch,QLP,07:38:52.89,-37:40:18.44,-17.552,0.047,27.988,0.046,2459245.196258,0.0030914,17.6868627,8.2e-05,1.379,0.393,11.252045,0.056025,10310.0,51.5995,8.80381,0.940455,2.06218,333.0,14.0,153.227,0.606,4496.0,127.0,4.52,0.1,0.77,0.06,,,0.71,0.0808572,"7,8,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4807,1,False,False,False -126772538,4808.01,,5,5,5,5,5,5,5,25.5,24.9,317.0,0,0,0,PC,FP,13.4542,0.012,,1,qlp-s34-faintsearch,QLP,07:44:49.43,-26:04:28.47,-5.905,0.03,7.343,0.032,2459251.604328,0.0038008,1.4700596,1e-05,2.18,0.404,5.180444,0.016206,4760.0,14.9262,16.1051,,2605.29,1990.0,9.0,1585.0,52.07,6308.0,122.0,3.88,,2.12,,,,1.24,,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4808,1,False,False,False -143724857,4809.01,,3,4,3,3,3,4,4,7.6,31.2,47.56,0,0,1,PC,PC,12.6417,0.007,,1,qlp-s34-faintsearch,QLP,08:23:57.05,-23:14:36.26,-1.782,0.026,-7.009,0.024,2459244.746678,0.0049717,4.4692164,4.46e-05,3.976,0.459,3.904806,0.006222,3590.0,5.73082,7.82663,0.52775,854.125,1506.0,9.0,767.716,11.0165,6211.0,118.4,4.18,0.08,1.48,0.07,,,1.2,0.168408,"8,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4809,1,False,False,False -281225729,4810.01,,3,4,3,3,3,4,4,21.8,21.9,317.0,0,0,1,PC,PC,12.7549,0.019,,1,qlp-s34-faintsearch,QLP,07:20:47.1,-21:40:46.3,-5.289,0.023,3.389,0.027,2459251.905341,0.0022323,2.4162514,1.21e-05,3.055,0.335,3.229435,0.0044,2970.0,4.05264,14.6399,0.832893,2303.62,1930.0,14.0,1221.9,29.87,6688.0,163.8,3.95,0.1,2.1,0.1,,,1.42,0.254632,"7,33,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4810,1,False,False,False -334414389,4811.01,,3,4,3,3,3,4,4,,,317.0,1,0,2,PC,PC,12.2124,0.007,,1,spoc-s61-b0A,QLP,08:11:53.4,06:58:29.97,6.279,0.076,-3.717,0.048,2459963.071494,0.0023781422,0.982825901423599,0.00016089961,1.38692486612408,0.60236984,1.882487,0.199463,1732.33247538598,183.695,21.8486398653902,31.872602,4395.37363407063,2076.67578684695,9.871416,1506.81,112.66,4959.0,122.0,,,5.29803991317749,,,,,,"7,34,61",2021-12-21,2023-07-07,2023-07-07 00:00:00,found in faint-star QLP search; multiple stars within 3 sigma of centroid; v-shaped,4811,1,False,False,False -81744640,4812.01,,3,4,3,3,3,4,4,9.4,35.4,50.96,0,0,1,PC,PC,12.9655,0.008,,1,qlp-s34-faintsearch,QLP,07:08:19.64,-23:32:43.27,-1.629,0.021,2.882,0.031,2459250.009543,0.0042877,3.3138453,3.97e-05,3.863,0.768,3.861221,0.010532,3550.0,9.70006,8.15594,0.605736,1568.27,1753.0,14.0,807.794,12.0785,6153.0,130.1,4.24,0.08,1.36,0.06,,,1.17,0.169353,"7,33,34",2021-12-21,2021-12-20,2023-01-10 00:00:00,found in faint-star QLP search,4812,1,False,False,False -333810741,4813.01,,3,4,3,3,1,4,4,21.0,36.3,317.0,0,0,0,PC,PC,13.3071,0.006,,1,qlp-s34-faintsearch,QLP,07:45:09.83,-12:50:25.26,-6.135,1.078,-3.587,1.006,2459247.778467,0.0043835,4.0492184,3.17e-05,2.659,0.439,7.145894,0.017837,6560.0,16.4284,,,,,10.0,1798.25,,,,,,,,,,,,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,star marker in diffimage does not look accurate; found in faint-star QLP search; no stellar parameters,4813,1,False,False,False -32004914,4814.01,,3,4,3,3,1,4,4,35.7,49.9,317.0,1,0,0,PC,PC,13.0015,0.007,,1,qlp-s34-faintsearch,QLP,07:47:15.9,-07:39:54.94,-23.227,0.036,0.102,0.029,2459246.539025,0.0013057,5.545745,1.35e-05,2.302,0.269,22.8104,0.018866,20790.0,17.3765,15.8197,,118.195,918.0,32.0,559.569,7.2685,5706.0,122.0,4.41,,1.05,,,,1.02,,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4814,1,False,False,False -19447218,4815.01,,3,4,3,3,1,4,4,12.7,44.1,112.7,0,0,0,PC,PC,13.425,0.007,,1,qlp-s34-faintsearch,QLP,08:17:47.35,-09:03:25.31,5.951,0.037,-4.714,0.031,2459248.635022,0.0050949,8.9727235,7.61e-05,3.808,0.811,11.965359,0.046635,10960.0,42.9516,13.0195,,134.631,948.0,14.0,770.795,15.107,5605.0,122.0,4.27,,1.21,,,,0.99,,"7,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4815,1,False,False,False -156990000,4816.01,,3,4,3,3,1,4,4,12.9,19.6,317.0,1,0,0,PC,PC,13.3087,0.006,,1,qlp-s34-faintsearch,QLP,06:39:23.66,-43:49:39.43,-10.127,0.028,8.72,0.028,2459236.099598,0.0025171,11.2473628,5.27e-05,4.113,0.294,11.284957,0.007051,10340.0,6.49411,15.7487,,119.042,920.0,30.0,1047.64,16.75,6141.0,122.0,4.14,,1.53,,,,1.16,,"6,7,33,34",2021-12-21,2021-12-20,2022-12-14 12:09:24,found in faint-star QLP search,4816,1,False,False,False -60074373,4817.01,,5,5,5,5,5,5,5,33.9,91.8,99.87,1,0,0,PC,FP,14.6435,0.007,,1,qlp-s35-faintsearch,QLP,07:24:22.25,-44:01:57.73,-2.804,3.021,8.595,3.021,2459276.406959,0.002877,3.190373,0.0012317,2.684,0.294,47.209741,0.080584,42550.0,74.2181,12.0669,0.719336,75.4043,820.0,11.0,,,3722.0,157.0,4.65,0.01,0.6,0.02,,,0.590457,0.0226727,35,2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4817,1,False,False,False -181422954,4818.01,,3,4,3,3,1,4,4,12.4,48.4,51.51,1,0,0,PC,PC,13.2881,0.007,,1,qlp-s35-faintsearch,QLP,08:44:25.74,-39:38:17.98,-7.038,0.029,-0.924,0.035,2459279.100508,0.0048528,2.6005693,2.28e-05,2.629,0.38,4.918652,0.013753,4520.0,12.6666,8.18984,,1444.5,1717.0,9.0,722.454,9.9445,6673.0,122.0,4.47,,1.14,,,,1.41,,"8,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4818,1,False,False,False -82739585,4819.01,,3,4,3,3,1,4,4,97.2,200.6,129.27,2,0,0,PC,PC,13.0819,0.006,,1,qlp-s35-faintsearch,QLP,08:19:37.1,-43:03:25.96,8.222,0.03,-9.535,0.036,2459277.359548,0.0008696,1.5889429,4.83e-05,1.183,0.215,24.741407,0.614897,22530.0,566.181,14.0293,,399.352,1245.0,55.0,319.863,1.801,5150.0,122.0,4.57,,0.8,,,,0.87,,"34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4819,1,False,False,False -394223845,4820.01,,3,4,3,3,3,4,4,5.5,37.2,71.12,1,0,1,PC,PC,11.9556,0.008,,1,qlp-s35-faintsearch,QLP,08:34:26.74,-30:35:09.45,-1.645,0.038,7.466,0.04,2459246.407688,0.0026194,27.1358856,0.0001523,3.348,0.29,5.464122,0.006729,5020.0,6.19803,9.90525,0.60346,16.1901,558.0,15.0,527.208,7.592,6315.0,134.7,4.28,0.08,1.33,0.06,,,1.24,0.179269,"8,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4820,1,False,False,False -354937825,4821.01,,3,4,3,3,3,4,4,16.2,52.2,107.89,1,0,1,PC,PC,12.7761,0.007,,1,qlp-s35-faintsearch,QLP,08:09:42.69,-42:09:24.55,-4.063,0.029,-2.795,0.028,2459270.692143,0.0027551,5.469359,3.17e-05,2.119,0.293,6.468504,0.01199,5940.0,11.0435,12.6725,0.760956,278.238,1137.0,16.0,833.962,12.042,7182.0,135.7,4.23,0.08,1.61,0.06,,,1.61,0.264214,"7,8,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4821,1,False,False,False -52936161,4822.01,,3,4,3,3,3,4,4,31.8,40.2,317.0,0,0,1,PC,PC,12.6614,0.007,,1,qlp-s35-faintsearch,QLP,08:23:18.26,-43:41:37.88,-11.445,0.029,8.028,0.026,2459278.328014,0.0045267,4.4712213,3.82e-05,3.771,0.617,5.595076,0.498258,5140.0,458.807,15.8899,4.0576,5650.08,2415.0,16.0,736.403,9.0185,7586.0,145.7,4.22,0.08,1.71,0.06,,,1.76,0.292697,"8,9,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4822,1,False,False,False -348756659,4823.01,TIC 348756659.01,3,4,4,3,3,4,4,66.0,79.2,317.0,1,2,1,PC,PC,12.3474,0.008,,1,qlp-s35-faintsearch,QLP,08:56:46.15,-12:34:21.57,-27.316,0.074,24.101,0.086,2459278.70239,0.0018144,3.7259874,2.14e-05,3.165,0.646,20.27424,0.278755,18500.0,256.71,15.3034,1.93456,897.338,1524.0,74.0,401.311,8.785,5736.0,124.9,4.45,0.08,1.0,0.05,,,1.025,0.132696,"8,35",2021-12-21,2021-12-15,2022-12-14 12:09:24,found in faint-star QLP search,4823,1,False,False,False -179687771,4824.01,,3,4,3,3,3,4,4,18.6,47.0,122.97,1,1,1,PC,PC,12.8792,0.007,,1,qlp-s35-faintsearch,QLP,09:49:00.87,-03:36:33.76,-12.732,0.038,1.825,0.037,2459278.833839,0.0026039,5.124162,2.51e-05,4.651,0.294,7.2224,0.005193,6630.0,4.7832,13.6708,0.827621,581.326,1367.0,20.0,839.462,17.2635,5750.0,125.2,4.01,0.08,1.65,0.09,,,1.03,0.126206,"8,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4824,1,False,False,False -53047383,4825.01,,3,4,3,3,3,4,4,,,64.2,1,0,1,PC,PC,11.2275,0.6,,1,qlp-s35-faintsearch,QLP,08:23:36.31,-42:04:52.76,-0.961,0.028,1.382,0.026,2459275.959622,0.0025996,2.8184742,0.0002542,3.772,0.226,1.869074,0.001007,1720.0,0.927626,,,,,20.0,1060.4,19.085,,,,,,,,,,,"34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius in report; Gaia DR2 has Rstar ~ 2 Rsun which would indicate companion is planetary in size,4825,1,False,False,False -17683158,4826.01,,3,4,3,3,3,4,4,20.8,59.8,123.99,0,0,1,PC,PC,12.8972,0.006,,1,qlp-s35-faintsearch,QLP,09:02:53.28,-33:17:41.52,-19.619,0.023,22.933,0.026,2459271.205436,0.0031647,5.9730504,3.38e-05,4.041,0.352,8.961635,0.008599,8220.0,7.91951,13.7408,0.765335,421.342,1262.0,13.0,725.382,10.243,6137.0,125.8,4.2,0.08,1.41,0.06,,,1.16,0.162346,"8,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4826,1,False,False,False -332630868,4827.01,,5,5,5,5,5,5,5,0.1,16.3,127.5,0,0,0,PC,FP,12.3805,0.006,,1,qlp-s35-faintsearch,QLP,09:07:46.48,-17:03:03.62,8.908,2.107,-3.021,2.106,2458525.417575,0.0025285,736.5601487,0.0041739,4.183,0.205,3.915703,0.010499,3600.0,9.66992,13.9475,,0.0558395,,12.0,478.847,,5895.4,,,,1.31,,0.0510485,0.0810161,,,"8,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,period likely several times shorter than max period of ~736 days; found in faint-star QLP search,4827,1,False,False,False -291469139,4828.01,,3,4,3,3,1,4,4,4.2,36.5,51.02,2,0,0,PC,PC,13.351,0.006,,1,qlp-s35-faintsearch,QLP,07:24:35.98,-48:37:11.69,4.468,0.027,-18.01,0.028,2459265.674593,0.0032647,19.0286016,0.000185,3.938,0.346,9.717265,0.016747,8910.0,15.4246,8.13514,,13.7261,536.0,14.0,332.884,1.5675,4733.0,122.0,4.5,,0.81,,,,0.76,,"7,8,33,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4828,1,False,False,True -268439377,4829.01,,5,5,5,5,5,5,5,21.0,50.7,82.68,0,0,0,PC,FP,13.1591,0.006,,1,qlp-s35-faintsearch,QLP,07:47:20.63,-49:07:20.83,1.335,0.033,2.225,0.034,2459279.259801,0.0019606,0.9855374,3.8e-06,1.18,0.168,3.577961,0.00807,3290.0,7.43254,10.8393,,1493.99,1732.0,17.0,1007.8,19.7475,6198.4,88.5,4.02,,1.76,,-0.164454,0.0817319,1.19,,"7,8,9,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4829,1,False,False,False -1260235,4830.01,,3,4,3,3,3,4,4,,,317.0,0,0,1,PC,PC,12.2452,0.007,,1,qlp-s35-faintsearch,QLP,08:45:37.82,-26:30:10.99,3.137,0.138,-2.713,0.111,2459275.292996,0.004313,7.6945481,6.78e-05,3.436,0.568,3.817638,0.008003,3510.0,7.37103,,,87.6747,852.0,14.0,2693.98,587.91,4875.8,138.3,,,,,,,,,"8,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius; host star likely evolved based off Teff and plx; need Rstar < 4 Rsun for Rp to planetary,4830,1,False,False,False -17896514,4831.01,,3,4,3,3,3,4,4,24.2,24.0,317.0,1,0,1,PC,PC,12.292,0.006,,1,qlp-s35-faintsearch,QLP,09:04:52.72,-31:55:48.27,-10.421,0.038,0.545,0.056,2459279.810162,0.005931,2.6375869,2.46e-05,4.029,0.418,3.926599,0.006685,3610.0,6.15691,16.5853,1.24478,2389.95,1947.0,12.0,1142.11,42.605,6196.0,106.3,3.59,0.09,2.9,0.17,-0.339971,0.0661808,1.19,0.167268,"8,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4831,1,False,False,False -186470968,4832.01,,3,4,3,3,1,4,4,26.0,77.6,57.77,0,0,0,PC,PC,13.7028,0.007,,1,qlp-s35-faintsearch,QLP,08:50:43.82,-34:46:58.55,-32.874,0.038,-21.244,0.039,2459275.702884,0.0024148,2.7805098,0.0009159,1.547,0.244,17.291598,0.069835,15800.0,64.3181,8.80341,0.654227,48.6261,735.0,11.0,256.922,1.7015,3949.0,157.0,4.59,0.01,0.68,0.02,,,0.648265,0.0203657,35,2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4832,1,False,False,False -176442805,4833.01,,3,4,3,3,3,4,4,18.6,61.2,99.85,0,6,1,PC,PC,12.2709,0.007,,1,qlp-s35-faintsearch,QLP,08:47:35.49,-21:51:33.61,-8.723,0.086,3.797,0.08,2459278.576518,0.0014531,3.6520005,1.12e-05,3.638,0.187,4.995001,0.002158,4590.0,1.98768,12.1216,0.96246,1753.41,1802.0,29.0,878.599,55.6225,7194.0,127.5,4.19,0.1,1.69,0.13,,,1.61,0.273203,"8,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4833,1,False,False,False -77550515,4834.01,,3,4,3,3,1,4,4,15.0,46.9,55.8,1,0,0,PC,PC,13.0519,0.007,,1,qlp-s35-faintsearch,QLP,09:29:36.97,-00:59:33.38,-5.699,0.105,11.469,0.203,2459275.262066,0.0027036,3.118166,2.35e-05,2.285,0.274,5.605989,0.013127,5150.0,12.0907,8.60632,,273.914,1133.0,13.0,537.158,15.1625,5218.8,42.2,4.27,,1.15,,0.026,0.04,0.89,,"8,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4834,1,False,False,False -434428836,4835.01,,3,4,3,3,1,4,4,14.7,38.4,121.52,0,0,0,PC,PC,13.0341,0.007,,1,qlp-s35-faintsearch,QLP,09:17:23.21,-20:55:24.08,2.831,0.044,-14.522,0.053,2459278.922756,0.0037421,5.1953991,4.86e-05,3.032,0.515,5.355006,0.012009,4920.0,11.0608,13.6454,,343.068,1198.0,12.0,1068.04,30.59,6047.0,122.0,3.97,,1.82,,,,1.12,,"8,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4835,1,False,False,False -231559817,4836.01,,3,4,3,3,1,4,4,25.3,85.9,123.01,1,2,0,PC,PC,11.031,0.031,,1,qlp-s35-faintsearch,QLP,08:30:45.71,-27:24:29.66,-5.5,2.8,0.5,2.4,2459276.636622,0.0019056,5.1045082,2.17e-05,3.173,0.368,2.505511,0.002334,2305.0,2.14988,13.7067,9.67955,2608.81,1991.0,12.0,790.152,,8086.0,221.0,4.1,1.42,2.07,1.46,,,,,"8,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; stellar parameters and planet radius from qlp-s08-ffi since qlp-s35-faintsearch has no stellar parameters,4836,1,False,False,False -19612445,4837.01,,3,4,3,3,3,4,4,17.0,73.2,50.13,0,0,1,PC,PC,10.5378,0.006,,1,qlp-s35-faintsearch,QLP,09:19:28.84,-32:17:51.09,-10.1,2.5,1.2,2.4,2459277.056811,0.0019208,4.4644761,1.36e-05,1.185,0.184,1.836446,0.003672,1690.0,3.38183,8.09695,,136.451,,15.0,353.288,,7013.0,,,,1.7,,,,,,"8,9,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4837,1,False,False,False -374200604,4838.01,,3,4,3,3,4,4,4,61.2,120.6,105.85,6,5,7,PC,PC,11.869,0.007,,1,spoc-s42-46-b0A,QLP,10:32:17.63,02:14:16.24,-1.109,0.068,-19.544,0.066,2459551.637473,0.0016962511,0.759975803938516,3.4074925e-05,0.97473496268441,0.11968925,2.185052,0.172071,2010.48390627602,158.47102,12.5474772481674,24.65025,9668.65580620009,2529.07247265455,14.077283,515.491,12.07,5690.2,141.2,4.0,0.08,1.65998995304108,0.100274,0.252,0.036,1.01,0.126281,"35,45,46",2021-12-21,2022-07-15,2022-12-14 12:09:24,K2-399 b; found in faint-star QLP search; v-shaped,4838,1,False,False,True -38118291,4839.01,,3,4,3,3,3,4,4,,,32.16,0,0,1,PC,PC,12.3907,0.006,,1,qlp-s35-faintsearch,QLP,09:08:04.54,-28:54:57.79,-10.36,2.162,5.276,2.161,2459273.977808,0.0105359,13.3441946,0.0002406,4.743,1.299,3.545282,0.013998,3260.0,12.893,,,58.1944,769.0,9.0,,,4866.9,267.7,,,,,,,,,"8,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; centroid image failed; no stellar radius,4839,1,False,False,False -80029842,4840.01,,5,5,5,5,5,5,5,4.6,29.1,15.48,0,0,0,PC,FP,12.2896,0.006,,1,qlp-s35-faintsearch,QLP,08:04:55.77,-47:46:05.27,-5.803,0.051,4.208,0.064,2459279.306422,0.0058862,2.3992876,2.56e-05,2.545,0.418,1.281925,0.004326,1180.0,3.98393,4.05839,0.310778,1543.44,1746.0,10.0,502.28,6.543,6536.0,130.2,4.45,0.09,1.15,0.05,,,1.35,0.229447,"7,9,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; possible L1 candidate with Rp error,4840,1,False,False,False -453060368,4841.01,TIC 453060368.01,3,4,3,3,3,4,4,19.9,87.6,96.5,1,0,1,PC,PC,12.7964,0.016,,1,qlp-s35-faintsearch,QLP,09:43:35.34,00:36:54.11,-28.137,0.088,11.11,0.071,2459271.894843,0.0016971,9.6284672,2.66e-05,3.554,0.137,19.710224,0.007382,17990.0,6.79878,11.9294,0.805713,66.4905,795.0,35.0,355.116,6.0045,5388.3,115.4,4.53,0.08,0.88,0.06,-0.686383,0.0216809,0.94,0.118016,"8,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4841,1,False,False,True -131034657,4842.01,,3,4,3,3,3,4,4,27.0,22.9,317.0,0,0,1,PC,PC,11.8379,0.007,,1,qlp-s35-faintsearch,QLP,07:49:53.17,-38:13:20.11,-4.598,0.046,8.803,0.05,2459271.888906,0.0031248,5.3374045,3.14e-05,1.849,0.487,3.02255,0.010195,2780.0,9.39018,16.5532,,104.023,889.0,16.0,696.792,15.8765,5064.7,96.5,,,3.01,,,,,,"7,8,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4842,1,False,False,False -258051471,4843.01,,3,4,3,3,3,4,4,9.1,36.3,80.4,1,2,1,PC,PC,12.403,0.009,,1,qlp-s35-faintsearch,QLP,08:26:46.71,-27:01:29.84,-11.851,0.038,-0.144,0.04,2459970.499681,0.004134551,8.3548746,6.38e-05,3.253,0.346,4.526083,0.006073,4160.0,5.59354,10.7025,0.665824,205.555,1054.0,15.0,846.607,20.6085,6643.0,134.6,4.16,0.09,1.63,0.08,,,1.4,0.233783,"8,34,35,61",2021-12-21,2023-06-28,2023-06-28 00:00:00,found in faint-star QLP search,4843,1,False,False,False -143994382,4844.01,,3,4,3,3,3,4,4,20.6,76.7,96.79,2,0,1,PC,PC,12.5368,0.006,,1,qlp-s35-faintsearch,QLP,07:56:41.94,-42:57:47.06,-3.933,0.042,8.491,0.044,2459273.664754,0.0040624,4.5425274,3.24e-05,2.92,0.408,9.454377,0.016735,8670.0,15.4135,11.925,0.721488,818.029,1489.0,13.0,686.445,11.66,7333.0,139.0,4.45,0.08,1.28,0.05,,,1.66,0.275199,"7,8,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4844,1,False,False,False -26305150,4845.01,,3,4,3,3,3,4,4,18.9,39.1,125.5,1,0,1,PC,PC,12.749,0.008,,1,qlp-s35-faintsearch,QLP,10:15:38.51,-09:19:28.87,-7.323,0.047,-10.603,0.053,2459275.126209,0.0077947,4.21615,0.0025225,3.783,1.224,4.700541,0.025836,4320.0,23.796,13.8423,1.43249,621.696,1391.0,13.0,850.137,33.296,5367.0,126.9,3.79,0.09,2.02,0.14,,,0.93,0.113775,35,2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4845,1,False,False,True -418971787,4846.01,,5,5,5,5,5,5,5,11.8,53.1,15.58,0,0,0,PC,FP,13.0246,0.006,,1,qlp-s35-faintsearch,QLP,08:01:59.36,-35:03:40.73,7.589,0.027,1.303,0.029,2459277.893321,0.0037196,1.0638184,7.1e-06,3.191,0.39,3.501711,0.005209,3220.0,4.79803,4.08617,,4267.44,2251.0,18.0,282.469,1.3195,4963.0,122.0,4.63,,0.73,,,,0.82,,"7,8,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4846,1,False,False,False -186541435,4847.01,,3,4,3,3,3,4,4,,,44.36,1,0,1,PC,PC,12.3056,0.006,,1,qlp-s35-faintsearch,QLP,08:51:14.35,-31:54:53.08,-3.365,2.109,4.235,2.109,2459271.910973,0.0043601,7.0465721,5.47e-05,2.322,0.395,5.180444,0.01077,4760.0,9.91938,,,27.9177,640.0,9.0,,,4332.6,93.0,,,,,,,,,"8,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius; host is likely evolved based off Teff and plx; need Rstar < 4 Rsun for Rp to be planetary,4847,1,False,False,False -134596619,4848.01,,3,4,3,3,1,4,4,15.3,50.0,101.71,0,0,0,PC,PC,13.0971,0.007,,1,spoc-s62-b0A,QLP,08:09:58.52,-37:04:22.85,-3.081,0.027,5.271,0.032,2459988.572916,0.0034916317,3.72472557498501,0.00092419505,1.58176935629108,0.21850286,6.397992,0.794304,5875.43984284287,731.3135,12.2559638308975,1.6744274,2130.58303072659,1732.78374599468,7.5366488,1097.3,19.685,7492.0,122.0,4.29,,1.54878997802734,,,,1.72,,"7,8,34,35,61,62",2021-12-21,2023-06-15,2023-06-16 12:14:51,crowded field; found in faint-star QLP search,4848,1,False,False,False -132534906,4849.01,,3,4,3,3,3,4,4,17.3,75.8,50.15,0,0,1,PC,PC,12.5874,0.006,,1,qlp-s35-faintsearch,QLP,07:59:05.26,-37:54:02.32,1.578,0.032,20.622,0.037,2459277.978622,0.0029725,3.0617364,1.97e-05,1.947,0.256,7.21147,0.017209,6620.0,15.85,8.08218,0.549472,583.235,1369.0,13.0,483.182,5.009,6783.0,131.6,4.62,0.09,0.98,0.04,,,1.46,0.248518,"7,8,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4849,1,False,False,False -332705008,4850.01,,3,4,3,3,3,4,4,34.2,56.6,317.0,0,0,1,PC,PC,12.8901,0.008,,1,qlp-s35-faintsearch,QLP,10:00:45.4,-14:50:04.89,-15.948,0.045,-10.624,0.045,2459269.733623,0.0047987,7.6710728,6.51e-05,3.492,0.368,6.938262,2.949877,6370.0,2713.25,17.73,6.88543,680.523,1422.0,14.0,643.481,12.0355,5938.0,126.9,4.32,0.08,1.19,0.06,,,1.08,0.140966,"8,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; odd-even likely due to the only odd-transit occurring at star of orbit,4850,1,False,False,False -60377863,4851.01,,2,4,2,2,3,4,4,1.1,23.3,5.19,0,0,1,PC,PC,9.4051,0.006,,1,qlp-s35-faintsearch,QLP,07:28:55.03,-44:08:23.18,-16.087,0.052,81.461,0.047,2459278.824612,0.0061827,21.6091483,0.0004237,6.112,1.415,0.347491,0.0013,320.0,1.19731,2.134,0.170092,103.508,888.0,10.0,125.772,0.4755,5967.0,133.0,4.36,0.08,1.15,0.05,,,1.09,0.14208,"7,8,34,35",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4851,1,False,False,True -74712191,4852.01,TIC 74712191.01,3,4,3,3,3,4,4,23.5,89.2,118.01,1,0,1,PC,PC,11.8422,0.007,,1,qlp-s36-faintsearch,QLP,09:11:10.83,-42:31:05.04,-15.257,0.046,3.23,0.049,2459304.797295,0.0011417,7.2307407,1.45e-05,4.646,0.325,8.655152,0.002101,7940.0,1.93488,13.364,0.498144,1009.89,1570.0,44.0,603.347,10.71,7747.0,135.2,4.39,0.08,1.43,0.05,,,1.83,0.289775,"8,9,35,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4852,1,False,False,False -74530173,4853.01,,3,4,3,3,1,4,4,13.5,59.0,65.51,1,0,0,PC,PC,13.2181,0.006,,1,qlp-s36-faintsearch,QLP,09:10:31.63,-43:44:36.81,-18.666,0.034,5.546,0.033,2459303.196658,0.0028761,7.2333744,3.61e-05,1.118,0.212,11.515368,0.045306,10550.0,41.7278,9.46193,,14.6012,544.0,9.0,428.288,4.073,5508.0,122.0,4.53,,0.89,,,,0.97,,"8,9,35,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4853,1,False,False,False -70780410,4854.01,,3,4,3,3,1,4,4,12.5,39.1,61.3,0,0,0,PC,PC,13.2372,0.011,,1,qlp-s36-faintsearch,QLP,10:07:37.53,-31:46:08.23,-18.951,0.034,-6.353,0.04,2459301.413951,0.0035932,3.9230475,3.06e-05,2.559,0.541,5.005909,0.014498,4600.0,13.353,9.13123,,336.151,1192.0,11.0,722.239,12.685,5620.0,122.0,4.23,,1.28,,,,1.0,,"9,35,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4854,1,False,False,True -44514807,4855.01,,3,4,3,3,3,4,4,15.1,18.7,317.0,0,0,1,PC,PC,12.9514,0.006,,1,qlp-s36-faintsearch,QLP,09:42:45.92,-39:47:12.4,-7.519,0.032,5.087,0.038,2459290.955895,0.003468,7.5872202,5.2e-05,1.826,0.422,4.635116,0.020922,4260.0,19.2696,16.4426,1.36529,76.4611,823.0,10.0,1198.79,34.445,6419.0,131.5,3.86,0.09,2.21,0.11,,,1.29,0.20695,"9,35,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; slight depth aperture correlation,4855,1,False,False,False -428685938,4856.01,,5,5,5,5,5,5,5,3.0,84.4,45.63,1,0,2,EB,FP,14.379,0.007,,1,qlp-s36-faintsearch,QLP,12:00:55.54,-23:38:04.4,-60.995,0.121,38.976,0.059,2460022.855249,0.0015956159,14.4896397,0.003506,1.898,0.247,44.401089,0.103083,40070.0,94.9383,7.558,0.446523,1.21746,292.0,15.0,119.474,0.9925,3376.0,157.0,4.87,,0.35,0.01,,,0.339059,0.0205456,"36,63",2021-12-21,2023-05-02,2023-05-03 12:02:48,found in faint-star QLP search; slight depth aperture correlation; TFOP FP/retired as 27.884670 d EB,4856,1,False,False,True -35972578,4857.01,,3,4,3,3,1,4,4,35.4,80.0,124.64,1,0,0,PC,PC,13.1051,0.006,,1,qlp-s36-faintsearch,QLP,09:56:58.18,-43:23:04.93,-10.011,0.028,-14.029,0.034,2459304.811948,0.0016774,1.8881146,6.1e-06,2.761,0.377,9.848732,0.007316,9030.0,6.73859,13.7957,,2630.38,1995.0,31.0,849.5,13.8315,6309.0,122.0,4.23,,1.42,,,,1.24,,"9,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4857,1,False,False,False -262499797,4858.01,,3,4,4,3,1,4,4,70.9,180.8,102.65,5,0,0,PC,PC,14.8083,0.008,,1,qlp-s36-faintsearch,QLP,07:19:31.23,-55:43:42.32,54.385,0.124,-92.48,0.092,2459303.19612,0.0012736,1.7508811,9.23e-05,1.13,0.159,68.185715,0.288357,60870.0,265.551,12.2167,0.88106,27.3999,637.0,31.0,193.977,2.033,3333.0,157.0,4.79,0.01,0.44,0.01,,,0.439909,0.0207054,"35,36",2021-12-21,2021-12-21,2023-02-01 00:00:00,found in faint-star QLP search,4858,1,False,False,False -152467154,4859.01,,3,4,3,3,1,4,4,46.6,77.9,317.0,1,0,0,PC,PC,13.1012,0.006,,1,qlp-s36-faintsearch,QLP,11:27:11.67,-36:04:13.85,-36.886,0.029,-21.174,0.023,2459291.242923,0.0024877,7.1878971,3.5e-05,3.321,0.265,12.481433,5.050249,11430.0,4640.65,18.372,,287.355,1147.0,22.0,434.224,4.4815,5144.9,71.0,4.4,,0.97,,0.493025,0.0791028,0.87,,"10,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4859,1,False,False,False -335590096,4860.01,,3,4,4,3,2,4,4,97.7,306.1,60.97,4,0,2,PC,PC,13.7726,0.008,,1,qlp-s36-faintsearch,QLP,12:14:15.35,-13:10:29.43,-177.244,0.211,-5.516,0.165,2459304.245613,0.0005869,1.5229985,7.04e-05,1.196,0.156,64.9419,0.113262,58060.0,104.313,8.99483,0.485033,37.1159,687.0,66.0,80.1423,0.643,3237.0,157.0,4.87,,0.35,0.01,,,0.337566,0.0205314,36,2021-12-21,2021-12-21,2023-06-16 00:00:00,found in faint-star QLP search,4860,1,False,False,False -71341774,4861.01,,3,4,3,3,3,4,4,9.4,27.4,64.45,0,0,1,PC,PC,12.3349,0.006,,1,qlp-s36-faintsearch,QLP,10:19:00.32,-35:41:02.02,-5.189,0.051,3.053,0.072,2459299.868636,0.005668,3.4321678,3.6e-05,5.115,0.566,2.119253,0.003645,1950.0,3.35698,9.36413,0.707453,2393.6,1948.0,12.0,946.232,32.565,6176.0,134.0,3.82,0.09,2.22,0.13,,,1.18,0.165318,"9,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; Rp slightly underestimated in fit,4861,1,False,False,False -322807371,4862.01,,1,4,1,3,3,4,4,,,71.3,0,2,1,PC,PC,11.6707,0.006,,1,qlp-s36-faintsearch,QLP,11:34:51.57,-24:36:19.73,23.791,0.063,-49.468,0.04,2459287.603184,0.0024978,0.0,0.0,5.513,0.78,10.973431,0.011205,10056.0,10.32,9.93012,0.653946,172.857,1010.0,28.0,238.377,2.4135,5427.9,123.3,4.49,0.08,0.91,0.05,0.0162228,0.0654486,0.946,0.123492,"9,36",2021-12-21,2021-12-21,2023-06-20 00:00:00,single at ~2287.6 TBJD; found in faint-star QLP search,4862,1,False,True,False -143032776,4863.01,,3,4,3,3,1,4,4,8.4,94.8,100.4,1,0,0,PC,PC,14.667,0.008,,1,qlp-s36-faintsearch,QLP,11:09:01.26,-10:11:17.92,-56.414,0.125,8.383,0.089,2459289.281849,0.0023674,12.4856615,0.0028788,2.538,0.452,75.610136,0.254311,67270.0,234.202,12.2535,0.848755,3.28873,375.0,19.0,184.734,2.7565,3473.0,157.0,4.78,0.01,0.45,0.01,,,0.442985,0.0211035,36,2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4863,1,False,False,False -48274889,4864.01,,3,4,3,3,1,4,4,12.4,48.6,66.55,1,0,0,PC,PC,13.0585,0.006,,1,qlp-s36-faintsearch,QLP,09:52:15.56,-33:02:41.87,8.389,0.027,-6.881,0.036,2459304.017033,0.002036,5.2410982,2.23e-05,1.188,0.248,6.162724,0.024906,5660.0,22.9389,9.54095,,53.3051,752.0,12.0,672.022,8.988,6119.0,123.0,4.4,,1.12,,,,1.15,,"9,35,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4864,1,False,False,False -143059017,4865.01,,3,5,5,3,1,4,4,28.3,55.9,89.5,2,0,0,PC,APC,13.4804,0.007,,1,qlp-s36-faintsearch,QLP,11:11:36.77,-08:41:39.48,23.301,0.083,-18.989,0.059,2459303.401989,0.0035905,1.2655205,0.0004639,1.344,0.259,6.949189,0.030058,6380.0,27.6845,11.3966,,583.776,1369.0,11.0,803.063,32.2745,5243.0,122.0,4.1,,1.41,,,,0.9,,36,2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4865,1,False,False,False -35758536,4866.01,,3,4,3,3,1,4,4,10.4,40.2,63.89,1,0,0,PC,PC,13.157,0.006,,1,qlp-s36-faintsearch,QLP,09:55:49.78,-43:02:55.92,-16.535,0.024,6.162,0.026,2459302.162367,0.0044689,4.1059615,3.32e-05,3.688,0.405,5.71513,0.009088,5250.0,8.37075,9.32533,,1015.01,1572.0,12.0,839.783,12.012,6524.0,122.0,4.32,,1.32,,,,1.34,,"9,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4866,1,False,False,False -74484423,4867.01,,3,4,3,3,3,4,4,15.2,43.8,87.81,0,0,1,PC,PC,12.959,0.007,,1,qlp-s36-faintsearch,QLP,09:09:54.16,-43:22:00.65,-15.414,0.024,12.824,0.026,2459303.39288,0.0035489,2.835273,2.1e-05,4.249,0.881,3.66511,0.005734,3370.0,5.28099,11.2429,0.656232,5246.76,2371.0,14.0,948.787,14.5805,6996.0,138.5,4.1,0.08,1.83,0.08,,,1.54,0.258862,"8,9,35,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4867,1,False,False,False -362370757,4868.01,,3,4,3,3,3,4,4,,,317.0,0,0,1,PC,PC,12.8007,0.006,,1,qlp-s36-faintsearch,QLP,09:40:45.44,-49:48:56.4,-8.341,2.935,5.657,2.935,2459304.383583,0.0037965,3.5164369,2.46e-05,3.119,0.608,7.23333,0.016543,6640.0,15.2363,22.1885,1.74868,227.514,1081.0,17.0,,,4395.0,134.8,,,2.57,0.16,,,,,"9,10,35,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4868,1,False,False,False -71221700,4869.01,,3,4,3,3,3,4,4,11.7,48.0,42.4,0,2,1,PC,PC,12.3918,0.01,,1,qlp-s36-faintsearch,QLP,10:16:11.67,-29:58:34.86,,,,,2459301.288209,0.0028071,3.0978928,1.72e-05,1.17,0.223,2.979,0.011434,2740.0,10.5312,,,133.067,946.0,9.0,536.765,,5962.0,442.3,,,,,,,,,"9,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,4869,1,False,False,False -446135868,4870.01,,3,4,3,3,1,4,4,17.7,64.3,51.66,0,0,0,PC,PC,13.353,0.006,,1,qlp-s36-faintsearch,QLP,09:49:43.14,-48:06:42.35,-24.055,0.037,23.033,0.037,2459303.45946,0.004958,1.8119168,1.64e-05,2.618,0.583,5.998949,0.021834,5510.0,20.11,8.20112,,2335.94,1936.0,9.0,643.517,9.049,6146.0,122.0,4.54,,0.96,,,,1.17,,"9,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4870,1,False,False,False -168158622,4871.01,,3,4,3,3,3,4,4,73.4,94.0,317.0,1,0,1,PC,PC,12.7595,0.008,,1,qlp-s36-faintsearch,QLP,10:12:42.79,-29:10:07.75,-6.595,0.069,5.841,0.059,2459302.323951,0.0020373,1.7687528,7.7e-06,1.471,0.218,4.504278,2.426888,4140.0,2232.75,19.8865,8.20769,3371.36,2122.0,11.0,853.761,27.1295,6176.0,134.5,4.12,0.09,1.56,0.09,,,1.18,0.171185,"9,35,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4871,1,False,False,False -310822679,4872.01,,3,4,3,3,3,4,4,8.1,28.1,69.43,0,0,1,PC,PC,12.6425,0.006,,1,qlp-s36-faintsearch,QLP,10:11:38.78,-48:12:21.29,-7.473,0.038,3.439,0.037,2459302.453868,0.0057138,1.7125104,2.38e-05,3.465,0.581,1.966963,0.005012,1810.0,4.61637,9.77984,0.779756,12427.4,2941.0,10.0,1670.56,68.065,7938.0,146.0,3.92,0.08,2.52,0.13,,,1.91,0.306928,"9,10,36",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4872,1,False,False,False -228694725,4873.01,,3,4,3,3,3,4,4,20.0,69.0,35.07,3,0,1,PC,PC,12.6116,0.008,,1,qlp-s37-faintsearch,QLP,12:56:06.53,-26:12:15.27,-24.526,0.045,-5.613,0.036,2459331.381252,0.0018081,0.8313018,2.7e-06,1.181,0.173,1.923456,0.008603,1770.0,7.9232,6.57285,0.477274,1906.13,1840.0,12.0,516.417,7.721,5983.0,132.1,4.4,0.08,1.1,0.06,,,1.1,0.150519,"10,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4873,1,False,False,False -463754499,4874.01,,3,4,3,3,1,4,4,16.5,19.4,317.0,0,0,0,PC,PC,13.1088,0.011,,1,qlp-s37-faintsearch,QLP,10:19:05.69,-58:46:29.53,-4.964,0.033,1.163,0.039,2459331.968016,0.0042755,2.2866856,2.3e-05,2.881,0.374,4.04647,0.009019,3720.0,8.30687,14.738,,5350.8,2382.0,14.0,1605.92,51.76,8277.0,122.0,3.98,,2.41,,,,2.04,,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4874,1,False,False,False -133512515,4875.01,,3,4,3,3,3,4,4,10.6,45.5,80.7,1,0,1,PC,PC,12.5502,0.006,,1,qlp-s37-faintsearch,QLP,10:00:05.34,-53:27:39.37,-21.164,0.038,10.976,0.038,2459330.737173,0.0034233,9.7929019,8.2e-05,3.362,0.34,6.643273,0.012869,6100.0,11.8526,10.6608,0.718737,127.221,935.0,14.0,651.686,10.6665,6322.0,138.7,4.28,0.09,1.33,0.06,,,1.25,0.184223,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4875,1,False,False,False -458300989,4876.01,,3,4,3,3,3,4,4,10.4,39.9,62.09,0,0,1,PC,PC,12.5386,0.014,,1,qlp-s37-faintsearch,QLP,10:38:37.8,-56:35:35.54,-12.033,1.186,13.504,1.185,2459328.149645,0.0072094,4.1379542,0.0001625,4.739,0.774,2.837476,0.011357,2610.0,10.4599,,,,,10.0,810.688,,,,,,,,,,,,"10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar parameters,4876,1,False,False,False -447054140,4877.01,,3,4,3,3,3,4,4,17.4,56.1,99.31,1,0,1,PC,PC,12.2316,0.006,,1,qlp-s37-faintsearch,QLP,10:26:38.97,-52:14:13.02,-14.404,0.047,4.465,0.047,2459330.373409,0.0017429,5.2220526,1.7e-05,4.243,0.217,5.278632,0.001495,4850.0,1.37701,12.0807,0.581877,896.671,1524.0,31.0,713.47,14.5485,6718.0,134.4,4.15,0.09,1.67,0.07,,,1.43,0.252908,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4877,1,False,False,False -144155193,4878.01,,3,4,3,3,1,4,4,20.5,58.7,113.54,1,0,0,PC,PC,13.4358,0.006,,1,qlp-s37-faintsearch,QLP,12:34:10.63,-41:50:14.24,-2.148,0.052,-3.501,0.084,2459330.771658,0.0026462,4.728422,2.18e-05,1.398,0.238,11.756804,0.035795,10770.0,32.9681,13.0542,,59.5611,773.0,12.0,720.203,21.885,5655.8,90.5,4.29,,1.18,,0.0934859,0.0896844,1.0,,"10,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4878,1,False,False,False -45465399,4879.01,,3,4,3,3,1,4,4,7.8,28.9,68.53,0,0,0,PC,PC,13.3342,0.006,,1,qlp-s37-faintsearch,QLP,08:42:34.56,-59:37:11.84,-5.358,0.063,5.652,0.061,2459325.008186,0.0047559,5.3763108,4.54e-05,2.339,0.327,4.395259,0.010706,4040.0,9.8604,9.71605,,242.224,1099.0,12.0,1071.24,36.41,6543.0,122.0,4.2,,1.53,,,,1.35,,"8,9,10,35,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4879,1,False,False,False -245099574,4880.01,,3,4,3,3,3,4,4,33.7,38.2,317.0,2,0,1,PC,PC,12.8382,0.007,,1,qlp-s37-faintsearch,QLP,13:12:01.03,-53:26:57.74,9.727,0.053,-3.456,0.054,2459329.598741,0.0032435,3.4717583,0.0009423,3.494,0.245,12.536349,0.010826,11480.0,9.97107,15.0586,0.858916,1172.33,1630.0,16.0,717.786,13.859,6549.0,133.8,4.26,0.09,1.43,0.07,,,1.35,0.222607,37,2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4880,1,False,False,False -359735804,4881.01,,3,4,3,3,1,4,4,10.3,23.8,87.89,0,0,0,PC,PC,13.2953,0.006,,1,qlp-s37-faintsearch,QLP,09:23:35.44,-61:52:48.96,3.327,0.038,-3.345,0.03,2459331.276716,0.0050292,4.4158835,4.47e-05,4.663,0.53,3.534389,0.006613,3250.0,6.09072,11.2662,,647.404,1405.0,13.0,977.09,15.3075,5306.0,122.0,3.78,,2.03,,,,0.91,,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4881,1,False,False,False -458331312,4882.01,,3,4,3,3,3,4,4,32.9,112.3,95.51,1,2,1,PC,PC,11.2673,0.006,,1,qlp-s37-faintsearch,QLP,10:38:11.23,-54:34:44.61,-22.062,0.05,8.013,0.04,2459329.594358,0.0012387,4.4360402,1.88e-05,2.438,0.269,7.670615,0.007044,7040.0,6.4873,11.7883,0.65443,410.649,1254.0,33.0,408.748,4.814,6633.0,132.4,4.29,0.09,1.39,0.06,,,1.39,0.236382,"10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; possibly on neighbor TIC 458331314,4882,1,False,False,False -446463666,4883.01,,3,4,3,3,3,4,4,12.1,41.2,80.79,0,0,1,PC,PC,12.9582,0.006,,1,qlp-s37-faintsearch,QLP,10:22:55.56,-50:10:38.76,-13.236,0.031,5.468,0.03,2459328.308088,0.0039917,4.4967355,3.01e-05,4.218,0.468,6.850849,0.006637,6290.0,6.11283,10.7052,0.641647,1127.24,1614.0,13.0,907.699,17.035,6534.0,135.4,4.2,0.08,1.53,0.07,,,1.35,0.212107,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4883,1,False,False,False -80681136,4884.01,,3,4,3,3,1,4,4,17.0,47.9,80.92,0,0,0,PC,PC,13.351,0.007,,1,qlp-s37-faintsearch,QLP,11:03:33.26,-51:27:33.25,-8.539,3.06,4.815,3.059,2459331.493845,0.0045032,1.5305341,1.74e-05,2.725,0.454,4.155454,0.015768,3820.0,14.5224,,,2957.7,2054.0,9.0,1102.0,,5951.0,710.7,,,,,,,,,"10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4884,1,False,False,False -72504752,4885.01,,3,4,3,3,1,4,4,25.4,36.5,317.0,0,0,0,PC,PC,13.3328,0.008,,1,qlp-s37-faintsearch,QLP,12:30:51.1,-44:37:06.56,-1.142,4.554,17.194,4.554,2459321.242029,0.0027165,6.9392854,3.63e-05,5.859,0.263,15.957587,0.007187,14590.0,6.61952,,,,,22.0,691.779,,,,,,,,,,,,"10,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius in report but Gaia DR2 Rstar = 1 +/- 0.25 which indicates Rp is planetary,4885,1,False,False,False -457743020,4886.01,,3,4,3,3,3,4,4,42.9,66.2,317.0,1,0,1,PC,PC,12.9004,0.007,,1,qlp-s37-faintsearch,QLP,10:33:02.79,-57:16:53.42,-12.973,0.029,3.519,0.03,2459327.581873,0.0010689,3.251249,8.9e-06,2.123,0.293,13.151596,0.01749,12040.0,16.1091,19.6899,1.12885,706.995,1436.0,34.0,997.825,17.9015,6951.0,136.5,4.18,0.09,1.66,0.07,,,1.52,0.245933,"10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4886,1,False,False,False -274911400,4887.01,,3,4,3,3,3,4,4,13.3,43.9,101.68,0,0,1,PC,PC,12.6039,0.008,,1,qlp-s37-faintsearch,QLP,09:58:12.7,-58:56:51.15,-21.822,0.037,14.711,0.033,2459325.946083,0.0060474,5.1873583,6e-05,5.228,0.507,4.188152,0.008365,3850.0,7.70398,12.2426,0.729194,2667.28,2002.0,13.0,983.925,19.206,7868.0,146.4,4.13,0.08,1.96,0.07,,,1.88,0.294802,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4887,1,False,False,False -309292963,4888.01,,3,4,3,3,3,4,4,6.6,30.9,50.26,0,0,1,PC,PC,12.0728,0.006,,1,qlp-s37-faintsearch,QLP,08:17:21.08,-60:01:51.52,-4.98,0.053,7.402,0.047,2459319.759823,0.0057424,9.4185437,0.0001015,4.259,0.504,2.902793,0.004021,2670.0,3.70336,8.08768,0.504643,223.026,1076.0,15.0,595.898,9.0255,6243.0,127.9,4.12,0.09,1.58,0.07,,,1.21,0.186868,"4,5,8,10,35,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; weak transit shape due to poor detrending,4888,1,False,False,False -441936163,4889.01,,3,4,3,3,3,4,4,,,25.4,0,0,3,PC,PC,12.6063,0.006,,1,qlp-s37-faintsearch,QLP,09:43:10,-56:25:18.32,,,,,2459330.552381,0.001583,1.895234,6.7e-06,0.868,0.217,2.685086,0.036019,2470.0,33.1743,,,24.4753,619.0,9.0,,,3525.0,85.4,,,,,,,,,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; no stellar radius,4889,1,False,False,False -92004082,4890.01,,3,4,4,3,3,4,4,46.1,54.7,317.0,4,0,1,PC,PC,11.6042,0.006,,1,qlp-s37-faintsearch,QLP,11:28:15.79,-49:40:04.32,-15.449,0.046,2.357,0.045,2459328.767105,0.0010477,3.0475227,0.0003807,2.953,0.15,9.060165,0.002523,8310.0,2.32331,14.8539,0.720619,1293.5,1670.0,36.0,575.512,10.093,6823.0,131.9,4.19,0.09,1.6,0.07,,,1.47,0.258106,37,2021-12-21,2021-12-21,2023-02-19 00:00:00,found in faint-star QLP search,4890,1,False,False,False -458199018,4891.01,,3,4,3,3,3,4,4,29.8,45.3,317.0,0,0,1,PC,PC,12.8844,0.008,,1,qlp-s37-faintsearch,QLP,10:37:35.25,-56:44:36.65,-2.904,2.958,1.373,2.958,2459328.432761,0.0037558,2.4519547,3.65e-05,3.232,0.588,6.774369,3.073745,6220.0,2827.02,,,,,11.0,1393.25,,,,,,,,,,,,"10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4891,1,False,False,False -6010784,4892.01,,3,4,3,3,1,4,4,13.2,41.4,87.09,1,0,0,PC,PC,13.2078,0.008,,1,qlp-s37-faintsearch,QLP,12:55:46.24,-18:44:11.18,-8.396,0.065,8.277,0.061,2459323.755016,0.0038781,4.516649,3.44e-05,3.654,0.336,6.654198,0.009275,6110.0,8.54266,11.1801,,509.073,1323.0,16.0,849.685,26.4825,5850.0,122.0,4.17,,1.4,,,,1.06,,"10,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4892,1,False,False,False -441234277,4893.01,,3,4,3,3,3,4,4,,,98.4,1,0,1,PC,PC,12.6087,0.006,,1,qlp-s37-faintsearch,QLP,09:41:01.71,-57:22:44.49,-9.255,3.004,-0.064,3.004,2459325.325178,0.0019173,7.3262605,2.65e-05,1.786,0.313,13.27249,0.033041,12150.0,30.4314,,,24.4878,619.0,20.0,,,4884.2,190.9,,,,,,,,,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,crowded; found in faint-star QLP search; no stellar radius; host is subgiant; Rp is likely planetary,4893,1,False,False,False -469333534,4894.01,,3,4,3,3,1,4,4,14.0,41.6,96.67,0,0,0,PC,PC,13.4175,0.006,,1,qlp-s37-faintsearch,QLP,09:55:13.16,-57:19:56.88,-10.074,3.588,-10.33,3.588,2459329.469535,0.0058877,3.5611222,4.79e-05,2.736,0.581,5.704216,0.025069,5240.0,23.0888,12.6024,1.19618,340.982,1197.0,10.0,1092.05,,5260.0,156.1,,,1.76,0.1,,,,,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4894,1,False,False,False -463365347,4895.01,,3,4,3,3,3,4,4,12.0,43.1,87.59,0,0,1,PC,PC,12.1122,0.007,,1,qlp-s37-faintsearch,QLP,10:14:55.11,-58:40:40.4,-13.857,0.045,3.118,0.045,2459321.815644,0.0024856,8.9641788,9.37e-05,1.636,0.276,3.817638,0.015638,3510.0,14.4031,11.2056,0.885082,56.781,764.0,10.0,638.197,10.9955,6956.0,140.1,4.12,0.09,1.77,0.08,,,1.52,0.262646,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4895,1,False,False,False -438278301,4896.01,,3,4,3,3,3,4,4,11.9,45.2,79.46,0,0,1,PC,PC,12.554,0.006,,1,qlp-s37-faintsearch,QLP,09:29:00.97,-58:51:46.23,-11.153,0.044,11.298,0.038,2459322.428954,0.0050867,5.1609259,5.42e-05,4.411,0.53,5.005909,0.008719,4600.0,8.03029,10.5964,0.679803,1325.48,1680.0,10.0,837.932,16.8435,7102.0,132.1,4.23,0.09,1.6,0.07,,,1.58,0.275248,"9,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4896,1,False,False,False -81693792,4897.01,,3,4,3,3,1,4,4,17.4,59.1,92.49,1,0,0,PC,PC,13.1546,0.006,,1,qlp-s37-faintsearch,QLP,11:11:14.98,-50:05:19.96,-18.116,0.028,6.289,0.025,2459329.757212,0.0023981,4.3066915,2e-05,2.149,0.212,8.315933,0.012004,7630.0,11.0564,11.6239,,313.657,1172.0,11.0,781.614,11.825,6618.0,122.0,4.4,,1.23,,,,1.39,,"10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4897,1,False,False,False -124235800,4898.01,,2,4,2,2,3,4,4,10.1,65.5,11.97,3,0,1,PC,PC,11.9277,0.007,,1,qlp-s37-faintsearch,QLP,13:09:22,-32:49:46.03,-116.636,0.066,-48.539,0.061,2459330.01077,0.0020555,2.7652293,1.03e-05,1.262,0.219,2.598015,0.006595,2390.0,6.07417,3.48557,0.201627,33.0144,667.0,14.0,98.5958,0.3946,3830.0,157.0,4.62,0.01,0.64,0.02,,,0.619077,0.0202249,"10,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4898,1,False,False,False -376610581,4899.01,,3,4,3,3,3,4,4,28.4,32.0,317.0,1,0,1,PC,PC,12.4218,0.006,,1,qlp-s37-faintsearch,QLP,10:12:06.66,-61:27:43.54,-4.888,0.047,1.416,0.044,2459331.214533,0.0030882,2.3908076,3.57e-05,3.28,0.49,6.544962,0.013257,6010.0,12.2105,14.4175,0.92373,3793.38,2186.0,13.0,951.545,20.172,7228.0,135.3,4.15,0.09,1.77,0.08,,,1.62,0.268788,"11,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4899,1,False,False,False -425508314,4900.01,,3,4,3,3,1,4,4,14.6,17.5,317.0,0,0,0,PC,PC,13.1119,0.006,,1,qlp-s37-faintsearch,QLP,13:25:36.61,-38:42:22.22,-10.287,0.056,-11.227,0.051,2459320.969034,0.0048066,7.6650157,6.71e-05,5.834,0.381,7.834643,0.005631,7190.0,5.18622,14.8051,,516.192,1327.0,19.0,1026.01,38.8435,6085.0,125.0,4.04,,1.68,,,,1.14,,"11,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4900,1,False,False,False -107017977,4901.01,,3,4,3,3,3,4,4,9.3,43.1,82.08,1,0,1,PC,PC,12.5306,0.006,,1,qlp-s37-faintsearch,QLP,12:11:35.41,-31:43:06.34,-22.992,0.045,-14.147,0.035,2459315.344938,0.0025091,16.0462248,9.59e-05,2.492,0.372,7.954945,0.010168,7300.0,9.36506,10.789,0.742008,14.0395,539.0,18.0,454.749,5.9535,5295.9,118.0,4.22,0.08,1.23,0.07,0.0305578,0.0706118,0.91,0.111741,"10,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4901,1,False,False,False -358072664,4902.01,,5,5,5,5,5,5,5,10.9,32.4,65.62,0,0,0,PC,FP,12.8989,0.006,,1,qlp-s37-faintsearch,QLP,09:15:46.4,-60:17:30.67,0.336,0.031,9.124,0.026,2459327.06697,0.0035454,4.1934945,3.46e-05,1.873,0.33,2.946339,0.009913,2710.0,9.1303,9.49438,0.749546,137.464,953.0,9.0,727.548,8.3025,5541.0,131.8,4.01,0.08,1.63,0.09,,,0.98,0.123093,"9,10,35,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4902,1,False,False,False -457789844,4903.01,,3,4,3,3,3,4,4,18.9,61.5,105.23,0,0,1,PC,PC,12.3934,0.008,,1,qlp-s37-faintsearch,QLP,10:32:51.92,-59:52:49.48,-6.974,0.048,-2.564,0.047,2459331.925466,0.0028879,4.9142901,3.26e-05,4.595,0.315,5.73696,0.005206,5270.0,4.79532,12.5243,0.634002,2462.94,1962.0,18.0,854.029,19.4445,8065.0,150.5,4.27,0.07,1.7,0.07,,,1.96,0.282266,"10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,crowded; found in faint-star QLP search,4903,1,False,False,False -464388115,4904.01,,3,4,3,3,3,4,4,35.1,65.5,317.0,2,0,1,PC,PC,12.5927,0.007,,1,qlp-s37-faintsearch,QLP,10:24:53.37,-56:57:01.72,-5.923,0.053,2.609,0.047,2459331.41006,0.0011294,2.4118274,5.8e-06,1.722,0.242,10.089797,0.008613,9250.0,7.93282,19.2999,1.21375,2090.41,1883.0,32.0,1470.83,73.74,8765.0,166.3,4.21,0.08,1.92,0.11,,,2.2,0.31697,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4904,1,False,False,False -463011281,4905.01,,3,4,3,3,3,4,4,14.0,19.7,317.0,0,0,1,PC,PC,12.6595,0.006,,1,qlp-s37-faintsearch,QLP,10:10:54.59,-56:10:57.34,1.303,2.994,-6.21,2.994,2459311.21739,0.0040873,11.1378464,0.0001028,1.622,0.399,5.824283,0.042686,5350.0,39.3149,13.1836,1.26643,18.3455,576.0,9.0,852.832,,5809.0,151.3,,,1.56,0.08,,,,,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4905,1,False,False,False -385459345,4906.01,,3,4,3,3,1,4,4,5.7,31.2,58.3,0,0,0,PC,PC,13.3678,0.006,,1,qlp-s37-faintsearch,QLP,09:11:57.51,-59:36:10.33,-5.595,0.032,15.821,0.028,2459317.126845,0.0061815,11.9742188,0.0001484,3.662,0.472,7.364497,0.020976,6760.0,19.3197,8.81618,,84.7541,845.0,10.0,708.385,8.2385,6059.0,122.0,4.41,,1.09,,,,1.13,,"9,10,35,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4906,1,False,False,False -447585233,4907.01,,3,4,3,3,3,4,4,11.3,41.7,47.39,0,0,1,PC,PC,12.9489,0.006,,1,qlp-s37-faintsearch,QLP,10:30:41.4,-53:34:08.39,,,,,2459329.17652,0.0047455,3.3405202,2.82e-05,2.693,0.608,3.425467,0.013627,3150.0,12.5508,,,361.948,1215.0,11.0,604.385,,5108.1,140.8,,,,,,,,,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4907,1,False,False,True -356835341,4908.01,,3,4,3,3,1,4,4,3.5,19.5,72.17,0,0,0,PC,PC,13.2223,0.006,,1,qlp-s37-faintsearch,QLP,09:01:22.97,-63:33:44.44,-9.363,0.036,10.164,0.035,2459311.07958,0.0112343,19.7112002,0.0004001,5.452,0.698,4.515181,0.014824,4150.0,13.6536,9.99929,,104.142,889.0,9.0,1076.25,20.88,6636.0,122.0,4.18,,1.59,,,,1.39,,"9,10,11,35,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4908,1,False,False,True -272211398,4909.01,,3,4,3,3,3,4,4,32.8,48.9,317.0,0,0,1,PC,PC,10.609,0.007,,1,qlp-s37-faintsearch,QLP,12:00:27.36,-47:14:38.18,-4.8,1.7,-12.9,1.6,2459328.423004,0.0014214,11.6483585,3.78e-05,5.882,0.469,7.025681,0.002864,6450.0,2.63802,16.1576,,305.645,,59.0,341.382,,6496.0,348.6,4.64,0.17,2.0,,-0.267348,0.0672552,,,"10,37",2021-12-21,2019-12-17,2022-12-14 12:09:24,found in faint-star QLP search,4909,1,False,False,True -303327435,4910.01,,3,4,3,3,1,4,4,21.4,64.2,101.48,0,0,0,PC,PC,13.467,0.006,,1,qlp-s37-faintsearch,QLP,10:56:03.85,-54:16:49.7,-26.163,0.035,9.192,0.034,2459324.681432,0.0020171,5.5074681,5.05e-05,1.095,0.219,11.877542,0.058462,10880.0,53.8439,12.2204,,19.4421,584.0,9.0,544.636,7.157,5277.0,123.0,4.38,,1.01,,,,0.9,,"10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4910,1,False,False,True -303814029,4911.01,,3,4,3,3,3,4,4,18.1,60.3,120.1,0,0,1,PC,PC,12.7706,0.006,,1,qlp-s37-faintsearch,QLP,10:58:04.77,-56:23:09.6,-10.238,0.029,2.621,0.03,2459332.056627,0.0024044,4.4573401,2.83e-05,3.75,0.334,8.115734,0.00839,7447.0,7.72768,13.5074,0.694807,1527.79,1741.0,12.0,999.139,17.896,7514.0,141.4,4.3,0.08,1.54,0.06,,,1.73,0.285379,"10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4911,1,False,False,False -219769290,4912.01,,3,4,3,3,1,4,4,42.2,77.0,317.0,0,0,0,PC,PC,13.346,0.007,,1,qlp-s37-faintsearch,QLP,12:49:28.68,-23:04:34.39,-20.187,0.05,15.548,0.045,2459327.882942,0.003957,7.4105517,4.43e-05,1.856,0.283,11.614131,5.246927,10640.0,4820.94,18.0468,,111.176,904.0,11.0,508.676,8.056,5546.0,122.0,4.53,,0.89,,,,0.98,,"10,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4912,1,False,False,False -72401290,4913.01,,3,4,3,3,3,4,4,6.3,43.5,20.44,1,0,1,PC,PC,12.3375,0.006,,1,qlp-s37-faintsearch,QLP,12:28:26.58,-46:04:22.46,-19.402,0.037,-4.767,0.02,2459332.199038,0.0039273,6.5430693,4.61e-05,2.585,0.366,4.155454,0.010505,3820.0,9.67559,4.75554,0.440526,53.4345,753.0,13.0,203.601,1.146,4689.0,127.0,4.55,0.1,0.76,0.06,,,0.75,0.0894296,"10,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4913,1,False,False,False -49254857,4914.01,,3,4,4,3,3,4,4,26.9,115.4,107.2,4,2,1,PC,PC,11.6629,0.012,,1,qlp-s37-faintsearch,QLP,13:38:10.24,-28:08:34.51,-13.357,0.066,-15.313,0.057,2459317.272697,0.0009292,10.5988743,0.0013519,1.638,0.205,14.119119,0.013039,12920.0,12.0092,12.6054,0.772646,18.1082,574.0,43.0,299.89,3.4375,5809.9,123.1,4.42,0.08,1.04,0.05,-0.166743,0.0825371,1.04,0.132074,37,2021-12-21,2021-12-21,2023-06-08 00:00:00,found in faint-star QLP search,4914,1,False,False,True -440937096,4915.01,,3,4,3,3,3,4,4,,,22.4,0,0,1,PC,PC,11.7211,0.041,,1,qlp-s37-faintsearch,QLP,09:39:21.76,-55:17:38.91,-7.607,0.05,5.045,0.048,2459327.60894,0.0025309,3.3362143,1.61e-05,2.121,0.318,2.315085,0.004263,2130.0,3.92655,,,,,17.0,2147.14,136.93,,,,,,,,,,,"9,10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius; Gaia DR2 Teff of ~8000K indicates Rp likely planetary,4915,1,False,False,False -454069765,4916.01,,5,5,5,5,5,5,5,11.5,37.1,61.14,0,0,0,KP,KP,12.1137,0.006,,1,qlp-s37-faintsearch,QLP,11:44:57.66,-38:08:22.98,-21.126,0.046,-0.988,0.037,2459326.617962,0.0036295,4.1197036,0.0007363,4.547,0.456,2.924566,0.002989,2690.0,2.75282,9.06392,0.541736,1047.58,1584.0,20.0,647.595,14.7305,5848.8,105.9,3.96,0.07,1.79,0.09,0.412489,0.0671756,1.06,0.133559,"10,36,37",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; NGTS-13 b,4916,1,False,False,False -317362389,4917.01,,3,4,3,3,3,4,4,45.8,144.9,118.28,1,0,1,PC,PC,11.1646,0.006,,1,qlp-s38-faintsearch,QLP,13:34:55.69,-64:49:48.21,-8.615,0.04,-5.091,0.043,2459356.533298,0.0031392,4.7738904,0.0011662,3.304,0.244,10.002131,0.013056,9170.0,12.0249,13.3725,0.790627,597.141,1377.0,24.0,364.963,4.4185,6681.0,129.3,4.33,0.09,1.35,0.06,,,1.41,0.244815,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,crowded; found in faint-star QLP search,4917,1,False,False,False -60859922,4918.01,,3,4,3,3,3,4,4,8.8,38.4,45.24,0,2,1,PC,PC,12.0272,0.009,,1,qlp-s38-faintsearch,QLP,14:06:53.48,-29:18:24.59,1.228,0.065,-0.198,0.061,2459357.329312,0.0041018,6.5329169,6.66e-05,3.342,0.537,3.109654,0.004601,2860.0,4.23795,7.59526,0.514563,221.525,1074.0,13.0,465.792,8.4955,5698.0,129.5,4.15,0.08,1.39,0.07,,,1.01,0.126218,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4918,1,False,False,False -155419920,4919.01,,3,4,3,3,3,4,4,34.4,38.1,317.0,0,0,1,PC,PC,12.9098,0.006,,1,qlp-s38-faintsearch,QLP,15:33:32.65,-42:06:02.05,3.85,0.046,-7.486,0.033,2459358.158702,0.0023189,3.6470909,1.58e-05,2.383,0.209,10.276112,0.012196,9420.0,11.2326,16.5056,1.00102,369.697,1221.0,17.0,804.907,15.1725,6050.0,131.3,4.09,0.08,1.58,0.08,,,1.13,0.148225,"12,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4919,1,False,False,False -132611413,4920.01,,3,4,3,3,3,4,4,26.1,65.3,116.93,1,0,1,PC,PC,12.8127,0.007,,1,qlp-s38-faintsearch,QLP,15:18:33.15,-51:16:55.24,-6.228,0.049,-9.138,0.045,2459358.125475,0.0043127,2.5245706,5.24e-05,3.741,0.54,5.245901,0.01693,4820.0,15.5928,13.3195,0.955661,3197.52,2094.0,17.0,832.199,17.5885,6687.0,134.5,4.15,0.09,1.66,0.08,,,1.42,0.237656,"12,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4920,1,False,False,False -404227343,4921.01,,3,4,3,3,3,4,4,30.2,83.8,120.57,0,0,2,PC,PC,12.1004,0.007,,1,qlp-s38-faintsearch,QLP,13:01:44.82,-52:35:30.2,1.834,1.174,2.284,1.173,2459344.888612,0.0024567,3.4975869,0.0005047,1.734,0.489,4.896839,0.121734,4500.0,112.115,13.5654,,1161.69,,22.0,677.488,,6987.0,,,,1.69,,,,,,"37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4921,1,False,False,False -411943564,4922.01,,3,4,3,3,3,4,4,13.8,51.5,82.83,0,0,1,PC,PC,12.798,0.006,,1,qlp-s38-faintsearch,QLP,12:39:17.82,-57:35:36.33,-14.708,2.944,-12.125,2.944,2459359.885613,0.0029849,7.5492321,7.42e-05,5.259,0.363,7.113107,0.005574,6530.0,5.13355,,,251.146,1109.0,19.0,610.158,,5295.2,245.0,,,,,,,,,"11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4922,1,False,False,False -219181903,4923.01,TIC 219181903.01,3,4,3,3,3,4,4,9.1,40.5,71.06,2,0,1,PC,PC,12.2607,0.006,,1,qlp-s38-faintsearch,QLP,06:07:25.64,-51:53:48.67,23.47,0.04,-14.492,0.037,2459342.61396,0.0013888,12.9175271,3.04e-05,4.46,0.155,5.02227,0.001173,4615.0,1.08074,9.95556,0.556566,69.9889,805.0,26.0,469.545,4.084,5501.0,126.9,4.17,0.08,1.34,0.07,,,0.96,0.121344,"1,5,6,7,8,11,28,31,32,33,34,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4923,1,False,False,False -307099276,4924.01,,3,4,3,3,1,4,4,18.6,64.5,116.54,0,0,0,PC,PC,13.0029,0.011,,1,qlp-s38-faintsearch,QLP,11:58:05.88,-60:46:26.22,-6.792,0.067,-0.833,0.056,2459359.002207,0.0037141,3.1467665,2.63e-05,3.359,0.283,6.129967,0.010228,5630.0,9.41992,,,3523.36,2146.0,12.0,1196.03,59.61,8232.0,123.0,,,,,,,,,"10,11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4924,1,False,False,False -399847887,4925.01,,3,4,3,3,1,4,4,17.8,48.9,109.44,0,0,0,PC,PC,13.484,0.006,,1,qlp-s38-faintsearch,QLP,11:00:28.18,-67:52:20.46,-5.332,0.031,-0.49,0.03,2459353.6013,0.0045925,3.9511085,2.83e-05,2.727,0.367,8.21747,0.019199,7540.0,17.6829,12.8323,,388.353,1236.0,10.0,883.572,13.9605,5933.0,122.0,4.19,,1.38,,,,1.08,,"10,11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4925,1,False,False,False -454828937,4926.01,,3,4,3,3,3,4,4,8.0,27.1,73.65,0,0,1,PC,PC,12.29,0.006,,1,qlp-s38-faintsearch,QLP,11:48:02.76,-72:42:55.21,-9.283,0.046,1.204,0.045,2459351.143054,0.0031333,6.809144,4.52e-05,6.35,0.283,2.162768,0.001487,1990.0,1.36967,10.1542,0.5783,1033.51,1579.0,17.0,880.334,21.156,6464.0,135.3,3.87,0.09,2.2,0.11,,,1.31,0.218942,"11,12,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4926,1,False,False,False -376421071,4927.01,,3,4,3,3,1,4,4,22.2,46.6,82.81,0,0,0,PC,PC,13.1571,0.006,,1,qlp-s38-faintsearch,QLP,10:12:58.71,-65:50:50.09,-8.355,0.03,-1.319,0.03,2459359.635635,0.0021088,0.8166936,1.2e-05,1.234,0.207,3.14232,0.008384,2890.0,7.72176,10.8868,,2102.63,1886.0,13.0,1080.6,18.575,5951.0,122.0,3.89,,1.97,,,,1.09,,"11,36,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4927,1,False,False,False -448820344,4928.01,,3,4,3,3,3,4,4,27.1,81.4,104.87,0,0,1,PC,PC,11.3943,0.007,,1,qlp-s38-faintsearch,QLP,14:14:48.97,-66:42:52.9,-1.41,0.035,-5.698,0.042,2459358.786025,0.0037357,2.7792649,1.92e-05,3.764,0.388,3.926599,0.003558,3610.0,3.27738,12.48,0.645411,4287.92,2254.0,21.0,686.164,14.454,7544.0,136.9,4.05,0.08,2.08,0.08,,,1.75,0.294921,"11,12,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4928,1,False,False,False -359403471,4929.01,,3,4,3,3,1,4,4,45.2,114.0,107.17,0,0,0,PC,PC,13.405,0.007,,1,qlp-s38-faintsearch,QLP,13:25:41.34,-56:00:26.35,-36.923,0.073,-23.864,0.145,2459358.085914,0.0050337,2.5547255,2.6e-05,2.953,0.371,6.075374,2.346649,5580.0,2159.01,13.5829,5.10741,2108.75,1887.0,10.0,494.931,13.0535,4956.0,143.0,,,0.99,0.06,,,,,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4929,1,False,False,False -307221757,4930.01,,3,4,3,3,3,4,4,6.2,34.7,29.16,0,0,1,PC,PC,12.0678,0.006,,1,qlp-s38-faintsearch,QLP,13:54:34.05,-45:09:16.12,3.886,0.199,-4.453,0.566,2459358.242592,0.0046252,6.7789159,5.41e-05,4.138,0.484,2.870134,0.003681,2640.0,3.38988,5.88108,0.658657,310.079,1169.0,17.0,413.757,41.4235,5804.0,131.3,4.33,0.11,1.16,0.12,,,1.04,0.128199,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4930,1,False,False,False -296850254,4931.01,,3,4,3,3,3,4,4,18.1,70.6,64.33,0,0,1,PC,PC,12.129,0.006,,1,qlp-s38-faintsearch,QLP,11:46:35.63,-70:20:08.85,-22.266,1.269,2.463,1.259,2459356.799988,0.0021617,6.7635161,0.0001223,3.079,0.237,6.195482,0.006882,5690.0,6.33874,,,74.7856,819.0,23.0,330.511,,4847.4,270.8,,,,,,,,,"11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,4931,1,False,False,False -148772620,4932.01,,3,4,3,3,3,4,4,14.8,31.7,94.71,0,0,1,PC,PC,12.5116,0.006,,1,qlp-s38-faintsearch,QLP,15:23:41.18,-36:11:58.23,-10.17,0.071,-11.148,0.045,2459358.598278,0.00667,3.9417247,4.92e-05,5.762,0.983,3.011662,0.00817,2770.0,7.52476,11.7599,1.09582,1541.06,1745.0,14.0,777.484,39.056,4900.9,75.0,,,2.3,0.17,,,0.94,0.119888,"1,2,3,4,5,6,7,8,9,10,11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4932,1,False,False,False -35106764,4933.01,,3,4,3,3,3,4,4,27.6,50.7,317.0,0,0,1,PC,PC,12.7116,0.006,,1,qlp-s38-faintsearch,QLP,14:58:55.57,-56:24:54.87,-3.882,3.025,4.366,3.025,2459354.560435,0.0061217,5.3861006,6.99e-05,4.62,0.528,7.014753,0.010688,6440.0,9.84367,,,477.988,1302.0,14.0,1187.08,,5623.3,344.5,,,,,,,,,"11,12,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4933,1,False,False,False -292797572,4934.01,,5,5,5,5,5,5,5,25.1,74.0,111.19,0,0,0,PC,FP,12.6554,0.009,,1,qlp-s38-faintsearch,QLP,14:34:42.45,-58:17:50.29,-7.637,0.083,-8.874,0.088,2459355.677383,0.0090147,2.8013515,3.86e-05,5.405,1.516,4.995001,0.34444,4590.0,317.191,12.9252,3.31566,28108.4,3607.0,15.0,824.376,21.544,7518.0,142.8,4.23,0.08,1.67,0.07,,,1.74,0.264689,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4934,1,False,False,False -412635642,4935.01,,3,4,4,3,3,4,4,17.8,77.4,116.77,1,0,1,PC,PC,11.5845,0.006,,1,qlp-s38-faintsearch,QLP,12:52:43.51,-58:55:54.16,-0.9,4.6,0.5,4.2,2459333.235529,0.0017143,17.4230202,6.35e-05,3.802,0.155,10.22131,0.005018,9370.0,4.62129,13.3223,,45.6259,,35.0,458.015,,6282.0,,,,1.37,,,,,,"11,37,38",2021-12-21,2021-12-21,2023-03-11 00:00:00,found in faint-star QLP search,4935,1,False,False,False -68030406,4936.01,,3,4,3,3,1,4,4,21.6,28.7,317.0,1,0,0,PC,PC,13.0936,0.007,,1,qlp-s38-faintsearch,QLP,12:40:52.61,-55:30:05.74,-7.55,0.025,-4.605,0.024,2459358.593442,0.0017054,4.7750178,2.05e-05,3.64,0.189,10.330916,0.005891,9470.0,5.42584,15.088,,917.418,1533.0,28.0,956.723,23.049,7121.0,122.0,4.27,,1.53,,,,1.58,,"11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4936,1,False,False,False -241638905,4937.01,,3,4,3,3,3,4,4,10.3,25.9,93.69,0,0,1,PC,PC,12.4864,0.006,,1,qlp-s38-faintsearch,QLP,13:50:40.71,-48:48:27.56,-3.896,0.093,-2.15,0.131,2459358.244091,0.0105646,5.0414219,0.0001197,6.675,0.733,2.5436,0.006309,2340.0,5.81094,11.6667,1.11788,1527.97,1741.0,11.0,1030.16,63.256,5838.0,129.4,3.66,0.09,2.5,0.19,,,1.05,0.130797,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4937,1,False,False,False -457018819,4938.01,,3,4,4,3,3,4,4,57.7,155.8,120.54,3,0,1,PC,PC,12.4741,0.006,,1,qlp-s38-faintsearch,QLP,13:26:58.05,-55:54:54.71,-9.414,0.037,-4.69,0.043,2459357.454607,0.0023287,2.913692,1.77e-05,2.665,0.191,22.078847,0.034672,20130.0,31.9336,13.5499,0.870113,586.602,1371.0,79.0,377.703,3.6995,5816.0,128.5,4.49,0.07,0.97,0.04,,,1.05,0.129854,"11,38",2021-12-21,2021-12-21,2023-04-27 00:00:00,found in faint-star QLP search,4938,1,False,False,False -149109125,4939.01,,3,4,3,3,3,4,4,11.1,43.2,108.28,0,0,1,PC,PC,12.1624,0.006,,1,qlp-s38-faintsearch,QLP,15:26:36.91,-41:23:10.48,-6.45,2.952,-6.852,1.497,2459342.285554,0.0046511,9.1717558,0.0052118,3.54,0.428,5.704216,0.008297,5240.0,7.64188,7.49243,0.439102,328.919,1186.0,12.0,972.238,,7513.5,145.4,,,1.08,0.04,,,,,38,2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4939,1,False,False,False -237929468,4940.01,,3,4,3,3,3,4,4,2.2,22.6,27.02,1,0,1,PC,PC,11.8153,0.006,,1,qlp-s38-faintsearch,QLP,03:53:00.28,-62:24:28.68,0.784,0.044,-3.596,0.057,2459317.035473,0.0027653,25.8675892,0.0001066,3.562,0.217,2.532717,0.001554,2330.0,1.43125,5.64345,0.339106,12.2516,521.0,14.0,345.659,3.619,5418.7,157.9,,,1.18,0.06,,,0.97,0.125745,"1,2,3,4,8,11,28,29,30,31,34,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4940,1,False,False,False -77680373,4941.01,,3,4,4,3,1,4,4,39.3,109.3,83.83,4,0,0,PC,PC,13.1014,0.006,,1,qlp-s38-faintsearch,QLP,15:58:41.48,-27:25:52.55,-17.845,0.069,-6.697,0.038,2459354.639335,0.0012546,3.5569996,1.06e-05,1.985,0.103,20.816414,0.014538,18990.0,13.3897,10.8822,,68.3964,801.0,26.0,259.563,2.4025,4440.0,122.0,4.49,,0.78,,,,0.695,,"12,38",2021-12-21,2021-12-21,2023-05-03 00:00:00,found in faint-star QLP search,4941,1,False,False,False -166242494,4942.01,,3,4,3,3,3,4,4,5.9,32.9,39.13,0,0,1,PC,PC,12.5098,0.006,,1,qlp-s38-faintsearch,QLP,12:51:16.16,-52:48:37.97,-6.559,0.051,1.321,0.046,2459349.600449,0.004912,7.9248476,0.0001038,4.022,0.487,3.621535,0.008227,3330.0,7.5777,7.01304,0.508034,283.041,1142.0,12.0,562.338,13.5725,6274.0,127.3,4.35,0.09,1.22,0.06,,,1.22,0.180149,"11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4942,1,False,False,False -418567812,4943.01,,3,4,3,3,1,4,4,19.3,71.2,66.03,0,0,0,PC,PC,12.998,0.019,,1,qlp-s38-faintsearch,QLP,14:56:00.46,-59:38:34.69,,,,,2459352.427425,0.0019097,8.0176705,4.98e-05,2.714,0.25,13.426373,0.016322,12290.0,15.0331,8.9733,0.782114,26.1122,629.0,18.0,,,4353.0,173.3,,,0.78,0.06,,,,,"12,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4943,1,False,False,False -242190195,4944.01,,3,4,3,3,1,4,4,20.3,77.8,65.1,0,0,0,PC,PC,13.0161,0.006,,1,qlp-s38-faintsearch,QLP,14:03:48.43,-43:16:25.23,6.351,0.052,-22.801,0.061,2459359.477756,0.0015738,4.075051,1.39e-05,1.176,0.225,10.045963,0.03155,9210.0,29.0583,9.4389,,77.2131,825.0,16.0,454.335,8.326,5674.0,123.0,4.56,,0.87,,,,1.01,,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4944,1,False,False,False -332017079,4945.01,,3,4,3,3,1,4,4,82.4,101.1,317.0,2,0,0,PC,PC,13.184,0.007,,1,qlp-s38-faintsearch,QLP,14:20:59.86,-53:08:11.61,-18.336,0.07,-7.076,0.071,2459357.969995,0.0019274,1.6500255,6.2e-06,2.937,0.189,15.605064,1.257957,14270.0,1157.95,18.0511,,9993.06,2785.0,45.0,650.297,13.44,6449.0,122.0,4.44,,1.15,,,,1.31,,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4945,1,False,False,False -319783554,4946.01,,5,5,5,5,5,5,5,29.4,92.9,86.46,0,0,0,PC,FP,12.1164,0.008,,1,qlp-s38-faintsearch,QLP,13:40:34.87,-63:44:32.29,-6.418,0.038,-6.122,0.049,2459357.232388,0.0043968,1.819376,2.88e-05,2.97,1.015,5.704216,0.088033,5240.0,81.078,11.1303,1.56849,12022.3,2917.0,12.0,664.284,14.649,7567.0,142.9,4.31,0.08,1.53,0.06,,,1.75,0.279985,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,crowded; found in faint-star QLP search,4946,1,False,False,False -382975217,4947.01,,3,4,3,3,3,4,4,26.0,75.1,109.48,1,0,1,PC,PC,11.5362,0.006,,1,qlp-s38-faintsearch,QLP,12:15:11.69,-63:36:50.08,-16.299,0.054,-3.527,0.042,2459353.765428,0.0020429,4.1400273,2.2e-05,3.936,0.381,4.918652,0.002501,4520.0,2.30323,12.7772,0.68478,1271.14,1663.0,23.0,607.38,12.3125,6639.0,130.3,4.05,0.09,1.85,0.09,,,1.4,0.245929,"11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,crowded; found in faint-star QLP search,4947,1,False,False,False -160476088,4948.01,,3,4,3,3,1,4,4,27.8,77.9,42.74,0,0,0,PC,PC,13.164,0.006,,1,qlp-s38-faintsearch,QLP,15:07:25.01,-45:09:34.54,-1.406,0.068,-3.801,0.048,2459360.065225,0.0018274,0.4722347,2e-06,1.074,0.187,3.926599,0.014585,3610.0,13.4332,7.34189,,4192.02,2241.0,13.0,608.062,11.6295,5827.0,122.0,4.37,,1.1,,,,1.05,,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; transit slightly difficult to see because period is folded on a multiple of the cadence,4948,1,False,False,False -401028336,4949.01,,3,4,3,3,3,4,4,64.6,81.6,317.0,3,0,1,PC,PC,12.4171,0.007,,1,qlp-s38-faintsearch,QLP,14:40:01.11,-62:22:39.81,-8.279,0.041,-4.645,0.056,2459356.989907,0.002382,1.7819156,8.7e-06,2.748,0.208,13.129617,0.013765,12020.0,12.6778,17.5347,1.02881,3451.71,2135.0,19.0,718.588,18.167,6955.0,140.2,4.22,0.09,1.58,0.07,,,1.52,0.265499,"11,12,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4949,1,False,False,False -245341495,4950.01,,3,4,3,3,3,4,4,18.7,59.5,98.26,1,0,1,PC,PC,11.997,0.006,,1,qlp-s38-faintsearch,QLP,13:18:52.24,-50:03:55.36,-12.902,0.08,-5.582,0.117,2459355.717367,0.00211,3.9358604,2.11e-05,4.341,0.468,4.907746,0.003316,4510.0,3.05384,12.0264,0.781008,2417.15,1953.0,24.0,776.949,34.915,6975.0,128.3,4.11,0.1,1.8,0.1,,,1.53,0.261607,"11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4950,1,False,False,False -448435566,4951.01,,3,4,3,3,3,4,4,15.8,44.8,74.48,0,0,1,PC,PC,11.8412,0.006,,1,qlp-s38-faintsearch,QLP,14:02:46.73,-70:22:52.24,0.008,0.042,-5.947,0.045,2459357.872468,0.0027884,4.1042587,2.3e-05,4.642,0.309,3.033438,0.002118,2790.0,1.95061,10.2079,0.584086,1000.26,1566.0,12.0,585.603,10.9545,5823.0,125.1,3.89,0.08,1.92,0.09,,,1.05,0.12978,"11,12,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4951,1,False,False,False -400073524,4952.01,,3,4,3,3,3,4,4,14.6,57.2,38.64,0,0,1,PC,PC,12.547,0.006,,1,qlp-s38-faintsearch,QLP,11:02:52.13,-67:13:53.46,-11.18,0.039,-0.568,0.035,2459359.897927,0.0025781,0.6534841,3.6e-06,0.988,0.18,2.14101,0.009562,1970.0,8.80672,6.94706,0.564555,5084.28,2352.0,12.0,880.962,17.435,7540.0,135.8,4.31,0.08,1.53,0.06,,,1.74,0.284328,"10,11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4952,1,False,False,True -405571798,4953.01,,3,4,3,3,1,4,4,28.2,35.6,317.0,0,0,0,PC,PC,13.4571,0.007,,1,qlp-s38-faintsearch,QLP,12:47:02.35,-59:04:48.02,-8.147,0.029,-2.179,0.028,2459357.455769,0.0022874,2.9590176,1.83e-05,2.832,0.206,13.679229,0.01753,12520.0,16.1458,15.6559,,1209.71,1643.0,16.0,1022.81,26.475,6808.0,122.0,4.31,,1.4,,,,1.47,,"11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4953,1,False,False,False -147723246,4954.01,,3,4,3,3,3,4,4,22.2,39.3,317.0,1,0,1,PC,PC,12.69,0.012,,1,qlp-s38-faintsearch,QLP,15:31:09.5,-53:46:37.84,-7.561,0.051,-4.308,0.045,2459352.202579,0.0029623,6.6819653,4.13e-05,4.357,0.195,9.925429,0.007466,9100.0,6.87651,14.6987,0.627655,2766.53,2020.0,16.0,886.651,22.235,10126.0,295.4,4.49,0.06,1.51,0.05,,,2.6,0.335186,"12,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4954,1,False,False,False -188865842,4955.01,,3,4,3,3,1,4,4,25.3,78.1,67.94,0,0,0,PC,PC,13.3356,0.006,,1,qlp-s38-faintsearch,QLP,15:34:56.41,-48:32:46.93,-39.771,0.064,-28.146,0.048,2459359.920886,0.0027674,3.1409607,3.88e-05,1.284,0.406,11.647053,0.151073,10670.0,139.134,9.6232,,77.0719,825.0,9.0,367.517,4.6855,4924.0,122.0,4.5,,0.83,,,,0.81,,"12,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,crowded; found in faint-star QLP search,4955,1,False,False,False -8005485,4956.01,,3,4,3,3,1,4,4,24.4,80.9,108.24,4,0,0,PC,PC,13.3624,0.007,,1,qlp-s38-faintsearch,QLP,15:38:06.14,-30:32:03.29,8.21,0.055,3.415,0.043,2459356.229775,0.0023114,5.1087099,0.0009549,1.011,0.184,17.755027,0.120315,16220.0,110.808,12.7621,,28.5078,643.0,14.0,572.058,12.6855,5770.0,122.0,4.52,,0.93,,,,1.03,,38,2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4956,1,False,False,False -412485680,4957.01,,3,4,3,3,3,4,4,22.3,24.9,317.0,1,0,1,PC,PC,11.9955,0.008,,1,qlp-s38-faintsearch,QLP,12:52:20.18,-54:13:42.45,-16.449,0.07,-1.797,0.056,2459358.370512,0.0015636,4.6622996,2e-05,3.382,0.194,4.144555,0.002716,3810.0,2.50108,15.6435,1.06039,778.408,1471.0,30.0,914.534,43.7285,6870.0,133.9,3.82,0.1,2.48,0.15,,,1.49,0.258758,"11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4957,1,False,False,False -457649900,4958.01,,3,4,3,3,3,4,4,0.8,24.4,317.0,0,0,1,PC,PC,10.7546,0.006,,1,qlp-s38-faintsearch,QLP,14:31:59.73,-51:04:27.98,-27.343,0.085,-10.574,0.066,2458606.970698,0.0063809,748.8277169,0.0057585,5.812,0.676,2.355343,1.313471,2167.0,1209.02,21.1132,8.14178,0.530165,237.0,15.0,477.519,8.437,6713.0,137.6,3.94,0.09,2.11,0.1,,,1.43,0.257324,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,period likely several times shorter than max period of ~748.8 days; found in faint-star QLP search,4958,1,False,False,False -290337456,4959.01,,3,4,3,3,1,4,4,19.5,52.9,125.0,0,0,0,PC,PC,13.3895,0.007,,1,qlp-s38-faintsearch,QLP,15:37:07.99,-45:26:21.98,-3.429,0.113,-1.285,0.077,2459357.533033,0.0038728,4.6011828,5.1e-05,3.476,0.346,12.360628,0.022917,11320.0,21.1075,13.7898,,545.801,1346.0,11.0,911.483,50.2545,6183.0,122.0,4.21,,1.4,,,,1.18,,"12,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4959,1,False,False,False -329672278,4960.01,,3,4,3,3,3,4,4,52.4,74.0,317.0,1,0,1,PC,PC,10.7133,0.008,,1,qlp-s38-faintsearch,QLP,14:06:30.67,-63:03:11.83,-23.922,0.035,-10.052,0.052,2459357.496025,0.0017834,4.0557174,2.46e-05,1.615,0.229,4.613309,0.012004,4240.0,11.0564,16.4885,0.986089,481.002,1304.0,12.0,520.445,10.0425,6664.3,489.7,3.81,0.65,2.2,0.08,,,1.97,0.292504,"1,2,3,4,5,6,7,8,9,10,11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4960,1,False,False,False -420202798,4961.01,,3,4,4,3,3,4,4,31.6,121.1,84.68,2,1,1,PC,PC,11.6602,0.006,,1,qlp-s38-faintsearch,QLP,12:50:00.45,-59:53:30.96,2.975,0.04,-17.996,0.042,2459353.799895,0.0009715,7.4791873,2e-05,3.126,0.114,13.855164,0.004018,12680.0,3.70096,11.0113,0.704087,70.1254,806.0,61.0,213.073,1.3625,5078.0,129.2,4.39,0.08,0.97,0.06,,,0.85,0.0967173,"11,37,38",2021-12-21,2021-12-21,2023-06-28 00:00:00,found in faint-star QLP search,4961,1,False,False,False -210681065,4962.01,,3,4,3,3,3,4,4,42.8,65.4,317.0,0,0,1,PC,PC,12.6445,0.006,,1,qlp-s38-faintsearch,QLP,14:10:27.41,-56:58:56.62,-4.874,1.118,-0.818,1.118,2459359.714227,0.0026802,2.074205,1.04e-05,2.806,0.48,8.885006,0.017649,8150.0,16.255,,,4122.6,2232.0,19.0,1175.45,,6987.0,325.1,,,,,,,,,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,4962,1,False,False,False -407827885,4963.01,,3,4,3,3,1,4,4,,,52.1,0,0,0,PC,PC,13.1009,0.006,,1,qlp-s38-faintsearch,QLP,14:13:37.29,-57:59:59.15,-8.891,2.969,-16.682,2.969,2459358.024906,0.0116243,2.365766,0.0020713,4.298,0.62,6.261001,0.030767,5750.0,28.337,,,661.313,1412.0,9.0,,,4057.4,544.6,,,,,,,,,38,2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius; host star may be evolved,4963,1,False,False,False -406443564,4964.01,,5,5,5,5,5,5,5,108.9,148.0,317.0,0,0,0,PC,FP,13.2364,0.006,,1,qlp-s38-faintsearch,QLP,13:12:23.46,-58:45:12.25,-13.191,0.024,-6.777,0.027,2459359.320018,0.0013318,1.1167145,4.3e-06,1.817,0.13,13.998131,0.800836,12810.0,737.325,20.4041,,7730.28,2612.0,30.0,760.606,12.1755,6611.0,122.0,4.41,,1.22,,,,1.38,,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search; large but could be inflated at period,4964,1,False,False,False -129890791,4965.01,,3,4,3,3,3,4,4,12.1,38.9,65.72,0,0,1,PC,PC,11.4543,0.006,,1,qlp-s38-faintsearch,QLP,14:50:26.01,-45:41:08.77,13.032,0.081,-7.299,0.077,2459355.756466,0.0066854,7.0857491,7.62e-05,5.047,0.589,2.420631,0.004925,2227.0,4.53632,9.46717,0.68614,384.263,1233.0,11.0,484.805,10.6155,5353.0,105.8,4.29,2.0,1.98,0.11,,,1.0,0.124038,"1,2,3,4,5,6,7,8,9,10,11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; only one odd transit which is messy; could have Px2,4965,1,False,False,False -295507430,4966.01,,3,4,3,3,3,4,4,8.6,23.2,76.87,0,0,1,PC,PC,11.9852,0.006,,1,qlp-s38-faintsearch,QLP,11:25:00.54,-66:29:16.98,-13.151,0.044,7.883,0.038,2459349.967054,0.0073882,7.3136902,0.0001326,5.53,0.6,1.60808,0.004359,1480.0,4.01471,10.3927,0.804219,425.471,1265.0,11.0,738.075,13.3155,5654.0,129.7,3.58,0.08,2.68,0.14,,,1.0,0.123516,"10,11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4966,1,False,False,False -243476396,4967.01,,3,4,3,3,1,4,4,34.6,76.9,75.9,1,0,0,PC,PC,13.2313,0.006,,1,qlp-s38-faintsearch,QLP,13:44:01.48,-42:48:49.16,-15.638,0.051,-12.761,0.05,2459359.528372,0.0022361,0.5979368,2.2e-06,1.018,0.204,4.090062,0.0176,3760.0,16.2098,10.3319,,2472.04,1964.0,13.0,821.066,18.8305,5812.0,122.0,4.18,,1.38,,,,1.05,,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4967,1,False,False,False -253961767,4968.01,,3,4,3,3,3,4,4,34.8,34.8,317.0,0,0,1,PC,PC,12.5808,0.007,,1,qlp-s38-faintsearch,QLP,13:16:37.08,-59:01:49.85,-12.487,0.026,-2.716,0.031,2459357.459034,0.0028245,2.2348054,0.0004827,3.324,0.123,7.911197,0.006001,7260.0,5.52709,14.6123,0.81733,2834.64,2032.0,20.0,781.768,16.423,6731.0,139.6,4.11,0.09,1.75,0.08,,,1.43,0.236306,38,2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4968,1,False,False,False -406106335,4969.01,,3,4,3,3,3,4,4,21.2,59.3,122.42,0,0,1,PC,PC,12.8132,0.006,,1,qlp-s38-faintsearch,QLP,13:10:11.16,-54:13:07.81,-13.343,0.045,-4.016,0.033,2459358.240883,0.0020289,3.0773658,2.25e-05,3.579,0.17,5.595076,0.005167,5140.0,4.75932,13.6438,0.734251,2446.41,1959.0,23.0,1019.68,23.788,7277.0,138.2,4.17,0.09,1.75,0.08,,,1.64,0.275583,"11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4969,1,False,False,False -359523751,4970.01,,3,4,3,3,3,4,4,22.7,80.1,94.12,3,0,1,PC,PC,12.365,0.007,,1,qlp-s38-faintsearch,QLP,13:24:57.52,-57:44:01.8,-4.281,0.051,-7.984,0.06,2459357.905176,0.0043004,4.8397625,0.0017762,3.244,0.316,9.6844,0.018522,8880.0,17.059,11.6978,0.782057,647.154,1405.0,15.0,583.541,12.8625,6859.0,132.7,4.4,0.08,1.27,0.06,,,1.49,0.245956,38,2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4970,1,False,False,False -453942180,4971.01,,3,4,3,3,3,4,4,,,29.28,0,0,1,PC,PC,11.9736,0.006,,1,qlp-s38-faintsearch,QLP,10:17:05.66,-68:53:01.43,,,,,2459355.694879,0.0026936,7.9674915,5.35e-05,3.374,0.346,3.174987,0.003957,2920.0,3.64487,,,84.3794,844.0,20.0,,,5058.2,326.5,,,,,,,,,"10,11,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,4971,1,False,False,False -149585119,4972.01,,3,4,3,3,3,4,4,30.6,75.1,112.75,1,0,1,PC,PC,13.1773,0.006,,1,qlp-s38-faintsearch,QLP,15:31:59.04,-40:38:07.87,-13.674,0.053,-12.207,0.032,2459355.969484,0.001615,2.6492703,1.25e-05,2.42,0.147,11.526341,0.008821,10560.0,8.12476,12.9788,,560.52,1355.0,20.0,677.826,11.296,5743.0,122.0,4.25,,1.25,,,,1.03,,"12,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4972,1,False,False,False -397522142,4973.01,,3,4,3,3,3,4,4,34.4,161.8,66.59,2,0,1,PC,PC,10.7271,0.006,,1,qlp-s38-faintsearch,QLP,10:34:17.98,-71:12:15.09,0.63,0.044,-4.745,0.039,2459354.079175,0.0004803,7.9486299,9.9e-06,1.29,0.229,6.905481,0.009976,6340.0,9.18865,9.54103,0.579988,34.816,676.0,34.0,178.064,0.7605,5742.0,124.0,4.51,0.08,0.93,0.05,0.00188596,0.0892368,1.03,0.128498,"10,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4973,1,False,False,False -148478039,4974.01,TIC 148478039.01,3,4,3,3,3,4,4,29.7,60.8,317.0,1,0,1,PC,PC,12.7126,0.006,,1,qlp-s38-faintsearch,QLP,15:21:17.4,-38:49:58.49,4.191,1.178,-3.627,1.178,2459348.686501,0.0016059,10.6006859,3.96e-05,3.663,0.157,17.799173,0.010192,16260.0,9.3875,,,107.932,897.0,33.0,782.916,,6303.2,496.1,,,,,,,,,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,4974,1,False,False,False -304085024,4975.01,,3,4,3,3,1,4,4,9.7,52.1,32.12,0,0,0,PC,PC,12.967,0.019,,1,qlp-s38-faintsearch,QLP,09:24:12.28,-67:41:01.33,-0.475,3.088,19.258,3.088,2459355.370186,0.0027259,4.4834145,2.54e-05,2.363,0.252,5.234991,0.006961,4810.0,6.41111,,,,,15.0,612.156,,,,,,,,,,,,"9,10,11,36,37,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius or Teff,4975,1,False,False,False -210629725,4976.01,,3,4,3,3,1,4,4,16.8,49.4,83.78,0,0,0,PC,PC,13.3665,0.007,,1,qlp-s38-faintsearch,QLP,14:10:49.88,-54:17:51.15,-2.558,0.055,-0.542,0.065,2459357.471434,0.0064187,3.027103,3.95e-05,3.964,0.575,6.807146,0.019928,6250.0,18.3543,10.9691,,1882.44,1835.0,12.0,802.781,19.0945,6275.0,122.0,4.24,,1.39,,,,1.22,,"11,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4976,1,False,False,False -68081952,4977.01,,3,4,4,3,3,4,4,40.9,62.7,317.0,3,0,1,PC,PC,12.5156,0.006,,1,qlp-s38-faintsearch,QLP,12:53:50.57,-54:20:45.47,-45.068,0.038,14.374,0.03,2459355.338541,0.00056,7.7023687,8.6e-06,2.321,0.167,30.063872,0.009009,27310.0,8.29714,14.6181,0.872631,44.8696,721.0,93.0,294.629,3.632,5333.0,128.6,4.55,0.08,0.85,0.05,,,0.92,0.116953,"11,37,38",2021-12-21,2021-12-21,2023-07-12 00:00:00,found in faint-star QLP search,4977,1,False,False,False -145204443,4978.01,,3,4,3,3,3,4,4,36.6,47.6,317.0,2,0,1,PC,PC,12.2913,0.008,,1,qlp-s38-faintsearch,QLP,15:19:53.59,-45:43:04.8,-8.053,0.221,-4.195,0.183,2459357.613735,0.0030552,4.7190303,0.0013827,1.538,0.485,7.408223,0.438676,6800.0,403.954,17.051,4.17738,292.335,1151.0,14.0,719.916,61.885,6389.0,137.3,4.07,0.11,1.73,0.17,,,1.28,0.193723,38,2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4978,1,False,False,False -311736478,4979.01,,3,4,3,3,3,4,4,14.5,62.9,24.8,0,0,1,PC,PC,10.5895,0.006,,1,qlp-s38-faintsearch,QLP,12:05:54.17,-71:35:10.18,-18.785,0.056,4.696,0.044,2459354.245025,0.0086992,3.6305988,5.45e-05,2.303,0.623,0.619046,0.222236,570.0,204.666,5.32844,2.09033,2058.82,1876.0,9.0,182.678,1.042,5156.0,127.0,4.14,0.09,1.31,0.08,,,0.87,0.104636,"11,12,38",2021-12-21,2021-12-21,2022-12-14 12:09:24,found in faint-star QLP search,4979,1,False,False,False -200435203,4980.01,,3,4,3,3,1,4,4,,,104.42,1,0,0,PC,PC,12.9331,0.006,,1,qlp-s32-faintsearch,QLP,04:41:38.77,-45:29:05.53,-3.871,3.387,0.949,3.387,2459187.422226,0.0014526,16.1565078,4.29e-05,1.814,0.391,14.24012,0.029739,13030.0,27.3905,,,7.84717,466.0,26.0,,,5215.0,200.9,,,,,,,,,"4,5,31,32",2022-01-05,2022-01-05,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,4980,1,False,False,False -14029793,4981.01,,3,4,3,3,3,4,4,129.7,263.6,98.16,0,0,1,PC,PC,12.4813,0.006,,1,qlp-s32-faintsearch,QLP,05:05:47.17,-38:51:52.71,7.82,0.034,6.999,0.045,2459199.878456,0.0008661,0.2097217,4e-07,0.25,0.06,1.358019,1.564554,1250.0,1439.97,11.9597,4.55719,6373.11,2489.0,18.0,505.695,5.3265,6046.0,128.3,4.42,0.08,1.08,0.05,,,1.12,0.150034,"5,6,31,32",2022-01-05,2022-01-05,2022-12-14 12:09:24,found in faint-star QLP search; short period duration (~5 hours),4981,1,False,False,False -46627476,4982.01,,3,4,3,3,1,4,4,29.3,30.3,317.0,4,0,0,PC,PC,13.3495,0.007,,1,qlp-s32-faintsearch,QLP,05:40:02.71,-17:33:50.71,-0.398,0.029,8.184,0.033,2459197.858888,0.0014685,2.5665666,8.4e-06,3.177,0.183,9.881602,0.00447,9060.0,4.1166,15.79,,1270.4,1663.0,27.0,1068.73,20.95,6020.0,122.0,4.09,,1.57,,,,1.11,,"6,32",2022-01-05,2022-01-05,2022-12-14 12:09:24,found in faint-star QLP search,4982,1,False,False,False -80137654,4983.01,,3,4,3,3,1,4,4,66.5,327.6,317.0,0,0,0,PC,PC,13.01,0.166,,1,qlp-s33-faintsearch,QLP,07:00:35.8,-20:33:53.1,,,,,2459219.069151,0.0041786,5.7527363,4.63e-05,5.075,1.011,14.174118,0.023213,12970.0,21.3794,,,795.35,1479.0,24.0,1403.22,,5951.0,526.5,,,,,,,,,"6,7,33",2022-01-05,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius; likely inflated Jupiter at insolation; negative plx from Gaia,4983,1,False,False,False -177391159,4984.01,,3,4,3,3,3,4,4,15.5,51.5,112.53,0,2,1,PC,PC,12.4373,0.006,,1,qlp-s33-faintsearch,QLP,07:04:14.51,-00:22:02.3,,,,,2459226.755662,0.0033211,3.6748618,2.62e-05,4.042,0.345,3.251214,0.003583,2990.0,3.29978,,,1164.16,1627.0,15.0,1211.61,,6084.3,342.3,,,,,,,,,"7,33",2022-01-05,2022-01-05,2022-12-14 12:09:24,found in faint-star QLP search,4984,1,False,False,False -294315741,4985.01,,5,5,5,5,5,5,5,93.5,294.9,317.0,2,0,1,PC,FP,13.3162,0.026,,1,qlp-s45-tois,QLP,06:12:23.02,12:50:18.97,0.484,0.05,-0.289,0.047,2459546.190637,0.001555,3.5678072,3.4e-05,2.968,0.176,19.356481,3.220353,17670.0,2961.66,34.7616,,4074.35,2225.0,45.0,1421.29,57.345,7819.0,123.0,4.24,,1.71,,,,1.86,,"33,43,44,45",2022-01-06,2022-03-11,2022-12-14 12:09:24,found in faint-star QLP search; likely inflated hot Jupiter,4985,1,False,False,False -5592720,4986.01,,3,4,4,3,3,4,4,29.1,49.0,317.0,2,0,1,PC,PC,12.8742,0.009,,1,qlp-s34-faintsearch,QLP,07:26:05.17,-06:04:56.88,-1.867,0.08,0.358,0.067,2459245.46046,0.0035391,6.5946181,4.18e-05,2.884,0.72,10.824281,0.029377,9920.0,27.0567,22.1605,2.2008,277.451,1137.0,12.0,1259.59,86.49,6345.0,125.1,3.89,0.11,2.12,0.18,,,1.26,0.193093,"7,34",2022-01-06,2022-01-06,2023-01-15 00:00:00,found in faint-star QLP search; large for period but likely inflated hot Jupiter,4986,1,False,False,False -293607057,4987.01,,3,4,3,3,4,4,4,62.6,96.1,317.0,6,30,3,PC,PC,10.6311,0.008,,1,qlp-s35-faintsearch,QLP,10:14:40.72,-15:38:34.21,-5.608,0.096,7.078,0.087,2459274.884918,0.0007494,4.2889696,6.7e-06,2.517,0.433,6.370208,0.0096,5850.0,8.8415,20.7112,1.29581,646.761,1404.0,61.0,589.423,16.164,6736.9,107.5,3.76,0.09,2.61,0.12,-0.209,0.0438178,1.44,0.249006,"9,35",2022-01-06,2022-01-06,2022-12-14 12:09:24,may have secondary but phased lightcurve has other bumps; found in faint-star QLP search,4987,1,False,False,False -445392860,4988.01,,3,4,3,3,1,4,4,127.1,177.1,317.0,1,0,0,PC,PC,14.881,0.008,,1,qlp-s35-faintsearch,QLP,07:29:50.45,-51:59:26.75,5.705,0.076,1.527,0.066,2459277.220975,1.03e-05,2.370138,9e-07,1.048,,51.322555,0.001553,46170.0,1.43078,23.9456,0.770942,40.6678,703.0,10.0,446.614,7.3195,3986.0,157.0,4.57,0.01,0.7,0.02,,,0.661524,0.0211177,35,2022-01-06,2022-01-06,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,4988,1,False,False,False -303385111,4989.01,,3,4,3,3,3,4,4,49.0,61.2,317.0,2,0,1,PC,PC,13.0413,0.006,,1,qlp-s39-faintsearch,QLP,17:07:11.97,-64:32:49.4,-6.471,0.022,-13.275,0.029,2459382.6896,0.0033107,3.429078,0.0008786,1.795,0.275,15.054477,0.037148,13770.0,34.214,21.1656,,185.229,1027.0,14.0,936.608,22.144,5654.0,122.0,3.91,,1.85,,,,1.0,,39,2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; likely irradiated hot Jupiter,4989,1,False,False,False -295312916,4990.01,,3,4,3,3,3,4,4,19.1,46.7,118.07,1,0,1,PC,PC,12.9123,0.006,,1,qlp-s39-faintsearch,QLP,18:03:06.58,-68:08:47,-0.057,0.022,-38.951,0.028,2459383.064288,0.0025328,5.6386197,2.68e-05,2.621,0.293,6.468504,0.00789,5940.0,7.26654,13.3798,0.88807,120.336,922.0,21.0,697.681,9.8965,5373.0,129.5,4.02,0.08,1.56,0.09,,,0.93,0.117261,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,4990,1,False,False,False -247180220,4991.01,,3,4,3,3,1,4,4,107.6,143.9,121.74,5,0,0,PC,PC,14.6594,0.007,,1,qlp-s39-faintsearch,QLP,16:54:48.07,-45:22:02.66,10.653,0.089,-3.027,0.071,2459385.804489,0.0035446,0.7702101,0.0002013,0.857,0.261,32.097296,0.567233,29130.0,522.304,13.5452,1.77753,120.256,922.0,11.0,343.755,7.594,3601.0,157.0,4.58,0.01,0.68,0.02,,,0.65198,0.0216018,39,2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; low SNR,4991,1,False,False,False -362111691,4992.01,,3,4,4,3,3,4,4,27.9,41.2,317.0,2,0,1,PC,PC,13.1812,0.006,,1,qlp-s39-faintsearch,QLP,16:19:25.16,-66:40:13.07,-5.638,0.018,-9.879,0.025,2459381.726318,0.0018076,4.8807474,1.99e-05,3.148,0.234,12.492416,0.009581,11440.0,8.82437,18.7724,,424.843,1264.0,26.0,1150.11,24.245,6356.0,122.0,4.08,,1.7,,,,1.26,,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,4992,1,False,False,False -360221713,4993.01,,3,4,3,3,3,4,4,17.3,35.5,108.25,0,0,1,PC,PC,12.782,0.006,,1,qlp-s39-faintsearch,QLP,17:29:15.42,-59:06:27.6,1.808,0.028,2.214,0.03,2459384.512135,0.0052144,3.1062522,3.76e-05,4.824,0.576,4.002879,0.007536,3680.0,6.94051,12.6882,0.966342,1415.95,1708.0,15.0,888.672,17.817,5369.0,127.2,3.75,0.08,2.13,0.12,,,0.93,0.110702,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,4993,1,False,False,False -277128619,4994.01,,3,4,3,3,3,4,4,6.9,47.2,61.07,4,0,1,PC,PC,11.9545,0.006,,1,qlp-s39-faintsearch,QLP,18:52:31.81,-78:26:03.95,1.03,0.032,9.964,0.043,2459363.698425,0.0017096,21.4921464,8.49e-05,4.199,0.211,6.490348,0.002299,5960.0,2.11749,9.09747,0.512649,22.7774,608.0,34.0,329.304,2.4985,5520.0,127.1,4.34,0.08,1.11,0.06,,,0.97,0.1204,"12,13,27,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,4994,1,False,False,False -294295243,4995.01,,3,4,3,3,3,4,4,7.7,30.7,58.8,0,0,1,PC,PC,11.8014,0.006,,1,qlp-s39-faintsearch,QLP,17:40:56.63,-69:26:36.52,1.57,0.031,-14.675,0.035,2459371.589355,0.0053688,8.7802662,8.5e-05,2.45,0.495,2.325965,0.006966,2140.0,6.4161,8.87975,0.666371,87.107,851.0,12.0,639.661,9.3675,6124.0,130.6,3.95,0.08,1.88,0.09,,,1.16,0.148969,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,4995,1,False,False,False -384709136,4996.01,,3,4,3,3,1,4,4,18.5,20.4,317.0,0,0,0,PC,PC,12.7523,0.006,,1,qlp-s39-faintsearch,QLP,17:10:27.12,-81:42:29.85,1.884,0.027,1.124,0.028,2459387.911786,0.0027316,4.8131406,2.43e-05,4.932,0.283,5.475034,0.002555,5030.0,2.35346,15.2753,0.792837,1074.75,1595.0,27.0,1058.39,16.97,6287.0,126.9,3.88,0.09,2.1,0.1,,,1.23,0.181266,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,4996,1,False,False,False -340624586,4997.01,,3,4,3,3,3,4,4,,,37.61,0,0,1,PC,PC,11.1281,0.006,,1,qlp-s39-faintsearch,QLP,15:52:57.96,-63:51:38.13,,,,,2459381.134323,0.0061362,13.3178839,0.0001588,4.344,1.078,4.26445,0.012932,3920.0,11.9104,,,261.545,1120.0,18.0,,,7295.5,117.2,,,,,,,,,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,4997,1,False,False,False -76228620,4998.01,,3,4,3,3,3,4,4,13.8,63.9,60.91,7,0,1,PC,PC,11.2723,0.006,,1,qlp-s39-faintsearch,QLP,17:56:59.33,-55:47:16.59,-7.307,0.07,-12.645,0.074,2459378.907088,0.001704,9.7800223,3.31e-05,4.245,0.376,4.72235,0.002871,4340.0,2.64462,9.06075,0.48984,187.783,1031.0,31.0,352.331,4.53,6113.0,130.3,4.25,0.08,1.33,0.06,,,1.15,0.154885,"13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,4998,1,False,False,False -33227166,4999.01,,3,4,3,3,3,4,4,17.9,54.9,64.08,0,0,1,PC,PC,10.8235,0.006,,1,qlp-s39-faintsearch,QLP,17:46:30.94,-43:22:28.18,-14.791,0.072,-20.373,0.06,2459377.221706,0.0053024,5.5846356,0.0036282,5.066,0.511,2.413014,0.003719,2220.0,3.42511,9.33343,0.619178,624.784,1392.0,14.0,368.89,5.7405,5698.0,127.6,3.84,0.08,1.99,0.1,,,1.01,0.125611,39,2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,4999,1,False,False,False -179230828,5000.01,,3,4,3,3,3,4,4,38.7,48.9,317.0,2,0,1,PC,PC,12.6702,0.006,,1,qlp-s36-179230828,QLP,10:34:24,-23:44:02.62,0.288,2.166,-11.5,2.166,2459302.141318,0.0013085,5.5422295,1.37e-05,2.556,0.295,16.310224,0.293019,14910.0,269.844,14.7328,,271.918,,32.0,470.92,,5483.0,,,,1.02,,,,,,"9,36",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; potential multi,5000,1,True,False,False -179230828,5000.02,,3,4,3,3,3,4,4,11.5,59.2,95.08,2,0,1,PC,PC,12.6702,0.006,,2,qlp-s36-179230828,QLP,10:34:24,-23:44:02.62,0.288,2.166,-11.5,2.166,2459285.959527,0.0019011,15.3392841,7.22e-05,2.933,0.549,14.10812,0.026925,12910.0,24.7989,11.7705,,26.88,,28.0,470.92,,5483.0,,,,1.02,,,,,,"9,36",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; potential multi,5000,2,True,False,False -95709395,5001.01,,3,4,3,3,3,4,4,24.5,77.6,115.9,1,0,1,PC,PC,12.1641,0.007,,1,qlp-s39-faintsearch,QLP,16:13:36.86,-33:29:47.38,-1.582,0.109,-2.587,0.058,2459379.729414,0.0021146,5.069043,2.19e-05,4.185,0.321,8.906899,0.004838,8170.0,4.45559,13.2155,0.802792,939.466,1542.0,33.0,632.346,22.88,6763.0,135.7,4.24,0.1,1.51,0.08,,,1.45,0.248583,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5001,1,False,False,False -418471116,5002.01,,3,4,3,3,1,4,4,22.8,62.3,117.86,1,0,0,PC,PC,13.4479,0.006,,1,qlp-s39-faintsearch,QLP,13:41:11.65,-78:52:57.75,-10.403,0.031,-6.479,0.031,2459383.94915,0.0015687,3.7318818,1.26e-05,3.231,0.176,11.844612,0.00418,10850.0,3.84999,13.3208,,653.055,1408.0,28.0,847.863,16.452,6129.0,122.0,4.32,,1.23,,,,1.16,,"11,12,38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5002,1,False,False,False -301900477,5003.01,,3,4,3,3,3,4,4,37.5,120.7,101.04,1,0,1,PC,PC,11.8406,0.006,,1,qlp-s39-faintsearch,QLP,17:18:47.84,-66:20:54.18,1.176,0.037,-14.967,0.042,2459388.445535,0.0009068,4.4540914,1.03e-05,1.16,0.197,10.68173,0.025562,9790.0,23.5434,12.2601,0.844672,70.3253,806.0,24.0,404.148,5.5625,6188.0,133.8,4.41,0.08,1.13,0.05,,,1.18,0.163954,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5003,1,False,False,False -384386062,5004.01,,3,4,3,3,1,4,4,16.9,64.9,72.74,0,0,0,PC,PC,13.0071,0.006,,1,qlp-s39-faintsearch,QLP,16:37:27.93,-80:58:31.02,-21.803,0.028,-25.371,0.032,2459380.933567,0.0035142,5.7626113,3.61e-05,4.004,0.799,9.498187,0.172129,8710.0,158.524,10.0697,,692.871,1429.0,29.0,446.494,3.801,5470.0,122.0,4.45,,0.97,,,,0.96,,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5004,1,False,False,False -282485660,5005.01,,3,4,3,3,3,4,4,13.0,77.9,30.33,1,0,1,PC,PC,11.13,0.006,,1,qlp-s39-faintsearch,QLP,15:52:25.97,-48:08:42.36,-7.626,0.091,-24.688,0.062,2459377.175525,0.0023907,6.3084728,3.53e-05,2.871,0.344,4.013777,0.004721,3690.0,4.3484,6.00429,0.358546,174.188,1012.0,22.0,207.891,1.978,5840.0,125.0,4.48,0.08,0.97,0.05,,,1.05,0.132959,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5005,1,False,False,False -449107129,5006.01,,3,4,3,3,3,4,4,14.8,19.8,317.0,0,0,1,PC,PC,11.9055,0.007,,1,qlp-s39-faintsearch,QLP,14:25:53.09,-69:50:09.06,-8.182,0.046,-4.801,0.05,2459386.202615,0.0032531,4.254955,2.75e-05,4.228,0.913,2.576249,0.003362,2370.0,3.09684,14.4712,0.925754,5255.5,2372.0,23.0,1340.01,54.355,8653.0,170.6,3.85,0.08,2.88,0.15,,,2.16,0.323413,"11,12,38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5006,1,False,False,False -424196109,5007.01,,3,4,4,3,1,4,4,47.2,117.3,78.83,5,0,0,PC,PC,13.6366,0.007,,1,qlp-s39-faintsearch,QLP,15:44:15.33,-61:02:28.91,-13.454,0.043,-29.894,0.048,2459384.64412,0.0034489,2.5432595,0.0006815,1.12,0.237,23.376029,0.171064,21300.0,157.543,10.6224,0.958412,23.828,615.0,10.0,203.352,1.235,3757.0,157.0,4.61,0.01,0.66,0.02,,,0.631249,0.0202704,39,2022-01-06,2022-01-06,2023-05-03 00:00:00,found in faint-star QLP search; crowded field; slight depth aperture,5007,1,False,False,False -150531994,5008.01,,3,4,3,3,3,4,4,31.2,91.5,75.89,0,0,1,PC,PC,12.9499,0.006,,1,qlp-s39-faintsearch,QLP,17:44:31.06,-39:59:36.59,2.532,0.053,-4.484,0.043,2459386.624188,0.0077597,2.7702532,0.0015413,3.748,0.387,11.778755,0.023248,10790.0,21.4117,10.2658,0.781612,840.782,1500.0,11.0,379.594,5.9475,5183.0,128.5,4.43,0.09,0.94,0.06,,,0.88,0.104859,39,2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5008,1,False,False,False -463781038,5009.01,,3,4,3,3,3,4,4,14.9,25.2,317.0,1,0,1,PC,PC,11.9032,0.022,,1,qlp-s39-faintsearch,QLP,17:25:10.65,-40:35:00.5,-0.322,0.083,-0.447,0.063,2459385.304236,0.008697,8.1755735,0.0002297,7.683,1.056,3.120543,0.008501,2870.0,7.82951,17.9327,1.50922,4574.7,2291.0,12.0,1324.39,82.64,9169.0,345.5,3.73,0.07,3.44,0.21,,,2.32,0.323838,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; likely irradiated hot Jupiter,5009,1,False,False,False -276735500,5010.01,,3,4,4,3,1,4,4,16.6,59.4,111.15,3,0,0,PC,PC,14.6681,0.007,,1,qlp-s39-faintsearch,QLP,18:01:21.75,-79:21:11.21,7.888,0.043,-32.317,0.054,2459376.396983,0.0025282,6.7107895,0.0025424,1.377,0.306,32.365724,0.235156,29370.0,216.563,12.843,1.20778,6.07437,437.0,10.0,420.252,5.551,3980.0,157.0,4.57,0.01,0.7,0.02,,,0.666186,0.0208486,39,2022-01-06,2022-01-06,2023-05-05 00:00:00,found in faint-star QLP search,5010,1,False,False,False -418298773,5011.01,,3,4,3,3,1,4,4,16.8,56.0,38.13,0,0,0,PC,PC,13.4962,0.006,,1,qlp-s39-faintsearch,QLP,13:09:26.82,-81:57:46.64,-43.799,0.03,-4.25,0.028,2459386.603449,0.0019478,2.6060495,1.16e-05,1.565,0.226,5.595076,0.014732,5140.0,13.5687,6.89719,,99.3507,879.0,13.0,288.015,1.4225,4471.0,122.0,4.49,,0.79,,,,0.7,,"11,38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5011,1,False,False,False -245728942,5012.01,,3,4,3,3,3,4,4,37.1,61.4,317.0,1,0,1,PC,PC,11.4302,0.014,,1,qlp-s39-faintsearch,QLP,16:48:51.58,-44:13:10.78,0.012,0.094,-2.527,0.062,2459384.614713,0.0023799,4.18438,2.36e-05,2.146,0.284,4.079164,0.008828,3750.0,8.13127,14.8687,0.763232,2440.51,1958.0,17.0,729.115,25.8505,10708.0,435.8,4.36,0.07,1.82,0.06,,,2.78,0.385433,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5012,1,False,False,False -287494667,5013.01,,3,4,3,3,3,4,4,9.3,27.9,119.87,0,0,1,PC,PC,12.7482,0.006,,1,qlp-s39-faintsearch,QLP,08:14:31.88,-72:14:42.02,-3.652,0.026,1.351,0.025,2459382.230579,0.002135,8.989491,3.24e-05,1.43,0.28,3.14232,0.005906,2890.0,5.43986,13.4707,0.828681,40.9859,704.0,17.0,1224.74,19.89,6620.0,129.8,3.89,0.09,2.21,0.1,,,1.39,0.230623,"2,3,5,6,9,10,11,12,13,29,30,32,33,35,36,37,38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5013,1,False,False,True -362032529,5014.01,,3,4,3,3,3,4,4,9.9,31.9,50.92,0,0,1,PC,PC,12.4073,0.006,,1,qlp-s39-faintsearch,QLP,16:18:48.67,-68:39:45.83,3.081,0.029,-5.359,0.041,2459388.137789,0.0049732,3.4507193,6.55e-05,3.498,0.6,2.467423,0.007289,2270.0,6.71331,8.16973,0.65939,830.757,1495.0,10.0,677.476,13.071,5712.0,137.1,3.99,0.08,1.7,0.09,,,1.02,0.12527,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5014,1,False,False,False -221656234,5015.01,,3,4,3,3,3,4,4,48.8,51.9,317.0,1,0,1,PC,PC,12.491,0.007,,1,qlp-s39-faintsearch,QLP,16:21:05.54,-43:13:21.67,-11.939,0.059,3.107,0.034,2459384.648481,0.0017453,2.4533968,1.13e-05,3.425,0.244,9.585813,0.006872,8790.0,6.32972,16.1215,0.906705,2024.13,1868.0,23.0,637.121,11.521,6333.0,136.4,4.07,0.08,1.7,0.08,,,1.25,0.181591,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5015,1,False,False,False -68322189,5016.01,,5,5,5,5,5,5,5,288.4,380.2,317.0,2,0,1,PC,FP,12.5209,0.006,,1,qlp-s39-faintsearch,QLP,15:44:38.2,-58:07:41.93,-43.092,0.029,-26.992,0.028,2459385.759712,0.0020694,1.2833689,5.7e-06,2.592,0.141,22.034526,3.236785,20090.0,2976.75,23.5753,6.22337,5124.73,2357.0,32.0,365.511,2.88,5442.0,131.8,4.4,0.08,1.01,0.06,,,0.95,0.123269,"12,39",2022-01-06,2022-01-06,2023-05-11 12:03:13,found in faint-star QLP search; v-shaped; crowded field,5016,1,False,False,True -302054555,5017.01,,3,4,3,3,3,4,4,16.0,34.0,107.02,0,0,1,PC,PC,12.4698,0.006,,1,qlp-s39-faintsearch,QLP,17:20:04.07,-67:26:40.6,-3.185,0.028,-3.921,0.038,2459384.729363,0.0031689,3.3677179,2.24e-05,5.049,0.308,3.338337,0.002403,3070.0,2.21315,12.6215,0.86585,1495.44,1732.0,17.0,872.49,20.3085,5575.2,133.0,3.71,0.08,2.3,0.14,-0.0377194,0.0780943,0.98,0.123531,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5017,1,False,False,False -294691204,5018.01,TIC 294691204.01,3,4,3,3,3,4,4,6.3,34.9,30.05,0,0,1,PC,PC,11.576,0.006,,1,qlp-s39-faintsearch,QLP,17:48:50.05,-67:03:30.48,10.994,0.03,-3.068,0.039,2459380.063674,0.0035485,6.5859565,4.69e-05,1.553,0.701,1.705945,0.022785,1570.0,20.986,5.98453,0.764577,111.468,905.0,10.0,459.435,5.6815,6353.0,137.4,4.24,0.09,1.41,0.07,,,1.26,0.197465,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5018,1,False,False,False -420829332,5019.01,,3,4,3,3,3,4,4,34.8,93.6,59.54,0,0,1,PC,PC,12.6345,0.006,,1,qlp-s39-faintsearch,QLP,16:46:30.47,-55:15:45.33,-4.79,0.036,-7.517,0.037,2459385.957383,0.0031225,1.090295,7.9e-06,1.895,0.685,5.704216,0.102018,5240.0,93.9578,8.96609,1.32215,3593.4,2156.0,13.0,453.404,5.6825,5479.0,136.5,4.31,0.08,1.14,0.07,,,0.96,0.119744,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5019,1,False,False,False -310266243,5020.01,,3,4,3,3,3,4,4,8.1,23.2,96.1,0,0,2,PC,PC,13.3298,0.006,,1,qlp-s39-faintsearch,QLP,16:45:16.89,-76:09:59.89,4.073,0.023,-0.523,0.032,2459387.587844,0.0185775,5.3450209,0.0001725,5.64,1.337,3.970187,0.016322,3650.0,15.0332,11.8547,,1370.06,1694.0,11.0,1440.15,35.105,6279.0,122.0,3.91,,2.04,,,,1.23,,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5020,1,False,False,False -403405969,5021.01,,3,4,3,3,1,4,4,6.7,28.6,96.58,2,0,0,PC,PC,13.2565,0.006,,1,qlp-s39-faintsearch,QLP,15:20:25.47,-77:21:31.89,0.529,0.022,-5.304,0.027,2459384.238317,0.0075013,12.975062,0.0001791,6.124,0.717,6.763444,0.013217,6210.0,12.1729,11.8674,,266.841,1125.0,13.0,1041.69,15.98,6480.9,85.1,4.2,,1.5,,-0.183404,0.0878402,1.32,,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5021,1,False,False,False -208772468,5022.01,,3,4,4,3,3,4,4,50.9,114.5,121.74,3,0,1,PC,PC,13.1509,0.006,,1,qlp-s39-faintsearch,QLP,16:20:51.84,-57:38:29.74,2.49,0.034,3.71,0.03,2459385.707127,0.0034277,2.244541,0.000512,2.1,0.201,18.781895,0.023698,17150.0,21.8261,13.6382,,465.777,1294.0,19.0,488.161,5.657,5455.0,122.0,4.39,,1.03,,,,0.95,,39,2022-01-06,2022-01-06,2023-05-04 00:00:00,found in faint-star QLP search,5022,1,False,False,False -213111428,5023.01,,3,4,3,3,1,4,4,152.3,233.1,317.0,2,0,0,PC,PC,14.9582,0.008,,1,qlp-s39-faintsearch,QLP,17:08:29.7,-51:31:53.98,-6.874,0.152,-60.621,0.143,2459386.471282,1.73e-05,2.2749988,9e-07,0.632,,77.392582,0.001444,68800.0,1.32978,17.0496,0.531341,4.17143,398.0,9.0,119.693,1.113,3199.0,157.0,4.9,,0.32,0.01,,,0.30088,0.0204413,39,2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5023,1,False,False,False -344130921,5024.01,,3,4,3,3,3,4,4,5.8,27.7,74.96,1,0,1,PC,PC,12.9267,0.006,,1,qlp-s39-faintsearch,QLP,18:36:22.95,-77:22:33.42,-2.241,0.021,-6.312,0.029,2459368.639064,0.0046885,14.7765802,0.0001221,4.996,0.434,5.038632,0.005769,4630.0,5.31379,10.2309,0.587635,119.223,920.0,16.0,829.942,9.7915,6247.0,127.0,4.19,0.08,1.46,0.07,,,1.21,0.178954,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5024,1,False,False,False -217838717,5025.01,,3,4,3,3,3,4,4,45.0,70.1,317.0,4,0,1,PC,PC,12.3666,0.008,,1,qlp-s39-faintsearch,QLP,17:25:27.64,-46:59:16.91,2.395,0.073,-5.187,0.064,2459384.454284,0.001378,2.8846592,7.7e-06,2.783,0.163,14.075122,0.005154,12880.0,4.74726,16.5935,0.853853,2563.35,1982.0,30.0,803.602,28.987,8219.0,145.9,4.44,0.08,1.42,0.07,,,2.01,0.297809,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5025,1,False,False,False -161247580,5026.01,,3,4,3,3,3,4,4,27.4,83.8,83.62,1,0,1,PC,PC,11.831,0.006,,1,qlp-s39-faintsearch,QLP,17:27:47.24,-33:09:47.31,-6.167,2.103,-9.804,2.103,2459383.306298,0.0018288,3.2813635,1.94e-05,3.203,0.245,5.158625,0.004102,4740.0,3.77821,10.9441,,1226.1,,20.0,462.227,,6622.0,,,,1.54,,,,,,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5026,1,False,False,False -361711730,5027.01,,3,4,3,3,3,4,4,32.8,157.5,88.06,1,0,1,PC,PC,10.9097,0.006,,1,qlp-s39-faintsearch,QLP,16:15:32.41,-69:13:01.55,-22.023,0.031,-31.99,0.04,2459387.004152,0.0011595,10.2436729,2.79e-05,2.999,0.286,10.265151,0.328213,9410.0,302.25,11.2818,1.9152,190.912,1035.0,50.0,204.429,1.0515,5845.9,122.8,4.5,0.08,0.96,0.05,-0.290904,0.0754052,1.06,0.130457,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,5027,1,False,False,False -76894548,5028.01,,3,4,3,3,3,4,4,39.3,48.5,317.0,1,0,1,PC,PC,12.5587,0.006,,1,qlp-s39-faintsearch,QLP,18:04:21.6,-55:38:12.7,-0.77,0.036,1.291,0.034,2459388.664235,0.0019344,3.9353218,1.53e-05,3.169,0.537,8.74271,0.010334,8020.0,9.51834,20.2069,1.3146,575.011,1364.0,35.0,929.659,18.8965,5806.0,134.6,3.78,0.08,2.17,0.12,,,1.04,0.136602,"13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; likely inflated Jupiter,5028,1,False,False,False -154400369,5029.01,,3,4,4,3,3,4,4,29.0,110.3,82.33,1,0,1,PC,PC,12.1989,0.02,,1,qlp-s39-faintsearch,QLP,17:19:48.72,-35:44:26.68,-9.373,0.13,-21.635,0.085,2459384.065789,0.0026251,3.8861815,2.27e-05,2.565,0.266,6.402972,0.008794,5880.0,8.0994,10.8516,0.57219,1616.52,1766.0,16.0,383.371,9.8755,8615.0,274.0,4.49,0.07,1.39,0.05,,,2.15,0.307115,"12,39",2022-01-06,2022-01-06,2023-06-03 00:00:00,found in faint-star QLP search,5029,1,False,False,False -444290896,5030.01,,3,4,3,3,3,4,4,,,317.0,1,0,1,PC,PC,12.3927,0.039,,1,qlp-s39-faintsearch,QLP,17:49:52,-32:05:45.28,2.507,0.128,-3.641,0.107,2459381.764066,0.0036939,4.4299239,0.0024831,4.671,0.383,5.747875,0.009288,5280.0,8.55497,,,,,12.0,990.831,72.926,,,,,,,,,,,39,2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; no stellar parameters in TIC 8; Gaia DR2 Rstar ~ 2.09 Rsun; Rp likely planetary,5030,1,False,False,False -46807139,5031.01,,3,4,3,3,3,4,4,,,317.0,0,0,2,PC,PC,13.302,0.21,,1,qlp-s39-faintsearch,QLP,15:23:09.51,-58:43:36.42,-4.528,0.1,-1.773,0.123,2459381.694747,0.0100815,4.5314275,0.0001267,6.41,0.978,6.601763,0.015993,6062.0,14.7304,,,242.998,1099.0,10.0,3154.91,976.47,3605.0,200.3,,,,,,,,,"12,38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius,5031,1,False,False,False -283665218,5032.01,,3,4,3,3,3,4,4,23.0,27.3,317.0,0,0,2,PC,PC,12.7954,0.006,,1,qlp-s39-faintsearch,QLP,15:32:47.52,-56:04:48.35,-5.535,3.129,-12.032,3.094,2459376.494429,0.0030706,6.032661,4.58e-05,4.689,0.327,7.462883,0.00603,6850.0,5.55387,,,255.942,1114.0,19.0,732.552,,5049.5,78.3,,,,,,,,,"12,38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius but Rp is likely small enough to be planetary based on Teff and transit depth,5032,1,False,False,False -318180448,5033.01,,2,4,2,2,1,4,4,1.5,6.7,2.54,0,0,0,PC,PC,11.7405,0.007,,1,qlp-s39-faintsearch,QLP,20:37:35.95,-83:05:34.55,91.91,0.066,-193.137,0.064,2459389.289886,0.0039812,5.4695364,4.7e-05,1.274,0.262,1.738569,0.008561,1600.0,7.885,1.39203,0.119311,6.09736,437.0,10.0,37.3076,0.05755,3465.0,157.0,4.86,,0.36,0.01,,,0.347681,0.020304,"13,27,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5033,1,False,False,True -306990399,5034.01,,2,4,2,2,3,4,4,3.0,34.5,12.54,3,0,1,PC,PC,12.0635,0.006,,1,qlp-s39-faintsearch,QLP,17:47:47.92,-62:31:38.83,16.223,0.036,0.536,0.039,2459377.128539,0.0065665,8.7042937,9.21e-05,2.726,0.413,2.315085,0.005702,2130.0,5.2516,3.59413,0.28214,52.2984,749.0,11.0,221.335,1.8495,5160.9,117.0,4.61,0.08,0.77,0.04,0.0879476,0.059727,0.87,0.105369,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5034,1,False,False,False -401509690,5035.01,,3,4,3,3,3,4,4,12.1,52.0,50.05,2,0,1,PC,PC,12.5787,0.006,,1,qlp-s39-faintsearch,QLP,14:22:31.37,-72:48:08,-14.241,0.023,-8.964,0.026,2459378.670278,0.0024746,5.8009082,3.08e-05,3.175,0.271,5.584162,0.005664,5130.0,5.21696,8.06972,0.512267,171.882,1008.0,19.0,394.439,2.7655,5406.0,127.7,4.37,0.08,1.05,0.06,,,0.94,0.115239,"11,12,38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5035,1,False,False,False -406726743,5036.01,,3,4,3,3,3,4,4,7.7,32.6,91.95,0,0,1,PC,PC,12.5819,0.006,,1,qlp-s39-faintsearch,QLP,14:51:14.5,-78:22:41.67,-14.213,0.026,-9.16,0.026,2459380.200716,0.0051735,17.7481897,0.0036893,2.516,0.359,5.671473,0.017319,5210.0,15.9512,11.5797,0.926806,11.794,516.0,11.0,567.804,4.8965,5393.0,129.1,4.06,0.08,1.51,0.08,,,0.94,0.118605,"38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5036,1,False,False,False -263486257,5037.01,,3,4,3,3,3,4,4,37.0,45.0,317.0,1,0,1,PC,PC,12.3155,0.006,,1,qlp-s39-faintsearch,QLP,15:38:11.6,-71:55:40.35,-7.659,0.04,-17.994,0.058,2459388.356058,0.0021013,4.1239984,0.0005356,2.978,0.144,13.448358,0.007649,12310.0,7.04462,14.8401,0.836909,542.264,1344.0,34.0,605.313,14.529,6433.0,129.9,4.3,0.09,1.33,0.07,,,1.3,0.205803,39,2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5037,1,False,False,False -127115861,5038.01,,3,4,3,3,3,4,4,50.9,72.4,317.0,3,0,1,PC,PC,11.9036,0.017,,1,qlp-s39-faintsearch,QLP,17:48:40.49,-29:31:21.36,-0.062,0.088,-2.416,0.068,2459384.821608,0.0059926,0.9990876,0.0004245,1.27,0.322,5.04954,0.031285,4640.0,28.8145,16.981,,9983.53,,10.0,1087.44,55.21,9391.0,,4.05,,2.41,,,,2.39,,39,2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5038,1,False,False,False -396649769,5039.01,,3,4,3,3,1,4,4,15.1,34.4,93.16,0,0,0,PC,PC,13.4924,0.006,,1,qlp-s39-faintsearch,QLP,14:17:38.43,-75:19:27.29,-8.187,0.034,-7.313,0.043,2459387.149959,0.0029047,2.1967461,1.7e-05,3.749,0.287,3.991982,0.006129,3670.0,5.64468,11.6242,,2106.93,1887.0,14.0,1079.8,34.155,5709.0,122.0,3.94,,1.8,,,,1.02,,"12,38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5039,1,False,False,False -412828754,5040.01,,3,4,3,3,3,4,4,21.4,24.4,317.0,0,0,1,PC,PC,12.9612,0.006,,1,qlp-s39-faintsearch,QLP,17:32:30.55,-50:17:30.85,5.115,0.044,3.716,0.037,2459385.934136,0.0036252,3.3808424,2.93e-05,3.135,0.508,4.809591,0.01328,4420.0,12.2308,15.6348,1.17978,1136.54,1617.0,12.0,1145.04,43.905,6445.0,133.1,3.97,0.09,1.96,0.11,,,1.31,0.199404,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5040,1,False,False,False -324609476,5041.01,,3,4,3,3,1,4,4,136.7,223.3,99.29,5,0,0,PC,PC,14.9276,0.008,,1,qlp-s39-faintsearch,QLP,20:50:24.68,-81:26:35.24,34.031,0.14,-6.974,0.139,2459388.718964,0.0012815,0.7338413,5.64e-05,0.482,0.123,47.255102,0.941463,42590.0,866.744,12.1197,1.4724,29.4534,649.0,19.0,195.854,3.042,3423.0,157.0,4.79,0.01,0.44,0.01,,,0.434388,0.0210083,39,2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5041,1,False,False,False -282221346,5042.01,,3,4,3,3,3,4,4,7.3,26.6,39.23,0,0,1,PC,PC,11.0384,0.006,,1,qlp-s39-faintsearch,QLP,14:03:56.55,-78:46:20.81,-14.214,0.044,-7.588,0.042,2459384.430453,0.0043699,5.6316098,4.76e-05,5.877,0.785,1.021072,0.001366,940.0,1.25773,6.99657,0.442546,989.195,1562.0,18.0,489.651,6.371,5784.0,129.2,3.72,0.08,2.32,0.11,,,1.04,0.125714,"12,38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; TCE at ~1642 likely BEB due to changing depth with aperture,5042,1,False,False,False -75522633,5043.01,,3,4,4,3,3,4,4,71.7,76.1,317.0,2,0,1,PC,PC,12.4337,0.006,,1,qlp-s39-faintsearch,QLP,17:48:23.88,-54:55:55.92,14.515,0.048,-10.453,0.046,2459384.329786,0.0004916,3.8027513,4.3e-06,3.148,0.072,28.714085,0.002206,26100.0,2.03198,14.5097,0.898905,245.058,1102.0,93.0,279.685,2.7535,5061.0,125.5,4.5,0.09,0.86,0.05,,,0.85,0.10394,"13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5043,1,False,False,False -298946836,5044.01,,3,4,3,3,3,4,4,20.2,57.0,89.11,0,0,1,PC,PC,11.1072,0.006,,1,qlp-s39-faintsearch,QLP,16:12:53.18,-61:01:52.61,8.162,0.05,-4.417,0.046,2459377.568492,0.0040241,5.55692,0.0034764,4.092,0.627,2.69597,0.006121,2480.0,5.63748,11.3578,0.772031,534.233,1339.0,10.0,487.432,7.3055,5964.0,128.1,3.83,0.08,2.1,0.1,,,1.09,0.137748,39,2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5044,1,False,False,False -297950791,5045.01,,3,4,3,3,1,4,4,20.6,21.5,317.0,0,0,0,PC,PC,13.3209,0.006,,1,qlp-s39-faintsearch,QLP,16:08:44.8,-65:15:31.18,-4.788,0.016,-1.414,0.027,2459386.865879,0.0030326,3.4792084,2.93e-05,3.545,0.39,9.071114,0.012093,8320.0,11.1376,14.4016,,940.992,1542.0,16.0,1024.34,18.94,6052.0,122.0,4.1,,1.57,,,,1.13,,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5045,1,False,False,False -306512967,5046.01,,3,4,3,3,1,4,4,1.7,40.1,10.01,0,0,0,PC,PC,13.069,0.019,,1,qlp-s39-faintsearch,QLP,07:56:07.49,-69:51:41.24,-23.418,3.229,16.596,3.229,2459377.361953,0.0025533,11.1838046,4.84e-05,5.302,0.316,4.068266,0.001316,3740.0,1.2121,,,,,33.0,737.214,,,,,,,,,,,,"1,2,3,4,5,6,8,9,10,11,12,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; no stellar radius; two stars in pixel,5046,1,False,False,False -291857895,5047.01,,3,4,3,3,3,4,4,33.5,114.3,107.21,1,0,1,PC,PC,12.6794,0.006,,1,qlp-s39-faintsearch,QLP,16:34:21.93,-38:14:20.93,-30.36,0.069,-33.18,0.05,2459379.29804,0.0015493,7.3142625,3.51e-05,3.367,0.18,20.617217,0.01302,18810.0,11.9915,12.5859,0.908956,69.2385,803.0,25.0,266.138,2.455,4881.0,128.5,4.47,0.09,0.86,0.06,,,0.8,0.0917127,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5047,1,False,False,False -323022088,5048.01,,3,5,5,3,1,4,4,47.2,85.2,120.89,1,0,0,PC,APC,13.115,0.012,,1,qlp-s39-faintsearch,QLP,16:29:41.92,-28:30:15.89,-13.219,0.092,-22.782,0.05,2459386.66595,0.0021909,1.3583233,5.3e-06,1.463,0.241,7.397291,0.018866,6790.0,17.3763,13.5621,,812.252,1487.0,17.0,610.636,12.391,5604.0,122.0,4.05,,1.56,,,,0.99,,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5048,1,False,False,False -261020738,5049.01,,3,4,3,3,3,4,4,41.8,102.3,112.04,0,0,1,PC,PC,12.9072,0.006,,1,qlp-s39-faintsearch,QLP,15:04:26.9,-66:12:11.03,-5.947,0.023,-7.316,0.041,2459384.733856,0.0013638,2.9204289,1.37e-05,2.679,0.163,11.273986,0.011505,10330.0,10.596,12.9535,0.823871,470.192,1297.0,21.0,478.128,6.799,5508.0,131.9,4.36,0.08,1.08,0.06,,,0.97,0.120554,"12,38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5049,1,False,False,False -282701278,5050.01,,3,4,3,3,3,4,4,35.3,88.0,120.93,1,0,1,PC,PC,12.6487,0.007,,1,qlp-s39-faintsearch,QLP,15:30:28.21,-55:47:14.96,-1.202,0.047,-5.846,0.035,2459382.640227,0.0012881,2.3064574,1.1e-05,2.071,0.197,6.151805,0.008126,5650.0,7.48419,13.5732,0.751026,1020.03,1574.0,19.0,693.064,10.707,6692.0,136.9,4.25,0.09,1.48,0.07,,,1.42,0.246246,"12,38,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5050,1,False,False,False -217933560,5051.01,TIC 217933560.01,3,4,3,3,3,4,4,92.9,80.9,317.0,2,0,1,PC,PC,11.6451,0.006,,1,qlp-s39-faintsearch,QLP,17:25:32.43,-44:02:48.06,-3.217,0.081,-18.508,0.06,2459379.848245,0.0010411,3.5980715,1.03e-05,2.842,0.138,17.015842,0.006066,15550.0,5.58672,14.8005,1.11035,180.551,1021.0,36.0,213.538,2.2705,4708.0,124.8,4.21,0.09,1.13,0.08,,,0.75,0.0885871,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5051,1,False,False,False -208151094,5052.01,,3,4,3,3,3,4,4,59.0,65.9,317.0,0,0,1,PC,PC,12.3562,0.006,,1,qlp-s39-faintsearch,QLP,16:17:25.49,-59:05:51.23,-10.817,0.053,-14.726,0.057,2459381.491256,0.0018074,4.0668104,0.0007668,2.988,0.178,21.591418,0.011012,19690.0,10.1422,15.0245,0.867809,286.231,1145.0,31.0,384.47,5.6155,5496.0,129.2,4.36,0.08,1.07,0.06,,,0.96,0.128773,39,2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5052,1,False,False,False -324426685,5053.01,,3,4,3,3,3,4,4,17.7,80.6,75.68,3,0,1,PC,PC,12.6916,0.006,,1,qlp-s39-faintsearch,QLP,19:02:40.43,-77:34:57,-10.629,0.021,7.488,0.029,2459372.59318,0.0010847,9.8830331,2.66e-05,3.432,0.243,17.104076,0.008215,15630.0,7.56632,10.3147,0.85123,29.7162,650.0,65.0,216.915,0.6765,4456.0,123.0,4.46,0.1,0.82,0.06,,,0.7,0.081241,"13,27,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5053,1,False,False,False -401704685,5054.01,,3,4,3,3,1,4,4,26.0,69.7,121.37,1,0,0,PC,PC,12.7372,0.006,,1,qlp-s39-faintsearch,QLP,21:15:27.22,-83:09:52.23,3.918,0.026,-5.976,0.023,2459384.347387,0.0015944,4.2100055,2.56e-05,2.653,0.343,8.709875,0.004473,7990.0,4.11976,13.6161,0.71117,427.599,1266.0,35.0,695.421,6.9835,6160.0,136.0,4.2,0.08,1.42,0.07,,,1.17,0.166693,"27,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5054,1,False,False,False -407146538,5055.01,,3,4,3,3,1,4,4,59.6,47.8,317.0,0,0,0,PC,PC,11.9139,0.006,,1,qlp-s39-faintsearch,QLP,15:40:36.68,-81:12:29.67,-3.915,0.038,-21.842,0.039,2459387.976866,0.0031406,2.0915616,1.26e-05,3.634,0.241,2.783049,0.599578,2560.0,552.079,14.2961,4.26469,10148.1,2796.0,23.0,439.874,4.431,5551.0,131.6,4.01,0.08,1.62,0.09,,,0.98,0.122365,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,5055,1,False,False,False -216925130,5056.01,,3,4,3,3,3,4,4,13.2,46.8,58.2,0,0,1,PC,PC,10.9531,0.006,,1,qlp-s39-faintsearch,QLP,17:17:52.53,-44:51:54.52,19.534,0.08,-2.928,0.061,2459381.819163,0.0098157,7.6686232,0.0001491,4.794,1.264,2.173647,0.009841,2000.0,9.06342,8.82795,0.784793,480.358,1304.0,11.0,397.322,8.774,6066.0,131.6,3.91,0.08,1.96,0.1,,,1.13,0.157003,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; possible additional transit at ~1632 TBJD,5056,1,False,False,False -37291237,5057.01,,3,4,3,3,3,4,4,59.1,76.4,112.16,1,0,1,PC,PC,11.0837,0.006,,1,qlp-s39-faintsearch,QLP,16:59:22.09,-35:23:20.16,-5.988,0.096,-8.568,0.056,2459385.829606,0.0031661,1.1437772,9.4e-06,1.501,0.3,1.923456,0.009077,1770.0,8.36035,12.9975,,548.925,1348.0,12.0,347.227,6.797,4520.0,122.0,,,2.85,,,,,,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search; check neighboring TIC 37291215,5057,1,False,False,False -277034534,5058.01,,3,4,3,3,3,4,4,17.9,93.9,110.77,2,0,1,PC,PC,10.9425,0.006,,1,qlp-s39-faintsearch,QLP,18:39:09.84,-79:30:19.2,-2.3,2.1,-37.5,2.0,2459353.384092,0.0022326,23.7123919,9.65e-05,5.841,0.4,6.708819,0.084885,6160.0,78.1793,12.8901,,181.582,,48.0,269.351,,6130.0,,,,1.29,,,,,,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,5058,1,False,False,False -458027465,5059.01,,3,4,3,3,3,4,4,36.2,157.2,92.31,1,0,1,PC,PC,11.8876,0.006,,1,qlp-s39-faintsearch,QLP,16:41:38.04,-41:35:03.98,0.028,0.097,-35.849,0.065,2459370.258532,0.0013387,8.7876771,2.79e-05,2.935,0.195,22.655181,0.01301,20650.0,11.9826,11.5115,0.890268,30.7909,656.0,36.0,156.693,1.3435,4676.0,122.4,4.54,0.09,0.77,0.06,,,0.75,0.0879873,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5059,1,False,False,False -16264917,5060.01,,3,4,3,3,1,4,4,50.8,67.5,317.0,0,0,0,PC,PC,13.4489,0.015,,1,qlp-s39-faintsearch,QLP,16:30:34.34,-49:24:51.04,-1.247,0.042,-2.5,0.029,2459373.110938,0.0086632,1.2695326,0.0017102,2.229,0.658,14.658227,0.150831,13410.0,138.911,14.8016,,17833.5,3219.0,10.0,941.579,28.9025,9561.0,125.0,4.68,,1.18,,,,2.43,,39,2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5060,1,False,False,False -214218272,5061.01,,3,4,3,3,3,4,4,20.1,61.5,96.49,0,0,1,PC,PC,12.9971,0.006,,1,qlp-s39-faintsearch,QLP,17:22:56.39,-51:59:00.28,-0.467,0.042,-6.512,0.036,2459384.08724,0.003084,3.3645349,2.3e-05,3.14,0.318,7.637813,0.011333,7010.0,10.4384,11.8831,0.727395,978.355,1558.0,14.0,792.868,13.585,6443.0,129.5,4.3,0.09,1.34,0.06,,,1.3,0.209154,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5061,1,False,False,False -294768072,5062.01,,3,4,3,3,3,4,4,7.6,26.6,52.72,0,0,1,PC,PC,11.8105,0.006,,1,qlp-s39-faintsearch,QLP,17:50:36.47,-71:17:11.82,-1.786,0.034,-14.358,0.039,2459380.139505,0.0054163,6.2244575,7.94e-05,5.174,1.135,1.705945,0.004581,1570.0,4.21901,8.34496,0.632402,639.699,1401.0,15.0,627.41,10.769,5692.8,114.8,3.81,0.08,2.08,0.11,0.309716,0.068023,1.01,0.127044,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5062,1,False,False,False -173979859,5063.01,,3,4,4,3,3,4,4,29.4,37.9,317.0,2,0,1,PC,PC,12.6019,0.006,,1,qlp-s39-faintsearch,QLP,17:12:57.41,-59:22:01.89,-4.933,0.043,-8.245,0.041,2459386.531727,0.0019125,3.613799,1.92e-05,3.323,0.25,10.352839,0.00797,9490.0,7.34059,15.4064,0.868134,1276.89,1665.0,19.0,881.246,23.582,6955.0,125.0,4.25,0.09,1.54,0.07,,,1.52,0.26709,"12,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5063,1,False,False,False -407127579,5064.01,,3,4,3,3,1,4,4,6.8,30.9,25.35,0,0,0,PC,PC,11.5939,0.006,,1,qlp-s39-faintsearch,QLP,15:37:24.45,-82:29:07.22,-7.065,0.041,-2.533,0.04,2459386.596828,0.0034675,3.5108018,2.34e-05,2.791,0.349,1.042807,0.002492,960.0,2.29537,5.42543,0.375845,561.487,1356.0,12.0,433.55,3.941,5860.0,130.8,4.06,0.08,1.59,0.08,,,1.06,0.131158,"12,13,39",2022-01-06,2022-01-06,2022-12-14 12:09:24,found in faint-star QLP search,5064,1,False,False,False -243244680,5065.01,,5,5,5,5,5,5,5,6.2,52.9,26.22,0,2,8,KP,KP,9.66896,0.006,,1,qlp-s46-tois,QLP,09:06:17.81,19:24:07.4,45.492,0.06,-41.791,0.045,2459575.851873,0.0007485,19.4921473,7.9e-06,3.568,0.061,1.847322,0.000116,1700.0,0.107002,5.50689,0.255766,31.9085,662.0,86.0,181.69,1.286,6128.0,124.1,4.23,0.08,1.36,0.06,,,1.158,0.154946,"44,45,46",2022-01-06,2022-03-10,2022-12-14 12:09:24,K2-236 b / EPIC 211945201 b,5065,1,False,False,True -56655478,5066.01,,3,4,3,3,4,4,4,22.1,89.2,39.85,0,2,3,PC,PC,10.3418,0.009,,1,qlp-s44-ffi,QLP,04:15:20.11,27:03:43.93,-8.478,0.102,-5.972,0.073,2459523.933229,0.0018925,1.345518,9.06e-05,1.168,0.232,1.108016,0.002374,1020.0,2.18649,7.04611,0.422733,2553.31,1980.0,24.0,402.304,8.2375,7509.4,107.3,4.07,0.08,2.0,0.08,0.4323,0.0123592,1.73,0.293137,"43,44",2022-01-06,2022-01-06,2022-12-14 12:09:24,,5066,1,False,False,False -117275513,5067.01,,5,5,5,5,5,5,5,4.4,36.2,11.34,0,2,6,KP,KP,11.7421,0.006,,1,qlp-s46-tois,QLP,08:43:30.8,24:25:22.64,1.18,0.058,-34.594,0.037,2459573.632496,0.0026425,4.6886293,8.7e-06,2.642,0.06,1.542841,0.000108,1420.0,0.0994737,3.38076,0.226554,128.987,938.0,31.0,201.856,1.4895,4954.0,129.1,4.47,0.09,0.87,0.06,,,0.816,0.0935,"21,44,45,46",2022-01-06,2022-03-11,2022-12-14 12:09:24,K2-348 b; multi,5067,1,False,False,True -366631954,5068.01,,5,5,5,5,5,5,5,4.9,48.6,9.54,0,1,10,KP,KP,11.1704,0.006,,1,qlp-s46-tois,QLP,08:40:43.21,10:58:58.62,-65.162,0.088,1.417,0.062,2459576.006652,0.0008839,4.7369675,2e-06,2.627,0.264,1.314536,0.000369,1210.0,0.339753,3.04231,0.165082,471.168,1297.0,43.0,154.83,1.246,5069.2,124.4,4.46,2.0,0.79,0.04,0.155,0.024,0.878,0.107425,"7,34,44,45,46",2022-01-06,2022-03-11,2022-12-14 12:09:24,K2-182 b,5068,1,False,False,True -381360757,5069.01,,2,4,2,2,3,4,4,2.4,23.5,9.4,0,2,4,PC,PC,9.63679,0.006,,1,qlp-s44-ffi,QLP,03:07:41,15:19:28.86,7.264,0.129,-42.785,0.14,2459519.107426,0.0177621,8.8558739,0.0039338,6.144,0.775,0.304049,0.001256,280.0,1.15681,3.014,0.261343,599.445,1378.0,10.0,231.014,3.517,6332.0,125.5,3.99,0.09,1.87,0.09,,,1.252,0.188019,"42,43,44",2022-01-06,2022-01-06,2022-12-14 12:09:24,low SNR,5069,1,False,False,False -319968129,5070.01,,3,4,3,3,3,4,4,13.6,64.9,39.84,0,2,1,PC,PC,10.3879,0.006,,1,qlp-s45-tois,QLP,06:21:13.42,20:52:42.65,-10.55,0.084,3.158,0.07,2459539.288411,0.0026535,6.2169379,0.0004234,2.558,0.2,2.249803,0.001767,2070.0,1.62712,7.07094,0.406617,186.29,1029.0,31.0,286.43,3.519,6304.0,199.3,4.16,0.1,1.54,0.07,,,1.238,0.211342,"43,44,45",2022-01-06,2022-03-11,2023-01-15 00:00:00,possibly on TIC 319968110,5070,1,False,False,False -307733361,5071.01,,5,5,5,5,5,5,5,10.3,72.9,11.67,0,1,5,KP,KP,10.0121,0.006,,1,qlp-s46-tois,SPOC/QLP,08:38:24.26,20:06:21.63,-36.144,0.108,-13.014,0.061,2459577.921318,0.0008778,1.6739029,8e-07,1.344,0.067,0.727687,0.000166,670.0,0.153267,3.43596,0.187212,642.596,1402.0,18.0,188.959,2.4405,6115.5,141.5,4.33,0.09,1.22,0.06,0.28076,0.0100895,1.153,0.168413,"44,45,46",2022-01-06,2022-03-10,2022-12-14 12:09:24,K2-100 b,5071,1,False,False,True -7059054,5072.01,,5,5,5,5,5,5,5,23.1,114.0,45.07,0,3,8,KP,KP,12.244,0.007,,1,qlp-s46-tois,SPOC/QLP,08:27:44.8,17:34:45.58,-13.871,0.062,-14.712,0.04,2459570.493415,0.0001496,5.1857547,4e-07,2.041,0.055,14.284124,0.000255,13070.0,0.235153,7.60282,0.646638,56.9888,765.0,124.0,169.398,1.0545,4664.8,144.3,4.68,0.11,0.65,0.06,0.110723,0.0130056,0.74,0.0906058,"44,45,46",2022-01-06,2022-03-10,2022-12-14 12:09:24,K2-121 b,5072,1,False,False,True -458686969,5073.01,,3,4,3,3,1,4,4,31.1,31.9,317.0,1,0,0,PC,PC,13.3042,0.008,,1,qlp-s46-tois,QLP,08:55:27.98,10:02:43.12,-3.723,0.053,6.427,0.034,2459573.019266,0.0011752,3.1393698,2.9e-06,3.998,0.179,12.042206,0.001122,11030.0,1.03386,16.0517,,1081.38,1597.0,62.0,910.734,29.796,5653.4,182.8,4.08,,1.52,,-0.035,0.172,1.0,,"34,44,45,46",2022-01-06,2022-03-11,2022-12-14 12:09:24,large candidate,5073,1,False,False,False -6893917,5074.01,,5,5,5,5,5,5,5,163.2,256.2,317.0,0,0,0,KP,KP,9.02097,0.006,,1,qlp-s46-tois,SPOC/QLP,08:22:28.18,13:44:07.11,-25.428,0.082,-2.014,0.052,2459576.31922,0.0001341,3.0801855,1.04e-05,3.233,0.014,10.517272,3.9e-05,9640.0,0.0357111,17.5341,0.599089,2090.4,1883.0,468.0,226.5,2.4795,7511.0,130.4,4.21,0.08,1.7,0.06,,,1.732,0.289663,"44,45,46",2022-01-06,2022-03-11,2022-12-14 12:09:24,KELT-17 b,5074,1,False,False,True -23113034,5075.01,,5,5,5,5,5,5,5,19.1,107.5,22.29,0,1,1,PC,FP,8.3482,0.009,,1,qlp-s44-ffi,QLP,04:03:21.19,25:20:37.71,-12.418,0.115,-5.113,0.07,2459522.980341,0.0020642,0.8567423,5.73e-05,1.253,0.187,0.369213,0.000762,340.0,0.701818,5.01051,0.302167,9466.05,2747.0,21.0,246.968,5.4675,8638.0,152.9,3.93,0.07,2.64,0.09,,,2.16,0.320039,"43,44",2022-01-06,2022-01-06,2022-12-14 12:09:24,possible odd-even; short period for host star,5075,1,False,False,False -303432813,5076.01,,1,4,4,1,3,4,4,2.1,44.4,9.97,0,2,4,PC,PC,9.9909,0.006,,1,qlp-s44-ffi,QLP,03:22:02.5,17:14:21.15,168.793,0.081,-175.975,0.065,2459500.709038,0.0024066,23.4428937,0.0023798,4.429,0.333,1.44499,0.001205,1330.0,1.10987,3.1263,0.277414,13.5616,534.0,19.0,82.857,0.30515,4794.4,151.4,4.47,0.11,0.85,0.07,0.299,0.1,0.77,0.0950006,"42,43,44",2022-01-06,2022-01-06,2022-12-14 12:09:24,potential L1 planet,5076,1,False,False,False -87873211,5077.01,,3,4,3,3,3,4,4,10.9,48.9,26.72,0,2,3,PC,PC,9.51297,0.006,,1,qlp-s45-tois,QLP,07:10:07.87,25:49:09.59,8.223,0.076,24.631,0.067,2459539.354282,0.0032673,5.8910507,0.0011111,2.128,0.4,0.847205,0.002323,780.0,2.13951,5.57949,0.424104,105.644,893.0,16.0,208.721,1.6375,5641.0,128.1,3.85,0.08,1.97,0.1,,,1.0,0.131243,"44,45",2022-01-06,2022-03-11,2022-12-14 12:09:24,v-shaped; possible centroid offset towards TIC 740814028,5077,1,False,False,False -303523128,5078.01,,1,4,1,1,3,4,4,6.5,10.3,2.84,0,2,4,PC,PC,9.7119,0.006,,1,qlp-s44-ffi,QLP,03:25:27.7,13:30:26.96,17.331,0.133,23.39,0.1,2459524.252238,0.0029688,1.5112704,0.0001071,1.117,0.198,0.456105,0.00171,420.0,1.57505,1.48552,0.145978,184.463,1026.0,15.0,53.579,0.2628,4595.0,122.2,4.63,0.1,0.68,0.05,,,0.73,0.0875129,"42,43,44",2022-01-06,2022-01-06,2022-12-14 12:09:24,potential L1 planet,5078,1,False,False,True -69672493,5079.01,,5,5,5,5,5,5,5,11.6,102.2,5.82,2,2,1,PC,FP,9.642901,0.006,,1,qlp-s44-ffi,QLP,05:09:34.76,24:19:28.17,75.031,0.078,-186.132,0.05,2459523.00272,0.0046389,1.4923632,0.0002066,1.538,0.372,0.868937,0.002337,800.0,2.15262,2.28796,0.187637,772.753,1468.0,19.0,77.3109,0.24775,5125.0,124.0,4.56,0.08,0.81,0.05,,,0.86,0.100986,"43,44",2022-01-06,2022-01-06,2022-12-14 12:09:24,visual binary,5079,1,False,False,False -17409453,5080.01,,5,5,5,5,5,5,5,4.8,21.9,37.77,0,1,1,KP,KP,12.9285,0.009,,1,qlp-s44-ffi,QLP,04:24:56.73,18:49:38.5,25.965,0.052,-13.642,0.038,2459523.430954,0.0096011,9.7267032,3.98e-05,4.397,0.478,2.14101,0.001124,1970.0,1.03526,6.83087,0.38641,183.199,1024.0,13.0,491.242,6.9575,5583.6,118.3,4.11,0.08,1.45,0.07,0.348445,0.0130817,0.99,0.125784,"43,44",2022-01-06,2022-01-06,2022-12-14 12:09:24,K2-87 b; detected with K2 and QLP/TESS,5080,1,False,False,True -203214138,5081.01,,5,5,5,5,5,5,5,24.7,95.4,63.22,0,14,6,KP,KP,10.5649,0.007,,1,qlp-s45-ffi,SPOC/QLP,08:58:45.67,20:52:08.32,-2.621,0.078,-29.697,0.05,2459546.250355,0.0011384,5.1698931,4.2e-06,1.972,0.094,3.381901,0.001253,3110.0,1.15401,9.23587,0.555516,562.184,1356.0,79.0,306.57,4.5895,6283.4,149.9,4.18,0.09,1.48,0.08,-0.303,0.009,1.23,0.18029,"44,45",2022-01-06,2022-01-21,2022-12-14 12:09:24,EPIC 212036875 b; brown dwarf (Persson+2019),5081,1,False,False,True -437011608,5082.01,TIC 437011608.01,1,4,1,1,4,4,4,15.0,160.2,7.1,2,2,6,PC,PC,7.6253,0.006,,1,qlp-s45-tois,QLP,07:06:16.7,22:40:59.33,-92.348,0.08,-78.817,0.07,2459546.980456,0.0016561,4.240122,0.0002913,2.388,0.27,0.749417,0.000435,690.0,0.400227,2.54811,0.129562,254.588,1112.0,33.0,43.1406,0.0966,5670.0,110.1,4.5,0.07,0.93,0.04,0.09,0.1,1.01,0.127915,"44,45",2022-01-06,2022-03-10,2022-12-14 12:09:24,bright target; potential L1 planet,5082,1,False,False,True -5882269,5083.01,,5,5,5,5,5,5,5,4.7,44.2,9.73,0,2,6,KP,KP,12.0394,0.006,,1,qlp-s45-tois,QLP,05:16:33.79,20:15:17.65,25.0,0.082,-45.938,0.059,2459542.114313,0.0022926,4.7948748,6.5e-06,2.067,0.124,2.478305,0.001547,2280.0,1.42511,3.0902,0.301297,35.1097,678.0,27.0,107.272,0.4995,4072.0,123.7,4.62,0.11,0.65,0.06,,,0.637,0.0816038,"43,44,45",2022-01-06,2022-03-10,2022-12-14 12:09:24,K2-284 b,5083,1,False,False,True -438260486,5084.01,,1,4,4,1,3,4,4,3.7,12.1,1.68,2,2,7,PC,PC,7.564,0.006,,1,qlp-s44-ffi,QLP,03:03:49.09,20:06:38.12,31.663,0.206,-64.966,0.129,2459518.148278,0.0029266,5.8332919,0.0005214,2.008,0.167,0.249748,0.000446,230.0,0.410492,1.16232,0.103964,37.7261,690.0,12.0,21.3575,0.0282,4544.0,122.0,4.54,0.1,0.75,0.06,,,0.72,0.0876522,"42,43,44",2022-01-06,2022-01-06,2022-12-14 12:09:24,potential L1 planet; bright small star,5084,1,False,False,True -6785559,5085.01,,2,4,2,2,3,4,4,3.9,34.1,8.77,0,2,2,PC,PC,10.1125,0.006,,1,qlp-s45-tois,QLP,05:25:44.04,20:32:38.66,-8.611,0.072,25.889,0.055,2459546.925741,0.0163277,4.5117148,0.0013546,4.48,0.756,0.597319,0.000962,550.0,0.886008,2.89398,0.196671,921.698,1535.0,9.0,196.662,1.763,5785.0,138.5,4.19,0.08,1.35,0.06,,,1.038,0.134024,"43,44,45",2022-01-06,2022-03-11,2023-01-04 00:00:00,low SNR; bad difference image; possible odd-even,5085,1,False,False,False -178217113,5086.01,,5,5,5,5,5,5,5,59.8,155.4,115.47,0,1,7,KP,KP,11.0514,0.006,,1,qlp-s46-tois,SPOC/QLP,08:30:18.89,22:14:09.31,-14.196,0.077,1.046,0.05,2459573.807852,9.57e-05,2.9956366,1e-07,2.271,0.033,8.501943,0.000277,7800.0,0.255261,13.1857,0.716677,911.457,1530.0,418.0,348.646,6.2145,6135.5,142.0,4.21,0.09,1.4,0.08,0.0284445,0.0105308,1.162,0.160956,"44,45,46",2022-01-06,2022-03-10,2022-12-14 12:09:24,K2-34 b,5086,1,False,False,True -18310799,5087.01,,5,5,5,5,5,5,5,3.3,59.2,11.48,0,3,10,KP,KP,10.1192,0.006,,1,qlp-s44-ffi,QLP,04:29:39.09,22:52:57.24,82.874,0.134,-35.617,0.077,2459491.497848,0.0026703,17.3070177,2.88e-05,3.442,0.209,2.053983,0.000559,1890.0,0.514682,3.37629,0.271677,10.8931,506.0,23.0,59.2474,0.1871,4230.6,104.4,4.48,0.09,0.77,0.06,-0.002,0.033,0.66,0.0792569,"43,44",2022-01-06,2022-01-06,2022-12-14 12:09:24,K2-136 c,5087,1,False,False,True -234388232,5088.01,,3,4,3,3,3,4,4,14.4,121.7,17.13,0,2,2,PC,PC,9.3422,0.006,,1,qlp-s44-ffi,QLP,07:31:34,12:02:03.99,-89.825,0.079,-36.455,0.059,2459518.182648,0.0071062,7.3242777,7e-05,3.984,0.656,0.511502,0.222994,471.0,205.364,4.30351,1.3837,2700.2,2008.0,10.0,86.9438,0.32345,5638.7,108.8,4.56,0.07,0.87,0.04,-0.191,0.021,1.0,0.123389,"7,44",2022-01-06,2022-01-06,2022-12-14 12:09:24,possible multi; possible centroid offset,5088,1,True,False,False -234388232,5088.02,,2,4,2,2,3,4,4,1.1,28.5,2.97,0,2,2,PC,PC,9.3422,0.006,,2,qlp-s44-ffi,QLP,07:31:34,12:02:03.99,-89.825,0.079,-36.455,0.059,2459521.211119,0.0083326,13.4155226,0.0014156,3.665,0.781,0.597319,0.003414,550.0,3.14485,1.53506,0.183248,62.2227,782.0,9.0,86.9438,0.32345,5638.7,108.8,4.56,0.07,0.87,0.04,-0.191,0.021,1.0,0.123389,"7,44",2022-01-06,2022-01-06,2022-12-14 12:09:24,low SNR; possible multi,5088,2,True,False,False -330687113,5089.01,,5,5,5,5,5,5,5,7.8,41.4,28.78,0,1,5,KP,KP,10.999,0.009,,1,qlp-s46-ffi,SPOC,09:05:57.46,16:19:31.85,-9.238,0.082,-9.538,0.059,2459574.716448,0.002158,5.1138588,7.8e-06,2.361,0.334,1.466734,0.00012,1350.0,0.110179,5.83713,0.309099,359.228,1212.0,36.0,371.823,6.419,6315.7,140.9,4.17,0.09,1.51,0.08,0.14626,0.0061105,1.24,0.18688,"44,45,46",2022-01-06,2022-01-21,2022-12-14 12:09:24,K2-334 b,5089,1,False,False,True -184892124,5090.01,,5,5,5,5,5,5,5,49.1,177.5,88.52,0,1,1,KP,KP,16.0573,0.008,,1,spoc-s42-s46-b0A,SPOC,08:42:39.4,19:24:51.7,-36.805,0.226,-13.133,0.131,2459552.222387,0.0015271736,1.9827515124353,3.7031492e-05,1.21291302437722,0.06079615,160.107829,6.220542,137107.153962599,5712.9497,11.2954295209927,0.58791214,20.6177691399036,543.475746415964,25.374565,185.731,4.86,3213.0,157.0,4.93347,0.00109246,0.29304701089859,0.0116176,,,0.268704,0.0219432,"44,45,46",2022-01-06,2022-07-15,2022-12-14 12:09:24,AD 3116 b; 54 Mjup BD (Gillen+2017),5090,1,False,False,True -438073782,5091.01,TIC 438073782.01,3,4,3,3,3,4,4,60.1,81.4,317.0,3,3,2,PC,PC,11.4438,0.006,,1,qlp-s45-tois,SPOC,06:22:32.41,14:01:03.48,-6.536,0.095,-7.317,0.085,2459546.828897,0.0004144,3.6413702,3.1e-06,3.705,0.051,12.382591,0.000671,11340.0,0.618427,16.4955,0.852025,1340.13,1685.0,101.0,500.511,16.0175,6832.0,197.284,4.2575,0.0962536,1.5,0.08,,,1.475,0.279252,"6,33,43,44,45",2022-01-06,2022-03-10,2023-01-15 00:00:00,also a CTOI from Olmschenk,5091,1,False,False,True -90853136,5092.01,,3,4,3,3,4,4,4,34.8,137.0,38.85,3,3,2,PC,PC,11.6786,0.006,,1,spoc-s42-s46-b0A,SPOC,06:46:30.14,28:50:28.46,23.727,0.083,-4.309,0.069,2459546.216863,0.0011951,2.36269008111204,0.00010348808,1.44683364458376,0.088101976,5.163076,0.380971,4744.08002847923,350.8254,6.95773880754038,2.4283702,340.334330460517,1095.4591557653,21.331743,189.575,1.5475,5222.44,104.606,4.63151,0.075155,0.755047023296356,0.0378392,-0.14132,0.024,0.89,0.105328,"43,44,45",2022-01-06,2022-07-15,2023-01-25 00:00:00,v-shaped,5092,1,False,False,True -63189173,5093.01,,5,5,5,5,5,5,5,114.1,97.6,317.0,1,0,0,KP,KP,12.8033,0.006,,1,qlp-s46-tois,SPOC,07:53:55.96,23:56:17.59,-23.655,0.039,-1.467,0.022,2459574.55039,0.0004089,2.2983835,2.06e-05,1.93,0.043,36.894256,0.003896,33410.0,3.58874,15.2047,1.13146,117.166,916.0,132.0,202.152,0.948,4221.54,100.121,4.45733,0.0928819,0.79,0.06,-0.011483,0.0318496,0.66,0.0799454,"44,45,46",2022-01-06,2022-03-10,2022-12-14 12:09:24,HAT-P-68 b,5093,1,False,False,True -19028197,5094.01,,5,5,5,5,5,5,5,36.4,246.3,17.56,0,0,0,KP,KP,10.2479,0.007,,1,qlp-s46-tois,SPOC/QLP,07:59:05.64,15:23:28.35,-185.734,0.106,-57.263,0.06,2459577.278774,0.0003799,3.3366859,2.94e-05,1.78,0.171,7.113107,0.000163,6530.0,0.149938,4.36319,0.132075,40.5809,703.0,134.0,29.4214,0.05075,3552.0,157.0,4.74,0.01,0.5,0.01,,,0.497757,0.0203467,"44,45,46",2022-01-06,2022-03-10,2022-12-14 12:09:24,GJ 3470 b,5094,1,False,False,True -434226736,5095.01,,5,5,5,5,5,5,5,8.0,124.3,9.9,0,0,2,KP,KP,13.0275,0.008,,1,spoc-s44-b02,SPOC,04:13:05.74,15:14:51.73,122.148,0.223,-18.337,0.118,2459501.774068,0.0010882552,3.4847528262488,0.00029493737,0.717181277057384,0.2384122,12.384503,1.115376,11341.7404475789,1026.7719,3.11379859461454,1.0545624,9.50341888347019,447.805803425456,11.066787,44.9565,0.16585,3204.0,157.0,4.93668,0.00702832,0.290215998888016,0.00869257,,,0.265494,0.0201666,44,2022-01-06,2022-01-06,2022-12-14 12:09:24,K2-25 b,5095,1,False,False,True -26826078,5096.01,,5,5,5,5,5,5,5,166.4,495.3,77.55,0,0,0,KP,KP,10.2832,0.006,,1,spoc-s42-s46-b0A,SPOC/QLP,07:27:39.94,24:20:10.03,-4.985,0.068,-96.235,0.06,2459577.924167,9.75e-05,2.87532875004004,6.669541e-06,1.87936038392264,0.007927405,23.790555,0.086157,21673.588681627,79.3506,10.4486394409287,0.8208666,145.71230578139,886.122587989715,257.67126,71.0374,0.19885,4604.0,127.2,4.64,0.1,0.678270995616913,0.0532261,0.21104,0.0887045,0.73,0.0866324,"44,45,46",2022-01-06,2022-07-15,2022-12-14 12:09:24,HAT-P-20 b,5096,1,False,False,True -203214081,5097.01,,5,5,5,5,5,5,5,3.6,95.7,4.79,0,3,2,KP,KP,11.5219,0.007,,1,qlp-s46-ffi,SPOC/QLP,08:58:52.52,21:04:29.27,175.512,0.103,-318.469,0.067,2459572.278024,0.0015298,5.7459945,6.1e-06,1.185,0.127,3.970187,7.1e-05,3650.0,0.0651263,2.06081,0.0618536,3.99828,393.0,21.0,27.9276,0.04505,3413.0,157.0,4.91,,0.32,0.01,,,0.294283,0.0201546,"44,45,46",2022-01-06,2022-01-24,2022-12-14 12:09:24,G 9-40 b,5097,1,False,False,True -14770122,5098.01,,5,5,5,5,5,5,5,57.7,84.1,317.0,0,0,0,KP,KP,11.8887,0.006,,1,qlp-s46-tois,SPOC,07:35:01.98,17:49:48.1,1.121,0.064,-8.592,0.055,2459574.804053,0.00062,3.5438893,5.96e-05,3.991,0.068,12.745054,0.000662,11670.0,0.60946,19.5349,0.976657,1319.04,1678.0,128.0,697.004,17.5065,6466.0,128.891,4.07444,0.0909332,1.75,0.09,,,1.32,0.213835,"44,45,46",2022-01-06,2022-03-10,2022-12-14 12:09:24,HAT-P-39 b,5098,1,False,False,True -91481801,5099.01,,3,4,3,3,3,4,4,62.1,265.3,84.6,0,4,1,PC,PC,6.9762,0.006,,1,spoc-s42-s46-b0A,SPOC,02:59:10.45,19:59:23.04,52.39,0.158,-24.507,0.168,2459505.606278,0.0014997266,14.4505401073693,0.00043414428,1.78829152334612,0.087368704,1.207916,0.069912,1111.91328835356,64.38881,10.9983399295261,6.702243,462.691922268041,1182.88555663251,18.219017,93.1501,0.6444,6761.32,121.447,3.96878,0.0886725,2.06695008277893,0.0853669,,,1.45,0.245344,"42,43,44",2022-01-06,2022-07-15,2022-12-14 12:09:24,variable star; bright star; v-shaped,5099,1,False,False,True -349582831,5100.01,TIC 349582831.01,3,4,3,3,3,4,4,63.2,79.4,317.0,2,0,1,PC,PC,12.4261,0.008,,1,spoc-s59-b0A,SPOC,04:27:44.4,33:05:10.59,1.168,0.065,-13.99,0.051,2459911.622062,0.001306317,3.45363165814101,0.0002784099,2.33759595038856,0.06984774,15.119233,0.411379,13828.818964061,378.82184,17.3139185468789,0.9207271,958.659027303832,1419.17447400577,35.972168,513.756,9.618,6028.0,131.193,4.2444,0.0795407,1.32263994216919,0.0649296,,,1.12,0.147241,"44,59",2022-01-06,2023-03-06,2023-03-24 12:12:10,also a CTOI from Olmschenk,5100,1,False,False,True -366410512,5101.01,,5,5,5,5,5,5,5,2.7,19.3,20.97,0,3,3,KP,KP,11.6718,0.008,,1,qlp-s46-tois,SPOC,08:25:57.17,11:30:39.94,-15.968,0.073,-9.524,0.048,2459558.523759,0.0023704,10.1367351,1.16e-05,5.029,0.242,1.16236,0.000155,1070.0,0.142468,4.85087,0.245127,278.864,1138.0,7.0,518.625,11.2775,6283.0,128.818,4.17177,0.086253,1.51,0.07,,,1.23,0.184813,"7,34,44,45,46",2022-01-06,2022-03-11,2022-12-14 12:09:24,K2-98 b,5101,1,False,False,True -82508808,5102.01,,3,5,5,3,3,4,4,39.8,72.6,43.15,1,1,1,PC,APC,15.0155,0.007,,1,spoc-s44-b02,SPOC,08:12:36.52,17:55:48.44,-15.795,0.253,-28.933,0.161,2459500.505423,0.0013688256,0.452201305869498,4.98067e-05,0.577371228707009,0.3707279,16.797106,2.214163,15351.6498068377,2037.2416,7.91722863450311,4.65683,731.238722273184,1326.27793629528,8.141622,379.43,21.726,3739.0,157.0,4.6228,0.0220427,0.633946001529694,0.0300458,,,0.614948,0.0271051,44,2022-01-06,2022-01-06,2023-04-05 00:00:00,EPIC 211843564.01,5102,1,False,False,True -366443576,5103.01,,3,5,5,3,3,4,4,14.5,51.0,61.86,0,5,2,PC,APC,11.5679,0.007,,1,qlp-s46-tois,SPOC/QLP,08:26:29.77,10:33:19.33,-7.924,0.081,-7.336,0.057,2459570.084477,0.0008077,4.9898664,2e-06,1.037,0.169,2.010472,0.0104,1850.0,9.57883,9.128,0.730217,167.032,1001.0,28.0,528.469,13.8585,6242.0,123.7,4.09,0.09,1.63,0.08,,,1.21,0.183152,"7,34,44,45,46",2022-01-06,2022-03-10,2022-12-14 12:09:24,EPIC 211335816.01; two stars in pixel,5103,1,False,False,True -415443327,5104.01,TIC 415443327.01,3,4,3,3,3,4,4,21.6,27.5,317.0,0,0,1,PC,PC,13.7667,0.008,,1,spoc-s44-b02,QLP,05:03:01.06,11:26:57.21,4.118,0.062,-1.562,0.041,2459501.630362,0.0036299266,4.89037604678938,0.0014708674,3.98444455558826,0.29257944,13.151004,0.821115,12039.4608136401,755.98865,16.168355945759,1.0929224,796.321969471903,1354.8522095715,13.19661,1026.28,39.904,6278.0,122.0,4.20771,,1.44588005542755,,,,1.23,,44,2022-01-25,2022-01-25,2023-04-05 00:00:00,also a CTOI from Olmschenk,5104,1,False,False,True -203287192,5105.01,,3,4,3,3,3,4,4,20.2,49.7,128.76,1,4,6,PC,PC,12.1476,0.007,,1,qlp-s46-ffi,SPOC/QLP,09:04:40.78,20:55:53.21,-16.007,0.061,-1.144,0.045,2459575.272682,0.01346,4.4455516,0.0001879,4.081,1.221,4.940466,0.547389,4540.0,504.037,14.0996,5.25243,1041.41,1582.0,31.0,923.354,32.421,6355.8,103.2,3.89,0.09,2.11,0.11,-0.374311,0.022866,1.26,0.201393,"44,45,46",2022-01-25,2022-02-07,2022-12-14 12:09:24,EPIC 212040382.01,5105,1,False,False,True -59351345,5106.01,,3,4,3,3,3,4,4,16.9,65.0,47.03,0,1,3,PC,PC,10.0704,0.006,,1,qlp-s45-ffi,QLP,05:57:09.18,14:52:44.38,0.26,0.114,4.116,0.101,2459546.354822,0.0010786,2.4361097,5.6e-06,1.095,0.278,0.912402,0.001979,840.0,1.82257,7.79741,0.573809,807.375,1485.0,21.0,450.49,15.0935,7182.5,135.7,3.91,0.1,2.33,0.14,-0.036,0.009,1.606,0.276215,"6,33,43,44,45",2022-01-25,2022-01-25,2023-02-27 00:00:00,possibly synchronized; slight depth aperture; crowded field,5106,1,False,False,False -97735297,5107.01,,3,4,3,3,4,4,4,7.0,44.3,28.51,0,1,3,PC,PC,9.4098,0.02,,1,qlp-s45-ffi,QLP,06:10:41.98,31:19:42.23,-3.453,0.332,-2.91,0.269,2459547.910111,0.0033759,1.8354365,0.0001606,1.633,0.382,0.33663,0.001118,310.0,1.02976,5.7988,0.788472,6809.52,2530.0,13.0,650.943,82.0725,9758.0,344.1,3.8,0.12,3.27,0.39,,,2.49,0.34668,"43,44,45",2022-01-25,2022-01-25,2023-01-04 00:00:00,weak signal but strong BLS; possible centroid offset,5107,1,False,False,False -350348197,5108.01,,3,4,3,3,4,4,4,22.8,119.6,34.1,1,4,4,PC,PC,9.18458,0.006,,1,qlp-s46-ffi,QLP,11:05:04.68,11:14:47.06,67.555,0.108,-46.579,0.111,2459569.477786,0.0007444,6.7538314,0.0002317,2.205,0.17,2.391251,0.000701,2200.0,0.645406,6.43167,0.340438,90.9533,860.0,61.0,130.919,1.679,5880.0,130.1,4.22,0.08,1.32,0.07,,,1.065,0.138975,"45,46",2022-01-25,2022-02-07,2022-12-14 12:09:24,,5108,1,False,False,False -411930845,5109.01,,3,4,3,3,3,4,4,32.3,59.5,317.0,1,1,2,PC,PC,10.2846,0.01,,1,qlp-s45-ffi,QLP,05:17:39.13,17:42:52.29,1.239,0.097,-5.651,0.069,2459547.384113,0.0014013,3.2104815,0.0001071,1.693,0.41,1.738569,0.002759,1600.0,2.54145,20.5754,1.71191,2847.04,2035.0,32.0,1165.13,78.905,9124.0,172.7,3.46,0.09,4.71,0.34,,,2.31,0.331998,"43,44,45",2022-01-25,2022-01-25,2023-01-04 00:00:00,large star; likely inflated hot Jupiter; possible secondary,5109,1,False,False,False -239977528,5110.01,,3,4,3,3,3,4,4,11.7,46.0,110.52,1,2,1,PC,PC,10.2592,0.006,,1,qlp-s45-ffi,QLP,06:17:37.02,31:36:37.19,-6.299,0.082,-1.756,0.068,2459503.677459,0.0027337,30.1587272,0.003453,4.084,0.263,2.848362,0.001966,2620.0,1.81104,12.8572,0.72401,16.8305,564.0,26.0,392.259,8.099,6083.0,149.4,3.74,0.09,2.38,0.12,,,1.139,0.16475,"43,44,45",2022-01-25,2022-01-25,2023-01-15 00:00:00,warm Jupiter; evolved star,5110,1,False,False,False -203289099,5111.01,,5,5,5,5,5,5,5,3.2,37.8,4.39,0,1,4,PC,KP,11.7538,0.007,,1,qlp-s45-ffi,QLP,09:05:26.76,21:40:06.92,14.473,0.08,-25.94,0.057,2459548.775666,0.0050306,3.3557196,1.18e-05,1.608,0.075,1.151491,0.000123,1060.0,0.113476,1.92525,0.0614842,34.6017,675.0,21.0,75.1691,0.30675,3807.0,157.0,4.68,0.01,0.56,0.02,,,0.555026,0.0204108,"44,45",2022-01-25,2022-01-25,2022-12-14 12:09:24,K2-344 b,5111,1,False,False,True -337385330,5112.01,TIC 337385330.01,2,4,2,2,4,4,4,1.4,42.9,4.73,0,2,3,PC,PC,10.1857,0.008,,1,qlp-s46-ffi,QLP,07:21:13.07,17:35:18.83,-67.888,0.08,-57.018,0.082,2459577.847255,0.0045497,15.5321231,0.0020164,3.389,0.56,1.173229,0.002023,1080.0,1.86333,2.02914,0.109261,9.39439,487.0,17.0,43.8372,0.087,3973.0,157.0,4.65,0.01,0.61,0.02,,,0.592837,0.0203215,"44,45,46",2022-01-25,2022-02-07,2022-12-14 12:09:24,potential L1 planet; possible centroid offset in QLP s46,5112,1,False,False,True -2685481,5113.01,,1,4,1,1,3,4,4,4.0,35.2,9.38,0,2,1,PC,PC,10.2212,0.006,,1,qlp-s45-ffi,QLP,05:21:59.63,30:56:55.42,-8.491,0.082,-6.195,0.056,2459545.541329,0.0045176,4.1363202,0.0001179,3.19,0.424,0.510416,0.000961,470.0,0.884717,3.00841,0.202615,632.772,1397.0,11.0,222.874,2.505,6113.0,192.4,4.21,0.09,1.39,0.07,,,1.152,0.164357,"19,43,44,45",2022-01-25,2022-01-25,2023-02-08 00:00:00,asymmetric transit; potential stellar variability,5113,1,False,False,False -26693519,5114.01,,3,4,3,3,3,4,4,,,317.0,0,2,2,PC,PC,10.0643,0.006,,1,qlp-s46-ffi,QLP,07:23:08.45,25:33:31.51,2.2,2.4,-6.3,2.4,2459566.878639,0.002408,6.1539383,0.0004071,1.962,0.291,1.553714,0.002461,1430.0,2.26703,5.81608,0.475491,60.2347,776.0,22.0,,,5234.4,178.8,,,1.5,0.1,-0.065255,0.0149052,,,"44,45,46",2022-01-25,2022-02-07,2022-12-14 12:09:24,evolved host,5114,1,False,False,False -366499151,5115.01,,2,4,2,2,4,4,4,0.9,19.1,6.28,1,2,5,PC,PC,12.1045,0.006,,1,qlp-s46-ffi,QLP,08:28:37.08,10:14:58.16,97.645,0.079,-115.839,0.048,2459554.641004,0.0114752,13.8240078,0.0001263,3.512,0.459,1.238445,0.00124,1140.0,1.14251,2.38171,0.169823,35.732,681.0,12.0,207.618,2.061,5129.0,127.0,4.67,0.09,0.71,0.04,,,0.864,0.104601,"7,44,45,46",2022-01-25,2022-02-07,2022-12-14 12:09:24,K2 candidate; EPIC ID 211319779; possible slight centroid offset,5115,1,False,False,False -149496868,5116.01,,3,4,3,3,4,4,4,8.4,50.3,16.4,2,3,7,PC,PC,11.9783,0.008,,1,qlp-s46-reprocessed,SPOC/QLP,10:57:30.24,12:32:08.21,-42.782,0.072,-4.601,0.062,2459578.653916,0.0020427,3.4355113,4.3e-06,2.11,0.109,2.804819,0.000184,2580.0,0.169385,4.18368,0.28212,146.577,969.0,47.0,197.234,2.0595,4870.0,126.5,4.53,0.09,0.8,0.05,,,0.79,0.091793,"45,46",2022-01-25,2022-04-20,2022-12-14 12:09:24,K2 candidate,5116,1,False,False,True -26469462,5117.01,,1,4,1,1,4,4,4,3.0,35.6,12.26,0,2,5,PC,PC,10.3657,0.006,,1,qlp-s45-ffi,QLP,07:11:03.07,14:56:51.07,-19.745,0.075,-21.328,0.062,2459534.137427,0.0033102,11.6986928,0.0001808,3.37,0.222,1.010204,0.001959,930.0,1.8044,3.51877,0.22891,89.0703,855.0,13.0,217.786,1.7845,6247.5,109.3,4.39,0.08,1.16,0.05,0.021,0.036,1.212,0.171898,"33,44,45",2022-01-25,2022-01-25,2022-12-14 12:09:24,potential L1 candidate,5117,1,False,False,True -438412198,5118.01,,2,4,2,2,3,4,4,3.7,32.5,6.86,0,2,1,PC,PC,10.0769,0.006,,1,qlp-s45-ffi,QLP,06:29:26.9,15:39:20.34,2.188,0.084,1.625,0.071,2459548.952497,0.0041325,1.5749553,2.4e-05,2.45,0.369,0.293188,0.000935,270.0,0.861418,2.51372,0.195771,3578.15,2154.0,12.0,280.37,3.46,6635.0,234.1,4.19,0.1,1.57,0.07,,,1.393,0.265845,"6,33,43,44,45",2022-01-25,2022-01-25,2023-01-15 00:00:00,low SNR; possible SV; decent BLS,5118,1,False,False,False -75427473,5119.01,,5,5,5,5,5,5,5,10.0,42.3,13.31,0,3,1,PC,FP,8.96861,0.006,,1,qlp-s45-ffi,QLP,05:40:53.38,25:52:21.09,20.218,0.095,20.66,0.073,2459548.98697,0.0056496,1.4711337,0.0002465,2.962,0.356,0.228029,0.000398,210.0,0.366216,3.71075,,2221.54,1912.0,16.0,179.327,1.703,5110.7,14.5,,,2.66,,-0.264,0.013,,,"43,44,45",2022-01-25,2022-01-25,2022-12-14 12:09:24,slight depth-aperture; evolved host,5119,1,False,False,False -58723861,5120.01,,3,4,3,3,3,4,4,18.3,90.6,98.66,2,2,3,PC,PC,10.2326,0.006,,1,qlp-s45-ffi,QLP,06:56:51.38,22:35:43.61,6.129,0.073,-65.605,0.062,2459520.437298,0.00121,24.9155245,0.0017564,6.745,0.131,6.818072,0.000686,6260.0,0.631576,12.0398,0.523996,51.1862,745.0,80.0,229.962,1.961,5778.4,103.5,4.12,0.07,1.47,0.06,0.203727,0.00646821,1.036,0.129875,"44,45",2022-01-25,2022-01-25,2022-12-14 12:09:24,warm Jupiter candidate,5120,1,False,False,False -366568760,5121.01,,5,5,5,5,5,5,5,,,71.27,0,2,6,KP,KP,11.6522,0.007,,1,qlp-s45-ffi,QLP,08:31:03.08,10:50:51.21,-1.278,0.107,-6.778,0.067,2459546.49809,0.006811,8.407169,3.2e-05,5.052,0.336,0.499554,0.000354,460.0,0.326324,9.94582,,123.335,928.0,12.0,878.43,49.94,4642.6,29.9,,,4.71,,0.313,0.028,,,"7,44,45",2022-01-25,2022-01-25,2022-12-14 12:09:24,possible secondary; K2-97 b,5121,1,False,False,True -116668723,5122.01,,1,4,1,1,3,4,4,7.9,59.3,12.65,0,2,1,PC,PC,9.82614,0.006,,1,qlp-s45-ffi,QLP,05:42:43.75,30:45:46.51,21.05,0.082,-28.271,0.066,2459545.333528,0.0018857,3.3886002,5.04e-05,1.019,0.209,0.619046,0.002967,570.0,2.73262,3.58649,0.339814,94.7245,869.0,11.0,183.637,2.224,6148.7,149.0,4.25,0.09,1.34,0.09,0.183,0.014,1.167,0.157895,"19,43,44,45",2022-01-25,2022-01-25,2023-01-04 00:00:00,possible secondary not at half phase; possible eccentric NEB/BEB,5122,1,False,False,False -332022997,5123.01,,5,5,5,5,5,5,5,3.1,33.8,4.77,0,1,8,KP,KP,11.1983,0.006,,1,qlp-s45-ffi,QLP,08:48:40.77,20:27:18.06,-4.872,0.074,-15.641,0.044,2459550.358225,0.0028752,3.2809598,4.7e-06,1.897,0.098,0.814608,0.000578,750.0,0.532744,2.03745,0.134005,126.314,933.0,20.0,123.438,0.71,4783.6,103.0,4.59,0.08,0.74,0.04,-0.023,0.026,0.772,0.0891363,"44,45",2022-02-08,2022-02-08,2022-12-14 12:09:24,K2-275 b,5123,1,True,False,True -332022997,5123.02,,5,5,5,5,5,5,5,2.1,30.3,6.23,0,1,8,KP,KP,11.1983,0.006,,2,qlp-s46-ffi,QLP,08:48:40.77,20:27:18.06,-4.872,0.074,-15.641,0.044,2459572.871765,0.0019385,8.4388359,8.8e-06,2.129,0.193,1.021072,0.000514,940.0,0.473828,2.38569,0.151464,25.215,624.0,17.0,123.438,0.71,4783.6,103.0,4.59,0.08,0.74,0.04,-0.023,0.026,0.772,0.0891363,"44,45,46",2022-01-25,2022-02-07,2022-12-14 12:09:24,K2-275 c,5123,2,True,False,True -306902029,5124.01,,5,5,5,5,5,5,5,17.6,46.8,53.46,1,2,1,PC,FP,10.4406,0.014,,1,qlp-s45-ffi,QLP,06:32:09.46,17:22:49.98,7.881,0.079,-4.025,0.067,2459549.901817,0.0034951,1.0754572,8.38e-05,1.832,0.258,0.749417,0.000902,690.0,0.830544,8.40705,0.567744,3593.53,2156.0,22.0,588.788,17.201,6290.0,152.2,3.49,0.09,3.29,0.18,,,1.23,0.179822,"43,44,45",2022-01-25,2022-01-25,2022-12-14 12:09:24,a/Rs ~ 1.4; evolved host; possible phase modulations,5124,1,False,False,False -247906954,5125.01,,1,4,1,1,3,4,4,4.0,42.4,8.51,0,2,2,PC,PC,9.02342,0.006,,1,qlp-s45-ffi,QLP,05:51:48.6,15:52:55.36,-4.046,0.103,-7.112,0.083,2459547.287934,0.0035,5.9095847,5.55e-05,2.782,0.578,0.369213,0.000855,340.0,0.787696,2.8519,0.192985,416.001,1258.0,13.0,171.506,1.6725,6710.0,142.9,4.21,0.09,1.55,0.07,,,1.426,0.236298,"6,33,44,45",2022-01-25,2022-01-25,2022-12-14 12:09:24,variable host,5125,1,False,False,False -27064468,5126.01,TIC 27064468.01,1,4,1,3,4,4,4,10.5,73.6,17.98,7,3,3,PC,PC,9.56225,0.006,,1,qlp-s48-tois,QLP,10:06:38.35,18:38:02.63,-54.591,0.101,-10.621,0.092,2459627.039275,0.0016757,5.4588111,0.0001639,3.39,0.164,1.336278,0.000503,1230.0,0.463667,4.40571,0.225116,402.195,1247.0,29.0,160.414,1.598,6223.0,130.6,4.33,0.08,1.24,0.06,,,1.201,0.164762,"45,46,48",2022-01-25,2022-07-07,2022-12-14 12:09:24,slight centroid offset toward TIC 27064467; potential multi; variable star,5126,1,True,False,True -27064468,5126.02,,1,4,1,1,4,4,4,1.9,30.6,8.31,7,3,3,PC,PC,9.56225,0.006,,2,qlp-s48-tois,QLP,10:06:38.35,18:38:02.63,-54.591,0.101,-10.621,0.092,2459613.742452,0.0053557,17.9000321,0.0018993,4.131,0.562,0.553867,0.001578,510.0,1.45335,2.79862,0.210207,64.0589,788.0,12.0,160.414,1.598,6223.0,130.6,4.33,0.08,1.24,0.06,,,1.201,0.164762,"45,46,48",2022-02-08,2022-07-07,2022-12-14 12:09:24,potential multi; variable star,5126,2,True,False,True -438170612,5127.01,,2,4,2,2,3,4,4,1.8,29.7,7.9,0,2,1,PC,PC,9.80493,0.006,,1,qlp-s45-ffi,QLP,06:24:47.92,13:21:43.39,8.182,0.168,-10.893,0.119,2459537.716422,0.0076123,17.533234,0.0003092,2.822,0.693,0.521278,0.003016,480.0,2.77824,2.72736,0.260658,30.8761,656.0,9.0,162.582,5.4915,6160.0,140.0,4.39,0.08,1.14,0.07,,,1.172,0.166585,"6,33,43,44,45",2022-01-25,2022-01-25,2023-01-25 00:00:00,weak signal; some transits near end of orbit,5127,1,False,False,False -406495245,5128.01,TIC 406495245.01,3,4,3,3,4,4,4,31.9,152.7,57.89,0,2,5,PC,PC,8.2893,0.008,,1,qlp-s46-ffi,SPOC/QLP,09:33:16.23,09:10:06.31,-17.275,0.301,-14.549,0.222,2459575.28309,0.0010516,7.604609,0.0002896,2.993,0.173,1.999595,0.000513,1840.0,0.472344,8.78214,0.370283,368.591,1220.0,69.0,193.998,4.402,7642.0,138.8,4.09,0.08,1.99,0.08,,,1.79,0.286992,"45,46",2022-01-25,2022-02-07,2022-12-14 12:09:24,double star,5128,1,False,False,True -101520163,5129.01,,1,4,1,1,3,4,4,4.7,45.8,12.83,3,2,1,PC,PC,10.1843,0.006,,1,qlp-s45-ffi,SPOC/QLP,06:38:48.67,29:05:21.56,-12.218,0.111,6.43,0.095,2459550.264144,0.0034372,7.4125375,0.0005997,1.683,0.257,0.912402,0.002658,840.0,2.44834,3.63638,0.273304,57.5269,767.0,13.0,201.912,2.7075,6178.0,135.5,4.36,0.08,1.19,0.06,,,1.18,0.157543,"43,44,45",2022-01-25,2022-01-25,2023-01-15 00:00:00,potential L1 planet; possible odd-even,5129,1,False,False,True -75589027,5130.01,,1,4,1,1,3,4,4,4.7,54.8,3.9,0,2,1,PC,PC,8.64885,0.006,,1,qlp-s45-ffi,QLP,05:42:03.94,28:14:28.29,56.565,0.092,-84.021,0.071,2459548.986914,0.0084895,2.1686749,0.0006063,3.917,0.506,0.249748,0.000507,230.0,0.467266,1.80727,0.119026,3902.46,2201.0,13.0,101.55,0.6565,6224.0,135.5,4.36,0.09,1.2,0.05,,,1.201,0.181084,"43,44,45",2022-01-25,2022-01-25,2023-01-04 00:00:00,Centroid offset inconsistent across sectors consistent with bright star,5130,1,False,False,True -350043412,5131.01,,3,4,3,3,2,4,4,6.8,54.0,33.81,2,1,4,PC,PC,13.1113,0.007,,1,qlp-s45-ffi,SPOC/QLP,10:22:03.75,10:00:11.52,-71.739,0.051,16.205,0.046,2459555.456557,0.002266939,9.4813433,1.23e-05,1.019,0.031,10.308994,0.003929,9450.0,3.6185,6.37051,,2.79712,360.0,27.0,215.18,1.624,4427.0,122.0,4.67,,0.63,,,,0.693,,"45,46",2022-01-25,2022-03-10,2022-12-14 12:09:24,marginal TESS detection; K2 target; V-shaped,5131,1,False,False,True -114516994,5132.01,,3,5,5,3,3,4,4,39.2,129.3,85.02,0,3,3,PC,APC,10.1485,0.006,,1,qlp-s45-ffi,QLP,05:53:13.97,21:55:04.53,-2.003,0.086,-2.653,0.071,2459549.386944,0.0009967,1.5985577,6.47e-05,1.19,0.123,2.815705,0.001711,2590.0,1.576,11.0534,0.518317,1717.96,1793.0,56.0,493.91,12.1515,7947.0,233.4,4.04,0.08,2.2,0.08,,,1.909,0.314469,"44,45",2022-01-25,2022-01-25,2023-02-08 00:00:00,possible odd-even or 200 ppm secondary; v-shaped,5132,1,False,False,False -312221462,5133.01,,5,5,5,5,5,5,5,4.5,41.7,41.2,0,2,1,PC,FP,10.3703,0.029,,1,qlp-s45-ffi,QLP,05:53:35.08,33:13:56.52,-3.125,0.104,-3.281,0.082,2459507.390544,0.0051778,30.4408598,0.000641,4.586,1.174,1.629827,0.028341,1500.0,26.1023,7.19468,0.989414,371.746,1223.0,12.0,404.955,8.775,8158.9,134.1,4.34,0.09,1.58,0.1,-0.171,0.017,1.99,0.311066,"19,43,44,45",2022-01-25,2022-01-25,2022-12-14 12:09:24,potential multi,5133,1,False,False,True -95010343,5134.01,,2,4,2,2,3,4,4,3.0,37.7,6.53,0,2,2,PC,PC,9.16636,0.006,,1,qlp-s45-ffi,QLP,07:37:15.09,24:30:56.57,-20.777,0.074,-17.203,0.061,2459543.075808,0.0052509,6.8823309,0.0015221,2.151,0.317,0.358352,0.001522,330.0,1.4014,2.43958,0.200276,129.326,939.0,9.0,149.969,0.9485,6474.0,128.7,4.32,0.09,1.31,0.06,,,1.319,0.211935,"44,45",2022-01-25,2022-01-25,2022-12-14 12:09:24,slight depth aperture correlation,5134,1,False,False,False -172110606,5135.01,,1,4,1,1,3,4,4,9.4,60.7,10.75,0,2,1,PC,PC,8.96147,0.006,,1,qlp-s60-ffi,QLP,06:31:19.8,32:23:48.41,64.652,0.07,-10.055,0.057,2459959.272804,0.0030088,2.0197169,1.32e-05,2.492,0.441,0.426778,0.025334,393.0,23.3332,3.26739,0.207684,1473.98,1726.0,23.0,152.97,0.912,5810.0,139.5,3.96,0.08,1.77,0.09,,,1.045,0.133942,"20,43,44,45,60",2022-01-25,2023-02-27,2023-03-03 12:11:24,L1 candidate; multiple stars in pixel,5135,1,False,False,True -175236511,5136.01,,5,5,5,5,5,5,5,1.1,12.1,7.79,0,0,12,KP,KP,12.0789,0.007,,1,qlp-s45-ffi,QLP,08:39:15.29,23:21:26.77,13.176,0.07,-10.366,0.047,2459550.096564,0.0039616,7.8092052,1.71e-05,3.393,0.534,0.521278,0.00011,480.0,0.101394,2.70889,0.135045,230.628,1085.0,15.0,446.821,8.546,5906.9,108.1,4.3,0.08,1.22,0.06,-0.063,0.041,1.07,0.1433,"44,45",2022-01-25,2022-01-25,2022-12-14 12:09:24,K2-188 c,5136,1,False,False,True -14570132,5137.01,,3,4,3,3,4,4,4,15.4,63.5,33.8,3,3,10,PC,PC,12.345,0.006,,1,qlp-s45-ffi,QLP,08:24:05.64,22:46:59.52,-18.659,2.223,-15.149,2.223,2459549.27463,0.0006883,3.2092032,1.1e-06,0.719,0.038,2.423895,0.013477,2230.0,12.4131,6.40951,,85.2417,,26.0,238.775,,5060.5,,,,0.91,,0.296,0.029,,,"44,45",2022-01-25,2022-01-25,2022-12-14 12:09:24,no clear TESS QLP detection; possible period drift,5137,1,False,False,True -38087018,5138.01,,5,5,5,5,5,5,5,39.1,78.0,96.71,0,1,4,KP,KP,14.6026,0.007,,1,spoc-s46-b0A,SPOC,11:18:31.86,-01:46:26.61,-28.15,0.078,21.666,0.058,2459552.134438,0.0018801944,1.72902336085621,0.00020046558,1.68872740766017,0.16843405,27.452683,1.408274,24967.8711879684,1296.2272,11.8980873418096,1.3123196,313.990073646787,1073.61539214664,15.108186,495.317,10.556,4377.0,122.0,4.50156,,0.766494989395142,,,,0.68,,"45,46",2022-01-25,2022-03-10,2022-12-14 12:09:24,K2-45 b,5138,1,False,False,True -95337971,5139.01,,3,4,3,3,2,4,4,15.4,88.7,40.27,2,0,1,PC,PC,12.7263,0.007,,1,qlp-s48-tois,SPOC,10:13:32.27,19:56:53.58,-130.701,0.053,-66.654,0.054,2459626.883017,0.0041837,5.9471027,0.000448,1.544,0.409,3.850325,2.125083,3540.0,1955.36,7.14437,2.91129,47.8442,732.0,10.0,131.219,0.94,3859.0,157.0,4.65384,0.011004,0.6,0.02,,,0.58554,0.0204224,"45,46,48",2022-01-25,2022-07-07,2022-12-14 12:09:24,low SNR,5139,1,False,False,True -175193677,5140.01,,1,4,1,1,4,4,4,9.9,145.6,8.79,0,4,4,PC,PC,6.3687,0.006,,1,spoc-s42-s46-b0A,SPOC,08:38:45.47,23:41:06.95,-47.303,0.065,-148.778,0.046,2459547.722323,0.0013911,15.6113633266136,0.0011265326,3.20026149543005,0.1838049,0.565262,0.036941,520.489760654118,34.02321,2.90333466864382,0.5247555,111.97286683176,829.65579108269,15.49408,35.26,0.05255,6061.77,141.954,4.31439,0.0884508,1.22567999362946,0.0643367,0.125872,0.0287348,1.13,0.150757,"45,46",2022-01-25,2022-07-15,2022-12-14 12:09:24,K2 PC; potential L1 planet; HD 73344 (Liang Yu et al 2018),5140,1,False,False,True -350020859,5141.01,,5,5,5,5,5,5,5,17.5,85.5,38.98,0,2,4,KP,KP,8.74761,0.006,,1,spoc-s42-s46-b0A,SPOC,10:18:41.06,10:07:43.85,5.348,0.079,-42.449,0.071,2459556.003033,0.0016437146,11.8141726152559,0.0007113047,5.56493522608701,0.14044397,1.635149,0.03764,1504.89416701027,34.66735,6.97249322151859,0.58439887,275.642729879927,1039.21734133506,34.01303,132.345,0.8035,5609.0,128.932,3.93083,0.0760211,1.7859799861908,0.0933392,,,0.992,0.125112,"45,46",2022-01-25,2022-07-15,2022-12-14 12:09:24,HD 89345 b,5141,1,False,False,True -393495970,5142.01,,5,5,5,5,5,5,5,130.2,295.4,106.94,0,0,1,KP,KP,11.0658,0.008,,1,spoc-s42-s46-b0A,SPOC/QLP,10:42:24.57,07:26:06.28,-32.17,0.079,-1.165,0.067,2459576.373848,0.0002262,1.75542853529876,1.703907e-05,1.77299863632673,0.021282302,16.097077,0.144361,14716.5922677128,132.95274,12.62298499417,0.7464507,867.736529582919,1384.25697243412,87.35919,185.932,1.469,5306.0,130.7,4.43,0.08,0.965222001075745,0.0564422,,,0.91,0.109865,"45,46",2022-01-25,2022-07-15,2022-12-14 12:09:24,WASP-104 b,5142,1,False,False,True -281837575,5143.01,TIC 281837575.01,3,4,4,3,3,4,4,59.6,209.8,91.0,36,31,4,PC,PC,11.2668,0.007,,1,spoc-s46-b0A,SPOC,11:01:27.63,05:08:22.13,-49.26,0.096,-0.122,0.076,2459553.292836,0.0011061968,5.20923315235386,0.00040031056,1.73629884970787,0.057907194,12.430707,0.49954,11383.8125894578,459.9875,11.4796136293434,1.9044112,158.183863618075,904.503588686217,35.99435,181.38,2.106,5296.38,107.392,4.53407,0.0772605,0.854120016098022,0.0427136,0.1976,0.018783,0.91,0.11438,"45,46",2022-01-25,2022-03-10,2023-02-24 00:00:00,possible multi; CTOI from Alton Spencer,5143,1,True,False,True -281837575,5143.02,TIC 281837575.02,1,4,4,1,3,4,4,6.2,49.7,8.55,36,31,4,PC,PC,11.2668,0.007,,2,spoc-s42-s46-b0A,SPOC,11:01:27.63,05:08:22.13,-49.26,0.096,-0.122,0.076,2459526.760734,0.0024408253,2.38516788317267,0.00019530013,1.71730734251874,0.51408833,1.191754,0.112897,1097.04382689513,103.976395,2.8574876599797,2.8526106,448.231082739449,1173.53282541979,9.352187,181.38,2.106,5296.38,107.392,4.53407,0.0772605,0.854120016098022,0.0427136,0.1976,0.018783,0.91,0.11438,"45,46",2022-01-25,2022-07-15,2023-02-24 00:00:00,possible multi; CTOI from Alton Spencer,5143,2,True,False,True -380619414,5144.01,,5,5,5,5,5,5,5,254.3,262.6,317.0,0,0,2,KP,KP,10.15,0.014,,1,spoc-s46-b0A,SPOC/QLP,11:43:37.93,06:33:49.62,-77.24,0.083,11.016,0.07,2459553.605072,0.00016627883,2.65567525096198,1.099895e-05,2.61110139029895,0.009682583,22.222044,0.069241,20259.2262625599,63.771496,,,640.325763429273,1282.98031674324,300.182,141.887,1.2185,5817.3,609.9,,,,,0.118,0.019,,,"45,46",2022-01-25,2022-07-15,2022-12-14 12:09:24,WASP-85 A b; SPOC assuming solar radius but Rs ~ 0.9,5144,1,False,False,True -281885301,5145.01,,5,5,5,5,5,5,5,8.5,54.0,35.45,0,2,5,KP,KP,12.3049,0.007,,1,spoc-s42-s46-b0A,SPOC,11:39:50.46,00:36:12.95,-18.788,0.104,4.415,0.066,2459554.042178,0.0022733966,7.91778552859751,0.00061280356,3.15063904531112,0.20482807,6.69833,0.276704,6150.39843116387,254.82172,6.59307856904515,0.72927785,88.7066259701789,782.724206079252,22.755013,289.827,5.5745,5322.0,104.314,4.5528,0.0768234,0.840475976467133,0.0425352,0.05,0.1,0.92,0.113896,"45,46",2022-01-25,2022-07-15,2022-12-14 12:09:24,K2-19 b,5145,1,False,False,True -173103335,5146.01,,5,5,5,5,5,5,5,2.6,56.0,5.74,0,5,9,KP,KP,10.5459,0.007,,1,spoc-s42-s46-b0A,SPOC,11:29:20.49,-01:27:18.49,94.034,0.094,-78.139,0.057,2459528.168292,0.0025809468,10.0539438720782,0.0019294797,2.06869244188301,0.5575528,1.822642,0.159108,1677.3066773643,146.53297,2.2586220404703,1.67416,4.58344951208881,373.17957222103,10.982085,44.0727,0.10815,3920.0,157.0,4.6932,0.00973992,0.550855994224548,0.0164328,,,0.546024,0.0203319,"45,46",2022-01-25,2022-07-15,2022-12-14 12:09:24,K2-3 b,5146,1,False,False,True -95361530,5147.01,,3,4,3,3,4,4,4,16.9,73.1,39.77,1,2,3,PC,PC,12.2325,0.006,,1,qlp-s48-tois,SPOC,10:16:57.85,18:12:49.9,-1.75,0.08,-23.854,0.081,2459631.96789,0.0016927,3.9178573,9.28e-05,0.739,0.144,4.64602,0.022098,4270.0,20.3528,7.07511,0.565614,17.9382,573.0,18.0,272.747,4.316,5174.39,100.009,4.4946,0.0755123,0.88,0.04,0.308,0.034,0.877,0.103405,"45,46,48",2022-01-25,2022-07-08,2022-12-14 12:09:24,V-shaped,5147,1,False,False,True -291517604,5148.01,,3,4,3,3,3,4,4,59.7,134.9,120.43,1,0,1,PC,PC,10.0143,0.006,,1,qlp-s39-291517604,QLP,17:24:57.94,-58:37:59,9.639,0.059,7.988,0.065,2459388.172471,0.0006294,5.0637199,7.4e-06,6.023,0.247,5.376829,0.000302,4940.0,0.278402,13.5595,0.730511,843.513,1501.0,101.0,237.514,3.044,5447.0,126.6,3.86,0.08,1.91,0.1,,,0.95,0.128198,"12,39",2022-02-08,2022-02-08,2022-12-14 12:09:24,,5148,1,False,False,False -286094277,5149.01,,3,4,3,3,3,4,4,32.3,71.6,317.0,0,9,1,PC,PC,10.4815,0.006,,1,spoc-s14-s60-b0A-PC,QLP,20:41:50.13,48:01:41.93,-13.835,0.095,16.83,0.096,2459814.873357,0.0007994,27.3714952486235,8.098927e-05,9.70832100760149,0.07048239,12.067288,0.100199,11052.8460426734,92.28213,18.3071321985315,0.9397903,95.4886532904332,797.274165528661,121.55991,298.458,4.4835,5903.0,334.0,4.0,0.11,1.70580995082855,0.0866133,,,1.073,0.199546,"15,16,41,55,56",2022-02-08,2023-05-22,2023-06-16 12:14:51,large for insolation,5149,1,False,False,True -40954422,5150.01,,5,5,5,5,5,5,5,59.0,131.8,122.71,0,0,0,PC,FP,10.0768,0.006,,1,qlp-s41-40954422,QLP,20:05:34.55,39:35:18.44,-1.886,0.046,2.989,0.047,2459443.506857,0.0029782,1.7578332,1.08e-05,3.234,0.253,1.586333,0.174631,1460.0,160.828,13.6952,3.66134,31409.7,3708.0,23.0,434.304,5.3045,6640.0,178.4,3.76,0.09,2.59,0.11,,,1.396,0.248221,"14,15,41",2022-02-08,2022-02-08,2022-12-14 12:09:24,,5150,1,False,False,False -388130237,5151.01,,3,4,3,3,1,4,4,2.9,23.6,317.0,0,0,0,PC,PC,12.8337,0.006,,1,qlp-s39-388130237,QLP,04:21:35.82,-67:28:12.5,2.927,0.04,-4.08,0.033,2459323.834982,0.0013774,92.1950434,0.0002252,4.425,0.213,30.164337,0.010552,27400.0,9.71836,16.0082,0.882858,1.32226,298.0,69.0,485.421,3.954,5643.0,129.6,4.44,0.08,1.0,0.05,,,1.0,0.129305,"1,3,4,5,6,7,8,9,10,11,13,27,28,29,30,31,32,33,34,35,36,37,38,39",2022-02-08,2022-02-08,2022-12-14 12:09:24,source of signal previously alerted as TOI-2239.01 /TIC-388130235 (now retired as FP); this is the real star,5151,1,False,False,False -257527578,5152.01,TIC 257527578.01,3,5,5,3,4,4,4,6.0,40.6,92.86,0,2,1,PC,CP,10.6509,0.008,,1,qlp-s31-257527578,CTOI,03:05:10.23,-21:56:01.13,19.845,0.08,-1.076,0.082,2459084.832076,0.0841835,54.3212423,0.007034,4.024,0.721,4.033392,0.007007,3708.0,6.4541,11.6348,0.753551,6.76453,449.0,16.0,382.898,7.296,6207.0,129.4,3.99,0.08,1.82,0.09,,,1.19,0.167014,"4,31",2022-02-08,2022-02-08,2022-12-14 12:09:24,CTOI from Sol¿¿ne Ulmer-Moll,5152,1,False,False,True -124029677,5153.01,TIC 124029677.01,3,5,5,3,4,4,4,12.0,65.6,89.82,0,7,1,PC,CP,11.215,0.007,,1,qlp-s33-124029677,CTOI,06:06:09.68,-19:57:12.4,8.695,0.041,-34.562,0.059,2459197.092933,0.0017019,20.9108406,6.69e-05,4.478,0.243,6.464135,0.002134,5936.0,1.96593,11.3547,0.545364,49.5559,739.0,34.0,390.484,4.457,6408.0,125.6,4.27,0.09,1.38,0.06,,,1.29,0.198849,"6,33",2022-02-08,2022-02-08,2022-12-14 12:09:24,CTOI from Sol¿¿ne Ulmer-Moll,5153,1,False,False,True -240849748,5154.01,,3,5,5,3,3,4,4,27.4,46.3,317.0,0,1,4,PC,APC,10.7203,0.007,,1,qlp-s42-240849748,QLP,22:43:50.33,-16:27:44.87,6.033,0.1,-3.321,0.083,2459470.788849,0.0016856,17.7256773,1.23e-05,1.629,0.081,3.109654,0.192176,2860.0,176.985,15.4613,2.51723,39.274,697.0,37.0,338.491,7.912,6010.0,124.4,4.06,0.08,1.63,0.08,,,1.11,0.139394,"2,29,42",2022-02-08,2022-02-08,2022-12-14 12:09:24,EPIC 205947161,5154,1,False,False,True -388811663,5155.01,,5,5,5,5,5,5,5,2.5,34.1,9.55,0,3,5,KP,KP,11.7603,0.006,,1,qlp-s43-388811663,QLP,01:13:41.78,03:05:49.46,162.635,0.086,31.577,0.07,2459495.564449,0.009362,9.7940121,4.53e-05,2.697,0.723,1.945209,0.001155,1790.0,1.06399,3.06352,0.303213,60.645,777.0,9.0,109.218,0.9235,4147.0,124.6,4.55,0.11,0.71,0.07,,,0.649,0.0794256,"42,43",2022-02-08,2022-02-08,2022-12-14 12:09:24,K2-212 b; detected with combined K2 + TESS data,5155,1,False,False,True -468889418,5156.01,,3,4,3,3,3,4,4,3.0,38.6,16.42,0,2,2,PC,PC,10.2409,0.006,,1,qlp-s44-reprocessed,QLP,03:47:01.79,08:39:52.77,13.94,0.092,-22.601,0.065,2459489.758703,0.0029267,22.8522937,9.43e-05,1.545,0.233,1.553714,0.005469,1430.0,5.03667,4.19275,0.395327,4.02509,394.0,11.0,160.968,1.294,5857.9,140.7,4.4,0.09,1.08,0.08,-0.4555,0.00777817,1.059,0.13726,"5,42,43,44",2022-02-08,2022-02-08,2022-12-14 12:09:24,potential L1 candidate given radius uncertainty,5156,1,False,False,False -38161230,5157.01,,3,5,5,3,4,4,4,12.5,43.9,46.98,1,3,4,PC,APC,11.7475,0.006,,1,qlp-s46-ffi,SPOC/QLP,11:24:56.63,-02:05:06.57,7.0,1.8,3.0,1.5,2459573.777942,0.00186,2.519403,1.7e-06,1.11,0.098,2.228044,0.001099,2050.0,1.01262,7.76891,,248.684,,39.0,476.884,,6380.0,,,,1.76,,-0.67,0.1,,,"45,46",2022-02-08,2022-02-08,2022-12-14 12:09:24,V-shaped; weak centroid offset,5157,1,False,False,True -337647366,5158.01,,3,4,3,3,3,4,4,7.3,20.6,75.8,0,0,1,PC,PC,12.8325,0.008,,1,qlp-s46-ffi,QLP,08:44:45.93,16:14:37.15,-6.348,0.049,-6.114,0.028,2459575.676862,0.0045724,4.7464485,1.68e-05,2.408,0.404,2.108374,0.002983,1940.0,2.74774,10.3209,0.71537,281.823,1141.0,12.0,1175.98,43.015,5890.5,110.4,3.76,0.08,2.26,0.13,0.107083,0.0335047,1.07,0.133169,"44,45,46",2022-02-08,2022-02-08,2023-02-19 00:00:00,marginal TESS detection; EPIC ID 211724246,5158,1,False,False,False -286712787,5159.01,,2,4,2,2,4,4,4,2.5,6.7,2.46,0,2,4,PC,PC,8.6739,0.006,,1,qlp-s46-ffi,QLP,09:31:08.63,20:01:09.64,0.145,0.186,-67.278,0.209,2459567.004212,0.005013,5.8382783,0.0017124,2.478,0.44,0.282328,0.001221,260.0,1.1247,1.36437,0.124352,110.835,903.0,9.0,55.1788,0.1828,5259.0,119.5,4.53,0.08,0.85,0.05,,,0.9,0.115128,"45,46",2022-02-08,2022-02-08,2022-12-14 12:09:24,small PC; low SNR,5159,1,False,False,True -4165850,5160.01,,2,4,2,2,3,4,4,2.9,33.2,5.32,1,2,2,PC,PC,10.187,0.006,,1,qlp-s60-ffi,QLP,07:38:33.46,31:23:40.03,-10.013,0.072,4.252,0.063,2459959.240184,0.0065362,4.2807917,6.65e-05,2.047,0.321,0.529969,0.03856,488.0,35.5149,2.15469,0.145951,180.009,1020.0,12.0,151.465,1.035,5653.3,111.1,4.41,0.07,1.03,0.05,0.204,0.018,1.003,0.128826,"20,44,45,46,47,60",2022-02-08,2023-02-27,2023-03-03 12:11:24,,5160,1,False,False,True -277697921,5161.01,,2,4,2,2,4,4,4,2.7,24.5,9.12,5,1,5,PC,PC,12.1875,0.006,,1,qlp-s46-ffi,QLP,10:13:24,03:57:36.47,-3.152,0.068,-14.097,0.065,2459577.648713,0.0056979,5.7519475,2.02e-05,2.428,0.215,1.303666,0.000719,1200.0,0.662236,2.96374,0.295888,37.7733,690.0,16.0,157.656,1.3555,4181.8,127.7,4.4,0.11,0.84,0.08,0.17,0.085,0.654,0.0792452,"8,45,46",2022-02-08,2022-02-08,2022-12-14 12:09:24,marginal QLP detection,5161,1,False,False,True -60286662,5162.01,,5,5,5,5,5,5,5,5.8,31.6,45.49,0,0,3,KP,KP,13.2027,0.007,,1,qlp-s46-ffi,QLP,08:20:53.74,16:05:26.86,9.738,0.068,-34.554,0.034,2459572.874426,0.0187552,8.5624411,9.65e-05,3.006,0.441,5.998949,0.010569,5510.0,9.734,7.61233,,73.768,816.0,36.0,564.454,13.7,5545.3,88.6,4.41,,1.02,,-0.422,0.086,0.98,,"44,45,46",2022-02-08,2022-02-08,2022-12-14 12:09:24,K2-271 b; marginal TESS detection,5162,1,False,False,True -115010361,5163.01,,5,5,5,5,5,5,5,3.4,31.5,22.59,0,1,6,KP,KP,11.6271,0.007,,1,qlp-s50-tois,QLP,13:26:28.05,-02:16:54.85,-38.804,0.067,-4.082,0.053,2459674.578483,0.0036536,15.4658691,3.93e-05,3.16,0.279,2.587132,0.001254,2380.0,1.15527,5.07911,0.266584,33.0649,668.0,27.0,268.515,3.679,5480.8,106.3,4.41,0.08,1.02,0.05,-0.232,0.028,0.96,0.126936,"23,46,50",2022-02-08,2022-12-12,2022-12-16 12:08:26,K2-353 b,5163,1,False,False,False -6892385,5164.01,,5,5,5,5,5,5,5,3.1,34.6,10.92,0,2,4,KP,KP,11.2089,0.006,,1,qlp-s46-ffi,SPOC/QLP,08:21:40.87,13:29:51.04,6.963,0.065,-4.878,0.04,2459578.481006,0.0029654,8.2669764,1.13e-05,3.334,0.142,1.401504,0.000426,1290.0,0.392656,3.31527,0.208546,95.5791,871.0,46.0,197.989,1.5425,5411.1,139.0,4.49,0.09,0.92,0.05,0.32768,0.0150921,0.941,0.119116,"44,45,46",2022-02-08,2022-02-08,2022-12-14 12:09:24,K2-105 b,5164,1,False,False,True -349986198,5165.01,,1,4,1,1,4,4,4,3.7,27.4,10.96,0,1,6,PC,PC,12.5389,0.007,,1,qlp-s46-ffi,QLP,10:17:00.04,06:51:59.32,-63.855,0.047,4.976,0.05,2459546.601483,0.0929042,3.577501,0.000206,1.662,0.276,1.412375,0.001661,1300.0,1.53004,3.3001,0.246493,95.4633,870.0,15.0,245.302,2.09,4642.1,107.9,4.43,0.09,0.87,0.06,0.0663889,0.0341866,0.74,0.0850912,"45,46",2022-02-08,2022-02-08,2022-12-14 12:09:24,marginal TESS detection; potential L1 candidate,5165,1,False,False,True -59582240,5166.01,,3,4,3,3,4,4,4,4.2,44.9,3.57,0,2,4,PC,PC,10.0063,0.006,,1,qlp-s46-ffi,QLP,09:43:18.61,15:00:14.5,-77.045,0.084,-79.201,0.068,2459576.329573,0.0054858,1.7726881,0.0003463,1.409,0.348,0.42352,0.002757,390.0,2.53953,1.7148,0.182078,482.108,1305.0,9.0,112.335,0.621,5502.0,135.3,4.53,0.08,0.89,0.05,,,0.965,0.128101,"45,46",2022-02-08,2022-02-08,2022-12-14 12:09:24,low SNR,5166,1,False,False,True -458686504,5167.01,,3,4,3,3,1,4,4,12.9,14.7,317.0,1,0,0,PC,PC,13.3935,0.009,,1,qlp-s46-ffi,QLP,08:55:16.31,11:32:55.92,0.159,0.048,-3.108,0.033,2459570.120096,0.0031622,4.8717993,1.21e-05,4.125,0.157,6.98197,0.000344,6410.0,0.316859,14.3194,,819.404,1490.0,15.0,1425.02,59.235,6504.4,32.5,4.05,,1.8,,-0.097,0.031,1.33,,"44,45,46",2022-02-08,2022-02-08,2022-12-14 12:09:24,K2 candidate; EPIC ID 211393988,5167,1,False,False,False -363548415,5168.01,,5,5,5,5,5,5,5,6.6,45.2,22.86,0,1,4,KP,KP,11.9186,0.006,,1,qlp-s46-ffi,QLP,11:26:03.64,01:13:50.25,3.434,0.066,-26.977,0.057,2459575.551944,0.0033676,6.7713411,8.4e-06,2.836,0.368,3.185877,0.0014,2930.0,1.28903,5.07965,0.345574,144.17,965.0,31.0,249.645,2.465,5231.0,137.3,4.49,0.09,0.89,0.06,0.13,0.1,0.89,0.109648,"45,46",2022-02-08,2022-02-08,2022-12-14 12:09:24,K2-27 b,5168,1,False,False,True -350023518,5169.01,,1,4,1,1,4,4,4,6.8,104.3,5.36,5,2,4,PC,PC,8.1644,0.006,,1,qlp-s46-ffi,SPOC/QLP,10:19:28.54,06:34:57.96,-41.684,0.077,-48.011,0.069,2459578.210887,0.0022577,8.0385429,0.0006683,1.532,0.213,0.749417,0.001143,690.0,1.05257,2.1583,0.15897,17.4699,569.0,20.0,36.2194,0.07735,5002.0,120.069,4.56836,0.0851961,0.78,0.05,,,0.83,0.0985157,"45,46",2022-02-08,2022-02-08,2022-12-14 12:09:24,variable star,5169,1,False,False,True -330690135,5170.01,,5,5,5,5,5,5,5,4.0,31.0,28.01,0,1,3,KP,KP,11.5559,0.007,,1,spoc-s42-s46-b0A,SPOC,09:07:09.43,15:12:20.44,-5.996,0.076,-10.886,0.059,2459558.616394,0.004437971,14.7565014944677,0.0016876621,4.9375033182692,0.37319934,2.433126,0.14796,2238.48300345558,136.26735,5.73956169727001,0.9270195,102.126649480039,810.782788063575,12.945139,343.99,5.1565,5790.7,105.0,4.3,0.07,1.201740026474,0.0541709,0.118188,0.0272167,1.04,0.134105,"44,45,46",2022-02-08,2022-07-15,2022-12-14 12:09:24,K2-333 b,5170,1,False,False,True -110996418,5171.01,TIC 110996418.01,3,4,3,3,1,4,4,9.5,43.3,114.15,0,1,3,PC,PC,13.4003,0.006,,1,spoc-s01-s46-b0A,SPOC,12:34:47.23,-10:19:10.96,-8.077,1.787,-10.82,1.287,2459559.099655,0.0043874085,15.7815790570578,7.8728546e-05,3.99939720730407,0.30025932,13.116209,0.817475,12007.7992640843,752.6389,11.7676797114978,0.6352225,65.8903912309343,726.649988679887,15.210717,696.695,,5780.0,,4.438,,1.0,,,,,,"10,46",2022-02-08,2022-07-15,2022-12-14 12:09:24,Rs = 0.96 Rsun from K2 obs. notes; SPOC is assuming solar parameters,5171,1,False,False,True -53287554,5172.01,TIC 53287554.01,1,4,1,1,4,4,4,8.0,73.5,9.96,6,2,3,PC,PC,10.648,0.006,,1,spoc-s46-b02,SPOC,12:51:57.57,-00:29:56.54,12.446,0.104,-37.564,0.089,2459552.170815,0.0050463066,4.72180772748285,0.0014607732,2.7238343024352,0.30422735,1.532462,0.13599,1410.45393739871,125.243416,3.12413795730586,0.38128746,80.1967212673185,763.236098491899,11.499211,84.1815,0.38335,4570.0,118.117,4.59581,0.0931772,0.70761501789093,0.0515578,,,0.72,0.0841192,46,2022-02-08,2022-02-08,2022-12-14 12:09:24,,5172,1,False,False,True -98669309,5173.01,,5,5,5,5,5,5,5,18.2,46.8,111.88,0,0,3,KP,KP,14.1768,0.008,,1,spoc-s46-b02,SPOC,12:24:20.47,-06:22:44.23,-18.592,0.079,-14.043,0.046,2459552.707286,0.003681751,4.00357732993897,0.00088797754,2.09581532830142,0.29475176,15.609307,1.237897,14273.8513136905,1139.4954,12.9627878525774,1.9405705,365.818540292479,1115.41422214137,10.604074,876.565,27.908,5318.0,122.0,4.33106,,1.08492004871368,,,,0.92,,46,2022-02-08,2022-02-08,2022-12-14 12:09:24,K2-253 b,5173,1,False,False,True -49428710,5174.01,TIC 49428710.01,3,4,3,3,4,4,4,5.0,43.1,19.17,0,2,4,PC,CP,10.6309,0.007,,1,spoc-s42-s46-b0A,SPOC,11:36:26.28,-02:01:24.06,6.788,0.085,-70.792,0.054,2459527.295749,0.0034396003,12.2199346137016,0.0011833641,4.7166317955235,0.34353784,1.885791,0.114347,1735.36992791787,105.31213,4.59314208925885,0.8493451,100.911162414728,808.359509681409,15.702229,197.243,2.1815,5643.77,110.947,4.35958,0.0736267,1.09457004070282,0.0513442,0.415,0.02,1.0,0.125268,"45,46",2022-02-08,2022-07-15,2023-03-03 12:02:44,,5174,1,False,False,True -55266835,5175.01,,3,4,3,3,3,4,4,36.1,44.2,317.0,2,0,2,PC,PC,13.0207,0.007,,1,spoc-s42-s46-b0A,SPOC,09:17:17.87,15:58:47.35,-4.214,0.048,-1.847,0.033,2459554.977553,0.001469899,6.85484645911496,0.0002769813,1.5226064012698,0.06860644,17.817143,0.922628,16276.2815793975,849.4104,15.6545004408488,0.68081576,126.507346077709,855.359505146359,24.047335,414.845,5.696,4797.5,34.9666,4.27798,,1.06192004680634,,0.201906,0.0325582,0.78,,"45,46",2022-02-08,2022-07-15,2023-04-05 00:00:00,close to synchronized; also a K2 PC,5175,1,False,False,True -437054764,5176.01,,3,4,3,3,1,4,4,3.0,47.7,78.3,0,3,1,PC,PC,14.6831,0.008,,1,spoc-s42-s46-b0A,SPOC,09:00:04.68,13:16:25.34,-71.736,0.088,-27.058,0.069,2459553.71434,0.0031329908,20.3550739068238,0.0022565296,3.50189364652252,0.255799,41.497855,2.28547,37499.7343542388,2102.782,10.5079933373964,0.6571722,3.57970063195212,350.817643227479,15.9675665,268.685,3.6615,3728.0,157.0,4.70337,0.0102615,0.539092004299164,0.0168765,,,0.535338,0.0208694,"44,45,46",2022-02-08,2022-07-15,2022-12-14 12:09:24,first event near start of orbit; also a K2 PC,5176,1,False,False,True -350033870,5177.01,,2,4,2,2,4,4,4,4.5,41.1,5.87,0,3,6,PC,PC,8.8471,0.007,,1,spoc-s46-b02,SPOC,10:20:17.4,07:16:24.91,17.551,0.076,-78.213,0.07,2459553.391481,0.005474675,2.2085877,9.2e-06,4.40388787310941,1.0694425,0.194639,0.023028,179.253363843764,21.209635,2.28937746682051,3.534112,3003.52609245092,1888.11134534947,7.654133,154.965,1.164,6183.0,128.3,4.06,0.08,1.68026995658875,0.0771106,,,1.18,0.164104,"45,46",2022-02-08,2022-02-08,2022-12-14 12:09:24,potential L1 planet; low SNR/MES; also a K2 target,5177,1,False,False,True -149969625,5178.01,,5,5,5,5,5,5,5,2.5,38.3,10.32,0,2,4,KP,KP,10.7875,0.006,,1,spoc-s46-b02,SPOC,12:19:36.12,00:58:05.98,29.168,0.098,-14.59,0.072,2459560.41257,0.003892966,14.0666014064463,0.0052145733,2.70783725139596,0.75385404,1.576357,0.20343,1450.82503071382,187.34854,3.19087766920857,2.8080952,37.081949881207,629.376307629561,7.6214685,134.591,1.189,5141.67,104.391,4.53051,0.0751918,0.837606012821198,0.0416307,0.105,0.043,0.868,0.101607,46,2022-02-08,2022-02-08,2022-12-14 12:09:24,K2-165 d,5178,1,False,False,True -288671122,5179.01,,3,4,4,3,4,4,4,46.2,153.1,26.26,3,2,5,PC,PC,11.3617,0.009,,1,qlp-s52-tois,QLP,18:41:00.4,83:03:20.69,-19.061,0.04,18.122,0.045,2459768.887248,0.0005578,0.2874782,2e-07,0.445,0.075,2.108374,0.01524,1940.0,14.0362,5.53402,0.498202,5953.77,2447.0,48.0,256.739,1.6705,5702.0,129.2,4.43,0.07,1.02,0.05,,,1.02,0.125814,"14,18,19,20,24,25,26,40,47,52",2022-02-28,2022-10-04,2023-06-05 00:00:00,found in faint-star QLP search; low a/Rs,5179,1,False,False,False -346972413,5180.01,,3,4,3,3,3,4,4,42.0,51.9,317.0,1,1,1,PC,PC,12.2175,0.014,,1,qlp-s40-faintsearch,QLP,18:51:30.62,19:33:36.89,4.182,0.066,0.005,0.089,2459413.390215,0.0013588,2.7779767,2.36e-05,1.753,0.161,8.600432,0.009047,7890.0,8.33302,15.9998,1.0191,609.495,1384.0,16.0,705.408,24.7675,6976.0,161.0,4.16,0.1,1.71,0.09,,,1.53,0.26467,"26,40",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5180,1,False,False,False -346667887,5181.01,,3,4,4,3,4,4,4,34.0,84.4,113.0,1,2,4,PC,PC,11.7242,0.009,,1,qlp-s40-faintsearch,QLP,18:42:42.59,21:41:59.35,8.258,0.031,2.798,0.046,2459415.698567,0.0013331,3.8922407,2.33e-05,2.652,0.236,6.643273,0.004633,6100.0,4.2674,13.0318,0.783838,387.931,1236.0,37.0,480.155,6.6805,5943.0,137.4,4.03,0.08,1.66,0.09,,,1.09,0.137298,"26,40",2022-02-28,2022-02-28,2023-07-07 00:00:00,found in faint-star QLP search,5181,1,False,False,False -99654378,5182.01,,3,4,3,3,3,4,4,5.6,48.0,16.28,0,2,2,PC,PC,11.1303,0.007,,1,qlp-s47-tois,QLP,08:16:48.79,71:17:12.83,12.431,0.049,6.32,0.062,2459598.659187,0.0020574,7.3039588,6.56e-05,3.218,0.304,2.228044,0.001837,2050.0,1.69203,4.15031,0.243239,149.732,974.0,21.0,208.267,1.7885,5718.0,127.2,4.53,0.08,0.9,0.04,,,1.02,0.129477,"26,40,47",2022-02-28,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search,5182,1,False,False,False -298829544,5183.01,,3,4,3,3,1,4,4,28.1,28.8,317.0,1,0,0,PC,PC,13.4685,0.007,,1,spoc-s56-b0A,QLP,19:11:03.46,52:14:40.85,-5.225,0.083,-10.256,0.068,2459826.517658,0.002552911,2.7389544,1.87e-05,3.44832771895568,0.17594473,9.974437,0.411579,9144.72605921457,379.00668,15.7298026732349,0.602194,1691.94856558811,1635.74853009334,15.567832,1084.09,43.235,5919.0,122.0,4.1,,1.54250001907349,,,,1.08,,"15,40,56",2022-02-28,2023-03-17,2023-03-24 12:12:10,found in faint-star QLP search,5183,1,False,False,False -28643432,5184.01,,5,5,5,5,5,5,5,28.1,72.9,79.16,1,2,0,PC,FP,11.649,0.009,,1,qlp-s40-faintsearch,QLP,18:50:47.97,34:29:41.13,-7.173,0.039,-7.145,0.045,2459418.221331,0.001655,2.2751393,1.11e-05,2.087,0.591,3.643322,0.008163,3350.0,7.51845,10.5509,0.714627,1207.23,1642.0,24.0,504.97,6.169,5810.0,123.9,3.99,0.08,1.71,0.08,,,1.04,0.13,"14,26,40",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5184,1,False,False,False -462808933,5185.01,,3,4,4,3,3,4,4,35.1,42.6,317.0,2,0,1,PC,PC,12.3595,0.012,,1,qlp-s40-faintsearch,QLP,18:30:21.52,16:54:30.7,2.504,0.071,-3.629,0.073,2459414.668268,0.0017531,4.2788309,2.95e-05,4.399,0.231,8.447231,0.003271,7750.0,3.01276,17.4175,1.05619,1098.85,1603.0,27.0,770.483,26.5795,6353.0,144.2,3.94,0.09,1.98,0.11,,,1.26,0.192991,"26,40",2022-02-28,2022-02-28,2023-07-01 00:00:00,found in faint-star QLP search,5185,1,False,False,False -68453985,5186.01,,3,4,4,3,3,4,4,51.1,74.9,317.0,6,1,1,PC,PC,12.2428,0.017,,1,qlp-s40-faintsearch,QLP,19:26:21.55,17:03:48.89,0.146,0.046,-3.603,0.043,2459416.39218,0.0010426,2.503254,1.08e-05,2.828,0.134,10.868146,0.003835,9960.0,3.53245,17.5644,0.750468,3356.68,2120.0,20.0,804.742,20.562,8076.0,180.8,4.25,0.08,1.73,0.06,,,1.96,0.312055,"14,40",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5186,1,False,False,False -441590110,5187.01,,3,4,3,3,3,4,4,3.4,27.3,31.23,0,2,2,PC,PC,11.6215,0.007,,1,qlp-s47-tois,QLP,07:33:05.5,77:34:39.71,-5.687,0.035,-11.938,0.038,2459596.505388,0.0049427,17.8597459,0.0001572,4.862,0.391,2.369489,0.002348,2180.0,2.163,6.12838,0.34412,80.0325,833.0,17.0,436.183,4.8755,6263.0,123.1,4.3,0.08,1.3,0.06,,,1.22,0.176911,"19,20,26,40,47",2022-02-28,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search,5187,1,False,False,False -141677268,5188.01,,3,4,3,3,3,4,4,4.1,21.2,39.0,0,2,1,PC,PC,10.5784,0.006,,1,qlp-s52-tois,QLP,07:27:42.34,83:38:49.53,26.919,0.042,14.297,0.046,2459918.195827,0.0051833354,22.43341,0.0002413,6.077,0.656,1.021072,0.001187,940.0,1.09305,6.9652,0.467528,46.3189,726.0,17.0,357.174,3.418,5395.0,130.5,3.7,0.08,2.25,0.13,,,0.937,0.125423,"19,20,26,40,47,52,59,60",2022-02-28,2023-05-19,2023-05-19 00:00:00,found in faint-star QLP search,5188,1,False,False,False -408549705,5189.01,,5,5,5,5,5,5,5,22.5,33.7,317.0,1,0,1,EB,FP,12.9177,0.013,,1,qlp-s52-tois,QLP,06:16:20.21,87:19:03.04,0.056,0.033,-2.664,0.032,2459753.52285,0.0018893,9.5064017,2.98e-05,3.258,0.315,9.498187,0.717647,8710.0,660.759,14.3253,3.14276,287.739,1147.0,16.0,497.269,3.5445,5999.0,141.1,4.41,0.08,1.09,0.05,,,1.11,0.144507,"19,20,25,40,47,52,59",2022-02-28,2023-05-22,2023-05-22 00:00:00,found in faint-star QLP search; centroid offset centered on another star in spoc s59,5189,1,False,False,False -289574465,5190.01,,3,4,4,3,3,4,4,20.1,65.3,107.67,1,2,1,PC,PC,11.7191,0.007,,1,qlp-s40-faintsearch,QLP,18:35:07.67,36:36:56.28,-0.352,0.036,-1.371,0.04,2459413.172126,0.0017694,5.7488688,4.2e-05,4.412,0.236,5.529597,0.002669,5080.0,2.45816,12.6677,0.633074,786.234,1475.0,26.0,675.281,9.674,6728.0,127.4,4.12,0.09,1.73,0.08,,,1.43,0.247125,"26,40",2022-02-28,2022-02-28,2023-05-06 00:00:00,found in faint-star QLP search,5190,1,False,False,False -359469754,5191.01,,3,4,3,3,3,4,4,32.3,41.1,317.0,0,0,1,PC,PC,12.6103,0.164,,1,qlp-s40-faintsearch,QLP,19:26:16.22,18:59:42.93,-0.452,0.029,-6.847,0.036,2459417.858614,0.0040663,3.0278609,2.76e-05,3.669,0.375,7.27705,0.010309,6680.0,9.49451,15.5158,0.928047,4163.14,2237.0,15.0,757.613,14.7465,8032.0,1134.2,4.17,0.14,1.9,0.08,,,1.94,0.545132,"14,40",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5191,1,False,False,False -336125492,5192.01,,3,4,3,3,1,4,4,27.2,33.6,317.0,1,2,0,PC,PC,12.5231,0.008,,1,qlp-s40-faintsearch,QLP,18:44:15.83,38:00:26.43,-2.836,0.043,-5.382,0.048,2459416.096484,0.0018788,4.7271324,1.87e-05,4.672,0.191,9.377714,0.002844,8600.0,2.61966,16.0689,0.814824,868.672,1512.0,33.0,825.977,17.15,6121.7,109.4,4.02,0.08,1.74,0.08,-0.146,0.036,1.16,0.15654,"14,26,40",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5192,1,False,False,False -336126253,5193.01,,3,4,3,3,2,4,4,2.6,31.7,20.68,0,2,1,PC,PC,11.8002,0.006,,1,qlp-s40-faintsearch,QLP,18:44:17.79,37:21:58.18,1.858,0.037,33.042,0.037,2459408.15505,0.006186,18.9972068,0.0002025,3.906,0.517,3.218545,0.006155,2960.0,5.66922,4.7954,0.334897,28.2737,642.0,11.0,253.938,1.4435,5469.0,123.8,4.53,0.08,0.88,0.04,,,0.957,0.119929,"14,26,40",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5193,1,False,False,False -288612903,5194.01,,3,4,3,3,2,4,4,12.8,49.7,69.35,1,2,1,PC,PC,12.1605,0.008,,1,qlp-s40-faintsearch,QLP,18:20:20.47,40:19:57.41,-0.376,0.041,-15.717,0.041,2459408.106913,0.0018483,7.0485133,5.75e-05,3.543,0.258,5.38774,0.003166,4950.0,2.91602,9.80458,0.528981,202.23,1050.0,27.0,526.642,6.109,5889.0,123.5,4.2,0.08,1.37,0.06,,,1.07,0.134787,"26,40",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5194,1,False,False,False -357145112,5195.01,,3,4,3,3,4,4,4,35.0,86.7,107.31,3,2,2,PC,PC,12.1391,0.006,,1,qlp-s40-faintsearch,QLP,19:20:29.96,23:49:09.08,-9.374,0.042,-1.533,0.048,2459416.086326,0.0022328,3.1523405,1.51e-05,3.111,0.244,7.014753,0.006977,6440.0,6.42572,12.6359,0.813147,895.126,1523.0,19.0,491.054,7.456,6124.0,456.0,4.13,0.12,1.54,0.08,,,1.157,0.224507,"14,40",2022-02-28,2022-02-28,2023-07-07 00:00:00,found in faint-star QLP search,5195,1,False,False,False -383828887,5196.01,,3,4,3,3,2,4,4,26.2,67.5,106.74,2,0,2,PC,PC,13.2357,0.007,,1,qlp-s40-faintsearch,QLP,18:56:38.61,33:16:46.25,-1.158,0.026,-10.127,0.029,2459418.347453,0.0025875,2.5677096,1.39e-05,2.882,0.196,11.383698,0.012559,10430.0,11.5672,12.6572,,917.773,1533.0,18.0,763.703,9.5725,5854.0,122.0,4.28,,1.24,,,,1.06,,"14,40",2022-02-28,2022-02-28,2023-06-20 00:00:00,found in faint-star QLP search,5196,1,False,False,False -219431828,5197.01,,3,4,3,3,3,4,4,7.4,61.9,55.2,1,2,2,PC,PC,11.906,0.006,,1,qlp-s47-tois,QLP,09:46:51,76:53:37.86,-13.01,0.038,-41.276,0.043,2459588.291193,0.0013911,20.5773388,5.8e-05,1.503,0.259,9.290105,0.014914,8520.0,13.7363,8.59393,0.629426,2.81608,360.0,26.0,232.248,1.3955,5062.0,122.2,4.47,0.09,0.89,0.05,,,0.85,0.0977076,"20,40,47",2022-02-28,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search; V-shaped,5197,1,False,False,False -193628179,5198.01,,5,5,5,5,5,5,5,36.8,96.3,115.07,0,0,0,PC,FP,11.9993,0.008,,1,qlp-s40-faintsearch,QLP,17:46:14.94,46:29:54.03,6.191,0.042,-10.148,0.047,2459415.348922,0.0007658,3.2623468,8.3e-06,2.91,0.215,9.312006,0.0025,8540.0,2.30303,13.2175,0.746512,689.893,1427.0,71.0,504.372,5.6395,5957.4,142.7,4.18,0.08,1.41,0.08,0.341,0.032,1.09,0.140991,"25,26,40",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5198,1,False,False,False -298049015,5199.01,,5,5,5,5,5,5,5,24.4,69.2,104.0,2,0,0,PC,FP,14.9652,0.008,,1,qlp-s41-faintsearch,QLP,12:21:20.7,81:38:51.66,-3.769,0.098,3.148,0.076,2459438.721301,0.0047744,3.9131371,0.0006544,1.846,0.355,41.904324,0.25688,37860.0,236.567,12.4444,1.12235,25.4932,625.0,10.0,372.355,6.7285,3773.0,157.0,4.64,0.01,0.62,0.02,,,0.603055,0.0212929,"40,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5199,1,False,False,False -21101556,5200.01,,3,4,3,3,3,4,4,12.4,61.7,90.69,0,7,2,PC,PC,11.3862,0.007,,1,qlp-s48-tois,QLP,18:17:41.28,52:34:19.94,-2.654,0.037,-3.732,0.037,2459887.497008,0.0039044754,17.4372954,0.000114,2.967,0.362,2.238923,0.620556,2060.0,571.39,11.4845,3.78653,215.608,1067.0,17.0,451.568,4.6525,6520.0,132.2,4.26,0.09,1.43,0.06,,,1.34,0.204825,"14,15,18,21,25,26,40,41,48,58",2022-02-28,2023-03-22,2023-03-22 00:00:00,found in faint-star QLP search; slightly v-shaped,5200,1,False,False,False -267810289,5201.01,,3,4,3,3,1,4,4,34.6,42.5,317.0,3,0,0,PC,PC,13.306,0.007,,1,qlp-s50-tois,QLP,19:32:23.04,58:22:07.98,-4.569,0.03,-4.699,0.031,2459686.760358,0.0011175,3.8558229,6.3e-06,3.462,0.079,15.010442,0.001877,13730.0,1.72897,17.8128,,502.171,1318.0,63.0,914.238,11.6475,5704.0,123.0,4.1,,1.48,,,,1.02,,"14,15,16,17,20,23,40,41,47,50",2022-02-28,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search,5201,1,False,False,False -320324079,5202.01,,3,4,3,3,3,4,4,2.7,20.4,46.34,0,32,2,PC,PC,11.5405,0.009,,1,qlp-s51-tois,QLP,16:25:50.03,74:50:16.99,-9.516,0.035,21.8,0.037,2459684.507843,0.0047257,34.6141657,0.0002519,2.66,1.184,1.597206,0.086485,1470.0,79.6523,7.6965,1.72567,31.4696,659.0,12.0,567.18,5.708,6382.0,125.9,4.07,0.09,1.72,0.07,,,1.28,0.210483,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51",2022-02-28,2022-09-02,2022-12-14 12:09:24,found in faint-star QLP search; weak centroid offset and depth aperture correlation,5202,1,False,False,False -158323182,5203.01,,3,4,3,3,1,4,4,3.9,15.0,75.03,0,0,0,PC,PC,12.6934,0.006,,1,qlp-s41-faintsearch,QLP,19:07:37.65,47:54:18.88,-0.051,0.026,-4.643,0.027,2459423.366212,0.0122987,15.1255732,0.0003451,6.424,0.967,2.260683,0.007043,2080.0,6.48721,10.2442,0.849297,161.672,993.0,9.0,1119.77,19.87,5907.2,140.3,3.75,0.09,2.28,0.12,0.0731765,0.0154349,1.07,0.139465,"14,15,26,40,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5203,1,False,False,False -65845738,5204.01,,3,4,3,3,1,4,4,36.8,34.2,317.0,1,2,0,PC,PC,12.3428,0.103,,1,qlp-s41-faintsearch,QLP,20:43:45.32,40:17:53.05,10.545,0.056,6.208,0.052,2459825.299287,0.0015837926,1.593603,7.5e-06,3.244,0.277,5.769705,0.003242,5300.0,2.98608,14.4804,0.755636,5402.33,2388.0,26.0,821.754,23.463,6589.0,613.0,3.98,0.11,1.99,0.09,,,1.37,0.314778,"15,41,56",2022-02-28,2023-03-17,2023-03-17 00:00:00,found in faint-star QLP search,5204,1,False,False,False -419411415,5205.01,,3,5,5,3,4,4,4,128.3,330.9,85.22,5,0,0,PC,CP,13.6136,0.009,,1,qlp-s41-faintsearch,QLP,20:55:04.96,24:21:39.52,41.772,0.079,52.161,0.075,2459443.470673,0.0005016,1.6306523,5.68e-05,1.202,0.083,76.518468,0.040249,68050.0,37.07,11.1125,0.428663,30.1966,653.0,84.0,86.4493,0.41585,3262.0,157.0,4.83,,0.4,0.01,,,0.388752,0.0203937,41,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5205,1,False,False,False -159117779,5206.01,,3,4,3,3,1,4,4,20.4,22.9,317.0,0,0,0,PC,PC,12.8715,0.007,,1,qlp-s48-tois,QLP,12:51:37.25,78:01:38.08,2.415,0.031,-3.707,0.023,2459634.597943,0.0018283,4.4716261,1.56e-05,6.451,0.192,5.442298,0.001059,5000.0,0.975158,17.4958,0.935213,1694.87,1787.0,11.0,1297.27,24.245,5972.0,128.3,3.72,0.08,2.41,0.12,,,1.1,0.13836,"14,20,21,26,40,41,47,48",2022-02-28,2022-06-29,2022-12-14 12:09:24,found in faint-star QLP search,5206,1,False,False,False -147892178,5207.01,,3,4,3,3,1,4,4,1.7,42.3,34.27,0,0,0,PC,PC,13.2754,0.007,,1,qlp-s47-tois,QLP,09:30:55.02,71:44:24.92,-15.026,0.024,-27.223,0.028,2459585.838983,0.0038425,24.6951647,0.0001775,3.696,0.411,14.526176,0.015067,13290.0,13.8769,6.41046,0.298545,3.18912,372.0,18.0,156.815,0.4225,3850.0,157.0,4.68,0.01,0.56,0.02,,,0.558209,0.0201886,"14,20,40,41,47",2022-02-28,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search,5207,1,False,False,False -110738386,5208.01,,3,4,3,3,4,4,4,10.7,55.3,56.38,1,2,4,PC,PC,11.4731,0.006,,1,qlp-s41-faintsearch,QLP,19:26:09.86,28:41:18.82,2.962,0.83,-0.206,0.83,2459423.385838,0.0022461,12.2307873,0.0001094,3.627,0.28,4.711445,0.004845,4330.0,4.46222,8.68366,,85.8245,,14.0,386.638,,6164.0,,,,1.31,,,,,,"14,40,41",2022-02-28,2022-02-28,2023-07-04 00:00:00,found in faint-star QLP search; detrending issues in one sector affecting transit shape,5208,1,False,False,False -111108561,5209.01,,3,4,4,3,3,4,4,60.0,155.5,124.07,2,0,1,PC,PC,12.8462,0.006,,1,qlp-s41-faintsearch,QLP,19:27:29.11,25:27:11.99,-3.037,0.028,-0.068,0.032,2459443.478986,0.000881,2.635737,7.3e-06,2.207,0.103,23.597925,0.010339,21500.0,9.52251,13.8231,0.764196,479.892,1303.0,38.0,404.438,3.271,5900.0,209.1,4.54,0.08,0.92,0.05,,,1.072,0.132283,"14,40,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5209,1,False,False,False -265979849,5210.01,,3,4,4,3,3,4,4,38.3,113.9,93.09,2,2,2,PC,PC,11.4194,0.006,,1,qlp-s41-faintsearch,QLP,20:57:16.06,21:57:00.74,23.297,0.054,3.435,0.043,2459443.959352,0.0007126,4.5661309,7.9e-06,3.543,0.205,8.315933,0.001609,7630.0,1.48185,11.6029,0.618573,377.954,1228.0,77.0,302.086,2.682,5569.0,151.3,4.21,0.08,1.28,0.07,,,0.982,0.130795,"15,41",2022-02-28,2022-02-28,2023-06-28 00:00:00,found in faint-star QLP search,5210,1,False,False,False -215595454,5211.01,,3,4,3,3,1,4,4,42.9,54.6,317.0,1,0,0,PC,PC,13.3285,0.01,,1,qlp-s41-faintsearch,QLP,19:40:40.33,28:40:57.21,-0.295,0.023,-6.593,0.027,2459445.520941,0.0035171,2.0961984,0.0002699,3.22,0.255,14.988425,0.019769,13710.0,18.2078,18.2172,,2405.31,1951.0,18.0,1054.17,17.98,6379.0,122.0,4.15,,1.57,,,,1.27,,"40,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search; ephemeris match to TIC 2155954564 but this appears to be the correct source,5211,1,False,False,False -424699834,5212.01,,5,5,5,5,5,5,5,22.2,56.9,93.8,1,0,0,EB,FP,12.8257,0.007,,1,spoc-s14-s60-b0A-PC,QLP,19:37:50.2,58:59:12.2,-7.142,0.038,-12.713,0.03,2459826.176137,0.0035112626,2.40114065612324,0.00013257423,3.69264110111552,0.25668642,3.47338,0.300334,3193.98930376973,276.5797,11.6862609016301,5.5325575,1918.62018784631,1687.97885510914,18.24495,790.407,9.6785,5911.0,129.0,4.11,0.08,1.50878000259399,0.0740277,,,1.08,0.130424,"14,15,16,17,20,23,24,40,41,47,50,56,57,58,60",2022-02-28,2023-05-22,2023-06-16 12:14:51,found in faint-star QLP search; retired as TFOP FP/EB,5212,1,False,False,False -247356332,5213.01,,3,4,3,3,1,4,4,43.9,64.6,317.0,2,0,0,PC,PC,12.8179,0.015,,1,qlp-s41-faintsearch,QLP,20:37:06.21,29:21:55.48,-1.595,0.029,-0.189,0.027,2459445.58846,0.0027955,4.5333993,2.26e-05,1.083,0.445,8.38158,3.257345,7690.0,2995.63,16.84,6.78721,159.735,990.0,10.0,625.326,8.7165,6254.0,153.2,4.42,0.09,1.12,0.05,,,1.21,0.189877,"14,15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5213,1,False,False,False -7583660,5214.01,,3,4,3,3,1,4,4,14.3,33.5,117.11,1,2,0,PC,PC,12.0228,0.007,,1,qlp-s41-7583660,QLP,18:10:09.04,47:52:32.43,-2.938,0.043,3.143,0.053,2459445.571125,0.0024711,5.3333965,3.82e-05,5.577,0.361,2.946339,0.001625,2710.0,1.49702,13.3147,0.87594,871.955,1513.0,18.0,893.944,21.2615,5840.8,140.2,3.65,0.08,2.53,0.15,0.353,0.028,1.05,0.127708,"14,25,26,40,41",2022-02-28,2022-03-29,2022-12-14 12:09:24,found in faint-star QLP search,5214,1,False,False,False -236632480,5215.01,,3,4,3,3,2,4,4,12.4,44.0,86.67,1,0,1,PC,PC,12.8507,0.015,,1,qlp-s41-faintsearch,QLP,20:59:56.99,31:29:07,-4.014,0.021,-4.631,0.024,2459443.206935,0.0038216,7.4244269,7.34e-05,3.655,0.474,7.944008,0.015577,7290.0,14.3468,11.1736,0.805202,196.654,1043.0,15.0,666.058,7.4415,5873.0,158.7,4.21,0.08,1.34,0.07,,,1.06,0.144668,"15,41",2022-02-28,2022-02-28,2023-06-20 00:00:00,found in faint-star QLP search,5215,1,False,False,False -256561562,5216.01,,3,4,3,3,1,4,4,9.1,27.0,74.31,0,0,0,PC,PC,12.9392,0.007,,1,qlp-s51-tois,QLP,19:59:45.03,61:39:11.39,-1.944,0.024,-4.043,0.025,2459714.938781,0.0028736,1.8951273,7.3e-06,3.518,0.293,2.315085,0.001414,2130.0,1.30236,10.1981,0.551156,5318.45,2379.0,24.0,1526.91,28.565,6818.0,129.2,3.89,0.09,2.28,0.11,,,1.47,0.247138,"14,15,16,17,18,21,24,41,47,48,51,57",2022-02-28,2023-01-30,2023-01-30 00:00:00,found in faint-star QLP search; variable host,5216,1,False,False,False -215018906,5217.01,,3,4,3,3,4,4,4,25.7,61.4,112.16,0,2,6,PC,PC,10.9992,0.006,,1,qlp-s54-tois,QLP,19:39:41.37,28:34:20.03,-7.516,0.046,-25.038,0.045,2459790.808604,0.0038523,4.3713133,6.38e-05,4.113,0.46,3.218545,0.194104,2960.0,178.76,12.9868,3.75756,847.146,1502.0,23.0,517.506,7.5775,6029.0,204.2,3.71,0.12,2.45,0.2,0.426,0.188,1.118,0.162216,"40,41,54",2022-02-28,2022-11-30,2022-12-14 12:09:24,found in faint-star QLP search,5217,1,False,False,False -259172249,5218.01,,3,4,3,3,1,4,4,14.0,50.7,64.64,0,0,0,PC,PC,14.5179,0.007,,1,spoc-s14-s60-b0A-PC,QLP,19:30:39.23,71:45:46.66,7.893,0.043,17.451,0.052,2459825.392121,0.0014917637,4.29148786096161,9.4888404e-05,2.34626557175045,0.13660301,21.027518,0.82401,19180.72337748,758.653,9.38757809242189,0.6077101,49.1792110518073,675.406349166229,23.207605,377.483,3.627,3937.0,157.0,4.59,0.01,0.67570698261261,0.0205381,,,0.646066,0.0205255,"41,47,48,49,56,57,59,60",2022-02-28,2023-05-25,2023-06-16 12:14:51,found in faint-star QLP search,5218,1,False,False,False -378708888,5219.01,,3,4,3,3,1,4,4,28.4,28.6,317.0,0,0,0,PC,PC,13.4066,0.018,,1,qlp-s41-faintsearch,QLP,20:11:18.84,34:22:06.63,-4.339,0.03,-15.491,0.037,2459442.47017,0.0045964,2.88753,2.49e-05,3.547,0.4,8.370639,0.015505,7680.0,14.2807,16.2965,,1422.54,1710.0,15.0,991.551,20.8575,6095.0,122.0,3.95,,1.87,,,,1.14,,"14,15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5219,1,False,False,False -394691478,5220.01,,3,4,4,3,1,4,4,41.5,54.5,317.0,5,0,0,PC,PC,13.1562,0.01,,1,qlp-s41-faintsearch,QLP,19:25:44.45,30:01:41.08,-2.196,0.029,-2.313,0.032,2459445.188913,0.0012648,2.0876485,7.8e-06,2.873,0.15,14.141118,0.006357,12940.0,5.85477,18.0794,,2243.2,1917.0,26.0,1094.99,23.405,6655.0,122.0,4.19,,1.58,,,,1.4,,"14,40,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5220,1,False,False,False -233409941,5221.01,,3,4,3,3,1,4,4,18.9,65.7,80.47,2,0,0,PC,PC,13.3911,0.01,,1,qlp-s57-tois,QLP,20:08:39.97,59:28:55.26,-13.162,0.027,-4.058,0.028,2459878.821878,0.0011752,4.4247361,7.6e-06,2.757,0.186,14.550384,0.509956,13312.0,469.577,10.688,,223.224,1076.0,38.0,539.904,3.8505,5536.0,122.0,4.48,,0.94,,,,0.97,,"14,15,16,17,41,55,57",2022-02-28,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; v-shaped; multiple stars in pixel,5221,1,False,False,False -30791047,5222.01,,3,5,5,3,3,4,4,11.8,47.3,123.4,0,2,1,PC,APC,11.3171,0.012,,1,qlp-s41-faintsearch,QLP,19:18:50.28,31:38:53.43,-0.51,0.059,-4.223,0.071,2459435.553446,0.00347,13.3057762,0.0001522,5.5,0.501,4.024674,0.004368,3700.0,4.02334,13.7171,0.827885,505.593,1321.0,10.0,900.45,35.1945,8104.0,153.6,4.02,0.08,2.26,0.11,,,1.97,0.311615,"14,40,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search; variable star,5222,1,False,False,False -377297285,5223.01,,3,4,3,3,1,4,4,34.6,52.3,317.0,3,0,0,PC,PC,13.0628,0.007,,1,spoc-s14-s60-b0A-PC,QLP,19:06:51.89,54:36:43.59,-5.723,0.03,-15.672,0.027,2459829.128867,0.0008943523,4.06569681870147,4.354478e-05,4.22756319827422,0.06927085,14.976029,0.212357,13698.7386687997,195.56935,18.7081977104626,0.22975263,1207.03701022633,1503.314672471,65.11341,1027.87,13.625,6424.0,122.0,4.18,,1.53115999698639,,,,1.3,,"14,15,16,19,40,41,49,56,59,60",2022-02-28,2023-05-25,2023-06-16 12:14:51,found in faint-star QLP search,5223,1,False,False,False -406361982,5224.01,,3,4,3,3,1,4,4,14.7,34.4,127.83,1,0,0,PC,PC,12.5459,0.022,,1,qlp-s55-tois,QLP,20:32:45.73,27:32:45.95,-7.002,0.027,-12.604,0.025,2459818.154198,0.0072097,5.2819763,4.63e-05,5.909,0.655,3.610641,0.226347,3320.0,208.452,14.0062,4.0342,1409.33,1706.0,18.0,960.824,17.475,6228.0,186.4,3.72,0.08,2.5,0.12,,,1.2,0.174345,"14,15,41,55",2022-02-28,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search,5224,1,False,False,False -383645563,5225.01,,3,4,3,3,1,4,4,4.1,25.9,59.21,0,0,0,PC,PC,12.5117,0.007,,1,qlp-s52-tois,QLP,18:35:23.21,60:25:40.42,-7.779,0.031,-20.515,0.034,2459831.811611,0.0037024654,22.9367426,0.0001174,1.706,0.51,3.828534,0.018778,3520.0,17.2949,8.88483,0.759682,5.57635,428.0,15.0,584.497,5.718,5721.0,126.1,4.19,0.08,1.34,0.07,,,1.02,0.127614,"15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,56,57,59,60",2022-02-28,2023-05-19,2023-05-19 00:00:00,found in faint-star QLP search,5225,1,False,False,False -195093356,5226.01,,3,5,5,3,1,4,4,62.5,110.1,317.0,0,2,0,PC,APC,11.8572,0.007,,1,qlp-s41-faintsearch,QLP,20:53:21.54,37:28:30.3,5.231,0.04,-1.491,0.046,2459432.674379,0.0007072,7.8284207,1.2e-05,5.456,0.138,35.827678,0.004386,32460.0,4.03967,17.0783,0.875392,275.376,1134.0,123.0,296.602,2.3845,5707.0,134.6,4.5,0.08,0.94,0.05,,,1.017,0.128845,"15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5226,1,False,False,False -313453776,5227.01,,3,4,3,3,3,4,4,21.5,76.3,61.0,2,2,1,PC,PC,11.6078,0.006,,1,qlp-s48-tois,QLP,13:14:44.29,75:14:09.57,-36.003,0.057,20.687,0.038,2459632.264968,0.0006423,3.7325203,4.4e-06,2.851,0.102,5.224082,0.000967,4800.0,0.890541,9.10598,0.451212,445.556,1279.0,86.0,388.807,3.902,5824.6,158.2,4.24,0.07,1.3,0.06,,,1.06,0.129,"15,20,21,40,41,47,48",2022-02-28,2022-07-07,2022-12-14 12:09:24,found in faint-star QLP search,5227,1,False,False,False -154014059,5228.01,,3,4,3,3,1,4,4,8.6,29.3,88.36,2,0,0,PC,PC,12.9534,0.007,,1,qlp-s49-tois,QLP,13:47:00.71,68:52:01.69,-0.678,0.033,-0.786,0.024,2459651.416456,0.0024238,8.3221959,3.55e-05,2.771,0.229,4.853214,0.004425,4460.0,4.0754,11.2943,0.649256,90.1896,858.0,22.0,925.944,13.4405,5899.0,120.2,4.03,0.08,1.65,0.08,,,1.07,0.133308,"14,15,21,22,41,47,48,49",2022-02-28,2022-08-16,2022-12-14 12:09:24,found in faint-star QLP search,5228,1,False,False,False -288428649,5229.01,TIC 288428649.01,2,4,2,2,3,4,4,3.0,26.8,11.91,0,2,3,PC,PC,11.9919,0.007,,1,qlp-s52-tois,QLP,17:56:08.52,78:12:47.24,3.477,0.039,-71.214,0.043,2459883.298899,0.009094398,5.9184575,2.2e-05,2.947,0.241,1.347148,0.000972,1240.0,0.894902,3.4729,0.227687,130.7,941.0,24.0,273.283,1.6965,5087.5,153.5,4.41,0.09,0.97,0.06,,,0.88,0.107852,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51,52,58",2022-02-28,2023-03-22,2023-03-24 12:12:10,found in faint-star QLP search; possible secondary,5229,1,False,False,False -55778666,5230.01,,3,4,3,3,1,4,4,17.4,66.3,98.94,1,0,0,PC,PC,13.1924,0.007,,1,qlp-s48-tois,QLP,12:09:20.12,57:30:12.96,7.924,0.027,-5.105,0.026,2459630.986564,0.0013044,7.1452343,1.71e-05,3.169,0.13,15.880463,0.005938,14520.0,5.46937,12.0822,,120.883,923.0,33.0,576.539,5.9405,5685.0,122.0,4.46,,0.98,,,,1.01,,"15,21,22,41,48",2022-02-28,2022-07-12,2022-12-14 12:09:24,found in faint-star QLP search,5230,1,False,False,False -105387356,5231.01,,5,5,5,5,5,5,5,16.2,41.7,76.61,0,0,0,PC,FP,11.4186,0.017,,1,qlp-s41-faintsearch,QLP,20:03:04.21,31:03:34.91,2.811,0.039,-5.302,0.05,2459445.816359,0.0058876,1.5163046,2.22e-05,3.619,0.489,1.281925,0.00354,1180.0,3.26034,10.3854,0.792852,7863.45,2623.0,12.0,876.326,22.547,6529.0,165.8,3.58,0.09,3.11,0.15,,,1.35,0.235575,"14,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5231,1,False,False,False -69356857,5232.01,,3,4,4,3,4,4,4,27.7,73.6,112.16,3,17,4,PC,PC,11.7791,0.009,,1,qlp-s41-faintsearch,QLP,19:37:20.98,35:16:35.38,-14.119,0.039,-35.952,0.04,2459440.069991,0.0013954,4.0966887,1.85e-05,4.557,0.195,6.119048,0.001928,5620.0,1.7761,12.9734,0.639339,1193.86,1637.0,26.0,609.388,8.6305,6212.0,128.4,4.04,0.08,1.74,0.08,,,1.2,0.168151,"14,40,41",2022-02-28,2022-02-28,2023-06-16 00:00:00,found in faint-star QLP search,5232,1,False,False,False -259100469,5233.01,,3,4,3,3,2,4,4,3.3,36.8,28.21,0,3,2,PC,PC,11.1752,0.01,,1,qlp-s52-tois,QLP,19:24:41.47,69:07:30.63,21.226,0.044,87.366,0.047,2459727.105947,0.0015343,25.763332,6.82e-05,1.668,0.23,2.783049,0.003019,2560.0,2.78039,5.77167,0.343342,3.75556,387.0,23.0,248.564,1.4095,5795.0,131.7,4.41,0.08,1.06,0.05,,,1.04,0.129249,"14,15,16,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,57,58",2022-02-28,2023-02-23,2023-02-25 12:10:55,found in faint-star QLP search; two stars in pixel,5233,1,False,False,True -335681838,5234.01,,2,4,2,2,4,4,4,1.1,17.7,7.82,0,2,4,PC,PC,10.8964,0.006,,1,qlp-s41-faintsearch,QLP,14:50:03.35,63:02:18.37,9.659,0.047,-12.506,0.05,2459442.434681,0.0139225,15.1016086,0.0004979,4.403,1.124,0.56473,0.002543,520.0,2.34201,2.71644,0.233876,126.721,934.0,9.0,302.144,2.184,6511.0,128.7,4.42,0.09,1.18,0.05,,,1.34,0.219902,"15,16,21,22,23,41,48,49",2022-02-28,2022-08-16,2022-12-14 12:09:24,found in faint-star QLP search; potential L1 candidate,5234,1,False,False,False -154814765,5235.01,,3,4,3,3,3,4,4,8.0,67.6,51.61,1,11,3,PC,PC,10.8131,0.006,,1,qlp-s47-tois,QLP,12:12:22.36,84:24:40.37,7.469,0.044,-4.822,0.042,2459559.856973,0.0032806,26.1442304,0.0002067,2.368,0.442,2.151889,0.658568,1980.0,606.38,8.19739,2.96378,35.8503,681.0,12.0,214.496,1.0225,5721.0,135.0,4.38,0.08,1.08,0.05,,,1.021,0.127512,"14,19,21,26,40,41,47",2022-02-28,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search,5235,1,False,False,True -193765661,5236.01,,3,4,3,3,3,4,4,9.4,34.7,70.9,0,22,1,PC,PC,11.3335,0.02,,1,qlp-s55-tois,QLP,20:25:08.77,43:13:59.6,-11.556,0.043,-10.361,0.043,2459807.154831,0.0060345,10.9974977,9.95e-05,7.182,0.85,3.697793,0.142979,3400.0,131.68,9.89885,2.79615,461.346,1291.0,11.0,582.527,8.9075,6188.0,181.5,3.83,0.09,2.18,0.1,,,1.18,0.174289,"14,15,41,55",2022-02-28,2022-12-07,2023-01-04 00:00:00,found in faint-star QLP search; multiple stars in pixel,5236,1,False,False,False -435740442,5237.01,,3,4,3,3,3,4,4,60.9,75.8,317.0,4,0,2,PC,PC,12.4705,0.006,,1,qlp-s41-faintsearch,QLP,19:49:58.86,29:53:28.51,8.162,0.037,3.93,0.044,2459444.873065,0.0051884,2.9889845,0.0013254,1.858,0.315,15.219624,0.077469,13920.0,71.3494,17.7415,1.56968,314.21,1172.0,10.0,603.735,9.8895,6002.0,144.7,4.18,0.08,1.42,0.07,,,1.107,0.148206,41,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5237,1,False,False,False -219016883,5238.01,,3,4,3,3,4,4,4,7.2,44.3,21.48,1,2,3,PC,CP,11.637,0.006,,1,qlp-s49-tois,QLP,14:53:26.13,68:51:34.1,-7.542,0.037,-18.493,0.032,2459661.51574,0.0013815,4.8721904,1.11e-05,2.584,0.15,2.369489,0.000747,2180.0,0.68771,4.89644,0.255533,195.925,1042.0,25.0,290.646,1.5395,5430.5,134.1,4.42,0.08,1.02,0.05,,,1.0,0.127538,"14,15,16,21,22,23,41,47,48,49",2022-02-28,2022-08-16,2023-03-03 12:03:01,found in faint-star QLP search,5238,1,False,False,False -230290708,5239.01,,3,4,3,3,1,4,4,6.6,32.8,58.63,1,0,0,PC,PC,12.7986,0.009,,1,qlp-s41-faintsearch,QLP,18:25:31.74,44:54:05.07,8.925,0.026,-21.366,0.025,2459431.315024,0.0040348,11.3182327,8.88e-05,2.956,0.297,5.529597,0.00782,5080.0,7.20219,8.83548,0.542817,59.5158,773.0,15.0,648.893,5.688,5969.0,130.2,4.29,0.08,1.24,0.06,,,1.1,0.139494,"14,26,40,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5239,1,False,False,False -40055053,5240.01,,1,4,1,3,2,4,4,25.4,34.3,317.0,0,11,1,PC,APC,11.6917,0.009,,1,qlp-s41-faintsearch,QLP,19:32:20.11,34:56:25.43,-0.519,0.038,0.524,0.04,2459444.902109,0.0013426,4.1793301,2.08e-05,5.161,0.198,5.333184,0.001289,4900.0,1.18721,16.1603,0.741838,2876.9,2040.0,26.0,980.487,24.951,7349.0,131.9,3.93,0.09,2.31,0.1,,,1.67,0.27645,"14,40,41",2022-02-28,2022-02-28,2023-06-07 00:00:00,found in faint-star QLP search,5240,1,False,False,False -305948428,5241.01,,3,4,3,3,4,4,4,26.7,74.4,99.01,1,2,3,PC,PC,12.1019,0.006,,1,qlp-s41-faintsearch,QLP,19:41:56.1,23:07:38.61,-11.829,0.039,-12.006,0.044,2459439.553965,0.0011536,4.8398399,1.97e-05,2.818,0.146,7.670615,0.003415,7040.0,3.14494,12.0967,0.736018,199.608,1047.0,27.0,441.596,5.595,5506.0,210.5,4.14,0.09,1.39,0.08,,,0.966,0.129277,"14,40,41",2022-02-28,2022-02-28,2023-07-07 00:00:00,found in faint-star QLP search,5241,1,False,False,False -426122503,5242.01,,3,4,4,3,1,4,4,49.8,131.6,91.31,5,0,0,PC,PC,12.789,0.006,,1,qlp-s41-faintsearch,QLP,19:10:38.03,35:29:44.52,7.689,0.022,-41.371,0.025,2459445.351035,0.0012585,2.4038486,1.08e-05,1.87,0.177,18.064089,0.015893,16500.0,14.638,11.4754,0.78415,242.515,1099.0,22.0,331.852,1.6305,5074.0,123.6,4.51,0.08,0.85,0.05,,,0.849,0.103068,"14,40,41",2022-02-28,2022-02-28,2023-07-08 00:00:00,found in faint-star QLP search,5242,1,False,False,False -322504451,5243.01,,3,4,3,3,1,4,4,49.6,47.4,317.0,2,0,0,PC,PC,12.5949,0.013,,1,qlp-s41-faintsearch,QLP,20:37:19.92,48:02:25.84,-3.132,0.03,-8.46,0.029,2459825.686941,0.001533626,1.6087939,8.1e-06,1.966,0.23,8.895952,0.014593,8160.0,13.4409,16.2542,1.08003,1301.71,1673.0,21.0,764.006,10.6045,5995.0,145.8,3.96,0.08,1.81,0.09,,,1.1,0.149987,"15,16,41,56",2022-02-28,2023-03-17,2023-03-17 00:00:00,found in faint-star QLP search,5243,1,False,False,False -352151292,5244.01,,3,4,3,3,1,4,4,12.4,39.3,80.53,1,0,0,PC,PC,12.8105,0.017,,1,qlp-s41-faintsearch,QLP,20:21:03.2,52:54:37.14,1.159,0.031,-0.827,0.031,2459827.2985,0.004006133,5.0821798,3.74e-05,4.249,0.356,5.365917,0.006505,4930.0,5.99153,10.6708,0.671855,592.328,1374.0,13.0,766.439,10.007,5929.0,164.6,4.1,0.08,1.53,0.08,,,1.08,0.137338,"14,15,16,41,56",2022-02-28,2023-03-17,2023-03-17 00:00:00,found in faint-star QLP search,5244,1,False,False,False -123041007,5245.01,,3,5,5,3,1,4,4,116.1,148.7,103.52,3,0,0,PC,APC,14.5795,0.008,,1,qlp-s41-faintsearch,QLP,18:36:13.89,42:31:09.39,-3.364,2.196,-6.651,2.196,2459446.067776,0.0019255,0.4305826,5.61e-05,0.435,0.129,16.971727,1.336321,15510.0,1230.04,12.4063,2.70006,156.925,986.0,16.0,,,3861.0,157.0,4.58,0.02,0.69,0.03,,,0.655483,0.0236543,41,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5245,1,False,False,False -295807723,5246.01,,5,5,5,5,5,5,5,40.4,34.5,317.0,0,0,0,PC,FP,13.4161,0.018,,1,qlp-s41-faintsearch,QLP,20:16:10.91,48:52:34.67,-0.264,0.027,-2.122,0.032,2459445.21928,0.0017965,0.6972223,2.2e-06,1.095,0.176,7.036609,0.016376,6460.0,15.0831,14.5958,,3144.23,2086.0,21.0,1095.81,19.9,6556.0,122.0,4.09,,1.74,,,,1.36,,"14,15,16,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5246,1,False,False,False -289307883,5247.01,,3,4,3,3,1,4,4,20.9,33.1,317.0,4,0,0,PC,PC,12.4228,0.012,,1,qlp-s41-faintsearch,QLP,20:59:13.01,23:43:59.54,12.623,0.049,24.614,0.044,2459440.338894,0.0017676,12.9177538,4.59e-05,1.8,0.517,12.514382,0.077786,11460.0,71.641,15.194,1.45257,21.7315,601.0,23.0,497.041,8.219,5606.0,133.3,4.21,0.08,1.3,0.07,,,0.99,0.126743,"15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5247,1,False,False,False -256154857,5248.01,,3,5,5,3,1,4,4,75.7,150.2,84.6,3,0,0,PC,APC,13.4319,0.02,,1,qlp-s54-tois,QLP,20:00:10.98,21:44:26.2,8.456,0.086,2.989,0.089,2459794.85633,0.0028039,0.701239,5.8e-06,1.05,0.209,14.977417,2.00152,13700.0,1841.77,10.9462,,1087.15,1599.0,11.0,423.737,11.3855,5126.0,122.0,4.51,,0.85,,,,0.86,,"41,54",2022-02-28,2022-12-01,2022-12-14 12:09:24,found in faint-star QLP search,5248,1,False,False,False -185598695,5249.01,,3,4,3,3,1,4,4,21.7,68.7,109.24,2,0,0,PC,PC,13.4752,0.015,,1,qlp-s41-faintsearch,QLP,20:08:44.14,42:29:46.82,0.58,0.03,-1.339,0.03,2459446.223146,0.0026436,4.6285493,2.27e-05,2.844,0.216,16.740155,0.016869,15300.0,15.537,12.8401,,300.005,1159.0,13.0,668.429,8.016,6007.0,122.0,4.44,,1.06,,,,1.11,,"14,15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5249,1,False,False,False -278105308,5250.01,,3,4,3,3,3,4,4,43.2,66.7,317.0,1,1,1,PC,PC,11.7781,0.017,,1,qlp-s41-faintsearch,QLP,20:11:00.43,23:20:40.99,-11.399,0.089,-10.617,0.077,2459446.167966,0.0020476,5.4463931,3.43e-05,2.222,0.25,9.103959,0.014531,8350.0,13.3833,20.2415,1.48983,236.789,1092.0,15.0,782.324,35.9985,6815.0,163.3,3.92,0.1,2.19,0.13,,,1.47,0.263353,"14,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5250,1,False,False,False -436007113,5251.01,,3,4,3,3,1,4,4,43.7,47.4,317.0,2,2,0,PC,PC,12.2492,0.043,,1,qlp-s41-faintsearch,QLP,20:23:12.91,29:52:21.62,8.056,0.045,5.014,0.046,2459445.018309,0.0012268,2.3205922,6.1e-06,2.393,0.176,9.70631,0.005307,8900.0,4.88809,14.7239,0.759025,1400.15,1704.0,35.0,668.834,14.7355,6756.0,287.1,4.24,0.09,1.51,0.07,,,1.44,0.246208,"14,15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5251,1,False,False,False -395385033,5252.01,,3,4,3,3,3,4,4,12.4,39.7,119.5,0,0,1,PC,PC,12.899,0.017,,1,qlp-s41-faintsearch,QLP,20:09:59.82,23:24:35.21,5.278,0.027,2.079,0.024,2459437.267399,0.0073902,8.5394045,0.0001975,5.884,0.956,7.036609,0.019262,6460.0,17.7405,13.4388,1.01718,566.287,1359.0,13.0,913.714,15.9665,6369.0,157.4,4.08,0.09,1.7,0.08,,,1.27,0.192188,"14,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5252,1,False,False,False -284660935,5253.01,,3,5,5,3,1,4,4,59.7,123.2,111.6,3,0,0,PC,APC,13.286,0.007,,1,qlp-s48-tois,QLP,11:56:50.85,58:24:19.28,-24.188,0.026,-10.536,0.025,2459635.041369,0.0018782,1.1110609,3.2e-06,1.155,0.169,4.417062,2.052286,4060.0,1888.44,12.9236,,2976.45,2057.0,17.0,582.471,5.954,5500.1,172.7,4.4,,1.02,,-0.08,0.16,0.96,,"14,15,21,22,41,48",2022-02-28,2022-06-29,2022-12-14 12:09:24,TFOP APC/BEB; found in faint-star QLP search,5253,1,False,False,False -126225595,5254.01,,3,4,3,3,1,4,4,24.6,52.4,126.34,0,2,0,PC,PC,11.7137,0.019,,1,qlp-s41-faintsearch,QLP,21:01:02.84,26:35:29.95,-3.225,0.058,-8.38,0.051,2459440.496405,0.0021816,4.4836616,2.09e-05,3.542,0.315,3.719582,0.003293,3420.0,3.03256,13.9078,0.886004,445.248,1279.0,28.0,613.744,13.819,5646.0,176.1,3.69,0.08,2.35,0.13,,,1.0,0.132316,"15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5254,1,False,False,False -158325942,5255.01,,3,4,3,3,1,4,4,30.8,74.6,110.52,1,0,0,PC,PC,12.6023,0.007,,1,qlp-s41-faintsearch,QLP,19:08:01.88,45:23:47.97,7.245,0.027,8.847,0.028,2459441.513501,0.0009428,2.612273,6.3e-06,3.005,0.129,8.370639,0.002113,7680.0,1.94614,12.9095,0.614722,989.904,1562.0,50.0,678.578,8.173,5874.0,108.7,4.14,0.07,1.45,0.06,0.16179,0.0218861,1.06,0.129392,"14,26,40,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5255,1,False,False,False -356146869,5256.01,,3,4,3,3,2,4,4,2.8,28.6,37.81,2,0,2,PC,PC,13.089,0.007,,1,qlp-s52-tois,QLP,17:45:20.66,52:28:30.63,10.132,0.03,12.003,0.034,2459884.678947,0.003233611,21.1968768,0.0001142,4.228,0.346,7.2224,0.006203,6630.0,5.71289,6.85964,,15.5174,552.0,20.0,352.109,2.0115,4934.0,122.0,4.5,,0.84,,,,0.81,,"14,17,21,24,25,40,41,51,52,58",2022-02-28,2023-03-22,2023-03-24 12:12:10,found in faint-star QLP search,5256,1,False,False,False -185226925,5257.01,,3,5,5,3,1,4,4,15.1,31.9,112.25,0,3,0,PC,APC,12.1624,0.012,,1,qlp-s54-tois,QLP,20:04:57.7,46:42:25.98,0.04,0.045,-4.161,0.046,2459790.753011,0.0067541,3.1979646,3.31e-05,5.69,0.851,2.238923,0.176029,2060.0,162.116,12.9757,4.17196,3205.65,2096.0,17.0,1021.21,29.701,5990.0,139.8,3.54,0.09,2.93,0.17,,,1.1,0.145949,"14,15,41,54",2022-02-28,2022-11-30,2022-12-14 12:09:24,found in faint-star QLP search,5257,1,False,False,False -147895461,5258.01,,5,5,5,5,5,5,5,26.4,66.4,70.79,2,2,0,PC,FP,12.4322,0.006,,1,qlp-s41-faintsearch,QLP,10:55:01.91,67:02:37.15,11.007,0.032,5.387,0.035,2459445.918105,0.0016045,0.5919629,2.1e-06,1.0,0.116,2.663318,0.004165,2450.0,3.83586,9.90447,0.622673,3301.1,2111.0,18.0,908.659,17.7455,6337.0,123.6,4.0,0.09,1.85,0.09,,,1.25,0.192077,"21,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5258,1,False,False,False -375419034,5259.01,,3,4,4,3,1,4,4,36.5,100.9,104.81,5,0,0,PC,PC,13.0157,0.03,,1,qlp-s41-faintsearch,QLP,19:36:15.65,21:47:40.83,-11.269,0.032,-5.444,0.031,2459441.712932,0.0013684,3.0321361,1.47e-05,2.078,0.208,15.076495,0.01414,13790.0,13.0235,12.5315,,403.028,1248.0,27.0,487.68,5.202,6071.0,122.0,4.44,,1.06,,,,1.13,,"14,40,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5259,1,False,False,False -326347927,5260.01,,5,5,5,5,5,5,5,3.5,26.2,14.88,0,0,0,PC,FP,11.9625,0.006,,1,qlp-s41-faintsearch,QLP,20:15:51.37,21:53:58.08,8.839,0.042,21.922,0.042,2459445.564135,0.0118663,7.2617331,0.0002188,6.258,1.237,1.423247,0.006228,1310.0,5.73631,3.97249,0.406198,306.111,1165.0,9.0,256.473,2.2245,4780.0,131.1,4.25,0.09,1.09,0.08,,,0.771,0.0901005,"14,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search; potential L1 candidate,5260,1,False,False,False -402828941,5261.01,,3,4,4,3,3,4,4,30.3,101.4,83.1,5,2,1,PC,PC,12.1444,0.006,,1,qlp-s41-faintsearch,QLP,20:21:50.05,19:26:09.05,-17.45,0.076,-20.087,0.072,2459442.968277,0.0014521,4.1509756,1.07e-05,2.029,0.178,10.670766,0.007656,9780.0,7.05147,10.8804,0.649425,159.592,990.0,26.0,377.054,7.651,5686.0,123.6,4.41,0.08,1.04,0.05,,,1.012,0.129194,"14,41",2022-02-28,2022-02-28,2023-06-06 00:00:00,found in faint-star QLP search,5261,1,False,False,False -274122380,5262.01,,2,4,3,2,4,4,4,5.5,37.7,15.0,0,0,4,PC,PC,11.8225,0.006,,1,qlp-s41-faintsearch,QLP,19:53:49.38,42:58:02.31,2.555,0.04,12.077,0.042,2459444.494366,0.0063583,2.873138,3.39e-05,2.908,0.566,1.347148,0.005053,1240.0,4.65408,3.97027,0.326139,953.868,1548.0,10.0,355.201,2.954,5856.0,131.0,4.37,0.08,1.11,0.05,,,1.058,0.132052,"14,15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search; potential L1 candidate,5262,1,False,False,False -275527293,5263.01,,3,4,3,3,1,4,4,54.8,75.5,317.0,2,0,0,PC,PC,13.1549,0.023,,1,qlp-s41-faintsearch,QLP,20:18:48.62,41:58:13.86,3.707,0.034,0.907,0.034,2459442.190431,0.0015705,3.1501356,9.1e-06,2.201,0.144,17.81021,0.014398,16270.0,13.2605,20.3727,,357.357,1211.0,28.0,836.02,13.276,5950.0,127.0,4.09,,1.56,,,,1.09,,"14,15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5263,1,False,False,False -435719275,5264.01,,3,4,3,3,3,4,4,52.3,81.5,317.0,4,2,1,PC,PC,11.9275,0.022,,1,qlp-s41-faintsearch,QLP,19:50:12.5,27:28:51.77,-6.832,0.04,3.152,0.043,2459439.859036,0.0016417,4.4274169,1.8e-05,5.435,0.205,11.570235,0.003815,10600.0,3.51354,19.9341,0.988097,1995.4,1861.0,16.0,673.959,13.267,6812.0,192.4,4.04,0.09,1.92,0.09,,,1.47,0.268023,"14,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5264,1,False,False,False -219847787,5265.01,,3,4,3,3,3,4,4,2.0,23.8,11.69,0,2,2,PC,PC,11.456,0.006,,1,qlp-s58-tois,QLP,17:02:24.83,69:06:34.79,-8.542,0.051,-15.133,0.05,2459892.032608,0.0041295,11.5914514,6.5e-05,1.968,0.472,0.903709,0.084075,832.0,77.4328,3.16826,0.228928,29.4907,649.0,12.0,301.885,2.567,5896.0,126.5,4.4,0.08,1.08,0.05,,,1.07,0.138529,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,56,57,58",2022-02-28,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,5265,1,False,False,False -312899686,5266.01,,5,5,5,5,5,5,5,60.6,92.2,317.0,0,0,0,PC,FP,12.7821,0.006,,1,qlp-s41-faintsearch,QLP,20:32:25.28,35:52:25.07,0.039,0.024,0.678,0.027,2459443.031522,0.0026987,4.4138638,2.25e-05,2.387,0.26,12.338665,2.908203,11300.0,2674.97,18.0459,5.90785,709.493,1437.0,17.0,519.694,4.4985,6006.0,168.0,4.46,0.08,1.03,0.05,,,1.109,0.151147,"14,15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5266,1,False,False,False -153971295,5267.01,,2,4,2,2,4,4,4,1.2,19.4,8.43,0,2,3,PC,PC,11.9139,0.007,,1,qlp-s47-tois,QLP,13:28:17.26,70:24:57.73,1.514,0.052,15.095,0.037,2459599.727409,0.0305775,13.7036806,0.0005331,4.766,1.067,1.108016,0.006745,1020.0,6.21234,2.8229,0.279196,96.0669,872.0,7.0,273.233,1.6785,5546.0,120.5,4.55,0.08,0.87,0.04,,,0.98,0.120515,"14,15,22,41,47",2022-02-28,2022-06-28,2022-12-14 12:09:24,found in faint-star QLP search; low SNR,5267,1,False,False,False -202468443,5268.01,,3,4,4,3,2,4,4,106.4,354.0,103.86,1,0,2,PC,PC,14.5982,0.007,,1,qlp-s50-tois,QLP,15:16:01.48,62:43:05.73,-9.674,0.103,-20.267,0.116,2459690.596819,0.00012,2.0685871,1e-06,0.598,,42.130039,0.001277,38060.0,1.17599,12.5176,0.383319,6.13725,438.0,28.0,97.0798,0.5954,3162.0,157.0,4.92,,0.31,0.01,,,0.284947,0.020289,"41,48,49,50",2022-02-28,2022-12-12,2023-06-16 00:00:00,found in faint-star QLP search; slightly v-shaped,5268,1,False,False,False -359321688,5269.01,,3,4,3,3,3,4,4,14.9,57.4,65.6,1,2,4,PC,PC,11.4416,0.013,,1,qlp-s41-faintsearch,QLP,19:24:52.7,22:07:28.77,-0.175,0.044,-1.93,0.05,2459446.348846,0.0033033,2.7340756,4.28e-05,1.994,0.406,1.847322,0.006677,1700.0,6.14981,9.45026,0.713606,2179.86,1903.0,12.0,656.146,16.4055,8524.0,186.4,4.06,0.07,2.25,0.09,,,2.12,0.312178,"14,40,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5269,1,False,False,False -424112727,5270.01,,3,4,3,3,3,4,4,34.8,39.9,317.0,1,0,1,PC,PC,12.7655,0.017,,1,qlp-s41-faintsearch,QLP,20:00:16.06,22:09:43.54,-0.39,0.024,-2.724,0.025,2459446.035629,0.0037583,1.0513177,0.0002454,2.562,0.235,6.228241,0.007377,5720.0,6.79412,16.1359,0.903504,13073.2,2978.0,20.0,1229.65,28.655,7529.0,181.4,3.98,0.08,2.22,0.09,,,1.74,0.283938,41,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5270,1,False,False,False -296461391,5271.01,,3,4,3,3,2,4,4,6.7,40.9,18.5,0,2,2,PC,PC,10.7988,0.006,,1,qlp-s41-faintsearch,QLP,20:27:56.35,48:19:06.95,-4.1,2.1,-5.2,2.0,2459827.010531,0.003914712,4.3108587,3.4e-05,3.486,0.446,1.108016,0.001515,1020.0,1.39521,4.50948,,836.11,,17.0,295.41,,6358.0,,,,1.41,,,,,,"14,16,41,56",2022-02-28,2023-03-17,2023-03-17 00:00:00,found in faint-star QLP search,5271,1,False,False,False -278668358,5272.01,,3,4,3,3,1,4,4,11.5,38.3,62.7,0,0,0,PC,PC,12.4603,0.02,,1,qlp-s55-tois,QLP,20:31:48.65,48:13:55.75,-3.063,0.037,-10.635,0.036,2459822.945623,0.0043093,5.0135727,3.53e-05,4.396,0.31,3.828534,0.223799,3520.0,206.105,9.19425,2.51141,635.189,1398.0,18.0,612.204,7.8475,5930.0,178.1,4.08,0.08,1.56,0.08,,,1.08,0.145107,"15,16,41,55",2022-02-28,2022-12-07,2022-12-16 12:08:26,found in faint-star QLP search,5272,1,False,False,False -172871230,5273.01,,5,5,5,5,5,5,5,16.4,68.0,48.58,1,0,0,PC,FP,12.2794,0.006,,1,qlp-s41-faintsearch,QLP,19:59:30.93,41:44:31.47,-8.779,0.058,-17.725,0.055,2459442.295386,0.0027177,3.4100261,1.98e-05,2.233,0.265,5.660559,0.008829,5200.0,8.13195,7.9526,0.515343,406.598,1251.0,15.0,437.517,6.3985,6109.0,170.1,4.43,0.08,1.08,0.05,,,1.15,0.161664,"14,15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5273,1,False,False,False -356682805,5274.01,,3,4,3,3,1,4,4,4.8,30.8,20.71,1,0,0,PC,PC,13.1293,0.006,,1,qlp-48-tois,QLP,11:38:34.74,72:15:55.24,-79.367,0.033,-37.06,0.028,2459628.259748,0.0028212,6.1313492,3.41e-05,2.447,0.266,4.057368,0.005429,3730.0,5.00004,4.7793,,39.468,698.0,15.0,245.857,1.085,4310.0,122.0,4.5,,0.76,,,,0.67,,"14,20,21,40,41,47,48",2022-02-28,2022-07-12,2022-12-14 12:09:24,found in faint-star QLP search; possible depth-aperture correlation,5274,1,False,False,False -219466803,5275.01,,3,4,3,3,1,4,4,5.8,32.0,50.82,1,0,0,PC,PC,12.9179,0.006,,1,qlp-s48-tois,QLP,13:59:35.06,74:04:23.74,2.941,0.033,-17.332,0.032,2459618.541036,0.0025177,12.5951009,5.64e-05,0.876,0.292,4.656924,0.085426,4280.0,78.6774,8.14346,1.16273,2.98815,366.0,11.0,486.898,4.4715,5251.0,125.3,4.32,0.09,1.09,0.06,,,0.9,0.114601,"14,15,20,21,22,40,41,47,48",2022-02-28,2022-07-12,2022-12-14 12:09:24,found in faint-star QLP search; low SNR,5275,1,False,False,False -282935857,5276.01,,3,5,5,3,1,4,4,26.3,52.4,120.02,0,2,0,PC,APC,11.7163,0.009,,1,qlp-s41-faintsearch,QLP,20:52:42.01,25:30:10.34,-1.847,0.055,-4.908,0.057,2459444.189059,0.0022285,2.3612205,1.41e-05,2.303,0.426,2.619782,0.005415,2410.0,4.98762,13.5272,1.02318,875.429,1515.0,19.0,749.716,21.0715,5766.0,133.5,3.59,0.08,2.7,0.16,,,1.03,0.130131,"15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5276,1,False,False,False -276381737,5277.01,,3,4,3,3,1,4,4,8.5,32.1,119.75,0,0,0,PC,PC,13.233,0.01,,1,qlp-s56-tois,QLP,20:32:28.61,58:05:43.66,7.332,0.032,9.611,0.029,2459829.069249,0.0039946,15.9929608,8.77e-05,3.747,0.601,8.578545,0.61189,7870.0,563.413,13.4988,,53.3959,753.0,17.0,876.326,10.736,6132.0,122.0,4.13,,1.54,,,,1.16,,"15,16,17,41,55,56",2022-02-28,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,5277,1,False,False,False -264301607,5278.01,,3,4,3,3,2,4,4,508.2,351.8,317.0,8,0,1,PC,PC,14.9343,0.007,,1,spoc-s14-s60-b0A-PC,QLP,19:43:14.08,66:34:16.95,-8.349,0.111,-35.871,0.096,2459825.576076,6.8275614e-05,0.435434965011606,7.068945e-07,1.05299453402424,0.008931451,119.397891,1.14638,104138.560297584,1055.2979,17.9748711216423,8.748386,252.728752091065,1016.91209500622,145.49867,166.421,1.3755,3349.0,157.0,4.84,,0.383284002542496,0.0118038,,,0.372494,0.0205352,"41,47,48,49,50,51,52,56,57,58,59,60",2022-02-28,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; likely too large to be planet around M dwarf; ~6000 ppm secondary,5278,1,False,False,False -7681574,5279.01,,3,4,3,3,1,4,4,6.6,43.2,58.57,1,0,0,PC,PC,12.485,0.006,,1,qlp-s41-faintsearch,QLP,18:12:57.7,47:20:10.34,-16.29,0.039,-3.71,0.037,2459428.849564,0.0032906,16.0104634,0.0001066,2.151,0.388,8.119016,0.015998,7450.0,14.7343,8.86029,0.745059,14.2918,541.0,15.0,440.9,4.5885,5733.4,169.6,4.42,0.09,1.03,0.07,0.098,0.156,1.024,0.127873,"14,25,26,40,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5279,1,False,False,False -194679333,5280.01,,3,4,3,3,1,4,4,11.7,46.7,69.47,2,2,0,PC,PC,11.1568,0.011,,1,qlp-s41-faintsearch,QLP,20:51:26.58,38:19:47.1,-0.344,0.043,-8.26,0.053,2459440.705384,0.0038635,9.0165933,8.47e-05,2.886,0.481,2.88102,0.007008,2650.0,6.45437,9.81811,1.03746,145.183,967.0,12.0,537.068,9.175,6543.2,284.3,4.02,0.14,1.88,0.17,0.171,0.282,1.35,0.240027,"15,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5280,1,False,False,False -405932063,5281.01,,3,4,3,3,1,4,4,15.0,43.7,108.28,1,0,0,PC,PC,13.1569,0.007,,1,qlp-s41-faintsearch,QLP,20:05:51.59,51:51:24.95,-1.737,0.035,-5.958,0.029,2459825.472799,0.0026376876,5.5047275,5.04e-05,4.025,0.606,8.20653,0.01626,7530.0,14.9757,12.7051,,448.634,1282.0,16.0,875.436,15.164,5865.0,123.0,4.13,,1.47,,,,1.06,,"14,15,16,41,56",2022-02-28,2023-03-17,2023-03-17 00:00:00,found in faint-star QLP search; apparent centroid offset in SPOC s56 likely due to nearby bright star,5281,1,False,False,True -329346586,5282.01,,3,4,3,3,1,4,4,18.6,51.9,68.89,3,0,0,PC,PC,13.1137,0.007,,1,qlp-s52-tois,QLP,17:59:19.63,49:32:59.06,-3.442,0.026,-16.003,0.027,2459742.132395,0.0019117,1.392516,5.9e-06,1.209,0.168,4.776875,0.008655,4390.0,7.97118,9.7757,,769.854,1467.0,20.0,892.373,11.1915,6082.0,122.0,4.17,,1.45,,,,1.14,,"14,25,40,41,52",2022-02-28,2023-02-22,2023-02-25 12:10:55,found in faint-star QLP search,5282,1,False,False,False -399956873,5283.01,,5,5,5,5,5,5,5,9.9,43.1,60.35,1,2,3,PC,FP,11.7513,0.009,,1,qlp-s41-faintsearch,QLP,19:10:09.11,52:17:16.97,-4.527,0.057,0.688,0.054,2459831.192001,0.0023307733,6.949428,2.77e-05,2.725,0.207,3.316556,0.003031,3050.0,2.79174,9.02158,0.508686,208.013,1058.0,25.0,624.699,11.5895,6817.0,241.6,4.18,0.09,1.61,0.07,,,1.42,0.234928,"14,15,26,40,41,56",2022-02-28,2023-03-17,2023-05-24 12:02:56,found in faint-star QLP search; centroid offset centered on another star in SPOC s56,5283,1,False,False,False -171312653,5284.01,,3,4,3,3,1,4,4,43.6,63.8,317.0,4,0,0,PC,PC,13.4842,0.009,,1,qlp-s41-faintsearch,QLP,19:54:59.61,36:09:46.38,-0.225,0.031,-1.12,0.032,2459444.105892,0.0035948,2.0327015,1.6e-05,2.019,0.313,14.251121,0.045366,13040.0,41.7824,21.5462,,1195.69,1638.0,11.0,1430.26,38.675,6555.0,122.0,4.03,,1.86,,,,1.36,,"14,41",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5284,1,False,False,False -250330564,5285.01,,3,4,3,3,3,4,4,33.3,104.2,74.48,5,0,1,PC,PC,12.9354,0.006,,1,qlp-s42-faintsearch,QLP,22:43:52.59,-01:50:18.78,-52.251,0.046,-82.905,0.039,2459469.314451,0.0022156,4.3852176,0.0016486,2.188,0.217,19.809735,0.027157,18080.0,25.012,10.2627,1.06479,41.2399,705.0,15.0,187.506,0.9,4076.0,121.0,4.49,0.12,0.76,0.07,,,0.638,0.0813506,42,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5285,1,False,False,False -301035553,5286.01,,3,4,3,3,1,4,4,20.4,73.9,68.75,3,0,0,PC,PC,13.1789,0.007,,1,qlp-s42-faintsearch,QLP,00:12:08.44,-04:36:46.65,4.499,0.06,8.319,0.033,2459469.122508,0.0025132,3.2988824,0.0006811,2.352,0.273,12.184935,0.015073,11160.0,13.8825,9.7209,,358.69,1212.0,18.0,533.065,9.211,5735.0,122.0,4.54,,0.9,,,,1.02,,42,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5286,1,False,False,False -909930,5287.01,,3,5,5,3,3,4,4,62.7,63.0,317.0,0,2,1,PC,APC,10.7217,0.008,,1,qlp-s42-faintsearch,QLP,21:52:09.28,-08:25:10.79,-8.674,0.105,-29.594,0.099,2459468.058757,0.0009744,4.1976789,0.0004518,3.829,0.148,7.583144,0.001474,6960.0,1.35734,14.6667,1.01501,713.476,1439.0,38.0,357.584,8.8605,6058.0,176.0,4.02,0.1,1.71,0.12,,,1.13,0.16411,42,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5287,1,False,False,False -857186,5288.01,,3,4,4,3,3,4,4,47.9,145.8,85.61,2,0,1,PC,PC,12.2037,0.006,,1,qlp-s42-faintsearch,QLP,21:50:52.6,-08:38:09.4,-24.523,0.07,-57.103,0.075,2459465.891746,0.0006765,3.8123614,0.000504,2.565,0.134,20.086202,0.009968,18330.0,9.18044,11.0835,0.817706,138.253,955.0,35.0,215.501,1.9615,4780.0,124.6,4.5,0.09,0.82,0.06,,,0.771,0.0953452,42,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5288,1,False,False,False -176279915,5289.01,,3,4,3,3,3,4,4,9.5,49.3,21.41,0,2,1,PC,PC,11.8884,0.006,,1,qlp-s42-faintsearch,QLP,00:03:02.42,-07:47:11.1,-37.259,0.112,-42.057,0.06,2459469.615289,0.0032873,3.4411264,5.87e-05,2.669,0.38,2.891906,0.005654,2660.0,5.20773,4.89568,0.367884,341.303,1197.0,11.0,258.455,4.5265,5244.0,125.6,4.44,0.09,0.94,0.05,,,0.896,0.116099,"29,42",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5289,1,False,False,False -224217761,5290.01,,3,4,3,3,1,4,4,26.2,75.3,81.49,0,0,0,PC,PC,13.491,0.02,,1,qlp-s42-faintsearch,QLP,22:53:17.65,-00:10:06.05,16.383,2.235,-18.795,2.172,2459469.15972,0.0039103,2.5688104,0.0012034,2.198,0.304,10.550162,0.033428,9670.0,30.7877,,,,,12.0,,,,,,,,,,,,,42,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search; no stellar parameters,5290,1,False,False,False -250983039,5291.01,,3,4,3,3,3,4,4,21.9,85.4,32.31,0,4,1,PC,PC,10.8921,0.009,,1,qlp-s42-faintsearch,QLP,22:34:55.97,-11:21:47.66,-2.923,0.075,20.448,0.074,2459467.596354,0.0020158,2.3007511,0.0004842,1.35,0.229,2.598015,0.007302,2390.0,6.72504,6.24136,0.470327,256.685,1115.0,15.0,236.736,2.443,5603.0,128.2,4.27,0.08,1.21,0.06,,,0.99,0.12824,42,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5291,1,False,False,False -33397739,5292.01,,3,4,3,3,1,4,4,52.3,108.6,117.69,0,0,0,PC,PC,14.8951,0.008,,1,qlp-s42-faintsearch,QLP,22:56:53.37,-08:07:11.09,-8.702,0.1,-6.868,0.091,2459469.424307,0.0029985,2.0231137,0.0006929,1.133,0.304,48.889341,0.991874,44030.0,913.133,13.4378,2.00141,35.677,680.0,11.0,337.095,8.1645,3767.0,157.0,4.66,0.01,0.59,0.02,,,0.576836,0.021779,42,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5292,1,False,False,False -250111245,5293.01,,3,5,5,3,4,4,4,58.3,179.9,97.44,5,0,0,PC,CP,13.9766,0.006,,1,qlp-s42-faintsearch,QLP,23:43:18.88,-02:02:42.34,-16.78,0.113,0.39,0.059,2459466.496662,0.0009681,2.9304371,0.0002822,1.73,0.087,56.639992,0.036549,50830.0,33.6627,11.8933,,31.8905,662.0,21.0,162.229,1.3055,3692.0,122.0,4.77,,0.5,,,,0.545,,42,2022-02-28,2022-02-28,2023-02-16 12:02:35,found in faint-star QLP search,5293,1,False,False,False -422486295,5294.01,,3,4,3,3,3,4,4,26.3,108.7,61.54,0,2,1,PC,PC,11.861,0.019,,1,qlp-s42-faintsearch,QLP,23:25:52.25,04:27:17.63,35.253,1.036,-33.422,0.952,2459470.434517,0.0014655,5.6707432,0.0007223,2.294,0.223,8.469116,0.006388,7770.0,5.88352,,,97.4725,,21.0,269.595,,5462.7,,,,,,0.341,0.027,,,42,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search; possible odd-even likely due to detrending issues; only 4 transits and one is at the start of an orbit; no stellar radius,5294,1,False,False,False -4619242,5295.01,,3,4,3,3,1,4,4,38.3,152.3,76.08,3,0,0,PC,PC,13.0176,0.007,,1,qlp-s42-faintsearch,QLP,23:17:09.34,-09:26:08.49,53.06,2.0,-142.85,2.0,2459467.507313,0.0010825,4.3023572,0.0005371,1.579,0.102,33.160213,0.026924,30080.0,24.7973,10.2749,0.483136,11.1055,508.0,34.0,140.9938,,3504.0,157.0,4.67,0.01,0.58,0.02,,,0.574184,0.0223329,42,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5295,1,False,False,False -241102583,5296.01,,5,5,5,5,5,5,5,78.9,208.8,82.31,6,0,1,O,FP,12.4323,0.007,,1,qlp-s55-tois,QLP,21:55:54.79,-00:56:14.66,44.386,0.045,-7.432,0.051,2459820.897665,0.0005478,1.7386091,3.7e-06,1.691,0.07,20.805346,0.660432,18980.0,608.095,10.8015,2.15843,444.5,1279.0,74.0,271.346,2.0485,5362.8,134.0,4.65,0.09,0.75,0.05,0.373,0.132,0.928,0.116726,"42,55",2022-02-28,2022-12-07,2022-12-16 12:08:26,similar brightness neighbour (241102582); found in faint-star QLP search; retired as NPC,5296,1,False,False,False -422423972,5297.01,,3,4,3,3,3,4,4,23.3,69.2,94.11,1,2,2,PC,PC,12.2411,0.008,,1,qlp-s56-tois,QLP,22:39:12.53,01:41:17.73,-5.816,0.065,-8.582,0.066,2459851.450755,0.0015008,3.3014986,1.99e-05,2.106,0.195,6.140886,0.307358,5640.0,283.047,11.7342,0.775075,426.381,1265.0,20.0,670.528,22.054,6311.9,140.0,4.16,0.09,1.53,0.09,0.0927533,0.0106411,1.24,0.189417,"42,56",2022-02-28,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,5297,1,False,False,False -313835568,5298.01,,3,4,4,3,2,4,4,33.2,82.8,107.3,2,0,1,PC,PC,13.4476,0.008,,1,qlp-s55-tois,QLP,22:04:12.35,-02:23:49.56,13.1,0.053,-25.38,0.055,2459818.888822,0.0018736,2.6831464,1.79e-05,1.952,0.178,15.318724,0.882489,14010.0,812.472,12.7073,,262.791,1121.0,26.0,553.486,11.552,5348.0,122.0,4.38,,1.03,,,,0.92,,"42,55",2022-02-28,2022-12-07,2023-07-07 00:00:00,found in faint-star QLP search,5298,1,False,False,False -407997410,5299.01,,3,4,3,3,3,4,4,115.4,144.9,317.0,2,0,1,PC,PC,12.3913,0.007,,1,qlp-s42-faintsearch,QLP,23:58:51.23,-04:57:40.08,23.141,0.104,2.406,0.054,2459465.671672,0.0017878,2.5792489,0.000432,0.528,0.387,7.725288,4.293379,7090.0,3946.54,19.2523,7.63589,56.7896,764.0,12.0,407.758,10.5535,5452.0,130.5,4.34,0.08,1.09,0.06,,,0.95,0.119704,42,2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5299,1,False,False,False -267215820,5300.01,,3,4,4,3,3,4,4,95.0,209.9,98.8,8,0,1,PC,PC,12.4559,0.006,,1,qlp-s42-faintsearch,QLP,23:45:55.47,00:27:31.67,16.138,0.045,-44.052,0.03,2459470.418163,0.0006106,2.2623535,0.0001164,1.958,0.077,26.898426,0.007926,24470.0,7.29968,11.9692,1.11512,131.906,944.0,74.0,162.51,0.8205,4219.0,126.1,4.53,0.11,0.73,0.07,,,0.66,0.078633,42,2022-02-28,2022-02-28,2023-01-04 00:00:00,found in faint-star QLP search,5300,1,False,False,False -58825110,5301.01,,3,4,4,3,3,4,4,18.0,52.0,100.34,1,19,1,PC,PC,11.1893,0.007,,1,qlp-s43-faintsearch,QLP,00:51:57.79,13:04:42.14,5.761,0.088,-5.445,0.053,2459494.147012,0.0017136,5.8588751,2.5e-05,3.581,0.201,2.924566,0.001333,2690.0,1.22771,12.1366,0.740487,429.794,1268.0,26.0,629.161,20.002,6418.0,133.4,3.82,0.09,2.31,0.13,,,1.29,0.204501,"17,42,43",2022-02-28,2022-02-28,2023-06-08 00:00:00,found in faint-star QLP search,5301,1,False,False,False -337025682,5302.01,,3,4,4,3,3,4,4,34.7,104.7,92.64,5,0,1,PC,PC,13.0557,0.009,,1,qlp-s43-faintsearch,QLP,02:08:59.81,08:03:25.92,24.046,0.046,-24.591,0.046,2459490.634183,0.0010595,4.2417694,0.0002136,1.832,0.265,20.196809,0.020312,18430.0,18.7082,11.5903,,67.8153,799.0,35.0,313.459,3.0915,4794.0,122.0,4.51,,0.81,,,,0.77,,"42,43",2022-02-28,2022-02-28,2023-05-05 00:00:00,found in faint-star QLP search,5302,1,False,False,False -58798731,5303.01,,3,4,3,3,1,4,4,10.8,41.4,111.1,0,0,0,PC,PC,13.101,0.007,,1,qlp-s57-tois,QLP,00:38:25.74,17:11:34.04,-4.001,0.041,-10.96,0.024,2459869.502622,0.0027911,9.809558,5.05e-05,1.924,0.52,8.317027,0.801056,7631.0,737.528,12.8969,,52.7617,750.0,13.0,955.654,21.21,6480.0,122.0,4.27,,1.39,,,,1.32,,"17,42,43,57",2022-02-28,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; v-shaped,5303,1,False,False,False -293407882,5304.01,,3,4,3,3,3,4,4,12.9,52.1,49.68,2,0,2,PC,PC,13.3526,0.007,,1,qlp-s43-faintsearch,QLP,00:48:17.46,06:55:05.6,24.866,0.062,-11.794,0.042,2459493.482802,0.0043253,3.7079439,0.0005716,2.259,0.421,8.436289,0.024248,7740.0,22.3327,8.08217,,203.091,1051.0,14.0,472.687,9.6865,5265.0,122.0,4.5,,0.89,,,,0.9,,"42,43",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5304,1,False,False,False -408743161,5305.01,,3,4,3,3,3,4,4,21.9,64.8,92.8,1,0,1,PC,PC,12.5679,0.012,,1,qlp-s43-faintsearch,QLP,02:26:19.63,15:53:25.51,16.073,0.039,-7.542,0.036,2459496.393658,0.0027348,4.4632038,0.0004147,3.659,0.27,7.856515,0.004709,7210.0,4.33745,11.6079,0.636508,545.343,1346.0,26.0,566.267,8.844,5921.4,101.4,4.2,0.07,1.37,0.07,0.228,0.021,1.08,0.136072,"42,43",2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search,5305,1,False,False,False -387401076,5306.01,,3,4,3,3,3,4,4,13.8,55.3,65.04,1,0,1,PC,PC,12.985,0.024,,1,qlp-s43-faintsearch,QLP,02:46:01.75,06:27:41.86,,,,,2459492.592296,0.0024341,5.3331348,3.51e-05,2.805,0.213,6.173643,0.006587,5670.0,6.06642,10.0196,0.689866,203.229,1051.0,18.0,655.851,,5807.7,172.3,,,1.31,0.08,,,,,"4,31,42,43",2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search; phantom split with TIC 640054019,5306,1,False,False,False -369477998,5307.01,,3,5,5,3,3,4,4,7.3,57.0,15.33,3,0,1,PC,APC,12.1314,0.007,,1,qlp-s43-faintsearch,QLP,01:03:32.77,09:54:50.1,38.216,0.077,-18.202,0.053,2459490.963737,0.0029835,5.2976347,0.0005887,1.711,0.217,4.26445,0.007234,3920.0,6.66271,4.00604,0.453098,19.2351,583.0,13.0,105.824,0.4495,4031.0,127.2,4.65,0.12,0.62,0.06,,,0.63,0.0819553,"42,43",2022-02-28,2022-02-28,2023-03-05 12:02:50,found in faint-star QLP search,5307,1,False,False,False -422653398,5308.01,,3,4,3,3,3,4,4,45.1,56.3,317.0,2,2,2,PC,PC,11.0208,0.007,,1,qlp-s43-faintsearch,QLP,01:56:00.3,00:10:47.23,-11.379,0.124,-27.652,0.09,2459485.685359,0.0008176,8.34034,1.06e-05,3.176,0.352,8.020571,0.007057,7360.0,6.49971,16.0764,0.902475,206.357,1055.0,58.0,360.412,8.563,5444.3,205.3,3.89,0.61,1.67,0.08,0.32,0.016,1.01,0.121403,"4,42,43",2022-02-28,2019-12-17,2023-01-10 00:00:00,found in faint-star QLP search,5308,1,False,False,False -52052461,5309.01,,3,4,3,3,1,4,4,9.0,40.9,49.68,1,0,0,PC,PC,13.0427,0.007,,1,qlp-s57-tois,QLP,00:17:51.3,14:29:55.56,32.034,0.07,-23.395,0.069,2459875.569968,0.0031873,6.4666483,6.7e-05,3.284,0.543,7.535038,0.442016,6916.0,407.029,8.02442,,166.169,1000.0,17.0,500.708,8.7965,5441.0,122.0,4.41,,1.01,,,,0.95,,"42,43,57",2022-02-28,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search; possible ramp-like features before transit,5309,1,False,False,False -306204904,5310.01,,3,4,3,3,3,4,4,5.7,42.2,31.64,0,0,1,PC,PC,12.4887,0.006,,1,qlp-s43-faintsearch,QLP,02:00:43.93,20:01:23.48,32.719,0.044,-80.093,0.043,2459486.096679,0.0027539,11.2036244,0.0001002,3.039,0.516,6.075374,0.010227,5580.0,9.41919,6.17248,0.551891,19.2497,583.0,20.0,188.541,0.919,4329.8,104.0,4.45,0.09,0.81,0.06,-0.144,0.04,0.677,0.076313,"17,42,43",2022-02-28,2022-02-28,2023-01-25 00:00:00,found in faint-star QLP search,5310,1,False,False,False -306401382,5311.01,,3,4,3,3,1,4,4,2.9,55.9,119.59,1,0,0,PC,PC,13.6546,0.007,,1,qlp-s43-faintsearch,QLP,02:09:20.02,21:27:06.68,1.225,0.068,-34.78,0.06,2459453.71507,0.0023694,39.0536929,0.0028443,2.239,0.394,36.400132,0.094732,32970.0,87.2476,13.5254,0.823376,0.431293,225.0,22.0,243.32,2.119,3793.0,157.0,4.57,0.01,0.7,0.02,,,0.66184,0.0203766,"42,43",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5311,1,False,False,False -399724238,5312.01,,3,4,3,3,3,4,4,2.4,36.1,52.39,2,0,2,PC,PC,12.3207,0.008,,1,qlp-s43-faintsearch,QLP,01:24:18.16,04:31:53.55,0.498,0.084,-14.384,0.071,2459450.251093,0.0025748,46.1965072,0.0028349,3.718,0.332,9.224403,0.008105,8460.0,7.4646,8.33656,0.583623,3.59287,383.0,24.0,321.637,4.5525,5397.7,138.5,4.5,0.09,0.91,0.06,0.138844,0.0218202,0.94,0.118308,"42,43",2022-02-28,2022-02-28,2023-01-04 00:00:00,found in faint-star QLP search,5312,1,False,False,False -347469901,5313.01,,3,4,3,3,1,4,4,31.2,79.6,115.22,1,0,0,PC,PC,13.4367,0.007,,1,qlp-s43-faintsearch,QLP,01:54:53.18,08:51:27.56,13.36,0.059,-7.792,0.069,2459495.625991,0.0020908,3.2571037,0.0002755,2.5,0.198,16.872476,0.012412,15420.0,11.4319,13.21,,313.937,1172.0,28.0,596.925,12.4,5442.9,52.5,4.38,,1.04,,0.41,0.05,0.95,,"42,43",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5313,1,False,False,False -302202317,5314.01,,3,4,4,3,1,4,4,33.5,97.0,106.88,5,0,0,PC,PC,13.0707,0.007,,1,qlp-s57-tois,QLP,00:37:21.57,13:51:32.66,4.604,0.043,-16.103,0.029,2459879.837056,0.0010095,2.5351022,7.8e-06,2.251,0.149,15.216321,0.46358,13917.0,426.882,12.5634,,688.571,1427.0,47.0,641.876,11.0625,6143.0,122.0,4.46,,1.05,,,,1.16,,"42,43,57",2022-02-28,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,5314,1,False,False,False -126982221,5315.01,,3,4,3,3,1,4,4,110.6,159.5,317.0,8,0,0,PC,PC,14.5597,0.008,,1,qlp-s43-faintsearch,QLP,01:37:11.94,16:01:07.4,69.0,8.0,-82.0,8.0,2459493.470036,1.94e-05,2.4704071,9e-07,0.948,,45.963071,0.001232,41450.0,1.13502,17.1677,0.838859,14.841,546.0,19.0,,,3333.0,157.0,4.8,0.01,0.43,0.02,,,0.421973,0.0272214,"42,43",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5315,1,False,False,False -309439436,5316.01,,3,4,3,3,3,4,4,27.5,61.1,83.33,1,0,1,PC,PC,13.0211,0.01,,1,qlp-s43-faintsearch,QLP,06:07:12.56,35:57:28.96,0.036,0.046,-3.94,0.038,2459496.567378,0.0038727,0.9997277,0.000313,1.574,0.258,5.322274,0.014203,4890.0,13.0813,10.9188,,2105.63,1887.0,13.0,793.998,14.1705,5849.8,24.8,4.05,,1.61,,0.214,0.023,1.06,,43,2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search,5316,1,False,False,False -408824640,5317.01,,3,4,3,3,3,4,4,13.7,52.6,87.12,1,0,1,PC,PC,12.5035,0.008,,1,qlp-s43-faintsearch,QLP,02:36:15.6,13:30:15.22,1.715,0.076,-0.939,0.055,2459489.509979,0.0025969,8.662046,0.0011555,3.278,0.274,7.703419,0.007626,7070.0,7.02394,11.1852,0.659868,119.291,920.0,23.0,578.773,13.663,5981.3,111.8,4.24,0.08,1.31,0.06,0.065,0.036,1.1,0.136881,"42,43",2022-02-28,2022-02-28,2023-02-08 00:00:00,found in faint-star QLP search,5317,1,False,False,False -435871546,5318.01,,3,4,3,3,3,4,4,22.1,22.7,317.0,1,2,3,PC,PC,12.1357,0.007,,1,qlp-s57-tois,QLP,00:50:04.53,18:59:08.78,1.031,0.082,-4.968,0.062,2459881.551547,0.0021696,4.9583217,1.99e-05,5.223,0.435,5.57434,0.155035,5121.0,142.782,16.3815,1.0868,862.417,1509.0,26.0,916.994,36.5525,5801.0,128.1,3.64,0.09,2.55,0.16,,,1.04,0.125463,"17,42,43,57",2022-02-28,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,5318,1,False,False,False -246965431,5319.01,,2,4,2,2,3,4,4,11.3,111.5,13.78,5,0,1,PC,PC,12.0828,0.006,,1,qlp-s43-faintsearch,QLP,02:20:51.25,23:31:13.59,41.969,0.122,-86.743,0.084,2459884.041681,0.0031516561,4.0785273,1.7e-05,1.561,0.553,4.929559,0.04375,4530.0,40.2943,3.74681,0.617629,38.7885,695.0,24.0,61.171,0.2085,3580.0,124.3,4.77,0.18,0.48,0.07,,,0.5,0.0961848,"18,42,43,58",2022-02-28,2023-03-22,2023-03-22 00:00:00,slightly fainter star (TIC 620306169) 3 arcsec away; found in faint-star QLP search; L1 candidate,5319,1,False,False,False -257562160,5320.01,,3,4,3,3,3,4,4,38.6,107.8,30.35,3,1,1,PC,PC,11.422,0.007,,1,qlp-s43-faintsearch,QLP,01:30:34.58,17:15:16.91,0.653,0.072,-32.575,0.053,2459497.672348,0.001696,0.3852177,1.3e-06,0.319,0.113,1.36889,0.044122,1260.0,40.6367,5.99543,0.941018,429.583,1268.0,9.0,275.255,2.6775,5313.9,103.9,4.19,0.08,1.27,0.06,0.11493,0.0376237,0.92,0.120177,"17,42,43",2022-02-28,2022-02-28,2023-01-04 00:00:00,found in faint-star QLP search,5320,1,False,False,False -243153196,5321.01,,3,5,5,3,3,4,4,33.3,49.4,317.0,0,2,1,PC,APC,10.7304,0.007,,1,qlp-s43-faintsearch,QLP,01:02:44.52,20:03:01.52,-7.432,0.072,-1.574,0.058,2459478.895755,0.0006523,10.1391591,2.81e-05,2.662,0.21,7.025681,0.003713,6450.0,3.41999,16.5118,0.820598,90.2977,858.0,67.0,483.421,9.988,6584.3,100.6,3.96,0.09,2.04,0.09,0.046,0.015,1.37,0.22826,"17,42,43",2022-02-28,2022-02-28,2023-01-04 00:00:00,found in faint-star QLP search,5321,1,False,False,False -336691874,5322.01,,3,4,4,3,3,4,4,48.3,61.2,317.0,1,2,3,PC,PC,12.0075,0.007,,1,qlp-s57-tois,QLP,00:26:07.04,14:20:11.14,-10.731,0.093,6.675,0.05,2459872.580817,0.0007797,5.4233428,1.44e-05,4.975,0.131,14.629615,0.220788,13384.0,203.333,16.7305,0.914122,558.524,1354.0,90.0,476.899,11.577,5790.0,129.3,4.15,0.08,1.43,0.08,,,1.04,0.12878,"42,43,57",2022-02-28,2023-05-01,2023-06-28 00:00:00,found in faint-star QLP search,5322,1,False,False,False -272146465,5323.01,,3,5,5,3,3,4,4,31.9,45.0,317.0,0,0,2,PC,APC,12.2431,0.007,,1,qlp-s43-faintsearch,QLP,00:36:49.59,02:07:50.68,-5.016,0.203,-7.926,0.14,2459497.678672,0.0020426,5.8049376,0.0004494,4.055,0.207,7.769029,0.002924,7130.0,2.69321,20.5615,2.09018,395.882,1242.0,24.0,967.25,85.759,5978.2,110.4,3.73,0.11,2.38,0.24,-0.591,0.044,1.1,0.139031,"42,43",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5323,1,False,False,False -408643099,5324.01,,3,4,3,3,3,4,4,26.7,95.2,78.07,0,0,1,PC,PC,13.1886,0.006,,1,qlp-s43-faintsearch,QLP,02:23:38.68,15:28:58.64,6.104,0.047,-16.544,0.037,2459488.483015,0.0016553,5.0269053,0.0003343,2.676,0.151,20.229993,0.009605,18460.0,8.8461,10.4869,,83.5964,842.0,21.0,281.555,1.75,4738.0,122.0,4.57,,0.75,,,,0.76,,"42,43",2022-02-28,2022-02-28,2023-02-08 00:00:00,found in faint-star QLP search,5324,1,False,False,False -270406298,5325.01,,3,4,3,3,3,4,4,6.6,50.6,41.44,2,2,1,PC,PC,12.0261,0.007,,1,qlp-s43-faintsearch,QLP,02:11:39.04,04:11:32.35,9.774,0.073,14.188,0.072,2459498.292378,0.0013514,15.057596,3.81e-05,1.385,0.269,5.85703,0.010611,5380.0,9.77274,7.19514,0.492223,8.48258,475.0,23.0,339.049,7.813,5948.0,126.0,4.54,0.08,0.92,0.05,,,1.09,0.140986,"4,31,42,43",2022-02-28,2022-02-28,2023-01-15 00:00:00,found in faint-star QLP search,5325,1,False,False,False -257922326,5326.01,,3,4,3,3,3,4,4,17.0,58.4,61.25,0,2,2,PC,PC,11.7624,0.006,,1,qlp-s43-faintsearch,QLP,01:45:48.88,10:15:12.24,-7.1,4.3,-10.6,4.4,2459493.482375,0.0021571,3.133469,0.0002958,2.26,0.293,3.262104,0.003254,3000.0,2.99674,9.11145,,615.127,,23.0,455.36,,6312.9,,,,1.61,,-0.009,0.02,,,"42,43",2022-02-28,2022-02-28,2023-01-10 00:00:00,found in faint-star QLP search,5326,1,False,False,False -303502327,5327.01,,3,4,3,3,3,4,4,42.3,126.2,90.88,3,0,1,PC,PC,12.6345,0.006,,1,qlp-s44-faintsearch,QLP,03:24:07.02,12:26:09.47,23.34,0.07,-20.224,0.054,2459521.337748,0.0006627,4.6671176,1.76e-05,2.378,0.1,16.34329,0.004435,14940.0,4.08439,11.4089,0.654802,128.159,937.0,10.0,235.121,2.192,5377.0,142.6,4.48,0.08,0.91,0.05,,,0.932,0.12029,"31,42,43,44",2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search,5327,1,False,False,False -58372253,5328.01,,3,4,3,3,3,4,4,53.4,56.0,317.0,0,4,1,PC,PC,11.2303,0.012,,1,qlp-s44-faintsearch,QLP,04:21:10.41,27:10:04.51,-5.347,0.083,-16.312,0.058,2459519.397889,0.001758,5.4886518,0.0004019,6.921,0.171,4.984094,0.000697,4580.0,0.642169,17.6429,0.844283,1434.4,1714.0,42.0,410.855,6.6755,6119.8,100.9,3.69,0.07,2.54,0.12,0.036,0.034,1.15,0.146794,"43,44",2022-02-28,2022-02-28,2023-01-25 00:00:00,found in faint-star QLP search,5328,1,False,False,False -61145589,5329.01,,3,4,3,3,3,4,4,22.5,66.7,87.81,1,0,1,PC,PC,12.7692,0.007,,1,qlp-s44-faintsearch,QLP,03:46:37.09,22:52:22.18,5.181,0.058,-9.42,0.034,2459518.514709,0.0019512,3.7796053,0.0003577,0.695,0.518,4.438865,0.610456,4080.0,562.093,11.2162,3.2121,47.7257,732.0,10.0,572.23,9.8075,5892.0,126.6,4.3,0.07,1.21,0.06,,,1.07,0.13034,"42,43,44",2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search; slightly v-shaped,5329,1,False,False,False -436843539,5330.01,,3,4,3,3,3,4,4,24.8,78.1,112.26,0,0,1,PC,PC,12.4333,0.008,,1,qlp-s44-faintsearch,QLP,02:41:48.28,24:06:08.35,-4.055,0.057,-2.963,0.051,2459884.465962,0.0029347162,4.6303272,9.83e-05,3.94,0.327,10.111715,0.011842,9270.0,10.9069,13.0324,0.764419,958.026,1549.0,16.0,667.058,14.8985,6701.0,108.6,4.31,0.09,1.38,0.06,-0.028,0.019,1.42,0.233826,"18,42,43,44,58",2022-02-28,2023-03-22,2023-03-22 00:00:00,found in faint-star QLP search,5330,1,False,False,False -387544178,5331.01,,3,4,3,3,3,4,4,10.5,70.9,94.79,1,0,1,PC,PC,12.4433,0.006,,1,qlp-s44-faintsearch,QLP,02:56:58.82,07:51:33.59,-11.054,0.047,-10.626,0.046,2459517.930293,0.0011323,22.7545332,0.00014,3.262,0.257,16.365334,0.005586,14960.0,5.14532,11.7908,0.725752,12.7448,526.0,51.0,322.87,2.7215,5580.0,246.1,4.5,0.09,0.93,0.05,,,0.985,0.1384,"4,31,42,43,44",2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search,5331,1,False,False,False -387515920,5332.01,,3,4,3,3,3,4,4,15.2,50.7,63.66,2,0,1,PC,PC,12.6345,0.014,,1,qlp-s44-faintsearch,QLP,02:52:59.57,08:51:17.93,7.278,0.08,-1.721,0.058,2459520.191396,0.0015062,3.9544873,1.35e-05,1.716,0.307,5.038632,0.007759,4630.0,7.14588,9.29453,0.655407,195.804,1042.0,21.0,609.385,12.9455,6002.5,119.4,4.22,0.08,1.35,0.08,0.2,0.119,1.11,0.137516,"4,31,42,43,44",2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search,5332,1,False,False,False -96948338,5333.01,,3,4,3,3,3,4,4,3.1,29.8,16.02,0,2,1,PC,PC,11.992,0.006,,1,qlp-s44-faintsearch,QLP,04:57:49.91,31:19:07.2,14.045,0.092,-13.908,0.051,2459507.73612,0.006401,11.4420309,0.0002086,5.092,0.631,2.489187,0.00538,2290.0,4.95535,4.14274,0.364964,83.2925,841.0,13.0,208.746,2.0435,4932.0,304.2,4.47,0.12,0.87,0.06,,,0.81,0.137877,"19,43,44",2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search; 3 stars in pixel; potential L1 candidate given Rp error,5333,1,False,False,False -247409676,5334.01,,3,4,3,3,3,4,4,31.0,82.4,102.29,1,0,1,PC,PC,12.3857,0.009,,1,qlp-s44-faintsearch,QLP,02:48:42.3,20:48:33.94,0.8,0.099,-1.157,0.122,2459520.904138,0.0015268,3.6136326,0.0001299,3.31,0.135,7.933071,0.002073,7280.0,1.90899,12.3259,0.843475,674.791,1419.0,35.0,536.758,21.624,5957.5,143.5,4.18,0.09,1.41,0.09,-0.095,0.025,1.09,0.14713,"42,43,44",2022-02-28,2022-02-28,2023-02-08 00:00:00,found in faint-star QLP search,5334,1,False,False,False -381360750,5335.01,,3,4,3,3,3,4,4,5.0,31.6,15.64,0,0,1,PC,PC,12.5223,0.006,,1,qlp-s44-faintsearch,QLP,03:07:48.57,15:21:32.7,1.808,0.084,-1.831,0.068,2459520.725645,0.008269,3.6139919,0.0006334,2.008,0.365,1.934333,0.009632,1780.0,8.87114,4.08922,0.372453,200.83,1048.0,8.0,331.289,4.4255,5427.0,134.3,4.49,0.09,0.92,0.05,,,0.945,0.121142,"42,43,44",2022-02-28,2022-02-28,2023-02-08 00:00:00,found in faint-star QLP search,5335,1,False,False,False -430099722,5336.01,,3,4,3,3,3,4,4,37.3,46.3,317.0,2,0,1,PC,PC,12.8019,0.017,,1,qlp-s44-faintsearch,QLP,06:24:56.29,23:39:28.24,0.944,0.042,-8.527,0.036,2459520.536355,0.0041219,4.0153167,0.001535,3.825,0.293,13.72321,0.014592,12560.0,13.4395,16.8231,1.09473,776.308,1470.0,16.0,778.572,14.7715,6093.9,101.3,4.16,0.08,1.48,0.08,0.217,0.031,1.14,0.138262,44,2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search,5336,1,False,False,False -27294830,5337.01,,3,4,3,3,3,4,4,81.7,134.7,78.21,1,0,1,PC,PC,12.8997,0.006,,1,qlp-s44-faintsearch,QLP,05:10:13.46,19:38:24.3,12.755,0.171,-15.725,0.117,2459522.876624,0.0017229,0.7135221,4.7e-05,0.514,0.207,5.071356,0.265117,4660.0,244.152,10.5169,2.06325,221.115,1074.0,18.0,296.179,10.8305,4626.0,271.0,4.24,0.11,1.08,0.09,,,0.734,0.105372,"43,44",2022-02-28,2022-02-28,2023-04-05 00:00:00,found in faint-star QLP search,5337,1,False,False,False -467615239,5338.01,,3,4,3,3,3,4,4,53.9,121.7,126.99,3,0,1,PC,PC,13.1504,0.006,,1,qlp-s44-faintsearch,QLP,05:12:41.45,22:30:21.33,4.649,0.065,-17.73,0.036,2459522.34129,0.0014742,2.6429687,0.0001395,2.184,0.094,19.500176,0.007756,17800.0,7.14343,13.9715,,346.2,1201.0,40.0,430.82,6.4185,5439.0,122.0,4.41,,1.01,,,,0.949,,"43,44",2022-02-28,2022-02-28,2023-04-05 00:00:00,found in faint-star QLP search,5338,1,False,False,False -101348333,5339.01,,3,4,3,3,3,4,4,14.1,88.1,59.79,1,2,3,PC,PC,11.375,0.006,,1,qlp-s44-faintsearch,QLP,03:16:41.63,30:44:49.31,83.165,0.195,-48.795,0.111,2459494.722261,0.0018451,15.1873222,0.0001001,3.535,0.239,9.498187,0.007032,8710.0,6.47711,8.96869,0.535744,43.4731,715.0,17.0,225.157,4.114,5938.0,182.4,4.49,0.09,0.98,0.05,,,1.084,0.144818,"18,42,43,44",2022-02-28,2022-02-28,2023-02-08 00:00:00,found in faint-star QLP search,5339,1,False,False,False -14156936,5340.01,,3,4,4,3,3,4,4,32.0,86.5,121.8,2,12,3,PC,PC,11.7085,0.009,,1,qlp-s44-faintsearch,QLP,03:57:14.28,22:22:42.01,10.228,0.072,-11.137,0.044,2459519.940368,0.0012768,4.9393117,0.0001821,4.696,0.163,6.992898,0.001012,6420.0,0.931936,13.6199,0.661625,908.364,1529.0,59.0,532.629,11.3105,6287.2,106.7,4.07,0.08,1.69,0.08,0.126,0.016,1.23,0.174195,"42,43,44",2022-02-28,2022-02-28,2023-06-28 00:00:00,found in faint-star QLP search,5340,1,False,False,False -90669930,5341.01,,3,4,4,3,1,4,4,8.4,64.8,93.44,2,0,0,PC,PC,13.3053,0.006,,1,qlp-s44-faintsearch,QLP,03:33:58.64,32:07:07.58,0.195,0.082,-17.18,0.047,2459513.930501,0.0019014,20.6875239,0.000112,2.57,0.312,24.696978,0.034237,22490.0,31.5325,11.6872,,4.38918,403.0,18.0,273.76,3.831,4660.7,102.6,4.56,,0.75,,0.00370666,0.0140921,0.742,,"18,43,44",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5341,1,False,False,False -356990855,5342.01,,3,4,3,3,3,4,4,31.0,70.1,59.58,1,2,3,PC,PC,11.4217,0.006,,1,qlp-s44-faintsearch,QLP,05:05:43.62,29:43:31.94,5.366,0.109,-5.05,0.058,2459524.058419,0.0032341,0.5894678,6.86e-05,0.631,0.199,1.108016,0.018198,1020.0,16.7606,8.96055,1.2016,1143.23,1619.0,12.0,534.078,14.3275,5946.0,327.6,3.72,0.1,2.39,0.14,,,1.087,0.160178,"43,44",2022-02-28,2022-02-28,2023-02-08 00:00:00,found in faint-star QLP search,5342,1,False,False,False -34980970,5343.01,,2,4,2,2,3,4,4,1.7,33.6,6.75,0,2,3,PC,PC,11.1828,0.006,,1,qlp-s44-faintsearch,QLP,03:12:06.25,24:32:00.82,-10.435,0.071,36.372,0.059,2459503.519191,0.0054885,12.836391,0.0023429,3.366,0.606,1.423247,0.004104,1310.0,3.78032,2.49822,0.214512,39.9592,700.0,10.0,120.861,0.5225,5156.0,227.0,4.7,0.09,0.69,0.04,,,0.872,0.11441,"42,43,44",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search; potential L1 candidate,5343,1,False,False,False -16005254,5344.01,,3,4,4,3,3,4,4,37.2,132.1,68.58,3,0,1,PC,PC,13.2239,0.007,,1,qlp-s44-faintsearch,QLP,04:13:03.89,20:54:54.56,40.291,0.1,-22.02,0.075,2459522.82521,0.0011749,3.7927572,0.000182,1.47,0.096,26.865037,0.017872,24440.0,16.4604,9.66312,0.390388,13.7486,536.0,30.0,138.367,1.3235,3575.0,157.0,4.67,0.01,0.58,0.02,,,0.57434,0.0204236,"43,44",2022-02-28,2022-02-28,2023-06-29 00:00:00,found in faint-star QLP search,5344,1,False,False,False -96165095,5345.01,,2,4,2,2,3,4,4,9.2,43.1,11.78,1,2,1,PC,PC,11.0543,0.006,,1,qlp-s44-faintsearch,QLP,04:50:24.36,33:00:50.49,3.011,0.082,-19.67,0.052,2459523.116855,0.0027173,1.1062164,1.11e-05,1.728,0.261,0.716822,0.001905,660.0,1.75447,3.45691,0.331124,996.39,1565.0,12.0,207.17,1.85,4816.0,421.3,4.03,0.13,1.41,0.11,,,0.78,0.161842,"19,43,44",2022-02-28,2022-02-28,2023-01-15 00:00:00,found in faint-star QLP search; potential L1 candidate,5345,1,False,False,False -26018819,5346.01,,3,4,3,3,1,4,4,20.2,62.1,102.7,1,0,0,PC,PC,13.4348,0.011,,1,qlp-s44-faintsearch,QLP,03:30:05.53,20:48:28.17,5.37,0.06,-4.086,0.044,2459520.301801,0.0026129,3.9783327,0.0002564,2.643,0.177,11.888518,0.007867,10890.0,7.24601,12.3611,,470.153,1297.0,24.0,839.92,22.0475,6441.1,67.6,4.41,,1.18,,-0.179,0.065,1.3,,"42,43,44",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5346,1,False,False,False -21119973,5347.01,,3,4,3,3,1,4,4,33.9,88.9,51.85,2,0,0,PC,PC,13.032,0.02,,1,qlp-s44-faintsearch,QLP,02:24:32.85,24:06:05.57,,,,,2459883.253886,0.0011668275,1.7109175,3.6e-06,1.625,0.205,10.594016,0.006818,9710.0,6.27994,7.44992,0.666691,324.161,1182.0,42.0,,,4686.8,201.7,,,0.72,0.06,,,,,"18,42,43,44,58",2022-02-28,2023-03-22,2023-03-22 00:00:00,found in faint-star QLP search,5347,1,False,False,False -366527844,5348.01,,3,4,3,3,3,4,4,42.7,49.7,317.0,5,0,1,PC,PC,12.4069,0.017,,1,spoc-s59-b0A,QLP,05:05:54.81,32:43:23.27,-0.676,0.085,-1.313,0.049,2459910.690032,0.002388763,3.08998198415148,0.00043537054,2.11867917875453,0.1048614,9.1392,0.493307,8382.18615843932,454.2491,15.4433027825718,0.97892106,1786.2030794124,1658.06845936224,17.650608,631.337,17.7835,6622.0,166.1,4.23,0.1,1.49277997016907,0.0784222,,,1.39,0.229933,"43,44,59",2022-02-28,2023-03-06,2023-03-24 12:12:10,found in faint-star QLP search,5348,1,False,False,False -26054627,5349.01,,3,4,4,3,3,4,4,29.2,97.2,64.39,5,0,1,PC,PC,13.8117,0.007,,1,qlp-s44-faintsearch,QLP,03:30:51.02,20:52:46.66,37.14,0.131,-19.382,0.089,2459521.813826,0.0017811,3.3176675,0.0001424,1.796,0.141,27.499597,0.022586,25010.0,20.8026,9.42671,0.409875,29.6839,650.0,25.0,188.336,2.1015,3640.0,157.0,4.66,0.01,0.59,0.02,,,0.576672,0.0204883,"42,43,44",2022-02-28,2022-02-28,2023-04-05 00:00:00,found in faint-star QLP search,5349,1,False,False,False -68808155,5350.01,,3,4,3,3,3,4,4,37.0,140.1,92.8,0,13,2,PC,PC,11.1846,0.006,,1,qlp-s44-faintsearch,QLP,04:57:36.55,21:36:07.11,-1.556,0.116,-23.974,0.058,2459520.679657,0.0013409,7.5811005,0.0003228,4.457,0.118,10.72559,0.001743,9830.0,1.60497,11.5863,0.957323,321.879,1180.0,82.0,277.419,4.057,6257.6,169.7,4.41,0.11,1.14,0.09,-0.117,0.158,1.217,0.182249,"43,44",2022-02-28,2022-02-28,2023-01-10 00:00:00,found in faint-star QLP search,5350,1,False,False,False -27476314,5351.01,,3,4,3,3,3,4,4,29.3,28.4,317.0,1,0,1,PC,PC,12.8807,0.007,,1,qlp-s44-faintsearch,QLP,05:13:29.38,18:15:34.47,0.418,0.049,-4.598,0.031,2459523.18765,0.0034445,2.8817237,0.0003267,1.596,0.229,7.933071,0.014051,7280.0,12.9414,14.306,0.992239,310.304,1169.0,10.0,796.298,18.831,6182.0,125.3,4.08,0.08,1.64,0.09,,,1.18,0.16827,"43,44",2022-02-28,2022-02-28,2023-04-05 00:00:00,found in faint-star QLP search,5351,1,False,False,False -69995219,5352.01,,3,4,3,3,3,4,4,20.3,65.0,56.02,0,0,1,PC,PC,12.6022,0.006,,1,qlp-s44-faintsearch,QLP,05:12:09.52,28:32:48.75,-1.922,0.057,6.144,0.036,2459523.255686,0.0041254,2.0389145,0.0002887,1.42,0.554,3.872117,0.0412,3560.0,37.9463,8.65136,0.999615,868.398,1512.0,11.0,508.519,8.745,6396.0,177.7,4.28,0.09,1.36,0.06,,,1.282,0.199468,"43,44",2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search,5352,1,False,False,False -113919944,5353.01,,5,5,5,5,5,5,5,29.2,76.3,71.92,1,0,1,PC,FP,12.55,0.009,,1,qlp-s44-faintsearch,QLP,03:36:39.67,19:33:57.31,4.558,0.048,-14.963,0.03,2459524.201966,0.0025809,1.2297408,0.0001024,1.234,0.139,4.373456,0.007153,4020.0,6.58768,9.99875,0.673167,1036.94,1580.0,8.0,647.462,10.3255,6186.6,135.1,4.19,0.09,1.45,0.08,-0.224,0.043,1.18,0.175127,"42,43,44",2022-02-28,2022-02-28,2023-05-09 00:00:00,found in faint-star QLP search,5353,1,False,False,False -34781378,5354.01,,3,4,3,3,3,4,4,28.6,80.3,100.16,3,2,1,PC,PC,12.0664,0.008,,1,qlp-s44-faintsearch,QLP,03:05:19.36,28:11:08.97,-0.81,0.179,-2.38,0.147,2459520.861271,0.0008672,4.7949288,1.27e-05,3.898,0.123,7.867451,0.001228,7220.0,1.13101,12.1728,0.75176,487.852,1309.0,46.0,461.002,17.943,5850.0,128.2,4.17,0.09,1.41,0.08,,,1.06,0.133861,"18,42,43,44,58",2022-02-28,2023-03-22,2023-03-22 00:00:00,found in faint-star QLP search,5354,1,False,False,False -96170689,5355.01,,3,4,3,3,3,4,4,11.6,44.6,61.06,0,0,1,PC,PC,12.0647,0.007,,1,qlp-s44-faintsearch,QLP,04:51:09.51,34:37:39.81,20.515,0.081,-15.809,0.056,2459912.057185,0.0031586413,9.6125545,8.93e-05,4.242,0.509,3.774056,0.004671,3470.0,4.30177,9.05686,0.546357,165.055,998.0,18.0,397.84,6.0475,5825.7,101.7,4.1,0.08,1.51,0.07,0.194,0.039,1.05,0.13357,"19,43,44,59",2022-02-28,2023-03-06,2023-03-06 00:00:00,found in faint-star QLP search,5355,1,False,False,False -467684543,5356.01,,3,4,3,3,3,4,4,21.6,52.6,116.87,0,0,1,PC,PC,12.5434,0.008,,1,qlp-s44-faintsearch,QLP,04:03:51.52,31:46:33.47,-2.239,0.053,0.215,0.03,2459521.25817,0.0040831,3.1948695,0.0005079,3.786,0.312,5.005909,0.003905,4600.0,3.59627,13.3231,0.773565,1793.16,1812.0,21.0,933.117,23.156,6577.4,111.2,3.97,0.09,2.0,0.1,-0.025,0.049,1.37,0.214024,"43,44",2022-02-28,2022-02-28,2023-02-19 00:00:00,found in faint-star QLP search,5356,1,False,False,False -150006846,5357.01,,3,4,3,3,3,4,4,20.0,75.6,96.87,0,0,1,PC,PC,12.669,0.006,,1,qlp-s44-faintsearch,QLP,04:39:21.9,27:17:16.91,28.908,0.064,-23.799,0.048,2459513.678245,0.0016475,9.6995203,0.0007293,3.998,0.197,13.756197,0.004701,12590.0,4.32995,11.9608,0.77657,95.3586,870.0,37.0,343.58,3.31,5504.0,332.4,4.38,0.1,1.06,0.07,,,0.966,0.147278,"43,44",2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search,5357,1,False,False,False -46631742,5358.01,,2,4,2,2,3,4,4,9.3,59.3,12.23,0,2,3,PC,PC,11.5278,0.006,,1,spoc-s14-s60-b0A-PC,QLP,03:36:44.14,28:33:00.97,19.873,0.091,-45.404,0.062,2459450.138346,0.0019317588,2.6599176523685,2.3744093e-05,2.27082597808112,0.19862486,1.424605,0.129422,1311.24894412926,119.19538,3.52598848026584,0.37635008,231.446812506425,994.792610466366,10.183947,138.708,1.063,4636.3,110.2,4.5,0.1,0.802523970603943,0.0636332,0.0535241,0.0251917,0.736,0.0825654,"18,42,43,44,58",2022-02-28,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search; L1 candidate,5358,1,False,False,True -90767677,5359.01,,3,4,3,3,1,4,4,43.3,115.6,63.36,2,0,0,PC,PC,14.8143,0.008,,1,qlp-s44-faintsearch,QLP,03:36:15.85,30:12:21.35,38.658,0.183,-24.723,0.152,2459522.004048,0.0031504,1.6817287,0.0001363,0.491,0.297,17.368823,3.46861,15870.0,3189.61,9.28931,2.93309,6.00664,436.0,9.0,175.567,3.847,3174.0,157.0,4.76,0.01,0.47,0.02,,,0.467069,0.0216791,"42,43,44",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5359,1,False,False,False -427578289,5360.01,,3,5,5,3,3,4,4,66.8,124.9,317.0,1,0,1,PC,APC,13.3701,0.007,,1,qlp-s44-faintsearch,QLP,03:39:38.43,28:58:50.23,9.034,0.064,-5.383,0.04,2459882.51727,0.004263757,4.0107869,3.05e-05,0.829,0.284,9.038269,5.332355,8290.0,4899.24,24.4253,,115.574,913.0,14.0,895.565,36.8165,6175.1,85.2,4.23,,1.38,,-0.264,0.082,1.18,,"18,42,43,44,58",2022-02-28,2023-03-22,2023-03-22 00:00:00,found in faint-star QLP search; TFOP APC,5360,1,False,False,False -366602797,5361.01,,5,5,5,5,5,5,5,15.7,49.6,51.37,0,0,0,PC,FP,13.0581,0.008,,1,qlp-s44-faintsearch,QLP,05:06:18.04,31:16:25.59,-1.088,0.054,-7.303,0.032,2459523.395332,0.0069489,1.3574339,0.0003208,2.315,0.373,3.676004,0.009167,3380.0,8.44277,8.22797,,3506.27,2143.0,16.0,703.628,13.5575,6332.0,122.0,4.25,,1.4,,,,1.25,,"43,44",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5361,1,False,False,False -308522539,5362.01,,3,4,3,3,3,4,4,7.8,30.2,93.24,0,0,1,PC,PC,13.357,0.012,,1,qlp-s44-faintsearch,QLP,05:01:28.58,28:48:59.78,4.428,0.055,-2.666,0.031,2459505.662464,0.0068725,13.7279713,0.0002402,3.039,0.629,5.671473,0.029315,5210.0,26.9996,11.6412,,59.8936,775.0,9.0,905.181,24.89,6416.5,168.1,4.16,,1.57,,-0.183,0.16,1.29,,"19,43,44",2022-02-28,2022-02-28,2023-04-05 00:00:00,found in faint-star QLP search,5362,1,False,False,False -426448042,5363.01,,3,4,3,3,1,4,4,12.9,53.5,69.94,1,0,0,PC,PC,13.462,0.007,,1,qlp-s44-faintsearch,QLP,02:40:48.47,18:49:18.34,20.718,0.057,-4.728,0.048,2459521.5485,0.0032289,6.7504762,0.0006531,3.105,0.384,12.997752,0.015426,11900.0,14.2074,9.83914,,111.352,904.0,23.0,493.144,7.3685,5318.7,59.3,4.5,,0.89,,0.208,0.057,0.92,,"42,43,44",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5363,1,False,False,False -366754985,5364.01,,3,4,3,3,3,4,4,26.5,50.3,104.09,1,2,3,PC,PC,10.8227,0.014,,1,qlp-s44-faintsearch,QLP,05:08:01.55,31:53:54.16,-2.382,0.098,-13.629,0.06,2459524.130515,0.0020386,1.4466879,9.1e-06,0.952,0.275,0.749417,0.006243,690.0,5.75017,12.418,1.2835,600.438,1379.0,12.0,645.231,16.7165,6332.0,150.8,3.27,0.09,4.28,0.21,,,1.25,0.190507,"19,43,44",2022-02-28,2022-02-28,2023-02-08 00:00:00,found in faint-star QLP search,5364,1,False,False,False -21132157,5365.01,,3,4,3,3,3,4,4,7.6,25.7,42.97,0,3,2,PC,PC,11.0418,0.009,,1,qlp-s44-faintsearch,QLP,02:26:04.75,26:05:30.46,14.097,0.072,-10.155,0.062,2459886.030983,0.0058456813,4.0069668,4.43e-05,5.848,0.934,0.847205,0.001536,780.0,1.41469,7.39456,0.585378,2636.63,1996.0,17.0,651.291,18.1495,6080.3,136.6,3.61,0.09,2.76,0.17,0.04,0.016,1.14,0.158325,"18,42,43,44,58",2022-02-28,2023-03-22,2023-03-22 00:00:00,found in faint-star QLP search,5365,1,False,False,False -45034406,5366.01,,3,4,3,3,3,4,4,15.6,51.6,61.23,0,3,1,PC,PC,12.4595,0.02,,1,qlp-s44-faintsearch,QLP,06:07:09.5,23:07:53.93,2.468,0.08,-4.026,0.064,2459521.306343,0.0048908,1.5328484,0.0003309,2.227,0.394,3.229435,0.009575,2970.0,8.81882,9.08045,0.734698,3844.96,2193.0,12.0,866.009,30.433,6943.0,186.3,4.17,0.09,1.67,0.09,,,1.52,0.255177,"43,44",2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search,5366,1,False,False,False -81178747,5367.01,,3,4,3,3,3,4,4,28.5,87.5,69.17,3,0,1,PC,PC,12.9139,0.014,,1,qlp-s44-faintsearch,QLP,06:07:11.11,27:37:19.35,-11.68,0.045,-0.428,0.038,2459521.649686,0.0019492,1.6647221,0.0001155,1.392,0.144,8.666096,0.012167,7950.0,11.2065,9.78767,0.60143,659.103,1411.0,21.0,571.89,8.091,6155.0,146.4,4.46,0.09,1.06,0.05,,,1.17,0.166874,"43,44",2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search,5367,1,False,False,False -56457123,5368.01,,3,4,3,3,1,4,4,32.7,90.8,128.45,0,0,0,PC,PC,12.8879,0.011,,1,qlp-s44-faintsearch,QLP,04:11:34.47,28:10:43,-2.041,0.069,-4.311,0.045,2459519.98093,0.0024554,3.612762,0.0003549,2.8,0.21,8.184651,0.004752,7510.0,4.37639,14.0647,0.679559,1578.1,1755.0,28.0,748.464,17.4105,7976.9,117.7,4.31,0.08,1.6,0.06,-0.061,0.067,1.92,0.299688,"43,44",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5368,1,False,False,False -113804153,5369.01,,3,4,3,3,3,4,4,14.5,40.2,90.98,0,0,3,PC,PC,13.1765,0.009,,1,qlp-s44-faintsearch,QLP,03:09:31.65,20:34:41.39,12.02,0.06,-12.714,0.047,2459518.990013,0.0045335,4.2455163,0.000775,4.028,0.381,6.075374,0.007052,5580.0,6.49486,11.4879,,748.73,1457.0,17.0,821.427,21.0565,5905.5,22.9,4.08,,1.56,,-0.0735361,0.0209024,1.07,,"43,44",2022-02-28,2022-02-28,2022-12-14 12:09:24,found in faint-star QLP search,5369,1,False,False,False -400381085,5370.01,,3,4,3,3,3,4,4,35.6,37.0,317.0,2,0,1,PC,PC,12.4064,0.007,,1,qlp-s44-faintsearch,QLP,06:06:59.31,30:11:21.8,9.017,0.071,6.191,0.063,2459522.197579,0.0016959,3.7539574,0.0002403,2.544,0.128,9.859689,0.003871,9040.0,3.56572,14.5318,0.871992,469.124,1296.0,40.0,621.805,15.8265,6350.0,343.9,4.19,0.11,1.5,0.08,,,1.26,0.236333,"43,44",2022-02-28,2022-02-28,2023-02-27 00:00:00,found in faint-star QLP search,5370,1,False,False,False -17457400,5371.01,,3,4,4,3,3,4,4,102.7,64.5,317.0,3,0,1,PC,PC,13.3689,0.01,,1,qlp-s44-faintsearch,QLP,04:27:12.06,20:46:29.51,-1.467,0.097,1.862,0.054,2459522.846281,0.0016422,1.27615,8.7e-05,0.992,0.214,16.122871,0.066287,14740.0,61.0505,14.5092,,212.433,1063.0,19.0,324.08,4.225,4671.0,123.0,4.28,,1.03,,,,0.74,,"43,44",2022-02-28,2022-02-28,2023-04-05 00:00:00,found in faint-star QLP search,5371,1,False,False,False -371470493,5372.01,,3,4,3,3,3,4,4,12.0,44.5,74.21,0,2,3,PC,PC,11.8941,0.008,,1,qlp-s44-faintsearch,QLP,02:54:17.47,23:11:57.07,29.647,0.084,-11.225,0.082,2459513.585855,0.0022852,11.6270831,7.08e-05,2.383,0.753,3.861221,0.016063,3550.0,14.7949,10.1847,0.888093,58.1485,769.0,14.0,459.882,12.5295,5776.1,125.1,4.05,0.08,1.6,0.09,-0.021,0.056,1.04,0.134997,"18,42,43,44",2022-02-28,2022-02-28,2023-02-08 00:00:00,found in faint-star QLP search,5372,1,False,False,False -9155187,5373.01,,5,5,5,5,5,5,5,47.8,142.3,94.95,0,0,2,KP,KP,11.4556,0.006,,1,spoc-s47-b02,SPOC,07:46:51.93,39:05:40.09,-21.525,0.074,-23.906,0.044,2459582.167296,0.0005462688,4.18783747823124,0.0001841526,2.99059035976513,0.05615697,12.46514,0.150976,11415.1655183157,139.04398,11.7695064763403,0.6327308,397.47993276932,1138.80286608832,72.59221,276.211,3.8655,5521.95,115.726,4.34199,0.0811434,1.10006999969482,0.0542789,0.299,0.051,0.97,0.128046,47,2022-03-01,2022-02-28,2022-12-14 12:09:24,XO-5 b,5373,1,False,False,True -20096620,5374.01,,5,5,5,5,5,5,5,124.7,129.7,317.0,0,0,2,KP,KP,9.9596,0.007,,1,spoc-s47-b02,SPOC/QLP,08:39:31.77,47:21:06.87,-24.142,0.055,-26.346,0.045,2459580.063121,0.0004351924,2.91640044952125,7.712813e-05,3.28681000294742,0.028533638,7.908685,0.050248,7257.70254811599,46.278923,16.778361035147,0.82368296,1978.52445351015,1701.00310016709,144.50359,246.81,2.208,5720.0,119.2,3.92,0.08,1.82744002342224,0.0888216,0.46,0.07,1.02,0.12974,47,2022-03-01,2022-02-28,2022-12-14 12:09:24,HAT-P-13 b,5374,1,False,False,True -71268730,5375.01,TIC 71268730.01,3,4,4,3,3,4,4,129.4,269.6,91.0,6,0,3,PC,PC,12.456,0.009,,1,spoc-s14-s55-b0A-PC,SPOC,07:35:08.37,71:24:02.42,48.468,0.019,19.008,0.028,2459580.736149,0.00032540015,1.72155754258619,1.41452e-06,1.74115251635181,0.01620373,35.104581,0.343193,31815.4060060264,316.04227,11.4801145409534,0.3511035,140.278576796432,877.743429847854,113.69737,121.333,0.221,3865.0,157.0,4.62323,0.0113623,0.633426010608673,0.0187028,,,0.614549,0.0202159,"40,47,53",2022-03-01,2023-03-17,2023-04-05 00:00:00,orbital period close to variability period; active host,5375,1,False,False,True -219113246,5376.01,,3,5,5,3,3,4,4,25.7,60.6,115.9,0,1,1,PC,APC,10.8175,0.007,,1,qlp-s56-tois,SPOC,18:07:02.29,70:28:21.95,1.497,0.066,10.81,0.068,2459850.073687,0.0028041,2.9859596,1.21e-05,1.671,0.257,2.064861,0.199038,1900.0,183.304,13.2487,0.953968,388.241,1236.0,10.0,685.736,16.4045,6417.0,124.477,3.6338,0.0871999,2.87,0.14,,,1.29,0.200232,"14,15,16,17,18,20,21,22,23,24,25,26,40,41,47,48,50,51,52,53,54,55,56",2022-03-01,2023-02-05,2023-02-27 00:00:00,V-shaped; possibly synchronized; evolved host star; TFOP SM/APC,5376,1,False,False,True -467153319,5377.01,,2,4,2,2,4,4,4,3.2,33.6,7.67,0,2,5,PC,PC,9.3672,0.006,,1,qlp-s47-ffi,QLP,08:44:32.41,59:24:24.15,-39.15,2.0,-46.53,2.0,2459605.750481,0.0102496,4.4626933,0.0001249,3.643,0.764,0.32577,0.001339,300.0,1.23363,2.68559,,1155.12,,10.0,214.278,,6803.0,,,,1.62,,,,,,"20,47",2022-03-01,2022-02-28,2022-12-14 12:09:24,weak depth aperture correlation; no centroid offset,5377,1,False,False,True -321069529,5378.01,,3,4,3,3,3,4,4,,,121.45,0,2,2,PC,PC,10.2275,0.007,,1,qlp-s47-ffi,QLP,06:54:24.49,38:38:45.97,15.992,0.072,-28.869,0.065,2459598.389742,0.0059116,5.2841676,0.0001685,3.41,1.005,0.760281,0.005299,700.0,4.88093,13.6017,,186.605,1029.0,9.0,492.608,11.1965,4626.0,122.0,,,5.09,,,,,,"20,47",2022-03-01,2022-02-28,2022-12-14 12:09:24,weak centroid offset; red giant; variable star; weak BLS,5378,1,False,False,False -328325110,5379.01,,3,4,3,3,3,4,4,71.4,127.4,317.0,3,2,2,PC,PC,9.59788,0.006,,1,qlp-s60-ffi,QLP,07:29:41.79,50:41:01.68,-7.068,0.066,0.371,0.047,2459942.544324,0.0003891,12.7426508,1.92e-05,3.633,0.152,11.751316,0.42544,10765.0,391.768,16.6789,0.815273,213.224,1064.0,129.0,200.226,1.9615,6385.0,132.8,4.21,0.09,1.47,0.07,,,1.277,0.198776,"47,60",2022-03-01,2023-02-27,2023-03-03 12:11:24,Gaia DR2 RV error ~10.16 km/s; large for period; v-shaped,5379,1,False,False,True -441587756,5380.01,,2,4,2,2,3,4,4,3.3,29.4,9.25,0,2,2,PC,PC,10.1684,0.006,,1,qlp-s60-ffi,QLP,07:31:02.68,73:07:43.62,6.31,0.044,-5.511,0.055,2459961.80182,0.004388,3.7722904,2.92e-05,2.865,0.349,0.487605,0.029266,449.0,26.9548,2.98659,0.186953,780.126,1472.0,14.0,286.781,3.4505,6525.0,130.1,4.18,0.09,1.56,0.07,,,1.343,0.225945,"20,26,40,47,53,60",2022-03-01,2023-02-27,2023-03-03 12:11:24,weak signal,5380,1,False,False,True -241174783,5381.01,,3,4,3,3,3,4,4,9.2,41.1,32.82,0,2,2,PC,PC,9.54224,0.006,,1,spoc-s14-s60-b0A-PC,QLP,07:45:28.44,44:07:47.37,2.341,0.073,-16.876,0.051,2459603.311382,0.0036062,4.08028642176199,3.4268385e-05,1.4789164867393,0.57551175,0.561061,0.069129,516.622925003369,63.66809,6.30096699264886,7.320291,4280.32356116903,2062.95093793912,7.5044556,390.33,6.9965,6802.3,102.5,3.75,0.08,2.68184995651245,0.109739,-0.116,0.022,1.464,0.24407,"20,47,60",2022-03-01,2023-05-19,2023-06-16 12:14:51,centroid offset centered near TIC 241174784 (Tmag~14.05) and TIC 741666846 (Tmag~ 15) in spoc-s14-s60 multisector,5381,1,False,False,True -356472238,5382.01,,3,4,3,3,4,4,4,4.1,33.4,17.42,0,2,4,PC,PC,9.46981,0.006,,1,qlp-s60-ffi,QLP,07:47:49.08,48:06:54,-13.408,0.059,3.51,0.048,2459961.944111,0.0074171,14.5416243,0.0003706,4.356,1.354,0.772233,0.069973,711.0,64.4456,4.35314,0.328103,176.698,1015.0,15.0,215.238,1.7975,6277.0,131.8,4.06,0.08,1.72,0.08,,,1.226,0.180475,"20,47,60",2022-03-01,2023-02-27,2023-03-03 12:11:24,slight depth-aperture correlation,5382,1,False,False,False -166053959,5383.01,,1,5,5,1,3,4,4,2.4,5.7,2.56,1,2,2,PC,PC,7.90653,0.006,,1,qlp-s48-tois,SPOC,14:10:53.01,62:31:19.91,-17.495,0.104,-2.621,0.099,2459635.64596,0.0058674,2.8114961,3.18e-05,3.35,0.509,0.097721,0.000306,90.0,0.282011,1.39962,0.105234,2368.07,1943.0,10.0,102.134,0.592,6768.0,125.338,4.26201,0.0845762,1.47,0.06,,,1.45,0.23877,"15,16,21,23,41,48",2022-03-24,2022-07-07,2022-12-14 12:09:24,potential L1 planet; possible odd-even likely due to detrending; transits stronger in s48 than in previous sectors,5383,1,False,False,True -165297570,5384.01,,5,5,5,5,5,5,5,204.1,271.4,317.0,0,0,0,KP,KP,9.6022,0.006,,1,spoc-s48-b02,SPOC/QLP,10:28:15.03,25:34:23.29,14.098,0.073,-12.2,0.079,2459610.390465,0.0002237973,2.9895092,5.15e-05,3.350388266192,0.016779294,13.237076,0.055543,12117.7788754425,51.155663,18.8182218449069,0.7559893,1949.87170613221,1694.8109408531,247.27235,218.05,2.0865,6317.0,109.1,4.12,0.08,1.6139600276947,0.0645854,-0.01,0.1,1.24,0.185789,48,2022-03-24,2022-03-24,2022-12-14 12:09:24,KELT-4 A b,5384,1,False,False,True -85266608,5385.01,,3,4,3,3,3,4,4,35.3,37.0,317.0,0,2,2,PC,PC,10.8583,0.008,,1,spoc-s48-b02,SPOC,10:42:31.37,28:11:55.05,-9.182,0.085,0.852,0.077,2459608.235785,0.0024902683,5.16655485276236,0.00073721877,5.97645236805566,0.13450961,4.543429,0.132074,4175.90932993757,121.63699,14.3194419049654,0.7824828,1508.16559874569,1589.39560270668,25.407656,483.675,12.2885,6238.0,124.118,3.88506,0.0864414,2.07920002937317,0.103347,,,1.21,0.180399,48,2022-03-24,2022-03-24,2022-12-14 12:09:24,nearby neighbor TIC 85266607 (Tmag~16.465),5385,1,False,False,True -202425357,5386.01,TIC 202425357.01,3,4,4,3,4,4,4,63.3,69.2,317.0,5,2,3,PC,PC,11.3502,0.007,,1,qlp-s50-tois,SPOC,15:04:25.66,60:32:10.43,-16.152,0.062,6.139,0.065,2459690.091662,0.000318,3.6215615,1.9e-06,1.867,0.244,11.219134,0.007212,10280.0,6.6425,15.1893,0.852616,346.581,1202.0,149.0,394.486,5.697,5920.2,43.2,4.17,0.08,1.43,0.07,,,1.1,0.139107,"15,16,22,23,48,49,50",2022-03-24,2022-09-07,2023-07-07 00:00:00,two stars in pixel,5386,1,False,False,True -166086403,5387.01,,1,5,5,1,3,4,4,1.5,4.2,2.17,1,2,4,PC,PC,8.19888,0.006,,1,qlp-s49-tois,SPOC,14:17:46.9,62:45:30.19,-121.666,0.06,108.705,0.055,2459660.851073,0.0058395,2.8037514,5.34e-05,2.771,0.591,0.076004,0.000544,70.0,0.500761,1.27317,0.125447,2552.75,1980.0,8.0,140.907,0.706,7531.0,126.157,4.31266,0.081399,1.52,0.05,,,1.74,0.290718,"15,16,21,22,23,41,48,49",2022-03-24,2022-08-19,2022-12-14 12:09:24,some systematics in difference image,5387,1,False,False,True -407591297,5388.01,TIC 407591297.01,1,4,1,2,4,4,4,12.6,186.7,4.32,7,2,3,PC,PC,10.5737,0.007,,1,qlp-s48-tois,SPOC,10:08:42.36,35:32:51.21,192.536,0.065,133.121,0.058,2459630.895748,0.0015028,2.594675,9.2e-06,0.313,0.218,1.16236,0.28321,1070.0,260.812,1.89426,0.558897,3.30231,375.0,10.0,18.5226,0.01665,3495.0,157.0,4.91164,0.00411282,0.31,0.01,,,0.291486,0.0202015,"21,48",2022-03-24,2022-06-29,2022-12-14 12:09:24,low SNR; potential L1 planet; also a CTOI from Alton Spencer,5388,1,False,False,True -39143128,5389.01,,3,4,4,3,1,4,4,5.5,66.9,58.04,6,0,0,PC,PC,14.8017,0.008,,1,spoc,SPOC,11:15:12.4,39:21:32.11,-33.111,0.13,-46.871,0.212,2459609.44541,0.0051255147,10.4014008185337,0.0032728175,2.39981276461953,0.23589861,47.88053,3.284834,43141.3479041845,3020.8716,8.81115566599963,0.6774045,5.07435224381864,382.79380646186,15.203625,190.568,3.893,3526.0,157.0,4.80713,0.00667916,0.421427994966507,0.0141762,,,0.415445,0.0215518,48,2022-03-24,2022-03-24,2023-02-20 00:00:00,,5389,1,False,False,True -8853478,5390.01,,3,4,3,3,3,4,4,4.5,47.8,19.85,1,2,2,PC,PC,10.9762,0.007,,1,spoc-s48-b02,SPOC,09:29:46.63,30:03:46.47,-19.864,0.087,-22.214,0.072,2459617.289687,0.0023238303,15.0619708266323,0.0032604116,3.29141068362721,0.33856595,3.017487,0.292111,2775.34945800275,269.0077,4.68748302603037,1.1254267,45.2317162993264,661.424863493165,9.694882,176.69,1.8965,5441.34,142.395,4.51596,0.0882093,0.890606999397278,0.0558995,0.362,0.024,0.949,0.125734,48,2022-03-24,2022-03-24,2022-12-14 12:09:24,period could be half (7.53 d); faint star 2.5 arcsec away,5390,1,False,False,True -298600443,5391.01,,2,4,2,2,3,4,4,0.8,17.6,3.83,1,2,1,PC,APC,10.2521,0.006,,1,qlp-s57-ffi,QLP,18:08:14.57,53:21:56.04,12.017,0.059,-5.547,0.045,2459865.102473,0.0117343,13.6421377,0.0002811,3.522,1.17,0.448502,0.039641,413.0,36.5102,1.77499,0.152109,80.3771,834.0,12.0,170.451,0.9445,5961.0,118.2,4.46,0.08,1.02,0.05,,,1.092,0.139764,"14,15,18,21,24,25,26,40,41,48,51,52,54,55,57",2022-03-24,2023-04-28,2023-05-06 12:13:45,variable host; TFOP APC,5391,1,False,False,True -198512478,5392.01,,1,4,1,2,3,4,4,1.1,5.2,2.27,2,12,2,PC,PC,8.1319,0.006,,1,qlp-s60-ffi,QLP,14:10:29.12,72:35:23.13,-61.603,0.061,-95.347,0.052,2459946.550882,0.0083056,17.5314433,0.0002408,3.468,1.046,0.327942,0.025707,302.0,23.6764,1.30821,0.112705,32.0748,662.0,13.0,48.793,0.0716,5464.0,124.5,4.51,0.08,0.9,0.05,,,0.96,0.127298,"14,15,20,21,22,40,41,47,48,49,60",2022-03-24,2023-02-27,2023-03-03 12:11:24,two stars in pixel; neighboring TIC 198512476 (Tmag ~10.2),5392,1,False,False,True -313425396,5393.01,,1,4,1,2,3,4,4,0.8,21.8,3.97,0,2,1,PC,PC,8.59702,0.006,,1,qlp-s53-ffi,QLP,13:12:32.92,77:50:20.54,-30.185,0.051,-12.32,0.05,2459591.975369,0.0119385,30.0017176,0.0011945,6.737,0.895,0.228029,0.000554,210.0,0.510582,1.82693,0.126593,57.0124,765.0,9.0,102.774,0.2975,6194.0,123.5,4.32,0.08,1.25,0.05,,,1.187,0.166453,"14,20,21,26,40,41,47,48,53",2022-03-24,2022-09-02,2022-12-14 12:09:24,low SNR; potential L1 candidate; possible systematic feature,5393,1,False,False,True -61109252,5394.01,,3,4,3,3,4,4,4,61.7,370.5,67.92,0,2,4,PC,PC,8.0152,0.006,,1,qlp-s48-ffi,SPOC/QLP,10:18:17.88,17:23:47.17,-117.851,0.104,9.136,0.103,2459561.627836,0.0002567,15.1935123,0.0002181,2.582,0.085,6.228241,0.009679,5720.0,8.91448,9.68144,0.568916,84.3696,844.0,167.0,64.2806,0.30665,5977.0,121.9,4.42,0.08,1.07,0.05,,,1.1,0.135335,"45,46,48",2022-03-24,2022-03-24,2022-12-14 12:09:24,v-shaped; RV error 16 km/s,5394,1,False,False,True -298070500,5395.01,TIC 298070500.01,2,4,4,2,3,4,4,1.5,23.5,3.87,2,2,2,PC,PC,9.74007,0.006,,1,qlp-s53-ffi,QLP,13:08:14.03,81:26:44.83,-19.731,0.046,1.6,0.039,2459767.651996,0.0050964,6.5811469,5.8e-05,3.001,0.366,0.238888,0.000603,220.0,0.555668,1.78935,0.125544,253.665,1111.0,9.0,165.951,0.6745,6269.0,129.2,4.39,0.08,1.17,0.05,,,1.222,0.174337,"14,20,21,26,40,41,47,48,53",2022-03-24,2022-09-02,2023-03-05 00:00:00,variable host; low SNR,5395,1,False,False,True -202428245,5396.01,,3,4,3,3,4,4,4,11.3,34.3,91.22,0,4,3,PC,PC,9.3373,0.006,,1,qlp-s48-ffi,QLP,15:08:45.87,62:57:32.95,24.044,0.052,-23.834,0.049,2459614.740623,0.0062173,32.1397677,0.0002964,2.43,0.706,0.923268,0.012493,850.0,11.5062,11.4963,,13.5449,534.0,14.0,265.035,2.0065,5019.0,122.0,,,3.37,,,,,,"15,16,21,22,23,41,48",2022-03-24,2022-03-24,2023-07-07 00:00:00,possible multi,5396,1,False,False,True -18019350,5397.01,,1,4,1,1,4,4,4,2.7,37.7,7.22,0,2,3,PC,PC,10.1174,0.006,,1,qlp-s48-ffi,QLP,11:28:03.39,39:40:21.53,-74.297,0.043,-3.392,0.062,2459620.860667,0.0081482,9.6477019,0.0001811,3.003,0.714,0.727687,0.00291,670.0,2.68007,2.57133,0.227324,77.7367,827.0,11.0,133.778,0.6295,5621.7,137.0,4.48,0.09,0.95,0.06,0.245,0.081,0.995,0.131103,"22,48",2022-03-24,2022-03-24,2022-12-14 12:09:24,slight depth aperture correlation but looks on target in centroid; weak transit shape,5397,1,False,False,True -8260536,5398.01,,3,4,4,3,4,4,4,52.6,248.8,86.64,11,11,4,PC,CP,9.58055,0.006,,1,qlp-s48-ffi,SPOC/QLP,10:47:31.09,36:19:45.96,1.33,0.055,6.743,0.066,2459616.492055,0.0004521,10.590923,0.0006842,4.105,0.076,11.230104,0.000596,10290.0,0.549075,11.1189,0.439777,118.413,919.0,81.0,130.855,0.682,6017.1,99.5,4.44,0.07,1.05,0.04,0.13,0.017,1.113,0.142779,48,2022-03-24,2022-03-24,2023-04-19 00:00:00,potential multi,5398,1,True,False,True -8260536,5398.02,,1,4,1,1,4,4,4,7.9,74.5,11.0,11,11,4,PC,PC,9.58055,0.006,,2,qlp-s48-tois,SPOC/QLP,10:47:31.09,36:19:45.96,1.33,0.055,6.743,0.066,2459628.618083,0.0019911,4.7728997,0.0009118,2.906,0.316,0.999337,0.00109,920.0,1.00431,3.30213,0.172879,370.603,1222.0,16.0,130.855,0.682,6017.1,99.5,4.44,0.07,1.05,0.04,0.13,0.017,1.113,0.142779,48,2022-03-24,2022-07-12,2022-12-14 12:09:24,potential multi,5398,2,True,False,True -284688043,5399.01,,3,4,3,3,4,4,4,4.1,30.0,13.31,0,10,5,PC,PC,9.8008,0.006,,1,qlp-s54-tois,QLP,19:31:55.91,28:39:06.72,11.178,0.063,13.235,0.081,2459790.23977,0.0122235,4.0625969,8.46e-05,3.952,0.812,0.347491,0.043673,320.0,40.2232,3.70815,1.46636,1611.69,1765.0,7.0,320.903,4.97,6629.0,159.3,3.94,0.09,2.09,0.09,,,1.391,0.246033,"14,40,41,54",2022-03-24,2022-11-30,2022-12-14 12:09:24,weak centroid offset; possibly multi,5399,1,False,False,False -332564140,5400.01,,3,4,3,3,3,4,4,3.0,37.7,18.14,0,2,1,PC,PC,10.9815,0.006,,1,qlp-s35-332564140,QLP,09:07:34.3,-14:20:23.52,-65.264,0.067,-5.302,0.092,2459277.297814,0.0032026,19.8067259,0.0001331,4.5,0.462,2.238923,0.002161,2060.0,1.99029,4.46533,0.268078,39.4243,698.0,16.0,202.211,1.745,5513.0,226.5,4.34,2.0,0.95,0.05,,,1.016,0.125154,"8,35",2022-03-24,2022-03-24,2022-12-14 12:09:24,found in faint-star QLP search,5400,1,False,False,False -397058826,5401.01,,3,4,3,3,3,4,4,53.8,202.8,111.15,0,28,2,PC,PC,6.33044,0.006,,1,spoc-s14-s50-b0A-PC,SPOC,12:38:04.38,03:16:56.62,-30.576,0.152,-11.553,0.131,2458930.89446,0.00052989466,6.82910294360144,8.491389e-06,9.87814725923828,0.061820943,0.885761,0.017291,815.483296467715,15.925032,12.9127342605776,0.4435877,14489.4996714382,2798.22799313671,34.899895,212.02,3.483,9333.0,134.294,3.53807,0.0663941,4.33793020248413,0.133492,,,2.369,0.328626,"23,46,50",2022-03-24,2022-12-12,2022-12-16 12:08:26,evolved host star; phase modulations,5401,1,False,False,True -29781207,5402.01,,2,4,2,2,1,4,4,1.2,15.6,2.9,0,0,0,PC,PC,12.3768,0.006,,1,spoc-s01-s39-b02-vetted,SPOC,04:20:25.87,-68:21:38.05,60.167,0.025,56.025,0.027,2459037.058223,0.0042168535,3.31731821645573,8.047225e-05,3.55452886487549,0.5206614,0.499321,0.056106,459.785531160914,51.674328,1.51244405426167,0.920215,101.688931604877,809.912628416427,8.58346,156.801,0.329,4363.0,130.663,4.60832,0.106814,0.677838981151581,0.0593291,,,0.68,0.0810918,"27,28,29,30,31,32,33,34,35,36,37,38,39",2022-03-24,2022-03-24,2022-12-14 12:09:24,small star small planet,5402,1,False,False,True -438519486,5403.01,,3,4,3,3,3,4,4,13.6,69.1,87.24,2,0,2,PC,PC,12.5648,0.006,,1,qlp-s45-faintsearch,QLP,06:42:37.1,15:39:26.56,16.635,0.052,-28.592,0.05,2459533.44912,0.0014423,12.8355591,9.74e-05,1.805,0.17,13.602267,0.015864,12450.0,14.6109,11.2388,1.00163,9.72374,491.0,17.0,358.712,3.74,5311.7,181.4,4.45,0.11,0.95,0.08,0.074,0.161,0.914,0.118181,"6,33,44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5403,1,False,False,False -56798909,5404.01,,3,4,3,3,3,4,4,10.6,54.6,15.68,0,0,1,PC,PC,13.2476,0.013,,1,qlp-s45-faintsearch,QLP,06:45:26.6,22:17:25.31,-9.936,0.056,-66.709,0.05,2459546.130937,0.0060536,2.177475,0.0005882,2.454,0.692,4.842308,0.03049,4450.0,28.0819,4.05014,0.355838,284.168,1143.0,13.0,157.413,0.7,4027.0,159.0,4.67,0.01,0.57,0.02,,,0.566634,0.0203055,"44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search,5404,1,False,False,False -172353721,5405.01,,3,4,3,3,3,4,4,10.1,42.2,82.07,1,0,1,PC,PC,13.424,0.016,,1,qlp-s45-faintsearch,QLP,06:34:46.5,32:48:29.77,-0.562,0.05,-13.236,0.044,2459538.83454,0.0034454,9.0711977,0.0001124,4.183,0.364,11.306898,0.015397,10360.0,14.1808,10.7594,,139.161,956.0,14.0,644.909,16.3765,5649.0,123.0,4.38,,1.06,,,,1.0,,"20,43,44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search,5405,1,False,False,True -127226712,5406.01,,3,4,3,3,3,4,4,21.2,60.1,74.36,0,0,1,PC,PC,13.1891,0.012,,1,qlp-s45-faintsearch,QLP,05:39:51.98,12:15:28.38,0.379,0.04,-3.546,0.035,2459550.363779,0.0017209,0.8045139,2.6e-06,1.259,0.2,4.079164,0.007634,3750.0,7.03093,10.209,,4653.02,2300.0,18.0,1125.7,32.53,7110.0,122.0,4.24,,1.59,,,,1.58,,"6,43,44,45",2022-04-20,2022-04-20,2023-01-04 00:00:00,found in faint-star QLP search,5406,1,False,False,False -372424377,5407.01,,3,4,3,3,3,4,4,20.6,64.9,127.36,2,0,2,PC,PC,12.8161,0.007,,1,qlp-s45-faintsearch,QLP,06:45:22.86,17:18:38,-2.961,0.042,-4.623,0.036,2459549.018978,0.0031035,5.4683192,0.0006124,3.251,0.222,11.614131,0.007311,10640.0,6.73365,13.9823,0.814277,425.087,1264.0,25.0,867.107,22.7935,6606.6,131.3,4.31,0.09,1.36,0.07,0.02,0.01,1.38,0.234889,"44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5407,1,False,False,False -430093142,5408.01,,3,4,3,3,3,4,4,22.6,26.6,317.0,0,0,2,PC,PC,12.8456,0.017,,1,qlp-s45-faintsearch,QLP,06:25:16.68,20:32:09.07,-1.202,0.057,-2.124,0.047,2459549.599245,0.004103,0.9598377,9.68e-05,1.429,0.295,2.467423,0.01291,2270.0,11.8905,17.4316,1.83121,5539.92,2403.0,12.0,2162.6,160.06,7575.0,179.4,3.64,0.09,3.31,0.25,,,1.76,0.288913,"43,44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5408,1,False,False,False -115628210,5409.01,,3,4,3,3,3,4,4,21.6,63.0,43.55,1,0,1,PC,PC,13.0709,0.013,,1,qlp-s45-faintsearch,QLP,05:35:55.92,31:46:05.8,-0.779,0.058,-3.915,0.043,2459550.047281,0.0016415,0.594385,3.9e-06,0.573,0.159,2.478305,0.040216,2280.0,37.0393,7.44558,,939.24,1542.0,12.0,675.216,11.85,6078.0,122.0,4.27,,1.3,,,,1.14,,"19,43,44,45",2022-04-20,2022-04-20,2023-02-27 00:00:00,found in faint-star QLP search,5409,1,False,False,False -76882795,5410.01,,3,4,3,3,3,4,4,24.2,67.2,120.66,0,0,1,PC,PC,13.2148,0.014,,1,qlp-s45-faintsearch,QLP,05:50:52.5,28:49:11.45,-2.407,0.053,-8.345,0.042,2459543.466503,0.0040866,4.1059353,0.0006965,3.031,0.282,12.448485,0.013836,11400.0,12.7429,13.555,,494.014,1313.0,18.0,711.856,16.9855,6140.3,71.8,4.31,,1.25,,0.145,0.07,1.16,,"44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search,5410,1,False,False,False -76032342,5411.01,,3,4,3,3,3,4,4,38.2,52.0,317.0,1,0,1,PC,PC,13.176,0.018,,1,qlp-s45-faintsearch,QLP,05:44:16.46,28:47:29.58,-0.146,0.051,-5.434,0.04,2459549.378495,0.0020265,3.0604071,0.0001306,3.175,0.172,13.613261,0.005093,12460.0,4.69041,18.6847,,1261.17,1660.0,14.0,1030.07,37.1705,6623.0,123.0,4.14,,1.67,,,,1.39,,"43,44,45",2022-04-20,2022-04-20,2023-02-27 00:00:00,found in faint-star QLP search; likely inflated,5411,1,False,False,False -386197662,5412.01,,3,4,3,3,3,4,4,144.5,281.0,124.57,1,2,2,PC,PC,10.8006,0.006,,1,qlp-s45-faintsearch,QLP,06:56:32.33,13:25:45.1,3.562,0.078,-6.24,0.067,2459550.39516,0.0007315,0.3828485,7e-07,0.493,0.101,1.042807,0.817042,960.0,752.24,13.7767,5.13043,14493.6,3056.0,28.0,403.133,7.3015,6419.6,143.5,4.1,0.09,1.68,0.09,0.228326,0.0123266,1.293,0.206544,"6,33,44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search; short period,5412,1,False,False,False -269838674,5413.01,,3,4,3,3,3,4,4,4.8,35.3,25.53,0,2,3,PC,PC,10.883,0.006,,1,qlp-s45-faintsearch,QLP,06:00:12.73,22:20:24.81,7.63,0.121,-8.861,0.096,2459534.921329,0.0051349,12.612483,0.0022643,3.406,0.427,1.640701,0.002696,1510.0,2.48351,5.43397,0.402353,69.7878,805.0,14.0,292.347,11.8045,5981.0,131.1,4.22,0.08,1.34,0.08,,,1.1,0.143627,"43,44,45",2022-04-20,2022-04-20,2023-02-08 00:00:00,found in faint-star QLP search,5413,1,False,False,False -371164829,5414.01,,3,4,3,3,1,4,4,16.5,35.3,317.0,1,0,0,PC,PC,14.3554,0.007,,1,qlp-s45-faintsearch,QLP,07:17:28.27,31:28:54.64,15.31,0.075,-22.398,0.069,2459529.149554,0.0052496,10.7833596,0.0036968,3.957,0.671,29.22703,2.990944,26560.0,2750.97,15.4312,4.08661,35.1978,678.0,13.0,357.23,6.238,3892.0,157.0,4.57,0.01,0.7,0.02,,,0.665787,0.0210118,"44,45",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5414,1,False,False,False -52517713,5415.01,,3,4,3,3,3,4,4,29.5,42.2,317.0,1,0,1,PC,PC,13.2792,0.015,,1,qlp-s45-faintsearch,QLP,05:36:39.4,14:54:52.26,1.522,0.054,-4.748,0.044,2459544.736928,0.001102,2.9858191,8.9e-06,2.966,0.162,10.615944,0.004435,9730.0,4.08438,17.8139,,1945.7,1850.0,36.0,1213.74,62.815,7497.0,123.0,4.16,,1.81,,,,1.73,,"6,43,44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search,5415,1,False,False,False -87405719,5416.01,,3,4,3,3,3,4,4,6.6,82.8,42.84,0,0,2,PC,PC,12.9331,0.007,,1,qlp-s45-faintsearch,QLP,06:52:02.43,25:12:04.68,32.225,0.059,-169.977,0.059,2459537.052957,0.0025535,13.0152698,0.0030654,3.251,0.742,20.495503,0.070127,18700.0,64.5872,7.36631,0.509875,10.6129,502.0,22.0,117.782,0.477,3799.0,157.0,4.72,0.01,0.52,0.02,,,0.517719,0.0203499,45,2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5416,1,False,False,False -79316101,5417.01,,3,4,4,3,3,4,4,45.0,50.0,317.0,3,0,1,PC,PC,12.7225,0.006,,1,qlp-s45-faintsearch,QLP,06:00:20.33,26:21:11.64,8.261,0.043,-2.224,0.035,2459549.214251,0.0010004,2.8675385,7.09e-05,2.88,0.088,15.935551,0.002424,14570.0,2.23238,14.6783,1.25847,888.042,1520.0,68.0,595.812,9.1925,6219.5,102.2,4.37,0.1,1.18,0.1,0.00243312,0.037588,1.199,0.167217,"43,44,45",2022-04-20,2022-04-20,2023-06-26 00:00:00,found in faint-star QLP search,5417,1,False,False,False -115564354,5418.01,,2,4,2,2,3,4,4,5.5,45.4,7.06,2,2,1,PC,PC,11.6985,0.006,,1,qlp-s45-faintsearch,QLP,05:36:01.52,32:19:00.56,9.888,0.085,-12.72,0.067,2459550.466346,0.0030904,1.6421819,1.44e-05,2.459,0.37,1.194967,0.002255,1100.0,2.07706,2.54445,0.190702,1746.99,1801.0,18.0,205.719,2.2795,5627.0,220.5,4.64,0.09,0.79,0.04,,,0.997,0.134612,"19,43,44,45",2022-04-20,2022-04-20,2023-02-08 00:00:00,found in faint-star QLP search,5418,1,False,False,False -68443254,5419.01,,3,4,3,3,3,4,4,20.8,26.6,317.0,3,0,1,PC,PC,13.3683,0.007,,1,qlp-s45-faintsearch,QLP,06:52:24.48,33:38:55.7,-1.795,0.047,-4.252,0.042,2459544.75985,0.0021643,4.8002161,3.1e-05,2.439,0.431,11.592183,0.02196,10620.0,20.226,15.2174,,336.117,1192.0,20.0,1088.28,35.36,6498.4,55.8,4.26,,1.41,,-0.179,0.054,1.33,,"20,44,45",2022-04-20,2022-04-20,2023-02-19 00:00:00,found in faint-star QLP search,5419,1,False,False,False -195155818,5420.01,,3,4,3,3,3,4,4,9.0,36.1,72.88,0,0,1,PC,PC,12.9624,0.01,,1,qlp-s45-faintsearch,QLP,06:41:41.91,21:03:24.09,2.805,0.059,-4.848,0.052,2459549.135055,0.005866,6.0614403,0.0006945,3.601,0.441,5.180444,0.010839,4760.0,9.98273,10.0397,0.775661,440.51,1276.0,14.0,946.417,28.2775,6507.7,141.9,4.25,0.1,1.43,0.08,0.14,0.02,1.34,0.216467,"43,44,45",2022-04-20,2022-04-20,2023-02-08 00:00:00,found in faint-star QLP search,5420,1,False,False,False -47132480,5421.01,,3,4,3,3,3,4,4,23.8,40.8,317.0,2,1,1,PC,PC,11.7692,0.012,,1,qlp-s45-faintsearch,QLP,06:30:29.08,19:51:42.44,1.391,0.069,-1.879,0.06,2459541.720815,0.0024865,6.5552932,0.0005037,3.016,0.778,5.147716,0.013846,4730.0,12.7527,19.1366,1.53989,938.617,1542.0,26.0,1198.93,61.345,7787.0,152.8,3.86,0.09,2.64,0.16,,,1.84,0.304287,"43,44,45",2022-04-20,2022-04-20,2023-02-08 00:00:00,found in faint-star QLP search,5421,1,False,False,False -80611440,5422.01,,3,4,3,3,3,4,4,12.6,48.2,44.8,0,11,3,PC,PC,11.2391,0.006,,1,qlp-s45-faintsearch,QLP,05:47:22.47,25:37:33.72,8.357,0.11,-0.151,0.089,2459542.250192,0.0033729,5.3767627,0.0004647,4.241,0.394,2.587132,0.002761,2380.0,2.54252,7.55274,0.605973,459.135,1289.0,22.0,346.141,7.167,5663.5,103.8,4.05,0.08,1.57,0.11,-0.192,0.026,1.006,0.122035,"43,44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search,5422,1,False,False,False -47319867,5423.01,,3,4,3,3,3,4,4,4.4,33.5,15.92,0,0,2,PC,PC,12.6165,0.007,,1,qlp-s45-faintsearch,QLP,07:12:18.26,20:45:06.96,-5.745,0.048,-17.711,0.038,2459549.039683,0.0078672,5.7163378,0.0017415,2.66,0.435,3.066101,0.014559,2820.0,13.4093,4.11482,0.382367,94.7057,869.0,8.0,261.785,1.95,4964.8,105.8,4.59,0.08,0.76,0.04,0.171617,0.032196,0.819,0.0930369,"44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5423,1,False,False,False -436099179,5424.01,,5,5,5,5,5,5,5,12.9,42.7,38.0,0,0,1,PC,FP,12.5284,0.007,,1,qlp-s45-faintsearch,QLP,05:35:20.94,12:06:57.38,-7.404,0.067,-1.81,0.053,2459548.984631,0.0024655,0.8999342,4.2e-06,1.606,0.306,1.869074,0.005617,1720.0,5.17331,6.8761,0.547096,3729.32,2177.0,17.0,740.068,18.949,6211.0,120.8,4.09,0.08,1.64,0.09,,,1.2,0.164309,"6,43,44,45",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5424,1,False,False,False -429501231,5425.01,,3,4,3,3,3,4,4,39.2,114.2,48.53,2,0,1,PC,PC,12.8591,0.007,,1,qlp-s45-faintsearch,QLP,06:01:43.62,22:14:44.47,2.642,0.063,-7.9,0.05,2459550.242065,0.0013446,0.4553752,1.53e-05,0.604,0.085,3.795847,0.014519,3490.0,13.3721,7.9095,0.61584,2215.14,1911.0,22.0,554.08,15.7705,6439.0,410.9,4.49,0.12,1.07,0.06,,,1.303,0.253679,"43,44,45",2022-04-20,2022-04-20,2023-02-27 00:00:00,found in faint-star QLP search,5425,1,False,False,False -127957099,5426.01,,3,4,3,3,3,4,4,8.5,54.9,22.45,0,2,3,PC,PC,10.9753,0.006,,1,qlp-s45-faintsearch,QLP,05:26:35.91,31:37:58.99,-12.844,0.186,-3.933,0.129,2459541.462505,0.002267,5.8095099,4.37e-05,2.427,0.767,1.901703,0.008032,1750.0,7.3974,5.0621,0.51398,398.441,1244.0,20.0,283.552,5.272,6353.1,142.0,4.42,0.1,1.15,0.09,-0.305644,0.00686426,1.262,0.196356,"19,43,44,45",2022-04-20,2022-04-20,2023-02-08 00:00:00,found in faint-star QLP search,5426,1,False,False,False -52420398,5427.01,,3,4,3,3,3,4,4,45.2,127.1,130.65,2,0,2,PC,PC,11.659,0.006,,1,qlp-s45-faintsearch,QLP,05:35:52.41,12:55:33.41,0.758,0.073,-32.606,0.058,2459548.748875,0.0004484,5.2374183,5.6e-06,3.741,0.064,12.701113,0.000698,11630.0,0.642721,14.2208,0.824095,403.505,1248.0,92.0,363.385,5.1995,6042.1,117.6,4.28,0.09,1.27,0.07,-0.28,0.014,1.123,0.151921,"6,43,44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5427,1,False,False,False -76545118,5428.01,,3,4,3,3,3,4,4,18.3,62.2,106.51,0,1,3,PC,PC,11.9736,0.006,,1,qlp-s45-faintsearch,QLP,05:48:49.06,28:40:16.81,1.238,0.926,-1.776,0.926,2459547.272908,0.0025289,3.0343155,0.0001933,1.664,0.308,3.479927,0.006952,3200.0,6.40275,12.5732,,1230.19,,19.0,1066.66,,8415.0,,,,2.16,,,,,,"43,44,45",2022-04-20,2022-04-20,2023-02-08 00:00:00,found in faint-star QLP search,5428,1,False,False,False -5800958,5429.01,,5,5,5,5,5,5,5,7.6,36.5,48.11,2,1,2,PC,FP,11.9696,0.016,,1,qlp-s45-faintsearch,QLP,05:15:57.24,22:04:29.84,-4.087,0.089,-4.084,0.058,2459545.884668,0.0059403,4.2318085,0.0005616,2.558,0.364,1.934333,0.004834,1780.0,4.4521,7.88895,0.591489,1128.72,1614.0,9.0,809.167,32.202,8064.0,170.6,4.17,0.08,1.91,0.09,,,1.96,0.299276,"43,44,45",2022-04-20,2022-04-20,2023-04-03 12:03:25,found in faint-star QLP search,5429,1,False,False,False -46774573,5430.01,,3,4,3,3,3,4,4,24.2,30.2,317.0,1,0,1,PC,PC,13.2621,0.015,,1,qlp-s45-faintsearch,QLP,06:28:01.24,22:53:54.97,-0.581,0.068,-4.542,0.064,2459546.30366,0.0024642,3.8635521,0.0002295,3.896,0.183,12.393573,0.005853,11350.0,5.39062,15.1873,,1333.49,1683.0,29.0,1031.52,28.18,6797.0,122.0,4.3,,1.42,,,,1.46,,"43,44,45",2022-04-20,2022-04-20,2023-02-27 00:00:00,found in faint-star QLP search,5430,1,False,False,False -302895184,5431.01,,3,4,3,3,3,4,4,26.3,29.4,317.0,0,0,1,PC,PC,13.1207,0.012,,1,qlp-s45-faintsearch,QLP,05:32:41.27,14:57:25.41,4.583,0.047,-7.611,0.037,2459541.977239,0.0020449,4.788785,1.65e-05,3.135,0.609,8.283111,0.012904,7600.0,11.8848,16.3086,,487.83,1309.0,27.0,811.056,17.5145,6045.0,122.0,3.96,,1.83,,,,1.12,,"6,43,44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search,5431,1,False,False,False -86898676,5432.01,,3,4,3,3,3,4,4,38.1,98.3,90.37,3,2,1,PC,PC,11.444,0.006,,1,qlp-s45-faintsearch,QLP,06:34:22.83,24:14:08,4.136,0.071,-0.666,0.062,2459546.030839,0.0017153,2.9525486,0.0001132,2.694,0.137,6.239161,0.002857,5730.0,2.63129,11.4188,0.644457,531.966,1337.0,27.0,373.957,5.9075,5612.0,124.4,4.09,0.08,1.48,0.08,,,0.993,0.127368,"43,45",2022-04-20,2022-04-20,2023-02-19 00:00:00,found in faint-star QLP search,5432,1,False,False,False -75697959,5433.01,,3,4,3,3,3,4,4,20.3,57.4,99.68,2,0,1,PC,PC,14.9819,0.008,,1,qlp-s45-faintsearch,QLP,05:42:29.99,28:32:59.44,-2.431,0.103,-1.786,0.074,2459544.293745,0.0042131,4.1459886,0.0004684,2.604,0.303,28.814425,0.061659,26190.0,56.7885,12.1704,0.716833,56.2686,763.0,13.0,465.477,12.437,3981.0,157.0,4.56,0.02,0.71,0.02,,,0.668164,0.0218967,"43,44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search,5433,1,False,False,False -307377219,5434.01,,5,5,5,5,5,5,5,16.4,43.5,93.06,1,0,2,PC,FP,12.4151,0.015,,1,qlp-s45-faintsearch,QLP,06:35:21.05,14:29:25.18,-0.628,0.073,1.683,0.061,2459542.814078,0.002432,4.1629444,2.14e-05,2.064,0.347,3.991982,0.007048,3670.0,6.49134,11.633,0.835716,243.425,1100.0,18.0,744.34,22.7195,6005.0,142.1,3.94,0.08,1.88,0.1,,,1.11,0.143678,"6,33,43,44,45",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5434,1,False,False,False -294309873,5435.01,,3,4,3,3,3,4,4,10.6,55.9,44.55,1,2,2,PC,PC,12.1706,0.016,,1,qlp-s45-faintsearch,QLP,06:11:59.55,13:45:32.84,-0.931,0.097,-0.651,0.085,2459550.460448,0.0025145,1.2699324,2.52e-05,1.596,0.655,1.727694,0.017992,1590.0,16.5709,7.56197,0.994586,16457.7,3155.0,16.0,1052.12,81.981,9649.0,275.3,4.35,0.09,1.74,0.14,,,2.46,0.348583,"33,43,44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5435,1,False,False,False -155369758,5436.01,,3,4,4,3,3,4,4,19.3,32.2,317.0,2,0,1,PC,PC,13.3742,0.011,,1,qlp-s45-faintsearch,QLP,06:52:24.02,12:31:54.02,-13.972,0.054,-0.705,0.048,2459545.797843,0.0016102,11.9285531,3.18e-05,2.283,0.157,22.699527,0.017525,20690.0,16.1411,16.0753,,18.6079,578.0,27.0,618.277,11.438,5447.3,90.5,4.34,,1.09,,-0.222,0.088,0.95,,"6,33,44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search; looks like star marker is not on-target,5436,1,False,False,False -6853696,5437.01,,3,4,3,3,3,4,4,35.6,39.5,317.0,3,0,1,PC,PC,13.4489,0.008,,1,qlp-s45-faintsearch,QLP,05:26:34.15,21:35:56.99,3.106,0.059,-2.795,0.041,2459544.097774,0.0026137,3.42015,0.0002307,3.801,0.212,12.162976,0.007111,11140.0,6.54905,18.3061,,808.301,1485.0,29.0,943.511,27.294,5708.0,127.0,3.96,,1.76,,,,1.02,,"43,44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search; likely inflated,5437,1,False,False,False -367193060,5438.01,,3,4,3,3,3,4,4,15.8,55.5,44.19,0,2,2,PC,PC,11.5419,0.006,,1,qlp-s45-faintsearch,QLP,06:57:49.52,25:30:55.26,-0.598,0.871,-10.219,0.871,2459549.679322,0.0022836,2.5842514,0.0002224,1.837,0.19,2.565366,0.002527,2360.0,2.32704,7.50424,,424.656,,23.0,317.022,,5860.5,,,,1.51,,0.093,0.038,,,"44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5438,1,False,False,False -247912728,5439.01,,3,4,3,3,3,4,4,20.1,32.2,317.0,1,0,1,PC,PC,13.3853,0.009,,1,qlp-s45-faintsearch,QLP,05:52:01.35,13:12:15.55,1.543,0.06,-4.451,0.052,2459547.015426,0.0019653,5.0775738,2.16e-05,4.053,0.217,9.399617,0.005702,8620.0,5.25172,18.5536,,1365.56,1693.0,25.0,1810.17,98.635,7648.8,56.5,4.09,,2.0,,0.548,0.054,1.79,,"6,33,44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search,5439,1,False,False,False -29374525,5440.01,,5,5,5,5,5,5,5,6.5,52.9,11.63,0,0,3,PC,FP,11.8338,0.006,,1,qlp-s45-faintsearch,QLP,05:45:12.19,18:27:42.27,11.994,0.07,23.754,0.06,2459545.296726,0.0037122,3.813812,0.0003866,2.572,0.456,2.510952,0.003706,2310.0,3.4131,3.44278,0.283758,177.52,1016.0,20.0,151.894,0.9895,4689.0,123.2,4.61,0.09,0.71,0.05,,,0.748,0.0940551,"43,44,45",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5440,1,False,False,False -91697121,5441.01,,3,4,3,3,3,4,4,16.5,48.5,91.38,1,0,1,PC,PC,13.3605,0.01,,1,qlp-s45-faintsearch,QLP,05:54:23.63,15:03:56.17,2.214,0.043,-7.05,0.035,2459546.034378,0.002426,2.8633026,2.48e-05,0.941,0.253,5.125899,0.052206,4710.0,48.0826,11.4725,,147.202,970.0,10.0,1128.92,32.605,6642.2,191.5,4.26,,1.45,,0.051,0.179,1.4,,"6,33,43,44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search,5441,1,False,False,False -406684949,5442.01,,3,4,3,3,3,4,4,27.7,51.1,317.0,0,2,2,PC,PC,12.1047,0.009,,1,qlp-s45-faintsearch,QLP,09:33:44.5,06:44:28.93,-4.807,0.087,8.706,0.092,2459541.585225,0.002674,12.7091678,5.99e-05,1.746,0.318,5.027724,2.259443,4620.0,2078.86,16.3709,6.31091,78.6129,829.0,13.0,499.409,12.037,6145.0,134.7,4.31,0.08,1.25,0.06,,,1.17,0.162566,"8,35,45",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5442,1,False,False,False -400515645,5443.01,,3,4,3,3,3,4,4,10.9,41.6,45.29,0,0,2,PC,PC,12.8173,0.015,,1,qlp-s45-faintsearch,QLP,06:11:29.67,34:58:37.5,-0.008,0.064,-3.857,0.052,2459548.509059,0.0042403,1.6757659,0.0001851,2.248,0.339,2.804819,0.008195,2580.0,7.54777,7.62588,0.656733,3221.06,2098.0,12.0,885.894,24.6875,6960.9,153.6,4.25,0.1,1.53,0.09,-0.154791,0.0102348,1.52,0.2665,"43,44,45",2022-04-20,2022-04-20,2023-02-27 00:00:00,found in faint-star QLP search,5443,1,False,False,False -367193046,5444.01,,3,5,5,3,3,4,4,14.3,62.5,95.18,0,2,1,PC,APC,12.1258,0.006,,1,qlp-s45-faintsearch,QLP,06:57:35.01,25:29:56.09,-3.179,0.078,-8.406,0.063,2459543.136534,0.0020502,10.2780324,0.0009659,1.642,0.359,8.009633,0.022836,7350.0,21.0328,11.8122,0.851445,37.8777,691.0,17.0,589.655,14.219,6545.7,108.0,4.34,0.09,1.3,0.06,-0.042,0.018,1.35,0.209633,"44,45",2022-04-20,2022-04-20,2023-02-19 00:00:00,found in faint-star QLP search,5444,1,False,False,False -255735567,5445.01,,3,5,5,3,3,4,4,32.8,50.0,317.0,0,1,2,PC,APC,11.8888,0.007,,1,qlp-s45-faintsearch,QLP,07:09:42.17,22:44:29.52,-5.499,0.065,-2.369,0.056,2459539.887666,0.0014036,6.3780197,0.0004334,1.226,0.383,7.68155,0.025821,7050.0,23.7813,18.7767,1.58762,71.6141,810.0,16.0,813.803,28.8875,6540.2,146.9,3.96,0.1,2.03,0.12,-0.210958,0.00881764,1.35,0.227823,"44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5445,1,False,False,False -84788795,5446.01,,3,4,3,3,3,4,4,12.9,43.7,82.81,0,0,1,PC,PC,12.7601,0.007,,1,qlp-s45-faintsearch,QLP,06:28:23.17,25:50:04.93,5.474,0.043,-5.87,0.037,2459541.636479,0.0046069,4.4996256,0.0004912,2.497,0.397,5.38774,0.012979,4950.0,11.9539,10.8355,0.787713,409.622,1253.0,16.0,872.619,15.9315,6544.0,126.8,4.2,0.09,1.53,0.07,,,1.35,0.227012,"43,44,45",2022-04-20,2022-04-20,2023-02-27 00:00:00,found in faint-star QLP search,5446,1,False,False,False -239722954,5447.01,,5,5,5,5,5,5,5,11.9,39.0,36.24,1,0,1,PC,FP,13.1472,0.029,,1,qlp-s45-faintsearch,QLP,05:45:50,35:19:53.39,-2.854,0.053,-6.52,0.04,2459550.515708,0.0037135,1.4958429,1.86e-05,1.534,0.335,3.076989,0.014392,2830.0,13.2558,6.70553,,825.738,1493.0,12.0,602.413,12.609,5666.0,122.0,4.24,,1.27,,,,1.01,,"19,43,44,45",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5447,1,False,False,False -291016451,5448.01,,3,4,3,3,3,4,4,18.6,81.6,37.31,1,2,2,PC,PC,12.1629,0.008,,1,qlp-s45-faintsearch,QLP,11:19:58.95,08:21:00.94,-29.197,0.074,2.008,0.058,2459547.931745,0.0039776,3.214031,0.0010022,2.215,0.365,6.239161,0.013422,5730.0,12.3624,6.77869,0.476232,284.023,1143.0,18.0,277.019,3.738,5366.0,109.0,4.55,0.08,0.85,0.04,0.225,0.035,0.93,0.113663,45,2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5448,1,False,False,False -119130170,5449.01,,3,4,3,3,3,4,4,17.1,40.9,106.75,0,0,2,PC,PC,13.4597,0.023,,1,qlp-s45-faintsearch,QLP,05:56:14.86,21:19:55.32,2.837,0.053,-2.466,0.044,2459547.463218,0.0048095,2.5444539,0.0002997,3.709,0.383,5.922529,0.010904,5440.0,10.0426,12.5904,,2136.19,1893.0,15.0,1093.14,41.355,6171.0,123.0,4.01,,1.77,,,,1.18,,"43,44,45",2022-04-20,2022-04-20,2023-02-08 00:00:00,found in faint-star QLP search,5449,1,False,False,False -6653897,5450.01,,5,5,5,5,5,5,5,7.4,50.1,10.31,0,0,1,PC,FP,11.4541,0.006,,1,qlp-s45-faintsearch,QLP,05:24:12.3,20:35:26.32,-10.316,0.087,-5.865,0.067,2459549.122766,0.0040174,0.8857522,8.66e-05,1.579,0.314,0.825473,0.003143,760.0,2.8949,3.19978,0.418552,3880.86,2198.0,11.0,317.566,5.05,6238.2,142.5,4.42,0.12,1.13,0.13,-0.13,0.017,1.208,0.176704,"43,44,45",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5450,1,False,False,False -69028091,5451.01,,3,4,3,3,3,4,4,50.1,117.2,102.23,4,0,1,PC,PC,12.6819,0.007,,1,qlp-s47-faintsearch,QLP,07:12:11.46,30:06:15.6,2.133,0.04,-10.225,0.034,2459606.277449,0.0008435,1.6822448,2.11e-05,1.388,0.078,13.206546,0.003871,12090.0,3.56559,12.3028,0.701953,379.254,1239.0,58.0,463.462,4.732,5534.6,122.8,4.34,0.08,1.1,0.06,0.29,0.114,0.97,0.122387,"44,45,47",2022-04-20,2022-05-17,2023-02-08 00:00:00,found in faint-star QLP search,5451,1,False,False,False -101569583,5452.01,,3,4,3,3,3,4,4,37.2,76.5,119.21,1,0,2,PC,PC,12.6167,0.007,,1,qlp-s45-faintsearch,QLP,07:11:37.74,28:55:26.19,0.78,0.159,-6.631,0.146,2459549.014708,0.0017912,0.9909664,6.75e-05,1.077,0.12,5.551423,0.009975,5100.0,9.18685,13.483,1.73271,1241.85,1653.0,20.0,947.518,109.275,6273.8,102.1,4.0,0.12,1.83,0.22,0.115331,0.0169264,1.22,0.174834,"44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search; short period,5452,1,False,False,False -58997701,5453.01,,3,4,3,3,3,4,4,26.3,45.1,317.0,0,0,1,PC,PC,13.1132,0.007,,1,qlp-s45-faintsearch,QLP,06:59:57.02,19:36:55.8,7.452,0.046,-15.1,0.037,2459537.38324,0.0060457,8.3743739,0.0027495,3.692,0.693,6.239161,3.30108,5730.0,3035.79,16.9687,,695.906,1430.0,9.0,719.398,14.983,6086.0,122.0,4.38,,1.14,,,,1.14,,"44,45",2022-04-20,2022-04-20,2023-02-27 00:00:00,found in faint-star QLP search,5453,1,False,False,False -26406123,5454.01,,3,4,3,3,3,4,4,14.1,30.3,117.63,0,0,1,PC,PC,13.2612,0.007,,1,qlp-s45-faintsearch,QLP,07:09:43.16,15:35:46.44,-2.223,0.068,4.775,0.062,2459547.086573,0.0066608,3.7196227,0.0001008,4.948,0.613,4.656924,0.007484,4280.0,6.89274,13.3603,,1249.33,1656.0,17.0,1141.59,53.725,5623.0,122.0,3.81,,2.07,,,,1.0,,"33,44,45",2022-04-20,2022-04-20,2023-02-19 00:00:00,found in faint-star QLP search,5454,1,False,False,False -75171363,5455.01,,3,4,3,3,3,4,4,15.1,39.1,98.59,0,0,1,PC,PC,13.3462,0.014,,1,qlp-s45-faintsearch,QLP,05:39:24.51,28:37:36.88,4.52,0.06,-10.58,0.047,2459545.639101,0.0052376,4.267781,0.0007133,4.58,0.371,5.573249,0.007397,5120.0,6.81242,12.0047,,939.48,1542.0,15.0,826.112,25.565,5903.0,122.0,4.02,,1.67,,,,1.07,,"43,44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search,5455,1,False,False,False -87044036,5456.01,,5,5,5,5,5,5,5,12.2,47.4,28.87,1,2,1,PC,FP,12.3128,0.011,,1,qlp-s45-faintsearch,QLP,06:35:24.96,24:50:09.09,9.391,0.084,-10.713,0.067,2459550.184214,0.0045965,1.0711292,0.0001034,2.213,0.533,2.206285,0.009023,2030.0,8.31045,5.8474,0.513334,5277.35,2374.0,19.0,555.611,13.6265,6070.0,139.1,4.26,0.08,1.31,0.07,,,1.13,0.153137,"43,44,45",2022-04-20,2022-04-20,2023-01-24 12:02:46,found in faint-star QLP search,5456,1,False,False,False -456971986,5457.01,,3,4,3,3,3,4,4,12.0,48.4,32.94,1,2,2,PC,PC,11.7207,0.006,,1,qlp-s45-faintsearch,QLP,06:42:27.68,19:44:06.63,-5.664,0.078,-10.463,0.067,2459549.699253,0.0050891,1.2452975,0.0001328,2.086,0.315,1.531968,0.00272,1410.0,2.50503,6.31449,0.466749,4049.64,2222.0,19.0,595.667,17.7855,6580.3,133.9,4.13,0.09,1.66,0.1,0.046,0.076,1.369,0.217851,"43,44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5457,1,False,False,False -367434266,5458.01,,3,4,3,3,3,4,4,5.5,56.2,29.58,0,2,1,PC,PC,10.6275,0.006,,1,qlp-s45-faintsearch,QLP,06:59:42.45,30:32:32.6,0.565,0.17,-65.29,0.141,2459521.577876,0.0015911,22.0634495,0.0001929,1.561,0.207,3.229435,0.005046,2970.0,4.6474,5.93106,0.400509,3.80311,389.0,16.0,187.103,3.815,5762.0,128.1,4.44,0.08,1.01,0.05,,,1.031,0.13083,"20,44,45",2022-04-20,2022-04-20,2023-02-08 00:00:00,found in faint-star QLP search,5458,1,False,False,False -1942969,5459.01,,3,4,3,3,3,4,4,26.5,25.7,317.0,1,0,1,PC,PC,12.8255,0.019,,1,qlp-s45-faintsearch,QLP,05:15:43.75,34:05:32.25,-0.159,0.048,4.583,0.032,2459912.805476,0.0034746795,2.8078585,1.64e-05,1.516,0.463,5.245901,0.02507,4820.0,23.0901,14.8378,1.28562,428.439,1267.0,17.0,921.369,21.123,6338.0,178.4,3.95,0.09,1.95,0.1,,,1.25,0.193839,"19,43,44,45,59",2022-04-20,2023-03-16,2023-03-16 00:00:00,found in faint-star QLP search,5459,1,False,False,False -445990611,5460.01,,3,4,3,3,3,4,4,9.5,27.4,101.78,0,0,2,PC,PC,12.8132,0.006,,1,qlp-s45-faintsearch,QLP,07:05:33.35,15:40:13.61,-3.977,0.043,-3.808,0.037,2459547.690911,0.0047011,6.2987919,0.0002138,4.909,0.461,4.26445,0.005972,3920.0,5.50033,12.2385,0.842548,653.131,1408.0,9.0,1195.12,31.425,6265.0,124.0,3.89,0.09,2.07,0.11,,,1.22,0.178385,"33,44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5460,1,False,False,False -118963720,5461.01,,3,4,3,3,3,4,4,14.3,41.9,96.17,0,7,3,PC,PC,11.8517,0.006,,1,qlp-s45-faintsearch,QLP,05:55:09.15,18:20:08.51,0.116,0.091,-10.288,0.079,2459535.991914,0.0027969,7.4603194,0.0006934,2.516,0.4,3.338337,0.00567,3070.0,5.22228,11.8373,0.971801,114.587,911.0,10.0,620.87,23.603,6034.1,121.4,3.88,0.09,2.01,0.14,0.063,0.076,1.12,0.142751,"43,44,45",2022-04-20,2022-04-20,2023-02-08 00:00:00,found in faint-star QLP search,5461,1,False,False,False -79971247,5462.01,,3,4,3,3,3,4,4,8.9,53.5,19.7,0,2,1,PC,PC,10.86,0.006,,1,qlp-s45-faintsearch,QLP,06:04:23.71,29:04:23.79,13.565,0.118,-15.245,0.104,2459547.439961,0.0031252,3.5533716,0.0002736,1.856,0.218,1.597206,0.003009,1470.0,2.7715,4.6477,0.338131,310.113,1169.0,15.0,285.501,4.81,6280.9,131.8,4.36,0.09,1.21,0.07,0.194182,0.0116512,1.227,0.182714,"43,44,45",2022-04-20,2022-04-20,2023-01-15 00:00:00,found in faint-star QLP search,5462,1,False,False,False -437786834,5463.01,,3,4,3,3,3,4,4,29.8,72.5,103.76,1,0,1,PC,PC,13.1584,0.011,,1,qlp-s45-faintsearch,QLP,05:32:51.44,19:57:08.8,4.255,0.059,6.201,0.046,2459549.288985,0.0038916,1.1002223,8.89e-05,1.083,0.547,4.24265,0.536431,3900.0,493.949,12.4085,,4058.77,2223.0,12.0,1049.51,44.8,6810.0,167.1,4.19,,1.61,,-0.072,0.155,1.47,,"43,44,45",2022-04-20,2022-04-20,2023-02-27 00:00:00,found in faint-star QLP search,5463,1,False,False,False -171646471,5464.01,,3,4,4,3,1,4,4,48.1,102.9,70.46,7,0,0,PC,PC,14.9671,0.008,,1,qlp-s48-faintsearch,QLP,10:35:06.07,19:07:06.17,-52.233,0.134,21.965,0.108,2459635.559804,0.0017861,1.1606902,2.91e-05,1.232,0.145,35.816457,0.066073,32450.0,60.8533,9.92228,0.560298,101.767,884.0,20.0,282.849,5.8395,3572.0,157.0,4.71,0.01,0.53,0.02,,,0.524583,0.0216074,"45,48",2022-04-20,2022-05-17,2023-02-19 00:00:00,found in faint-star QLP search,5464,1,False,False,False -87827371,5465.01,,3,4,3,3,3,4,4,22.6,65.2,100.66,1,0,2,PC,PC,12.8749,0.007,,1,qlp-s45-faintsearch,QLP,07:08:47.88,24:15:21.31,-8.682,0.045,-12.269,0.04,2459547.250384,0.002789,4.3988375,0.000541,1.305,0.233,9.246303,0.028255,8480.0,26.0231,12.172,0.905165,65.4683,792.0,13.0,627.935,9.5015,5717.9,114.2,4.27,0.08,1.22,0.06,0.291,0.063,1.02,0.130516,"44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5465,1,False,False,False -45368525,5466.01,,3,4,3,3,3,4,4,46.3,63.2,317.0,3,0,1,PC,PC,12.7625,0.017,,1,qlp-s45-faintsearch,QLP,06:09:16.59,20:16:25.48,0.171,0.041,-5.874,0.035,2459548.180924,0.0014493,2.8066134,9.4e-05,2.483,0.134,15.89148,0.006318,14530.0,5.81923,17.3144,0.868485,949.059,1546.0,47.0,821.135,17.0295,6709.0,173.0,4.29,0.09,1.41,0.06,,,1.43,0.243161,"43,44,45",2022-04-20,2022-04-20,2023-02-27 00:00:00,found in faint-star QLP search,5466,1,False,False,False -83275782,5467.01,,3,4,4,3,3,4,4,23.3,69.4,77.82,2,12,1,PC,PC,11.8423,0.006,,1,qlp-s45-faintsearch,QLP,06:17:34.49,28:26:42.9,0.743,0.066,-13.796,0.057,2459545.353155,0.0015017,2.6570006,0.0001021,2.125,0.109,4.40616,0.001521,4050.0,1.40049,10.4864,0.646518,688.584,1427.0,31.0,565.359,11.4265,6328.7,108.0,4.11,0.09,1.63,0.09,0.0297836,0.029275,1.25,0.185073,"43,44,45",2022-04-20,2022-04-20,2023-06-12 00:00:00,found in faint-star QLP search,5467,1,False,False,False -172222885,5468.01,,3,4,3,3,3,4,4,10.1,54.7,100.76,2,2,1,PC,PC,12.2122,0.008,,1,qlp-s45-faintsearch,QLP,06:33:16.81,34:04:22.47,8.595,0.087,-11.016,0.07,2459513.290528,0.0014287,20.9233666,9.09e-05,2.47,0.256,10.330916,0.009275,9470.0,8.54284,12.2366,0.765086,14.0816,539.0,24.0,507.02,15.9155,6283.0,130.2,4.36,0.09,1.22,0.07,,,1.23,0.192459,"20,43,44,45",2022-04-20,2022-04-20,2023-01-15 00:00:00,found in faint-star QLP search,5468,1,False,False,False -302419660,5469.01,,3,4,3,3,3,4,4,6.4,35.9,97.68,0,1,2,PC,PC,11.9567,0.01,,1,qlp-s45-faintsearch,QLP,05:27:43.95,16:45:51.56,-1.583,0.084,-3.415,0.061,2459548.558907,0.0035186,29.3312035,0.0006074,3.269,0.327,3.774056,0.007688,3470.0,7.0813,11.9961,0.744543,28.6506,644.0,13.0,727.4,23.4955,7618.0,139.4,4.19,0.07,1.77,0.08,,,1.78,0.265765,"6,32,43,44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5469,1,False,False,False -367267217,5470.01,,3,5,5,3,3,4,4,21.4,66.8,53.79,2,0,1,PC,APC,12.5627,0.006,,1,qlp-s45-faintsearch,QLP,06:04:38.97,31:44:11.18,2.87,0.074,-11.278,0.062,2459550.285455,0.0022472,1.450491,7.36e-05,1.286,0.176,4.209951,0.007331,3870.0,6.75187,8.43132,0.581602,757.504,1461.0,21.0,594.261,18.6995,6067.0,173.2,4.27,0.09,1.29,0.07,,,1.133,0.162144,"43,44,45",2022-04-20,2022-04-20,2023-02-03 12:02:41,found in faint-star QLP search,5470,1,False,False,False -47132361,5471.01,,3,4,3,3,3,4,4,16.9,19.6,317.0,0,0,1,PC,PC,13.2751,0.012,,1,qlp-s45-faintsearch,QLP,06:30:28.96,19:47:41.53,0.062,0.051,-0.293,0.042,2459543.544673,0.0051924,4.9017215,0.0005949,2.3,0.383,7.189611,0.022194,6600.0,20.4416,15.2294,,242.247,1099.0,12.0,1204.45,46.7,6329.0,122.0,4.04,,1.78,,,,1.25,,"43,44,45",2022-04-20,2022-04-20,2023-02-19 00:00:00,found in faint-star QLP search,5471,1,False,False,False -76798849,5472.01,,3,4,3,3,3,4,4,42.7,107.4,109.57,1,0,1,PC,PC,12.8015,0.006,,1,qlp-s45-faintsearch,QLP,05:50:09.67,24:46:28.95,3.472,0.053,0.312,0.04,2459547.063901,0.0011703,2.2703829,6.66e-05,1.947,0.082,13.228527,0.004101,12110.0,3.7774,12.7801,0.696353,515.387,1327.0,39.0,536.648,8.268,5845.0,163.1,4.38,0.08,1.1,0.06,,,1.055,0.13445,"43,44,45",2022-04-20,2022-04-20,2023-02-27 00:00:00,found in faint-star QLP search,5472,1,False,False,False -81808065,5473.01,,3,4,3,3,3,4,4,18.0,28.7,317.0,0,0,1,PC,PC,12.2605,0.009,,1,qlp-s45-faintsearch,QLP,06:10:15.57,24:36:53.38,-1.218,0.085,-4.542,0.072,2459550.383201,0.0026601,7.5554044,0.0004665,4.003,0.363,6.719744,0.004964,6170.0,4.57155,16.0968,1.18932,736.769,1451.0,29.0,1033.36,62.853,7872.0,138.1,4.09,0.09,2.04,0.14,,,1.88,0.285243,"43,44,45",2022-04-20,2022-04-20,2023-02-08 00:00:00,found in faint-star QLP search,5473,1,False,False,False -97669493,5474.01,,3,4,3,3,3,4,4,12.4,34.3,92.19,0,2,1,PC,PC,11.6861,0.016,,1,qlp-s45-97669493,QLP,06:10:02.72,32:56:37.13,-0.517,0.065,-7.716,0.055,2459546.5996,0.0071633,8.4332312,0.0013029,8.47,1.007,2.184526,0.002661,2010.0,2.45072,11.5473,0.785459,911.613,1530.0,19.0,689.255,18.0575,5874.0,167.5,3.68,0.09,2.45,0.14,,,1.06,0.143158,"43,44,45",2022-04-20,2022-04-20,2023-01-15 00:00:00,found in faint-star QLP search; possible odd-even,5474,1,False,False,False -78601408,5475.01,,3,5,5,3,3,4,4,13.2,53.2,92.22,0,2,1,PC,APC,12.2106,0.015,,1,qlp-s45-faintsearch,QLP,05:56:32.94,25:41:02.23,-0.252,0.08,-11.634,0.063,2459540.386039,0.0021119,10.0532043,0.000738,1.543,0.61,5.616903,0.083126,5160.0,76.5588,11.5364,1.55053,55.4002,760.0,9.0,655.835,19.56,6553.2,111.1,4.26,0.09,1.43,0.09,0.056,0.029,1.36,0.217911,"43,44,45",2022-04-20,2022-04-20,2023-02-19 00:00:00,found in faint-star QLP search,5475,1,False,False,False -353361266,5476.01,,3,4,3,3,3,4,4,10.0,46.1,78.41,1,0,1,PC,PC,13.197,0.007,,1,qlp-s45-faintsearch,QLP,06:41:22.3,27:57:41.19,0.5,0.054,-10.36,0.048,2459545.688864,0.0034898,10.3413829,0.0011433,3.595,0.543,11.361755,0.021864,10410.0,20.1372,10.465,,89.0638,855.0,22.0,596.321,10.905,5732.6,31.8,4.43,,1.01,,0.228937,0.0300146,1.02,,"43,44,45",2022-04-20,2022-04-20,2023-02-19 00:00:00,found in faint-star QLP search,5476,1,False,False,False -127229631,5477.01,,3,4,3,3,3,4,4,14.8,65.8,53.36,1,0,1,PC,PC,13.0406,0.05,,1,qlp-s45-faintsearch,QLP,05:39:55.19,14:18:10.88,10.63,0.043,-12.922,0.036,2459544.877302,0.0016934,5.8936518,1.94e-05,2.217,0.348,10.451496,0.016387,9580.0,15.0927,8.37476,,92.0429,862.0,22.0,336.879,2.9645,5508.0,122.0,4.6,,0.82,,,,0.97,,"6,43,44,45",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search; diffimage messy,5477,1,False,False,False -95122849,5478.01,,3,5,5,3,3,4,4,21.7,24.4,317.0,1,2,1,PC,APC,12.0515,0.007,,1,qlp-s47-faintsearch,QLP,07:38:58.07,29:25:43.54,-6.593,0.079,-15.467,0.063,2459592.058475,0.0010947,8.3026667,2.95e-05,5.728,0.145,7.561277,0.000944,6940.0,0.869686,14.6377,0.833382,304.209,1163.0,45.0,591.13,15.4905,5656.0,124.9,3.95,0.08,1.75,0.1,,,1.0,0.12579,"20,44,45,46,47",2022-04-20,2022-05-17,2023-02-27 00:00:00,found in faint-star QLP search,5478,1,True,False,True -95122849,5478.02,,5,5,5,5,5,5,5,7.5,28.7,61.76,1,2,1,PC,FP,12.0515,0.007,,2,qlp-s47-faintsearch,QLP,07:38:58.07,29:25:43.54,-6.593,0.079,-15.467,0.063,2459593.124173,0.0030262,10.1197017,0.000152,2.129,0.345,2.793934,0.006239,2570.0,5.74598,9.15067,0.68646,34.3345,674.0,14.0,591.13,15.4905,5656.0,124.9,3.95,0.08,1.75,0.1,,,1.0,0.12579,"20,44,45,46,47",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search; new multi-planet signal,5478,2,True,False,True -67444896,5479.01,,3,4,3,3,3,4,4,9.6,38.9,97.51,0,3,3,PC,PC,12.2773,0.007,,1,qlp-s46-faintsearch,QLP,11:25:35.23,12:46:00.56,-5.47,0.084,-3.098,0.066,2459570.004911,0.0029391,15.1306782,9.33e-05,4.204,0.391,6.566808,0.005464,6030.0,5.03268,11.9169,0.761142,59.008,772.0,23.0,598.366,21.5705,5799.3,106.2,4.09,0.07,1.52,0.08,0.165706,0.0192001,1.04,0.123493,"22,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5479,1,False,False,False -46307587,5480.01,,3,4,3,3,3,4,4,30.1,65.5,127.72,1,6,4,PC,PC,12.352,0.012,,1,qlp-s46-faintsearch,SPOC/QLP,08:52:35.5,17:29:59.15,-1.115,2.066,-11.756,2.066,2459577.156458,0.0009624,3.6079902,2.5e-06,2.999,0.052,6.741594,0.000343,6190.0,0.316175,17.2602,0.687358,344.792,1200.0,67.0,330.387,,5308.3,102.4,,,2.13,0.08,-0.0698364,0.0142112,,,"44,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search; highly irradiated and likely inflated; candidate is a K2 PC (EPIC 211812935.01),5480,1,False,False,True -69295263,5481.01,,3,4,3,3,3,4,4,9.9,34.9,67.22,1,0,1,PC,PC,13.4144,0.007,,1,qlp-s46-faintsearch,QLP,08:04:42.43,13:24:49.83,-9.32,0.061,-1.658,0.039,2459577.936935,0.0028995,3.9315754,2.29e-05,3.427,0.416,6.075374,0.007275,5580.0,6.7001,9.60432,,711.472,1438.0,18.0,942.604,34.211,6032.1,74.9,4.25,,1.32,,0.222,0.072,1.12,,"7,34,44,45,46",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search,5481,1,False,False,False -459947163,5482.01,,3,4,3,3,1,4,4,9.4,40.2,68.17,0,0,0,PC,PC,12.9922,0.007,,1,qlp-s46-faintsearch,QLP,11:30:22.27,16:45:08.7,-34.619,0.047,12.418,0.04,2459573.446379,0.0037502,7.9923268,6.31e-05,2.176,0.886,6.293762,0.198903,5780.0,183.18,9.69724,1.82733,104.579,890.0,12.0,659.819,13.0,5825.0,128.8,4.32,0.08,1.18,0.06,,,1.05,0.130566,"22,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5482,1,False,False,False -192982424,5483.01,,3,4,4,3,3,4,4,43.8,50.4,317.0,6,4,1,PC,PC,12.2304,0.006,,1,qlp-s46-faintsearch,QLP,09:30:20.83,12:42:23,-9.865,0.082,-15.483,0.068,2459574.246156,0.0012331,3.7702854,0.0001804,2.343,0.53,10.944915,0.031899,10030.0,29.3797,16.647,1.29602,485.903,1307.0,54.0,642.965,20.581,5900.3,108.8,4.06,0.08,1.59,0.08,0.123,0.016,1.07,0.129656,"45,46",2022-04-20,2022-04-20,2023-04-25 00:00:00,found in faint-star QLP search,5483,1,False,False,False -443961200,5484.01,,3,5,5,3,3,4,4,32.3,98.0,55.76,1,2,1,PC,APC,11.394,0.006,,1,qlp-s46-faintsearch,QLP,08:16:04.1,08:49:23.67,-3.101,0.226,-6.15,0.137,2459577.988902,0.0005996,1.1282471,1.7e-06,1.411,0.228,3.174987,0.001669,2920.0,1.53724,8.57678,0.708055,2317.44,1932.0,56.0,463.462,30.205,6655.8,268.0,4.25,0.07,1.49,0.12,0.161188,0.0401424,1.25,0.184305,"7,34,44,45,46",2022-04-20,2022-04-20,2023-02-08 00:00:00,found in faint-star QLP search,5484,1,False,False,False -186815660,5485.01,,3,4,3,3,2,4,4,6.0,26.7,29.38,0,2,2,PC,PC,12.8125,0.007,,1,qlp-s46-faintsearch,QLP,08:17:58.22,15:59:16.5,-6.577,0.046,0.22,0.028,2459577.62758,0.003854,2.5845296,7.7e-06,1.389,0.122,1.934333,0.000905,1780.0,0.833912,5.88309,0.321468,303.08,1162.0,12.0,774.157,16.4635,6119.0,126.2,4.2,0.08,1.4,0.07,,,1.15,0.156153,"44,45,46",2022-04-20,2022-04-20,2023-06-05 00:00:00,found in faint-star QLP search,5485,1,False,False,False -291109653,5486.01,,2,4,2,2,3,4,4,15.4,87.2,14.0,1,0,1,PC,PC,12.2937,0.007,,1,qlp-s50-tois,QLP,12:42:11.88,03:47:18.96,-59.662,0.07,-96.926,0.037,2459691.062965,0.0014577,2.0247088,7.2e-06,1.34,0.178,4.776875,0.005575,4390.0,5.13444,3.7963,0.178134,53.3297,752.0,20.0,89.6811,0.26755,3654.0,157.0,4.69,0.01,0.55,0.02,,,0.548138,0.0202867,"23,46,50",2022-04-20,2022-12-12,2022-12-16 12:08:26,found in faint-star QLP search,5486,1,False,False,False -302305400,5487.01,,3,4,3,3,3,4,4,9.4,31.0,62.3,0,0,2,PC,PC,12.8708,0.007,,1,qlp-s46-faintsearch,QLP,08:25:25.88,25:12:27.43,-3.465,0.05,-3.31,0.03,2459578.326323,0.0054771,4.6549271,0.0006011,4.06,0.387,3.806742,0.004613,3500.0,4.24912,9.1871,0.637842,566.49,1359.0,17.0,778.03,20.744,5706.0,130.0,4.06,0.08,1.56,0.09,,,1.02,0.12865,"44,45,46",2022-04-20,2022-04-20,2023-02-19 00:00:00,found in faint-star QLP search,5487,1,False,False,False -281815702,5488.01,,3,4,3,3,1,4,4,26.0,76.4,98.12,2,0,0,PC,PC,13.324,0.007,,1,qlp-s46-faintsearch,QLP,10:56:56.95,01:56:10.9,5.271,0.053,-1.626,0.046,2459578.318799,0.0022417,3.1910454,0.0002381,1.619,0.203,13.206546,0.01797,12090.0,16.5506,12.0476,,197.437,1044.0,24.0,676.829,17.32,5907.0,122.0,4.45,,1.03,,,,1.07,,"45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5488,1,False,False,False -468983280,5489.01,,2,4,2,2,3,4,4,2.6,6.6,2.67,7,0,1,PC,PC,11.6923,0.007,,1,qlp-s46-faintsearch,SPOC/QLP,08:34:45.91,11:29:22.52,-66.117,0.096,20.702,0.056,2459578.069905,0.0025558,3.1522304,1.43e-05,1.285,0.277,1.140622,0.00409,1050.0,3.76674,1.45291,0.0988976,21.6894,601.0,12.0,45.0907,0.12615,3547.0,157.0,4.81,,0.42,0.01,,,0.409377,0.0203315,"7,34,44,45,46",2022-04-20,2022-04-15,2023-04-05 00:00:00,potential L1 planet; low SNR; also found in faint-star QLP search,5489,1,False,False,True -59575189,5490.01,,3,4,3,3,3,4,4,22.5,54.9,91.46,0,0,1,PC,PC,12.5501,0.009,,1,qlp-s46-faintsearch,QLP,07:16:46.26,18:07:18.57,-1.438,0.038,-8.002,0.033,2459578.060946,0.0021849,2.5193047,0.0001216,3.596,0.15,4.940466,0.001749,4540.0,1.61134,11.5079,0.60346,1412.92,1708.0,30.0,707.292,11.44,5706.5,105.1,4.0,0.07,1.67,0.08,0.445,0.033,1.02,0.122581,"44,45,46",2022-04-20,2022-04-20,2023-02-19 00:00:00,found in faint-star QLP search,5490,1,False,False,False -247166992,5491.01,,2,4,2,2,3,4,4,3.9,38.9,8.64,2,2,2,PC,PC,11.5182,0.007,,1,qlp-s46-faintsearch,QLP,07:34:22.99,17:17:39.38,-17.427,0.069,-3.865,0.057,2459572.370099,0.0045012,5.0280368,0.0005705,2.161,0.435,1.477606,0.004636,1360.0,4.26983,2.87252,0.268468,79.6611,832.0,11.0,152.766,0.935,4825.0,129.6,4.56,0.09,0.77,0.05,,,0.782,0.0904161,"44,45,46",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5491,1,False,False,False -350024178,5492.01,,3,4,4,3,1,4,4,24.9,75.8,88.78,2,0,0,PC,PC,13.1211,0.007,,1,qlp-s46-faintsearch,QLP,10:20:02.26,09:18:02.34,-1.893,0.043,-5.143,0.037,2459576.04381,0.0018058,2.9238483,0.0002297,2.773,0.156,12.151996,0.005953,11130.0,5.48256,11.3257,,728.684,1447.0,32.0,657.548,10.8075,6004.0,123.0,4.43,,1.06,,,,1.11,,"45,46",2022-04-20,2022-04-20,2023-06-20 00:00:00,found in faint-star QLP search,5492,1,False,False,False -468979441,5493.01,TIC 468979441.01,3,4,3,3,3,4,4,3.4,41.6,23.57,8,2,1,PC,PC,10.7421,0.006,,1,qlp-s46-faintsearch,SPOC/QLP,08:34:33.64,09:02:07.37,-21.892,0.084,8.495,0.071,2459577.743092,0.0019492,24.4382779,9.9e-05,5.424,0.337,2.728624,0.001074,2510.0,0.989186,5.1951,0.267357,49.1974,737.0,33.0,225.454,2.54,6151.0,126.674,4.47291,0.0808565,1.04,0.05,,,1.168,0.157975,"7,34,44,45,46",2022-04-20,2022-04-20,2023-02-19 00:00:00,potential multi; also found in faint-star QLP search,5493,1,True,False,True -468979441,5493.02,,1,4,1,1,3,4,4,1.6,23.8,6.65,8,2,1,PC,PC,10.7421,0.006,,2,spoc-s01-s46-b0H,SPOC,08:34:33.64,09:02:07.37,-21.892,0.084,8.495,0.071,2459230.461784,0.004932834,9.40448609195315,0.00018958186,4.36482651711002,0.5968637,0.564385,0.059398,519.682503059116,54.70589,2.46319905253699,0.9474758,163.771941805982,912.388124983404,9.273691,225.454,2.54,6151.0,126.674,4.47291,0.0808565,1.0382399559021,0.0483694,,,1.168,0.157975,"34,44,45,46",2022-04-20,2022-04-20,2023-02-19 00:00:00,potential L1 planet and multi,5493,2,True,False,True -14440334,5494.01,,3,4,3,3,3,4,4,13.1,61.1,21.8,0,2,2,PC,PC,11.7628,0.006,,1,qlp-s46-faintsearch,QLP,07:22:39.07,16:51:56.72,-37.172,0.1,-39.009,0.076,2459576.892815,0.0022974,2.0760349,0.0001085,2.043,0.304,2.69597,0.002777,2480.0,2.55731,4.92939,0.332385,663.223,1413.0,25.0,265.493,3.3705,5386.0,130.5,4.44,0.09,0.96,0.06,,,0.935,0.123101,"44,45,46",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5494,1,False,False,False -380671216,5495.01,,2,4,2,2,3,4,4,2.4,30.4,8.85,0,2,2,PC,PC,10.6421,0.006,,1,qlp-s46-faintsearch,QLP,11:58:22.71,11:43:54.12,-64.187,0.095,-42.585,0.084,2459559.909482,0.0066778,9.6569059,0.0002016,4.278,0.716,0.868937,0.002883,800.0,2.65548,2.91617,0.248258,162.76,995.0,10.0,190.774,2.796,5729.1,142.4,4.41,0.08,1.04,0.06,0.01,0.012,1.02,0.122118,"22,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5495,1,False,False,False -323658120,5496.01,,3,4,3,3,3,4,4,5.6,49.8,63.42,0,5,2,PC,PC,10.7717,0.006,,1,qlp-s46-faintsearch,QLP,09:08:09.04,10:38:11.93,22.043,0.086,-70.632,0.062,2459517.120732,0.0021317,43.8418559,0.0029343,4.599,0.472,5.038632,0.002376,4630.0,2.18812,9.29872,0.486802,8.83961,480.0,37.0,257.828,2.9805,5767.0,126.1,4.21,0.08,1.32,0.06,,,1.033,0.130278,"44,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5496,1,False,False,False -270679144,5497.01,,3,4,3,3,3,4,4,19.9,31.5,317.0,0,8,1,PC,PC,12.3902,0.007,,1,qlp-s46-faintsearch,QLP,09:08:06.22,05:55:26.26,-11.691,0.081,-4.913,0.071,2459559.919615,0.0027489,11.2120396,5.25e-05,3.454,0.526,5.933446,0.721786,5450.0,664.569,17.1459,5.07377,336.815,1193.0,23.0,804.465,32.5365,6147.0,128.0,4.02,0.09,1.75,0.11,,,1.17,0.155152,"8,34,45,46",2022-04-20,2022-04-20,2023-04-03 00:00:00,found in faint-star QLP search,5497,1,False,False,False -262736264,5498.01,,3,4,3,3,3,4,4,6.9,53.6,61.48,0,0,2,PC,PC,12.6811,0.007,,1,qlp-s46-faintsearch,QLP,09:57:27.98,05:10:15.62,-47.466,0.083,-5.64,0.078,2459554.026541,0.0017038,18.2050594,0.0001791,3.347,0.25,11.822659,0.006678,10830.0,6.15052,9.06591,0.63318,12.1018,519.0,33.0,285.229,6.318,4880.9,116.1,4.5,0.09,0.83,0.05,0.281,0.082,0.8,0.0923183,"8,35,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5498,1,False,False,False -386772576,5499.01,,3,4,3,3,3,4,4,30.8,101.0,89.51,3,0,2,PC,PC,12.8935,0.007,,1,qlp-s46-faintsearch,QLP,07:58:57.24,22:47:26.04,-4.554,0.039,-17.599,0.025,2459571.791808,0.001109,4.8038446,0.0001422,2.038,0.113,18.616205,0.009204,17000.0,8.47685,11.3023,0.831337,67.3083,797.0,51.0,335.455,2.714,5019.0,132.8,4.51,0.09,0.83,0.06,0.406,0.122,0.83,0.101918,"44,45,46",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5499,1,False,False,False -62740096,5500.01,,3,4,3,3,3,4,4,128.9,168.2,317.0,2,0,1,PC,PC,13.189,0.006,,1,qlp-s46-faintsearch,QLP,07:44:00.82,20:12:31.91,-9.753,0.043,-3.865,0.037,2459575.934108,0.0011571,1.7530712,4.77e-05,1.019,0.118,12.734069,4.172522,11660.0,3835.66,19.7783,,564.728,1358.0,17.0,513.084,7.106,5625.1,111.9,4.54,,0.89,,0.21,0.108,1.0,,"44,45,46",2022-04-20,2022-04-20,2023-04-05 00:00:00,found in faint-star QLP search,5500,1,False,False,False -94823134,5501.01,,3,4,3,3,3,4,4,3.9,26.6,56.41,0,3,2,PC,PC,12.3295,0.007,,1,qlp-s46-faintsearch,QLP,07:33:24.84,26:40:51.14,0.974,0.069,-22.595,0.06,2459571.771281,0.0039255,24.166804,0.0017333,5.257,0.407,4.373456,0.005833,4020.0,5.37269,8.65143,0.556693,41.1658,705.0,13.0,574.701,12.1055,5985.0,123.9,4.22,0.08,1.35,0.07,,,1.1,0.141439,"44,45,46",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5501,1,False,False,False -126322519,5502.01,,3,4,3,3,3,4,4,3.5,32.5,15.42,0,2,1,PC,PC,10.3404,0.006,,1,qlp-s46-faintsearch,QLP,09:00:48.97,27:59:54,-46.502,0.126,4.781,0.073,2459578.359235,0.0043858,11.6260799,0.0001303,2.937,0.703,0.912402,0.003277,840.0,3.01813,4.02844,0.32105,95.1955,870.0,7.0,248.654,5.308,6317.0,127.3,4.29,0.09,1.32,0.06,,,1.244,0.194083,"21,44,45,46",2022-04-20,2022-04-20,2023-02-27 00:00:00,found in faint-star QLP search,5502,1,False,False,False -350044062,5503.01,,3,4,3,3,4,4,4,25.0,29.5,317.0,1,3,3,PC,PC,12.3391,0.007,,1,qlp-s46-faintsearch,QLP,10:22:19.27,10:17:19.3,-20.29,0.074,-13.331,0.057,2459578.528696,0.0015916,5.9522831,5.8e-06,1.966,0.293,7.933071,0.030474,7280.0,28.0669,15.1211,1.19704,278.678,1138.0,70.0,713.921,19.7405,6031.2,97.5,4.05,0.08,1.65,0.08,-0.175361,0.0192055,1.12,0.148215,"45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5503,1,False,False,False -95079513,5504.01,,3,4,3,3,3,4,4,3.6,32.0,18.34,0,2,2,PC,PC,10.8343,0.007,,1,qlp-s46-faintsearch,QLP,07:38:29.11,26:54:34.18,-6.942,0.087,-29.99,0.089,2459563.048371,0.0034485,13.2414304,0.001724,3.989,0.455,1.553714,0.001942,1430.0,1.78906,4.4877,0.303195,93.077,865.0,13.0,265.58,3.8085,6062.1,144.6,4.34,0.09,1.2,0.07,0.111,0.014,1.13,0.151026,"44,45,46",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5504,1,False,False,False -374350678,5505.01,,3,4,3,3,1,4,4,13.6,75.2,73.58,4,0,0,PC,PC,12.8078,0.007,,1,qlp-s46-faintsearch,QLP,10:43:27.85,03:57:31.32,-0.642,0.058,5.538,0.055,2459573.870053,0.0023741,11.1064221,0.0009356,2.12,0.354,16.729129,0.024898,15290.0,22.9316,10.19,0.736793,20.7088,594.0,25.0,325.186,3.303,5190.5,125.5,4.59,0.09,0.79,0.05,0.231,0.109,0.88,0.107635,"45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5505,1,False,False,False -385312460,5506.01,,3,4,3,3,1,4,4,16.5,42.4,317.0,0,0,0,PC,PC,13.259,0.018,,1,qlp-s46-faintsearch,QLP,12:05:21.59,-12:15:48.42,-31.936,2.197,-19.701,2.197,2459556.878421,0.0020722,19.5862903,0.0001988,6.924,0.23,26.709238,0.006492,24300.0,5.97901,19.398,,88.9614,855.0,49.0,712.281,,5986.0,122.0,4.3,,1.23,,,,,,"36,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search; period could be half,5506,1,False,False,False -377097547,5507.01,,1,4,1,2,4,4,4,5.0,14.5,1.24,7,2,5,PC,PC,10.8055,0.007,,1,qlp-s46-faintsearch,QLP,09:54:24.4,06:38:46.49,-270.275,0.075,61.939,0.077,2459577.455122,0.0042017,1.507126,0.0002242,0.735,0.276,0.825473,0.013416,760.0,12.3566,1.07925,0.141674,30.8037,656.0,10.0,24.4583,0.02695,3514.0,157.0,4.87,,0.36,0.01,,,0.342153,0.0202035,"45,46",2022-04-20,2022-04-20,2023-06-05 00:00:00,found in faint-star QLP search,5507,1,False,False,True -406140233,5508.01,,3,4,3,3,1,4,4,21.1,21.7,317.0,1,0,0,PC,PC,13.4649,0.007,,1,qlp-s46-faintsearch,QLP,09:30:35.85,11:37:37.94,-7.592,0.062,0.165,0.047,2459577.584368,0.0037574,3.1816478,0.0004085,3.493,0.309,10.144593,0.009283,9300.0,8.54953,14.4913,,994.501,1564.0,20.0,1076.22,48.84,5949.3,271.1,4.11,,1.53,,0.08,0.252,1.09,,"45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5508,1,False,False,False -35285308,5509.01,,3,4,3,3,3,4,4,13.4,55.4,61.72,0,0,1,PC,PC,12.5879,0.007,,1,qlp-s46-faintsearch,QLP,09:16:43.69,14:35:32.64,-11.409,0.045,-7.119,0.028,2459572.855698,0.0022231,5.7656076,0.0003122,2.955,0.161,7.353566,0.003769,6750.0,3.47124,9.12778,0.457122,170.956,1007.0,29.0,466.413,6.5245,5638.4,98.5,4.37,0.07,1.08,0.05,0.274179,0.0270626,1.0,0.128738,"44,45,46",2022-04-20,2022-04-20,2023-04-03 00:00:00,found in faint-star QLP search,5509,1,False,False,False -26865340,5510.01,,3,4,3,3,3,4,4,40.3,63.9,317.0,1,2,2,PC,PC,11.4769,0.007,,1,qlp-s46-faintsearch,QLP,07:29:54.68,26:01:09.06,-8.798,0.072,-8.41,0.062,2459574.244787,0.0009984,5.7380349,0.0001502,5.045,0.094,9.50914,0.000626,8720.0,0.576236,17.067,0.868476,998.412,1566.0,49.0,620.47,16.7175,6786.0,128.7,4.11,0.09,1.76,0.09,,,1.46,0.244805,"44,45,46",2022-04-20,2022-04-20,2023-01-10 00:00:00,found in faint-star QLP search,5510,1,False,False,False -389040826,5511.01,,3,4,3,3,1,4,4,13.5,90.7,28.7,1,0,0,PC,PC,12.8656,0.007,,1,qlp-s46-faintsearch,QLP,09:27:59.32,04:12:47.49,-71.55,0.07,-40.894,0.053,2459575.042484,0.0008685,4.7174703,6.6e-06,1.205,0.09,12.580283,0.009226,11520.0,8.49744,5.77392,0.237804,6.87901,451.0,27.0,106.339,0.431,3628.0,157.0,4.72,0.01,0.51,0.02,,,0.51201,0.020276,"8,35,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5511,1,False,False,False -366698929,5512.01,,3,4,3,3,3,4,4,24.1,80.8,80.12,4,0,1,PC,PC,12.5869,0.007,,1,qlp-s46-faintsearch,QLP,12:09:57.82,05:37:54.3,-21.544,0.052,-1.921,0.026,2459573.138543,0.0013007,4.5589188,0.0006926,1.873,0.147,11.273986,0.00867,10330.0,7.98508,10.6821,0.672558,92.6735,864.0,27.0,416.236,4.9,5429.0,126.8,4.4,0.08,1.02,0.06,,,0.95,0.124171,46,2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5512,1,False,False,False -184869170,5513.01,,5,5,5,5,5,5,5,13.9,15.9,317.0,0,4,1,PC,FP,12.3467,0.007,,1,qlp-s46-faintsearch,QLP,07:21:02.07,19:24:06.2,-4.965,0.071,0.473,0.064,2459578.095795,0.0100432,7.7235903,0.0019813,5.953,2.515,2.957226,0.123367,2720.0,113.619,17.2663,3.82328,1249.81,1656.0,14.0,1307.02,69.295,5994.0,129.0,3.5,0.09,3.08,0.22,,,1.1,0.141003,"44,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5513,1,False,False,False -63190194,5514.01,,3,4,4,3,1,4,4,46.5,107.4,108.57,3,0,0,PC,PC,13.4277,0.007,,1,qlp-s46-faintsearch,QLP,10:26:41.64,13:01:07.12,-11.03,0.061,-17.32,0.046,2459575.660235,0.0021987,1.7459947,0.0001194,2.217,0.149,19.931372,0.014411,18190.0,13.2728,12.8043,,773.913,1469.0,31.0,531.582,9.392,5332.0,122.0,4.46,,0.94,,,,0.92,,"45,46",2022-04-20,2022-04-20,2023-03-31 00:00:00,found in faint-star QLP search,5514,1,False,False,False -55275863,5515.01,,2,4,2,2,3,4,4,2.6,37.3,6.8,1,2,2,PC,PC,10.5182,0.006,,1,spoc-42-s46-b0A,SPOC/QLP,09:18:27.93,16:59:23.84,-118.648,0.128,-73.813,0.149,2459577.408076,0.005975,8.59263328645024,0.00068451214,3.385970815054,0.5969929,0.961907,0.07705,885.556923191427,70.963036,2.49746963873674,1.6040318,86.6266933742033,778.095106269812,13.723305,135.459,0.9235,5494.0,126.257,4.57761,0.0801547,0.835681974887848,0.044211,,,0.963,0.119884,"44,45,46",2022-04-20,2022-07-15,2022-12-14 12:09:24,found in faint-star QLP search; potential L1 planet,5515,1,False,False,True -70678449,5516.01,,3,4,3,3,3,4,4,16.8,43.1,103.31,0,2,2,PC,PC,12.2614,0.007,,1,qlp-s46-faintsearch,QLP,10:23:21.17,13:28:20.18,-26.906,0.103,9.553,0.099,2459574.484627,0.0067373,4.3776584,0.0013685,2.864,0.622,4.24265,0.013385,3900.0,12.3277,12.3407,1.22493,448.118,1281.0,20.0,857.001,53.0815,6077.0,123.1,3.88,0.09,2.02,0.15,,,1.14,0.146635,"45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5516,1,False,False,False -307951656,5517.01,,3,4,3,3,3,4,4,16.8,41.5,121.78,1,0,1,PC,PC,13.4016,0.008,,1,qlp-s46-faintsearch,QLP,09:54:28.15,24:18:10.19,12.7,0.055,-5.674,0.055,2459578.586941,0.0028834,4.5867288,3.69e-05,4.382,0.314,8.403463,0.007018,7710.0,6.46395,13.5857,,639.287,1400.0,21.0,1016.76,43.416,5737.0,123.0,4.06,,1.55,,,,1.02,,"21,45,46",2022-04-20,2022-04-20,2023-02-19 00:00:00,found in faint-star QLP search,5517,1,False,False,False -386620582,5518.01,,3,4,3,3,1,4,4,47.7,154.8,109.18,4,0,0,PC,PC,10.927,0.049,,1,qlp-s46-faintsearch,QLP,08:16:36.67,16:23:33.4,-6.998,1.773,-14.787,0.981,2459572.280265,0.0004951,4.469996,6e-05,3.524,0.1,10.122674,0.000544,9280.0,0.500927,11.2936,0.620807,894.532,1523.0,153.0,379.6726,66.2285,6948.0,189.1,,,1.12,0.06,,,,,"44,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,found in faint-star QLP search,5518,1,False,False,False -443582629,5519.01,,2,4,4,2,3,4,4,1.1,5.9,2.22,13,0,1,PC,PC,11.7119,0.007,,1,qlp-s46-faintsearch,SPOC/QLP,11:10:54.66,-03:14:34.14,-42.242,0.142,-47.974,0.135,2459576.96322,0.0049565,5.8512175,6.09e-05,2.013,0.486,1.194967,0.008949,1100.0,8.24256,1.30913,0.122008,13.2162,531.0,10.0,37.4763,0.1325,3443.0,157.0,4.86,,0.37,0.01,,,0.351578,0.0204171,"9,36,45,46",2022-04-20,2022-04-20,2023-04-24 00:00:00,potential L1 planet; low SNR; also found in QLP faintsearch,5519,1,False,False,True -374180079,5520.01,,1,4,1,5,5,5,5,3.0,51.7,10.63,1,9,6,KP,KP,10.6269,0.006,,1,spoc-s01-s46-b0H,SPOC,10:31:44.56,00:56:14.2,56.872,0.151,-68.828,0.242,2459267.652761,0.017607136,14.6989124713478,0.00091513334,3.95396530886927,0.45471516,1.977902,0.124684,1820.05679898799,114.83131,3.24561366595132,0.8551564,16.3594197327327,512.934278731278,14.908724,77.5586,0.3565,4362.0,123.91,4.53943,0.0982321,0.733789026737213,0.0625578,,,0.68,0.0810144,"35,45,46",2022-04-20,2022-04-20,2023-04-07 00:00:00,K2-266 d ,5520,1,True,False,True -374180079,5520.02,,1,4,1,5,5,5,5,2.5,51.1,11.84,1,9,6,KP,KP,10.6269,0.006,,2,spoc-s01-s46-b0H,SPOC,10:31:44.56,00:56:14.2,56.872,0.151,-68.828,0.242,2459263.364625,0.007884263,19.4848256736146,0.00057869026,4.82140150625018,0.37064016,1.597947,0.124457,1470.68082201095,114.62251,3.45865580409372,0.36339328,11.2344754821469,466.936635579869,12.956881,77.5586,0.3565,4362.0,123.91,4.53943,0.0982321,0.733789026737213,0.0625578,,,0.68,0.0810144,"35,45,46",2022-04-20,2022-04-20,2023-04-07 00:00:00,K2-266 e ,5520,2,True,False,True -396932137,5521.01,,3,4,3,3,3,4,4,15.0,106.2,40.87,0,2,2,PC,PC,8.94302,0.006,,1,spoc-s01-s46-b0H,SPOC,11:45:55.55,11:22:14.99,11.207,0.1,-11.263,0.084,2458909.159733,0.0023237888,18.5148537947634,8.2626386e-05,1.46831554280875,0.20831002,1.18867,0.16251,1094.20662981697,149.66617,7.16925645831297,13.403945,122.398229370693,848.327476080797,9.221473,137.592,1.036,6379.0,125.277,4.28293,0.0862207,1.34942996501923,0.0613769,,,1.274,0.200463,"22,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,V-shaped; Gaia DR2 RV error ~9.5 km/s; possible secondary near phase 0.7,5521,1,False,False,True -366409685,5522.01,,3,4,3,3,3,4,4,12.0,47.4,31.36,1,3,1,PC,PC,11.9589,0.007,,1,spoc-s01-s46-b02,SPOC,08:25:33.17,10:10:14.09,1.189,0.079,-6.653,0.049,2459230.040527,0.0007569053,1.38517136413716,8.647643e-06,0.860409355302937,0.3435853,1.841773,0.191829,1694.89794677429,176.66551,6.13483278919044,4.6474957,4355.44049366144,2071.94284297628,11.919058,571.447,15.7195,6294.0,127.014,4.20464,0.0904479,1.45099997520447,0.0793919,,,1.23,0.18243,"34,44,45,46",2022-04-20,2022-04-20,2023-02-19 00:00:00,possible ~500 ppm secondary; 2 in pixel,5522,1,False,False,True -443616612,5523.01,TIC 443616612.01,3,5,5,3,4,4,4,,,66.01,0,3,5,PC,PC,13.7701,0.007,,1,spoc-s01-s46-b02,SPOC,11:16:28.09,-03:58:31.59,-29.088,0.074,-1.886,0.068,2459533.35413,0.035387743,0.0,0.0,13.5723660929053,0.5206741,31.037677,1.514493,28182.0217131579,1393.9274,9.50376836705168,0.45375916,1.7221329152311,292.170535433894,18.807981,182.536,1.9095,3696.0,157.0,4.68275,0.0105474,0.563000023365021,0.0172668,,,0.556799,0.0206319,"36,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,single transit; exterior to K2-43 b and c,5523,1,True,True,True -443616612,5523.02,,5,5,5,5,5,5,5,7.8,45.0,20.92,0,3,5,KP,KP,13.7701,0.007,,2,spoc-s01-s46-b02,SPOC,11:16:28.09,-03:58:31.59,-29.088,0.074,-1.886,0.068,2459281.409498,0.0037145554,3.47114220782245,6.833334e-05,2.50126704861452,0.33853266,6.682432,0.709567,6135.84583746944,653.32166,4.83532525697532,0.5036786,38.8551187931583,636.768849669739,9.366374,182.536,1.9095,3696.0,157.0,4.68275,0.0105474,0.563000023365021,0.0172668,,,0.556799,0.0206319,"36,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,K2-43 b,5523,2,True,False,True -277833995,5524.01,,5,5,5,5,5,5,5,4.6,41.1,4.8,0,1,3,PC,KP,11.758,0.007,,1,spoc-s01-s46-b02,SPOC,10:25:37.32,02:30:49.98,50.922,0.07,-109.198,0.067,2458518.119364,0.0014216612,2.29801434388549,1.2719716e-05,1.02681602480332,0.48841855,1.124706,0.187935,1035.35626408339,173.07994,2.03300961348631,1.5651492,68.5506563658944,733.875947222071,7.174196,77.6888,0.32415,3650.0,157.0,4.66,0.01,0.590524971485138,0.0175564,,,0.580289,0.0202907,"8,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,K2-321 b,5524,1,False,False,True -345450130,5525.01,,2,4,2,2,3,4,4,2.5,6.4,2.49,4,0,1,PC,PC,11.8693,0.007,,1,spoc-s01-s46-b02,SPOC,03:51:30.04,09:43:40.3,215.561,0.179,-248.203,0.127,2458440.199907,0.0014670591,2.75215954735489,1.3227798e-05,0.960782734589114,0.67429334,1.114036,0.209156,1025.53912374955,192.62132,1.38207949211827,2.2954156,22.3702106916002,554.673309189729,8.606394,42.753,0.1875,3288.0,157.0,4.81007,0.00445571,0.418181002140045,0.0124382,,,0.411846,0.020265,"5,42,43,44",2022-04-20,2022-04-20,2023-04-05 00:00:00,potential L1 planet; low SNR,5525,1,False,False,True -335540507,5526.01,,2,4,2,2,3,4,4,1.1,28.3,6.94,6,2,1,PC,PC,10.8228,0.006,,1,spoc-s01-s46-b02,SPOC,12:12:05.68,-12:41:03.87,-83.808,0.09,-22.686,0.076,2459283.8666,0.0031693734,21.7300247544963,0.0001785027,2.48792811726735,0.6146724,1.215849,0.131114,1119.21110833124,120.75289,2.52663802464559,2.3556247,34.3158950728585,617.2961699527,8.195036,106.204,0.543,4788.0,131.426,4.57314,0.0913422,0.752578020095825,0.0521809,,,0.773,0.0931401,"36,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,Low SNR; possible odd-even; period could be half (~10.87 days),5526,1,False,False,True -415399713,5527.01,TIC 415399713.01,1,4,1,1,3,4,4,0.0,12.6,7.03,0,2,2,PC,PC,10.3965,0.006,,1,spoc-s01-s46-b02,SPOC,04:11:24.75,10:16:37.95,37.12,0.153,-11.347,0.082,2459176.647091,0.006117662,346.161482833276,0.008629339,7.41794507107852,0.70939225,0.789786,0.066995,727.155412804931,61.703182,2.54499360436972,0.76578087,0.936396628765957,250.890784760302,11.649622,144.866,1.04,5862.0,293.678,4.53012,0.0921919,0.926029980182648,0.0459422,,,1.06,0.156219,"32,43,44",2022-04-20,2022-04-20,2022-12-14 12:09:24,actual period likely shorter; potential L1 planet,5527,1,False,False,True -458686847,5528.01,,5,5,5,5,5,5,5,5.8,42.4,5.07,0,4,3,PC,KP,12.7482,0.007,,1,spoc-s01-s46-b02,SPOC,08:55:25.38,10:28:09.18,11.549,0.056,18.058,0.034,2459230.014038,0.0013289468,1.29159722631124,1.327382e-05,1.15488053489237,0.38361242,1.593205,0.196771,1466.31990722342,181.21669,2.10062152809244,0.9796136,127.298877896249,856.694331755948,8.947783,101.632,0.373,3689.0,157.0,4.72452,0.00883165,0.514744997024536,0.0154963,,,0.512437,0.0204314,"34,44,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,K2-117 b,5528,1,False,False,True -366411016,5529.01,,5,5,5,5,5,5,5,2.5,35.4,9.85,0,2,5,KP,KP,11.8964,0.006,,1,spoc-s01-s46-b02,SPOC,08:25:51.45,10:14:47.68,97.098,0.072,-89.333,0.045,2459235.71507,0.002838137,8.8648374940415,0.00010091477,1.5625994493566,0.78985196,2.133261,0.294486,1962.87743490929,271.1944,3.1040631709166,4.000256,53.9897368518928,691.349339466077,7.8230333,203.896,1.727,5368.0,127.01,4.71954,0.0869785,0.697439014911652,0.0389547,,,0.93,0.120087,"34,44,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,K2-180 b,5529,1,False,False,True -244170332,5530.01,,2,4,2,2,3,4,4,5.4,8.3,1.45,0,0,3,PC,PC,11.3978,0.007,,1,spoc-s01-s46-b02,SPOC,00:25:57.44,-05:41:51.53,241.302,0.117,-192.733,0.077,2458382.170928,0.0013180448,0.477438201731769,2.4781903e-05,0.952523007901515,0.45844373,0.45953,0.097286,423.153282609112,89.59962,1.11803100592468,2.0400972,608.873951854533,1266.92701936189,7.8540916,60.8241,0.26615,3888.0,157.0,4.71522,0.00923367,0.525436997413635,0.0158777,,,0.522625,0.0204729,"3,30,42",2022-04-20,2022-04-20,2022-12-14 12:09:24,potential L1 planet; USP or SV,5530,1,False,False,True -88114177,5531.01,,2,4,2,2,3,4,4,3.5,47.5,3.73,0,2,2,PC,PC,8.5727,0.006,,1,spoc-s01-s46-b02,SPOC,09:53:53.32,19:35:39.76,10.094,0.082,-3.765,0.071,2458873.596672,0.0029486576,4.53522547354428,3.975524e-05,3.07335421273842,0.36727294,0.212179,0.02326,195.404867524895,21.422709,1.75362197408601,0.3278549,413.855998947504,1150.35547355172,7.7052875,80.6404,0.3407,5788.42,152.86,4.37027,0.0878463,1.10258996486664,0.064804,-0.336,0.015,1.04,0.130201,"21,45",2022-04-20,2022-04-20,2022-12-14 12:09:24,low SNR; potential L1 planet,5531,1,False,False,True -318836983,5532.01,,2,4,2,2,3,4,4,2.4,31.2,5.3,1,0,3,PC,PC,11.5212,0.007,,1,spoc-s01-s46-b02,SPOC,02:45:31.3,05:09:02.64,169.735,0.075,-76.745,0.075,2458412.259854,0.002555439,5.65394468320238,2.6682541e-05,2.76931211311165,0.62087345,1.120154,0.12146,1031.16761664611,111.86212,2.15518858965563,1.5237908,34.3230534640281,617.32835985927,8.227355,90.9985,0.32655,3975.0,157.0,4.5998,0.0118732,0.662051975727081,0.0195767,,,0.636083,0.0202318,"4,42,43",2022-04-20,2022-04-20,2022-12-14 12:09:24,potential L1 planet; low SNR,5532,1,False,False,True -155093420,5533.01,,2,4,2,2,3,4,4,4.7,33.5,14.07,0,1,2,PC,PC,10.8475,0.006,,1,spoc-s01-s46-b02,SPOC,06:49:57.05,14:58:29.14,3.25,0.092,-0.429,0.075,2459202.20091,0.0017984099,1.60989538874813,2.0392852e-05,1.79004537484654,0.49756816,0.448144,0.054818,412.671048825374,50.488297,3.82761989838307,2.6984756,7739.83369098514,2392.22848192271,7.99894,516.56,12.1825,7173.0,126.702,4.13332,0.0846569,1.79821002483368,0.07799,,,1.603,0.273617,"33,44,45",2022-04-20,2022-04-20,2023-01-10 00:00:00,potential L1 planet; centroid to the NE but not centered on another star,5533,1,False,False,True -176868951,5534.01,,5,5,5,5,5,5,5,9.7,65.9,4.91,0,2,4,PC,KP,11.3328,0.006,,1,spoc-s01-s46-b02,SPOC,12:11:00.34,-09:45:54.86,-39.485,0.091,-5.371,0.083,2459280.987908,0.00073403516,0.369312502602304,8.4036255e-06,1.01169069200168,0.28069243,0.798643,0.08072,735.30711408476,74.34331,2.05987030043811,2.5746138,3842.24512332674,2008.01067176824,7.5583806,152.509,1.071,5129.0,129.027,4.61786,0.0850693,0.755721986293793,0.0461005,,,0.864,0.105297,"36,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,K2-131 b,5534,1,False,False,True -411697517,5535.01,,5,5,5,5,5,5,5,10.2,29.9,84.39,0,0,2,KP,KP,14.4087,0.006,,1,spoc-s01-s46-b02,SPOC,05:13:21.39,16:24:51.12,1.477,2.146,1.462,2.146,2459174.346454,0.0031878962,3.38641715090465,5.107877e-05,2.85438611838618,0.45183548,7.08238,0.712365,6501.88360538753,655.897,8.20651400737607,1.5237511,512.90321326516,1213.74821587335,9.646233,1314.53,,5780.0,,4.438,,1.0,,,,,,"32,43,44",2022-04-20,2022-04-20,2022-12-14 12:09:24,K2-308 b; spoc assuming solar parameters,5535,1,False,False,True -268143410,5536.01,,3,4,3,3,3,4,4,7.2,26.2,32.38,0,1,4,PC,PC,10.4756,0.011,,1,qlp-s44-268143410,QLP,04:29:17.8,26:09:48.88,-6.527,0.104,-1.224,0.075,2459523.054233,0.0052465,3.147982,9e-06,2.265,0.372,0.401797,0.000709,370.0,0.652641,6.25713,0.408468,836.276,1498.0,14.0,463.124,9.172,6555.0,135.3,3.56,0.09,3.22,0.15,,,1.36,0.234989,"43,44",2022-04-20,2022-04-20,2022-12-14 12:09:24,weak TESS QLP detection; multiple stars in pixel,5536,1,False,False,False -17555760,5537.01,,3,4,3,3,3,4,4,6.4,25.7,59.0,0,4,4,PC,PC,10.4422,0.017,,1,qlp-s44-ffi,QLP,04:28:28.01,21:34:06.56,-3.499,0.194,-7.684,0.102,2459519.631378,0.0083146,22.2897649,0.0001142,12.435,0.251,1.151491,4.6e-05,1060.0,0.0426252,8.90212,0.481516,240.104,1096.0,30.0,370.57,9.726,5772.0,164.62,3.56648,0.0800827,2.77,0.15,,,1.03,0.129589,"43,44",2022-04-20,2022-04-20,2022-12-14 12:09:24,very long duration for period; other similar LCs in batch; EPIC 210911405. There is no K2 disposition. Marginal secondary.,5537,1,False,False,True -337648770,5538.01,,3,4,3,3,1,4,4,8.4,67.7,109.95,1,1,0,PC,PC,13.1748,0.007,,1,spoc-s42-s46-b0A,SPOC/QLP,09:15:48.7,15:08:15.66,-24.171,0.043,-9.677,0.029,2459534.758896,0.0021761,23.8995950169509,0.0020782768,2.03951565315582,0.21416925,17.510895,1.911619,15998.7683281845,1759.1171,12.8307535876778,10.076691,12.1501484438339,476.17341574961,12.630234,310.197,2.553,4736.5,41.2,4.55,,0.769620001316071,,-0.168206,0.0396318,0.76,,"44,45,46",2022-04-20,2022-07-15,2022-12-14 12:09:24,K2 planet candidate,5538,1,False,False,True -178266267,5539.01,,1,4,1,1,3,4,4,2.4,34.3,4.75,0,9,18,PC,PC,10.0286,0.006,,1,qlp-s46-reprocessed,QLP,08:32:17.56,22:00:20.85,-94.132,0.077,-54.71,0.047,2459574.402436,0.001368,7.1123965,6e-06,2.361,0.416,0.477829,5.3e-05,440.0,0.0489633,2.02197,0.0910608,175.226,1013.0,37.0,123.647,0.7745,5595.7,105.3,4.52,0.07,0.91,0.04,0.163,0.021,0.989,0.123798,"44,45,46",2022-04-20,2022-04-20,2022-12-14 12:09:24,marginal QLP detection; variable depth in K2; weak centroid offset; potential L1 candidate,5539,1,False,False,True -456305193,5540.01,,5,5,5,5,5,5,5,143.7,302.1,90.21,1,2,1,PC,FP,10.2003,0.006,,1,qlp-s47-456305193,QLP,07:50:56.99,67:02:35.53,-8.61,0.043,-27.029,0.058,2459605.921727,0.0002366,0.5497871,3e-07,1.07,0.075,4.090062,0.040985,3760.0,37.7479,11.3897,1.15043,13432.0,2999.0,138.0,242.868,2.3905,6040.0,128.6,4.13,0.08,1.51,0.07,,,1.122,0.148483,"20,47",2022-04-20,2022-04-20,2022-12-14 12:09:24,possibly too large for period; short period,5540,1,False,False,False -231721006,5541.01,,3,4,3,3,1,4,4,4.8,36.4,26.93,0,0,0,PC,PC,12.2916,0.006,,1,qlp-s37-231721006,QLP,05:22:55.15,-53:45:56.87,4.107,0.039,-5.189,0.037,2459327.819795,0.004353,9.0182382,7.65e-05,3.199,0.435,3.784952,0.006648,3480.0,6.12327,5.61073,0.372406,105.561,892.0,15.0,378.277,2.644,5805.0,130.7,4.51,0.08,0.94,0.05,,,1.04,0.128986,"3,4,6,7,10,13,27,30,31,32,33,34,37",2022-04-20,2022-04-20,2022-12-14 12:09:24,actual source of signal previous alerted as TOI 2448.01 on TIC 231721005,5541,1,False,False,False -466206508,5542.01,TIC 466206508.01,3,5,5,3,4,4,4,3.8,42.2,124.41,0,0,1,PC,CP,11.8452,0.006,,1,qlp-s27-466206508,CTOI,20:11:11.62,-61:08:07.68,-6.145,0.052,-3.022,0.045,2458979.845973,0.0018634,75.1247037,0.0007741,8.599,0.749,12.197013,0.00798,11171.0,7.34945,13.8062,0.849997,7.6236,462.0,23.0,348.849,3.641,5392.9,124.1,4.2,0.08,1.27,0.07,-0.18,0.09,0.94,0.114093,"13,27",2022-05-17,2022-05-17,2023-03-03 12:02:42,TOI request from Nolan Grieves (paper in prep),5542,1,False,False,True -17385917,5543.01,,1,4,1,1,3,4,4,10.5,77.5,13.26,3,2,1,PC,PC,10.659,0.006,,1,spoc-s42-s46-b0H,SPOC,04:24:34.12,23:16:14.81,17.955,0.099,-40.01,0.067,2459474.856602,0.0015998535,3.54245191122361,0.00019426855,2.25094397136617,0.18009615,1.899887,0.139286,1748.33064334383,128.27908,3.69777633271532,0.6674901,230.730993066322,994.022542324217,13.554059,125.194,0.687,5058.0,128.443,4.50269,0.087051,0.853329002857208,0.0515628,,,0.845,0.103743,"43,44",2022-05-17,2022-05-17,2022-12-14 12:09:24,host is variable,5543,1,False,False,True -68893269,5544.01,,1,4,1,1,3,4,4,8.5,69.4,11.07,3,3,3,PC,PC,10.3535,0.006,,1,spoc-s42-s46-b0H,SPOC,04:58:48.2,18:10:08.58,70.895,0.084,-69.206,0.058,2459477.465265,0.0016122941,4.20507412692213,0.00023857976,1.15741291900377,0.29488212,1.390828,0.100632,1280.17939856485,92.680885,3.32404521970997,1.7236704,197.513311815469,956.13417705803,13.469249,113.205,0.584,5086.0,315.4,4.48,0.12,0.877821981906891,0.0575729,,,0.852,0.151695,"43,44",2022-05-17,2022-05-17,2022-12-14 12:09:24,also a K2 candidate; EPIC 247047370.01; possible odd-even; centroid offset not towards a particular star,5544,1,False,False,True -301624989,5545.01,,3,4,3,3,1,4,4,54.7,41.3,317.0,0,0,0,PC,PC,14.245,0.007,,1,spoc-s42-s46-b0H,SPOC,11:16:51.57,03:21:50.01,-19.702,0.079,7.915,0.061,2459526.447465,0.003944421,1.96133691104496,0.0002374453,1.63236701200412,0.27193937,10.073402,1.361934,9235.03847484784,1253.6014,15.8657792937502,38.364887,533.383046219979,1225.68691968099,9.2966385,592.204,16.0595,4427.0,122.0,4.22028,,1.06737995147705,,,,0.69,,"45,46",2022-05-17,2022-05-17,2022-12-14 12:09:24,V-shaped; large; period match to EPIC 201683540.01,5545,1,False,False,True -59744366,5546.01,,3,4,3,3,3,4,4,24.4,38.1,317.0,0,1,1,PC,PC,12.3047,0.012,,1,spoc-s42-s46-b0H,SPOC,04:45:54.22,24:06:49.62,4.078,0.086,-2.309,0.038,2459478.724995,0.0018326662,9.84793255833199,0.0007167397,1.81828648905428,0.25562978,6.96888,0.619984,6398.02026973285,570.8632,18.8226119930039,2.9344144,997.315431117719,1433.26958279258,11.171223,924.313,34.1965,6887.55,102.486,3.89433,0.0951623,2.29041004180908,0.125246,-0.232995,0.0218915,1.5,0.259684,"43,44",2022-05-17,2022-05-17,2023-02-27 00:00:00,variable host,5546,1,False,False,True -63013648,5547.01,TIC 63013648.01,3,4,3,3,3,4,4,30.0,151.7,128.82,0,2,2,PC,PC,10.8481,0.006,,1,spoc-s42-s46-b02,SPOC,07:50:21.9,22:16:53.59,-16.246,0.09,-3.323,0.044,2459516.534272,0.0012986342,19.630497760606,0.0006443907,3.20738316781053,0.11802722,8.339883,0.261623,7651.88989521058,240.93462,14.083589588958,7.8473434,44.7962153046574,659.826996318229,42.92127,193.901,1.9525,5509.85,120.263,4.39122,0.0795599,1.0378600358963,0.0538694,0.0181734,0.0131218,0.967,0.119146,"44,46",2022-05-17,2022-05-17,2023-01-10 00:00:00,odd-even; V-shaped; Rv error ~2.77 km/s,5547,1,False,False,True -155012162,5548.01,,2,4,2,2,3,4,4,1.7,28.4,7.58,0,2,2,PC,PC,9.8978,0.006,,1,spoc-s42-s46-b02,SPOC,09:35:40.73,16:05:50.9,-56.116,0.07,-69.074,0.071,2459536.496887,0.0051238462,18.9690014181982,0.003958744,3.34310455126548,1.0062313,0.646271,0.088148,595.06062799278,81.18443,2.66093574921285,3.4606097,52.0861834401842,685.173225327949,8.070707,134.736,0.787,5551.25,106.106,4.36023,0.0724225,1.08166003227234,0.0476533,0.368,0.026,0.978,0.124044,"45,46",2022-05-17,2022-05-17,2022-12-14 12:09:24,potential L1 planet; low SNR; period could be 2x (~38 days),5548,1,False,False,True -6499453,5549.01,,2,4,2,2,3,4,4,3.7,27.5,13.78,0,2,2,PC,PC,11.1971,0.006,,1,spoc-s42-s46-b02,SPOC,05:23:26.33,23:08:00.7,-8.586,0.089,-6.92,0.061,2459475.124498,0.0046466524,7.43238816128124,0.0007868313,2.77593488265719,0.70265955,0.910588,0.111003,838.330684933603,102.23242,3.78183829513912,4.2450013,186.030636371345,941.924010264247,7.69716,208.148,1.7915,4921.0,784.763,4.11275,0.241296,1.30646002292633,0.22103,,,0.807,0.289868,"43,44,45",2022-05-17,2022-05-17,2023-01-10 00:00:00,low SNR; crowded field,5549,1,False,False,True -195187769,5550.01,,2,4,2,2,3,4,4,1.6,26.7,5.61,0,3,2,PC,PC,9.62527,0.006,,1,spoc-s42-s46-b02,SPOC,08:35:42.43,20:22:24.56,-6.026,0.097,-94.411,0.062,2459505.552413,0.0058661713,13.9574398166315,0.0018810269,3.36348714776149,0.5639185,0.36951,0.04592,340.27333768632,42.29314,2.2304233179338,0.9761929,104.328311502145,815.117644492319,7.9780455,139.794,1.2365,5923.8,142.4,4.36,0.08,1.13250994682312,0.0621106,-0.0254857,0.00753889,1.08,0.13518,"44,45,46",2022-05-17,2022-05-17,2022-12-14 12:09:24,low SNR,5550,1,False,False,True -387974148,5551.01,,2,4,2,2,3,4,4,3.4,33.3,4.69,3,2,1,PC,PC,12.4507,0.007,,1,spoc-s42-s46-b02,SPOC,05:48:30.15,18:10:46.3,-26.499,0.057,0.694,0.043,2459474.72141,0.0035494885,2.40541002756624,0.00020328876,1.60877898461514,0.8685588,1.389765,0.205714,1279.20234380643,189.45142,2.0045260678406,2.801834,66.6982074170434,728.86700401426,7.3953786,99.7999,0.2831,3768.0,157.0,4.69159,0.00963539,0.552721977233887,0.0163428,,,0.547697,0.0202373,"43,44,45",2022-05-17,2022-05-17,2023-04-05 00:00:00,low SNR,5551,1,False,False,True -3224605,5552.01,TIC 3224605.01,3,4,3,3,3,4,4,5.9,59.8,60.26,0,2,1,PC,PC,11.9901,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,05:29:32.39,33:14:48.79,-9.484,0.09,-31.911,0.064,2459483.006882,0.0014424912,28.6493366556144,0.00017017816,4.27136202165922,0.14953561,10.2672,0.319139,9411.86958273257,293.89423,9.0080518551034,0.563586,21.0315277162611,546.182089707741,32.96948,287.606,4.359,5639.5,114.529,4.54594,0.075829,0.883211016654968,0.0479799,0.07,0.053,1.0,0.122869,"43,44,45,59",2022-05-17,2023-05-19,2023-06-16 12:14:51,,5552,1,False,False,True -218354669,5553.01,,2,4,2,2,3,4,4,3.2,32.2,3.03,0,2,4,PC,PC,10.6853,0.006,,1,spoc-s42-s46-b02,SPOC,02:52:00.52,15:03:20.39,59.53,0.081,-119.004,0.065,2459448.89457,0.0034570438,1.76171650796953,0.00015199272,1.92807243915252,0.4123923,0.387029,0.047729,356.402976322587,43.95882,1.55100744221361,2.2734501,439.121941965677,1167.5245842748,8.219018,103.347,0.434,4732.72,107.815,4.49669,0.084853,0.814342975616455,0.0539498,-0.36,0.038,0.759,0.0876131,"42,43,44",2022-05-17,2022-05-17,2022-12-14 12:09:24,potential L1 planet; low SNR/MES; possible SV,5553,1,False,False,True -91287873,5554.01,TIC 91287873.01,1,4,1,1,3,4,4,1.3,58.8,7.7,1,2,1,PC,PC,9.83733,0.007,,1,spoc-s42-s46-b02,SPOC,06:58:58.53,28:42:56.76,-27.104,0.07,-115.664,0.062,2459515.17161,0.0021071131,26.6942789818044,0.0029534053,3.78313012490327,0.3150192,2.015141,0.131104,1854.29243236489,120.74404,2.68458631392295,0.63858116,4.08514190540842,362.594770622397,14.786411,39.4478,0.0655,3997.0,157.0,4.6288,0.011405,0.626721978187561,0.0186708,,,0.609365,0.0203081,"44,45",2022-05-17,2022-05-17,2023-01-25 00:00:00,CTOI from Nora Eisner,5554,1,False,False,True -388804061,5555.01,,5,5,5,5,5,5,5,0.3,47.9,6.97,0,4,4,KP,KP,11.2373,0.007,,1,spoc-s42-s46-b02,SPOC,11:30:14.43,07:35:16.19,-80.377,0.083,-133.142,0.063,2459537.249624,0.0022762208,32.9381557116336,0.0031239537,2.29320234488289,0.40400365,3.499376,0.274846,3217.85640649977,253.11072,2.53224082503662,0.80855167,1.08729905250563,260.43958938777,13.547138,38.0266,0.07955,3464.0,157.0,4.7864,0.00578809,0.444516003131866,0.0131784,,,0.440668,0.020249,"45,46",2022-05-17,2022-05-17,2022-12-14 12:09:24,K2-18 b,5555,1,False,False,True -55315929,5556.01,,5,5,5,5,5,5,5,5.6,56.2,3.23,0,2,8,KP,KP,8.89098,0.006,,1,spoc-s42-s46-b02,SPOC,09:21:21.38,14:22:04.33,-33.463,0.09,-14.008,0.074,2459526.091298,0.0018724048,0.719571209844274,5.2978325e-05,1.75752191994997,0.3487001,0.173341,0.019607,159.640398493719,18.0582,1.61084174422069,2.4331791,6635.85665977611,2301.93999511406,9.630962,109.86,0.8055,5910.0,127.006,4.27216,0.0781593,1.25504994392395,0.0581457,,,1.075,0.138058,"45,46",2022-05-17,2022-05-17,2022-12-14 12:09:24,HD 80653 b,5556,1,False,False,True -323687123,5557.01,,2,4,4,2,2,4,4,1.3,15.3,1.13,1,0,1,PC,PC,12.4289,0.007,,1,spoc-s42-s46-b02,SPOC,09:08:48.37,11:51:44.1,-458.496,0.104,192.629,0.068,2459502.343272,0.0020859905,4.01790526268072,0.00018309409,0.994953341492659,0.49963605,3.082247,0.354591,2834.8288926964,326.53687,1.04210479161797,0.9590356,4.64410949232608,374.408208972111,8.73516,21.8182,0.0307,3166.0,157.0,5.07428,0.027277,0.194356992840767,0.00588941,,,0.163462,0.0200743,"44,45,46",2022-05-17,2022-05-17,2023-06-05 00:00:00,potential L1 planet; low SNR; also observed by K2,5557,1,False,False,True -14570099,5558.01,,5,5,5,5,5,5,5,1.1,33.0,9.14,0,1,4,KP,KP,11.0384,0.006,,1,spoc-s42-s46-b02,SPOC,08:23:56.76,22:39:47.61,-126.231,0.065,43.543,0.039,2459521.86638,0.009239729,26.2006907848958,0.007226604,4.00148525068979,0.6258645,1.203739,0.18443,1108.07065814969,169.85165,2.97059264348858,0.41941646,8.81098779376381,439.416033467957,7.9408665,105.58,0.4845,4678.0,132.02,4.60838,0.096305,0.709927022457123,0.0543568,,,0.746,0.0860493,"44,45,46",2022-05-17,2022-05-17,2022-12-14 12:09:24,K2-346 b,5558,1,False,False,True -456945304,5559.01,TIC 456945304.01,5,5,5,5,5,5,5,7.2,56.7,8.09,0,1,4,KP,KP,10.3729,0.006,,2,spoc-s42-s46-b02,SPOC,04:31:16.93,19:49:54.08,-33.984,0.16,-27.029,0.063,2459474.88912,0.0023001153,2.14086182392859,0.00017151333,1.718657960326,0.33683056,0.729021,0.068332,671.228004190323,62.93375,2.76354079679464,1.2095907,735.846344469351,1328.36227638354,9.08909,144.202,1.1885,5372.0,131.712,4.40929,0.0856318,0.997389018535614,0.0544372,,,0.931,0.118434,"43,44",2022-05-17,2022-05-27,2022-12-16 12:08:26,K2-370 b,5559,1,False,False,True -238606535,5560.01,,3,5,5,3,3,4,4,,,44.81,0,2,1,PC,PC,10.4105,0.007,,1,spoc-s42-s46-b02,SPOC,08:50:36.6,19:05:28.72,-9.861,0.159,-12.688,0.089,2459568.299107,0.0026644464,0.0,0.0,2.59771810589874,0.5206472,1.670279,0.15693,1537.20141759675,144.52774,7.56752726918917,3.0173948,60.2516229962463,710.578294128327,11.523721,408.274,27.1425,6781.59,100.132,4.05268,0.102281,1.88308000564575,0.143304,0.12462,0.00629829,1.46,0.250769,"44,45,46",2022-05-17,2022-05-17,2023-02-19 00:00:00,single transit at ~2568 TBJD,5560,1,False,True,True -330637910,5561.01,,3,4,4,3,3,4,4,16.1,57.3,40.82,4,0,2,PC,PC,15.1792,0.008,,1,spoc-s42-s46-b02,SPOC,09:04:48.01,13:47:43.6,37.038,0.16,-66.747,0.109,2459502.148194,0.00189503,2.00745282887239,8.659856e-05,0.934047486250039,0.25013697,22.681915,2.187695,20674.1145084612,2012.913,7.16393471922827,1.4872266,50.6324450571815,680.341517849394,10.061832,272.64,6.9755,3449.0,157.0,4.74578,0.010722,0.490442007780075,0.0172532,,,0.48853,0.0223095,"44,45,46",2022-05-17,2022-05-17,2023-02-11 00:00:00,V-shaped; K2 candidate EPIC 211546613.01,5561,1,False,False,True -17307715,5562.01,,5,5,5,5,5,5,5,1.1,26.9,6.2,0,1,2,KP,KP,11.4529,0.006,,1,spoc-s42-s46-b02,SPOC,04:21:52.71,21:21:11.75,200.606,0.123,-76.763,0.066,2459476.99484,0.004926485,13.8515158118583,0.002663222,3.21327955309991,0.79074126,1.357503,0.165434,1249.5248920559,152.35886,2.36531783418092,1.3298357,9.75772233567311,450.771929187299,8.339698,72.7998,0.28525,3893.47,115.364,4.58272,0.123487,0.655766010284424,0.0672839,-0.831,0.051,0.6,0.0822316,"43,44",2022-05-17,2022-05-17,2022-12-14 12:09:24,K2-155 c,5562,1,False,False,True -239198720,5563.01,,3,5,5,3,3,4,4,,,52.02,0,2,1,PC,PC,10.7986,0.006,,1,spoc-s42-s46-b02,SPOC,09:47:14.61,24:32:30.5,-54.829,0.215,-27.954,0.218,2459534.266195,0.002684655,0.0,0.0,6.11211773761672,0.48282695,3.465532,0.250692,3186.78472523496,230.86946,8.26237080896963,9.017816,16.377420247073,513.075317864966,20.425915,185.26,3.241,5776.0,122.039,4.51349,0.0776974,0.932735025882721,0.0464723,,,1.035,0.126981,"45,46,48",2022-05-17,2022-11-15,2023-01-15 00:00:00,potential single transit at ~2534 TBJD,5563,1,False,True,True -127505658,5564.01,TIC 127505658.01,1,4,1,3,3,4,4,0.0,28.9,82.44,1,3,1,PC,PC,11.6871,0.006,,1,qlp-s45-reprocessed,QLP,05:23:47.33,35:25:03.18,10.743,0.069,3.524,0.051,2459600.588807,0.0032365,760.05300384461,0.0009007231,6.902,1.07,10.912014,0.01559,10000.0,14.3585,10.8619,0.65949,0.149701,173.0,21.0,251.487,2.5905,5722.0,253.7,4.55,0.09,0.89,0.04,,,1.021,0.155599,"19,43,44,45,59",2022-05-17,2023-05-25,2023-06-16 12:14:51,potential multi; single transit at ~1840 TBJD; additional transit at ~2600 TBJD; actual period likely shorter than max period of ~760 days,5564,1,True,False,True -127505658,5564.02,,1,4,1,3,3,4,4,3.9,56.4,57.83,1,3,1,PC,PC,11.6871,0.006,,2,qlp-s45-reprocessed,SPOC/QLP,05:23:47.33,35:25:03.18,10.743,0.069,3.524,0.051,2459487.941282,0.0024376,45.4964928,0.0038849,5.137,0.256,10.626908,0.006006,9740.0,5.53147,8.81795,0.499167,8.47778,475.0,34.0,251.487,2.5905,5722.0,253.7,4.55,0.09,0.89,0.04,,,1.021,0.155599,"19,43,44,45",2022-05-17,2022-05-17,2023-02-21 00:00:00,potential multi,5564,2,True,False,True -117892246,5565.01,,3,4,3,3,1,4,4,33.0,31.7,317.0,4,0,0,PC,PC,12.932,0.007,,1,qlp-s47-faintsearch,QLP,08:44:54.48,45:27:58.29,14.513,0.037,-7.61,0.027,2459600.94115,0.0017212,3.2601896,0.0004792,3.835,0.229,12.635204,0.004995,11570.0,4.60051,14.6248,1.14096,809.661,1486.0,38.0,676.655,11.0135,5542.4,180.1,4.16,0.1,1.36,0.1,0.287,0.16,0.98,0.128031,47,2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5565,1,False,False,False -73250068,5566.01,,3,4,3,3,1,4,4,5.4,26.5,68.33,0,0,0,PC,PC,13.1133,0.01,,1,qlp-s47-faintsearch,QLP,08:13:25.23,62:17:15.26,-6.702,0.034,-1.276,0.031,2459603.327711,0.0050794,14.5814997,0.0001664,5.489,0.56,5.977114,0.010236,5490.0,9.42741,9.70874,,111.563,905.0,13.0,748.345,12.137,5830.0,122.0,4.22,,1.32,,,,1.05,,"20,47",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5566,1,False,False,False -456335739,5567.01,,3,4,3,3,1,4,4,8.6,53.3,72.33,2,0,0,PC,PC,13.2573,0.006,,1,qlp-s47-faintsearch,QLP,09:00:33.46,49:27:05.38,-10.567,0.033,-15.872,0.029,2459585.367829,0.0021982,13.62636,7.48e-05,3.245,0.241,15.737247,0.013281,14390.0,12.2325,10.048,,26.6947,633.0,19.0,431.019,4.3375,5260.6,112.2,4.58,,0.81,,0.461,0.104,0.9,,"21,47",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5567,1,False,False,False -142785421,5568.01,,3,4,3,3,3,4,4,6.2,35.4,73.43,1,0,1,PC,PC,13.2187,0.007,,1,qlp-s47-faintsearch,QLP,10:17:12.71,75:20:00.04,-4.572,0.028,-2.823,0.027,2459603.278361,0.0032117,16.2601049,8.55e-05,1.602,0.233,8.359697,0.02446,7670.0,22.5282,10.1064,,5.91348,434.0,12.0,574.817,5.266,5496.0,122.0,4.38,,1.05,,,,0.96,,"14,20,21,40,47",2022-05-17,2022-05-17,2023-04-05 00:00:00,found in faint-star QLP search,5568,1,False,False,False -267484403,5569.01,,3,4,4,3,1,4,4,47.9,94.2,317.0,1,0,0,PC,PC,13.3273,0.008,,1,qlp-s47-faintsearch,QLP,19:55:20.9,58:31:22.36,-1.788,0.03,-6.416,0.029,2459604.042729,0.0035166,5.4021326,2.73e-05,1.678,0.283,7.309842,3.956261,6710.0,3637.22,23.2699,,359.953,1213.0,12.0,974.173,15.0085,6312.0,122.0,4.26,,1.37,,,,1.24,,"14,15,16,17,41,47,56,57",2022-05-17,2023-01-30,2023-05-08 00:00:00,found in faint-star QLP search; possible secondary at half phase,5569,1,False,False,False -302381442,5570.01,,3,4,3,3,1,4,4,4.2,34.8,66.46,2,0,0,PC,PC,13.4113,0.009,,1,qlp-s47-faintsearch,QLP,06:40:41.45,76:43:56.08,2.04,0.023,-17.829,0.033,2459567.884238,0.0045429,23.1678315,0.0001907,4.295,0.359,12.536349,0.014214,11480.0,13.0913,9.49037,,14.833,546.0,17.0,454.675,3.574,5120.0,122.0,4.48,,0.88,,,,0.86,,"19,20,40,47",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5570,1,False,False,False -88565745,5571.01,TIC 88565745.01,3,4,3,3,3,4,4,0.1,28.5,94.44,0,2,3,PC,PC,11.2245,0.008,,1,qlp-s47-faintsearch,QLP,07:07:57.7,60:00:41.8,-4.108,0.049,-1.073,0.045,2458854.228883,0.0017572,731.4778512,0.0017942,3.41,0.241,6.424816,0.324816,5900.0,299.122,11.7782,2.1717,0.0776109,147.0,31.0,303.081,3.6155,6250.4,135.5,4.44,0.09,1.1,0.06,-0.0245027,0.015013,1.21,0.180646,"20,47",2022-05-17,2022-05-17,2023-02-19 00:00:00,found in faint-star QLP search; period could be shorter,5571,1,False,False,True -9151337,5572.01,,1,4,1,1,3,4,4,4.2,51.6,6.25,3,2,3,PC,PC,10.4309,0.006,,1,qlp-s60-ffi,QLP,07:00:18.73,37:11:56.04,-4.895,0.109,11.051,0.09,2459960.725859,0.0032048,5.8586824,3.03e-05,2.168,0.323,1.244967,0.097952,1146.0,90.2135,2.35965,0.2185,43.4681,715.0,13.0,78.0645,0.46075,4571.0,123.5,4.58,0.09,0.72,0.06,,,0.72,0.08294,"20,47,60",2022-05-17,2023-02-27,2023-03-03 12:11:24,found in faint-star QLP search,5572,1,False,False,True -459762279,5573.01,,3,4,3,3,1,4,4,11.1,74.1,62.66,1,0,0,PC,PC,13.6281,0.008,,1,qlp-s47-faintsearch,QLP,09:05:42.24,55:18:25.67,-3.633,0.059,-56.98,0.057,2459600.45002,0.0021554,8.7960328,0.0018184,2.48,0.198,25.363612,0.023104,23090.0,21.2797,9.14959,0.40797,8.51849,475.0,22.0,186.562,1.311,3695.0,157.0,4.66,0.01,0.59,0.02,,,0.583474,0.0203947,47,2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5573,1,False,False,False -268405086,5574.01,,2,4,2,2,3,4,4,1.8,19.8,5.67,0,0,2,PC,PC,11.6643,0.006,,1,qlp-s47-faintsearch,QLP,18:34:12.06,86:33:26.48,0.733,0.042,136.992,0.048,2459598.137675,0.014305,6.8242909,0.0001476,2.787,0.533,0.760281,0.002444,700.0,2.25055,2.23971,0.267381,33.8464,671.0,9.0,117.383,0.3015,3999.0,123.9,4.35,0.12,0.87,0.09,,,0.624,0.0809913,"18,19,20,25,26,40,47",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5574,1,False,False,True -160162137,5575.01,,3,4,3,3,1,4,4,0.8,198.4,65.8,0,0,0,PC,PC,14.0127,0.008,,1,qlp-s53-tois,QLP,16:04:59.65,85:12:17.01,-19.384,0.088,131.435,0.097,2459747.65944,1.76e-05,32.0736228,1e-06,2.347,0.003,170.897732,0.941083,145640.0,866.394,9.48121,0.285814,0.243503,195.0,77.0,56.6893,0.1695,3176.0,157.0,5.0,0.02,0.24,0.01,,,0.210254,0.0201017,"41,47,52,53",2022-05-17,2022-11-30,2022-12-14 12:09:24,found in faint-star QLP search; period updated to ~32 days with additional TCE found in QLP s53,5575,1,False,False,False -137543637,5576.01,,5,5,5,5,5,5,5,18.4,76.6,64.36,0,1,0,PC,FP,12.574,0.007,,1,qlp-s47-faintsearch,QLP,09:04:53.14,79:21:18.37,24.31,0.039,-27.61,0.049,2459605.677896,0.0015318,1.2833113,5.4e-06,1.353,0.191,4.842308,0.009729,4450.0,8.9606,9.39506,0.560254,3343.46,2118.0,12.0,974.619,24.9615,8055.0,120.7,4.49,0.08,1.32,0.05,,,1.95,0.303335,"20,40,47",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5576,1,False,False,False -98833877,5577.01,,3,4,3,3,3,4,4,42.8,130.6,51.64,1,2,3,PC,PC,11.1947,0.007,,1,qlp-s47-faintsearch,QLP,07:01:14,41:07:46.89,-2.291,0.074,0.974,0.064,2459606.67024,0.0009676,0.358558,7e-07,0.274,0.065,1.042807,0.01914,960.0,17.6282,8.24018,0.877154,948.501,1546.0,14.0,508.394,13.054,6813.5,138.9,4.16,0.09,1.67,0.09,-0.355464,0.00739973,1.47,0.253543,"20,47",2022-05-17,2022-05-17,2023-02-08 00:00:00,found in faint-star QLP search,5577,1,False,False,False -154563411,5578.01,,2,4,2,2,3,4,4,1.6,26.9,10.98,0,2,1,PC,PC,12.3681,0.006,,1,qlp-s47-faintsearch,QLP,12:37:03.76,75:55:13.58,-44.972,0.03,-8.412,0.025,2459583.65004,0.005542,13.4659853,0.0001508,2.936,0.473,2.282443,0.006635,2100.0,6.1112,3.3076,0.337638,12.7406,526.0,9.0,158.202,0.3685,4340.0,121.8,4.59,0.1,0.69,0.06,,,0.678,0.079735,"14,21,40,41,47",2022-05-17,2022-05-17,2023-04-05 00:00:00,found in faint-star QLP search,5578,1,False,False,False -252928337,5579.01,,3,4,3,3,1,4,4,2.9,79.8,47.28,0,0,0,PC,PC,13.5426,0.007,,1,qlp-s47-faintsearch,QLP,07:03:17.2,52:31:00.23,-166.616,0.052,-200.835,0.038,2459583.260949,0.0024515,19.8628449,0.0034783,1.965,0.228,34.123331,0.057562,30940.0,53.0154,7.82397,0.415735,0.933932,273.0,16.0,115.906,0.512,3595.0,157.0,4.8,0.01,0.43,0.01,,,0.424023,0.0203176,47,2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5579,1,False,False,False -366298702,5580.01,,3,4,3,3,3,4,4,5.5,27.5,27.47,0,2,1,PC,PC,12.2989,0.007,,1,qlp-s47-faintsearch,QLP,07:29:03.02,42:01:54.88,-12.316,0.05,-16.814,0.032,2459603.122108,0.0057285,5.2782582,5.71e-05,3.379,0.494,2.173647,0.005072,2000.0,4.67146,5.6755,0.42676,320.994,1179.0,11.0,486.081,7.714,5647.0,125.2,4.22,0.08,1.29,0.07,,,1.0,0.125384,"20,47",2022-05-17,2022-05-17,2023-02-27 00:00:00,found in faint-star QLP search,5580,1,False,False,False -456306892,5581.01,TIC 456306892.01,3,4,3,3,3,4,4,5.9,73.7,68.18,2,1,1,PC,PC,11.8294,0.006,,1,spoc-s14-s50-b0A-PC,QLP,07:52:15.7,70:09:56.05,-23.591,0.029,-41.288,0.039,2459390.963138,0.001636328,33.5372399143452,0.0003609206,3.86129011584001,0.12961097,13.970914,0.44014,12785.2525571675,405.30212,9.68740059140715,0.6696897,9.36671348330672,446.186636210317,27.042624,191.145,0.8725,4947.0,123.5,4.55,0.09,0.794395983219147,0.0501181,,,0.814,0.0970209,"20,26,40,47",2022-05-17,2022-11-15,2023-02-08 00:00:00,found in faint-star QLP search; period updated to ~33.5 days with spoc-s14-s50-b0A-PC,5581,1,False,False,True -392064198,5582.01,,3,4,3,3,3,4,4,4.2,22.2,22.56,0,2,1,PC,PC,11.2713,0.009,,1,qlp-s47-faintsearch,QLP,07:22:33.52,30:25:06.07,5.799,0.073,-0.434,0.065,2459604.334385,0.0048787,4.51125,7.3e-05,4.541,0.686,0.825473,0.001641,760.0,1.51141,5.04347,0.37144,1281.58,1666.0,13.0,533.617,11.808,6297.2,139.3,3.97,0.09,1.91,0.1,0.2422,0.0104189,1.24,0.183765,"20,44,45,46,47",2022-05-17,2022-05-17,2023-02-08 00:00:00,found in faint-star QLP search,5582,1,False,False,False -357244603,5583.01,,3,4,3,3,1,4,4,29.9,77.5,87.38,2,0,0,PC,PC,14.2833,0.007,,1,qlp-s47-faintsearch,QLP,07:10:31.53,74:29:08.68,-2.327,2.244,-24.658,2.244,2459601.814247,0.0016744,3.0650073,5.14e-05,1.548,0.217,25.474757,0.055662,23190.0,51.2652,11.1354,0.794536,26.6949,633.0,15.0,,,3619.0,157.0,4.57,0.03,0.69,0.04,,,0.659639,0.029187,"40,47",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5583,1,False,False,False -29169215,5584.01,TIC 29169215.01,1,4,1,1,3,4,4,1.8,38.9,9.27,0,2,3,PC,PC,10.7314,0.006,,1,qlp-s47-faintsearch,QLP,09:01:17.88,47:27:08.46,4.639,0.057,-12.946,0.046,2459580.448333,0.0032716,18.6300789,0.0001865,3.4,0.44,1.760319,0.003165,1620.0,2.91482,3.01483,0.310062,6.92991,452.0,15.0,69.0641,0.1898,4092.4,121.2,4.5,0.11,0.75,0.07,0.128,0.065,0.64,0.0788791,"21,47",2022-05-17,2022-05-17,2023-02-19 00:00:00,found in faint-star QLP search,5584,1,False,False,True -188389305,5585.01,,3,4,3,3,1,4,4,15.0,55.6,50.12,3,0,0,PC,PC,13.0348,0.007,,1,qlp-s47-faintsearch,QLP,08:37:56.01,37:44:07.13,-3.737,0.047,-1.558,0.027,2459606.464477,0.0102782,1.8434549,0.00095,1.444,0.658,4.74416,0.213132,4360.0,196.283,8.05828,,1139.02,1618.0,9.0,771.853,18.247,6457.2,70.4,4.44,,1.14,,-0.581,0.068,1.31,,47,2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5585,1,False,False,False -160165689,5586.01,,3,4,3,3,1,4,4,4.6,27.4,37.37,0,0,0,PC,PC,13.4794,0.015,,1,qlp-s47-faintsearch,QLP,16:16:05.53,86:22:07.12,-5.506,0.035,12.0,0.036,2459594.081803,0.0133265,8.9165771,0.000162,3.224,0.929,4.74416,0.034502,4360.0,31.7767,6.82341,,108.636,899.0,10.0,540.141,5.089,5607.0,122.0,4.45,,0.98,,,,0.99,,"14,19,20,25,40,47",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5586,1,False,False,False -29069242,5587.01,,3,4,3,3,1,4,4,22.0,48.8,130.55,0,0,0,PC,PC,13.3834,0.009,,1,qlp-s47-faintsearch,QLP,07:50:55.89,46:18:23.64,0.72,0.058,-3.453,0.04,2459605.449939,0.0028203,3.7349773,2.07e-05,3.891,0.335,8.534772,0.007967,7830.0,7.33761,14.1804,,702.991,1434.0,21.0,943.289,33.133,5632.0,123.0,4.05,,1.57,,,,1.0,,"20,47",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5587,1,False,False,False -141762491,5588.01,,3,4,4,3,3,4,4,24.7,34.8,317.0,7,0,1,PC,PC,12.4506,0.008,,1,qlp-s47-faintsearch,QLP,08:02:22.75,83:11:54.31,11.472,0.038,13.744,0.044,2459918.835052,0.0018212069,8.9109435,1.86e-05,1.876,0.433,10.74752,0.031918,9850.0,29.3967,16.5406,1.23877,51.4199,746.0,36.0,655.855,9.7485,5733.0,121.9,4.05,0.08,1.57,0.08,,,1.02,0.126408,"19,20,26,40,47,59,60",2022-05-17,2023-05-19,2023-05-19 00:00:00,found in faint-star QLP search,5588,1,False,False,False -51094586,5589.01,,3,4,3,3,3,4,4,23.0,60.4,98.94,0,13,2,PC,PC,11.4972,0.006,,1,qlp-s47-faintsearch,QLP,07:14:25.56,56:42:00.52,,,,,2459595.836324,0.0022533,5.6895053,2.42e-05,5.158,0.245,4.177252,0.001361,3840.0,1.2538,12.0705,,578.708,,24.0,244.354,,5707.5,,,,1.89,,-0.358,0.018,,,"20,47",2022-05-17,2022-05-17,2023-04-16 00:00:00,found in faint-star QLP search,5589,1,False,False,False -9907513,5590.01,TIC 9907513.01,2,4,2,2,3,4,4,7.6,43.3,7.66,2,2,1,PC,PC,11.9639,0.006,,1,qlp-s47-faintsearch,QLP,07:22:45.52,37:40:03.04,-22.895,0.068,-43.138,0.062,2459606.061518,0.0036415,1.2749899,9.8e-06,1.146,0.294,1.238445,0.007976,1140.0,7.34649,2.69399,0.353868,201.011,1048.0,9.0,136.242,0.882,4216.7,132.9,4.48,0.12,0.78,0.08,0.044,0.081,0.66,0.0823297,"20,47",2022-05-17,2022-05-17,2023-02-08 00:00:00,found in faint-star QLP search,5590,1,False,False,False -192969211,5591.01,,3,4,3,3,3,4,4,2.5,22.1,19.23,0,2,1,PC,PC,12.1721,0.007,,1,qlp-s47-faintsearch,QLP,08:12:06.5,42:13:43.37,-6.46,0.058,-14.879,0.039,2459599.966864,0.0091282,12.8665269,0.0003526,6.599,1.089,2.097496,0.00579,1930.0,5.33277,4.59403,0.356078,179.365,1019.0,11.0,356.237,5.1145,5465.0,119.1,4.38,0.08,1.05,0.05,,,0.96,0.124509,"20,47",2022-05-17,2022-05-17,2023-02-19 00:00:00,found in faint-star QLP search,5591,1,False,False,False -88529975,5592.01,,3,4,4,3,3,4,4,42.3,109.2,126.64,4,2,1,PC,PC,12.136,0.007,,1,qlp-s47-faintsearch,QLP,07:06:43.22,65:51:26.1,5.096,0.026,-10.573,0.034,2459606.194577,0.0007415,2.6085851,4.1e-06,1.573,0.327,9.388665,0.019949,8610.0,18.3737,13.9108,0.911821,680.058,1422.0,50.0,597.026,8.9775,6331.0,124.6,4.25,0.09,1.38,0.06,,,1.25,0.187869,"20,47",2022-05-17,2022-05-17,2023-03-25 00:00:00,found in faint-star QLP search,5592,1,False,False,False -468433454,5593.01,,3,4,3,3,1,4,4,9.1,33.6,78.11,0,0,0,PC,PC,13.2201,0.007,,1,qlp-s47-faintsearch,QLP,08:34:12.54,39:16:15.5,-2.231,0.036,-1.983,0.028,2459599.997854,0.0054715,4.7974601,0.0030862,5.952,0.683,5.322274,0.011951,4890.0,11.0075,10.4912,,1955.29,1852.0,12.0,1130.59,29.375,6549.4,32.8,4.21,,1.51,,-0.186,0.031,1.35,,47,2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5593,1,False,False,False -53394475,5594.01,,3,4,3,3,3,4,4,8.6,35.9,69.69,1,0,1,PC,PC,12.826,0.008,,1,qlp-s47-faintsearch,QLP,07:53:40.32,54:07:27.16,-8.428,0.04,-40.191,0.027,2459589.072503,0.004629,9.2271917,8.15e-05,3.781,0.369,6.031702,0.008236,5540.0,7.58561,9.80232,0.64263,138.883,956.0,15.0,683.54,12.065,5899.0,130.3,4.23,0.08,1.32,0.07,,,1.07,0.13624,"20,47",2022-05-17,2022-05-17,2023-04-05 00:00:00,found in faint-star QLP search,5594,1,False,False,False -302908969,5595.01,,3,4,3,3,3,4,4,7.6,49.3,20.21,0,0,1,PC,PC,12.1765,0.006,,1,qlp-s47-faintsearch,QLP,07:21:50.44,35:13:19.14,-77.907,0.073,-35.236,0.069,2459598.869415,0.002315,5.9900508,3.23e-05,2.104,0.254,4.002879,0.007294,3680.0,6.718,4.71645,0.484319,24.7628,621.0,15.0,136.955,0.6395,4119.0,119.5,4.51,0.11,0.74,0.07,,,0.645,0.076854,"20,47",2022-05-17,2022-05-17,2023-02-08 00:00:00,found in faint-star QLP search,5595,1,False,False,False -203144354,5596.01,,3,5,5,3,3,4,4,45.5,35.3,317.0,6,0,1,PC,APC,13.2995,0.008,,1,qlp-s47-faintsearch,QLP,07:05:20.78,42:50:52.47,2.973,0.044,-3.086,0.039,2459606.549481,0.0015615,0.3642961,1.3e-06,0.689,0.265,3.730477,0.065299,3430.0,60.1406,15.3432,,4454.77,2276.0,15.0,1439.26,54.09,6164.3,39.0,3.83,,2.17,,-0.024,0.038,1.17,,"20,47",2022-05-17,2022-05-17,2023-02-27 00:00:00,found in faint-star QLP search,5596,1,False,False,False -85284138,5597.01,,3,4,4,3,3,4,4,91.2,151.9,317.0,3,0,1,PC,PC,13.4913,0.007,,1,qlp-s48-faintsearch,QLP,09:37:45.89,34:50:57.88,-1.318,0.053,-7.101,0.047,2459634.509247,0.001635,1.9784368,0.0002556,2.359,0.146,43.722666,0.031343,39470.0,28.868,22.5379,,1211.74,1643.0,25.0,893.967,33.5765,6337.0,122.0,4.44,,1.11,,,,1.25,,48,2022-05-17,2022-05-17,2023-03-03 00:00:00,found in faint-star QLP search,5597,1,False,False,False -237108775,5598.01,,3,4,3,3,1,4,4,6.8,44.3,43.53,2,0,0,PC,PC,14.7371,0.008,,1,qlp-s58-tois,QLP,17:09:15.75,80:24:57.89,-10.306,0.062,11.177,0.08,2459900.651734,0.0039128,6.2948747,7.85e-05,1.878,0.327,18.292631,1.519204,16707.0,1398.26,6.67951,0.409179,9.34062,487.0,12.0,248.266,2.043,3584.0,157.0,4.71,0.01,0.53,0.02,,,0.525026,0.0207447,"40,41,47,48,51,52,53,55,58",2022-05-17,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,5598,1,False,False,False -159160230,5599.01,,3,4,3,3,3,4,4,5.8,27.0,31.3,0,2,2,PC,PC,11.2785,0.006,,1,qlp-s48-faintsearch,QLP,13:17:18.3,55:40:53.54,-16.483,0.035,-4.433,0.03,2459627.128945,0.0057262,5.4368408,4.71e-05,4.473,0.717,1.108016,0.002876,1020.0,2.64929,6.11754,0.434311,833.218,1496.0,13.0,547.948,6.277,6246.0,122.2,3.96,0.09,1.91,0.08,,,1.21,0.178854,"15,16,48",2022-05-17,2022-05-17,2023-04-16 00:00:00,found in faint-star QLP search,5599,1,False,False,False -287268770,5600.01,,3,4,3,3,1,4,4,17.4,80.9,105.54,1,0,0,PC,PC,13.1922,0.007,,1,qlp-s48-faintsearch,QLP,10:20:36.33,63:17:26.13,2.427,0.023,-2.598,0.024,2459630.693169,0.0009337,10.717359,2.36e-05,2.784,0.297,24.908034,0.022225,22680.0,20.47,12.4655,,30.4561,654.0,13.0,378.06,2.318,5047.0,122.0,4.55,,0.8,,,,0.84,,"14,21,41,47,48",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5600,1,False,False,False -237097499,5601.01,,2,4,2,2,2,4,4,1.9,20.0,14.52,3,0,1,PC,PC,13.3757,0.007,,1,qlp-s56-tois,QLP,15:58:01.74,66:02:13.86,-2.224,0.03,-3.955,0.038,2459834.266444,0.0059307,9.5197732,7.93e-05,2.636,1.041,2.391251,0.352635,2200.0,324.736,3.89219,,32.9482,667.0,9.0,313.795,1.725,4541.0,122.0,4.52,,0.77,,,,0.72,,"14,15,16,17,18,20,21,22,23,24,40,41,47,48,49,50,51,53,54,55,56",2022-05-17,2023-02-06,2023-06-16 00:00:00,found in faint-star QLP search,5601,1,False,False,False -101592219,5602.01,,3,4,3,3,3,4,4,17.5,54.1,122.18,1,0,1,PC,PC,13.4409,0.007,,1,qlp-s48-faintsearch,QLP,09:38:37.99,33:41:27.9,-6.763,0.052,-0.835,0.04,2459628.710083,0.0022598,5.4853379,2.67e-05,1.964,0.255,13.151596,0.01983,12040.0,18.2641,13.6635,,114.21,910.0,16.0,874.724,31.6975,6054.4,35.9,4.33,,1.21,,-0.441,0.034,1.13,,"21,48",2022-05-17,2022-05-17,2023-02-19 00:00:00,found in faint-star QLP search,5602,1,False,False,False -224293782,5603.01,,3,4,3,3,3,4,4,10.6,40.2,30.68,1,2,2,PC,PC,11.6494,0.007,,1,qlp-s48-faintsearch,QLP,12:16:42.11,57:38:33.72,-10.188,0.05,-3.401,0.049,2459635.463547,0.0020072,0.5736183,1.7e-06,0.793,0.172,0.727687,0.003352,670.0,3.08774,6.063,0.53134,3111.57,2080.0,15.0,795.259,22.001,6711.9,143.9,3.94,0.09,2.12,0.12,-0.006,0.021,1.43,0.227124,"15,21,22,41,48",2022-05-17,2022-05-17,2023-04-16 00:00:00,found in faint-star QLP search,5603,1,False,False,False -237015185,5604.01,,3,4,3,3,3,4,4,6.6,39.4,38.2,0,2,1,PC,PC,11.2399,0.028,,1,qlp-s56-tois,QLP,20:25:33.97,63:35:27.98,11.484,0.06,15.188,0.053,2459840.574967,0.0035367,11.1801504,5.38e-05,4.364,0.469,2.413014,0.122268,2220.0,112.607,6.89187,0.386353,183.14,1024.0,9.0,373.528,3.9425,6413.0,219.3,4.21,0.1,1.47,0.07,,,1.29,0.223825,"15,16,17,18,24,48,55,56",2022-05-17,2023-02-05,2023-04-03 00:00:00,found in faint-star QLP search,5604,1,False,False,False -252469648,5605.01,TIC 252469648.01,2,4,2,2,3,4,4,3.1,36.4,6.24,0,2,1,PC,PC,11.0737,0.006,,1,qlp-s48-faintsearch,QLP,10:02:09.12,50:08:43.39,-71.237,0.039,-31.215,0.044,2459629.650414,0.005007,5.9133875,5.63e-05,2.019,0.363,1.064543,0.004514,980.0,4.1578,2.3864,0.265636,33.3499,669.0,9.0,95.0735,0.25645,4374.8,127.3,4.54,0.11,0.74,0.06,-0.0269147,0.0261785,0.68,0.0802284,"21,48",2022-05-17,2022-05-17,2023-02-27 00:00:00,found in faint-star QLP search,5605,1,False,False,True -171599496,5606.01,,3,4,3,3,1,4,4,52.6,123.1,69.53,2,0,0,PC,PC,13.3591,0.007,,1,qlp-s48-faintsearch,QLP,10:27:34.54,22:25:34.45,7.545,0.046,10.259,0.048,2459635.464877,0.0011522,1.236949,2.3e-05,0.358,0.064,8.994477,0.093887,8250.0,86.4698,9.84184,,25.0169,623.0,19.0,316.465,2.9525,4660.0,122.0,4.56,,0.75,,,,0.74,,"45,46,48",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5606,1,False,False,False -233070717,5607.01,,3,4,3,3,1,4,4,16.8,49.1,87.47,1,0,0,PC,PC,13.1953,0.008,,1,qlp-s52-tois,QLP,18:03:23.06,63:12:54.25,6.795,0.03,-12.6,0.027,2459825.973413,0.0011351086,3.2750907,6.1e-06,3.09,0.124,7.09125,0.001374,6510.0,1.26586,11.2041,,664.018,1414.0,46.0,811.406,9.268,5859.0,122.0,4.21,,1.33,,,,1.06,,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51,52,56,57,58,60",2022-05-17,2023-05-19,2023-05-19 00:00:00,found in faint-star QLP search,5607,1,False,False,False -229713401,5608.01,,2,4,2,2,4,4,4,2.2,22.1,10.01,0,0,2,PC,PC,12.6975,0.006,,1,qlp-s56-tois,QLP,18:34:17.34,66:55:22.03,5.751,0.032,-10.43,0.032,2459846.423245,0.0040985,6.4424263,3.69e-05,2.604,0.485,1.553714,0.131469,1430.0,121.08,3.14002,0.286883,58.2235,769.0,12.0,250.177,1.2395,4661.0,131.5,4.5,0.1,0.8,0.06,,,0.742,0.0865249,"14,15,16,17,18,19,21,22,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56",2022-05-17,2023-02-06,2023-04-05 00:00:00,found in faint-star QLP search,5608,1,False,False,False -17122808,5609.01,,3,4,3,3,1,4,4,23.7,64.7,122.8,2,0,0,PC,PC,13.4584,0.007,,1,qlp-s48-faintsearch,QLP,09:36:45.06,36:31:38.26,2.015,0.033,-3.367,0.03,2459630.970134,0.0018955,4.019251,1.8e-05,1.354,0.3,12.920838,0.043707,11830.0,40.255,13.7216,,96.9861,874.0,14.0,816.667,16.566,5904.0,123.0,4.34,,1.16,,,,1.07,,"21,48",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5609,1,False,False,False -252481136,5610.01,,3,4,3,3,1,4,4,8.7,59.0,70.34,1,0,0,PC,PC,14.8686,0.008,,1,qlp-s48-faintsearch,QLP,10:24:05.48,48:14:53.99,-27.523,0.07,-55.247,0.089,2459628.937156,0.0036588,7.9454767,0.0028259,1.493,0.271,40.573558,0.26393,36680.0,243.059,9.87351,0.929515,3.70033,386.0,9.0,274.922,4.34,3714.0,157.0,4.73,0.01,0.51,0.02,,,0.507479,0.0211466,48,2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5610,1,False,False,False -232624234,5611.01,,2,4,2,2,4,4,4,1.0,17.6,6.36,2,2,5,PC,PC,12.1235,0.006,,1,qlp-s57-tois,QLP,17:54:46.44,55:03:51.21,-76.277,0.052,-1.898,0.055,2459868.59365,0.0040385,11.3630224,5.99e-05,3.031,0.479,1.138448,0.068497,1048.0,63.0864,2.39002,0.221523,27.5227,638.0,13.0,191.341,0.831,4741.1,147.5,4.54,0.1,0.77,0.06,-0.417113,0.0969017,0.761,0.0917764,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57",2022-05-17,2023-05-01,2023-05-06 12:13:45,found in faint-star QLP search,5611,1,True,False,True -232624234,5611.02,,2,4,2,2,4,4,4,0.5,15.7,7.95,2,2,5,PC,PC,12.1235,0.006,,2,spoc-s14-s60-b0A-PC,SPOC,17:54:46.44,55:03:51.21,-76.277,0.052,-1.898,0.055,2458960.498001,0.009355858,26.7159918460168,0.00030822083,4.75918479216392,0.9082285,1.360201,0.160465,1252.00712379722,147.78322,2.73580380537497,1.6914304,10.6059180306288,460.263797244926,8.105808,191.341,0.831,4741.1,147.5,4.54,0.1,0.773316979408264,0.0646734,-0.417113,0.0969017,0.761,0.0917764,"24,56,57,58,59,60",2023-06-15,2023-06-15,2023-06-16 12:14:51,low SNR,5611,2,True,False,True -18021087,5612.01,,3,4,3,3,1,4,4,9.6,45.5,48.94,0,0,0,PC,PC,13.1082,0.007,,1,qlp-s48-faintsearch,QLP,11:29:38.66,38:56:11.62,6.64,0.03,14.141,0.04,2459634.277413,0.0028057,7.1314563,4.73e-05,2.809,0.464,8.22841,0.014881,7550.0,13.7059,7.98487,,55.3319,759.0,18.0,334.412,3.0535,4701.6,58.3,4.43,,0.88,,0.124,0.056,0.75,,"22,48",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5612,1,False,False,False -165413340,5613.01,,1,4,1,3,3,4,4,12.4,73.1,61.93,1,12,2,PC,PC,11.7963,0.007,,1,qlp-s48-faintsearch,QLP,10:38:26.88,27:03:45.17,-36.837,0.087,-24.168,0.086,2459615.444572,0.0015661,12.782983,0.0022926,2.762,0.224,8.786491,0.006276,8060.0,5.78046,9.1313,0.564524,29.951,651.0,28.0,291.68,6.397,5594.0,128.2,4.46,0.08,0.97,0.05,,,0.99,0.12494,48,2022-05-17,2022-05-17,2023-06-07 00:00:00,found in faint-star QLP search,5613,1,False,False,False -148960849,5614.01,,2,4,2,2,2,4,4,3.3,26.6,10.68,0,0,1,PC,PC,13.0076,0.006,,1,qlp-s48-faintsearch,QLP,12:37:43.76,69:27:30.34,-24.071,0.032,24.13,0.027,2459628.761503,0.0056088,4.172202,3.72e-05,2.263,0.334,2.151889,0.006664,1980.0,6.13821,3.23281,,74.1594,817.0,9.0,223.016,0.79,4313.0,122.0,4.53,,0.73,,,,0.674,,"14,15,21,41,47,48",2022-05-17,2022-05-17,2023-06-16 00:00:00,found in faint-star QLP search,5614,1,False,False,False -235711993,5615.01,,3,4,3,3,1,4,4,18.0,32.4,317.0,1,0,0,PC,PC,13.0669,0.01,,1,qlp-s52-tois,QLP,16:51:44.38,80:07:22.9,4.344,0.024,-18.236,0.031,2459919.252913,0.0023684518,11.7672708,2.16e-05,3.098,0.195,14.416145,0.02651,13190.0,24.4161,15.2219,,141.822,961.0,9.0,693.821,7.558,6205.0,122.0,4.43,,1.1,,,,1.19,,"14,15,18,19,20,21,25,40,41,47,48,51,52,59",2022-05-17,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,5615,1,False,False,False -154220877,5616.01,,3,4,3,3,1,4,4,33.9,77.5,84.73,3,0,0,PC,PC,14.6877,0.007,,1,qlp-s48-faintsearch,QLP,12:19:36.39,48:40:59.84,-43.117,0.034,28.563,0.046,2459634.535127,0.0033056,2.0034478,0.0004688,1.285,0.25,27.109911,0.113187,24660.0,104.244,10.9523,0.809749,58.2268,769.0,13.0,390.415,5.8005,3927.0,157.0,4.61,0.01,0.65,0.02,,,0.629592,0.0208323,48,2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5616,1,False,False,False -9376973,5617.01,,3,4,3,3,1,4,4,21.3,56.3,99.19,2,0,0,PC,PC,13.0537,0.007,,1,qlp-s48-faintsearch,QLP,11:07:48.18,38:08:12.97,-7.283,0.032,-16.048,0.055,2459635.766515,0.0017786,3.154201,1.14e-05,2.857,0.196,8.38158,0.005143,7690.0,4.73703,12.0524,,589.138,1372.0,24.0,760.003,14.24,5771.5,126.1,4.18,,1.36,,0.257,0.12,1.03,,"22,48",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5617,1,False,False,False -56999883,5618.01,,3,4,3,3,1,4,4,47.8,57.2,317.0,1,0,0,PC,PC,12.9882,0.007,,1,qlp-s48-faintsearch,QLP,11:32:16.81,44:07:35.13,10.503,0.026,-4.672,0.027,2459630.759188,0.0031071,3.5254325,2.12e-05,3.31,0.278,6.304682,2.027126,5790.0,1865.31,17.2611,6.02186,2183.12,1904.0,23.0,631.38,8.15,5497.0,127.9,4.23,0.08,1.25,0.07,,,0.96,0.122946,"22,48",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5618,1,False,False,False -224299081,5619.01,TIC 224299081.01,3,4,3,3,3,4,4,4.3,38.8,45.9,1,2,3,PC,PC,10.7131,0.007,,1,qlp-s48-faintsearch,QLP,12:22:01.09,55:33:34.37,-58.773,0.044,7.322,0.051,2459626.901517,0.0028379,37.9984529,0.000182,5.928,0.459,3.316556,0.001677,3050.0,1.54432,7.69928,0.383306,19.8821,588.0,10.0,270.633,2.67,5839.5,105.8,4.18,0.07,1.38,0.06,0.078,0.016,1.05,0.129349,"15,21,22,48",2022-05-17,2022-05-17,2023-02-27 00:00:00,found in faint-star QLP search,5619,1,False,False,True -165414210,5620.01,,3,4,4,3,3,4,4,67.4,174.0,105.53,3,2,2,PC,PC,11.9683,0.006,,1,qlp-s48-faintsearch,QLP,10:38:50.06,27:24:55.82,24.451,0.084,-38.163,0.078,2459630.841495,0.0004788,3.2856588,0.000159,2.384,0.159,19.621778,0.006529,17910.0,6.01308,12.5808,0.786296,187.224,1030.0,94.0,227.174,2.333,4898.9,106.8,4.43,0.08,0.91,0.05,0.293087,0.0429209,0.801,0.0961545,48,2022-05-17,2022-05-17,2023-05-08 00:00:00,found in faint-star QLP search,5620,1,False,False,False -219467837,5621.01,,3,4,3,3,1,4,4,5.6,33.1,129.09,1,0,0,PC,PC,12.64,0.007,,1,qlp-s48-faintsearch,QLP,14:00:15.35,75:05:03.91,15.248,0.028,-12.634,0.021,2459594.438445,0.0020066,39.9753375,0.0002127,6.088,0.263,9.991173,0.002949,9160.0,2.71618,14.1085,0.697099,18.6491,578.0,39.0,718.289,7.1215,5989.0,122.6,4.16,0.08,1.45,0.07,,,1.1,0.14163,"14,15,20,21,22,40,41,47,48",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5621,1,False,False,False -288162228,5622.01,,3,4,3,3,1,4,4,7.9,19.4,67.61,0,0,0,PC,PC,13.2859,0.007,,1,qlp-s48-faintsearch,QLP,14:46:11.64,78:59:47.83,0.221,0.038,2.718,0.031,2459632.965356,0.0047818,3.0594206,2.44e-05,4.191,0.434,2.173647,0.002438,2000.0,2.24513,9.6239,,1193.52,1637.0,17.0,1186.92,22.3,5414.0,122.0,3.75,,2.14,,,,0.94,,"14,15,19,20,21,40,41,47,48",2022-05-17,2022-05-17,2022-12-14 12:09:24,found in faint-star QLP search,5622,1,False,False,False -420174131,5623.01,,3,4,3,3,1,4,4,12.6,40.0,59.23,1,0,0,PC,PC,13.1388,0.013,,1,qlp-s52-tois,QLP,19:29:06.66,72:00:05.18,-4.088,0.025,-2.541,0.03,2459827.806024,0.001967442,3.6636707,8.4e-06,1.167,0.302,4.23175,0.011037,3890.0,10.1655,8.91486,,77.2704,825.0,22.0,565.9,5.3755,5286.0,122.0,4.18,,1.28,,,,0.91,,"14,15,16,17,18,19,20,22,23,24,25,40,41,47,48,49,50,52",2022-05-17,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,5623,1,False,False,False -53498154,5624.01,,2,4,2,2,4,4,4,4.1,61.3,11.32,0,2,4,PC,PC,10.0326,0.006,,1,qlp-s49-ffi,QLP,12:03:22.64,49:15:04.41,-76.66,0.034,1.159,0.039,2459641.471306,0.0028651,13.7287006,0.0025541,3.375,0.326,1.80382,0.001844,1660.0,1.69884,3.37945,0.222967,36.4032,684.0,19.0,101.913,0.35,5342.0,126.7,4.57,0.08,0.83,0.05,,,0.923,0.117762,"22,48,49",2022-05-17,2022-05-17,2023-06-05 00:00:00,potential L1 planet; possibly 2 more planets in LC,5624,1,False,False,True -137020480,5625.01,,3,4,3,3,3,4,4,41.6,119.3,77.58,0,2,3,PC,PC,9.1189,0.007,,1,qlp-s49-ffi,QLP,13:08:34.32,42:20:26.88,-51.361,0.029,15.519,0.03,2459661.055081,0.005994,3.4645195,7.4e-05,4.649,0.367,0.445243,0.278985,410.0,256.922,10.4699,4.24972,28650.3,3624.0,12.0,260.349,1.944,6351.0,128.7,3.78,0.09,2.4,0.11,,,1.26,0.188718,"22,49",2022-05-17,2022-05-17,2023-02-27 00:00:00,V-shaped; no transits detected in Y2,5625,1,False,False,False -376645976,5626.01,TIC 376645976.01,3,5,5,3,2,4,4,,,77.39,0,2,1,PC,PC,9.80675,0.006,,1,qlp-s49-ffi,QLP,13:13:11.7,31:38:18.25,-65.604,0.067,-31.234,0.069,2459660.040353,0.0004972,0.0,0.0,2.004,0.091,9.84435,0.000793,9026.0,0.730578,10.4373,0.509513,71.6585,810.0,50.0,122.745,1.1135,5699.0,118.7,4.46,0.08,0.98,0.05,,,1.015,0.127521,"23,49",2022-05-17,2022-05-23,2023-06-07 00:00:00,single transit; likely P>22d,5626,1,False,True,True -335813590,5627.01,,3,4,4,3,2,4,4,42.2,167.8,104.34,3,2,1,PC,PC,12.0051,0.006,,1,spoc-s49-b02,SPOC,12:12:47.36,13:14:14.98,-88.225,0.094,10.373,0.066,2459641.138875,0.00079571205,7.5575607395815,0.00041259112,2.02331406655719,0.061421953,19.452507,0.707314,17756.8766059711,651.2477,12.4415237689692,1.8368318,61.0057317931714,712.79133211677,47.952286,193.533,2.6105,4893.71,141.288,4.57637,0.0996764,0.762767970561981,0.0570954,-0.0718116,0.0240208,0.8,0.0965333,49,2022-06-02,2022-06-02,2023-07-07 00:00:00,v-shaped,5627,1,False,False,True -135100529,5628.01,TIC 135100529.01,3,4,4,3,1,4,4,37.7,238.8,92.23,5,0,0,PC,PC,14.4733,0.006,,1,spoc-s49-b02,SPOC,12:22:54.71,18:50:12.14,-171.085,0.127,-28.273,0.103,2459640.620156,0.0011419953,4.34150966691661,0.00037833359,1.77939085335423,0.091970466,118.652958,4.479175,103523.691836971,4116.975,,,45.5106872829032,662.442363632894,22.50197,110.03,0.9085,3427.0,122.0,4.438,,,,,,,,49,2022-06-02,2022-06-02,2023-03-25 00:00:00,no stellar radius; host is likely an M dwarf which would allow Rp to be planetary,5628,1,False,False,True -298437387,5629.01,,2,4,2,2,2,4,4,15.4,96.9,14.65,2,4,1,PC,PC,10.4671,0.006,,1,qlp-s50-ffi,QLP,14:30:02.95,20:57:13.06,-29.639,0.08,-29.184,0.093,2459689.357738,0.0052087,2.2853731,0.0009511,1.022,0.475,1.531968,0.115868,1410.0,106.713,3.93456,1.05331,297.666,1157.0,10.0,132.992,0.7555,5299.0,125.0,4.48,0.08,0.91,0.05,,,0.911,0.1137,50,2022-06-02,2022-06-02,2023-06-20 00:00:00,potential L1 candidate,5629,1,False,False,True -316416562,5630.01,,1,4,1,1,2,4,4,4.5,44.6,6.12,1,2,1,PC,PC,10.3331,0.006,,1,qlp-s51-ffi,QLP,15:45:48.92,40:22:29.5,17.474,0.031,-46.951,0.049,2459716.667853,0.0028897,3.221147,2.82e-05,3.367,0.625,0.543004,0.001167,500.0,1.07469,2.33815,0.155242,827.65,1494.0,13.0,134.047,0.357,5382.4,108.4,4.47,0.07,0.93,0.05,0.135,0.02,0.934,0.111186,"24,50,51",2022-06-02,2022-06-24,2023-06-20 00:00:00,,5630,1,False,False,True -347430350,5631.01,,5,5,5,5,5,5,5,176.0,451.8,131.41,0,0,0,KP,KP,9.32423,0.006,,1,qlp-s50-ffi,QLP,14:33:06.39,21:53:40.88,29.242,0.059,-6.951,0.062,2459689.309412,0.0002022,2.2438471,3.96e-05,2.574,0.014,11.252045,0.000116,10310.0,0.106845,14.2892,0.719444,1356.33,1690.0,231.0,161.997,0.806,6458.0,143.7,4.31,0.09,1.33,0.07,-0.12,0.1,1.312,0.209995,50,2022-06-02,2022-06-02,2022-12-14 12:09:24,WASP-14 b,5631,1,False,False,True -420779000,5632.01,,5,5,5,5,5,5,5,30.8,137.0,40.17,0,0,2,KP,KP,10.9016,0.006,,1,spoc-s50-b02,SPOC,14:12:37.57,04:03:33.9,37.839,0.093,-142.891,0.083,2459666.190171,0.0012201936,4.23421531199059,0.00038078934,2.51662574190242,0.0950988,6.684138,0.217049,6137.40698692874,199.88913,7.09629938102644,0.49714726,185.074308836855,940.711132624031,30.451473,141.837,1.1425,5061.9,112.299,4.49667,0.0805666,0.859777987003326,0.0484824,0.028,0.0357771,0.846,0.0998598,50,2022-06-02,2022-06-02,2022-12-14 12:09:24,HAT-P-26 b,5632,1,False,False,True -119131709,5633.01,TIC 119131709.01,3,4,3,3,3,4,4,5.5,40.0,33.79,2,2,2,PC,PC,11.1586,0.006,,1,spoc-s50-b02,SPOC,13:59:00.96,-02:30:48.37,-14.942,0.066,11.117,0.058,2459673.539325,0.00277929,17.2837171955732,0.0037790418,3.81048337740667,0.3494208,3.000441,0.247242,2759.69318133246,227.69276,6.41000445007402,1.2114325,75.9893459315435,753.022453585781,10.650741,265.924,2.761,5600.0,120.785,4.26703,0.082082,1.21153998374939,0.0615075,,,0.99,0.127955,50,2022-06-02,2022-06-02,2023-04-16 00:00:00,period could be half (~8.64 d),5633,1,False,False,True -119585136,5634.01,,3,4,4,3,1,4,4,27.0,79.8,67.24,7,0,0,PC,PC,14.9839,0.008,,1,qlp-s49-faintsearch,QLP,11:42:34.47,20:57:55.05,-61.148,0.121,-25.733,0.13,2459663.422584,0.0042523,2.2054776,0.0007857,1.633,0.285,31.147146,0.159443,28280.0,146.842,9.6722,0.790385,64.0804,788.0,10.0,306.144,9.566,3770.0,157.0,4.71,0.01,0.53,0.02,,,0.523612,0.0232803,49,2022-06-02,2022-06-02,2023-02-01 00:00:00,found in faint-star QLP search,5634,1,False,False,False -233173039,5635.01,,3,4,3,3,2,4,4,1.5,20.8,24.65,1,0,1,PC,PC,12.899,0.006,,1,qlp-s49-faintsearch,QLP,14:24:49.55,66:42:02.7,2.442,0.026,9.376,0.027,2459645.513474,0.0067728,25.0577354,0.0003264,4.741,0.643,3.806742,0.008299,3500.0,7.64394,5.30323,0.364701,32.4574,664.0,14.0,488.879,3.4495,5954.0,124.6,4.59,0.08,0.87,0.04,,,1.09,0.136781,"14,16,21,22,41,48,49",2022-06-02,2022-06-02,2023-06-16 00:00:00,found in faint-star QLP search,5635,1,False,False,False -105616091,5636.01,,3,4,4,3,2,4,4,7.1,49.4,15.23,3,2,2,PC,PC,11.3476,0.006,,1,qlp-s49-faintsearch,QLP,13:18:55.39,34:15:14.68,-62.989,0.038,24.816,0.039,2459658.577043,0.0027251,4.2744435,3.06e-05,1.958,0.309,2.130131,0.005087,1960.0,4.68486,4.01981,0.310989,132.963,946.0,12.0,207.621,1.1865,5405.0,127.7,4.5,0.08,0.9,0.05,,,0.94,0.118408,"23,49",2022-06-02,2022-06-02,2023-06-07 00:00:00,found in faint-star QLP search,5636,1,False,False,False -136992839,5637.01,,3,4,3,3,4,4,4,2.5,18.9,27.46,0,2,3,PC,PC,11.9229,0.006,,1,qlp-s49-faintsearch,QLP,12:52:04.67,47:39:25.69,-21.165,0.031,12.779,0.034,2459629.323433,0.0080591,17.7916498,0.0002092,6.405,0.676,1.684197,0.003344,1550.0,3.07977,5.67639,0.39995,111.663,905.0,10.0,489.497,6.139,5803.0,129.2,4.14,0.08,1.43,0.07,,,1.04,0.123648,"15,16,22,49",2022-06-02,2022-06-02,2023-06-16 00:00:00,found in faint-star QLP search,5637,1,False,False,False -154258295,5638.01,,2,4,2,2,2,4,4,5.6,37.5,8.12,2,2,3,PC,PC,11.2836,0.006,,1,qlp-s49-faintsearch,QLP,14:00:44.58,53:07:23.24,10.446,0.033,-29.507,0.034,2459662.847938,0.0055127,1.0034686,8e-06,1.56,0.301,0.651637,0.002345,600.0,2.16003,2.77075,0.222504,1913.7,1842.0,10.0,276.04,1.733,5601.2,99.6,4.3,0.07,1.16,0.05,0.339192,0.0204228,0.99,0.124811,"15,22,23,49",2022-06-02,2022-06-02,2022-12-14 12:09:24,found in faint-star QLP search,5638,1,False,False,True -166054851,5639.01,,2,4,2,2,2,4,4,3.3,26.5,8.31,2,0,1,PC,PC,12.5811,0.006,,1,qlp-s49-faintsearch,QLP,14:12:03.85,61:21:15.32,-9.413,0.034,-9.765,0.032,2459658.16387,0.0053208,3.3957241,2.7e-05,3.226,0.442,1.488478,0.00273,1370.0,2.51454,2.79896,0.265733,282.135,1141.0,12.0,211.145,0.9235,4479.0,125.4,4.51,0.1,0.77,0.06,,,0.703,0.0808444,"15,16,21,23,48,49",2022-06-02,2022-06-02,2023-06-16 00:00:00,found in faint-star QLP search,5639,1,False,False,False -373729723,5640.01,,5,5,5,5,5,5,5,47.2,108.3,317.0,0,10,0,PC,FP,12.0633,0.007,,1,qlp-s49-faintsearch,QLP,12:53:37.67,24:22:23.75,-42.231,0.218,8.787,0.156,2459645.758477,0.0003689,13.0518467,1.2e-05,3.333,0.044,43.27062,0.002388,39070.0,2.19936,17.0183,1.04536,25.631,626.0,148.0,257.567,9.587,5268.9,102.2,4.55,0.08,0.83,0.05,0.2775,0.0205061,0.9,0.116516,"23,49",2022-06-02,2022-06-02,2023-02-11 12:02:42,found in faint-star QLP search,5640,1,False,False,False -141202786,5641.01,,3,4,4,3,1,4,4,23.2,86.5,45.18,6,0,0,PC,PC,14.5044,0.008,,1,qlp-s49-faintsearch,QLP,12:03:38.2,42:32:14.27,-46.3,2.0,-77.74,2.0,2459663.478353,0.003332,2.1808015,0.0005446,1.343,0.212,26.14187,0.088755,23790.0,81.7434,7.66626,0.581993,29.151,647.0,11.0,215.996,,3379.0,157.0,4.76,0.01,0.48,0.02,,,0.473933,0.0258296,49,2022-06-02,2022-06-02,2023-03-17 00:00:00,found in faint-star QLP search,5641,1,False,False,False -160521907,5642.01,,3,4,3,3,1,4,4,8.0,28.6,92.22,1,0,0,PC,PC,12.9947,0.008,,1,qlp-s52-tois,QLP,16:02:30.1,76:34:11.26,-0.578,0.024,-4.087,0.021,2459752.672435,0.0025223,10.2682326,4.2e-05,1.469,0.45,4.76597,0.021798,4380.0,20.0763,11.589,0.960619,29.6484,650.0,15.0,1004.08,11.793,6181.0,125.0,4.08,0.08,1.64,0.07,,,1.18,0.159408,"14,15,16,19,20,21,22,25,26,40,41,47,48,49,52",2022-06-02,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,5642,1,False,False,False -284592754,5643.01,,3,4,3,3,1,4,4,8.1,53.2,64.87,1,2,0,PC,APC,12.3255,0.007,,1,qlp-s49-faintsearch,QLP,12:24:18.78,44:13:53.65,-41.357,0.032,11.212,0.037,2459644.889804,0.0021831,17.1101127,0.0032404,2.631,0.243,9.333908,0.009199,8560.0,8.47233,9.37745,0.546688,17.8387,572.0,17.0,409.36,5.171,5834.7,116.5,4.47,0.07,0.99,0.05,-0.55892,0.00983152,1.05,0.133571,49,2022-06-02,2022-06-02,2022-12-14 12:09:24,found in faint-star QLP search; period may be half,5643,1,False,False,False -441658213,5644.01,,3,4,3,3,1,4,4,15.0,76.1,42.62,1,2,0,PC,PC,11.9816,0.007,,1,qlp-s49-faintsearch,QLP,14:00:28.62,55:18:56.12,28.385,0.181,-58.522,0.158,2459660.036393,0.0015364,6.640285,1.43e-05,1.257,0.295,6.206401,0.009197,5700.0,8.47036,7.34873,0.523529,26.3908,631.0,29.0,256.116,7.8085,5035.9,106.6,4.51,0.08,0.87,0.05,0.0591925,0.0374694,0.9,0.111244,"15,16,22,23,49",2022-06-02,2022-06-02,2022-12-14 12:09:24,found in faint-star QLP search,5644,1,False,False,False -156377968,5645.01,,3,4,3,3,1,4,4,9.3,39.0,40.25,0,0,0,PC,PC,12.4054,0.007,,1,qlp-s49-faintsearch,QLP,11:48:51,35:32:51.03,-35.181,0.063,-14.434,0.073,2459659.856199,0.0052734,4.5362433,5.12e-05,2.936,0.426,3.686899,0.011474,3390.0,10.5682,7.12776,0.547531,305.034,1164.0,10.0,473.18,8.783,5620.5,103.5,4.28,0.07,1.21,0.06,0.131,0.032,1.0,0.123627,"22,49",2022-06-02,2022-06-02,2022-12-14 12:09:24,found in faint-star QLP search,5645,1,False,False,False -366804698,5646.01,,3,4,3,3,3,4,4,10.4,40.4,30.75,0,2,2,PC,PC,10.8829,0.007,,1,qlp-s50-faintsearch,QLP,13:13:47.31,05:42:07.67,-15.945,0.081,-0.784,0.05,2459687.382078,0.0032793,2.4277208,2.25e-05,3.158,0.402,1.075411,0.001698,990.0,1.56355,6.0694,0.424596,1747.74,1801.0,16.0,429.221,9.6365,5999.3,133.6,3.91,0.08,1.93,0.11,0.281,0.017,1.11,0.141649,"23,46,50",2022-06-02,2022-06-02,2023-04-16 00:00:00,found in faint-star QLP search,5646,1,False,False,False -67743054,5647.01,,3,4,4,3,2,4,4,28.6,99.6,80.83,6,3,1,PC,PC,12.1436,0.007,,1,qlp-s51-tois,QLP,15:02:10.71,31:58:02.46,-6.576,0.028,-1.612,0.037,2459713.269594,0.0009162,4.0134273,7.4e-06,1.445,0.098,11.438559,0.007433,10480.0,6.84617,10.7003,0.663017,101.875,885.0,33.0,415.29,4.5255,5935.2,145.6,4.42,0.08,1.06,0.06,0.106,0.0126691,1.08,0.138848,"24,50,51",2022-06-02,2022-09-02,2023-06-20 00:00:00,found in faint-star QLP search,5647,1,False,False,False -23863106,5648.01,,5,5,5,5,5,5,5,34.1,124.5,69.4,1,0,0,O,FP,13.8994,0.007,,1,qlp-s50-faintsearch,QLP,14:04:02.3,38:37:12.88,-44.646,0.036,14.535,0.049,2459685.753789,0.0018991,3.3078803,0.0006629,1.508,0.194,36.343995,0.062571,32920.0,57.6281,9.74504,0.518787,19.3914,584.0,19.0,163.236,0.971,3571.0,157.0,4.73,0.01,0.51,0.02,,,0.510037,0.0204373,50,2022-06-02,2022-07-07,2022-12-14 12:09:24,found in faint-star QLP search; retired as TFOP FA; actual source of signal is TIC 23863106 and released as TOI 5671.01,5648,1,False,False,False -392319808,5649.01,,3,4,3,3,2,4,4,31.1,32.6,317.0,2,0,2,PC,PC,12.4399,0.007,,1,qlp-s50-faintsearch,QLP,15:00:19.24,39:27:04.72,-7.78,0.03,-13.946,0.038,2459681.976922,0.0033064,4.7518771,2.43e-05,2.459,0.572,9.454377,0.019771,8670.0,18.2099,15.1227,1.0982,262.123,1120.0,23.0,649.889,10.5235,5676.0,127.2,4.05,0.08,1.57,0.08,,,1.01,0.12233,"23,24,50",2022-06-02,2022-06-02,2023-06-20 00:00:00,found in faint-star QLP search,5649,1,False,False,False -353807936,5650.01,,3,4,3,3,1,4,4,1.3,16.0,28.86,0,2,0,PC,PC,12.469,0.007,,1,qlp-s52-tois,QLP,18:00:51.97,56:41:09.62,-3.464,0.04,-18.585,0.038,2459853.128755,0.0063663856,34.2825595,0.0002124,6.989,0.494,2.761278,0.002225,2540.0,2.04962,5.84592,0.336964,41.8997,708.0,20.0,568.466,6.8875,6145.0,128.8,4.36,0.08,1.19,0.06,,,1.17,0.157047,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51,52,56,57,58,59,60",2022-06-02,2023-05-19,2023-06-16 12:14:51,found in faint-star QLP search,5650,1,False,False,False -256326844,5651.01,,3,4,3,3,2,4,4,3.2,14.9,38.46,1,2,2,PC,PC,12.3879,0.007,,1,qlp-s57-tois,QLP,19:53:52.01,60:04:09.01,-5.754,0.048,-10.679,0.048,2459860.750256,0.0047489,10.6893108,8.43e-05,6.883,0.993,1.465647,0.093442,1349.0,86.0593,6.90838,0.456864,378.489,1228.0,15.0,817.484,16.2905,5887.0,124.8,3.9,0.08,1.93,0.1,,,1.07,0.135755,"14,15,16,17,24,41,47,50,54,55,56,57",2022-06-02,2023-05-01,2023-07-07 00:00:00,found in faint-star QLP search,5651,1,False,False,False -232628532,5652.01,,3,4,3,3,1,4,4,3.0,16.4,57.73,0,0,0,PC,PC,13.1125,0.007,,1,qlp-s52-tois,QLP,17:55:57.07,57:18:20.53,4.948,0.029,-18.824,0.039,2459839.287079,0.005999101,18.2598774,0.000126,6.544,0.505,3.414575,0.002685,3140.0,2.47265,8.80539,,135.04,949.0,15.0,1038.26,16.395,6230.0,122.0,4.12,,1.59,,,,1.2,,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51,52,56,57,58,59,60",2022-06-02,2023-05-19,2023-05-19 00:00:00,found in faint-star QLP search,5652,1,False,False,False -298729646,5653.01,,3,4,3,3,1,4,4,2.0,17.0,16.22,1,0,0,PC,PC,12.8625,0.008,,1,qlp-s50-faintsearch,QLP,18:33:33.57,57:51:37.85,5.196,0.031,5.742,0.035,2459708.153898,0.0059324,7.4992916,6.53e-05,3.724,0.559,1.60808,0.003142,1480.0,2.89396,4.15964,0.274962,250.294,1108.0,10.0,593.733,5.1195,6038.0,127.2,4.43,0.08,1.07,0.05,,,1.12,0.146261,"14,15,16,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50",2022-06-02,2022-06-02,2022-12-14 12:09:24,found in faint-star QLP search,5653,1,False,False,False -233465389,5654.01,,3,4,3,3,2,4,4,10.2,51.3,25.99,1,2,2,PC,PC,11.4459,0.006,,1,qlp-s51-tois,QLP,15:23:41.49,37:29:11.9,-32.077,0.027,-3.976,0.043,2459713.011926,0.0018459,4.2528141,2.13e-05,1.67,0.212,2.598015,0.003918,2390.0,3.60859,5.49054,0.343671,89.1065,855.0,18.0,253.021,1.3405,5318.4,103.3,4.33,0.07,1.09,0.05,0.291322,0.0124664,0.92,0.109525,"24,50,51",2022-06-02,2022-09-02,2023-06-07 00:00:00,found in faint-star QLP search,5654,1,False,False,False -282940781,5655.01,TIC 282940781.01,2,4,2,2,2,4,4,0.6,26.3,5.81,0,2,3,PC,PC,10.686,0.006,,1,qlp-s50-faintsearch,QLP,15:17:02.3,61:00:30.96,-61.448,0.053,105.958,0.061,2459663.533882,0.0049738,29.120986,0.0002411,3.98,0.502,1.03194,0.002108,950.0,1.9412,2.28524,0.228725,4.59168,407.0,11.0,71.811,0.14,4248.0,120.6,4.56,0.11,0.71,0.06,,,0.66,0.0806886,"15,16,22,23,48,49,50",2022-06-02,2022-06-02,2022-12-14 12:09:24,found in faint-star QLP search,5655,1,False,False,True -458458156,5656.01,,3,4,4,3,2,4,4,10.3,49.8,26.06,2,0,1,PC,PC,12.3503,0.007,,1,qlp-s50-faintsearch,QLP,13:58:38.84,14:07:46.49,11.019,0.085,-56.715,0.111,2459685.802056,0.0031937,3.2487833,2.15e-05,1.626,0.352,3.381901,0.015242,3110.0,14.0387,5.49487,0.508787,140.707,959.0,11.0,302.304,5.947,5149.0,127.6,4.46,0.09,0.91,0.06,,,0.87,0.109304,"23,50",2022-06-02,2022-06-02,2023-06-05 00:00:00,found in faint-star QLP search,5656,1,False,False,False -441736986,5657.01,,3,4,3,3,2,4,4,34.9,104.2,32.83,1,0,2,PC,PC,13.441,0.007,,1,qlp-s52-tois,QLP,17:15:20.89,76:28:08.36,13.582,0.033,-3.657,0.035,2459825.659468,0.00035193132,0.8037513,9e-07,0.912,0.156,8.589489,0.014635,7880.0,13.4789,6.33045,,496.763,1315.0,40.0,292.429,1.5605,4708.0,123.0,4.69,,0.65,,,,0.753,,"14,15,16,17,18,19,21,22,23,24,25,40,41,47,48,49,50,51,52,56,57,58,59,60",2022-06-02,2023-05-19,2023-05-19 00:00:00,found in faint-star QLP search,5657,1,False,False,False -119178132,5658.01,,3,4,4,3,1,4,4,53.5,106.5,94.77,4,0,0,PC,PC,14.5486,0.007,,1,qlp-s50-faintsearch,QLP,14:03:06.05,-01:28:49.02,-38.91,0.113,-10.185,0.108,2459689.095962,0.002297,1.6064494,0.0003439,0.946,0.318,29.695582,0.625232,26980.0,575.694,11.7098,1.71206,30.0257,652.0,12.0,295.008,5.714,3507.0,157.0,4.62,0.01,0.63,0.02,,,0.613865,0.0212398,50,2022-06-02,2022-06-02,2023-04-03 00:00:00,found in faint-star QLP search,5658,1,False,False,False -207491214,5659.01,,3,4,3,3,1,4,4,24.6,32.5,317.0,1,0,0,PC,PC,13.0445,0.007,,1,qlp-s52-tois,QLP,16:25:15.72,57:33:44.69,12.576,0.03,-22.461,0.032,2459911.312652,0.003879847,6.2230846,1e-05,4.405,0.093,13.514316,0.001489,12370.0,1.37111,16.4857,,347.18,1202.0,63.0,803.472,10.7605,5845.3,117.7,4.14,,1.44,,-0.557,0.111,1.05,,"15,16,17,19,22,23,24,25,49,50,51,52,58,59",2022-06-02,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,5659,1,False,False,False -311116297,5660.01,,3,4,3,3,1,4,4,18.4,50.8,91.18,3,0,0,PC,PC,13.419,0.007,,1,qlp-s51-tois,QLP,14:44:59.7,18:30:33.08,-20.189,0.043,2.626,0.055,2459710.421834,0.0043604,4.8183501,0.0008466,1.816,0.254,11.31787,0.028748,10370.0,26.4772,11.5419,,69.6374,804.0,12.0,622.41,11.9255,5192.0,122.0,4.26,,1.15,,,,0.88,,"50,51",2022-06-02,2022-09-02,2022-12-14 12:09:24,found in faint-star QLP search,5660,1,False,False,False -349312122,5661.01,,3,4,3,3,1,4,4,44.5,126.9,97.51,1,0,0,PC,PC,12.958,0.007,,1,qlp-s51-tois,QLP,14:49:28.46,20:36:55.21,-0.251,0.036,-8.196,0.044,2459715.238616,0.0013547,2.8329023,0.0001264,2.029,0.094,20.418056,0.01005,18630.0,9.25673,11.996,0.758295,260.223,1118.0,40.0,414.658,3.8045,5447.5,133.6,4.56,0.08,0.85,0.05,0.125,0.088,0.95,0.117221,"50,51",2022-06-02,2022-09-02,2022-12-14 12:09:24,found in faint-star QLP search,5661,1,False,False,False -422217860,5662.01,,1,4,4,1,4,4,4,7.4,53.3,7.87,1,0,3,PC,PC,11.8706,0.007,,1,qlp-s50-faintsearch,QLP,12:44:20.44,05:41:18.59,-100.373,0.105,14.698,0.053,2459689.673073,0.0029698,2.3144207,1.77e-05,1.402,0.244,1.869074,0.005595,1720.0,5.15303,2.71343,0.175126,49.7933,740.0,12.0,88.7485,0.39205,3687.0,157.0,4.63,0.01,0.62,0.02,,,0.605246,0.0203519,"23,46,50",2022-06-02,2022-06-02,2023-05-27 00:00:00,found in faint-star QLP search,5662,1,False,False,True -198161914,5663.01,,3,4,3,3,2,4,4,1.4,26.3,48.66,2,0,1,PC,PC,13.2643,0.006,,1,qlp-s52-tois,QLP,16:15:26.84,64:35:19.43,-4.135,0.03,30.506,0.029,2459870.094224,0.0024418181,45.0854117,0.0001884,1.646,0.435,8.578545,0.036578,7870.0,33.6894,7.92062,,0.746125,258.0,10.0,383.712,2.251,5013.0,122.0,4.55,,0.8,,,,0.83,,"15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51,52,57,58,59,60",2022-06-02,2023-05-19,2023-07-07 00:00:00,found in faint-star QLP search,5663,1,False,False,False -158022899,5664.01,,3,4,3,3,2,4,4,12.8,35.5,71.71,0,0,1,PC,PC,12.5757,0.007,,1,qlp-s50-faintsearch,QLP,14:41:24.91,28:11:42.5,-10.86,0.039,-6.643,0.045,2459687.461371,0.0065657,3.8863969,4.72e-05,3.906,0.911,3.632428,0.016195,3340.0,14.9164,9.97164,0.910146,726.387,1446.0,12.0,701.942,10.8585,5436.0,121.1,3.95,0.08,1.71,0.09,,,0.95,0.117553,"24,50",2022-06-02,2022-06-02,2023-07-04 00:00:00,found in faint-star QLP search,5664,1,False,False,False -274223601,5665.01,,3,4,3,3,1,4,4,15.7,35.9,117.93,4,0,0,PC,PC,13.3931,0.007,,1,qlp-s52-tois,QLP,16:40:00.11,53:47:28.91,0.384,0.028,3.281,0.036,2459912.436846,0.0039795963,2.2465076,9.3e-06,4.181,0.278,4.72235,0.002637,4340.0,2.42848,13.3584,,3229.79,2100.0,19.0,1443.94,32.14,6064.0,122.0,3.88,,2.03,,,,1.13,,"16,17,23,24,25,50,51,52,59",2022-06-02,2023-03-16,2023-03-24 12:12:10,found in faint-star QLP search,5665,1,False,False,False -235684964,5666.01,,3,4,3,3,1,4,4,27.1,31.6,317.0,1,0,0,PC,PC,13.0994,0.009,,1,qlp-s52-tois,QLP,19:13:10.83,76:07:22.16,-6.603,0.03,2.042,0.053,2459827.478708,0.001209041,5.468394,5.9e-06,2.809,0.084,12.382591,0.001869,11340.0,1.7217,16.445,,147.869,971.0,75.0,777.763,12.8835,5526.0,122.0,4.06,,1.51,,,,0.97,,"14,15,16,17,18,19,20,21,22,23,24,40,41,47,48,49,50,51,52,56,57,58,59,60",2022-06-02,2023-05-19,2023-05-19 00:00:00,found in faint-star QLP search,5666,1,False,False,False -28242530,5667.01,,3,4,3,3,1,4,4,10.9,67.0,123.0,0,0,0,PC,PC,13.3272,0.007,,1,qlp-s50-faintsearch,QLP,14:51:29.38,40:02:09.44,-0.738,0.023,-40.237,0.028,2459675.883062,0.0035523,19.511064,0.0001082,3.25,0.589,28.056533,0.045656,25510.0,42.0494,13.6915,,13.0704,529.0,25.0,390.189,2.737,4951.8,63.3,4.52,,0.82,,-0.0685801,0.0609661,0.82,,"23,24,50",2022-06-02,2022-06-02,2022-12-14 12:09:24,found in faint-star QLP search,5667,1,False,False,False -357347296,5668.01,,3,4,3,3,4,4,4,5.5,30.9,15.63,1,2,4,PC,PC,10.8833,0.006,,1,qlp-s50-faintsearch,QLP,13:24:21.12,28:34:03.75,-35.317,0.329,-14.992,0.247,2459685.023774,0.0118423,4.1753448,7.45e-05,3.941,0.589,0.879803,0.00253,810.0,2.33036,4.07823,0.357216,689.452,1427.0,10.0,295.293,11.2745,5686.0,122.9,4.12,0.08,1.45,0.09,,,1.012,0.124512,"23,50",2022-06-02,2022-06-02,2023-06-20 00:00:00,found in faint-star QLP search,5668,1,False,False,False -162577468,5669.01,,3,4,3,3,3,4,4,20.8,52.9,99.52,0,10,1,PC,PC,12.1196,0.006,,1,qlp-s50-faintsearch,QLP,16:15:44.38,48:19:23.74,-12.527,0.043,15.193,0.042,2459710.833713,0.0015774,3.676651,1.03e-05,3.663,0.17,4.656924,0.001143,4280.0,1.05232,12.1328,0.628712,792.672,1478.0,36.0,700.55,10.8615,5900.0,122.4,3.94,0.08,1.83,0.09,,,1.07,0.13664,"23,24,25,50",2022-07-07,2022-07-07,2023-04-03 00:00:00,found in faint-star QLP search; correct source of TOI-4067.01,5669,1,False,False,False -860207014,5670.01,,3,4,3,3,1,4,4,,,317.0,1,0,0,PC,PC,10.3918,0.013,,1,qlp-s36-860207014,SPOC/QLP,09:27:17.64,-50:21:23.96,-27.075,0.054,19.364,0.059,2460001.144357,0.1620866,14.616858,0.0064669,9.085,0.338,9.944056,0.001925,9117.0,1.77267,15.3936,2.86951,428.306,1267.0,10.0,347.621,3.8995,6488.0,608.5,,,1.66,0.31,,,1.21,0.186475,"35,36",2022-07-07,2023-04-13,2023-04-13 00:00:00,correct source of ~14.6 day signal on TIC 296863792 (a phantom star),5670,1,False,False,True -23863105,5671.01,,3,4,4,3,2,4,4,41.6,156.3,97.15,4,0,2,PC,PC,14.8084,0.007,,1,qlp-s50-23863105,QLP,14:04:02.21,38:37:05.99,-44.644,0.053,15.083,0.072,2459685.753346,0.0018235,3.3079817,0.0006559,1.666,0.182,91.9239,0.153833,81180.0,141.675,11.9758,0.649172,15.6016,553.0,21.0,167.245,1.488,3380.0,157.0,4.82,,0.41,0.01,,,0.400962,0.0205648,50,2022-07-07,2022-07-07,2023-06-20 00:00:00,correct source of signal previously released on TIC 23863106 as TOI 5648,5671,1,False,False,False -461239485,5672.01,,5,5,5,5,5,5,5,72.0,215.9,83.52,0,0,0,KP,KP,11.4063,0.006,,1,spoc-s51-b02,SPOC,14:51:04.16,05:56:50.51,-28.621,0.065,-2.758,0.067,2459693.716285,0.0010445581,3.03908506593102,0.00022816994,1.64550758759816,0.054360945,13.478651,0.421221,12337.5570731928,387.88367,10.9147317103807,0.60455334,336.038388702463,1091.98575488121,31.328146,199.173,1.4405,5316.0,104.7,4.52626,0.0747204,0.864673018455505,0.0424071,0.3,0.03,0.916,0.110656,51,2022-07-07,2022-07-07,2022-12-14 12:09:24,HAT-P-27 b,5672,1,False,False,True -175772482,5673.01,,5,5,5,5,5,5,5,52.1,142.7,110.97,0,0,0,KP,KP,12.2688,0.009,,1,spoc-s51-b02,SPOC,14:55:16.79,-02:03:27.67,-27.064,0.065,-4.687,0.063,2459695.204858,0.0013459119,2.83862150637352,0.0002980548,2.33264701668645,0.09237583,16.707186,0.692456,15270.0987847929,637.57184,12.9007751451045,0.79183584,702.385032457245,1312.99647957855,19.525824,398.276,5.7385,5878.0,132.908,4.4413,0.0814645,1.02573001384735,0.0489799,,,1.06,0.1417,51,2022-07-07,2022-07-07,2022-12-14 12:09:24,WASP-57 b,5673,1,False,False,True -368805700,5674.01,,5,5,5,5,5,5,5,51.6,141.7,119.98,0,0,0,KP,KP,12.1159,0.006,,1,spoc-s51-b02,SPOC,14:47:46.53,01:03:54.08,-28.082,0.069,18.018,0.062,2459695.989749,0.0010424973,3.57718908979436,0.00028323825,3.06699782470339,0.07727827,17.158556,0.529098,15679.392124228,487.19873,13.5073505793349,0.71603334,545.333757460143,1232.4955081603,20.421024,392.791,7.674,5849.09,103.81,4.40819,0.0739753,1.06358003616333,0.0492513,-0.284,0.013,1.056,0.133294,51,2022-07-07,2022-07-07,2022-12-14 12:09:24,WASP-37 b,5674,1,False,False,True -181949561,5675.01,,5,5,5,5,5,5,5,98.6,115.5,317.0,0,0,0,KP,KP,11.3763,0.006,,1,spoc-s51-b02,SPOC,14:29:18.4,-03:26:40.2,-19.053,0.06,0.345,0.055,2459694.285977,0.0008036386,4.05486954695085,0.00022036895,2.80634087203229,0.041106444,25.445072,0.271208,23163.2926161412,249.76082,15.5446863596946,1.0187697,316.312022669693,1075.5947515626,60.40377,213.982,1.7455,5326.6,138.967,4.38933,0.0861962,1.01341998577118,0.0651257,-0.03,0.1,0.918,0.112607,51,2022-07-07,2022-07-07,2022-12-14 12:09:24,WASP-39 b,5675,1,False,False,True -311133118,5676.01,,5,5,5,5,5,5,5,149.8,432.5,110.34,0,0,0,KP,KP,10.5319,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,14:48:50.42,22:09:09.41,-51.908,0.067,16.02,0.096,2459701.925342,0.0004041286,3.50616494167509,3.847073e-05,1.60096579914222,0.020450115,20.14088,0.303077,18379.4360483842,279.10486,12.8576195346742,1.1121958,174.901538267731,927.509052123205,108.076965,100.848,0.462,4906.0,128.638,4.56858,0.0875436,0.771085977554321,0.0519598,,,0.803,0.0930625,"50,51",2022-07-07,2023-03-15,2023-03-24 12:12:10,Qatar-6 b,5676,1,False,False,True -287959034,5677.01,TIC 287959034.01,3,5,5,3,1,4,4,66.1,253.8,62.48,0,2,0,PC,APC,9.50835,0.006,,1,spoc-s51-b02,SPOC,14:25:44.25,-03:00:09.94,-109.862,0.104,-10.177,0.124,2459694.827263,0.001662208,3.84801847621505,0.0007963855,1.10830390125483,0.09528519,3.257607,0.27877,2995.87038495908,256.72372,9.20229897026687,8.399746,637.243598949395,1281.43363751582,11.480389,137.2,1.126,6153.0,143.117,4.401,0.0877073,1.12835001945496,0.0540578,,,1.169,0.169274,51,2022-07-07,2022-07-07,2023-02-02 12:02:49,V-shaped,5677,1,False,False,True -209464063,5678.01,TIC 209464063.01,3,5,5,3,4,4,4,0.5,28.6,23.11,0,0,1,PC,CP,10.6691,0.006,,1,qlp-s31-209464063,CTOI,03:09:32.2,-34:11:54.53,-5.565,0.032,-89.146,0.038,2459140.665271,0.0039163,119.3355264,0.0067392,6.863,1.522,2.608899,0.004089,2400.0,3.76642,5.11487,0.335164,3.83692,389.0,9.0,165.393,0.7005,5516.0,130.7,4.48,0.08,0.94,0.05,,,0.97,0.130808,"4,30,31",2022-07-14,2022-07-14,2023-06-08 12:02:55,CTOI from Nora Eisner; transit close to data gap,5678,1,False,False,True -143257768,5679.01,TIC 143257768.01,3,4,4,3,1,4,4,133.9,159.7,317.0,4,0,0,PC,PC,11.2016,0.006,,1,qlp-s27-143257768,CTOI,19:33:33.54,-45:53:29.88,11.667,0.131,3.895,0.057,2459058.716872,0.0007009,1.6622263,4.4e-06,3.415,0.092,13.72321,0.001796,12560.0,1.65405,18.8693,1.03782,3599.67,2157.0,90.0,420.716,10.5775,6152.0,131.4,4.09,0.09,1.61,0.09,,,1.17,0.16819,"13,27",2022-07-14,2022-07-14,2022-12-14 12:09:24,actual source of signal formerly released as TIC 143257766 / TOI 1120,5679,1,False,False,True -368739874,5680.01,,3,5,5,3,4,4,4,50.9,149.1,106.52,0,0,0,PC,CP,12.9463,0.008,,1,qlp-s51-faintsearch,QLP,14:44:13.98,05:36:19.34,13.65,0.041,-4.688,0.042,2459714.264611,0.0086829,3.3575477,0.002457,1.788,0.152,28.870173,0.036088,26240.0,33.2381,12.6518,0.903055,101.253,883.0,20.0,306.779,2.5795,5013.0,122.8,4.61,0.09,0.75,0.05,,,0.83,0.0994439,51,2022-07-14,2022-07-14,2023-03-03 12:02:53,found in faint-star QLP search,5680,1,False,False,True -207439380,5681.01,,3,5,5,3,1,4,4,67.3,148.4,80.32,8,0,0,PC,APC,12.8086,0.006,,1,qlp-s52-tois,QLP,16:19:07.36,55:55:30.87,-11.22,0.075,15.334,0.078,2459743.020121,0.0008941,1.1041295,2.5e-06,1.18,0.331,13.701219,0.122856,12540.0,113.148,10.6327,1.24562,652.193,1407.0,30.0,336.074,3.7405,4974.0,126.4,4.46,0.09,0.88,0.06,,,0.822,0.0998415,"16,17,22,23,24,25,49,50,51,52",2022-07-14,2022-10-04,2023-04-03 12:03:26,found in faint-star QLP search,5681,1,False,False,False -17538423,5682.01,,3,4,3,3,2,4,4,28.8,31.8,317.0,2,0,1,PC,PC,13.0266,0.007,,1,qlp-s51-faintsearch,QLP,16:13:15.91,34:19:55.38,4.778,0.018,-10.957,0.023,2459716.773324,0.0026508,3.1159994,1.3e-05,3.966,0.249,7.539411,0.004546,6920.0,4.18684,15.7497,,1419.36,1709.0,22.0,974.602,11.47,6098.0,20.5,4.09,,1.6,,-0.091,0.019,1.15,,"24,25,51",2022-07-14,2022-07-14,2023-06-07 00:00:00,found in faint-star QLP search,5682,1,False,False,False -155949264,5683.01,,3,4,4,3,1,4,4,171.8,110.4,317.0,3,0,0,PC,PC,14.812,0.008,,1,qlp-s51-faintsearch,QLP,15:26:02,44:49:28.7,4.539,2.178,-14.66,2.178,2459716.685508,0.0024444,0.7748443,5.56e-05,0.431,0.355,23.065451,3.072297,21020.0,2825.69,17.1413,4.41226,28.2246,642.0,12.0,,,3448.0,157.0,4.61,0.07,0.64,0.09,,,0.623063,0.0666956,"50,51",2022-07-14,2022-07-14,2023-03-17 00:00:00,found in faint-star QLP search,5683,1,False,False,False -32260988,5684.01,,3,4,4,3,1,4,4,163.7,152.5,317.0,3,0,0,PC,PC,12.4344,0.008,,1,qlp-s51-faintsearch,QLP,15:34:45.28,-09:20:40,-100.473,0.1,46.068,0.111,2459716.552601,0.0013143,1.1000285,0.0001028,1.561,0.073,32.041382,0.012182,29080.0,11.2203,16.0194,0.926576,1114.93,1609.0,26.0,340.9,6.4635,5644.0,124.9,4.53,0.08,0.9,0.05,,,1.0,0.130677,51,2022-07-14,2022-07-14,2022-12-14 12:09:24,found in faint-star QLP search; orbital period close to underlying stellar variability,5684,1,False,False,False -460396820,5685.01,,5,5,5,5,5,5,5,100.8,108.7,317.0,0,0,2,PC,KP,11.0062,0.007,,1,qlp-s51-faintsearch,QLP,15:08:51.72,02:20:35.83,-16.713,0.062,-8.702,0.065,2459714.654156,0.0016169,2.3409909,0.0003188,2.5,0.115,13.151596,0.00386,12040.0,3.55512,15.4992,0.732946,934.465,1540.0,25.0,322.114,4.438,6090.0,106.7,4.23,0.08,1.35,0.06,0.04,0.1,1.14,0.14548,51,2022-07-14,2022-07-14,2022-12-14 12:09:24,found in faint-star QLP search; WASP-24 b; NEB contaminating light curve,5685,1,False,False,True -255928426,5686.01,,3,4,3,3,2,4,4,53.4,60.9,317.0,3,2,2,PC,PC,12.012,0.006,,1,qlp-s52-tois,QLP,16:29:50.62,37:41:40.42,-20.319,0.037,14.156,0.044,2459738.845604,0.0005152,4.2366102,4e-06,3.559,0.063,16.177972,0.001501,14790.0,1.38262,15.6978,0.717382,351.913,1206.0,121.0,394.427,4.5105,5407.5,101.5,4.19,0.08,1.28,0.06,0.407276,0.0135407,0.94,0.124605,"24,25,51,52",2022-07-14,2022-10-04,2023-06-07 00:00:00,found in faint-star QLP search,5686,1,False,False,False -281100535,5687.01,,3,5,5,3,1,4,4,55.1,179.8,54.77,4,2,0,PC,APC,11.536,0.006,,1,qlp-s51-faintsearch,QLP,15:15:53.97,10:27:40.55,-21.094,0.123,10.197,0.193,2459716.984797,0.001754,2.924439,0.0003786,1.448,0.143,12.130037,0.013533,11110.0,12.4639,8.56554,0.586535,81.7751,837.0,23.0,153.891,1.9855,4803.0,102.5,4.56,0.08,0.77,0.05,-0.14,0.039,0.776,0.0877056,51,2022-07-14,2022-07-14,2023-06-07 12:02:58,found in faint-star QLP search,5687,1,False,False,False -193634953,5688.01,,3,4,4,3,2,4,4,26.5,84.6,64.57,5,0,2,PC,PC,14.2085,0.008,,1,qlp-s51-faintsearch,QLP,17:47:41.54,47:42:18.17,-0.8,0.075,65.114,0.085,2459750.623008,0.0019354,2.9479689,0.0002123,1.584,0.177,26.47558,0.038413,24090.0,35.3795,9.41494,0.472349,27.6969,639.0,19.0,226.318,1.988,3588.0,157.0,4.67,0.01,0.58,0.02,,,0.569725,0.0204108,51,2022-07-14,2022-07-14,2023-07-07 00:00:00,found in faint-star QLP search,5688,1,False,False,False -323250919,5689.01,,3,4,4,3,1,4,4,44.8,51.8,317.0,5,0,0,PC,PC,13.3173,0.008,,1,qlp-s51-faintsearch,QLP,16:05:15.93,07:23:44.14,3.16,0.038,2.466,0.035,2459713.34968,0.0023477,3.3299795,0.0007241,2.101,0.194,25.774907,0.030475,23460.0,28.0682,14.9891,,258.909,1117.0,16.0,591.975,9.2725,5794.0,122.0,4.5,,0.95,,,,1.04,,51,2022-07-14,2022-07-14,2023-05-09 00:00:00,found in faint-star QLP search,5689,1,False,False,False -115508409,5690.01,,3,4,3,3,1,4,4,14.8,21.4,317.0,1,0,0,PC,PC,12.6502,0.007,,1,qlp-s52-tois,QLP,16:53:20.96,44:06:34.35,-5.714,0.03,7.281,0.043,2459733.445085,0.0026883,10.4995545,4.5e-05,2.123,0.588,7.659681,0.025306,7030.0,23.3077,15.8295,1.20248,60.338,776.0,18.0,968.283,17.6965,6288.9,121.5,4.02,0.09,1.79,0.08,-0.218675,0.0487887,1.23,0.186792,"24,25,51,52",2022-07-14,2022-10-04,2022-12-14 12:09:24,found in faint-star QLP search,5690,1,False,False,False -17652022,5691.01,,3,4,3,3,2,4,4,9.1,42.9,31.74,0,0,2,PC,PC,12.6151,0.006,,1,qlp-s52-tois,QLP,16:19:23.24,32:09:58.03,-13.407,0.977,3.833,0.983,2459742.60535,0.0031343,3.3894889,1.84e-05,2.372,0.293,3.970187,0.005835,3650.0,5.37467,6.16071,,352.72,,16.0,483.682,,5657.3,,,,1.03,,0.0270318,0.0177409,,,"24,25,51,52",2022-07-14,2022-10-04,2023-06-07 00:00:00,found in faint-star QLP search,5691,1,False,False,False -37150278,5692.01,,3,4,3,3,1,4,4,76.0,162.7,104.44,5,0,0,PC,PC,12.5806,0.006,,1,qlp-s51-faintsearch,QLP,15:28:11.13,-10:33:18.97,-36.959,0.066,-10.179,0.069,2459717.172631,0.0045119,1.6929628,0.0005169,1.546,0.152,16.211033,0.021753,14820.0,20.0346,12.4331,0.895222,384.155,1233.0,15.0,306.397,4.192,5250.0,135.7,4.42,0.09,0.97,0.06,,,0.898,0.111506,51,2022-07-14,2022-07-14,2022-12-14 12:09:24,found in faint-star QLP search,5692,1,False,False,False -272519426,5693.01,,3,4,3,3,1,4,4,214.4,148.4,317.0,2,0,0,PC,PC,12.169,0.047,,1,qlp-s51-faintsearch,QLP,15:46:04.41,04:41:31.14,155.42,2.0,-221.64,2.0,2459712.634476,1.03e-05,2.8900249,1.1e-06,0.506,,28.55802,0.000789,25960.0,0.726589,,,8.93236,481.0,14.0,,,4305.3,474.4,,,,,,,0.24,0.02,51,2022-07-14,2022-07-14,2022-12-14 12:09:24,found in faint-star QLP search,5693,1,False,False,False -23638678,5694.01,,3,4,3,3,1,4,4,153.3,116.0,317.0,5,0,0,PC,PC,14.4753,0.008,,1,qlp-s51-faintsearch,QLP,14:27:19.43,-07:32:51.16,-33.74,0.126,-14.277,0.098,2459717.468321,0.0035962,1.1544795,0.0002586,0.817,0.15,57.040424,0.48228,51180.0,444.098,16.9317,1.54695,39.7301,699.0,11.0,276.652,5.2025,3543.0,157.0,4.63,0.01,0.62,0.02,,,0.607411,0.0212038,51,2022-07-14,2022-07-14,2022-12-14 12:09:24,found in faint-star QLP search,5694,1,False,False,False -103865797,5695.01,,3,4,3,3,1,4,4,55.4,216.4,63.94,3,0,0,PC,PC,14.2399,0.008,,1,qlp-s51-faintsearch,QLP,16:08:37.07,19:15:11.69,6.252,0.089,-29.901,0.084,2459740.631465,0.0017479,2.2232698,0.000159,0.648,0.236,34.97517,1.395851,31700.0,1284.8,9.36074,1.4427,5.11732,419.0,15.0,100.029,0.76205,3157.0,157.0,4.87,,0.36,0.01,,,0.344323,0.0203532,51,2022-07-14,2022-07-14,2022-12-14 12:09:24,found in faint-star QLP search,5695,1,False,False,False -393546540,5696.01,TIC 393546540.01,1,4,1,1,3,4,4,0.0,17.0,10.15,0,3,3,PC,PC,9.1352,0.006,,1,qlp-s46-393546540,QLP,10:44:37.66,06:20:00.51,58.782,0.086,-22.057,0.071,2457925.865418,1.03e-05,1637.265104,1e-06,5.981,,1.43738,0.000684,1323.0,0.629621,3.16626,0.182537,0.00684395,80.0,45.0,66.4522,0.2447,5271.0,115.3,4.56,0.08,0.83,0.04,,,0.9,0.108368,"45,46",2022-07-28,2022-07-28,2023-01-15 00:00:00,two transits; one in K2 and one in TESS,5696,1,True,False,True -393546540,5696.02,TIC 393546540.02,1,4,1,1,3,4,4,1.6,49.0,7.47,0,3,3,PC,PC,9.1352,0.006,,2,qlp-s46-393546540,QLP,10:44:37.66,06:20:00.51,58.782,0.086,-22.057,0.071,2459537.503376,0.0028273,32.4296139,5.72e-05,4.452,0.133,0.934135,0.000151,860.0,0.13875,2.64575,0.144115,10.0631,496.0,28.0,66.4522,0.2447,5271.0,115.3,4.56,0.08,0.83,0.04,,,0.9,0.108368,"45,46",2022-07-28,2022-07-28,2023-01-15 00:00:00,K2 candidate; possible multi,5696,2,True,False,True -416739490,5697.01,,2,4,2,2,3,4,4,2.7,37.2,5.89,0,2,3,PC,PC,10.8327,0.006,,1,spoc-s42-s46-b02,SPOC,03:35:37.72,10:50:34.49,-4.994,0.081,-7.197,0.056,2459452.934563,0.003898511,6.21829262902239,0.00057286053,2.22606375623301,0.7706159,0.921026,0.134434,847.936378674822,123.81072,2.29279099137481,2.9151103,120.919814994391,845.75411219713,7.550826,150.233,1.061,5554.41,111.856,4.64142,0.0747831,0.782913029193878,0.0387814,-0.109,0.019,0.979,0.121556,"42,43,44",2022-07-28,2022-07-28,2023-01-25 00:00:00,potential L1 planet; low SNR/MES,5697,1,False,False,True -264052454,5698.01,TIC 264052454.01,3,4,3,3,2,3,4,68.6,180.1,102.88,1,3,1,PC,PC,11.3529,0.006,,1,qlp-s58-tois,SPOC,20:30:13.92,79:40:02.9,20.622,0.033,25.667,0.038,2459907.39037,0.0004469,2.346931,1.3e-06,0.955,0.259,5.658376,0.657433,5198.0,605.335,9.2562,0.696346,302.08,1161.0,62.0,301.644,1.71,5901.0,149.312,4.34605,0.078021,1.15,0.06,,,1.072,0.136183,"17,18,19,20,24,25,26,40,52,53,58",2022-07-28,2023-07-06,2023-07-07 00:00:00,potential secondary; v-shaped; Rp may be too large due to large uncertainty,5698,1,False,False,True -224328450,5699.01,,3,4,3,3,2,4,4,12.2,58.0,82.22,1,2,1,PC,PC,10.4488,0.006,,1,qlp-s52-ffi,QLP,16:44:54.28,31:12:38.77,-8.687,0.036,-35.198,0.05,2459704.152351,0.0021163,22.0183297,0.0001135,3.628,0.788,3.588854,0.005884,3300.0,5.41914,10.8238,0.749249,41.8582,708.0,25.0,304.745,2.052,5901.0,143.5,3.99,0.08,1.74,0.1,0.019,0.009,1.072,0.131196,"25,51,52",2022-07-28,2022-07-28,2023-06-20 00:00:00,,5699,1,False,False,False -76193403,5700.01,,2,4,2,2,4,4,4,4.6,46.1,4.08,0,2,5,PC,PC,10.4557,0.006,,1,qlp-s52-ffi,QLP,18:14:04.73,39:20:00.9,-3.53,0.038,8.589,0.046,2459742.169976,0.003982,1.7812778,2.3e-05,2.261,0.463,0.586456,0.002232,540.0,2.05556,1.85549,0.163717,1063.79,1591.0,9.0,121.957,0.3175,5329.0,121.7,4.58,0.08,0.82,0.04,,,0.919,0.115673,"26,40,52",2022-07-28,2022-07-28,2023-07-04 00:00:00,low SNR; potential L1 candidate,5700,1,False,False,True -43276438,5701.01,,2,4,2,2,4,4,4,1.3,23.1,6.6,0,2,3,PC,PC,10.36,0.006,,1,qlp-s52-ffi,QLP,16:50:45.86,40:19:02.79,-17.098,0.038,9.365,0.049,2459742.996854,0.0093558,15.0766418,0.0002415,3.959,0.633,0.521278,0.002474,480.0,2.27854,2.44389,0.213093,76.7223,824.0,9.0,195.785,1.0395,6149.4,135.4,4.45,0.09,1.06,0.05,0.013,0.015,1.168,0.160042,"24,25,51,52",2022-07-28,2022-07-28,2023-06-20 00:00:00,potential L1 candidate,5701,1,False,False,True -141985686,5702.01,,3,4,3,3,3,4,4,8.5,51.1,15.81,0,2,1,PC,PC,9.83993,0.006,,1,qlp-s52-ffi,QLP,17:01:49.65,14:42:26.88,-17.019,0.041,-47.146,0.046,2459738.417473,0.0040117,3.1291319,3.82e-05,1.993,0.515,0.738552,0.004672,680.0,4.30352,4.10795,0.403543,516.613,1328.0,9.0,222.812,1.3525,6236.0,146.4,4.13,0.08,1.57,0.07,,,1.207,0.182031,"25,52",2022-07-28,2022-07-28,2023-04-03 00:00:00,low SNR; ambiguous difference image but no nearby ephemeris matches,5702,1,False,False,False -10792081,5703.01,,3,4,3,3,3,4,4,17.3,114.3,37.0,0,2,1,PC,PC,10.0223,0.006,,1,qlp-s59-ffi,QLP,01:56:47.62,65:46:12.85,62.845,0.038,-71.31,0.046,2459898.058002,0.0057699,10.169274,9.11e-05,5.569,1.802,1.042807,2.358292,960.0,2169.71,6.72921,2.03485,2486.89,1967.0,18.0,146.959,0.73,5856.0,140.9,4.45,0.08,1.01,0.05,,,1.058,0.136111,"18,24,25,52,58",2022-07-28,2023-02-03,2023-02-09 12:10:04,possible centroid offset to NW; slight depth aperture correlation,5703,1,False,False,False -148673433,5704.01,,1,4,1,1,3,4,4,10.4,78.7,11.16,1,2,2,PC,PC,10.6147,0.006,,1,spoc-s14-s50-b0H,SPOC,11:19:17.97,44:59:20.68,47.358,0.038,-15.646,0.07,2458901.78789,0.0011096762,3.7711066303438,1.1932759e-05,2.3375061149659,0.16431303,1.790414,0.117069,1647.67303135846,107.819115,3.34096412971077,0.44461805,125.06433293716,852.909825152139,11.196726,89.637,0.26945,4590.0,126.013,4.5426,0.0950234,0.757520973682404,0.059314,,,0.73,0.0845683,"22,48",2022-08-18,2022-08-18,2023-04-16 00:00:00,possible L1 planet; weak odd-even; two stars in pixel,5704,1,False,False,True -165625229,5705.01,,2,4,2,2,2,4,4,2.9,41.5,7.38,0,2,1,PC,PC,9.77081,0.006,,1,spoc-s14-s50-b0H,SPOC,15:11:08.57,55:56:05.17,-43.236,0.134,19.049,0.094,2458743.24955,0.0016035825,10.6000083419314,3.8587983e-05,3.21273766289639,0.44427264,0.750803,0.080135,691.276278849886,73.80395,2.62043806425168,1.2727169,111.359162242303,828.516645882313,8.678792,128.329,1.0585,5888.0,123.7,4.48,0.08,0.982172012329102,0.0476382,,,1.068,0.139892,"16,22,23,24,49,50",2022-08-18,2022-08-18,2023-07-04 00:00:00,potential SV due to fluctuations in the phase curve,5705,1,False,False,True -137843225,5706.01,,1,4,3,1,1,4,4,28.4,101.8,11.53,4,2,0,PC,PC,10.7641,0.006,,1,spoc-s14-s50-b0H,SPOC/QLP,15:06:56.46,57:29:44.49,-31.441,0.059,39.082,0.068,2459637.740348,0.00038353488,0.357649273225229,7.4769723e-06,0.388498839807876,0.07517134,1.086665,0.08024,1000.35509734501,73.901,3.40517783539038,2.8126688,5017.84752830109,2146.59006381421,14.668422,120.483,0.533,4717.0,107.8,4.23,0.09,1.05485999584198,0.0768844,-0.133,0.033,0.693,0.0814179,"15,16,22,23,49,50",2022-08-18,2022-08-18,2023-04-01 00:00:00,short period; potential binary host; also found in QLP faint search,5706,1,False,False,True -441614965,5707.01,,2,4,2,2,3,4,4,3.7,43.0,3.33,0,2,1,PC,PC,9.73378,0.006,,1,qlp-s60-ffi,SPOC,07:54:48.73,77:17:58.18,-42.213,0.037,-126.731,0.046,2459960.660309,0.0035374,2.036424,1.07e-05,1.726,0.238,0.330114,0.024048,304.0,22.1484,1.63301,0.108559,507.154,1322.0,12.0,108.095,0.3235,5553.0,119.845,4.48827,0.081005,0.93,0.05,,,0.978,0.124072,"20,26,40,47,53,60",2022-08-18,2023-02-23,2023-02-25 12:10:55,low MES; potential L1 planet,5707,1,False,False,True -335813325,5708.01,,3,4,3,3,4,4,4,29.2,159.9,18.62,1,3,5,PC,PC,9.1454,0.006,,1,spoc-s14-s50-b02,SPOC,12:13:06.42,11:56:17.13,19.867,0.081,-71.267,0.046,2459552.817321,0.001235221,2.69536978311322,4.9732418e-05,0.762848908655456,0.13221219,0.823054,0.13013,757.773375549487,119.84685,4.51459274185846,10.007338,580.7236508942,1252.02248380149,9.067633,87.2349,0.3207,5521.0,123.763,4.4322,0.0812477,0.991555988788605,0.0511357,,,0.97,0.120185,"46,49",2022-08-18,2022-08-18,2023-07-07 00:00:00,V-shaped; centroids slightly closer to TIC 335813326,5708,1,False,False,True -286813592,5709.01,,2,4,2,2,4,4,4,2.9,6.5,2.85,1,0,4,PC,PC,11.1501,0.007,,1,spoc-s14-s50-b02,SPOC,10:58:35.75,14:37:25.1,77.271,0.092,-50.395,0.058,2458899.969827,0.0017661479,3.38102268268616,1.7297773e-05,1.90124514964972,0.3785359,0.865961,0.09773,797.261751824445,90.00884,1.49789482734532,0.5191243,30.4107299778741,598.930542924389,7.8154817,44.6467,0.0772,3600.0,157.0,4.74127,0.00781286,0.495591998100281,0.0145958,,,0.493682,0.020195,"22,45,46,49",2022-08-18,2022-08-18,2023-06-05 00:00:00,low SNR; potential L1 planet,5709,1,False,False,True -173002823,5710.01,,2,4,2,2,3,4,4,1.0,30.6,6.95,0,2,3,PC,PC,10.305,0.006,,1,spoc-s14-s50-b02,SPOC,10:02:24.64,34:39:28.97,-130.764,0.061,-90.233,0.081,2458882.469833,0.005091921,28.4064642761436,0.00029716626,4.00088045426227,0.59279615,0.962565,0.112354,886.162064980873,103.47636,2.52763283071751,0.7371311,15.3546860828566,504.870488155457,7.15548,114.555,0.5875,5415.0,123.676,4.60828,0.0790387,0.797843992710114,0.0421055,,,0.942,0.113516,"21,48",2022-08-18,2022-08-18,2023-02-27 00:00:00,low SNR,5710,1,False,False,True -441804533,5711.01,TIC 441804533.01,2,4,2,2,3,4,4,0.7,23.6,5.68,0,2,3,PC,PC,11.506,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,17:41:49.24,72:13:02.45,-46.99,2.0,-169.83,2.0,2458753.183872,0.0039837267,16.3036749781653,5.0314447e-05,3.22193198371296,0.43106148,1.216665,0.078514,1119.96252539735,72.31151,2.24503894726739,0.8283005,6.46435031362853,406.678272844942,15.518317,85.34439,,3729.0,157.0,4.60049,0.0134719,0.661190986633301,0.0212531,,,0.635448,0.0211458,"16,17,22,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2022-08-18,2023-05-19,2023-06-16 12:14:51,potential L1 planet,5711,1,False,False,True -388898854,5712.01,,2,4,2,2,3,4,4,3.7,37.0,12.58,0,3,3,PC,PC,10.5591,0.006,,1,spoc-s14-s50-b02,SPOC,11:37:17.55,11:10:02.44,-18.054,0.079,-8.459,0.059,2459532.004977,0.006448457,8.21151969075962,0.0007752819,4.4676707614691,0.5041339,0.716857,0.081521,660.031602175234,75.08097,3.58495545055049,0.34158212,241.447660761804,1005.36902369488,8.028524,228.546,2.44,6057.0,127.331,4.35121,0.0811539,1.17429995536804,0.0554774,,,1.129,0.151329,"45,46,49",2022-08-18,2022-08-18,2023-02-27 00:00:00,,5712,1,False,False,True -219041246,5713.01,,2,4,2,2,2,4,4,0.7,49.4,4.13,1,0,2,PC,PC,12.7022,0.007,,1,spoc-s14-s50-b02,SPOC,13:53:50.1,52:36:09.95,108.488,0.064,-19.401,0.059,2458745.677964,0.0018796728,10.4419896103344,6.124049e-05,1.7143489982959,0.47330454,4.34341,0.528974,3992.43726439973,487.0845,1.86054730330198,0.81836313,2.4111217158959,317.815104162798,8.136899,40.8668,0.0729,3271.0,157.0,4.93417,0.00695235,0.292425006628036,0.00864785,,,0.267999,0.020108,"16,22,23,49",2022-08-18,2022-08-18,2023-06-16 00:00:00,low SNR; potential L1 planet,5713,1,False,False,True -467158766,5714.01,,2,4,2,2,3,4,4,3.7,42.4,8.85,0,2,3,PC,PC,10.3463,0.006,,1,spoc-s14-s50-b02,SPOC,08:48:06.74,57:29:20.24,-31.192,0.09,-4.97,0.105,2458843.310422,0.0019803687,7.7785081904618,3.7201986e-05,2.54337167422064,0.32731214,0.871294,0.103286,802.169063665653,95.125084,2.91474287907879,0.7368474,139.460725851007,876.461270180793,8.177709,141.492,1.2195,5610.2,105.923,4.46925,0.0795946,0.96135401725769,0.0505553,0.231,0.018,0.993,0.126541,"20,47",2022-08-18,2022-08-18,2023-02-08 00:00:00,low SNR; potential L1 planet; ramp-like feature after odd transits,5714,1,False,False,True -147923561,5715.01,,2,4,2,2,3,4,4,1.0,3.8,2.27,0,0,2,PC,PC,11.4201,0.007,,1,spoc-s14-s50-b02,SPOC,11:02:57.43,69:54:58.07,-83.715,0.047,-40.526,0.049,2458684.158741,0.0024569933,6.28229835754556,3.580857e-05,2.0055337822636,0.5272032,0.647399,0.080807,596.099073551646,74.42296,1.30792399336291,0.6967864,17.238071250258,519.687077029364,7.647205,56.1495,0.1072,3827.0,157.0,4.73676,0.00806714,0.500739991664886,0.0148125,,,0.498786,0.0202418,"14,20,21,40,41,47,48",2022-08-18,2022-08-18,2023-04-16 00:00:00,low SNR,5715,1,False,False,True -298074836,5716.01,,2,4,2,2,1,4,4,0.4,6.8,1.04,0,0,0,PC,PC,13.1066,0.007,,1,spoc-s14-s60-b0A,SPOC,13:27:36.19,73:10:38.76,-81.501,0.082,-217.264,0.07,2458683.61592,0.0018716924,6.76627285241156,2.6526157e-05,1.05750631287556,1.1930561,2.171878,0.404236,1998.37387208562,372.24612,1.01767433230023,2.5089574,3.40930637009566,346.566241970397,7.9898353,39.4122,0.0677,3331.0,157.0,5.02076,0.0186139,0.22596600651741,0.00682671,,,0.195335,0.0201068,"14,15,20,21,22,40,47,48,60",2022-08-18,2023-05-19,2023-06-16 12:14:51,low SNR; potential L1 planet,5716,1,False,False,True -53481079,5717.01,,2,4,2,2,3,4,4,0.0,9.9,10.56,0,2,3,PC,PC,10.8222,0.006,,1,spoc-s14-s50-b02,SPOC,10:50:18.16,50:47:47.46,-29.819,0.085,-38.894,0.078,2458871.527176,0.0039009508,741.338075653942,0.0026998136,3.71016515212355,0.68793964,1.528296,0.163671,1406.62200805298,150.7349,3.23376635172666,1.6375057,0.596886292496527,224.177824819875,10.099332,157.154,2.6725,5479.3,99.9936,4.5543,0.0758122,0.856628000736237,0.0392412,-0.340991,0.0105361,0.959,0.120679,"21,48",2022-08-18,2022-08-18,2023-02-08 00:00:00,actual period likely shorter; alerted with max period of ~741 days,5717,1,False,False,True -17932757,5718.01,TIC 17932757.01,2,4,4,2,3,4,4,0.0,11.0,7.52,0,2,3,PC,PC,10.8075,0.008,,1,spoc-s14-s50-b02,SPOC,11:21:05.73,41:34:35.14,-31.724,0.057,-18.498,0.07,2458903.539448,0.0043222927,716.842689379311,0.0057526752,4.4248640359985,0.59439856,1.698131,0.149999,1562.81364852007,138.1446,2.64870753820929,1.0496963,0.0522484230851755,121.937713302869,10.995461,65.9721,0.23415,3922.0,157.0,4.59159,0.0119581,0.672255992889404,0.019799,,,0.643559,0.0201919,"22,48",2022-08-18,2022-08-18,2023-04-03 00:00:00,duo-transit two years apart; actual period is likely shorter,5718,1,False,False,True -4843495,5719.01,TIC 4843495.01,3,4,3,3,3,4,4,,,7.13,0,2,1,PC,PC,9.67055,0.006,,1,spoc-s14-s50-b02,SPOC,09:48:00.95,30:10:42.31,14.294,0.063,4.734,0.058,2459633.025142,0.0065985266,0.0,0.0,7.62305838186289,0.78803986,0.555754,0.066183,511.737322892104,60.955006,2.56561706859385,0.8666722,0.574856517324953,222.080084709351,8.741696,155.483,1.052,6347.0,134.741,4.45158,0.0918711,1.10473001003265,0.0529649,,,1.259,0.20286,"21,48",2022-08-18,2022-08-18,2023-02-19 00:00:00,possible single transit at ~2633 TBJD; v-shaped; low SNR,5719,1,False,True,True -230055368,5720.01,,1,4,1,2,4,4,4,5.9,10.6,2.52,3,2,3,PC,PC,11.6196,0.007,,1,spoc-s14-s50-b02,SPOC,11:21:15.26,25:16:23.86,-350.367,0.115,-91.492,0.117,2458900.645029,0.0013698924,1.43446023836647,1.5389136e-05,0.934887724935997,0.24850394,1.116949,0.178391,1028.21878524315,164.2908,1.39321904233517,0.27903435,53.9707370238251,691.288507291395,7.4162726,35.8256,0.12685,3421.0,157.0,4.85368,0.00119494,0.371030002832413,0.0109547,,,0.358453,0.0201653,"22,49",2022-08-18,2022-08-18,2023-06-20 00:00:00,low SNR; potential L1 planet,5720,1,False,False,True -85292615,5721.01,,2,4,2,2,3,4,4,0.0,12.5,11.11,0,1,1,PC,PC,9.92937,0.006,,1,spoc-s14-s50-b02,SPOC,10:26:59.94,30:42:01.96,-37.624,0.08,-19.403,0.08,2458888.709894,0.007928649,729.482347157133,0.011424574,6.93977148350692,0.6418268,0.890107,0.096498,819.48324696022,88.87393,3.33094500261087,0.33386502,0.413942005467263,204.575972520845,9.071953,140.084,0.7985,5881.4,144.199,4.45955,0.0814186,1.00724995136261,0.0552161,0.0161914,0.0146054,1.066,0.135626,"21,48",2022-08-18,2022-08-18,2023-02-27 00:00:00,low SNR,5721,1,False,False,True -458481611,5722.01,TIC 458481611.01,3,4,3,3,2,4,4,0.7,21.0,33.62,2,0,1,PC,PC,12.9454,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,15:33:55.17,64:38:50.87,-52.465,0.027,-9.521,0.025,2459432.534544,0.0045736628,61.3191144086435,0.0010067659,5.74553091357523,0.30928493,7.182111,0.313629,6593.13821921861,288.82144,6.39070791546487,0.70776016,4.12565083471055,363.490334389746,16.376131,315.535,1.248,4911.0,123.396,4.54009,0.0890692,0.795305013656616,0.0512513,,,0.8,0.0941477,"41,48,50,54,57",2022-08-18,2023-05-19,2023-07-07 00:00:00,,5722,1,False,False,True -235901733,5723.01,TIC 235901733.01,3,4,3,3,3,4,4,0.8,22.7,110.23,2,0,1,PC,PC,12.8857,0.008,,1,spoc-s14-s60-b0A-PC,SPOC,19:18:02.12,80:31:54.69,-20.649,0.029,-13.155,0.033,2459413.809229,0.002165651,170.64651463341,0.0011721875,6.18362775249462,0.17753297,13.419408,0.336724,12283.6633675471,310.08603,12.8504524762301,0.7675774,3.40879426654363,346.553227020868,41.516407,575.831,6.5645,5695.0,139.936,4.32135,0.0803177,1.14952003955841,0.0593367,,,1.01,0.133012,"40,47,52,53,54,58,59,60",2022-08-18,2023-06-13,2023-06-16 12:14:51,period likely 56.875d given transits in FFIs,5723,1,False,False,True -162631539,5724.01,TIC 162631539.01,1,4,1,1,4,4,4,0.1,28.9,9.4,0,2,4,PC,PC,6.9014,0.006,,1,spoc-s14-s50-b02,SPOC,16:23:07.18,50:20:39.08,55.158,0.037,-6.886,0.042,2458978.277627,0.0023779504,697.403769798257,0.0030392956,4.96586906628228,0.25164634,0.487469,0.028958,448.874977376587,26.671217,3.018725818513,0.5041258,0.888227851119679,247.600117386123,16.230043,50.4126,0.05325,6060.54,141.673,4.21457,0.0917489,1.37495994567871,0.0701231,-0.340135,0.0406867,1.13,0.15901,"23,24,25,50",2022-08-18,2022-08-18,2023-06-20 00:00:00,two transits two years apart; period is likely shorter than max period of ~697 days,5724,1,False,False,True -1042432,5725.01,,2,4,2,2,3,4,4,0.0,9.6,7.86,0,2,1,PC,PC,11.4053,0.007,,1,spoc-s14-s50-b02,SPOC,10:15:43,28:21:18.69,6.384,0.077,3.121,0.085,2458882.106824,0.0054822327,746.954535565538,0.0036652493,2.77303999575446,0.61922204,1.81591,0.260861,1671.1171293219,240.23312,2.71846672574442,0.87503994,0.112661556874443,147.762315028877,7.4939885,78.9286,0.2547,3933.0,157.0,4.63174,0.0111399,0.623190999031067,0.0183655,,,0.606611,0.0201968,"21,48",2022-08-18,2022-08-18,2023-04-03 00:00:00,two transits two years apart; actual period is likely much shorter than maximum period of ~746 d; low SNR,5725,1,False,False,True -71582156,5726.01,TIC 71582156.01,2,4,2,2,3,4,4,4.6,51.6,6.5,0,2,1,PC,PC,9.16067,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,08:13:34.81,68:34:28.52,-44.62,0.031,-50.059,0.043,2458843.596098,0.0010938924,5.49113023427399,1.304459e-05,1.90620984334076,0.28083926,0.487009,0.035143,448.45164695496,32.36731,2.43067498676736,1.2403625,337.331254218173,1093.03456243565,13.045012,108.848,0.3585,5874.0,119.318,4.37711,0.075839,1.10649001598358,0.0514447,,,1.064,0.131071,"20,26,47,53,60",2022-08-18,2023-05-19,2023-06-16 12:14:51,two stars in a pixel,5726,1,False,False,True -357048995,5727.01,,2,4,2,2,3,4,4,3.0,25.6,11.03,0,2,3,PC,PC,10.5988,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,18:18:15.89,58:33:46.61,7.489,0.047,2.143,0.047,2459422.895595,0.0025785954,6.3928693910136,5.236534e-05,3.71289268025249,0.243519,0.490816,0.028093,451.956323484664,25.874651,3.31716454824885,0.48978597,435.391458958929,1165.03702064728,16.506613,261.104,1.944,5712.0,122.9,4.12,0.08,1.44968998432159,0.0704321,,,1.018,0.126188,"41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2022-08-18,2023-05-19,2023-06-16 12:14:51,L1 candidate,5727,1,False,False,True -219875976,5728.01,,2,4,2,2,4,4,4,0.2,3.1,1.49,0,0,3,PC,PC,12.4896,0.007,,1,spoc-s14-s50-b02,SPOC,17:21:24.22,67:33:01.52,64.057,0.057,159.436,0.058,2458685.097165,0.0032554616,11.4974559035731,8.4164196e-05,2.3907992513193,0.7287237,0.915777,0.119628,843.106233571574,110.17496,1.12696070402296,0.8637409,3.51200943235657,349.147283953595,7.6579084,54.7045,0.10345,3444.0,157.0,4.84899,0.00168107,0.375993996858597,0.0111753,,,0.364151,0.0202226,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50",2022-08-18,2022-08-18,2023-06-16 00:00:00,low SNR; inconsistent centroids in some sectors but average is on target,5728,1,False,False,True -103605399,5729.01,,2,4,2,2,1,4,4,0.0,18.6,14.44,0,0,0,PC,PC,12.6265,0.007,,1,spoc-s14-s50-b02,SPOC,10:04:50.43,69:09:53.89,-242.784,0.023,-344.238,0.023,2458886.836539,0.011308852,554.498967635392,0.0010033748,2.90523631359747,0.4655814,6.598043,0.975965,6058.59475886258,898.4934,3.88833710783045,0.48383665,0.795687788320063,240.882595913209,9.085244,81.2392,0.09765,3870.0,157.0,4.80522,0.00474439,0.423548012971878,0.0125883,,,0.417789,0.0202616,"14,20,21,40,41,47",2022-08-18,2022-08-18,2022-12-14 12:09:24,low SNR,5729,1,False,False,True -138820713,5730.01,TIC 138820713.01,2,4,4,2,4,4,4,4.6,8.4,2.63,8,0,4,PC,PC,11.1557,0.007,,1,spoc-s14-s50-b02,SPOC,11:42:15.7,24:11:32.98,-58.016,0.102,-164.001,0.088,2458900.38758,0.0013703522,1.92712250793848,1.2836122e-05,1.45303987982942,0.5422421,0.97617,0.115693,898.682130234615,106.55111,1.42616039877989,1.4298586,57.2227793040625,701.474658761462,9.596964,40.9866,0.10605,3572.0,157.0,4.76894,0.00664722,0.46416899561882,0.0137283,,,0.461555,0.0202325,"22,49",2022-08-18,2022-08-18,2023-07-11 00:00:00,bad transit shape; low SNR,5730,1,False,False,True -188668950,5731.01,TIC 188668950.01,3,4,3,3,4,4,4,0.0,18.5,18.5,0,2,3,PC,PC,11.241,0.006,,1,spoc-s14-s50-b02,SPOC,17:20:23.72,52:26:00.47,-61.326,0.039,49.119,0.048,2459130.335118,0.011961067,270.303816035578,0.0075056106,6.68246798579654,0.43515092,3.151329,0.317226,2898.27319645126,292.1334,4.49696760818259,0.5140907,0.392147915576972,201.828376741913,10.09025,109.835,0.2585,4448.25,107.454,4.51125,0.0899981,0.767409026622772,0.0542789,0.021,0.035,0.697,0.0821877,"24,26,40,47,50",2022-08-18,2022-08-18,2023-07-07 00:00:00,period likely 90 d based on transits in FFIs,5731,1,False,False,True -335952150,5732.01,TIC 335952150.01,3,4,3,3,3,4,4,6.2,64.0,79.86,0,3,2,PC,PC,10.2071,0.008,,1,qlp-s60-ffi,SPOC,17:42:13.58,53:12:14.16,-8.573,0.039,8.136,0.061,2459903.223377,0.0028526,60.1702579,0.0002287,3.311,0.964,2.185614,3.461018,2011.0,3182.64,10.6605,3.65123,28.1896,641.0,20.0,275.456,1.6505,6710.0,128.511,4.29122,0.0900488,1.42,0.06,,,1.43,0.247861,"14,17,21,24,25,26,40,41,47,50,51,52,53,54,57,58,59,60",2022-08-18,2023-02-27,2023-03-03 12:11:24,period constrained to ~60 days with additional coverage in s58 and s59 QLP; v-shaped,5732,1,False,False,True -224297408,5733.01,,2,4,2,2,3,4,4,3.1,35.9,8.44,0,4,2,PC,PC,10.968,0.006,,1,spoc-s14-s50-b02,SPOC,12:19:51.88,55:09:56.61,-107.423,0.036,20.219,0.034,2458711.606063,0.002087998,8.27516069666908,3.624499e-05,2.15103502587355,0.37821683,1.101321,0.101175,1013.84027308093,93.18137,2.83507791559445,1.1437123,46.1271122190342,664.674191848128,10.2224,102.462,0.2495,4388.89,106.334,4.43387,0.0873239,0.832265019416809,0.0604347,0.087917,0.0316222,0.686,0.0801726,"15,22,48,49",2022-08-18,2022-08-18,2023-04-16 00:00:00,Low SNR,5733,1,False,False,True -9989136,5734.01,TIC 9989136.01,2,4,2,2,3,4,4,10.1,132.1,6.4,0,3,1,PC,PC,8.5446,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,07:25:01.4,37:13:52.04,-27.643,0.102,14.349,0.083,2458848.68514,0.0016771653,6.18416879889915,9.505973e-06,2.58984969184785,0.13544169,1.143177,0.057823,1052.35091682847,53.255753,2.40760015491054,0.31346497,56.3777871342016,698.870575756164,18.214756,32.5102,0.078,4645.0,128.1,4.62,0.1,0.693765997886658,0.0532161,,,0.74,0.0928749,"20,47,60",2022-08-18,2023-05-19,2023-06-16 12:14:51,potential L1 planet; variable host,5734,1,False,False,True -157769780,5735.01,,2,4,2,2,2,4,4,1.9,19.2,0.52,1,0,1,PC,PC,12.2822,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,09:48:30.01,77:23:23.09,27.479,0.07,106.639,0.074,2458683.544649,0.0011279575,2.12081555044183,1.167662e-05,0.842776353277223,0.20975694,1.248095,0.183325,1148.87732374385,168.8344,0.837844039685531,0.14815171,12.9004587927977,483.360367951178,7.801814,22.914,0.0217,3222.0,157.0,5.0449,0.0224654,0.210907995700836,0.00636699,,,0.179893,0.0200862,"14,20,26,40,47,60",2022-08-18,2023-05-19,2023-06-16 12:14:51,low SNR,5735,1,False,False,True -310380289,5736.01,,2,4,2,2,2,4,4,6.3,43.7,3.25,0,0,1,PC,PC,11.982,0.007,,1,spoc-s14-s50-b02,SPOC,14:15:02.02,49:30:03.38,-33.279,0.029,-82.906,0.03,2458738.898603,0.001609709,0.648986500319084,2.4366447e-05,1.058595110924,0.32323042,0.610279,0.128099,561.929799830587,117.976585,1.61684731635841,0.44353673,493.48299979353,1202.09225376121,7.809917,92.3604,0.17715,3949.0,157.0,4.66859,0.0104214,0.579535007476807,0.017258,,,0.571061,0.0203095,"16,49,50",2022-08-18,2022-08-18,2023-06-16 00:00:00,very low SNR; v-shaped,5736,1,False,False,True -229618478,5737.01,,2,4,2,2,1,4,4,0.5,17.2,5.92,1,0,0,PC,PC,12.3105,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,18:35:36.8,77:44:07.99,-91.767,0.023,31.473,0.025,2458698.868058,0.003231541,19.4480945904977,8.7787295e-05,3.51075882427336,0.4539268,1.441848,0.111516,1327.10997229094,102.70517,2.30092851072342,0.7369309,5.92170098003845,397.86099826464,11.952113,118.505,0.1695,3966.0,157.0,4.63584,0.0109789,0.618273019790649,0.0181526,,,0.602748,0.0201589,"14,17,18,19,21,22,23,24,25,26,40,47,48,50,51,52,53,54,55,57,58,59,60",2022-08-18,2023-05-19,2023-06-16 12:14:51,L1 candidate,5737,1,False,False,True -198162530,5738.01,,2,4,2,2,2,4,4,3.6,4.5,2.25,1,0,1,PC,PC,12.1898,0.007,,1,spoc-s14-s55-b0A-PC,SPOC,16:15:37.57,61:55:36.84,-152.945,0.025,124.611,0.033,2458683.640443,0.0008404722,0.768125005544612,9.174807e-06,0.999206238963782,0.34847283,0.5337,0.057479,491.435018509951,52.93853,1.30405561746224,1.5758286,302.110292888265,1063.3130158666,8.062698,91.2062,0.126,3717.0,157.0,4.67682,0.0100691,0.569913983345032,0.0168518,,,0.562819,0.0202361,"14,15,16,17,18,19,21,22,23,24,25,47,48,49,50,51,52,54,55",2022-08-18,2023-03-14,2023-07-07 00:00:00,potential multi; possible SV; bump before transits; inconsistent centroids between sectors but average is on target,5738,1,True,False,True -198162530,5738.02,,2,4,2,2,2,4,4,0.4,25.0,8.54,1,0,1,PC,PC,12.1898,0.007,,2,spoc-s14-s55-b0A-PC,SPOC,16:15:37.57,61:55:36.84,-152.945,0.025,124.611,0.033,2458693.593974,0.003231082,28.5462089350188,0.00015844694,1.76666663763546,0.25406772,1.895684,0.238466,1744.46599664564,219.61098,2.8547322492955,0.30550912,2.43599732026057,318.631678325233,8.434045,91.2062,0.126,3717.0,157.0,4.67682,0.0100691,0.569913983345032,0.0168518,,,0.562819,0.0202361,"14,15,16,17,18,19,21,22,23,24,25,47,48,49,50,51,52,54,55",2023-03-02,2023-03-02,2023-07-07 00:00:00,potential multi; low SNR,5738,2,True,False,True -328934980,5739.01,,2,4,2,2,4,4,4,4.4,58.9,4.87,0,2,4,PC,PC,7.1367,0.006,,1,spoc-s14-s50-b02,SPOC,13:40:40.69,19:11:59.49,-92.215,0.077,-67.858,0.052,2458930.773235,0.0026816267,8.43061623951584,6.39315e-05,5.58238805098633,0.7936662,0.198609,0.02288,182.908957177561,21.073109,2.05003390365099,1.8671747,383.110118648049,1128.3677245052,8.148228,61.8703,0.18565,6104.12,103.305,4.15159,0.0736298,1.49137997627258,0.0561055,,,1.15,0.155358,"23,50",2022-08-18,2022-08-18,2023-06-20 00:00:00,period may be double (16.86 d),5739,1,False,False,True -230087765,5740.01,,2,4,2,2,4,4,4,1.6,2.5,2.49,0,2,4,PC,PC,11.958,0.006,,1,spoc-s14-s50-b02,SPOC,16:27:48.66,69:46:53.37,-8.076,0.043,-59.195,0.051,2458684.235662,0.0017914661,1.68944203904042,1.5300464e-05,1.33591418193034,0.18029043,0.346161,0.048274,318.775676125129,44.461422,1.38214891107704,2.159553,386.358810926754,1130.75223483725,7.390143,168.06,0.672,4552.0,129.934,4.50087,0.100752,0.788246989250183,0.0637311,,,0.718,0.0853665,"14,15,16,17,18,19,20,21,22,23,24,25,26,41,47,48,49,50",2022-08-18,2022-08-18,2023-06-16 00:00:00,very low SNR; centroid offset scattered across sectors; crowded field,5740,1,False,False,True -159851831,5741.01,,1,4,1,1,4,4,4,1.4,35.9,8.38,0,2,3,PC,PC,10.4514,0.006,,1,qlp-s53-ffi,QLP,17:56:49.81,39:13:24.2,-15.803,0.171,11.896,0.143,2459754.333656,0.0045503,24.0004143,0.0002399,3.138,0.391,1.347148,0.00217,1240.0,1.99862,2.83659,0.253533,6.01946,436.0,13.0,86.8854,0.64135,4579.0,125.5,4.49,0.1,0.8,0.06,,,0.72,0.0840037,"25,26,40,52,53",2022-09-01,2022-09-01,2023-06-20 00:00:00,variable host; potential L1 planet,5741,1,False,False,True -258557847,5742.01,,5,5,5,5,5,5,5,9.8,35.6,39.6,0,1,0,EB,FP,10.042,0.006,,1,qlp-s53-tois,QLP,18:32:45.98,18:08:46.23,-0.294,0.079,-11.645,0.087,2459765.579293,0.0087042,3.965824,7.48e-05,2.911,0.676,0.738552,0.063217,680.0,58.2236,7.03413,0.519109,624.031,1392.0,10.0,438.137,7.3595,6199.0,156.7,3.62,0.09,2.8,0.14,,,1.19,0.173762,"26,40,53",2022-09-01,2022-11-30,2022-12-14 12:09:24,evolved variable host; possible centroid offset; retired as TFOP FP/NEB,5742,1,False,False,False -308300731,5743.01,,3,4,3,3,4,4,4,35.7,178.3,59.62,2,2,3,PC,PC,10.4748,0.006,,1,qlp-s53-ffi,QLP,17:51:37.04,24:25:38.84,-20.527,0.03,25.376,0.041,2459759.175152,0.0006069,7.6601547,1.67e-05,2.047,0.275,9.552952,0.008542,8760.0,7.86706,8.93011,0.588219,62.6782,783.0,52.0,127.428,0.4135,5250.0,129.4,4.51,0.08,0.87,0.05,,,0.898,0.109025,"26,53",2022-09-01,2022-09-01,2023-07-04 00:00:00,radius possibly underestimated; potentially young host star,5743,1,False,False,True -157768969,5744.01,,2,4,2,2,3,4,4,1.7,19.5,5.04,0,2,1,PC,PC,9.75577,0.006,,1,qlp-s53-tois,QLP,09:48:30.77,73:26:57.63,10.912,0.046,15.745,0.046,2459758.400187,0.0088435,5.7488832,8.65e-05,5.003,1.705,0.206309,0.023814,190.0,21.933,2.08943,0.178777,974.493,1556.0,10.0,207.057,1.2165,6009.0,125.8,4.11,0.08,1.54,0.07,,,1.11,0.149981,"14,20,21,40,41,47,53",2022-09-01,2022-11-30,2023-01-15 00:00:00,low SNR,5744,1,False,False,False -18016577,5745.01,,2,4,2,2,3,4,4,,,5.55,0,1,3,PC,PC,9.8127,0.006,,1,spoc-s14-s50-b0H,SPOC,11:26:17.6,38:13:15.45,-173.475,0.071,17.722,0.13,2459630.305591,0.004102132,0.0,0.0,4.58736790387481,0.67796683,0.937719,0.110276,863.297992030756,101.562775,2.21639590891541,1.408132,0.159332730010235,161.137269035327,8.775896,78.3388,0.34835,5097.94,110.091,4.61197,0.0805973,0.759101986885071,0.0408291,0.027,0.049,0.86,0.098842,"22,48",2022-09-01,2022-09-01,2023-02-27 00:00:00,single transit at ~2630 TBJD,5745,1,False,True,True -318209162,5746.01,TIC 318209162.01,3,4,3,3,3,4,4,0.0,78.1,107.1,0,3,1,PC,PC,10.5295,0.006,,1,spoc-s14-s50-b0H,SPOC,09:29:30.78,50:57:49.69,-67.76,0.048,-196.425,0.05,2458891.862067,0.0006691324,711.764282514602,8.5401334e-05,3.41764426488005,0.046283357,23.019024,0.433068,20978.1367865924,398.79102,12.6338972052339,1.1483275,2.45421169215045,319.225631497452,62.410282,85.5353,0.235,4661.56,137.074,4.57751,0.104786,0.732648015022278,0.0592965,-0.280335,0.0126844,0.74,0.0912293,"21,47",2022-09-01,2022-09-01,2023-01-15 00:00:00,duo transit two years apart; ~711 days in the maximum period; period is likely shorter; v-shaped,5746,1,False,False,True -4918918,5747.01,TIC 4918918.01,2,4,4,2,4,4,4,17.3,18.8,2.85,7,2,2,PC,PC,10.7818,0.008,,1,spoc-s14-s50-b02,SPOC,09:53:30.8,35:34:13.97,-87.855,0.078,-177.216,0.071,2458870.47457,0.0007747027,0.57347655188524,1.3693013e-05,0.900450829427625,0.10233048,0.88892,0.096619,818.390340319063,88.985146,1.49695306428875,0.13053058,225.418516364705,988.250735719129,9.799914,28.5321,0.0512,3466.0,157.0,4.80761,0.00448927,0.420908004045486,0.0124246,,,0.41487,0.0201954,"21,48",2022-09-01,2022-09-01,2023-06-05 00:00:00,low MES; potential L1 planet,5747,1,False,False,True -407495930,5748.01,,3,4,3,3,3,4,4,25.5,25.2,317.0,3,0,1,PC,PC,12.9255,0.02,,1,qlp-s52-faintsearch,QLP,00:28:20.27,73:06:27.91,2.337,0.028,1.468,0.026,2459738.329356,0.0048434,3.0269043,1.9e-05,3.819,0.264,7.758093,0.009818,7120.0,9.04245,14.2605,0.8726,1446.66,1718.0,15.0,866.343,12.2525,6154.0,175.3,4.06,0.08,1.67,0.08,,,1.17,0.167321,"18,19,24,25,52",2022-09-01,2022-09-01,2023-02-27 00:00:00,found in faint-star QLP search,5748,1,False,False,False -387329912,5749.01,,3,4,3,3,3,4,4,17.1,39.6,106.85,0,2,1,PC,PC,10.7778,0.008,,1,qlp-s52-faintsearch,QLP,20:39:49.01,68:43:12.58,5.888,0.042,9.84,0.04,2459734.363125,0.0032551,5.4328364,2.29e-05,7.38,0.315,1.542841,0.00031,1420.0,0.2853,12.63,0.656937,1693.95,1787.0,15.0,609.042,7.6275,6024.0,133.7,3.43,0.08,3.4,0.17,,,1.12,0.150482,"15,16,18,22,24,25,52",2022-09-01,2022-09-01,2023-02-27 00:00:00,found in faint-star QLP search,5749,1,False,False,False -310262516,5750.01,,3,4,4,3,1,4,4,52.9,108.4,110.64,2,0,0,PC,PC,14.6578,0.008,,1,qlp-s52-faintsearch,QLP,16:34:07.85,24:19:20.54,13.235,0.053,-16.27,0.061,2459741.118344,0.0023243,1.9044134,0.0001688,0.952,0.195,34.414675,0.226062,31200.0,208.189,12.8293,1.08033,33.8566,672.0,13.0,353.098,4.7425,3952.0,157.0,4.62,0.01,0.63,0.02,,,0.613765,0.0207829,"51,52",2022-09-01,2022-09-01,2023-03-07 00:00:00,found in faint-star QLP search,5750,1,False,False,False -426144112,5751.01,,3,4,3,3,1,4,4,28.6,74.5,62.29,2,0,0,PC,PC,13.3889,0.008,,1,qlp-s52-faintsearch,QLP,23:56:19.05,73:54:27.35,12.147,0.035,0.431,0.031,2459742.829034,0.0020887,1.7465205,4.9e-06,1.453,0.169,7.714353,0.010778,7080.0,9.927,9.21007,,349.37,1204.0,22.0,439.501,3.759,5219.0,125.0,4.36,,1.04,,,,0.889,,"18,19,24,25,52",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5751,1,False,False,False -349440621,5752.01,,3,4,4,3,1,4,4,26.3,38.2,317.0,3,0,0,PC,PC,13.4016,0.007,,1,qlp-s52-faintsearch,QLP,16:41:32.27,23:34:41.81,16.772,0.022,-19.446,0.033,2459723.423495,0.0022272,6.7113743,2.63e-05,2.294,0.168,24.863598,0.021112,22640.0,19.4444,15.6415,,66.8731,796.0,21.0,634.873,6.6635,5616.2,45.3,4.42,,1.02,,-0.286,0.044,0.99,,"25,52",2022-09-01,2022-09-01,2023-06-24 00:00:00,found in faint-star QLP search,5752,1,False,False,False -332365162,5753.01,,3,4,3,3,2,4,4,15.0,17.6,317.0,2,0,1,PC,PC,13.1895,0.008,,1,qlp-s52-faintsearch,QLP,16:42:18.81,29:46:59.37,7.091,0.023,-25.862,0.032,2459742.005654,0.0040334,7.4242482,5.67e-05,2.873,0.453,8.786491,0.020061,8060.0,18.4765,14.2577,,114.75,911.0,13.0,914.008,13.06,5760.0,122.0,4.08,,1.53,,,,1.03,,"25,51,52",2022-09-01,2022-09-01,2023-06-20 00:00:00,found in faint-star QLP search,5753,1,False,False,False -135267558,5754.01,,3,4,4,3,1,4,4,27.9,84.9,97.51,3,0,0,PC,PC,12.6025,0.008,,1,qlp-s52-faintsearch,QLP,16:16:13.48,20:17:37.66,2.129,0.028,6.163,0.03,2459736.090495,0.0014013,3.6479472,1.08e-05,1.683,0.288,10.330916,0.014013,9470.0,12.9068,11.96,0.744782,208.679,1058.0,19.0,557.293,7.261,5999.0,135.5,4.35,0.08,1.16,0.06,,,1.11,0.144363,"25,51,52",2022-09-01,2022-09-01,2023-07-03 00:00:00,found in faint-star QLP search,5754,1,False,False,False -256584532,5755.01,,3,4,3,3,1,4,4,16.4,54.9,71.76,0,0,0,PC,PC,12.9079,0.006,,1,qlp-s52-faintsearch,QLP,21:50:44.75,70:38:47.14,-8.175,0.066,-2.104,0.075,2459736.246115,0.0032463,5.4397285,2.32e-05,3.099,0.23,8.74271,0.007645,8020.0,7.04171,10.0246,0.685829,150.751,976.0,28.0,444.485,7.6805,5188.0,149.1,4.29,0.09,1.12,0.07,,,0.88,0.11245,"17,18,24,25,52",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5755,1,False,False,False -72889156,5756.01,,3,4,3,3,1,4,4,11.1,72.4,64.57,1,0,0,PC,PC,14.0287,0.007,,1,qlp-s52-faintsearch,QLP,16:56:39.54,37:46:59.66,-37.314,2.156,12.622,2.156,2459742.759507,0.0030327,7.6408565,0.0007962,0.99,0.197,25.319157,0.141329,23050.0,130.16,9.43925,0.760218,1.50483,308.0,11.0,,,3517.0,157.0,4.69,0.01,0.56,0.02,,,0.551165,0.0210398,"51,52",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5756,1,False,False,False -219506608,5757.01,,3,4,3,3,1,4,4,5.0,49.4,92.76,1,0,0,PC,PC,13.1351,0.007,,1,qlp-s52-faintsearch,QLP,16:26:26.98,46:28:19.99,-12.97,0.032,-2.412,0.036,2459703.44826,0.0017193,32.6116713,0.0001436,2.052,0.519,17.115106,0.151896,15640.0,139.892,11.6182,,1.72193,319.0,20.0,316.349,1.6675,4626.0,122.0,4.45,,0.84,,,,0.73,,"24,25,50,51,52",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5757,1,False,False,False -82598822,5758.01,,3,4,3,3,4,4,4,11.5,53.3,94.45,4,0,3,PC,PC,13.4932,0.007,,1,qlp-s52-faintsearch,QLP,17:03:40.03,37:08:23.38,-17.555,0.026,41.126,0.03,2459728.922004,0.0026594,10.9299688,7.76e-05,2.407,0.305,16.982756,0.030171,15520.0,27.7885,11.7101,,28.5552,644.0,14.0,592.293,5.5485,5555.0,122.0,4.5,,0.92,,,,0.98,,"25,51,52",2022-09-01,2022-09-01,2023-06-07 00:00:00,found in faint-star QLP search,5758,1,False,False,False -317594531,5759.01,,3,4,3,3,3,4,4,15.6,49.9,122.5,1,0,1,PC,PC,13.2038,0.01,,1,qlp-s52-faintsearch,QLP,23:27:11.42,76:20:26.75,-7.242,0.031,-4.174,0.023,2459729.912231,0.0029343,8.350615,3.62e-05,1.62,0.344,9.322957,0.030033,8550.0,27.6613,13.6804,,39.5424,698.0,16.0,738.614,8.218,6075.0,122.0,4.23,,1.36,,,,1.14,,"18,19,24,25,52",2022-09-01,2022-09-01,2023-02-27 00:00:00,found in faint-star QLP search,5759,1,False,False,False -255907107,5760.01,,3,4,3,3,2,4,4,15.9,52.1,106.41,1,0,1,PC,PC,12.5992,0.007,,1,qlp-s52-faintsearch,QLP,16:27:53.39,38:27:11.48,-16.11,0.021,15.113,0.024,2459739.173528,0.0021664,7.924204,3.19e-05,4.458,0.368,8.895952,0.00576,8160.0,5.30553,12.6224,0.678919,226.813,1081.0,29.0,618.078,4.746,5739.6,107.2,4.17,0.07,1.39,0.06,0.137539,0.0403579,1.03,0.12539,"24,25,51,52",2022-09-01,2022-09-01,2023-06-20 00:00:00,found in faint-star QLP search,5760,1,False,False,False -428703516,5761.01,,3,4,3,3,3,4,4,3.2,43.1,22.48,0,2,1,PC,PC,11.7149,0.006,,1,qlp-s52-faintsearch,QLP,03:09:40.14,75:02:51.32,-14.812,0.039,-8.731,0.042,2459722.313637,0.0027752,19.5422056,8.13e-05,3.465,0.226,4.482473,0.002941,4120.0,2.70867,5.05981,0.328836,15.7305,554.0,19.0,192.846,1.0015,5221.0,146.5,4.62,0.09,0.77,0.05,,,0.89,0.114232,"19,25,26,52",2022-09-01,2022-09-01,2023-01-15 00:00:00,found in faint-star QLP search,5761,1,False,False,False -257531677,5762.01,,3,4,3,3,1,4,4,24.2,75.8,88.42,1,0,0,PC,PC,12.6536,0.007,,1,qlp-s52-faintsearch,QLP,17:13:17.31,25:14:58.08,-16.021,0.021,6.82,0.027,2459735.332063,0.0026461,3.946066,1.71e-05,1.792,0.361,9.169654,0.028171,8410.0,25.9457,11.2929,0.875531,179.278,1019.0,16.0,527.004,4.5315,5769.6,132.7,4.35,0.08,1.13,0.06,0.203,0.028,1.03,0.12198,"25,52",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5762,1,False,False,False -354832924,5763.01,,3,4,3,3,1,4,4,18.8,21.4,317.0,0,0,0,PC,PC,13.185,0.023,,1,qlp-s52-faintsearch,QLP,02:35:04.39,69:14:04.99,3.318,0.025,4.311,0.03,2459729.976853,0.0047278,6.9541458,4.26e-05,4.077,0.487,7.714353,0.008326,7080.0,7.66824,15.5368,,289.666,1149.0,15.0,774.0,12.159,5917.0,122.0,3.97,,1.78,,,,1.08,,"18,19,25,52",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5763,1,False,False,False -150476057,5764.01,,3,4,3,3,1,4,4,24.6,32.6,317.0,2,0,0,PC,PC,12.768,0.007,,1,qlp-s52-faintsearch,QLP,16:47:12.62,22:07:24.23,3.236,0.02,-0.262,0.025,2459739.415504,0.0026286,5.0859973,2.36e-05,1.594,0.224,10.254191,0.021307,9400.0,19.6247,16.2391,1.08936,114.916,912.0,14.0,960.081,14.1525,6503.0,127.4,4.13,0.09,1.65,0.07,,,1.33,0.213154,"25,52",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5764,1,False,False,False -397763985,5765.01,,3,4,3,3,3,4,4,21.7,67.2,66.22,1,2,1,PC,PC,11.5437,0.006,,1,qlp-s58-tois,QLP,00:27:22.69,70:48:20.51,19.808,0.046,2.921,0.039,2459908.635769,0.0013412,3.8779743,5.44e-05,3.294,0.236,5.088809,0.152606,4676.0,140.545,9.43,0.525225,549.351,1348.0,28.0,371.785,3.319,5798.0,213.9,4.06,0.09,1.57,0.08,,,1.041,0.149134,"52,58",2022-09-01,2023-07-06,2023-07-06 00:00:00,found in faint-star QLP search,5765,1,False,False,False -353225230,5766.01,,3,5,5,3,1,4,4,46.5,105.5,66.84,1,0,0,PC,APC,13.0009,0.006,,1,qlp-s52-faintsearch,QLP,16:55:54.96,14:57:57.9,13.833,0.021,-18.687,0.021,2459742.700661,0.0023499,0.5721596,2e-06,1.127,0.342,7.113107,0.066844,6530.0,61.5635,9.61266,,3696.08,2172.0,14.0,550.385,4.855,5560.2,24.9,4.33,,1.12,,-0.318,0.023,0.98,,"25,52",2022-09-01,2022-09-01,2023-03-07 12:02:40,found in faint-star QLP search,5766,1,False,False,False -351652998,5767.01,,3,4,3,3,1,4,4,38.7,48.4,317.0,3,0,0,PC,PC,13.4429,0.008,,1,qlp-s52-faintsearch,QLP,17:05:32.13,20:33:02.47,1.296,0.024,22.925,0.029,2459741.644195,0.0013453,4.015073,1.14e-05,3.229,0.152,25.152467,0.01114,22900.0,10.2606,15.9171,,383.57,1232.0,29.0,648.967,8.7495,5690.0,122.0,4.42,,1.03,,,,1.01,,"25,52",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5767,1,False,False,False -470990157,5768.01,,3,4,3,3,1,4,4,17.0,49.9,102.47,1,0,0,PC,PC,12.8212,0.009,,1,qlp-s53-faintsearch,QLP,18:34:12.75,23:46:03.54,-0.814,0.019,-2.56,0.026,2459766.375076,0.0031584,3.7749324,3.1e-05,3.902,0.251,6.446659,0.005631,5920.0,5.1867,12.3016,0.692582,1208.55,1642.0,18.0,928.084,15.7875,6448.0,128.3,4.14,0.09,1.62,0.07,,,1.31,0.205754,"26,40,53",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5768,1,False,False,False -462715015,5769.01,,3,4,3,3,2,4,4,19.4,77.9,28.68,0,2,2,PC,PC,11.5578,0.006,,1,qlp-s53-faintsearch,QLP,18:02:56.66,20:04:09.87,9.094,0.049,12.576,0.074,2459767.984121,0.0015775,1.7548863,1.15e-05,1.314,0.17,2.848362,0.004864,2620.0,4.47975,5.83196,0.393506,397.807,1244.0,18.0,278.969,3.127,5589.0,128.7,4.37,0.08,1.08,0.06,,,0.987,0.121091,53,2022-09-01,2022-09-01,2023-07-07 00:00:00,found in faint-star QLP search,5769,1,False,False,True -23179035,5770.01,,3,4,4,3,2,4,4,58.8,154.1,100.52,6,0,2,PC,PC,13.0383,0.007,,1,qlp-s53-faintsearch,QLP,18:18:37.12,30:55:25.93,-3.677,0.054,-10.589,0.061,2459766.399806,0.0007985,1.4529225,4.5e-06,1.604,0.168,18.815036,0.010911,17180.0,10.0498,12.177,,993.613,1564.0,45.0,512.769,8.893,5986.6,232.0,4.59,,0.88,,0.15,0.217,1.1,,53,2022-09-01,2022-09-01,2023-06-07 00:00:00,found in faint-star QLP search,5770,1,False,False,False -459836041,5771.01,,3,4,3,3,1,4,4,9.9,29.2,87.42,1,0,0,PC,PC,13.038,0.008,,1,qlp-s53-faintsearch,QLP,04:15:17.62,86:07:10.65,4.147,0.026,-8.074,0.036,2459758.243282,0.0039231,6.6867154,5.07e-05,2.945,0.409,4.209951,0.007385,3870.0,6.80199,11.1995,,166.048,1000.0,15.0,864.093,12.146,5839.0,122.0,3.95,,1.8,,,,1.05,,"19,20,25,40,47,52,53",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5771,1,False,False,False -313609787,5772.01,,3,4,3,3,1,4,4,25.7,64.3,121.02,2,0,0,PC,PC,13.442,0.007,,1,qlp-s53-faintsearch,QLP,17:24:41.4,26:03:01.64,-5.888,0.028,12.838,0.03,2459764.635726,0.0017955,3.5023306,1.54e-05,1.31,0.221,12.031227,0.028361,11020.0,26.1207,13.5233,,91.9991,862.0,15.0,757.959,11.512,5568.0,122.0,4.26,,1.21,,,,0.98,,"25,52,53",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5772,1,False,False,False -445795465,5773.01,,3,4,3,3,3,4,4,27.7,59.4,107.75,2,0,1,PC,PC,12.4443,0.009,,1,qlp-s53-faintsearch,QLP,05:27:07.76,75:47:21.21,5.761,0.026,2.196,0.032,2459767.6163,0.0019368,2.7404478,8.2e-06,3.422,0.301,5.813367,0.003424,5340.0,3.15337,12.6696,0.756336,908.875,1529.0,30.0,614.872,7.7645,5390.0,123.9,3.93,0.08,1.74,0.09,,,0.94,0.122661,"19,26,52,53",2022-09-01,2022-09-01,2023-02-08 00:00:00,found in faint-star QLP search,5773,1,False,False,False -9701368,5774.01,,3,4,4,3,2,4,4,32.0,42.0,317.0,2,0,1,PC,PC,13.2035,0.007,,1,qlp-s53-faintsearch,QLP,17:19:54.98,31:30:53.34,-0.829,0.023,8.909,0.029,2459764.180646,0.0011184,5.4049747,1.24e-05,2.932,0.121,25.119132,0.007235,22870.0,6.66407,14.7278,,170.944,1007.0,34.0,554.905,4.673,5662.6,129.1,4.49,,0.95,,0.227,0.12,1.01,,"25,52,53",2022-09-01,2022-09-01,2023-06-29 00:00:00,found in faint-star QLP search,5774,1,False,False,False -289666986,5775.01,,3,4,3,3,1,4,4,19.1,81.8,40.56,0,0,0,PC,PC,14.8831,0.007,,1,qlp-s53-faintsearch,QLP,03:44:57.63,77:27:52.57,23.072,0.059,-49.479,0.077,2459765.105281,0.0075919,2.4369467,0.000759,3.969,0.986,28.814425,1.940902,26190.0,1786.04,7.18163,1.90783,471.423,1298.0,18.0,190.462,1.624,3550.0,157.0,4.82,,0.41,0.01,,,0.399891,0.0208485,"52,53",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5775,1,False,False,False -310728245,5776.01,,3,4,3,3,1,4,4,24.7,61.3,119.35,2,2,0,PC,PC,12.1884,0.007,,1,qlp-s53-faintsearch,QLP,17:36:41.96,20:13:08.7,-2.632,0.034,-13.769,0.046,2459765.925587,0.0020661,4.1816344,3.69e-05,4.13,0.302,4.547889,0.004463,4180.0,4.11025,13.4666,0.754848,782.898,1473.0,16.0,676.452,10.4015,5900.0,117.7,3.98,0.08,1.76,0.08,,,1.07,0.140698,"26,52,53",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5776,1,False,False,False -459189798,5777.01,,2,4,2,2,3,4,4,2.3,30.1,6.94,0,2,1,PC,PC,11.8799,0.006,,1,qlp-s53-faintsearch,QLP,09:24:00.54,82:51:31.31,-19.388,0.038,15.405,0.036,2459758.926644,0.0035183,6.9171675,4.21e-05,2.038,0.352,1.358019,0.003322,1250.0,3.05962,2.51967,0.266397,21.9209,602.0,10.0,114.277,0.2885,4208.0,125.2,4.6,0.11,0.67,0.06,,,0.658,0.0802132,"19,20,26,40,47,53",2022-09-01,2022-09-01,2023-02-08 00:00:00,found in faint-star QLP search,5777,1,False,False,False -264468702,5778.01,,3,4,3,3,1,4,4,13.0,66.0,60.87,1,0,0,PC,PC,14.0296,0.007,,1,qlp-s53-faintsearch,QLP,21:42:56.99,83:18:42.21,29.928,0.064,10.192,0.056,2459762.212892,0.0019903,6.0962241,5.94e-05,1.866,0.2,23.620117,0.036169,21520.0,33.3127,9.0747,0.468899,11.1142,508.0,16.0,236.52,1.9345,3769.0,157.0,4.65,0.01,0.6,0.02,,,0.587376,0.0204603,"52,53",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5778,1,False,False,False -102846772,5779.01,,3,4,3,3,3,4,4,6.6,22.7,93.01,0,0,1,PC,PC,13.1293,0.007,,1,qlp-s53-faintsearch,QLP,08:34:28.59,70:02:53.22,0.057,0.02,3.926,0.027,2459754.990877,0.0044419,10.2515829,0.0001084,4.588,0.459,4.64602,0.005784,4270.0,5.3271,11.6535,,190.021,1034.0,14.0,1161.94,20.475,6080.0,122.0,3.97,,1.83,,,,1.14,,"20,40,47,53",2022-09-01,2022-09-01,2023-02-27 00:00:00,found in faint-star QLP search,5779,1,False,False,False -43333094,5780.01,,3,4,3,3,1,4,4,27.1,38.4,317.0,3,0,0,PC,PC,13.4747,0.007,,1,qlp-s53-faintsearch,QLP,17:23:52.76,19:55:16.27,1.537,0.021,-3.948,0.028,2459758.226742,0.0023843,7.5358996,3.4e-05,1.413,0.363,17.335726,0.213151,15840.0,196.3,16.6203,,20.3071,591.0,13.0,657.865,8.2,5306.0,122.0,4.29,,1.13,,,,0.91,,"25,52,53",2022-09-01,2022-09-01,2022-12-14 12:09:24,found in faint-star QLP search,5780,1,False,False,False -279920478,5781.01,,3,4,3,3,3,4,4,10.0,20.7,75.02,0,2,1,PC,PC,11.8987,0.008,,1,qlp-s53-faintsearch,QLP,02:32:27.85,80:44:47.01,-0.098,0.037,-1.32,0.035,2459765.779081,0.0100674,5.38265,6.86e-05,7.477,1.236,1.205837,0.001804,1110.0,1.66131,10.2347,,986.287,1561.0,18.0,675.318,9.374,4942.0,122.0,,,3.05,,,,,,"18,19,25,26,52,53",2022-09-01,2022-09-01,2023-01-15 00:00:00,found in faint-star QLP search,5781,1,False,False,False -158845573,5782.01,,3,4,3,3,4,4,4,5.7,28.4,20.84,0,2,2,PC,PC,10.6582,0.006,,1,qlp-s53-faintsearch,QLP,17:59:48.48,27:49:47.9,0.064,0.031,-2.971,0.037,2459766.339783,0.00564,5.0048582,8.41e-05,5.027,0.676,0.814608,0.001432,750.0,1.31869,4.81636,0.359119,795.439,1479.0,15.0,327.322,2.634,5641.8,140.5,3.91,0.08,1.83,0.1,0.116,0.013,1.001,0.122878,"26,40,53",2022-09-01,2022-09-01,2023-07-04 00:00:00,found in faint-star QLP search,5782,1,False,False,False -319684122,5783.01,,1,4,1,1,3,4,4,7.9,84.2,8.16,0,2,1,PC,PC,9.0745,0.006,,1,qlp-s54-ffi,QLP,19:19:01.38,09:28:42.29,61.064,0.072,29.448,0.067,2459793.278295,0.0032238,5.4459647,0.0013925,2.437,0.443,0.923268,0.001928,850.0,1.77553,2.77011,0.200008,158.296,988.0,14.0,78.454,0.28005,5483.0,126.8,4.48,0.08,0.93,0.05,,,0.96,0.125537,54,2022-09-22,2022-09-22,2022-12-14 12:09:24,potential L1 planet; crowded field,5783,1,False,False,False -302814895,5784.01,,5,5,5,5,5,5,5,6.7,40.5,26.92,2,15,0,PC,FP,9.96017,0.006,,1,qlp-s54-ffi,QLP,19:33:19.4,29:17:59.3,-11.751,0.091,-24.846,0.12,2459795.90211,0.0071079,8.6800186,0.0001078,2.41,0.467,0.945002,0.003983,870.0,3.66824,5.59572,0.467629,106.576,895.0,9.0,309.386,5.673,6521.0,144.2,4.02,0.09,1.86,0.08,,,1.341,0.218999,"14,40,41,54",2022-09-22,2022-09-22,2023-07-10 12:03:06,crowded field; low SNR,5784,1,False,False,False -456367532,5785.01,,3,4,3,3,3,4,4,,,27.05,2,16,1,PC,PC,10.421,0.018,,1,qlp-s55-ffi,QLP,20:22:16.34,16:36:51.5,-19.5,1.7,-9.5,1.7,2459819.460241,0.0012341,3.0783215,0.0001326,2.701,0.097,2.891906,0.000613,2660.0,0.564966,,,,,47.0,198.793,,,,,,,,,,,,"54,55",2022-09-22,2022-11-09,2023-01-04 00:00:00,no stellar parameters; somewhat high proper motion star; likely F dwarf host,5785,1,False,False,False -40292751,5786.01,,3,4,3,3,1,4,4,9.0,65.1,28.82,0,2,0,PC,PC,9.77301,0.006,,1,qlp-s54-ffi,QLP,19:33:17.36,30:42:15.29,-0.84,0.041,0.436,0.054,2459782.800518,0.004744,12.7792686,0.0001579,4.633,0.649,2.217164,0.003819,2040.0,3.51783,5.81625,0.379318,164.9,998.0,15.0,192.475,1.1305,6280.0,134.5,4.28,0.08,1.33,0.06,,,1.227,0.177094,"14,40,41,54",2022-09-22,2022-09-22,2022-12-14 12:09:24,crowded field; Rp underestimated due to detrending issues,5786,1,False,False,False -446616059,5787.01,,5,5,5,5,5,5,5,5.6,47.6,8.81,0,5,1,PC,FP,9.77017,0.006,,1,qlp-s54-ffi,QLP,19:23:13.28,11:58:44.88,3.874,0.062,-66.12,0.048,2459791.414807,0.0131891,3.0964979,0.0033017,4.721,1.217,0.551694,0.002781,508.0,2.56144,2.91202,0.266969,2916.73,2047.0,9.0,174.979,1.436,6030.0,132.8,4.25,0.08,1.31,0.06,,,1.118,0.153253,54,2022-09-22,2022-09-22,2022-12-14 12:09:24,crowded field; possible depth-aperture; low SNR,5787,1,False,False,False -42883782,5788.01,,1,4,1,1,2,4,4,1.4,33.5,4.61,0,2,1,PC,PC,9.6069,0.006,,1,qlp-s54-ffi,QLP,19:09:41.98,31:45:41.5,17.204,0.038,119.691,0.045,2459786.442643,0.0047912,16.2134274,0.0001179,3.551,0.552,0.575593,0.00124,530.0,1.14216,1.99447,0.13912,38.9693,696.0,11.0,97.614,0.22215,5664.0,118.1,4.58,0.08,0.86,0.04,,,1.01,0.125785,"14,40,41,54",2022-09-22,2022-09-22,2023-07-04 00:00:00,slight-depth aperture correlation,5788,1,True,False,True -42883782,5788.02,,1,4,1,1,2,4,4,1.8,32.5,2.94,0,2,1,PC,PC,9.6069,0.006,,2,qlp-s54-ffi,QLP,19:09:41.98,31:45:41.5,17.204,0.038,119.691,0.045,2459788.410948,0.0070709,6.3346129,0.0001121,3.341,0.42,0.358352,0.001128,330.0,1.03908,1.53236,0.121079,224.712,1078.0,9.0,97.614,0.22215,5664.0,118.1,4.58,0.08,0.86,0.04,,,1.01,0.125785,"14,40,41,54",2022-09-22,2022-09-22,2023-07-04 00:00:00,possible depth-aperture correlation; potential multi,5788,2,True,False,True -87216634,5789.01,,1,4,1,1,4,4,4,11.4,188.2,7.0,0,8,2,PC,PC,6.5715,0.006,,1,qlp-s54-ffi,QLP,20:11:05.63,16:11:22.97,-414.664,0.261,398.48,0.286,2459776.255982,0.0018004,12.9256051,0.0023249,1.691,0.136,0.858071,0.000591,790.0,0.544021,2.53704,0.14658,8.71939,478.0,21.0,20.4581,0.03785,5132.0,104.0,4.49,0.08,0.88,0.04,-0.04,0.1,0.87,0.107218,54,2022-09-22,2022-09-22,2023-07-07 00:00:00,bright host; first transit after momentum dump,5789,1,False,False,False -187333348,5790.01,,3,5,5,3,1,4,4,163.5,233.4,317.0,0,1,0,PC,APC,8.73331,0.007,,1,qlp-s54-ffi,QLP,19:27:23.35,-15:18:43.48,15.663,0.139,-19.508,0.106,2459793.865917,0.0029485,2.1981511,0.0005184,1.747,0.275,4.22085,0.010417,3880.0,9.59453,22.1803,1.64578,1034.78,1580.0,17.0,337.653,10.225,6898.0,195.6,3.53,0.09,3.49,0.18,,,1.501,0.256604,54,2022-09-22,2022-09-22,2022-12-14 12:09:24,possibly too large; evolved host,5790,1,False,False,False -110936761,5791.01,,3,4,3,3,3,4,4,14.4,70.8,19.52,1,2,1,PC,PC,10.4519,0.006,,1,qlp-s54-ffi,QLP,19:51:41.54,02:31:10.14,29.772,0.082,-2.327,0.047,2459793.645262,0.00551,2.2906144,0.0008934,1.949,0.432,1.510223,0.004663,1390.0,4.29441,4.657,0.363754,638.802,1400.0,11.0,198.263,2.309,5651.0,144.3,4.27,0.08,1.22,0.06,,,1.003,0.126015,54,2022-09-22,2022-09-22,2022-12-14 12:09:24,slight depth-aperture correlation; slight offset towards TIC 11093647,5791,1,False,False,False -95423778,5792.01,,3,4,3,3,3,4,4,67.5,206.7,39.18,5,2,1,PC,PC,10.492,0.006,,1,qlp-s54-ffi,QLP,19:42:47.48,03:34:00.04,35.026,0.058,6.163,0.04,2459795.466098,0.0011025,0.7036041,4.8e-05,0.81,0.091,3.654216,0.004527,3360.0,4.16915,7.01336,0.433816,1029.5,1578.0,34.0,183.242,1.211,5726.0,332.4,4.36,0.1,1.11,0.06,,,1.022,0.17654,54,2022-09-22,2022-09-22,2022-12-14 12:09:24,V-shaped,5792,1,False,False,False -398895470,5793.01,,5,5,5,5,5,5,5,120.9,159.0,317.0,0,0,0,KP,KP,10.5523,0.006,,1,spoc-s54-b02,SPOC,19:49:17.44,04:40:20.68,-3.279,0.059,-6.392,0.045,2459771.189014,0.00044099512,2.69403477519242,8.055804e-05,4.10735119666153,0.035454515,12.795483,0.141455,11715.9037128663,130.27632,18.2513754769384,0.786073,2485.07208321779,1800.75445226641,75.68031,348.185,4.473,6479.0,100.384,4.1239,0.0809691,1.65082001686096,0.0695603,0.13,0.05,1.322,0.20807,54,2022-09-22,2022-09-22,2022-12-14 12:09:24,HAT-P-41 b,5793,1,False,False,True -273874849,5794.01,TIC 273874849.01,5,5,5,5,5,5,5,54.3,51.3,317.0,0,4,5,KP,KP,13.6414,0.008,,1,spoc-s14-s55-b0A-KP,SPOC,19:53:34.86,47:48:53.95,-3.778,0.032,-6.365,0.035,2459825.552259,0.00090276625,1.48571479660261,6.878406e-06,2.32758517417478,0.098921664,23.380018,0.83937,21303.5958288643,772.7898,14.8585447757276,0.5625642,1530.90374357012,1595.35273362305,24.90904,720.753,10.343,5781.0,85.0,4.44616,,1.01033997535706,,0.26,0.1,1.04,,"41,54,56",2022-09-22,2023-03-15,2023-03-24 12:12:10,Kepler-17 b,5794,1,False,False,True -151724385,5795.01,,3,4,3,3,3,4,4,14.5,88.1,25.46,1,2,1,PC,PC,10.1872,0.006,,1,spoc-s54-b02,SPOC/QLP,20:19:28.51,-07:32:51.57,12.44,0.101,-29.672,0.056,2459770.6738,0.0016750058,6.14068821452177,0.00058107177,3.38613249660235,0.20500433,2.856657,0.160132,2627.6198191154,147.47656,5.42730174732845,0.71695817,240.672613749935,1004.56124201314,15.756585,156.53,1.584,5708.0,127.9,4.4,0.08,1.05042004585266,0.0539698,,,1.017,0.128916,54,2022-09-22,2022-09-22,2022-12-14 12:09:24,possible TCE from additional candidate at ~2757 TBJD,5795,1,False,False,True -391958006,5796.01,,5,5,5,5,5,5,5,200.5,214.1,317.0,0,0,0,KP,KP,11.6659,0.006,,1,spoc-s54-b02,SPOC,19:27:06.49,01:23:01.19,-3.409,0.084,-10.936,0.074,2459771.551589,0.00035913894,1.74301433466147,4.384931e-05,2.28721008515822,0.02649746,35.542347,0.431593,32205.6970804334,397.43283,16.9227096842305,1.7165856,932.907622950101,1409.54650806066,78.75304,213.283,2.4575,5529.0,105.517,4.48157,0.108347,0.937740981578827,0.0946382,-0.04,0.1,0.972,0.118715,54,2022-09-22,2022-09-22,2022-12-14 12:09:24,CoRoT-2 b,5796,1,False,False,True -374530847,5797.01,,5,5,5,5,5,5,5,135.5,336.7,98.11,0,0,1,KP,KP,10.9984,0.006,,1,spoc-s54-b02,SPOC,20:30:54.13,06:25:45.59,5.936,0.101,-48.279,0.082,2459770.231395,0.00028359247,2.15216301908733,3.9838524e-05,1.75319659945122,0.023042234,18.601442,0.194205,16986.6330129759,178.85364,11.9994427222452,0.6179496,473.405643041614,1189.67437495532,68.14215,153.242,1.6225,5147.0,99.0122,4.51349,0.0740522,0.854669988155365,0.0431834,0.1,0.1,0.869,0.101287,54,2022-09-22,2022-09-22,2022-12-14 12:09:24,WASP-2 b,5797,1,False,False,True -305243225,5798.01,,5,5,5,5,5,5,5,105.6,230.2,129.15,0,0,0,KP,KP,11.734,0.006,,1,spoc-s14-s55-b0A-KP,SPOC,20:24:29.74,16:45:43.73,13.263,0.05,-5.412,0.049,2459770.519892,0.00034024293,1.21291385424878,9.696501e-06,2.18627848147331,0.020771975,15.987632,0.137487,14617.2679583444,126.622475,14.1049577064471,0.74225575,2796.23419612522,1854.65500219754,126.76937,364.813,4.7125,5918.23,136.811,4.34796,0.0819789,1.15175998210907,0.0596583,0.156301,0.0280899,1.078,0.136618,"54,55",2022-09-22,2023-03-15,2023-03-24 12:12:10,HAT-P-23 b,5798,1,False,False,True -328081248,5799.01,TIC 328081248.01,1,4,1,1,4,4,4,5.6,110.5,4.62,2,0,2,PC,PC,11.1798,0.007,,1,spoc-s54-b02,SPOC,20:06:31.24,15:59:20.91,177.635,0.044,244.205,0.036,2459772.334479,0.0022545578,4.16454481953557,0.0007537476,1.57254224897364,0.18608984,2.839914,0.230794,2612.23974835356,212.54678,1.98813927846771,0.1830108,13.3265300551034,487.302927389249,12.77098,27.8123,0.02505,3521.0,157.0,4.8805,0.000953871,0.343358010053635,0.0102719,,,0.32653,0.020234,54,2022-09-22,2022-09-22,2023-07-07 00:00:00,potential multi,5799,1,False,False,True -151759246,5800.01,,1,4,1,1,1,4,4,21.1,162.8,8.43,0,2,0,PC,PC,8.6133,0.006,,1,spoc-s54-b02,SPOC/QLP,20:20:15.73,-07:24:42.93,51.783,0.07,-52.566,0.042,2459771.71321,0.0019416235,2.62826056730241,0.00035016955,1.24082107115955,0.11745854,0.79419,0.072791,731.208268383617,67.04048,2.83310166564593,0.27335745,274.162976866045,1037.81979812719,10.211792,42.9052,0.0796,4821.0,122.8,4.51,0.09,0.817034006118774,0.0545729,,,0.78,0.0973801,54,2022-09-22,2022-09-22,2022-12-14 12:09:24,,5800,1,False,False,True -243921117,5801.01,,5,5,5,5,5,5,5,217.3,565.1,95.36,0,0,1,KP,KP,10.3622,0.007,,1,spoc-s54-b02,SPOC/QLP,20:12:40.03,-02:08:39.97,-132.759,0.09,-50.429,0.063,2459770.026754,0.00012086364,3.06781598971137,2.4862398e-05,2.11033245289084,0.0107532535,38.160671,0.129028,34536.7848172645,118.83254,11.799686783638,0.353619,72.4419829803048,744.076060560673,216.99556,49.7876,0.11605,3965.0,157.0,4.62,0.01,0.636572003364563,0.0188828,,,0.616961,0.0202632,54,2022-09-22,2022-09-22,2022-12-14 12:09:24,WASP-80 b,5801,1,False,False,True -399402994,5802.01,,5,5,5,5,5,5,5,67.6,69.9,317.0,0,0,0,KP,KP,11.8886,0.006,,1,spoc-s54-b02,SPOC,20:16:49.92,03:17:38.22,27.196,0.076,-15.319,0.05,2459770.470612,0.000997253,2.71612982158826,0.00018054055,3.5299033351722,0.07179096,15.888668,0.628441,14527.4470152474,578.6479,14.5541659348438,0.7971057,1034.09110416948,1446.3035429977,20.856627,398.505,7.0105,5962.0,120.951,4.32795,0.0766859,1.18677997589111,0.056784,,,1.093,0.135176,54,2022-09-22,2022-09-22,2022-12-14 12:09:24,WASP-81 b,5802,1,False,False,True -466382581,5803.01,TIC 466382581.01,1,4,1,1,3,4,4,9.4,93.5,10.85,1,2,1,PC,PC,9.937,0.006,,1,qlp-s55-ffi,QLP,21:48:59.7,06:16:41.44,43.77,0.077,-37.309,0.076,2459818.861117,0.002445,5.3834388,0.0008955,1.247,0.186,1.869074,0.004552,1720.0,4.19257,3.27397,0.25872,26.7816,633.0,14.0,84.0126,0.4491,5134.0,121.2,4.61,0.08,0.76,0.05,,,0.87,0.10319,55,2022-10-12,2022-10-12,2022-12-14 12:09:24,potential L1 planet,5803,1,False,False,True -303055194,5804.01,,3,4,3,3,3,4,4,23.2,84.8,36.44,0,2,1,PC,PC,9.78095,0.006,,1,qlp-s55-ffi,QLP,22:02:41.09,11:59:27.7,14.211,0.078,-18.094,0.076,2459822.907614,0.0027262,1.7615631,0.0003172,1.171,0.25,1.140622,0.003104,1050.0,2.85857,6.69058,0.460359,636.482,1399.0,16.0,263.608,3.4985,6270.7,106.6,3.94,0.08,1.95,0.08,-0.413,0.008,1.223,0.173992,55,2022-10-12,2022-10-12,2023-01-25 00:00:00,potential coincident asteroid,5804,1,False,False,False -378390325,5805.01,,3,4,3,3,1,4,4,15.8,101.6,59.48,0,2,0,PC,PC,9.30608,0.006,,1,qlp-s55-ffi,QLP,20:09:38.07,34:34:21.78,43.6,0.039,16.478,0.045,2459811.93093,0.008128,20.5680002,0.0002349,5.421,0.837,0.858071,0.520239,790.0,479.043,8.94516,3.60294,1025.73,1576.0,12.0,195.711,1.0475,6809.0,156.3,4.26,0.09,1.49,0.06,,,1.466,0.253978,"14,15,41,55",2022-10-12,2022-10-12,2022-12-14 12:09:24,potential SV; variable host,5805,1,False,False,False -283621618,5806.01,,3,4,3,3,3,4,4,130.4,410.8,88.23,2,0,2,PC,PC,8.2942,0.007,,1,qlp-s56-ffi,QLP,21:56:24.43,20:40:40.73,31.426,0.072,2.967,0.074,2459850.812572,0.0002427,3.1856488,3.91e-05,1.304,0.194,5.169534,0.14573,4750.0,134.213,11.2665,0.529821,473.071,1299.0,109.0,119.199,0.826,6602.0,135.4,4.22,0.09,1.51,0.07,,,1.379,0.235022,"55,56",2022-10-12,2022-12-05,2022-12-16 12:08:26,V-shaped,5806,1,False,False,True -188646744,5807.01,,2,4,2,2,3,4,4,3.3,52.7,5.46,0,2,1,PC,PC,6.8806,0.006,,1,qlp-s56-ffi,QLP,20:34:16.13,43:21:38.48,14.776,0.045,-77.175,0.049,2459828.145567,0.0034764,14.2424506,0.0001498,4.051,0.873,0.184591,0.014218,170.0,13.0955,2.19717,0.128763,154.082,981.0,13.0,72.9611,0.14735,6815.9,110.6,4.17,0.08,1.65,0.06,,,1.47,0.239126,"15,41,55,56",2022-10-12,2022-12-05,2023-01-25 00:00:00,slight depth aperture correlation,5807,1,False,False,True -459735346,5808.01,TIC 459735346.01,1,4,1,1,3,4,4,5.0,66.0,6.41,0,2,1,PC,PC,8.9415,0.006,,1,qlp-s55-ffi,QLP,21:02:26.14,10:36:37.68,57.221,0.059,-17.038,0.067,2459812.954104,0.0028333,7.1683998,0.0026135,2.704,0.469,0.619046,0.001755,570.0,1.6163,2.40993,0.180558,128.076,937.0,12.0,79.953,0.25995,5707.0,127.0,4.5,0.08,0.94,0.05,,,1.02,0.127038,55,2022-10-12,2022-10-12,2022-12-14 12:09:24,potential L1 planet,5808,1,False,False,True -283471501,5809.01,,1,4,1,1,4,4,4,6.1,66.1,8.2,0,2,4,PC,PC,9.3206,0.006,,1,qlp-s56-ffi,QLP,20:58:11.78,40:11:32.15,233.28,2.0,203.2,2.0,2459841.548084,0.0015925,9.2103554,3.49e-05,2.387,0.69,0.858071,0.056961,790.0,52.4615,2.62813,0.175702,26.9787,634.0,18.0,,,4115.1,117.7,,,0.88,0.05,,,,,"15,55,56",2022-10-12,2022-12-05,2023-07-04 00:00:00,potential L1 planet,5809,1,False,False,False -379824738,5810.01,,3,4,3,3,4,4,4,55.4,64.3,317.0,0,2,3,PC,PC,10.291,0.008,,1,qlp-s55-ffi,QLP,21:38:23.76,23:07:08.37,-15.433,0.061,-32.7,0.064,2459820.455764,0.0008533,5.6852804,0.0004027,6.105,0.1,6.894555,0.000496,6330.0,0.456989,15.1292,0.728835,1023.84,1575.0,94.0,320.387,4.138,6142.0,131.9,3.96,0.08,1.87,0.09,,,1.16,0.163282,55,2022-10-12,2022-10-12,2023-06-20 00:00:00,evolved host,5810,1,False,False,False -331484419,5811.01,,3,4,3,3,4,4,4,33.0,85.7,77.15,0,2,3,PC,PC,7.74689,0.006,,1,qlp-s55-ffi,QLP,20:43:38.86,19:43:40.58,31.177,0.07,-8.753,0.069,2459823.651395,0.0037185,6.2571822,0.0015249,3.038,0.489,0.803742,0.001075,740.0,0.990435,10.4035,,196.549,1043.0,23.0,169.494,1.3355,5608.0,214.0,,,3.81,,,,,,55,2022-10-12,2022-10-12,2023-06-20 00:00:00,,5811,1,False,False,False -388909695,5812.01,,5,5,5,5,5,5,5,32.9,133.3,85.56,0,0,0,KP,KP,10.4106,0.006,,1,qlp-s55-ffi,QLP,21:50:16.8,04:11:40.46,26.43,0.071,2.87,0.071,2459818.905426,0.0011264,10.1472711,0.0007738,5.535,0.129,8.885006,0.001021,8150.0,0.940484,11.0655,0.566899,188.575,1032.0,81.0,194.333,1.554,5660.0,132.0,4.27,0.07,1.22,0.06,,,1.005,0.119412,55,2022-10-12,2022-10-12,2022-12-14 12:09:24,WASP-134 b (https://arxiv.org/abs/1812.09264),5812,1,False,False,False -92439980,5813.01,,2,4,2,2,2,4,4,1.7,36.1,9.5,0,2,2,PC,PC,9.77358,0.006,,1,qlp-s55-ffi,QLP,20:11:32.43,31:38:15.62,-25.168,0.047,-47.28,0.055,2459815.873897,0.0040385,27.0528213,0.000505,3.784,0.318,0.923268,0.001819,850.0,1.67531,3.03066,0.211154,14.0936,539.0,12.0,121.745,0.472,5615.0,128.5,4.42,0.08,1.01,0.05,,,0.994,0.124674,"14,41,54,55",2022-10-12,2022-10-12,2023-07-04 00:00:00,potential centroid offset,5813,1,False,False,False -427041513,5814.01,,2,4,2,2,2,4,4,3.8,44.3,6.98,0,2,2,PC,PC,10.4008,0.006,,1,qlp-s55-ffi,QLP,20:19:53.6,33:00:35.68,11.809,0.044,-1.481,0.043,2459822.972557,0.004265,6.2544051,3.26e-05,2.378,0.307,0.803742,0.001914,740.0,1.76259,2.54249,0.201728,68.0958,800.0,11.0,104.955,0.298,4986.0,129.0,4.52,0.09,0.83,0.05,,,0.825,0.0969224,"14,15,41,55",2022-10-12,2022-10-12,2023-06-20 00:00:00,,5814,1,False,False,False -375942197,5815.01,,5,5,5,5,5,5,5,40.0,42.3,317.0,0,0,0,KP,KP,11.5352,0.009,,1,spoc-s55-b02,SPOC,20:54:44.95,09:10:44.65,-6.192,0.064,-4.954,0.062,2459797.700003,0.0013888344,3.89938313864639,0.00043105666,5.1857346613628,0.12164902,7.072108,0.222686,6492.48433243335,205.08029,15.2636581817307,0.9159476,1703.24125493469,1638.47112258244,26.122198,568.42,11.694,6152.0,134.099,3.96619,0.0844973,1.86222004890442,0.0965226,,,1.17,0.156594,55,2022-10-12,2022-10-12,2022-12-14 12:09:24,WASP-176 b,5815,1,False,False,True -194076601,5816.01,TIC 194076601.01,3,4,3,3,1,4,4,13.7,80.0,110.48,1,1,0,PC,PC,11.2546,0.006,,1,qlp-s56-tois,SPOC,20:28:51.77,42:13:26.45,2.606,0.053,-1.444,0.058,2459842.062383,0.0017281,20.4282929,0.0001567,7.501,0.404,8.348756,0.256266,7660.0,236.002,12.8306,,559.996,1355.0,36.0,566.807,11.935,8991.0,123.0,4.45701,,1.47,,,,2.27,,"14,15,41,55,56",2022-10-12,2023-02-05,2023-02-09 12:10:04,,5816,1,False,False,True -418604868,5817.01,,1,4,1,1,4,4,4,4.8,60.6,9.44,0,2,3,PC,PC,8.0581,0.006,,1,spoc-s55-b02,SPOC,21:29:30.67,21:28:28.3,-10.357,0.113,-89.83,0.113,2459799.303854,0.0030843667,15.6146057515396,0.0042941086,5.8168055050842,0.51610607,0.507313,0.035432,467.14373068761,32.63327,3.02725840972123,1.1366028,126.863222012446,855.960421383929,13.417658,80.7542,0.3896,5809.0,117.775,4.17404,0.0730029,1.38206994533539,0.0642412,,,1.04,0.13121,55,2022-10-12,2022-10-12,2023-07-07 00:00:00,two stars in pixel,5817,1,False,False,True -283419843,5818.01,,5,5,5,5,5,5,5,51.5,58.6,317.0,0,0,0,KP,KP,12.5375,0.007,,1,spoc-s55-b02,SPOC,21:03:37.32,11:59:21.72,4.218,0.056,-6.154,0.054,2459799.022189,0.0012914063,2.6052673672121,0.00025804984,4.2452100139334,0.1025351,12.162936,0.367126,11139.9639243272,338.07855,17.8543699205546,1.0791512,2114.85562233163,1729.57711640474,19.833286,738.519,19.423,5916.0,122.303,4.02617,0.077383,1.66978001594543,0.0900829,,,1.08,0.129544,55,2022-10-12,2022-10-12,2022-12-14 12:09:24,HAT-P-65 b,5818,1,False,False,True -330218897,5819.01,TIC 330218897.01,2,4,2,2,2,4,4,4.6,39.5,8.53,0,2,1,PC,PC,10.828,0.006,,1,spoc-s55-b02,SPOC,21:45:48.72,23:33:37.75,-53.277,0.051,-76.039,0.057,2459797.705428,0.0037977363,3.42000733489216,0.0009200002,1.93391667220032,0.8544618,0.810309,0.114115,746.044173991156,105.098465,2.85209310984695,4.81077,443.254857393589,1170.26206012895,8.357875,188.762,1.12,5463.0,134.218,4.39104,0.0835532,1.03162002563477,0.0563442,,,0.955,0.120676,55,2022-10-12,2022-10-12,2023-06-20 00:00:00,,5819,1,False,False,True -459730973,5820.01,,5,5,5,5,5,5,5,58.1,69.5,317.0,0,0,0,KP,KP,11.07,0.008,,1,spoc-s55-b02,SPOC,21:02:07.67,07:03:22.61,-9.074,0.108,5.683,0.103,2459799.366946,0.0014609211,3.91568480467045,0.00045164445,3.58477598967792,0.08494597,7.264809,0.259705,6668.80077985208,239.16815,16.7083729108729,1.0933385,1704.49392304011,1638.77229757588,24.473438,466.433,19.156,6228.0,129.066,3.98845,0.0934681,1.83823001384735,0.113528,,,1.2,0.174653,55,2022-10-12,2022-10-12,2022-12-14 12:09:24,WASP-90 b,5820,1,False,False,True -354619337,5821.01,,5,5,5,5,5,5,5,231.1,349.3,317.0,0,0,2,KP,KP,8.08821,0.006,,1,spoc-s55-b02,SPOC/QLP,21:10:12.37,10:44:20.03,-5.719,0.1,5.379,0.099,2459798.285937,0.00015036986,2.14878719878411,2.0413783e-05,4.16714899208312,0.011060316,7.691108,0.030145,7058.74106838141,27.764378,17.4790409030282,0.5180879,8702.2893725468,2463.36138755156,236.9704,182.273,1.9425,7893.0,138.264,4.105,0.0759884,2.01566004753113,0.0594347,,,1.887,0.300321,55,2022-10-12,2022-10-12,2022-12-14 12:09:24,MASCARA-1 b,5821,1,False,False,True -466390120,5822.01,,5,5,5,5,5,5,5,67.3,59.6,317.0,0,0,0,KP,KP,12.0671,0.007,,1,spoc-s55-b02,SPOC,21:50:39.77,10:27:46.58,-5.753,0.068,-8.546,0.069,2459797.810597,0.00083140505,1.54872452039385,9.1189155e-05,2.82585311721689,0.06750932,10.76839,0.340541,9869.03189214112,313.60062,14.5061780147975,0.9901076,2978.20476659521,1884.11925604481,25.932486,523.337,16.812,5887.35,140.065,4.16889,0.0876321,1.41021001338959,0.089118,0.289,0.028,1.07,0.136216,55,2022-10-12,2022-10-12,2022-12-14 12:09:24,WASP-114 b,5822,1,False,False,True -248853232,5823.01,,5,5,5,5,5,5,5,250.1,681.6,101.85,0,0,0,KP,KP,8.8628,0.006,,1,spoc-s55-b02,SPOC/QLP,21:00:06.23,-05:05:41.49,33.676,0.08,-93.436,0.043,2459798.775459,0.00013197133,3.86814921752745,3.9323226e-05,2.16101945681072,0.010707278,18.90341,0.082277,17259.9935362439,75.777336,12.2658902844088,0.89079314,180.556378641292,934.916788310367,236.89902,49.9605,0.13165,4746.0,125.37,4.4323,0.0935477,0.877591013908386,0.0636256,,,0.76,0.0891518,55,2022-10-12,2022-10-12,2022-12-14 12:09:24,WASP-69 b,5823,1,False,False,True -272366748,5824.01,,5,5,5,5,5,5,5,15.5,43.1,126.98,0,0,1,KP,KP,14.8018,0.008,,1,spoc-s14-s55-b0A-KP,SPOC,19:45:34.37,45:34:06.72,2.16,0.052,-6.358,0.052,2459800.057422,0.005218857,3.85558968989324,4.9221235e-05,3.237964370373,0.37446895,18.410701,1.365653,16813.9237374172,1257.0226,13.9654621834279,1.28814,456.174963441532,1178.6981748376,11.369815,1257.16,48.67,5741.0,124.0,4.40631,,1.05268001556396,,,,1.03,,"41,55",2022-10-12,2023-03-15,2023-03-24 12:12:10,Kepler-731 b,5824,1,False,False,True -269243313,5825.01,TIC 269243313.01,2,4,2,2,3,4,4,4.4,45.7,13.25,0,2,1,PC,PC,9.95806,0.006,,1,spoc-s55-b02,SPOC,21:38:47.32,-00:02:47.24,40.545,0.081,-6.442,0.09,2459802.484617,0.003895778,9.73482949887001,0.0053758165,4.30673613238734,0.6352209,0.977353,0.126262,899.770546332309,116.28516,3.69596580151552,1.5816046,209.549050652676,970.378518701852,7.624511,182.264,1.3335,6115.71,112.541,4.33401,0.0751272,1.21045005321503,0.0528995,0.129,0.051,1.153,0.155436,55,2022-10-12,2022-10-12,2022-12-14 12:09:24,low signal-to-noise,5825,1,False,False,True -48253329,5826.01,,3,4,3,3,1,4,4,45.1,63.5,317.0,4,2,0,PC,PC,11.7134,0.01,,1,qlp-s54-faintsearch,QLP,19:52:43.54,-14:21:25.15,2.099,0.079,-1.135,0.037,2459788.107629,0.0017016,2.8140207,0.0004529,3.191,0.178,8.064323,0.296509,7400.0,273.058,17.2648,3.65891,2559.93,1981.0,28.0,774.122,27.84,7456.0,139.0,4.09,0.09,1.96,0.1,,,1.71,0.279573,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5826,1,False,False,False -369062542,5827.01,,3,4,3,3,1,4,4,29.2,30.0,317.0,1,0,0,PC,PC,12.9192,0.018,,1,qlp-s54-faintsearch,QLP,19:27:37.98,23:16:25.76,3.123,0.029,-4.591,0.031,2459788.904875,0.0031147,5.0493049,3.11e-05,3.885,0.249,8.556658,0.445482,7850.0,410.22,15.7942,4.01268,435.709,1272.0,18.0,614.225,7.7195,5821.0,169.3,3.97,0.08,1.76,0.09,,,1.05,0.133285,"14,40,41,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5827,1,False,False,False -351077390,5828.01,,3,4,3,3,2,4,4,14.7,67.7,18.34,0,2,2,PC,PC,12.2148,0.006,,1,qlp-s54-faintsearch,QLP,19:32:46.53,25:05:11.4,9.939,0.045,0.587,0.051,2459796.072414,0.0040072,1.1951761,1.06e-05,2.4,0.344,3.229435,0.263236,2970.0,242.42,4.46821,1.44581,2437.87,1957.0,14.0,264.73,2.0995,5313.0,191.0,4.56,0.09,0.83,0.05,,,0.915,0.124713,"14,40,41,54",2022-11-02,2022-11-02,2023-07-07 00:00:00,found in faint-star QLP search,5828,1,False,False,False -363029616,5829.01,,3,4,3,3,2,4,4,27.8,55.4,63.34,1,2,2,PC,PC,11.3492,0.006,,1,qlp-s54-faintsearch,QLP,20:18:49.63,23:18:51.52,26.687,0.048,-0.633,0.044,2459793.849156,0.0057855,1.3502386,8.7e-06,2.178,0.335,1.792944,0.178155,1650.0,164.073,9.28384,3.27914,1251.72,1657.0,11.0,418.945,6.2055,5015.0,231.5,,,2.29,0.15,,,,,"14,54",2022-11-02,2022-11-02,2023-07-07 00:00:00,found in faint-star QLP search,5829,1,False,False,False -224418572,5830.01,,3,4,3,3,1,4,4,16.5,42.2,58.97,0,2,0,PC,PC,11.8512,0.006,,1,qlp-s54-faintsearch,QLP,18:48:24.36,15:29:39.08,-3.182,0.069,-18.668,0.074,2459791.235591,0.0029381,2.8465928,1.99e-05,2.664,0.459,2.293324,0.181068,2110.0,166.756,8.8779,2.80583,536.42,1340.0,20.0,487.216,9.4445,5308.0,134.1,3.82,0.08,1.94,0.11,,,0.913,0.109566,"26,40,53,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search; crowded field,5830,1,False,False,False -308504559,5831.01,,3,4,3,3,1,4,4,46.5,127.2,102.04,1,2,0,PC,PC,10.9653,0.006,,1,qlp-s54-faintsearch,QLP,19:03:45.81,-00:25:40.16,5.106,0.094,-6.679,0.111,2459786.127171,0.0051638,3.7846792,0.0022298,2.51,0.43,6.392051,0.689732,5870.0,635.065,12.2675,4.34276,501.062,1318.0,11.0,324.532,5.747,6360.0,176.8,4.16,0.09,1.55,0.08,,,1.265,0.199777,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5831,1,False,False,False -287934343,5832.01,,3,4,3,3,1,4,4,25.6,76.8,123.34,0,0,0,PC,PC,12.776,0.012,,1,qlp-s54-faintsearch,QLP,20:03:59.28,21:12:59.43,-4.83,0.027,-10.405,0.026,2459795.478353,0.0024208,5.1357505,2.03e-05,3.504,0.211,12.62422,0.547736,11560.0,504.356,13.7192,3.22602,461.579,1291.0,22.0,675.49,9.178001,6301.0,144.4,4.32,0.09,1.28,0.06,,,1.24,0.191694,"14,41,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5832,1,False,False,False -213875310,5833.01,,3,4,3,3,1,4,4,43.1,103.5,122.45,1,0,0,PC,PC,13.1692,0.008,,1,qlp-s54-faintsearch,QLP,19:35:41.04,03:50:52.06,0.74,0.042,-8.281,0.026,2459793.44982,0.0066991,2.6721807,0.0011599,2.433,0.359,17.236441,1.697822,15750.0,1562.53,13.6986,,499.207,1316.0,12.0,509.036,7.148,5549.0,122.0,4.38,,1.06,,,,0.98,,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5833,1,False,False,False -281118572,5834.01,,3,4,3,3,1,4,4,71.5,187.4,102.88,2,0,0,PC,PC,12.231,0.006,,1,qlp-s54-faintsearch,QLP,19:37:22.67,06:40:49.03,-21.27,0.061,-31.98,0.05,2459792.712699,0.0013971,3.5242025,0.0004148,1.79,0.165,25.919453,1.408788,23590.0,1296.7,12.31,3.24802,60.7404,777.0,33.0,178.827,1.2555,4485.0,128.0,4.5,0.1,0.78,0.06,,,0.704,0.0861047,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5834,1,False,False,False -346859243,5835.01,,3,4,3,3,1,4,4,28.2,83.9,119.3,1,0,0,PC,PC,13.0949,0.006,,1,qlp-s54-faintsearch,QLP,18:43:26.14,21:52:11.19,6.303,0.017,-10.915,0.032,2459795.463879,0.0015577,6.4226101,4.04e-05,3.007,0.171,18.583071,0.814961,16970.0,750.325,13.4185,,78.3241,828.0,30.0,407.252,3.036,4977.0,122.0,4.37,,0.98,,,,0.822,,"53,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5835,1,False,False,False -354727907,5836.01,,3,4,3,3,1,4,4,13.9,125.1,92.72,0,0,0,PC,PC,14.5478,0.008,,1,qlp-s54-faintsearch,QLP,19:17:47.9,19:08:52.96,13.107,0.102,24.321,0.095,2459786.404289,0.0019758,8.4498763,7.32e-05,1.773,0.178,80.41661,7.113446,71390.0,6530.31,11.6649,3.64652,2.51961,350.0,15.0,145.911,1.345,3330.0,157.0,4.82,0.01,0.41,0.01,,,0.400431,0.0212314,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5836,1,False,False,False -395143000,5837.01,,3,4,3,3,1,4,4,34.8,104.1,115.68,1,0,0,PC,PC,12.4152,0.018,,1,qlp-s54-faintsearch,QLP,19:08:23.79,17:06:48.32,0.609,0.152,-6.017,0.155,2459795.48348,0.0018932,2.9665122,1.98e-05,3.346,0.181,8.961635,0.378923,8220.0,348.94,13.1813,3.13445,2634.75,1995.0,27.0,614.974,37.4135,7564.0,175.7,4.35,0.09,1.46,0.1,,,1.75,0.292726,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5837,1,False,False,False -222485202,5838.01,,3,4,4,3,1,4,4,61.1,159.6,112.03,6,0,0,PC,PC,12.8557,0.006,,1,qlp-s54-faintsearch,QLP,18:59:21.75,09:07:48.61,6.41,0.044,9.661,0.054,2459791.742675,0.0009788,3.5982966,0.000288,1.614,0.122,31.471222,1.506385,28570.0,1386.47,13.0275,3.24111,43.9473,717.0,19.0,218.118,1.484,4458.0,137.7,4.54,0.1,0.75,0.06,,,0.699,0.0814823,54,2022-11-02,2022-11-02,2023-06-28 00:00:00,found in faint-star QLP search,5838,1,False,False,False -355732304,5839.01,,3,5,5,3,1,4,4,44.2,51.5,317.0,0,2,0,PC,APC,12.3367,0.011,,1,qlp-s54-faintsearch,QLP,19:04:07.61,17:00:11.53,0.681,0.053,-3.812,0.057,2459794.235051,0.0024512,2.5411063,2.02e-05,3.491,0.181,9.50914,0.416985,8720.0,383.984,16.4931,3.92609,2348.06,1939.0,19.0,730.258,19.9975,6657.0,134.9,4.08,0.09,1.78,0.09,,,1.4,0.235451,54,2022-11-02,2022-11-01,2023-04-10 12:03:47,found in faint-star QLP search,5839,1,False,False,False -68345291,5840.01,,3,4,3,3,1,4,4,22.5,30.6,317.0,0,0,0,PC,PC,13.4506,0.008,,1,qlp-s54-faintsearch,QLP,18:41:14.01,31:32:26.92,0.701,0.025,-3.467,0.028,2459793.910188,0.0020211,4.006489,3.94e-05,3.949,0.2,12.62422,0.546806,11560.0,503.5,16.2059,,1122.8,1612.0,24.0,1176.96,20.76,6600.0,122.0,4.23,,1.49,,,,1.38,,"53,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5840,1,False,False,False -350882505,5841.01,,3,4,3,3,2,4,4,18.4,49.6,78.92,0,0,1,PC,PC,12.1201,0.011,,1,qlp-s54-faintsearch,QLP,19:00:59.15,22:29:56.18,2.365,0.029,-2.755,0.041,2459795.704556,0.0027827,4.2025514,4.99e-05,4.028,0.306,3.654216,0.185703,3360.0,171.024,10.5624,2.64061,646.84,1404.0,20.0,500.44,6.678,5678.0,136.9,3.93,0.08,1.8,0.09,,,1.01,0.126711,"53,54",2022-11-02,2022-11-02,2023-07-07 00:00:00,found in faint-star QLP search,5841,1,False,False,False -23937608,5842.01,,3,4,3,3,2,4,4,9.7,45.2,29.33,2,0,2,PC,PC,12.5432,0.007,,1,qlp-s54-faintsearch,QLP,18:24:20.49,34:33:08.61,3.454,0.029,-15.374,0.033,2459791.805537,0.0034453,2.8091879,3.07e-05,1.927,0.311,3.349228,0.307651,3080.0,283.317,5.92308,1.92215,392.13,1239.0,12.0,460.272,3.8875,5821.0,130.1,4.44,0.07,1.03,0.05,,,1.05,0.127735,"26,40,53,54",2022-11-02,2022-11-02,2023-06-20 00:00:00,found in faint-star QLP search,5842,1,False,False,False -24113219,5843.01,,3,4,3,3,1,4,4,22.2,59.6,108.41,1,0,0,PC,PC,13.3247,0.009,,1,qlp-s54-faintsearch,QLP,18:26:27.77,30:23:37.02,-3.666,0.054,-16.627,0.05,2459795.126527,0.0024724,4.197866,4.14e-05,3.223,0.215,11.625105,0.623126,10650.0,573.756,12.6868,,356.665,1210.0,20.0,680.835,14.6115,5581.0,122.0,4.27,,1.21,,,,0.99,,"53,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5843,1,False,False,False -230292034,5844.01,,3,4,3,3,1,4,4,6.6,32.3,33.62,0,2,0,PC,PC,11.9963,0.007,,1,qlp-s54-faintsearch,QLP,18:25:26.23,47:10:08.99,9.663,0.034,5.628,0.037,2459791.961303,0.0022423,6.0671557,3.23e-05,2.12,0.33,2.260683,0.179582,2080.0,165.387,6.40583,1.94645,98.668,878.0,16.0,465.656,4.072,5737.0,125.9,4.18,0.08,1.36,0.07,,,1.02,0.121001,"14,25,26,40,52,53,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5844,1,False,False,False -209935997,5845.01,,3,4,3,3,1,4,4,28.7,46.9,317.0,2,1,0,PC,PC,11.4599,0.009,,1,qlp-s54-faintsearch,QLP,19:52:24.41,16:40:06.22,-1.356,0.044,-5.46,0.039,2459794.325106,0.0035195,1.9081122,2.47e-05,2.094,0.345,2.891906,0.268902,2660.0,247.637,18.193,5.8006,5740.22,2424.0,15.0,1465.57,70.45,8944.0,142.4,3.75,0.08,3.3,0.18,,,2.26,0.322225,"41,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5845,1,False,False,False -75784122,5846.01,,3,4,3,3,1,4,4,17.1,25.1,317.0,1,0,0,PC,PC,12.8895,0.007,,1,qlp-s54-faintsearch,QLP,18:05:13.94,41:48:28.86,3.918,0.026,8.116,0.027,2459794.162274,0.0013966,10.5353472,3.05e-05,1.098,0.134,10.440533,0.879101,9570.0,809.354,15.2166,4.44592,9.27536,486.0,20.0,784.865,8.9,6044.0,122.9,4.19,0.08,1.4,0.07,,,1.12,0.144966,"25,26,40,52,53,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5846,1,False,False,False -95574586,5847.01,,3,4,3,3,1,4,4,14.9,60.3,33.3,0,2,0,PC,PC,11.8895,0.006,,1,qlp-s54-faintsearch,QLP,19:43:24.12,03:01:53.24,5.986,2.148,-4.943,2.148,2459795.998964,0.008442,2.5641981,0.0011269,4.469,0.504,3.087878,0.249353,2840.0,229.636,6.33611,,2863.8,,11.0,351.781,,6014.0,,,,1.23,,,,,,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5847,1,False,False,False -808243,5848.01,,3,4,3,3,1,4,4,51.5,57.2,317.0,1,0,0,PC,PC,13.4236,0.009,,1,qlp-s54-faintsearch,QLP,20:02:57.08,-00:02:48.55,4.103,0.046,-3.005,0.03,2459795.467392,0.0046766,1.5101054,0.0006067,2.993,0.302,14.306126,1.151599,13090.0,1060.1,19.2985,,3194.9,2094.0,14.0,1095.42,34.075,5964.0,122.0,4.0,,1.74,,,,1.09,,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5848,1,False,False,False -71459120,5849.01,,3,4,4,3,1,4,4,62.1,174.6,113.0,4,2,0,PC,PC,11.2543,0.006,,1,qlp-s54-faintsearch,QLP,20:14:15.24,-10:29:52.75,-6.567,0.064,-18.351,0.038,2459781.133754,0.0012246,3.9964264,0.0008216,1.722,0.201,13.481337,0.866922,12340.0,798.146,13.0504,3.60201,132.764,945.0,14.0,273.452,2.9205,5771.0,130.0,4.34,0.08,1.14,0.06,,,1.034,0.129057,54,2022-11-02,2022-11-02,2023-07-11 00:00:00,found in faint-star QLP search,5849,1,False,False,False -151728428,5850.01,,3,5,5,3,1,4,4,178.1,492.1,125.23,2,1,0,PC,APC,10.9951,0.008,,1,qlp-s54-faintsearch,QLP,20:19:31.85,-08:17:54.68,21.376,0.076,-37.573,0.046,2459786.271014,0.0013008,3.9997367,0.0004463,0.384,0.111,8.129955,29.834179,7460.0,27104.2,13.8899,11.5657,3.03288,367.0,13.0,64.193,0.17225,3827.0,157.0,4.62,0.01,0.64,0.02,,,0.618234,0.020339,54,2022-11-02,2022-11-02,2023-06-04 12:02:58,found in faint-star QLP search,5850,1,False,False,False -277329402,5851.01,,3,4,3,3,1,4,4,28.4,93.0,91.87,0,0,0,PC,PC,12.8137,0.013,,1,qlp-s54-faintsearch,QLP,19:30:43.46,12:23:35.06,9.649,0.035,4.265,0.03,2459790.948702,0.0032896,4.5049415,0.0013669,2.372,0.304,15.748263,1.220934,14400.0,1123.89,11.5788,3.68457,181.815,1022.0,13.0,433.416,4.437,5697.0,138.8,4.45,0.08,0.99,0.05,,,1.01,0.12923,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5851,1,False,False,False -387844266,5852.01,,3,4,3,3,1,4,4,49.3,138.9,113.03,1,0,0,PC,PC,13.4781,0.006,,1,qlp-s54-faintsearch,QLP,20:26:06.75,01:46:33.42,34.568,0.056,11.435,0.046,2459788.337798,0.0022037,3.9956793,0.001151,2.056,0.197,42.491282,2.981047,38380.0,2741.88,13.077,,51.5714,746.0,15.0,255.965,2.08,4348.0,122.0,4.62,,0.67,,,,0.68,,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5852,1,False,False,False -278623780,5853.01,,3,4,3,3,1,4,4,58.7,167.9,110.4,2,2,0,PC,PC,11.9781,0.006,,1,qlp-s54-faintsearch,QLP,19:04:56.33,18:06:49.01,-7.489,0.061,-23.145,0.055,2459793.844498,0.000957,3.7219898,1.13e-05,2.306,0.125,17.35779,0.679295,15860.0,625.458,12.8025,2.78041,257.512,1116.0,57.0,293.498,3.576,5806.0,171.3,4.47,0.08,0.98,0.05,,,1.044,0.130265,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5853,1,False,False,False -346154016,5854.01,,3,4,3,3,1,4,4,43.0,39.3,317.0,1,0,0,PC,PC,12.647,0.006,,1,qlp-s54-faintsearch,QLP,18:40:11.66,20:14:10.83,1.525,0.1,-2.294,0.109,2459795.758929,0.0011823,4.449914,1.07e-05,2.449,0.099,14.812307,0.466536,13550.0,429.603,14.3475,2.89892,105.034,891.0,41.0,385.952,9.9125,4910.0,136.4,4.19,0.09,1.2,0.08,,,0.804,0.100445,"26,40,53,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5854,1,False,False,False -41422753,5855.01,,5,5,5,5,5,5,5,48.5,146.4,100.13,1,3,2,PC,FP,12.3924,0.006,,1,qlp-s54-faintsearch,QLP,19:36:01.95,32:12:52.58,31.57,0.037,10.179,0.046,2459792.210191,0.0032393,2.4710528,1.71e-05,3.033,0.243,5.900696,8.601844,5420.0,7891.29,12.1002,9.53041,5313.3,2378.0,22.0,438.754,4.7475,6114.0,133.2,4.52,0.08,0.97,0.05,,,1.152,0.15946,"14,40,41,54",2022-11-02,2022-11-02,2023-07-04 12:03:07,found in faint-star QLP search,5855,1,False,False,False -3680800,5856.01,,3,4,3,3,1,4,4,17.5,72.4,18.09,0,2,0,PC,PC,11.0263,0.006,,1,qlp-s54-faintsearch,QLP,19:20:56.84,-07:49:48.78,10.259,0.068,3.431,0.06,2459795.607863,0.0062872,0.5498864,0.0001996,1.588,0.343,1.205837,0.151412,1110.0,139.446,4.44804,1.76365,7481.4,2590.0,11.0,298.032,3.704,5808.0,151.3,4.2,0.08,1.35,0.07,,,1.044,0.1376,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search; low SNR,5856,1,False,False,False -336072306,5857.01,,3,4,3,3,1,4,4,20.0,57.0,89.49,1,0,0,PC,PC,13.4236,0.007,,1,qlp-s54-faintsearch,QLP,18:18:15.54,42:27:37.03,-3.314,0.034,-16.528,0.034,2459790.127873,0.0014592,3.415047,1.06e-05,1.406,0.334,9.388665,0.994944,8610.0,915.958,11.3277,,131.926,944.0,19.0,667.063,10.104,5449.0,122.0,4.31,,1.12,,,,0.95,,"14,40,52,53,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5857,1,False,False,False -256046749,5858.01,,3,4,3,3,1,4,4,23.4,92.4,84.24,0,3,0,PC,PC,12.3224,0.006,,1,qlp-s54-faintsearch,QLP,19:59:11.66,23:03:18.21,-21.652,0.048,-30.153,0.045,2459778.065425,0.0036433,7.1476512,7.91e-05,3.03,0.205,14.768282,0.817118,13510.0,752.31,11.017,2.89267,86.2156,848.0,20.0,318.912,4.0785,5287.0,134.8,4.45,0.09,0.94,0.05,,,0.908,0.120834,"41,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5858,1,False,False,False -114947483,5859.01,,3,4,3,3,1,4,4,16.3,70.3,33.18,2,0,0,PC,PC,13.1338,0.007,,1,qlp-s54-faintsearch,QLP,19:01:26.81,29:01:17.53,-21.405,0.03,31.972,0.036,2459794.556309,0.0015386,3.3787501,1.1e-05,1.837,0.207,10.341878,0.676997,9480.0,623.343,6.36345,1.73476,39.4252,698.0,19.0,165.237,0.6525,3769.0,157.0,4.63,0.01,0.63,0.02,,,0.610297,0.0202476,"14,40,53,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5859,1,False,False,False -462372373,5860.01,,3,5,5,3,1,4,4,33.1,97.4,111.92,0,2,0,PC,APC,12.0019,0.006,,1,qlp-s54-faintsearch,QLP,20:19:41.54,11:03:10.25,-29.872,0.057,3.225,0.049,2459795.355448,0.0018832,5.2498931,0.000853,1.666,0.409,10.035005,1.048035,9200.0,964.81,12.9409,4.39803,109.163,900.0,21.0,442.817,7.9605,5988.0,154.6,4.27,0.08,1.27,0.07,,,1.102,0.149224,54,2022-11-02,2022-11-02,2023-04-28 12:03:02,found in faint-star QLP search,5860,1,False,False,False -11034516,5861.01,,3,4,3,3,1,4,4,27.3,59.3,317.0,0,0,0,PC,PC,12.5375,0.006,,1,qlp-s54-faintsearch,QLP,19:51:55.23,24:02:17.67,15.795,0.026,-6.332,0.029,2459771.875591,0.0012766,14.3033451,3.32e-05,4.769,0.169,28.747531,0.803801,26130.0,740.054,17.1437,3.24781,72.8052,813.0,63.0,432.745,3.7585,5862.0,173.3,4.42,0.08,1.05,0.05,,,1.06,0.141587,"14,41,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5861,1,False,False,False -20988926,5862.01,,3,5,5,3,1,4,4,15.6,20.1,317.0,0,2,0,PC,APC,12.0997,0.009,,1,qlp-s54-faintsearch,QLP,19:00:14.94,34:15:29.8,1.283,0.04,-0.862,0.047,2459791.246452,0.0024549,5.3194765,2.86e-05,4.653,0.347,3.95929,0.177166,3640.0,163.163,15.9815,3.82501,1271.35,1663.0,25.0,1276.28,40.715,6987.0,134.5,3.77,0.09,2.66,0.14,,,1.53,0.252829,"14,40,41,53,54",2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5862,1,False,False,False -345205395,5863.01,,3,4,3,3,1,4,4,71.9,162.9,125.07,1,0,0,PC,PC,12.7354,0.006,,1,qlp-s54-faintsearch,QLP,20:02:42.44,00:13:42.89,1.401,0.035,-6.454,0.023,2459788.352176,0.0013052,2.8492565,0.0003913,1.846,0.136,26.486705,1.445925,24100.0,1330.86,13.9182,3.60049,129.049,938.0,30.0,276.469,1.593,4829.0,139.1,4.46,0.09,0.87,0.06,,,0.783,0.0893179,54,2022-11-02,2022-11-02,2022-12-14 12:09:24,found in faint-star QLP search,5863,1,False,False,False -184531966,5864.01,,3,4,3,3,1,4,4,11.7,48.7,96.07,0,0,0,PC,PC,12.9564,0.012,,1,qlp-s55-faintsearch,QLP,19:45:56.11,38:21:10.56,-1.814,0.031,-9.91,0.03,2459818.412119,0.0028345,10.4453589,7.65e-05,4.548,0.391,10.21035,0.612675,9360.0,564.135,11.824,0.739761,150.959,976.0,19.0,659.756,8.9535,5961.0,149.7,4.32,0.08,1.19,0.06,,,1.09,0.142372,"14,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5864,1,False,False,False -383216635,5865.01,,3,4,3,3,1,4,4,15.4,52.8,72.99,0,2,0,PC,PC,11.3471,0.008,,1,qlp-s55-faintsearch,QLP,20:44:53.13,06:38:28.38,-12.11,0.06,-31.942,0.05,2459815.836665,0.0036222,6.6314176,0.0037924,2.372,0.866,3.349228,0.363664,3080.0,334.891,10.0835,0.797922,165.896,999.0,15.0,482.143,9.6975,6044.0,128.6,4.0,0.08,1.75,0.09,,,1.12,0.144113,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5865,1,False,False,False -341297143,5866.01,,5,5,5,5,5,5,5,52.5,151.2,116.48,0,3,0,PC,FP,11.1838,0.007,,1,qlp-s55-faintsearch,QLP,20:45:13.5,12:10:03.39,9.033,0.049,-2.139,0.037,2459813.907629,0.0008213,3.8421028,0.0003158,1.184,0.315,9.72822,0.595592,8920.0,548.41,13.2581,0.741939,120.549,923.0,39.0,356.406,4.456,6247.0,127.8,4.28,0.09,1.32,0.06,,,1.21,0.177054,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5866,1,False,False,False -380517859,5867.01,,3,4,3,3,1,4,4,59.9,127.1,75.59,1,0,0,PC,PC,14.9156,0.007,,1,qlp-s55-faintsearch,QLP,20:14:40.09,30:46:33.81,22.136,0.07,-4.718,0.076,2459823.570109,0.005557,1.109435,0.0002011,2.723,0.862,29.98574,22.335388,27240.0,20361.5,10.2843,2.90063,1164.27,1627.0,16.0,254.311,3.175,3613.0,157.0,4.75,0.01,0.49,0.02,,,0.488511,0.0214147,"54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5867,1,False,False,False -236158940,5868.01,,3,4,3,3,1,4,4,28.5,71.4,127.53,0,2,0,PC,PC,11.3283,0.015,,1,qlp-s55-faintsearch,QLP,20:53:40.69,34:21:05.84,-2.639,0.049,-5.657,0.052,2459817.28767,0.0018336,2.677573,1.8e-05,2.885,0.286,3.599748,0.142585,3310.0,131.317,14.0246,0.769821,1812.44,1817.0,24.0,756.82,18.5205,6875.8,104.8,3.85,0.09,2.41,0.12,0.067,0.016,1.49,0.252106,"41,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5868,1,False,False,False -210169818,5869.01,,3,4,3,3,1,4,4,29.6,39.9,317.0,1,0,0,PC,PC,13.2483,0.007,,1,qlp-s55-faintsearch,QLP,20:28:23.79,18:14:32.75,5.217,0.033,-0.356,0.036,2459818.89692,0.0032834,3.3879742,0.0009584,4.127,0.299,10.901047,0.559803,9990.0,515.465,19.4699,,1395.05,1702.0,19.0,1368.83,44.075,6236.0,122.0,3.94,,1.95,,,,1.21,,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5869,1,False,False,False -305375697,5870.01,,3,5,5,3,1,4,4,,,82.63,0,2,0,PC,PC,10.7974,0.006,,1,qlp-s55-faintsearch,QLP,21:38:23.86,11:00:24.83,14.732,0.066,-9.233,0.064,2459817.799423,0.001966,0.0,0.0,3.516,0.339,4.063907,0.295334,3736.0,271.976,10.8653,0.571561,17.2269,567.0,18.0,344.862,5.4395,6336.8,107.1,4.2,0.08,1.48,0.06,0.265339,0.0109431,1.254,0.194241,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,single transit; found in faint-star QLP search,5870,1,False,True,False -373816781,5871.01,,3,4,3,3,1,4,4,108.6,136.0,317.0,1,0,0,PC,PC,12.7966,0.014,,1,qlp-s55-faintsearch,QLP,21:23:24.09,39:48:46.93,-8.779,0.022,-19.339,0.023,2459822.281701,0.0006817,1.343636,1.4e-06,2.275,0.074,28.680641,0.773878,26070.0,712.514,18.3699,0.883768,2519.68,1973.0,57.0,581.579,5.332,6339.0,147.0,4.45,0.08,1.1,0.05,,,1.25,0.182288,"15,16,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5871,1,False,False,False -138671052,5872.01,,3,4,3,3,1,4,4,10.9,48.5,30.24,1,2,0,PC,PC,12.3295,0.006,,1,qlp-s55-faintsearch,QLP,21:20:32.25,46:49:01.47,14.669,0.052,-14.354,0.051,2459820.867127,0.0031188,2.2425137,8.3e-06,2.062,0.342,2.968113,0.210551,2730.0,193.906,6.01656,0.384434,830.151,1495.0,16.0,466.611,6.445,6032.0,165.2,4.37,0.08,1.14,0.05,,,1.119,0.147797,"15,16,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5872,1,False,False,False -353146308,5873.01,,3,4,3,3,1,4,4,237.7,325.3,101.55,2,0,0,PC,PC,14.0135,0.007,,1,qlp-s55-faintsearch,QLP,21:39:56.69,01:17:36.13,77.926,0.159,-27.626,0.182,2459823.922122,0.0010199,0.4131063,2.79e-05,0.368,0.085,24.086255,16.79242,21940.0,15347.4,12.2118,1.95241,111.259,904.0,25.0,175.022,3.2755,3621.0,157.0,4.74,0.01,0.5,0.02,,,0.499385,0.0213841,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5873,1,False,False,False -376454594,5874.01,,3,4,3,3,1,4,4,32.6,94.0,76.36,1,1,0,PC,PC,12.3072,0.008,,1,qlp-s55-faintsearch,QLP,21:20:37.1,01:48:14.53,15.224,0.063,-8.849,0.055,2459820.144262,0.001353,2.5784481,0.0003127,1.253,0.195,8.304992,0.587649,7620.0,541.098,10.3952,0.680806,147.884,971.0,22.0,406.631,6.7765,5512.0,125.9,4.33,0.08,1.12,0.06,,,0.97,0.122405,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5874,1,False,False,False -283165117,5875.01,,3,4,3,3,1,4,4,11.7,48.4,52.43,0,0,0,PC,PC,13.1099,0.007,,1,qlp-s55-faintsearch,QLP,21:25:29.73,20:03:32.99,-4.951,0.037,-14.121,0.038,2459821.117967,0.0054101,5.216581,0.0022915,3.314,0.583,7.692484,0.720207,7060.0,663.115,8.2634,,213.2,1064.0,11.0,454.912,5.5295,5248.0,122.0,4.42,,0.96,,,,0.9,,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5875,1,False,False,False -106114491,5876.01,,5,5,5,5,5,5,5,8.3,45.7,42.06,0,3,0,PC,FP,10.6372,0.006,,1,qlp-s55-faintsearch,QLP,20:04:19.36,32:30:05.83,3.752,0.075,13.328,0.068,2459813.860054,0.0040267,9.7216312,0.000124,3.272,0.681,1.988717,0.186425,1830.0,171.689,7.28362,0.54134,176.156,1014.0,13.0,387.926,9.017,6702.0,182.2,4.13,0.09,1.7,0.08,,,1.422,0.245281,"14,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5876,1,False,False,False -282890159,5877.01,,3,4,3,3,1,4,4,17.4,25.2,317.0,0,1,0,PC,PC,12.0836,0.063,,1,qlp-s55-faintsearch,QLP,19:58:07.06,27:19:36.88,-0.499,0.054,-5.657,0.052,2459820.307042,0.0028693,6.9100016,3.91e-05,4.536,0.511,4.689636,0.263932,4310.0,243.061,15.2568,0.803365,1742.51,1799.0,18.0,970.989,35.9905,8722.0,717.2,3.99,0.07,2.47,0.09,,,2.19,0.371781,"14,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5877,1,False,False,False -247172524,5878.01,,3,4,3,3,1,4,4,63.5,70.6,317.0,1,0,0,PC,PC,12.8056,0.009,,1,qlp-s55-faintsearch,QLP,20:55:43.51,29:49:06.75,-3.502,0.023,-12.159,0.026,2459820.871737,0.000738,3.4363074,4.5e-06,2.861,0.063,30.733811,0.647212,27910.0,595.927,14.7953,0.882413,274.056,1133.0,77.0,350.804,2.439,5213.0,130.5,4.53,0.09,0.85,0.05,,,0.89,0.11652,"15,41,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5878,1,False,False,False -258037656,5879.01,,3,4,3,3,1,4,4,22.9,107.3,67.35,0,0,0,PC,PC,14.3602,0.008,,1,qlp-s56-tois,QLP,21:53:24.43,21:24:50.98,15.357,0.147,-55.36,0.154,2459848.100684,0.0015072,4.0331416,0.0002239,1.348,0.146,41.825335,2.65891,37790.0,2445.95,9.63078,0.467401,7.64407,463.0,24.0,167.333,2.742,3355.0,157.0,4.76,0.01,0.48,0.02,,,0.477221,0.0210374,"55,56",2022-11-08,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search,5879,1,False,False,False -184521624,5880.01,,3,4,3,3,1,4,4,26.8,30.1,317.0,0,0,0,PC,PC,13.3573,0.007,,1,qlp-s55-faintsearch,QLP,19:45:52.46,36:09:01.39,4.036,0.031,-1.248,0.03,2459819.765194,0.0021348,3.1162505,1.77e-05,3.289,0.317,12.448485,0.675231,11400.0,621.717,15.0692,,1071.51,1593.0,22.0,943.441,17.7785,6244.0,122.0,4.22,,1.42,,,,1.21,,"14,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5880,1,False,False,False -360142739,5881.01,,3,4,3,3,1,4,4,23.3,20.1,317.0,0,0,0,PC,PC,12.5366,0.01,,1,qlp-s55-faintsearch,QLP,19:46:25.66,36:57:09.93,0.965,0.029,0.475,0.033,2459821.497839,0.0027755,2.2377411,1.35e-05,4.079,0.717,3.95929,0.266901,3640.0,245.795,14.7763,0.938981,3548.41,2150.0,23.0,1101.02,21.61,6148.0,133.3,3.72,0.08,2.46,0.12,,,1.17,0.155485,"14,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search; possible centroid shift toward TIC 360142751; crowded field,5881,1,False,False,False -232941965,5882.01,,1,4,1,3,2,4,4,30.4,71.4,130.11,1,12,1,PC,PC,10.6338,0.006,,1,qlp-s55-faintsearch,QLP,20:47:33.27,34:44:14.97,-14.123,0.036,-17.042,0.036,2459818.905315,0.0065211,7.1487697,8.07e-05,6.864,2.244,2.064861,2.467586,1900.0,2270.15,14.1861,5.37763,4792.5,2317.0,10.0,416.104,3.9625,5706.0,131.0,3.7,0.08,2.35,0.11,,,1.017,0.129447,"15,41,55",2022-11-08,2022-11-08,2023-06-07 00:00:00,found in faint-star QLP search,5882,1,False,False,False -283759999,5883.01,,3,5,5,3,1,4,4,59.9,112.8,131.26,2,0,0,PC,APC,12.5701,0.007,,1,qlp-s55-faintsearch,QLP,21:03:31.14,18:41:47.48,-5.887,0.051,-5.955,0.057,2459823.64314,0.0017083,0.5223032,5.47e-05,0.685,0.311,4.776875,2.517797,4390.0,2316.29,14.2556,2.99684,3259.1,2104.0,18.0,882.718,25.143,6285.0,122.9,4.06,0.09,1.72,0.09,,,1.23,0.182347,55,2022-11-08,2022-11-08,2023-06-16 12:02:56,found in faint-star QLP search,5883,1,False,False,False -13574009,5884.01,,3,4,3,3,1,4,4,39.2,45.4,317.0,0,2,0,PC,PC,10.5002,0.007,,1,qlp-s55-faintsearch,QLP,21:21:48.13,23:55:35.23,0.35,0.061,-12.947,0.057,2459822.29685,0.0010563,5.8311038,1.4e-05,3.283,0.251,4.613309,0.149387,4240.0,137.581,15.2747,0.752351,354.772,1209.0,34.0,440.704,6.6415,6390.0,122.4,3.83,0.09,2.29,0.1,,,1.28,0.206744,"15,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5884,1,False,False,False -233788275,5885.01,,3,4,3,3,1,4,4,15.5,34.7,128.99,0,0,0,PC,PC,12.5816,0.014,,1,qlp-s55-faintsearch,QLP,20:11:59.89,55:26:06.1,5.389,0.027,5.903,0.026,2459820.312506,0.0051407,4.7264391,2.64e-05,3.196,0.794,3.425467,0.333145,3150.0,306.791,14.0851,1.00505,506.011,1321.0,16.0,1036.16,14.935,6132.0,151.4,3.75,0.08,2.37,0.11,,,1.16,0.167612,"14,15,16,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5885,1,False,False,False -15682927,5886.01,,3,4,3,3,1,4,4,30.8,81.8,92.31,1,1,0,PC,PC,12.3886,0.03,,1,qlp-s55-faintsearch,QLP,20:27:57.32,37:08:46.8,-2.162,0.051,-4.982,0.051,2459823.159717,0.0016785,0.9655766,2.4e-06,1.224,0.24,3.414575,0.325762,3140.0,299.993,11.5845,0.754258,3796.11,2186.0,16.0,832.543,23.6575,7542.0,254.4,4.11,0.09,1.92,0.08,,,1.74,0.310692,"14,15,41,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5886,1,False,False,False -277987172,5887.01,,3,4,3,3,1,4,4,11.8,41.6,79.72,0,1,0,PC,PC,12.4276,0.018,,1,qlp-s55-faintsearch,QLP,20:11:02.82,19:42:24.3,-7.444,0.041,-9.412,0.035,2459824.052187,0.0037945,6.3989216,3.59e-05,2.781,0.977,4.166353,0.437218,3830.0,402.612,10.6347,0.805931,280.377,1139.0,13.0,726.81,16.0295,6243.0,169.8,4.12,0.09,1.59,0.08,,,1.21,0.1777,"14,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5887,1,False,False,False -273780062,5888.01,,3,4,3,3,1,4,4,6.2,29.6,70.31,0,0,0,PC,PC,12.6212,0.019,,1,qlp-s55-faintsearch,QLP,19:52:51.47,42:30:11.74,-5.336,0.025,-12.299,0.027,2459796.460281,0.0043067,15.2501659,0.0001178,4.331,0.555,4.96228,0.38483,4560.0,354.379,9.87708,0.651861,63.3289,785.0,12.0,629.405,5.8745,5796.0,168.7,4.14,0.08,1.44,0.07,,,1.04,0.134569,"14,15,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5888,1,False,False,False -383214426,5889.01,,3,4,3,3,1,4,4,80.3,176.8,105.56,1,0,0,PC,PC,12.9722,0.006,,1,qlp-s55-faintsearch,QLP,20:44:50.77,08:50:57.67,13.416,0.037,-9.561,0.026,2459823.071657,0.0009423,2.4013188,0.0001794,1.988,0.096,30.09736,0.970447,27340.0,893.415,12.4643,1.19727,118.916,919.0,56.0,200.902,1.048,4224.0,126.0,4.54,0.11,0.72,0.07,,,0.661,0.0834588,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5889,1,False,False,False -279179610,5890.01,,3,4,3,3,1,4,4,16.1,63.1,89.59,0,0,0,PC,PC,13.1251,0.012,,1,qlp-s55-faintsearch,QLP,20:55:36.8,46:45:30.52,-3.48,0.031,-14.101,0.031,2459823.01973,0.0046898,5.9029732,3.49e-05,3.337,0.451,9.213453,0.792911,8450.0,730.031,11.3389,,547.695,1347.0,12.0,665.349,8.177,7142.0,122.0,4.49,,1.18,,,,1.59,,"15,16,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5890,1,False,False,False -202941251,5891.01,,3,4,3,3,1,4,4,31.6,34.2,317.0,0,2,0,PC,PC,11.3909,0.006,,1,qlp-s55-faintsearch,QLP,20:17:48.05,30:41:14.46,-3.092,0.035,-4.766,0.044,2459823.631848,0.001396,4.1784844,1.1e-05,4.307,0.261,5.442298,0.147177,5000.0,135.546,15.7612,0.833721,1094.98,1602.0,32.0,688.501,12.0035,6283.0,153.1,3.77,0.09,2.4,0.12,,,1.228,0.18957,"15,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5891,1,False,False,False -375199523,5892.01,,5,5,5,5,5,5,5,37.7,66.3,120.83,0,2,0,PC,FP,11.6866,0.007,,1,qlp-s55-faintsearch,QLP,20:37:22.38,06:09:10.25,7.265,0.051,-1.6,0.046,2459822.064534,0.0023093,1.9447712,0.0004041,1.345,0.625,3.131432,0.509948,2880.0,469.569,13.5597,1.39117,425.174,1265.0,16.0,593.047,11.4055,5369.0,126.4,3.68,0.08,2.32,0.14,,,0.93,0.119039,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5892,1,False,False,False -321790238,5893.01,,3,5,5,3,1,4,4,,,79.6,0,1,0,PC,PC,11.4879,0.009,,1,qlp-s55-faintsearch,QLP,21:11:42.35,08:58:50.42,-6.13,0.05,-10.665,0.051,2459817.171119,0.0021939,0.0,0.0,5.718,0.37,8.717536,0.405437,7997.0,373.352,10.6236,0.586733,193.477,1039.0,26.0,320.641,3.5175,5887.0,133.9,4.35,0.08,1.15,0.06,,,1.07,0.138167,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,single transit; found in faint-star QLP search,5893,1,False,True,False -398038296,5894.01,,3,4,3,3,1,4,4,27.0,70.7,109.37,0,0,0,PC,PC,13.1645,0.008,,1,qlp-s55-faintsearch,QLP,20:51:07.4,12:48:22.74,-7.722,0.04,-9.089,0.037,2459815.862759,0.0025562,3.0076713,0.0007027,3.094,0.304,11.723877,0.648178,10740.0,596.816,12.7756,,708.388,1437.0,20.0,682.724,10.8555,5704.0,122.0,4.27,,1.22,,,,1.02,,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5894,1,False,False,False -243464977,5895.01,,3,4,3,3,2,4,4,25.7,71.5,85.8,1,2,1,PC,PC,12.0995,0.006,,1,qlp-s55-faintsearch,QLP,20:38:22.82,21:01:18.81,0.886,0.065,-18.852,0.064,2459817.305132,0.001705,3.6491012,1.24e-05,1.691,0.2,6.402972,0.417451,5880.0,384.413,11.0954,0.759646,144.518,965.0,17.0,486.566,11.0335,5628.0,128.8,4.14,0.08,1.4,0.08,,,0.997,0.126375,"14,41,55",2022-11-08,2022-11-08,2023-07-07 00:00:00,found in faint-star QLP search,5895,1,False,False,False -14956304,5896.01,,3,4,3,3,1,4,4,26.7,68.2,37.83,0,0,0,PC,PC,14.6656,0.008,,1,qlp-s55-faintsearch,QLP,20:26:02.24,36:12:55,-6.691,0.068,23.803,0.076,2459823.401763,0.0037529,0.9965843,1.46e-05,2.633,0.396,15.616079,1.327353,14280.0,1221.79,6.86149,0.420721,815.756,1488.0,14.0,284.245,3.675,3662.0,157.0,4.67,0.01,0.58,0.02,,,0.570613,0.0209103,"41,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5896,1,False,False,False -305612552,5897.01,,3,4,3,3,1,4,4,20.6,78.7,90.92,0,0,0,PC,PC,12.7968,0.006,,1,qlp-s55-faintsearch,QLP,20:27:21.6,14:37:08.13,4.242,0.037,-6.552,0.03,2459813.353902,0.0020487,6.9349089,0.0009887,3.234,0.331,16.244096,0.821479,14850.0,756.324,11.4838,0.741725,112.177,906.0,17.0,409.12,4.4795,5364.0,130.7,4.46,0.08,0.94,0.05,,,0.929,0.118184,"54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5897,1,False,False,False -467211520,5898.01,,3,4,3,3,1,4,4,7.3,23.2,73.08,0,0,0,PC,PC,12.5037,0.01,,1,qlp-s55-faintsearch,QLP,19:46:33.99,55:00:59.79,-1.913,0.027,10.823,0.025,2459823.601388,0.0042824,9.7884653,5.62e-05,3.894,0.638,2.815705,0.199734,2590.0,183.945,10.0684,0.673128,96.5028,873.0,15.0,715.744,7.8355,5369.0,128.7,3.84,0.08,1.92,0.1,,,0.93,0.117715,"14,16,40,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5898,1,False,False,False -126171392,5899.01,,5,5,5,5,5,5,5,47.9,106.5,95.71,0,0,0,PC,FP,12.935,0.009,,1,qlp-s55-faintsearch,QLP,21:01:00.7,29:42:08.21,-12.419,0.029,-15.77,0.026,2459823.081326,0.0016523,0.7835688,2.4e-06,1.095,0.199,8.108077,0.704856,7440.0,648.986,11.8563,0.785012,1710.79,1791.0,18.0,675.895,7.8055,5932.0,131.2,4.26,0.08,1.28,0.06,,,1.08,0.141001,"15,41,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,V-shaped; found in faint-star QLP search,5899,1,False,False,False -224635135,5900.01,,3,4,3,3,1,4,4,28.6,31.8,317.0,0,0,0,PC,PC,13.3192,0.008,,1,qlp-s55-faintsearch,QLP,20:49:16.01,22:02:39.23,1.013,0.038,-1.03,0.03,2459820.275438,0.0030999,2.4667486,1.11e-05,2.984,0.661,7.659681,0.580094,7030.0,534.144,18.8159,,1380.7,1698.0,16.0,1406.96,49.535,5960.0,122.0,3.78,,2.22,,,,1.09,,"14,15,41,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search; variable star,5900,1,False,False,False -294173437,5901.01,,3,4,3,3,1,4,4,12.8,34.6,97.15,0,0,0,PC,PC,12.5454,0.007,,1,qlp-s55-faintsearch,QLP,20:03:04.53,50:30:27.89,-6.544,0.031,-4.755,0.031,2459820.580689,0.004657,5.555905,3.62e-05,3.459,1.218,4.079164,0.438894,3750.0,404.155,11.9323,0.962172,409.941,1253.0,22.0,853.753,12.221,5867.0,120.0,3.88,0.08,1.95,0.09,,,1.06,0.136665,"14,15,16,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5901,1,False,False,False -65737977,5902.01,,3,4,3,3,1,4,4,22.2,67.8,121.67,1,3,0,PC,PC,12.2866,0.02,,1,qlp-s55-faintsearch,QLP,20:42:02.88,40:18:09.26,-4.058,0.044,-7.545,0.042,2459823.039452,0.0017143,4.8292589,1.58e-05,4.084,0.183,6.457581,0.251157,5930.0,231.297,13.6377,0.657524,1106.76,1606.0,29.0,760.606,14.3725,7035.0,182.5,4.18,0.09,1.67,0.07,,,1.55,0.270213,"15,41,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5902,1,False,False,False -60542708,5903.01,,3,4,3,3,1,4,4,27.1,66.6,94.6,0,0,0,PC,PC,12.5937,0.008,,1,qlp-s55-faintsearch,QLP,21:22:12.57,13:07:47.04,-4.652,0.033,-24.138,0.038,2459819.281287,0.0025011,2.4707357,0.0005616,1.597,0.278,6.053538,0.583115,5560.0,536.925,11.779,0.86953,343.055,1198.0,12.0,682.522,9.8805,5869.0,123.4,4.1,0.08,1.53,0.08,,,1.06,0.136513,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5903,1,False,False,False -408317165,5904.01,,3,4,3,3,2,4,4,14.0,38.8,120.9,0,0,2,PC,PC,13.4171,0.007,,1,qlp-s55-faintsearch,QLP,21:06:44.82,03:11:08.04,4.421,0.053,-1.145,0.045,2459820.780325,0.0086621,5.6567374,0.0029378,3.223,0.742,8.491001,0.941701,7790.0,866.963,13.5941,,296.507,1156.0,11.0,1036.7,32.645,5975.7,35.0,4.09,,1.57,,-0.196,0.033,1.1,,55,2022-11-08,2022-11-08,2023-07-07 00:00:00,found in faint-star QLP search,5904,1,False,False,False -341299943,5905.01,,3,4,3,3,1,4,4,44.1,121.2,88.75,1,0,0,PC,PC,12.8127,0.006,,1,qlp-s55-faintsearch,QLP,20:45:51.91,13:50:26.24,-15.083,0.039,-18.692,0.027,2459821.999767,0.0012439,3.0233509,0.0002749,2.369,0.113,18.781895,0.600133,17150.0,552.59,11.3795,0.744185,201.365,1049.0,37.0,296.925,2.1515,4881.0,123.7,4.5,0.08,0.84,0.05,,,0.797,0.089854,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5905,1,False,False,False -276376289,5906.01,TIC 276376289.01,3,5,5,3,1,4,4,0.1,29.1,317.0,0,1,0,PC,APC,11.2922,0.006,,1,qlp-s55-faintsearch,QLP,20:53:57.5,42:44:36.7,13.597,0.045,1.373,0.044,2458716.926433,1.24e-05,1084.2279131,1.1e-06,3.518,0.012,13.498926,0.408806,12356.0,376.453,18.6491,0.928509,0.0182835,102.0,32.0,283.463,2.103,5809.0,127.0,4.35,0.08,1.12,0.06,,,1.044,0.128073,"15,55",2022-11-08,2022-11-08,2023-05-16 12:02:49,period likely shorter than max max possible value of ~1084 days; found in faint-star QLP search,5906,1,False,False,True -387318486,5907.01,,3,4,3,3,1,4,4,40.3,111.3,52.6,2,3,0,PC,PC,12.4411,0.007,,1,qlp-s55-faintsearch,QLP,21:00:52.77,17:06:59.1,-5.998,0.053,-2.876,0.053,2459823.85046,0.001892,0.6583175,7.97e-05,0.796,0.417,4.068266,2.583051,3740.0,2376.25,8.31454,2.06084,2467.92,1963.0,18.0,456.741,7.1535,5766.0,124.5,4.38,0.08,1.08,0.05,,,1.03,0.123735,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5907,1,False,False,False -452483795,5908.01,,5,5,5,5,5,5,5,21.6,71.8,92.69,0,0,0,PC,FP,13.0008,0.02,,1,qlp-s55-faintsearch,QLP,20:15:34.52,24:31:16.16,0.49,0.027,-9.983,0.027,2459823.08489,0.0029474,2.4515393,1.25e-05,3.005,0.83,8.19559,0.738534,7520.0,679.984,11.6029,,3082.85,2075.0,19.0,841.296,15.005,7143.0,122.0,4.4,,1.32,,,,1.59,,"14,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5908,1,False,False,False -354489554,5909.01,,3,4,3,3,1,4,4,14.8,40.0,111.51,0,0,0,PC,PC,12.6132,0.008,,1,qlp-s55-faintsearch,QLP,20:58:22.28,10:24:17.48,-3.968,0.045,-8.022,0.045,2459819.17807,0.0040501,4.7729363,0.0020072,3.344,0.412,4.678732,0.36009,4300.0,331.6,12.9614,0.896604,517.385,1328.0,14.0,987.706,25.725,6269.0,127.2,3.94,0.09,1.96,0.1,,,1.22,0.171525,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5909,1,False,False,False -273774284,5910.01,,3,4,3,3,1,4,4,3.1,20.1,56.12,1,0,0,PC,PC,13.4177,0.017,,1,qlp-s55-faintsearch,QLP,19:51:55.79,42:45:16.3,2.177,0.031,-1.418,0.027,2459821.923032,0.011025,17.2182695,0.0004637,7.888,1.174,5.234991,0.530656,4810.0,488.633,8.64247,,236.125,1092.0,10.0,932.309,14.3535,6330.0,122.0,4.31,,1.29,,,,1.25,,"14,15,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5910,1,False,False,False -239361732,5911.01,,3,4,3,3,1,4,4,25.0,72.6,99.98,0,0,0,PC,PC,12.8343,0.02,,1,qlp-s55-faintsearch,QLP,20:44:52.45,42:53:35.72,1.725,0.028,1.947,0.029,2459821.653139,0.0015737,4.009823,1.17e-05,4.015,0.194,8.447231,0.26993,7750.0,248.584,12.1613,0.751637,1001.22,1567.0,24.0,786.279,10.298,6304.5,110.3,4.27,0.09,1.35,0.08,0.271,0.03,1.24,0.186938,"15,41,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5911,1,False,False,False -16538820,5912.01,,3,4,3,3,1,4,4,16.7,37.1,130.8,0,2,0,PC,PC,12.1486,0.007,,1,qlp-s56-tois,QLP,21:46:25.05,25:06:46.88,-0.079,0.071,-0.676,0.078,2459840.917097,0.0030685,6.9038328,0.0009844,5.483,0.508,4.122758,0.196778,3790.0,181.223,14.2131,1.06344,426.677,1266.0,22.0,802.137,38.604,5612.0,120.5,3.71,0.09,2.31,0.16,,,0.99,0.120773,"55,56",2022-11-08,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search,5912,1,False,False,False -289313987,5913.01,,3,5,5,3,1,4,4,31.9,57.0,317.0,0,2,0,PC,APC,11.7685,0.008,,1,qlp-s55-faintsearch,QLP,20:59:27.78,20:05:59.69,-6.694,0.054,-16.349,0.06,2459819.81816,0.0017667,10.1522322,0.0014062,6.614,0.252,10.518368,0.268982,9641.0,247.711,19.4581,0.966704,466.261,1294.0,24.0,694.7,17.846,6509.0,127.7,4.0,0.09,1.92,0.09,,,1.34,0.213269,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5913,1,False,False,False -187416256,5914.01,,3,4,3,3,1,4,4,19.9,72.2,59.68,1,2,0,PC,PC,12.0389,0.007,,1,qlp-s55-faintsearch,QLP,21:27:35.33,-08:21:08.8,6.388,0.071,5.65,0.067,2459816.804217,0.0022564,4.3887257,0.0009467,3.243,0.444,6.337445,0.357729,5820.0,329.426,8.92241,0.565729,359.493,1213.0,14.0,369.604,5.576,5561.0,123.9,4.32,0.08,1.13,0.06,,,0.98,0.127229,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5914,1,False,False,False -329709756,5915.01,,3,4,3,3,1,4,4,10.9,74.4,111.18,0,0,0,PC,PC,14.3196,0.007,,1,qlp-s56-tois,QLP,20:59:00.41,47:32:31.06,-35.412,0.05,32.729,0.056,2459849.154995,0.0028093,12.5482879,0.0012589,3.396,0.269,54.845585,3.00329,49260.0,2762.31,13.0082,0.600255,8.90508,481.0,22.0,273.689,2.295,3923.0,157.0,4.66,0.01,0.59,0.02,,,0.576314,0.0208602,"55,56",2022-11-08,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search,5915,1,False,False,False -305506996,5916.01,,3,4,4,3,1,4,4,44.1,125.8,82.33,2,0,0,PC,PC,14.5249,0.008,,1,qlp-s55-faintsearch,QLP,21:41:11.88,09:35:56.59,-8.933,0.12,-25.592,0.127,2459817.689666,0.0018781,2.3682389,0.0006554,1.866,0.228,54.206258,4.024369,48700.0,3699.72,10.9197,0.601007,48.4913,735.0,16.0,199.724,3.35,3504.0,157.0,4.75,0.01,0.49,0.02,,,0.483724,0.0213656,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5916,1,False,False,False -239529652,5917.01,,3,4,3,3,1,4,4,14.0,50.9,66.28,0,0,0,PC,PC,12.7031,0.031,,1,qlp-s55-faintsearch,QLP,20:03:13.53,25:10:02.88,2.746,0.028,2.456,0.026,2459816.841312,0.0030522,4.0387941,2.22e-05,3.537,0.4,6.053538,0.319069,5560.0,293.83,9.54371,0.558434,850.594,1504.0,19.0,654.081,7.4525,6345.0,221.7,4.31,0.1,1.31,0.06,,,1.26,0.215516,"14,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5917,1,False,False,False -305790119,5918.01,,3,4,3,3,1,4,4,37.6,101.0,93.74,3,0,0,PC,PC,12.8978,0.008,,1,qlp-s55-faintsearch,QLP,20:28:29.33,14:33:50.01,0.613,0.034,-1.966,0.031,2459821.637072,0.0018964,2.0353259,0.0002942,2.032,0.162,13.140607,0.706007,12030.0,650.045,11.6988,0.685824,675.543,1420.0,24.0,537.542,6.689,5771.0,126.4,4.41,0.08,1.05,0.05,,,1.03,0.130033,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5918,1,False,False,False -165948070,5919.01,,3,4,3,3,1,4,4,20.7,43.8,115.2,0,2,0,PC,PC,12.2869,0.013,,1,qlp-s55-faintsearch,QLP,21:08:37.85,37:44:59.24,0.707,0.035,6.67,0.037,2459815.454832,0.0033183,4.3686174,2.68e-05,2.943,0.532,4.057368,0.344007,3730.0,316.792,13.2129,1.00629,277.556,1137.0,13.0,704.54,12.0125,5393.0,144.0,3.76,0.08,2.13,0.12,,,0.94,0.125144,"15,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search; multiple stars in pixel,5919,1,False,False,False -467006627,5920.01,,3,4,3,3,1,4,4,10.7,48.4,77.99,0,2,0,PC,PC,11.499,0.009,,1,qlp-s55-faintsearch,QLP,20:51:26.52,02:36:58.58,10.154,0.07,-2.905,0.044,2459801.155922,0.0028493,15.4159906,0.0043856,2.127,0.337,4.896839,0.412647,4500.0,379.99,10.5168,0.752094,18.6278,578.0,11.0,453.294,8.6465,6120.0,137.2,4.12,0.09,1.56,0.08,,,1.15,0.159648,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,period may be half; found in faint-star QLP search,5920,1,False,False,False -286545058,5921.01,,3,4,3,3,2,4,4,14.4,15.5,317.0,0,0,2,PC,PC,13.0598,0.007,,1,qlp-s55-faintsearch,QLP,20:51:56.91,19:33:59.19,3.42,0.034,-3.525,0.022,2459819.63719,0.008144,5.0114216,0.0035527,4.514,0.568,5.376829,0.490129,4940.0,451.324,15.3662,,788.546,1476.0,11.0,1329.58,35.935,6152.0,122.0,3.82,,2.22,,,,1.17,,55,2022-11-08,2022-11-08,2023-07-07 00:00:00,found in faint-star QLP search,5921,1,False,False,False -364192929,5922.01,,3,4,3,3,1,4,4,24.2,24.0,317.0,0,0,0,PC,PC,13.3113,0.008,,1,qlp-s55-faintsearch,QLP,21:18:07.38,-04:26:50.43,9.953,0.063,-18.909,0.048,2459820.922318,0.0062928,5.2079858,0.0030699,3.795,0.574,9.322957,0.907563,8550.0,835.547,16.7817,,261.968,1120.0,11.0,914.716,30.0265,5204.1,46.2,3.88,,1.79,,-0.275197,0.0444981,0.88,,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5922,1,False,False,False -60491424,5923.01,,3,4,3,3,1,4,4,24.4,66.5,118.73,0,0,0,PC,PC,12.7861,0.007,,1,qlp-s55-faintsearch,QLP,21:20:44.54,16:39:17.26,0.332,0.097,0.779,0.086,2459817.155209,0.0023692,4.0252588,0.0010445,3.596,0.366,9.793952,0.559663,8980.0,515.336,13.4189,0.871884,692.888,1429.0,23.0,742.549,24.7075,6059.0,125.8,4.2,0.09,1.4,0.08,,,1.13,0.152996,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5923,1,False,False,False -289125016,5924.01,,3,4,3,3,1,4,4,22.8,23.8,317.0,0,2,0,PC,APC,11.429,0.007,,1,qlp-s55-faintsearch,QLP,20:57:58.68,19:16:43.79,-1.735,0.07,-1.282,0.073,2459822.527363,0.0053233,6.2043746,0.0019373,5.957,0.792,4.76597,0.262279,4380.0,241.539,14.9548,1.03506,911.223,1530.0,14.0,707.092,23.3235,6122.0,128.4,3.71,0.08,2.49,0.14,,,1.16,0.156635,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5924,1,False,False,False -345193111,5925.01,,3,4,3,3,1,4,4,23.2,88.7,97.23,1,2,0,PC,PC,12.2493,0.011,,1,qlp-s55-faintsearch,QLP,20:55:03.6,12:04:57.2,3.906,0.066,-7.455,0.071,2459814.45684,0.0010244,6.1606297,0.0008487,2.218,0.193,11.164285,0.502197,10230.0,462.434,11.9381,0.711123,134.424,948.0,27.0,496.639,14.0075,6352.0,135.1,4.42,0.09,1.14,0.06,,,1.26,0.187473,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5925,1,False,False,False -372831381,5926.01,,3,4,4,3,1,4,4,20.1,88.1,42.97,3,2,0,PC,PC,12.0025,0.006,,1,qlp-s55-faintsearch,QLP,20:32:18.83,15:30:11.09,3.698,0.053,1.283,0.045,2459823.759309,0.0019942,3.8116176,0.0005676,1.997,0.202,7.145894,0.324327,6560.0,298.672,7.38288,0.439224,157.644,987.0,31.0,275.103,2.7525,5430.0,123.7,4.52,0.08,0.89,0.05,,,0.946,0.114021,55,2022-11-08,2022-11-08,2023-06-20 00:00:00,found in faint-star QLP search,5926,1,False,False,False -163164300,5927.01,,3,4,3,3,1,4,4,24.4,72.4,107.46,0,2,0,PC,PC,12.143,0.007,,1,qlp-s55-faintsearch,QLP,21:04:34,34:20:40.27,-8.847,0.032,-13.498,0.04,2459817.035918,0.0022797,3.7306955,1.89e-05,3.657,0.343,6.68697,0.400044,6140.0,368.386,12.6264,0.716047,1136.26,1617.0,17.0,700.098,11.285,6503.0,123.4,4.17,0.09,1.56,0.07,,,1.33,0.20851,"15,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5927,1,False,False,False -387318409,5928.01,,3,4,3,3,1,4,4,25.6,74.4,105.5,0,0,0,PC,PC,12.7,0.007,,1,qlp-s55-faintsearch,QLP,21:00:43.08,17:10:45.68,-16.207,0.052,-27.668,0.063,2459818.598577,0.0023825,3.246565,0.0006776,3.478,0.47,9.673446,0.513259,8870.0,472.617,12.5001,0.713017,1210.17,1643.0,27.0,722.174,16.142,6277.0,120.0,4.29,0.08,1.32,0.06,,,1.23,0.179684,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5928,1,False,False,False -92217989,5929.01,,3,4,3,3,1,4,4,21.7,26.5,317.0,0,0,0,PC,PC,12.9153,0.013,,1,qlp-s55-faintsearch,QLP,20:10:32.98,30:32:56.99,1.349,0.025,-0.933,0.028,2459816.456562,0.0033227,4.6079976,0.0007923,3.148,0.36,8.425347,0.589733,7730.0,543.017,15.6586,0.964766,605.972,1382.0,14.0,1011.55,17.268,6662.0,146.7,4.08,0.08,1.79,0.08,,,1.41,0.221483,"54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5929,1,False,False,False -88266880,5930.01,,3,4,3,3,1,4,4,28.8,78.8,97.23,1,2,0,PC,PC,11.0235,0.006,,1,qlp-s55-faintsearch,QLP,20:16:12.95,16:27:02.23,7.038,0.049,9.382,0.051,2459817.983009,0.0027457,3.7984372,0.0004825,4.539,0.454,4.896839,0.191953,4500.0,176.78,11.9632,0.65892,1535.28,1743.0,18.0,486.583,8.181,6289.0,137.0,3.95,0.09,1.94,0.09,,,1.231,0.184644,"54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5930,1,False,False,False -24833662,5931.01,,3,4,3,3,1,4,4,17.5,60.0,67.88,0,0,0,PC,PC,12.4083,0.009,,1,qlp-s55-faintsearch,QLP,21:09:53.64,-07:24:54.52,-18.929,0.08,-22.709,0.053,2459823.70837,0.004228,4.2447791,0.0010879,2.896,0.759,6.315603,0.575492,5800.0,529.907,9.6255,0.71862,409.43,1253.0,19.0,501.965,10.825,5763.0,125.9,4.26,0.08,1.24,0.06,,,1.03,0.126095,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5931,1,False,False,False -405122173,5932.01,,3,4,3,3,1,4,4,36.5,46.7,317.0,1,0,0,PC,PC,13.0812,0.007,,1,qlp-s55-faintsearch,QLP,21:52:39.82,02:51:26.78,0.245,0.052,-2.876,0.056,2459823.994855,0.0039159,3.1003012,0.0008606,1.826,0.396,12.393573,1.173435,11350.0,1080.19,18.292,,383.536,1232.0,11.0,1067.12,34.465,6323.0,123.0,4.09,,1.67,,,,1.25,,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5932,1,False,False,False -322593401,5933.01,,3,4,3,3,2,4,4,15.3,64.7,57.89,1,0,2,PC,PC,13.4538,0.006,,1,qlp-s55-faintsearch,QLP,20:37:14.58,53:16:37.99,-29.325,0.072,-7.329,0.066,2459823.723571,0.0030261,5.5901313,2.23e-05,1.245,0.217,12.47045,1.531425,11420.0,1409.5,8.79073,,16.0188,557.0,11.0,326.203,3.8795,4743.0,122.0,4.57,,0.75,,,,0.761,,"15,16,41,55",2022-11-08,2022-11-08,2023-07-07 00:00:00,found in faint-star QLP search,5933,1,False,False,False -407958640,5934.01,,3,4,3,3,1,4,4,55.0,75.7,317.0,1,0,0,PC,PC,12.9724,0.007,,1,qlp-s55-faintsearch,QLP,21:19:07.27,-04:44:28.89,1.266,0.048,-6.331,0.045,2459823.256866,0.0014084,2.5505105,0.000238,1.463,0.134,15.869446,0.93188,14510.0,857.925,20.0973,1.25324,292.554,1152.0,25.0,940.966,26.574,6190.0,125.0,4.11,0.08,1.59,0.08,,,1.19,0.158907,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5934,1,False,False,False -276704866,5935.01,,3,4,4,3,1,4,4,38.6,97.3,113.78,2,0,0,PC,PC,12.6045,0.006,,1,qlp-s55-faintsearch,QLP,20:23:11,48:25:10.38,0.316,0.029,1.333,0.027,2459819.923024,0.0012482,3.0200448,4.8e-06,1.597,0.154,11.614131,0.573149,10640.0,527.75,13.0636,0.824283,171.551,1008.0,34.0,468.664,3.5385,5585.0,199.0,4.25,0.09,1.23,0.07,,,0.986,0.126959,"14,15,16,41,55",2022-11-08,2022-11-08,2023-05-30 00:00:00,found in faint-star QLP search,5935,1,False,False,False -396378209,5936.01,,3,4,3,3,1,4,4,67.1,136.0,60.81,1,0,0,PC,PC,13.0338,0.008,,1,qlp-s55-faintsearch,QLP,20:56:57.68,03:59:49.26,8.993,0.046,-11.183,0.047,2459823.973097,0.0018127,0.3781425,3.95e-05,0.473,0.199,5.180444,2.699867,4760.0,2483.58,9.06704,,946.484,1545.0,16.0,406.197,4.5435,5080.0,122.0,4.4,,0.96,,,,0.85,,55,2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5936,1,False,False,False -158552665,5937.01,,3,4,3,3,1,4,4,8.2,43.8,120.89,0,0,0,PC,PC,13.3872,0.006,,1,qlp-s55-faintsearch,QLP,19:10:10.21,42:40:02.83,-8.635,0.035,-24.575,0.038,2459797.53357,0.0020289,21.0685273,0.0001195,3.007,0.312,17.291598,0.99661,15800.0,917.491,13.6234,,10.5716,502.0,19.0,609.717,7.0905,5403.0,122.0,4.36,,1.06,,,,0.94,,"14,40,41,53,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5937,1,False,False,False -452508760,5938.01,,2,4,2,2,2,4,4,15.9,88.7,14.74,1,2,2,PC,PC,11.3519,0.006,,1,qlp-s55-faintsearch,QLP,20:15:38.12,28:39:33.21,-78.87,0.041,-76.991,0.044,2459820.183153,0.0019658,2.260431,1.31e-05,2.098,0.342,2.913679,0.203285,2680.0,187.215,3.92152,0.365697,249.273,1106.0,17.0,114.035,0.3675,4452.0,130.0,4.54,0.1,0.74,0.06,,,0.698,0.08399,"14,41,54,55",2022-11-08,2022-11-08,2023-07-04 00:00:00,found in faint-star QLP search,5938,1,False,False,False -27230283,5939.01,,3,4,3,3,1,4,4,8.7,24.8,105.17,0,0,0,PC,PC,13.1765,0.007,,1,qlp-s55-faintsearch,QLP,19:38:23.72,51:39:06.98,-1.942,0.027,7.045,0.029,2459823.906049,0.0040105,6.13049,3.42e-05,6.11,0.608,3.95929,0.221412,3640.0,203.907,12.5189,,940.498,1542.0,16.0,1316.27,24.495,6078.0,122.0,3.86,,2.08,,,,1.14,,"14,15,40,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5939,1,False,False,False -296898634,5940.01,,3,4,3,3,1,4,4,45.3,133.8,89.57,0,0,0,PC,PC,14.1736,0.007,,1,qlp-s56-tois,QLP,20:48:18.04,47:55:50.31,-8.321,0.056,7.397,0.047,2459849.326267,0.0074304,2.8534013,0.000763,5.176,1.575,17.324694,29.216992,15830.0,26551.0,11.4232,3.78502,961.087,1551.0,17.0,196.44,1.0825,3662.0,157.0,4.72,0.01,0.52,0.02,,,0.5153,0.0204789,"55,56",2022-11-08,2023-02-06,2023-02-09 12:10:04,found in faint-star QLP search,5940,1,False,False,False -303456821,5941.01,,2,4,2,2,2,4,4,1.9,29.7,9.16,1,2,2,PC,PC,11.9693,0.006,,1,qlp-s55-faintsearch,QLP,20:34:19.47,53:00:31.73,-0.346,0.06,-14.037,0.047,2459803.434951,0.0076002,11.0771916,0.000113,4.091,0.734,2.086617,0.204137,1920.0,187.999,2.97165,0.280532,51.7045,747.0,10.0,161.365,0.769,4738.0,126.1,4.64,0.09,0.69,0.05,,,0.76,0.0920174,"15,16,41,55",2022-11-08,2022-11-08,2023-07-07 00:00:00,found in faint-star QLP search,5941,1,False,False,False -166190643,5942.01,,5,5,5,5,5,5,5,36.3,34.1,317.0,0,0,0,PC,FP,11.7528,0.023,,1,qlp-s55-faintsearch,QLP,21:10:09.85,38:14:22.41,-5.906,0.034,-5.905,0.038,2459822.98395,0.0018897,1.6540803,6.4e-06,2.008,0.56,3.763161,0.343374,3460.0,316.209,15.2145,1.07674,2118.23,1889.0,22.0,799.123,15.028,6453.0,195.3,3.76,0.09,2.51,0.12,,,1.31,0.207855,"15,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5942,1,False,False,False -63659057,5943.01,,3,4,3,3,1,4,4,6.7,32.7,88.14,0,0,0,PC,PC,13.0251,0.036,,1,qlp-s55-faintsearch,QLP,20:34:23.54,37:43:02.18,0.45,0.026,-0.187,0.03,2459799.923269,0.0064151,15.7866044,0.0001787,6.116,0.697,7.583144,0.606723,6960.0,558.656,11.2628,,150.132,975.0,12.0,782.391,12.19,6237.4,93.2,4.27,,1.33,,0.083,0.09,1.21,,"14,15,41,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5943,1,False,False,False -88101924,5944.01,,3,4,3,3,1,4,4,19.3,70.9,96.79,0,0,0,PC,PC,13.2223,0.01,,1,qlp-s55-faintsearch,QLP,20:14:57.82,17:06:13.95,-6.234,0.029,-7.64,0.023,2459821.949437,0.0033268,5.9404096,0.0007847,2.479,0.303,16.585801,1.073582,15160.0,988.317,11.945,,133.684,947.0,19.0,593.58,8.1755,5933.0,122.0,4.5,,0.97,,,,1.08,,"54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search; crowded field,5944,1,False,False,False -159104028,5945.01,,3,4,3,3,1,4,4,10.6,37.1,60.0,1,0,0,PC,PC,13.0581,0.006,,1,qlp-s55-faintsearch,QLP,19:18:43.92,42:36:41.98,5.008,0.025,5.4,0.025,2459820.52275,0.002837,3.3825012,1.98e-05,3.422,0.293,4.820497,0.242741,4430.0,223.548,9.00661,,967.25,1553.0,21.0,849.105,9.777,6117.0,122.0,4.22,,1.38,,,,1.15,,"14,40,41,54,55",2022-11-08,2022-11-08,2022-12-14 12:09:24,found in faint-star QLP search,5945,1,False,False,False -366846982,5946.01,,3,4,3,3,1,4,4,9.6,25.1,105.69,0,11,0,PC,PC,12.1724,0.008,,1,qlp-s56-tois,QLP,20:47:13.43,47:19:26.25,-2.428,0.05,-1.922,0.05,2459843.678568,0.0076089,5.754879,7.61e-05,6.944,0.92,1.97784,0.165987,1820.0,152.868,12.52,0.934238,2173.06,1902.0,12.0,1186.44,40.56,6742.0,128.0,3.66,0.09,2.95,0.16,,,1.44,0.24965,"15,16,55,56",2022-11-08,2023-02-05,2023-02-09 12:10:04,found in faint-star QLP search,5946,1,False,False,False -331691841,5947.01,,1,4,1,1,1,4,4,5.3,76.0,5.27,0,2,0,PC,PC,8.5898,0.006,,1,qlp-s56-ffi,QLP,22:26:46.71,18:35:00.35,56.031,0.07,15.023,0.079,2459842.878692,0.0023713,6.9341584,0.0021504,1.937,0.762,0.553867,0.070288,510.0,64.7359,2.15853,0.178234,96.5124,873.0,13.0,57.6245,0.20885,5451.0,122.7,4.54,0.08,0.87,0.05,,,0.95,0.114336,56,2022-11-16,2022-11-15,2022-12-14 12:09:24,variable host; slight depth aperture correlation,5947,1,False,False,True -419878932,5948.01,,3,5,5,3,1,4,4,29.2,88.7,103.26,0,1,0,PC,APC,10.1223,0.006,,1,qlp-s56-tois,QLP,22:30:47.02,08:38:24.53,29.636,0.075,-3.139,0.07,2459848.707937,0.0023477,7.9058861,0.0019283,0.867,0.272,2.576249,0.478418,2370.0,440.542,12.3664,1.11122,15.0146,548.0,10.0,333.474,4.575,6294.0,140.7,3.88,0.09,2.1,0.1,,,1.234,0.192417,56,2022-11-16,2023-02-06,2023-02-09 12:10:04,V-shaped; low SNR; evolved host,5948,1,False,False,False -64282927,5949.01,,1,4,1,1,4,4,4,5.0,9.3,2.45,0,2,3,PC,PC,9.0331,0.006,,1,qlp-s57-ffi,QLP,21:26:53.09,53:38:23.34,139.918,0.049,65.311,0.048,2459878.892153,0.0019527,1.8826011,6.4e-06,1.791,0.275,0.314909,0.01903,290.0,17.5271,1.36971,0.0978615,445.039,1279.0,16.0,53.6142,0.08445,4996.0,122.3,4.57,0.09,0.78,0.05,,,0.83,0.100505,"15,16,56,57",2022-11-16,2022-12-13,2023-07-07 00:00:00,slight depth aperture; multiple faint neighbors in pixel,5949,1,False,False,False -258738667,5950.01,,3,4,3,3,1,4,4,,,25.49,0,9,0,PC,PC,10.447,0.037,,1,qlp-s56-tois,QLP,22:09:52.62,19:56:17.03,-25.8,1.6,3.4,1.6,2459841.494151,0.0014,6.440207,0.0011412,2.114,0.361,2.69597,0.203651,2480.0,187.552,,,,,21.0,187.377,,,,,,,,,,,,56,2022-11-16,2023-02-05,2023-02-09 12:10:04,no stellar parameters; Gaia DR3 plx = 3.45; colors consistent with G star,5950,1,False,False,False -154762431,5951.01,,1,4,1,1,3,4,4,7.6,65.5,10.8,0,2,1,PC,PC,8.80558,0.006,,1,qlp-s56-ffi,QLP,22:56:42.1,43:53:14.42,-0.393,0.046,-24.334,0.043,2459852.571596,0.002421,3.1728284,3.66e-05,1.777,0.732,0.390935,0.052935,360.0,48.7538,3.27956,0.26206,932.329,1539.0,11.0,160.708,0.8325,6689.0,166.9,4.19,0.09,1.59,0.06,,,1.417,0.250381,"16,56",2022-11-16,2022-11-15,2023-02-27 00:00:00,L1 candidate,5951,1,False,False,True -287643871,5952.01,TIC 287643871.01,3,4,3,3,2,4,4,36.4,64.0,317.0,0,13,2,PC,PC,9.53851,0.006,,1,qlp-s56-ffi,QLP,21:47:19.54,34:51:03.4,23.579,0.082,-31.985,0.159,2459822.41655,0.000863,28.1315937,4.27e-05,4.043,0.569,5.512137,0.213384,5064.0,196.515,17.2116,1.0344,23.9447,616.0,63.0,219.386,3.7825,5513.0,154.9,3.75,0.08,2.18,0.12,,,0.968,0.133024,"15,16,56",2022-11-16,2022-11-15,2023-07-04 00:00:00,only two transits; real period likely much shorter than max period of ~1097 d; large for insolation; evolved host,5952,1,False,False,True -27863043,5953.01,,3,4,3,3,4,4,4,7.3,33.1,23.51,0,2,3,PC,PC,9.77894,0.006,,1,qlp-s56-ffi,QLP,22:12:06.36,26:28:28.07,1.408,0.06,-40.67,0.062,2459847.184231,0.0081316,7.4702557,0.0052653,5.033,1.412,0.651637,0.064613,600.0,59.5087,5.16592,0.43727,306.832,1165.0,11.0,219.343,1.758,5242.0,133.7,,,2.12,0.12,,,,,56,2022-11-16,2022-11-15,2023-07-07 00:00:00,evolved host; weak signal,5953,1,False,False,False -297153209,5954.01,,3,4,3,3,1,4,4,26.4,90.4,104.77,0,3,0,PC,PC,9.41809,0.006,,1,qlp-s56-ffi,QLP,20:48:07.16,43:56:19.31,-1.416,0.053,-2.85,0.053,2459848.112754,0.000651,10.7004914,2.17e-05,1.196,0.133,2.293324,0.132456,2110.0,121.989,12.4795,0.650035,20.0463,589.0,28.0,339.255,4.3475,6906.0,145.4,3.84,0.08,2.44,0.11,,,1.504,0.237086,"15,41,55,56",2022-11-16,2022-11-09,2022-12-14 12:09:24,slightly V-shaped; evolved variable host,5954,1,False,False,False -434116397,5955.01,TIC 434116397.01,2,4,2,2,3,4,4,15.4,99.6,3.47,0,0,1,PC,PC,10.3224,0.007,,1,spoc-s56-b02,SPOC,23:41:52.28,14:06:24.49,189.482,0.106,-70.074,0.067,2459825.845336,0.0022007937,0.590238672714306,8.353142e-05,1.04505204681999,0.16586141,0.563344,0.062756,518.724099889653,57.798515,1.68029012004386,0.17729063,517.006516623626,1216.16850928088,9.309872,42.8747,0.1086,3844.0,157.0,4.6589,0.0104867,0.590924024581909,0.0174113,,,0.58062,0.0201972,56,2022-11-16,2022-11-15,2023-04-05 00:00:00,low SNR; two stars in pixel; possibly asymmetric transits,5955,1,False,False,True -236785891,5956.01,TIC 236785891.01,3,4,3,3,1,4,4,54.2,103.0,79.57,6,0,0,PC,PC,15.762,0.009,,1,spoc-s57-b0A,SPOC,18:53:16.14,59:49:03.57,11.367,0.141,42.333,0.15,2459853.83173,0.0014409348,0.929233399545212,8.115077e-05,0.983716029466115,0.13126242,50.265418,3.683175,45240.8420953087,3386.5818,10.6079914355786,0.9516801,104.412918102526,815.28285221222,12.116851,303.767,5.9375,3207.0,157.0,4.74975,0.00989926,0.485926002264023,0.0165041,,,0.483975,0.0218418,"56,57",2022-11-16,2023-02-03,2023-02-09 12:10:04,V-shaped; large; young host star; ~5 sigma odd-even in SPOC s57,5956,1,False,False,True -407653728,5957.01,TIC 407653728.01,3,4,3,3,1,4,4,25.5,76.7,106.16,0,0,0,PC,PC,13.0091,0.009,,1,qlp-s56-tois,SPOC,21:45:54.7,39:39:16.4,2.957,0.022,-4.812,0.026,2459849.767048,0.001661,3.2520192,8.4e-06,3.491,0.205,10.276112,0.415704,9420.0,382.804,12.5826,,1493.68,1731.0,25.0,783.179,10.591,6756.31,280.34,4.38298,,1.28,,-0.207,0.261,1.44,,"15,16,56",2022-11-16,2023-02-05,2023-02-09 12:10:04,,5957,1,False,False,True -436764867,5958.01,,2,4,2,2,1,4,4,5.6,58.3,4.93,0,2,0,PC,PC,9.5236,0.006,,1,spoc-s56-b02,SPOC/QLP,23:02:32.99,24:14:58.45,-18.587,0.07,-22.364,0.059,2459825.785407,0.0029775659,2.30621252937405,0.00049320294,1.50989769358905,0.45925114,0.435075,0.057794,400.639011713873,53.22851,2.0651033150431,1.589122,791.334554211463,1352.72582746951,7.161833,108.991,0.5115,5816.0,147.639,4.48945,0.0814378,0.96399599313736,0.047598,,,1.046,0.136771,56,2022-11-16,2022-11-15,2022-12-14 12:09:24,low SNR; multiple stars in pixel,5958,1,False,False,True -199671901,5959.01,,5,5,5,5,5,5,5,60.7,74.0,317.0,0,0,0,KP,KP,10.9726,0.006,,1,spoc-s57-b0A,SPOC,22:22:03.1,45:27:26.43,8.962,0.04,-5.41,0.042,2459855.872666,0.0010581263,4.4571443713053,0.00033462828,6.10897114376715,0.087573834,7.818983,0.112143,7175.68018908472,103.28215,18.0311559874619,0.8959427,1747.4150659071,1648.99283466411,39.646626,464.469,6.449,6074.0,125.384,3.85122,0.0775049,2.09465003013611,0.0980906,,,1.136,0.151045,"56,57",2022-11-16,2023-02-03,2023-02-09 12:10:04,HAT-P-40 b,5959,1,False,False,True -188876052,5960.01,,5,5,5,5,5,5,5,117.0,308.7,131.08,0,0,0,KP,KP,9.7758,0.006,,1,spoc-s56-b02,SPOC/QLP,22:52:09.96,35:26:49.84,74.747,0.063,15.048,0.054,2459827.429945,0.00024816376,3.07632903681377,5.4018823e-05,3.90160580020701,0.020103214,10.353759,0.056854,9490.83968422085,52.363537,14.2287485263567,0.60035616,1519.96445996736,1592.49511167365,162.07138,211.553,1.6955,6401.79,103.038,4.23563,0.0839922,1.43110001087189,0.0598895,0.048,0.0357771,1.285,0.197155,56,2022-11-16,2022-11-15,2022-12-14 12:09:24,HAT-P-8 b,5960,1,False,False,True -262689575,5961.01,TIC 262689575.01,2,4,2,2,1,4,4,11.4,95.1,3.32,2,2,0,PC,PC,9.0392,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,23:16:51.85,05:41:45.19,22.932,0.061,-26.979,0.047,2459826.277692,0.0023048143,1.61748524601779,1.1903949e-05,1.6091123459721,0.16354188,0.370089,0.035481,340.806536595436,32.679085,1.63667460232413,0.2073126,197.207782983894,955.764206845905,9.829924,26.2533,0.0246,3900.68,125.748,4.5239,0.123155,0.701709985733032,0.0732965,-0.176,0.069,0.6,0.0806526,"42,56",2022-11-16,2023-05-18,2023-06-16 12:14:51,low SNR,5961,1,False,False,True -239541449,5962.01,,5,5,5,5,5,5,5,29.1,149.2,21.12,9,2,3,PC,FP,10.9417,0.006,,1,spoc-s56-b02,SPOC,22:47:04.74,29:51:07.18,456.903,0.055,-57.725,0.062,2459826.817794,0.0007129207,1.92611831691472,9.564677e-05,1.06884203719257,0.04956464,4.192384,0.148166,3853.88313633312,136.45651,4.86244048500605,0.28903854,395.045098510786,1137.0548605092,26.105602,127.29,0.661,5383.13,114.93,4.7447,0.0799491,0.678983986377716,0.0348945,-1.115,0.101,0.934,0.112102,56,2022-11-16,2022-11-15,2023-07-11 12:02:59,Two stars in pixel,5962,1,False,False,True -436478932,5963.01,,5,5,5,5,5,5,5,74.1,84.8,317.0,0,0,1,KP,KP,10.9644,0.006,,1,spoc-s56-b02,SPOC,23:09:58.27,18:23:46.17,17.598,0.074,18.867,0.05,2459826.311145,0.0004323943,4.32262294185784,0.00011471372,3.36990246699019,0.034073763,13.041427,0.104747,11939.7472842646,96.4711,15.1546942873941,0.7174312,705.043827138352,1314.23726749749,118.921036,258.426,2.876,5924.0,115.989,4.21239,0.0737249,1.34756994247437,0.0626859,-0.22,0.04,1.08,0.12818,56,2022-11-16,2022-11-15,2022-12-14 12:09:24,WASP-21 b,5963,1,False,False,True -200606159,5964.01,TIC 200606159.01,3,4,3,3,3,4,4,42.4,46.3,317.0,0,0,1,PC,PC,12.6108,0.007,,1,qlp-s56-tois,SPOC,22:37:53.82,44:57:54.82,-7.055,0.023,-15.827,0.023,2459853.689253,0.0011937022,3.9816471,8.4e-06,3.247,0.111,17.059958,0.400484,15590.0,368.791,14.4616,0.752008,431.951,1270.0,36.0,494.908,3.9535,5771.0,124.391,4.33924,0.0762943,1.14,0.06,,,1.03,0.127395,"16,56,57",2022-11-16,2023-02-03,2023-04-05 00:00:00,,5964,1,False,False,True -405788729,5965.01,TIC 405788729.01,3,4,3,3,4,4,4,12.1,41.4,45.54,0,2,3,PC,PC,11.7066,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,21:39:00.43,62:56:39.34,-3.459,0.038,2.462,0.036,2459828.070265,0.004330008,4.2254747650406,0.00035323977,4.83902648512505,0.31305125,1.713837,0.098307,1577.25722504925,90.54007,7.64003610572631,0.6515875,1118.05674986675,1474.80877013924,13.770326,408.59,3.4215,5729.0,183.861,3.95931,0.0797319,1.75515997409821,0.0905428,,,1.023,0.133961,"56,58",2022-11-16,2023-05-22,2023-07-07 00:00:00,evolved host; multiple stars in pixel,5965,1,False,False,True -404610583,5966.01,TIC 404610583.01,3,5,5,3,1,4,4,83.4,264.7,99.14,0,2,0,PC,APC,10.5332,0.007,,1,spoc-s56-b02,SPOC,22:24:35.43,16:52:43.88,-28.915,0.072,-48.469,0.083,2459826.813152,0.00038752324,3.53810387355688,8.976794e-05,2.44193702304445,0.025615627,12.936938,0.194645,11844.6534836217,179.25853,12.072855696819,0.60394794,591.327797757074,1257.69931210019,62.636166,202.773,2.362,6084.0,129.616,4.45887,0.0815947,1.04244005680084,0.0510854,,,1.14,0.150742,56,2022-11-16,2022-11-15,2022-12-14 12:09:24,variable host,5966,1,False,False,True -369532319,5967.01,TIC 369532319.01,2,5,5,2,4,4,4,,,11.63,0,2,3,PC,PC,10.1233,0.006,,1,spoc-s56-b02,SPOC,22:34:17.84,33:49:24.48,-1.237,0.075,-29.635,0.076,2459842.480381,0.0049763587,0.0,0.0,5.05643383208446,0.6411227,1.267451,0.156686,1166.68403041867,144.30257,3.42276188323149,1.2438005,65.570450504779,725.766288308881,7.589752,145.066,1.1995,5758.0,128.163,4.45663,0.0775638,0.993435978889465,0.0484472,,,1.03,0.131343,56,2022-11-16,2022-11-15,2023-07-04 00:00:00,single transit; possible additional transit at ~2458755.81 BJD,5967,1,False,True,True -431810418,5968.01,TIC 431810418.01,1,5,5,1,3,4,4,,,9.31,0,2,1,PC,PC,9.50492,0.006,,1,spoc-s56-b02,SPOC,23:17:04.2,31:21:14.36,-7.222,0.056,17.6,0.044,2459830.06435,0.0036652293,0.0,0.0,5.85721734824592,0.5320062,0.852653,0.080439,785.014539345309,74.08461,3.00177611787243,0.8912016,105.495172529409,817.387319927979,10.160693,122.831,0.538,5940.0,128.564,4.42516,0.0772178,1.05722999572754,0.0495453,,,1.085,0.136249,56,2022-11-16,2022-11-15,2023-02-27 00:00:00,possible multi; single transit at TBJD ~ 2830.06,5968,1,True,True,True -431810418,5968.02,TIC 431810418.02,1,4,1,1,3,4,4,3.0,41.3,6.83,0,2,1,PC,PC,9.50492,0.006,,2,qlp-s56-tois,CTOI,23:17:04.2,31:21:14.36,-7.222,0.056,17.6,0.044,2459851.829213,0.0071232,9.2255167,0.0048656,3.685,0.981,0.662501,0.062989,610.0,58.0134,2.50867,0.195642,171.745,1008.0,11.0,122.831,0.538,5940.0,128.564,4.42516,0.0772178,1.06,0.05,,,1.085,0.136249,56,2022-12-01,2023-02-06,2023-02-27 00:00:00,potential multi; CTOI from Nora Eisner,5968,2,True,False,True -91051152,5969.01,,5,5,5,5,5,5,5,46.6,188.4,91.66,0,0,0,KP,KP,11.5549,0.006,,1,spoc-s56-b02,SPOC,23:18:29.51,24:53:21.4,-33.729,0.078,-2.522,0.044,2459830.349006,0.00045309,7.91926045274687,0.00034394927,2.50538728554157,0.04167438,23.567197,0.263986,21472.3061237207,243.1104,11.5285264397843,1.0425813,38.0328101238835,633.372719180767,58.602276,115.936,0.571,4302.0,130.566,4.5054,0.106037,0.758607983589172,0.0676784,,,0.672,0.0818166,56,2022-11-16,2022-11-15,2022-12-14 12:09:24,WASP-59 b,5969,1,False,False,True -431701493,5970.01,,5,5,5,5,5,5,5,113.0,295.9,107.28,1,0,1,PC,KP,11.5189,0.006,,1,spoc-s56-b02,SPOC,23:15:58.33,31:27:45.9,25.11,0.052,-25.269,0.048,2459825.800375,0.00020361657,3.09275954488698,4.212396e-05,2.21672038383032,0.01771064,32.177283,0.178621,29201.5223974008,164.50282,12.6473443552795,0.88992214,174.031028615316,926.3528059501,167.78441,140.998,0.746,4713.98,115.719,4.56492,0.0886398,0.75034099817276,0.0524523,0.042809,0.0423999,0.754,0.0873359,56,2022-11-16,2022-11-15,2023-03-03 12:02:42,WASP-10 b,5970,1,False,False,True -160432093,5971.01,TIC 160432093.01,3,4,3,3,1,4,4,65.6,84.4,317.0,0,3,0,PC,PC,10.9852,0.006,,1,spoc-s56-b02,SPOC,21:31:01.09,30:00:12.41,11.051,0.059,12.349,0.082,2459828.685263,0.0006497229,3.99140120490971,0.00018048221,4.25796342613999,0.051305268,9.697064,0.110515,8891.56031474432,101.782585,17.0087765284705,0.9557893,1687.75663926137,1634.73441574595,59.46701,427.467,7.3845,6528.05,110.167,4.0799,0.0903954,1.75164997577667,0.096392,0.136,0.018,1.345,0.213225,56,2022-11-16,2022-11-15,2022-12-14 12:09:24,,5971,1,False,False,True -420814525,5972.01,,5,5,5,5,5,5,5,554.5,687.5,317.0,0,0,2,KP,KP,7.1274,0.006,,1,spoc-s56-b02,SPOC/QLP,22:03:10.81,18:53:03.27,29.579,0.083,-17.89,0.075,2459826.781018,6.454682e-05,3.52474045855393,1.5326508e-05,3.05616626850758,0.0047222716,17.597634,0.025478,16077.3768199146,23.465973,15.6198314447836,0.597001,758.359445144132,1338.40800232419,612.9367,48.3016,0.1237,6052.0,100.638,4.34258,0.0746529,1.18655002117157,0.0453267,0.05,0.1,1.13,0.152342,56,2022-11-16,2022-11-15,2022-12-14 12:09:24,HD 209458 b,5972,1,False,False,True -154353849,5973.01,TIC 154353849.01,3,4,3,3,3,4,4,9.9,42.6,37.59,0,0,2,PC,PC,12.4884,0.008,,1,qlp-s57-tois,SPOC,22:50:14.39,43:39:35.95,-0.686,0.033,-4.527,0.034,2459878.635235,0.0016581,3.1643744,1.04e-05,2.506,0.197,4.179432,0.189198,3842.0,174.243,6.79941,0.395425,643.751,1403.0,20.0,552.989,7.3105,6238.0,130.901,4.33794,0.0845449,1.23,0.06,,,1.21,0.172912,"16,56,57",2022-11-16,2023-05-01,2023-05-06 12:13:45,variable host; possible odd-even,5973,1,False,False,True -354173595,5974.01,TIC 354173595.01,2,4,2,2,1,4,4,5.1,12.3,1.75,3,2,0,PC,PC,10.8221,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,23:19:03.83,07:54:56.16,133.24,0.11,-126.397,0.114,2459826.051156,0.0019763978,1.72672169174645,1.0571386e-05,0.926740456796282,0.5050195,1.079368,0.134865,993.641007086664,124.20709,1.17835818877747,2.0144944,45.5930746551257,662.741962902873,9.633729,25.6553,0.0382,3487.0,157.0,4.85306,0.00144223,0.371684014797211,0.0111082,,,0.359205,0.0202625,"42,56",2022-11-16,2023-05-22,2023-06-16 12:14:51,low SNR; potential L1 planet,5974,1,False,False,True -376847633,5975.01,TIC 376847633.01,3,5,5,3,3,4,4,0.3,18.7,54.02,0,6,2,PC,PC,10.6338,0.006,,1,spoc-s14-s55-b0H,SPOC,18:21:21.43,69:22:14.54,-12.362,0.036,-7.99,0.037,2459408.627517,0.003569348,373.038163748946,0.0010284465,15.3281374901983,0.33338812,3.108154,0.110531,2858.62237904749,101.79798,8.44727761944216,0.47341937,26.2251958602458,577.164265866346,21.003796,349.787,2.151,6508.0,123.196,4.18652,0.0894303,1.54351997375488,0.0664975,,,1.335,0.224084,"40,41,47,49,50,51,52,53,54",2022-11-16,2022-12-01,2022-12-14 12:09:24,alerted as a single but now have two transits; period is likely shorter than maximum period of 373.038 days,5975,1,False,False,True -348054109,5976.01,,5,5,5,5,5,5,5,13.3,14.1,2.72,0,0,0,PC,FP,12.0575,0.007,,1,spoc-s14-s55-b0H,SPOC,18:46:42.46,21:49:41.95,97.43,2.0,-49.47,2.0,2459010.512186,0.0006943169,0.437802367538937,7.380848e-06,1.53158105835563,0.20483291,1.589108,0.142177,1462.55176234461,130.94102,1.45512343647671,0.3340848,211.810967338555,972.986602877463,13.224767,,,3256.0,157.0,4.85874,0.00239245,0.365716993808746,0.0118964,,,0.352341,0.0209649,"26,40,53,54",2022-12-01,2022-12-01,2023-02-25 00:00:00,possibly flaring host star; possible SV or NEB,5976,1,False,False,True -12938488,5977.01,,3,5,5,3,1,4,4,77.9,121.0,54.53,2,0,0,PC,APC,14.6343,0.008,,1,spoc-s14-s55-b0H,SPOC,19:54:10.22,26:52:44.17,5.129,0.105,-8.574,0.099,2459419.98927,0.00057751854,0.431712366064594,7.438123e-06,0.86741638739143,0.12435173,21.330298,1.442257,19454.20653606,1327.4862,8.49428194695888,0.9163717,365.847161759083,1115.43603886932,13.067723,236.385,4.161,3180.0,157.0,4.66041,0.0118629,0.589139997959137,0.0187465,,,0.579137,0.0210403,"41,54,55",2022-12-01,2022-12-01,2023-05-10 12:02:47,possible phase modulations,5977,1,False,False,True -266023807,5978.01,,2,4,2,2,2,4,4,3.9,6.7,2.27,0,2,1,PC,PC,9.64057,0.006,,1,spoc-s14-s55-b0H,SPOC,20:57:38.27,22:11:33.53,-70.418,0.072,16.96,0.06,2458711.885411,0.0015051194,0.739481789312516,1.2059184e-05,1.24737198582592,0.2609702,0.166708,0.024698,153.531900286653,22.747452,1.30977476336697,1.0556887,3360.87234482987,1941.92634605663,8.37773,110.828,0.5145,5632.0,131.337,4.45734,0.0809948,0.977078974246979,0.050804,,,0.998,0.125407,"15,41,55",2022-12-01,2022-12-01,2023-07-07 00:00:00,low SNR,5978,1,False,False,True -137151335,5979.01,,5,5,5,5,5,5,5,2.0,5.0,2.71,0,100,11,KP,KP,9.4087,0.006,,1,spoc-s14-s55-b0H,SPOC,19:25:40.35,38:40:20.32,-28.726,0.041,-5.588,0.045,2458687.892998,0.0023050131,4.72664723914331,2.1274222e-05,3.231885021978,0.49764332,0.252216,0.024729,232.272733591549,22.775606,1.45380050017165,1.149964,256.356558266851,1020.54194126491,10.234158,95.9115,0.22115,5655.0,141.264,4.50815,0.0855087,0.922487020492554,0.0513442,-0.15,0.1,1.0,0.132461,"14,40,41,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-93 b,5979,1,False,False,True -164652245,5980.01,,5,5,5,5,5,5,5,0.3,28.2,4.57,0,98,13,KP,KP,9.0638,0.006,,1,spoc-s14-s55-b0H,SPOC,18:56:14.22,44:31:06.14,-60.521,0.053,48.694,0.05,2458708.932559,0.004528523,79.5839994687166,0.000445419,4.39967521547363,0.49973997,0.636118,0.053721,585.714886851865,49.477192,1.97488371632539,0.7087615,3.76282646855619,355.220725664998,11.099208,63.9207,0.11935,5391.0,104.083,4.61444,0.0764828,0.79136997461319,0.0363166,-0.3,0.1,0.94,0.120529,"14,40,41,53,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-37 d; found in TESS at 2x period,5980,1,False,False,True -120045750,5981.01,,1,4,1,1,2,4,4,2.4,40.7,6.34,0,0,1,PC,PC,11.8086,0.007,,1,spoc-s14-s55-b0H,SPOC,18:55:52.26,39:03:44.06,-67.692,0.038,123.423,0.041,2459423.517172,0.0026389682,7.01424581466326,8.121329e-05,2.65553277869672,0.452201,2.02931,0.154249,1867.31799224331,142.05846,2.39547869209892,0.75464094,14.7225543821134,499.592075915102,12.583472,70.6891,0.1105,3721.0,157.0,4.703,0.00918689,0.539524972438812,0.0158695,,,0.535736,0.0201829,"41,53,54",2022-12-01,2022-12-01,2023-07-04 00:00:00,centroid offset only in s54; s53 and s41 on target,5981,1,False,False,True -299087490,5982.01,,5,5,5,5,5,5,5,4.7,53.0,106.05,0,1,2,KP,KP,13.2147,0.007,,1,spoc-s14-s55-b02,SPOC,19:15:36.55,49:22:13.47,3.714,0.028,-18.08,0.034,2459409.912265,0.0022042128,38.4787613099131,0.003233638,5.18697368322855,0.23243478,26.345305,1.029334,23972.895713611,947.60205,12.560937578888,0.5219885,0.496296770317961,214.069656318543,27.975418,442.871,2.999,5439.49,142.2,4.59877,,0.810042977333069,,0.115,0.137,0.95,,"40,41,53,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-468 b,5982,1,False,False,True -356871098,5983.01,,1,4,1,1,1,4,4,4.1,6.1,2.47,0,0,0,PC,PC,12.7949,0.007,,1,spoc-s14-s55-b02,SPOC,18:24:12.8,66:56:08.01,65.598,0.072,-34.234,0.072,2458683.819904,0.0008334459,1.02718788625003,7.4537074e-06,0.988999246113059,0.15208864,0.937494,0.090892,863.091202358108,83.71091,1.37552395247827,0.16878408,90.6681430974074,787.015761292201,11.641634,66.0022,0.1795,3406.0,157.0,4.82682,0.003381,0.399821996688843,0.0119185,,,0.391279,0.0202703,"14,15,16,17,18,19,21,22,24,25,26,40,47,48,49,51,52,53,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,possible odd-even,5983,1,False,False,True -120692092,5984.01,,5,5,5,5,5,5,5,4.9,24.6,26.06,0,1,4,KP,KP,14.0672,0.007,,1,spoc-s14-s55-b02,SPOC,19:03:43.38,39:05:53.23,5.045,0.032,-3.15,0.035,2459392.151066,0.0029781244,3.41307808908694,4.8252037e-05,2.578792782734,0.609458,4.37109,0.549912,4017.82983992082,506.35962,5.50080272093087,2.2570944,304.4148279288,1065.33501212552,7.8737493,658.924,8.7845,5410.0,122.0,4.53617,,0.865984976291656,,,,0.94,,"40,41,53,54",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-495 b,5984,1,False,False,True -272782368,5985.01,,2,4,2,2,1,4,4,2.7,31.4,2.98,0,2,0,PC,PC,10.6894,0.006,,1,spoc-s14-s55-b02,SPOC,15:52:36.85,66:52:23.87,-2.332,0.04,-4.525,0.037,2458684.123357,0.0024113283,2.41576651920038,1.7108072e-05,2.17008124007895,0.25357512,0.263322,0.03287,242.499233505258,30.274185,1.53563817796486,0.17514612,278.213476896663,1041.63194509169,7.612235,106.05,0.2385,4837.0,121.016,4.55481,0.0929025,0.774574995040894,0.0509925,,,0.785,0.0951155,"14,15,16,17,18,20,21,23,24,26,47,48,49,50,51",2022-12-01,2022-12-01,2022-12-14 12:09:24,low SNR; possible odd-even,5985,1,False,False,True -158657354,5986.01,,5,5,5,5,5,5,5,1.7,14.7,38.18,0,3,7,KP,KP,11.7942,0.006,,1,spoc-s14-s55-b02,SPOC,19:12:36.95,44:04:07.74,-4.087,0.04,-2.587,0.042,2459406.492987,0.0075835814,38.5835888603263,0.0011334544,11.0403764815672,0.71893275,1.631139,0.187133,1501.20636528134,172.34116,6.88722761627487,1.0315099,76.5626551752293,754.438766154518,8.700123,639.239,10.255,6373.72,114.774,4.05962,0.0844427,1.74231004714966,0.074485,0.23,0.028,1.27,0.201451,"40,41,53,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-522 b,5986,1,False,False,True -284900292,5987.01,,2,4,2,2,2,4,4,0.1,13.3,6.76,0,0,1,PC,PC,12.3932,0.007,,1,spoc-s14-s55-b02,SPOC,17:23:55.07,57:28:09.51,32.296,0.026,11.156,0.026,2458769.981797,0.0047902022,48.713084294678,0.000489811,4.81555711565351,0.6864698,1.749165,0.175564,1609.7433088884,161.68752,2.48830669320748,1.0240345,1.71497235586537,291.866352396907,8.968461,122.896,0.181,3943.0,157.0,4.6329,0.0111492,0.621797978878021,0.01836,,,0.60552,0.0202167,"17,19,20,22,23,24,25,26,40,41,47,48,49,50",2022-12-01,2022-12-01,2023-07-07 00:00:00,low SNR; possible odd-even,5987,1,False,False,True -377780790,5988.01,,5,5,5,5,5,5,5,5.0,41.7,4.69,0,79,9,KP,KP,10.4767,0.006,,1,spoc-s14-s55-b02,SPOC,19:02:43.03,50:14:29.34,-18.394,0.045,41.448,0.046,2458683.867901,0.0013005666,0.837499676505658,7.2704997e-06,1.96408115030391,0.20313032,0.270335,0.026901,248.957116809521,24.776567,2.00462345473117,0.2530015,3684.52063781805,1987.07837909197,9.27727,185.506,0.808,5706.0,141.0,4.37,0.09,1.08974003791809,0.061206,-0.12,0.1,1.017,0.128175,"14,40,41,53,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-10 b,5988,1,False,False,True -154437244,5989.01,,2,4,2,2,3,4,4,3.4,34.6,12.22,0,2,1,PC,PC,11.0644,0.006,,1,spoc-s14-s55-b02,SPOC,08:24:24.54,79:33:34.72,-13.514,0.033,-10.31,0.04,2459395.360784,0.0055978238,6.86696565838831,0.0001651188,3.88125838618554,0.43766624,0.865193,0.109144,796.554381452612,100.52029,3.52423378518286,0.3698337,271.613882527566,1035.39899820127,8.088625,272.599,1.6405,6173.0,126.376,4.44273,0.083189,1.07955002784729,0.0474874,,,1.178,0.168854,"40,47,53",2022-12-01,2022-12-01,2023-02-27 00:00:00,low SNR,5989,1,False,False,True -29385858,5990.01,,2,4,2,2,2,4,4,0.0,9.3,5.57,0,2,1,PC,PC,9.43301,0.006,,1,spoc-s14-s55-b02,SPOC,15:55:39.66,40:08:13.32,45.481,0.04,1.954,0.055,2458976.923578,0.008019934,700.962256637727,0.00049847487,6.21941924999448,0.5504886,0.495828,0.06232,456.569834720391,57.39739,2.22038192355985,0.6474882,17.5711392376128,522.179393663298,7.72336,102.798,0.2685,5626.0,187.0,5.47131,0.291768,1.00018000602722,0.0487537,,,0.991,0.128331,"24,50,51",2022-12-01,2022-12-01,2023-06-07 00:00:00,low SNR; actual period likely shorter than max period of ~700.96 days,5990,1,False,False,True -230064711,5991.01,,2,4,2,2,3,4,4,1.8,28.7,3.29,0,2,1,PC,PC,8.77912,0.006,,1,spoc-s14-s55-b02,SPOC,15:20:49.4,67:10:02.92,46.747,0.046,-95.854,0.046,2458689.479623,0.0030655318,7.08931621726198,4.551069e-05,3.37954249264313,0.31938455,0.138561,0.014584,127.611232081906,13.432013,1.6279087629037,0.22192661,318.143106838394,1077.14799908442,8.606117,105.85,0.2665,5983.0,121.421,4.29138,0.0774248,1.24177002906799,0.0547161,,,1.1,0.145457,"14,15,16,17,21,22,23,41,47,48,49,54",2022-12-01,2022-12-01,2023-02-27 00:00:00,low SNR; possible odd-even; odd events may not be real,5991,1,False,False,True -159054620,5992.01,,5,5,5,5,5,5,5,6.0,22.0,97.86,0,0,1,KP,KP,15.0277,0.007,,1,spoc-s14-s55-b02,SPOC,19:18:24.92,46:18:53.67,0.533,0.067,-9.1,0.061,2459391.6426,0.0050238995,8.02768209250625,0.00013601505,2.95742571731607,0.51070786,12.307452,1.404835,11271.5765811837,1293.0641,11.9809770400813,2.4002044,161.117341995933,908.668183428815,8.653823,1351.17,54.325,5368.0,122.0,4.30215,,1.12771999835968,,,,0.93,,"40,41,53,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-856 b,5992,1,False,False,True -27534138,5993.01,,5,5,5,5,5,5,5,3.2,24.3,41.02,0,4,8,KP,KP,11.2877,0.007,,1,spoc-s14-s55-b02,SPOC,19:41:56.78,51:00:48.69,4.172,0.048,6.655,0.052,2459419.054916,0.03214427,28.5410557316464,0.002546796,10.6581230767746,1.1830771,1.391274,0.216821,1280.58982645742,199.67946,7.1843682691348,0.8309613,94.8283439776294,795.892278187994,7.3322496,455.982,5.1315,6197.21,158.77,4.08307,0.0960215,1.64162003993988,0.0935502,0.127796,0.0136617,1.19,0.169905,"40,41,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-450 b,5993,1,False,False,True -63283780,5994.01,,5,5,5,5,5,5,5,2.8,32.7,13.85,0,5,3,KP,KP,13.0702,0.006,,1,spoc-s14-s55-b02,SPOC,19:30:00.82,43:04:59.59,7.462,0.028,14.509,0.029,2459397.430362,0.0027753883,7.97266437122265,8.9122994e-05,2.53955489036654,0.6674513,3.895162,0.379431,3581.14939225501,349.40784,3.79276609519442,2.113839,32.2210236019214,607.651511919129,8.613391,232.75,0.827,4564.61,82.6977,4.68645,,0.63749498128891,,0.277245,0.0127133,0.72,,"40,41,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-210 c,5994,1,False,False,True -352011875,5995.01,,5,5,5,5,5,5,5,3.1,2.8,317.0,0,4,4,KP,KP,11.7971,0.006,,1,spoc-s14-s55-b02,SPOC,19:02:41.5,44:07:00.3,-0.774,0.047,4.19,0.056,2458686.187589,0.009997406,6.24688132848871,9.4464835e-05,9.04000193574407,0.840332,0.560523,0.066251,516.127311311737,61.01743,15.6817805967516,3.5854125,324.780575530119,1082.72274783595,7.9771624,1294.69,40.735,4643.39,67.2904,4.438,,6.37871980667114,,0.431636,0.00645684,,,"14,26,40,41,53,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-91 b; apparent odd-even,5995,1,False,False,True -293880523,5996.01,TIC 293880523.01,3,4,3,3,1,4,4,4.4,44.1,107.64,0,1,0,PC,PC,10.2403,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,19:44:25.6,58:22:32.19,2.984,0.055,-1.804,0.049,2459467.902664,0.0072651645,109.050294566713,0.0027848736,7.3613042545522,0.18434335,4.155359,0.114706,3819.91220995588,105.64256,12.6721873720176,0.45798296,62.0087384240809,715.703223857957,33.74752,547.169,8.069,8953.0,130.131,4.22329,0.0689801,1.92506003379822,0.055402,,,2.26,0.322706,"40,41,47,50,54,55,56,57,60",2022-12-01,2023-05-01,2023-05-06 12:13:45,,5996,1,False,False,True -39516274,5997.01,,2,4,2,2,4,4,4,3.4,56.2,3.15,1,2,2,PC,PC,9.2576,0.006,,1,spoc-s14-s55-b02,SPOC,17:32:36.62,33:34:14,-223.678,0.035,177.344,0.042,2458985.158761,0.0019807084,5.65501795462306,2.6823176e-05,1.7818546193532,0.25559103,0.387475,0.04363,356.813694967015,40.183952,1.58742355277602,0.30108163,67.201432076962,730.237920364447,7.836735,46.521,0.05015,4674.0,123.295,4.61121,0.0952571,0.704768002033234,0.0510854,,,0.74,0.0912375,"25,26,52,53",2022-12-01,2022-12-01,2023-06-07 00:00:00,weakly variable host and low SNR,5997,1,False,False,True -370907864,5998.01,,2,4,2,2,2,4,4,2.9,38.3,9.79,1,2,2,PC,PC,11.5118,0.006,,1,spoc-s14-s55-b02,SPOC,19:30:18.36,18:23:41.74,73.591,0.051,31.135,0.058,2459397.788566,0.0035371282,9.33802520304996,0.00012437707,2.8573106945702,0.574079,1.925093,0.195701,1771.50475921843,180.23102,3.0931610107217,1.5715756,22.8910424287914,557.874026697768,9.305417,95.6465,0.4102,4066.0,129.391,4.52539,0.115396,0.723480999469757,0.0728844,,,0.64,0.0803792,"40,54",2022-12-01,2022-12-01,2023-07-07 00:00:00,low SNR; possible offset to SSW,5998,1,False,False,True -120317234,5999.01,,5,5,5,5,5,5,5,3.1,32.5,9.98,0,5,13,KP,KP,10.4081,0.007,,1,spoc-s14-s55-b02,SPOC,18:58:32.45,40:43:11.39,1.132,0.041,-2.375,0.046,2459397.268628,0.0022697398,6.88364705695779,7.895454e-05,2.02819753002461,0.38219875,0.580277,0.063689,534.311742288745,58.6581,3.12939442570136,0.8536104,347.850301764718,1101.45775672719,8.324294,228.439,1.3455,6133.77,125.783,4.32058,0.0809883,1.233029961586,0.0565779,0.0865293,0.0122051,1.16,0.15672,"40,41,53,54",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-506 b,5999,1,False,False,True -259233660,6000.01,,2,4,2,2,1,4,4,3.5,7.0,1.03,0,0,0,PC,PC,13.1638,0.007,,1,spoc-s14-s55-b02,SPOC,19:30:25.51,68:09:16.53,-8.2,0.068,11.322,0.073,2458683.576042,0.0008179514,0.448958911953033,1.109254e-05,0.763747725238208,0.3485629,0.732932,0.111336,674.827701648546,102.53909,1.01526302392795,1.2818562,258.748198111243,1022.91390701111,8.3127985,75.7664,0.18875,3419.0,157.0,4.84756,0.00180738,0.377508997917175,0.0112296,,,0.365888,0.0202309,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,47,48,49,51,52,53,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,low MES,6000,1,False,False,True -139104940,6001.01,,5,5,5,5,5,5,5,17.2,20.9,317.0,0,0,1,KP,KP,14.5855,0.008,,1,spoc-s14-s55-b02,SPOC,19:41:13.81,38:52:53.66,-5.822,0.04,-17.351,0.041,2459422.453454,0.008348298,3.00390101041347,8.423826e-05,3.87504767504936,0.5916121,11.014202,1.424744,10093.1737818985,1311.3771,16.7208629181528,1.6414378,1512.65414712678,1590.57686071785,8.019291,1745.77,74.445,6052.0,123.0,4.1353,,1.50633001327515,,,,1.13,,"41,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-493 b,6001,1,False,False,True -102734241,6002.01,,2,4,2,2,2,4,4,0.5,54.9,3.02,2,0,2,PC,PC,12.6396,0.007,,1,spoc-s14-s55-b02,SPOC,19:58:27.42,32:17:13.81,-37.998,0.072,-346.561,0.074,2458692.759945,0.00281244,10.9048392461916,4.8828635e-05,1.55306476821479,0.61305636,4.385203,0.636501,4030.77609932034,586.06696,1.5489481972591,0.9517032,1.82395448270129,296.396621238788,7.6758533,32.0266,0.04475,3272.0,157.0,4.99712,0.0152628,0.242120996117592,0.00723231,,,0.212382,0.0200954,"14,41,54,55",2022-12-01,2022-12-01,2023-06-20 00:00:00,low SNR,6002,1,False,False,True -121731834,6003.01,,5,5,5,5,5,5,5,2.2,21.5,8.87,0,52,6,KP,KP,10.593,0.006,,1,spoc-s14-s55-b02,SPOC,19:14:45.29,41:09:03.99,0.97,0.056,-14.189,0.056,2458686.103572,0.0049597,5.85993922192109,4.46115e-05,4.08423911792563,0.51406616,0.314311,0.040101,289.448773485226,36.93408,2.91896139274487,0.45745295,649.73557680662,1287.66802471974,7.2082953,303.728,2.6845,6149.0,97.451,4.14765,0.0742718,1.50919997692108,0.0579346,0.16,0.1,1.167,0.155353,"14,40,41,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-65 c,6003,1,False,False,True -48353358,6004.01,,5,5,5,5,5,5,5,1.2,36.5,5.1,0,2,6,KP,KP,12.1042,0.006,,1,spoc-s14-s55-b02,SPOC,18:54:30.78,48:23:26.91,-10.822,0.049,-48.674,0.047,2458685.778397,0.0021677264,9.87868379953592,3.184128e-05,1.88520417170868,0.25458682,1.878586,0.176244,1728.74538208164,162.31392,2.10831885587288,0.3531921,6.79487325877486,411.779848684636,9.8170185,66.4074,0.10605,3759.27,115.535,4.86726,0.135649,0.460619002580643,0.0505553,-0.0214533,0.00939257,0.57,0.0845327,"14,26,40,41,53,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-1651 b,6004,1,False,False,True -123357864,6005.01,,5,5,5,5,5,5,5,3.0,51.4,12.45,0,73,10,KP,KP,10.8515,0.006,,1,spoc-s14-s55-b02,SPOC,18:45:55.79,47:12:28.17,-41.143,0.04,-43.143,0.036,2458697.413913,0.014780549,16.1455898171819,0.00027887174,4.54317107859519,0.6499666,0.99883,0.175413,919.533626184334,161.5487,3.5634669513522,5.18916,19.5319797306781,536.17469794516,8.10099,107.796,0.2195,4816.0,105.098,4.59996,0.0795555,0.732994973659515,0.0426181,0.06,0.1,0.78,0.0931707,"14,26,40,41,53,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-102 e,6005,1,False,False,True -123309556,6006.01,,5,5,5,5,5,5,5,4.3,35.0,7.36,0,38,6,KP,KP,12.1773,0.006,,1,spoc-s14-s55-b02,SPOC,18:44:46.74,47:29:50.14,-5.584,0.038,25.253,0.041,2459392.21042,0.0012307481,2.50808154880029,1.552811e-05,1.17243983199367,0.35740787,1.404456,0.13311,1292.71525229953,122.591095,2.61631053676384,3.7120283,223.529011774772,986.173263616773,9.532586,191.904,0.8175,4715.0,138.878,4.57812,0.099608,0.739515006542206,0.0594975,0.33,0.1,0.755,0.0917611,"40,41,53,54,55",2022-12-01,2022-12-01,2022-12-14 12:09:24,Kepler-94 b,6006,1,False,False,True -279922257,6007.01,,2,4,2,2,1,4,4,0.0,15.1,8.59,0,0,0,PC,PC,11.8288,0.007,,1,spoc-s14-s55-b02,SPOC,02:36:42.38,78:39:08.07,77.011,0.075,18.593,0.079,2458799.852581,0.007702014,949.790595165536,0.005368609,4.22220634723545,0.5164381,3.293858,0.601161,3029.15858471924,553.5361,2.86328147418802,0.41317987,0.0304530113067024,106.54358612339,8.103081,48.3609,0.10715,3500.0,157.0,4.80448,0.00489539,0.424371004104614,0.0126967,,,0.418697,0.0203258,"18,19,25,26,52,53",2022-12-01,2022-12-01,2022-12-14 12:09:24,flaring host; period likely shorter than maximum period of ~949.79,6007,1,False,False,True -286201103,6008.01,,2,4,4,2,2,4,4,10.0,18.2,2.09,3,0,1,PC,PC,12.2936,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,20:41:47.7,49:38:48.84,158.442,0.102,44.404,0.093,2458711.372904,0.0005047708,0.857372697894355,1.4038113e-05,0.547859807639078,0.10237745,2.223375,0.293242,2045.70912208089,270.04935,1.24654783562971,0.15803361,42.0122020054044,649.327222700256,8.719756,23.1008,0.0292,3098.0,157.0,5.00721,0.0168336,0.235047996044159,0.00699863,,,0.204861,0.0200791,"15,16,41,55,56",2022-12-01,2023-05-19,2023-06-20 00:00:00,sub-Earth candidate,6008,1,False,False,True -128558444,6009.01,,3,4,3,3,3,4,4,38.2,144.4,91.88,1,1,1,PC,PC,10.4403,0.008,,1,qlp-s56-tois,SPOC,22:36:55.43,37:40:31.86,-2.842,0.051,-10.235,0.075,2459852.869635,0.0006989,1.5500607,1.7e-06,1.225,0.323,2.772163,0.257759,2550.0,237.377,11.5208,0.688041,7523.43,2594.0,43.0,597.281,18.303,8552.3,193.7,4.18,0.07,2.04,0.08,,,2.29,0.324439,"16,56",2022-12-15,2023-02-05,2023-02-27 00:00:00,Possible odd/even; V-shaped; centroid centered closer to another star,6009,1,False,False,True -199949052,6010.01,TIC 199949052.01,3,4,3,3,4,4,4,39.7,132.7,34.21,2,2,2,PC,PC,10.4963,0.006,,1,qlp-s57-ffi,SPOC,22:26:57.03,45:58:19.2,-29.959,0.049,-8.929,0.045,2459881.320771,0.0007148,0.586806,2.8e-06,0.485,0.187,0.912402,0.484654,840.0,446.283,6.44104,0.965099,2345.92,1938.0,24.0,274.738,2.1025,5842.0,130.8,4.17,0.08,1.48,0.07,,,1.18,0.178879,"16,56,57",2022-12-15,2023-02-05,2023-07-07 00:00:00,possible odd-even; low a/Rs,6010,1,False,False,True -414019147,6011.01,,3,4,3,3,3,4,4,52.4,115.3,122.66,0,0,1,PC,PC,12.598,0.018,,1,qlp-s57-tois,SPOC,22:26:45.79,57:26:02.98,17.224,2.156,11.27,2.156,2459880.708932,0.0010856,2.3179699,3e-06,1.496,0.277,13.117529,0.73458,12009.0,676.344,14.5204,0.779198,172.957,1010.0,33.0,374.145,,5770.0,231.045,4.438,,1.33,0.05,,,,,"16,17,24,57",2022-12-15,2023-05-01,2023-05-06 12:13:45,,6011,1,False,False,True -432280671,6012.01,TIC 432280671.01,3,4,3,3,3,4,4,9.5,67.7,41.98,0,2,1,PC,PC,10.5418,0.006,,1,spoc-s57-b02,SPOC,23:40:07.06,32:00:56.74,-2.383,0.051,-21.908,0.034,2459861.658508,0.0016090019,16.2117628624491,0.00227824,5.34955844841114,0.17171787,3.990894,0.146628,3669.00227783733,135.04044,7.28260357660504,0.4944534,101.573698683214,809.683084544544,24.81528,226.572,2.362,6119.0,132.891,4.35436,0.0800458,1.18342995643616,0.054392,,,1.155,0.155036,57,2022-12-15,2022-12-15,2023-02-27 00:00:00,some phases are not covered; multiple stars in pixel,6012,1,False,False,True -53728859,6013.01,,5,5,5,5,5,5,5,45.9,126.0,103.14,0,0,1,KP,KP,12.3396,0.008,,1,spoc-s57-b02,SPOC,00:52:00.22,34:43:42.25,25.519,0.067,2.859,0.051,2459853.92256,0.00072583347,3.2573898016453,0.00014826475,3.14008263299369,0.061754107,15.05469,0.238725,13770.1931363821,219.84996,12.3569361076742,0.6672009,554.712212779874,1237.76067755573,40.388447,401.319,5.4685,5698.38,110.615,4.40322,0.0743345,1.04612994194031,0.0524472,0.158,0.032,1.01,0.12546,57,2022-12-15,2022-12-15,2022-12-17 12:02:39,HAT-P-28 b,6013,1,False,False,True -57984377,6014.01,,5,5,5,5,5,5,5,99.4,119.3,317.0,0,0,1,KP,KP,11.1355,0.006,,1,spoc-s57-b02,SPOC,00:20:40.07,31:59:23.9,-4.706,0.078,-3.237,0.072,2459854.549103,0.0003824449,2.51991455670087,6.5225504e-05,3.71213629233706,0.031593755,13.579588,0.086471,12429.3724558819,79.63954,17.7001931906383,0.8911862,2121.51752656547,1730.93757465977,163.28555,393.072,10.5255,6116.0,106.58,4.11132,0.0780515,1.56419003009796,0.0777889,0.21,0.1,1.153,0.156216,57,2022-12-15,2022-12-15,2022-12-17 12:02:40,WASP-1 b,6014,1,False,False,True -288246496,6015.01,,5,5,5,5,5,5,5,41.2,105.3,125.05,0,0,1,KP,KP,11.5639,0.006,,1,spoc-s57-b02,SPOC,23:46:40.01,31:09:21.28,30.262,0.051,-5.852,0.032,2459854.005471,0.0009381664,4.30482901389489,0.00025673004,3.53112663340487,0.06810165,8.208086,0.14036,7531.42211974336,129.26822,13.8395402346044,0.7188342,925.493484840514,1406.73758497746,37.088776,431.052,7.4285,6001.0,143.081,4.12263,0.0823983,1.51284003257751,0.0744724,,,1.107,0.151247,57,2022-12-15,2022-12-15,2022-12-17 12:02:38,WASP-60 b,6015,1,False,False,True -327369524,6016.01,TIC 327369524.01,3,4,3,3,3,4,4,56.7,58.1,317.0,0,2,1,PC,PC,11.3864,0.006,,1,qlp-s57-tois,SPOC,00:18:05.75,59:45:58.31,-7.744,0.038,-1.659,0.034,2459877.793195,0.000737,4.0236805,3.7e-06,3.71,0.192,9.733697,0.192749,8925.0,177.513,14.9702,0.750958,606.797,1382.0,37.0,364.715,3.612,5807.0,148.796,4.06406,0.0766699,1.57,0.08,,,1.044,0.130579,"17,18,24,57",2022-12-15,2023-05-01,2023-05-06 12:13:45,,6016,1,False,False,True -291751373,6017.01,,5,5,5,5,5,5,5,39.1,37.2,317.0,0,0,0,KP,KP,12.355,0.01,,1,spoc-s57-b02,SPOC,23:56:36.47,36:12:46.64,-7.763,0.076,-8.484,0.047,2459855.494899,0.0016258125,2.50791765457186,0.00026065356,3.06522694989512,0.14003949,7.624101,0.272669,6997.45912122021,251.10559,14.7176429841674,1.7681618,2704.95555796288,1839.33054515888,21.09248,735.601,32.093,6207.39,290.028,4.03891,0.152399,1.72724997997284,0.187982,-0.069,0.275,1.19,0.206923,57,2022-12-15,2022-12-15,2022-12-17 12:02:37,Qatar-3 b,6017,1,False,False,True -67881560,6018.01,TIC 67881560.01,2,4,2,2,3,4,4,5.3,56.2,4.28,0,2,1,PC,PC,10.3337,0.006,,1,spoc-s57-b02,SPOC,00:37:23.31,40:54:18.61,-50.997,0.077,-73.356,0.126,2459854.35292,0.0032582157,2.33225242355764,0.00047417002,1.44075557411049,0.42268327,0.620473,0.07591,571.313889644921,69.91328,1.902341994059,0.86886877,267.337960725459,1031.29973769829,7.7265925,88.1971,0.5019,4983.53,97.1001,4.65066,0.0782335,0.708944976329803,0.0356834,-0.228204,0.0269527,0.82,0.105319,57,2022-12-15,2022-12-15,2023-02-27 00:00:00,possibly SV; some transits have ramped shape,6018,1,False,False,True -125520907,6019.01,TIC 125520907.01,3,4,3,3,3,4,4,24.0,77.4,100.78,0,2,1,PC,PC,10.0651,0.006,,1,spoc-s57-b02,SPOC/QLP,23:40:21.92,35:56:27.02,-6.961,0.045,-0.238,0.032,2459862.347647,0.001861645,14.5465244874381,0.0025750466,5.48816372477702,0.15924984,3.50478,0.101353,3222.81700720047,93.34518,12.1897190345966,0.6882524,249.650111301075,1013.8009423405,14.761625,260.342,2.345,5559.5,112.5,3.84,0.08,1.9794100522995,0.0957664,0.163,0.023,0.98,0.128027,57,2022-12-15,2022-12-15,2023-02-27 00:00:00,two transits,6019,1,False,False,True -334597566,6020.01,TIC 334597566.01,3,5,5,3,3,4,4,23.1,77.3,120.8,0,2,1,PC,APC,12.0471,0.006,,1,qlp-s57-tois,SPOC,22:05:15.22,64:05:53.32,-6.183,1.557,0.041,1.557,2459872.940531,0.0026203,9.1099373,2.72e-05,9.51,0.378,9.615388,0.20942,8817.0,192.864,13.5278,,1223.52,,38.0,507.236,,6511.0,,4.438,,1.48,,,,,,"16,17,18,24,57",2022-12-15,2023-05-01,2023-05-06 12:13:45,multiple stars in pixel,6020,1,False,False,True -291685334,6021.01,,5,5,5,5,5,5,5,60.8,71.1,317.0,0,0,0,KP,KP,12.489,0.008,,1,spoc-s57-b02,SPOC,23:54:03.63,37:01:18.57,-5.189,0.05,-1.129,0.035,2459853.85413,0.0007400819,2.03198834488875,9.390641e-05,3.49374627811632,0.06007022,13.407692,0.183166,12273.0056922608,168.68814,17.7163978797721,1.0699655,2886.29220021402,1869.41112769235,40.163723,705.981,25.1855,6161.0,134.74,4.1171,0.0921985,1.56523001194,0.0914572,,,1.17,0.166819,57,2022-12-15,2022-12-15,2022-12-17 12:02:39,Qatar-7 b,6021,1,False,False,True -455947620,6022.01,,3,4,4,3,1,4,4,281.2,369.6,317.0,4,0,0,PC,PC,13.7057,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,22:40:00.3,60:49:24.6,56.651,0.07,75.605,0.064,2459854.589182,0.00031364892,1.92810923048424,9.294661e-07,1.41744995002751,0.01998326,124.056505,2.251127,107974.235954274,2071.2168,17.7947707372547,19.28166,30.0343206726018,597.068559841286,116.11209,86.9388,0.3151,3264.0,157.0,4.8548,0.00122399,0.369846999645233,0.011002,,,0.357093,0.0202234,"17,57",2022-12-15,2023-05-19,2023-06-16 12:14:51,v-shaped,6022,1,True,False,True -455947620,6022.02,,2,4,2,2,1,4,4,6.7,55.7,6.74,4,0,0,PC,PC,13.7057,0.007,,2,spoc-s14-s60-b0A-PC,SPOC,22:40:00.3,60:49:24.6,56.651,0.07,75.605,0.064,2458765.940349,0.0027763722,1.54544924333617,1.2693121e-05,2.78215275002004,0.4825546,4.657765,0.607752,4280.7714918259,559.60364,2.48293031504915,0.550688,40.3385543573112,642.761465199046,8.388674,86.9388,0.3151,3264.0,157.0,4.8548,0.00122399,0.369846999645233,0.011002,,,0.357093,0.0202234,"17,57",2023-05-18,2023-05-18,2023-06-16 12:14:51,potential multi; interior to .01; low SNR,6022,2,True,False,True -341444900,6023.01,,5,5,5,5,5,5,5,,,37.96,0,2,0,PC,FP,8.629,0.032,,1,qlp-s57-ffi,QLP,21:40:54.87,55:04:00.3,0.197,0.061,-7.928,0.057,2459877.877325,0.0164038,9.0329611,0.000168,5.906,1.81,0.173732,0.022733,160.0,20.9373,6.86834,,1057.68,1588.0,11.0,475.345,7.5705,7527.0,122.0,,,5.64,,,,,,"16,17,56,57",2022-12-15,2022-12-15,2023-04-01 12:02:43,weak signal; evolved host star; possible SV,6023,1,False,False,False -56231866,6024.01,,5,5,5,5,5,5,5,,,95.78,0,1,1,PC,FP,9.3185,0.007,,1,qlp-s57-ffi,QLP,23:44:09.21,26:25:32.41,-7.384,0.097,-7.741,0.046,2459881.5005,0.0058797,2.7238937,0.0009888,1.668,0.45,0.434381,0.056604,400.0,52.1326,11.8283,,152.578,979.0,10.0,365.845,6.553,4758.0,122.0,,,5.53,,,,,,57,2022-12-15,2022-12-15,2023-01-02 12:02:44,potential secondary; possibly SV,6024,1,False,False,False -439942982,6025.01,,3,4,3,3,3,4,4,30.3,119.7,59.84,0,1,1,PC,PC,9.645701,0.007,,1,qlp-s57-ffi,QLP,00:04:17.77,42:34:24.96,5.871,0.073,-0.228,0.048,2459880.796253,0.0020796,1.0222806,1.52e-05,2.071,0.316,1.390633,0.119021,1280.0,109.616,8.97675,0.587789,15853.1,3126.0,13.0,486.144,14.4625,8448.0,133.2,3.98,0.07,2.46,0.1,,,2.1,0.305724,"17,57",2022-12-15,2022-12-15,2023-02-27 00:00:00,signal diluted by brighter neighbor to N; possible SV,6025,1,False,False,False -396234347,6026.01,,1,4,1,1,3,4,4,6.3,9.8,2.2,0,2,1,PC,PC,8.9553,0.006,,1,qlp-s57-ffi,QLP,00:00:53.57,35:45:08.8,158.791,0.074,-41.084,0.04,2459881.735855,0.0021339,1.2757761,3.76e-05,1.313,0.216,0.249748,0.029973,230.0,27.6055,1.28307,0.119756,357.418,1211.0,11.0,42.0564,0.0824,4540.4,108.6,4.5,0.09,0.79,0.05,-0.080034,0.0194603,0.72,0.0807943,"17,57",2022-12-15,2022-12-15,2023-02-27 00:00:00,,6026,1,False,False,True -368678195,6027.01,TIC 368678195.01,3,4,3,3,1,4,4,123.4,168.5,317.0,0,0,0,PC,PC,13.8504,0.007,,1,spoc-s58-b02,SPOC,00:50:57.78,68:11:09.25,-6.448,0.043,-6.093,0.034,2459882.348252,0.0011352929,2.8406462042365,0.00020493302,2.74406124468192,0.08155173,64.726183,1.687454,57872.8336090667,1552.9954,24.2892125563821,0.6621586,293.410993343228,1055.5743900587,30.907064,416.463,4.1105,4389.0,122.0,4.24954,,1.0290299654007,,,,0.686,,58,2023-01-20,2023-01-19,2023-01-26 12:09:41,large; possible PMS host,6027,1,False,False,True -250707118,6028.01,TIC 250707118.01,5,5,5,5,5,5,5,35.6,121.6,93.26,0,0,0,KP,KP,11.2791,0.006,,1,spoc-s58-b02,SPOC,02:12:31.46,51:46:43.59,-9.805,0.101,1.898,0.083,2459885.016838,0.00078460074,5.72385819309734,0.00031189923,3.85451413513856,0.07626595,9.46779,0.154001,8682.24660287776,141.82971,11.6470757345453,0.7574461,434.176878052639,1164.22366384784,51.948875,313.576,4.37,6086.0,115.011,4.31517,0.0871291,1.23052000999451,0.0756281,0.14,0.08,1.141,0.161213,58,2023-01-20,2023-01-19,2023-01-26 12:09:41,HAT-P-29 b,6028,1,False,False,True -419523962,6029.01,TIC 419523962.01,3,4,3,3,1,4,4,25.5,24.8,317.0,0,1,0,PC,PC,11.6593,0.006,,1,qlp-s58-tois,SPOC,00:33:32.7,61:51:38.76,-0.489,0.042,4.045,0.039,2459904.818632,0.0052733,5.7998626,4.33e-05,5.684,0.604,2.59475,0.104513,2387.0,96.2553,11.022,,806.794,1484.0,19.0,603.119,11.5015,5852.0,122.0,3.64892,,2.55,,,,1.057,,"17,18,24,58",2023-01-20,2023-07-06,2023-07-06 00:00:00,evolved host; three other fainter stars in pixel,6029,1,False,False,True -245392284,6030.01,,5,5,5,5,5,5,5,54.8,72.0,317.0,0,0,0,KP,KP,11.9004,0.01,,1,spoc-s58-b02,SPOC,02:33:28.6,56:01:32.55,-3.252,0.067,0.052,0.081,2459883.279834,0.0018029311,1.74428305047365,0.00020344759,2.19283721045,0.099414065,8.113818,0.415385,7445.24790473682,382.5108,15.3898194904707,0.76149726,7630.77149901475,2383.75634366297,16.365398,655.013,16.6855,8039.0,143.62,4.31943,0.0718579,1.60080003738403,0.0610603,,,1.95,0.286083,58,2023-01-20,2023-01-19,2023-01-26 12:09:41,GPX-1 b; BD,6030,1,False,False,True -292152376,6031.01,,5,5,5,5,5,5,5,215.2,327.1,317.0,0,0,0,KP,KP,10.7696,0.006,,1,spoc-s58-b02,SPOC,02:04:10.26,46:41:16.26,-9.825,0.1,3.477,0.086,2459883.617765,0.00014018902,2.14999072037241,1.9814892e-05,3.10269682836296,0.010482921,28.202289,0.088057,25640.8126074774,81.10006,20.6364944301285,0.9848484,1865.45378143211,1676.16154576994,302.27103,289.205,5.261,6340.0,125.254,4.33387,0.0843417,1.26303994655609,0.0601859,,,1.255,0.18614,58,2023-01-20,2023-01-19,2023-01-26 12:09:41,HAT-P-32 b,6031,1,False,False,True -285466025,6032.01,TIC 285466025.01,3,4,3,3,1,4,4,10.0,52.4,20.97,0,2,0,PC,PC,7.98475,0.006,,1,spoc-s58-b02,SPOC,02:27:08.32,32:52:37.04,12.832,0.118,-10.789,0.112,2459887.395272,0.0037498171,7.37239062537613,0.0019647216,7.82170788961434,0.4859311,0.377671,0.028308,347.787687859379,26.071888,4.84059875447906,1.3809732,1331.92120946699,1540.775567941,10.681877,153.525,1.2105,6083.0,137.727,3.68069,0.0805077,2.55240988731384,0.118995,,,1.139,0.160862,58,2023-01-20,2023-01-19,2023-01-26 12:09:41,bright evolved host,6032,1,False,False,True -67711670,6033.01,TIC 67711670.01,3,4,3,3,1,4,4,15.8,79.9,86.14,0,2,0,PC,PC,10.6492,0.006,,1,spoc-s58-b02,SPOC,02:53:29.36,39:15:36.53,24.154,0.084,-9.895,0.075,2459885.981072,0.001189219,18.0401494432717,0.0016942518,6.0379225837678,0.116488926,6.14667,0.136765,5645.29753747202,125.95702,11.1154984933242,0.61798036,143.338758591557,882.491760608385,31.996292,309.804,6.763,6345.0,131.915,4.21827,0.0882913,1.44456994533539,0.072897,,,1.258,0.185192,58,2023-01-20,2023-01-19,2023-01-26 12:09:41,,6033,1,False,False,True -388076422,6034.01,TIC 388076422.01,3,4,3,3,3,4,4,91.8,248.2,100.15,0,0,2,PC,PC,13.2297,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,21:11:36.03,68:24:07.47,-2.426,0.048,-5.041,0.056,2459883.905467,0.0007419936,2.57617955980314,2.6104795e-05,1.58793786759182,0.030522976,55.581565,1.148705,49904.2528728366,1057.4371,12.1450869149725,0.4152841,45.3541067950756,661.871840256343,56.127953,117.992,0.374,3628.0,157.0,4.73924,0.00816489,0.497904986143112,0.0149054,,,0.495981,0.0203684,"56,57,58",2023-01-20,2023-05-19,2023-06-16 12:14:51,V-shaped,6034,1,False,False,True -323194443,6035.01,TIC 323194443.01,3,4,3,3,1,4,4,22.4,85.6,56.67,3,0,0,PC,PC,13.859,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,22:10:35.09,69:46:27.26,4.597,2.208,9.62,2.208,2459885.398621,0.0021736592,3.90741880945638,0.00019368126,2.50522024082317,0.13018717,16.934934,0.586266,15476.6369435738,539.8251,,,423.808252859036,1157.20979751624,25.24891,,,5780.0,,4.438,,,,,,,,"57,58",2023-01-20,2023-05-19,2023-06-16 12:14:51,no stellar radius; high RUWE+RV error; Gaia DR3 parallax; DR2 Rstar = 0.6 Rsun,6035,1,False,False,True -129756316,6036.01,TIC 129756316.01,3,5,5,3,1,4,4,89.4,136.9,317.0,0,2,0,PC,APC,9.74061,0.006,,1,qlp-s58-ffi,QLP,02:19:20.85,40:59:38.2,31.088,0.09,-14.244,0.092,2459905.455998,0.0003251,6.5234682,4e-06,5.966,0.122,9.114908,0.076103,8360.0,70.0908,19.045,0.939895,872.331,1514.0,209.0,300.063,6.5685,6409.0,125.6,3.93,0.09,2.04,0.1,,,1.288,0.194763,"18,58",2023-01-20,2023-01-19,2023-02-01 12:02:41,likely too large; somewhat evolved host,6036,1,False,False,False -352924930,6037.01,,5,5,5,5,5,5,5,4.7,24.9,23.63,0,0,0,EB,FP,10.3755,0.034,,1,qlp-s58-ffi,QLP,01:27:13.31,67:58:00.68,13.207,0.041,-4.369,0.04,2459902.326174,0.0140046,4.0158199,6.79e-05,6.39,3.509,0.358352,0.076443,330.0,70.4041,5.20076,0.608479,17781.5,3217.0,13.0,480.772,6.0325,6950.0,265.7,3.78,0.09,2.64,0.11,,,1.52,0.281712,"18,24,25,52,58",2023-01-20,2023-03-23,2023-03-23 00:00:00,shallow transits; somewhat evolved host; retired as TFOP FP/NEB,6037,1,False,False,True -194736418,6038.01,,3,4,3,3,1,4,4,9.5,59.4,19.35,0,2,0,PC,PC,9.3229,0.006,,1,qlp-s58-ffi,QLP,03:26:37.74,40:49:02.17,10.37,0.094,-39.997,0.063,2459900.539896,0.0024808,5.8267724,3.09e-05,4.598,0.606,0.879803,0.04941,810.0,45.5073,4.615,0.267509,744.793,1455.0,16.0,179.147,1.437,6305.0,140.1,4.11,0.09,1.62,0.08,,,1.239,0.185961,"18,58",2023-01-20,2023-01-19,2023-01-26 12:09:41,QLP underestimating radius; likely ~6 Re; possible depth aperture correlation,6038,1,False,False,True -272050287,6039.01,,5,5,5,5,5,5,5,15.3,57.5,74.91,0,2,0,EB,FP,10.244,0.006,,1,qlp-s58-ffi,SPOC/QLP,23:41:44.1,63:01:07.84,14.989,0.053,2.322,0.049,2459908.575411,0.0013353,8.503614,1.67e-05,1.203,0.227,1.727694,0.13027,1590.0,119.976,10.2441,0.560612,33.4398,669.0,21.0,425.467,5.5605,6255.0,144.3,3.88,0.09,2.31,0.09,,,1.472,0.255306,"17,18,24,57,58",2023-01-20,2023-03-23,2023-03-23 00:00:00,slightly V-shaped; evolved variable host star; Rp may be underestimated; TFOP FP/SB1,6039,1,False,False,True -250839071,6040.01,,3,4,3,3,1,4,4,95.1,113.0,317.0,0,5,0,PC,PC,9.8781,0.006,,1,qlp-s58-ffi,QLP,02:17:47.03,53:48:27.3,-1.4,1.7,0.5,1.7,2459905.801607,0.0004274,3.4925674,0.000123,4.378,0.069,7.692484,0.078899,7060.0,72.6657,15.7585,0.715649,1792.0,1812.0,158.0,,,6558.7,16.9,,,1.8,0.08,0.11,0.014,,,58,2023-01-20,2023-01-19,2023-01-26 12:09:41,multiple stars in pixel,6040,1,False,False,False -192415680,6041.01,TIC 192415680.01,3,4,3,3,3,4,4,0.0,25.2,17.61,0,9,4,PC,PC,9.2063,0.006,,1,qlp-s58-ffi,QLP,03:04:14.65,43:33:27.6,71.775,0.1,-66.077,0.065,2459890.088192,0.0015422,1094.062167,4.25e-05,3.534,0.257,2.556659,0.102095,2352.0,94.0283,4.39378,0.295008,17.1449,566.0,33.0,72.4731,0.20825,5359.0,146.0,4.55,0.09,0.85,0.05,0.161524,0.0168961,0.93,0.11972,"18,58",2023-01-20,2023-01-19,2023-01-26 12:09:41,actual period likely shorter than max period of ~1094 days,6041,1,False,False,True -374919956,6042.01,,3,4,3,3,1,4,4,24.7,47.1,317.0,0,2,0,PC,PC,10.0201,0.02,,1,qlp-s58-ffi,QLP,02:08:20.63,56:24:35.22,-0.908,0.059,-4.394,0.086,2459904.389425,0.0022773,7.7966237,0.001995,1.461,0.225,2.173647,0.197263,2000.0,181.669,18.0417,1.14848,200.285,1048.0,15.0,897.633,29.284,9434.0,319.5,3.66,0.07,3.78,0.16,,,2.4,0.325675,58,2023-01-20,2023-01-19,2023-01-26 12:09:41,slight odd-even likely due to detrending; possibly too large,6042,1,False,False,False -453064665,6043.01,,5,5,5,5,5,5,5,54.8,131.3,109.21,0,0,0,KP,KP,11.8889,0.024,,1,spoc-s59-b02,SPOC,04:58:01.05,48:18:03.08,14.732,0.08,-43.776,0.061,2459911.851307,0.0007864543,2.64521208547123,0.00015188332,3.05598357376245,0.07064725,11.413149,0.21918,10456.8418233156,201.85162,12.7803657448457,0.75549006,970.516357578376,1423.54258813376,32.981808,348.815,4.8835,5596.0,181.613,4.24644,0.0841986,1.24059998989105,0.0658794,,,0.99,0.130567,59,2023-02-08,2023-02-08,2023-02-10 12:02:42,HAT-P-62 b,6043,1,False,False,True -356916207,6044.01,,2,4,2,2,1,4,4,4.2,41.9,5.47,0,2,0,PC,PC,9.97967,0.006,,1,spoc-s59-b02,SPOC,18:13:30.56,55:12:24.93,17.769,0.049,-14.138,0.042,2459911.246864,0.0041860538,2.25386419410237,0.00061434053,1.510749087565,1.0254995,0.416707,0.087933,383.727436889091,80.98557,2.19621367041366,7.073425,1142.2633881922,1482.72740225536,7.1491456,161.482,0.5215,5957.0,126.826,4.39105,0.0779368,1.10260999202728,0.0514573,,,1.091,0.133938,59,2023-02-08,2023-02-08,2023-02-10 12:02:42,very low SNR,6044,1,False,False,True -467649533,6045.01,TIC 467649533.01,3,4,3,3,1,4,4,22.5,64.1,95.55,0,2,0,PC,PC,10.5547,0.007,,1,spoc-s59-b02,SPOC,04:02:33.79,34:00:14.89,-4.481,0.081,-16.807,0.053,2459913.845278,0.0020081257,7.48263248953845,0.001063082,6.56471362806085,0.1844891,2.793871,0.082998,2569.94217128431,76.44105,11.8138164100063,0.8113201,1070.58875102116,1458.89964470295,21.282948,398.105,6.8735,6128.0,126.382,3.7824,0.0805452,2.29119992256165,0.109892,,,1.16,0.155208,59,2023-02-08,2023-02-08,2023-02-10 12:02:43,,6045,1,False,False,True -66296167,6046.01,TIC 66296167.01,3,4,3,3,1,4,4,26.7,73.6,111.13,0,0,0,PC,PC,13.7471,0.029,,1,spoc-s59-b02,SPOC,04:48:23.2,62:03:45.54,5.903,0.038,3.416,0.039,2459911.708915,0.0019159125,3.41370197920539,0.00045312103,2.91600914998522,0.15620056,17.292121,0.676383,15800.4739836167,622.77765,12.9118144127452,0.6255599,530.104855960496,1223.79928521792,18.457575,653.446,14.927,5845.0,122.0,4.44554,,1.01592004299164,,,,1.05,,59,2023-02-08,2023-02-08,2023-02-10 12:02:40,apparent odd-even due to detrending artifact caused by first transit falling near data gap,6046,1,False,False,True -115451738,6047.01,TIC 115451738.01,3,4,3,3,1,4,4,41.3,95.2,128.28,0,0,0,PC,PC,14.1279,0.014,,1,spoc-s59-b02,SPOC,05:34:55.41,31:04:35.37,0.108,0.064,-2.863,0.049,2459911.473563,0.006441028,2.07911585116562,0.0008908279,6.85657423907025,0.3746359,17.413596,1.174853,15910.5825093473,1081.494,14.0488094342462,0.71166867,809.869842006873,1360.57835086953,9.677222,690.466,20.298,5583.0,123.0,4.46043,,0.96969997882843,,,,0.99,,59,2023-02-08,2023-02-08,2023-02-10 12:02:42,weak odd-even; potential centroid offset; variable host; possible,6047,1,False,False,True -280024247,6048.01,TIC 280024247.01,3,4,3,3,1,4,4,8.6,43.3,26.31,0,3,0,PC,PC,10.3971,0.006,,1,spoc-s59-b02,SPOC,03:33:25.82,59:59:19.68,33.514,0.041,-12.14,0.054,2459915.46858,0.0034400169,5.49282457420207,0.001800123,3.40085461330981,0.5386909,1.092972,0.086839,1006.15821339647,79.978386,5.53232118604962,2.237088,936.516333211122,1410.90765111276,10.752078,280.271,2.502,6235.0,204.173,4.05522,0.0891323,1.70647001266479,0.0758291,,,1.206,0.176444,59,2023-02-08,2023-02-08,2023-02-10 12:02:42,crowded; possible odd-even,6048,1,False,False,True -353459965,6049.01,,5,5,5,5,5,5,5,27.4,142.3,66.82,0,0,0,KP,KP,11.0878,0.006,,1,spoc-s59-b02,SPOC,04:24:59.55,39:27:38.17,14.403,0.129,-9.377,0.089,2459918.20065,0.00090888597,10.8614910692476,0.0012754254,5.55114668081709,0.08914274,12.085168,0.170462,11069.1320346572,156.98859,9.57313647321859,2.0672128,79.7577938665443,762.189624869689,75.71807,192.516,2.0315,5663.55,98.6637,4.53693,0.187925,0.895094990730286,0.192698,0.283699,0.0280899,1.006,0.119981,59,2023-02-08,2023-02-08,2023-02-10 12:02:43,HAT-P-15 b,6049,1,False,False,True -339207264,6050.01,TIC 339207264.01,3,4,3,3,1,4,4,38.8,45.0,317.0,0,6,0,PC,PC,11.2873,0.009,,1,spoc-s59-b02,SPOC,05:37:35.66,64:58:53.51,8.977,0.03,-19.397,0.035,2459912.799879,0.0011344141,5.48235960301803,0.00044094137,4.95509798293441,0.09836562,7.08311,0.15471,6502.55142224666,142.48314,15.2816664901773,0.815868,1118.65777799312,1475.00693157448,33.826756,462.414,5.8395,6243.0,136.557,3.98185,0.0868765,1.85995995998383,0.0888442,,,1.21,0.172704,59,2023-02-08,2023-02-08,2023-02-10 12:02:42,two stars in pixel,6050,1,False,False,True -353960022,6051.01,TIC 353960022.01,3,4,3,3,1,4,4,58.4,98.9,317.0,0,0,0,PC,PC,13.4593,0.023,,1,spoc-s59-b02,SPOC,04:09:30.61,47:33:23.93,-0.476,0.049,-2.101,0.036,2459913.021886,0.0020808738,3.92009192343941,0.00054153195,4.11695435347387,0.15370412,24.630341,0.877251,22430.0040626338,807.65204,22.5941886327009,0.6540062,1241.1751658231,1513.83317684359,22.25058,915.507,23.8425,6574.32,207.97,4.23875,,1.47238004207611,,-0.241,0.193,1.37,,59,2023-02-08,2023-02-08,2023-02-10 12:02:41,large radius; but consistent with insolation,6051,1,False,False,True -9443323,6052.01,TIC 9443323.01,5,5,5,5,5,5,5,41.1,40.8,317.0,0,0,0,KP,KP,12.1957,0.006,,1,spoc-s59-b02,SPOC,04:35:23.16,56:52:05.77,-10.883,0.072,11.862,0.064,2459913.801096,0.0016783148,4.0135700487779,0.0005641929,4.13812017684486,0.12612508,9.335485,0.237463,8561.43948662856,218.68805,14.9544788815835,0.9052464,886.233648166538,1391.57561012979,24.745403,515.59,12.4805,5679.0,165.385,4.07294,0.08575,1.53012001514435,0.0837362,,,1.01,0.132934,59,2023-02-08,2023-02-08,2023-02-10 12:02:41,HAT-P-58 b,6052,1,False,False,True -66091052,6053.01,,3,5,5,3,1,4,4,37.9,130.0,76.2,0,2,0,PC,APC,9.89943,0.006,,1,spoc-s59-b02,SPOC,04:43:55.18,61:51:33.61,-5.033,0.106,3.628,0.119,2459912.417156,0.0013512536,2.21182811376241,0.00021138706,2.57386540647149,0.12461139,2.408099,0.259806,2215.48318138601,239.26181,10.3424054561077,1.0489104,8662.57814351568,2460.54629631712,9.209335,359.465,8.4845,7690.0,288.526,4.03855,0.0841464,2.12812995910645,0.0836382,,,1.805,0.30413,59,2023-02-08,2023-02-08,2023-02-18 12:02:46,significant host variability likely contributing to apparent odd-even,6053,1,False,False,True -392681545,6054.01,,2,4,2,2,1,4,4,5.6,60.4,6.95,0,2,0,PC,PC,7.4961,0.006,,1,spoc-s59-b02,SPOC,03:45:20.88,60:21:03.3,-54.987,0.048,-4.789,0.05,2459913.121951,0.005121751,7.49032706173113,0.0026372115,5.80071299483534,0.4518768,0.244969,0.022756,225.598876650574,20.958628,2.52777255882985,0.7809674,526.695642150917,1221.82689551926,8.938365,79.407,0.2038,6111.67,119.142,4.08398,0.0776287,1.61211001873016,0.0704171,,,1.15,0.15759,59,2023-02-08,2023-02-08,2023-02-10 12:02:41,potential multi; host variability,6054,1,True,False,True -392681545,6054.02,,2,4,2,2,1,4,4,5.0,58.9,8.26,0,2,0,PC,PC,7.4961,0.006,,2,spoc-s59-b02,SPOC,03:45:20.88,60:21:03.3,-54.987,0.048,-4.789,0.05,2459919.916627,0.005012165,12.5759947632049,0.006745347,6.52991803395634,0.53116393,0.309137,0.026901,284.685526320883,24.776178,2.79817967792507,0.9795008,263.939447397641,1028.0064163562,8.120321,79.407,0.2038,6111.67,119.142,4.08398,0.0776287,1.61211001873016,0.0704171,,,1.15,0.15759,59,2023-02-08,2023-02-08,2023-02-10 12:02:40,potential multi; possible odd-even; low SNR,6054,2,True,False,True -355640518,6055.01,TIC 355640518.01,3,4,4,3,1,4,4,299.3,225.1,317.0,2,0,0,PC,PC,14.4907,0.007,,1,spoc-s59-b02,SPOC,05:19:42.99,48:08:09.23,7.656,0.113,-41.495,0.103,2459910.643629,0.00054047897,0.849719431432759,3.059818e-05,1.35216746972867,0.03279675,78.195219,2.22078,69488.1410322177,2043.3234,19.5460598764751,0.50490344,337.105765535528,1092.8518572119,34.13334,229.367,3.6485,3493.0,122.0,4.432,,0.679269015789032,,,,0.455,,59,2023-02-08,2023-02-08,2023-04-01 00:00:00,size is large; but marginally consistent with insolation; two stars in pixel,6055,1,False,False,True -102808276,6056.01,TIC 102808276.01,3,4,3,3,1,4,4,27.4,65.1,106.72,0,0,0,PC,PC,14.6332,0.013,,1,spoc-s59-b02,SPOC,04:12:57.85,67:40:31.97,5.32,0.038,-12.79,0.06,2459912.905528,0.0034417517,3.14204945907693,0.00082439807,2.66913189671174,0.25330064,20.001877,1.379704,18253.753965999,1269.9469,12.6079160842139,0.9255885,275.602711709264,1039.17962054946,12.461929,515.161,9.885,4996.0,122.0,4.47095,,0.877201974391937,,,,0.83,,59,2023-02-08,2023-02-08,2023-02-10 12:02:45,multiple stars in pixel,6056,1,False,False,True -104734832,6057.01,TIC 104734832.01,3,4,3,3,1,4,4,14.4,57.6,56.33,0,8,0,PC,PC,9.51295,0.006,,1,spoc-s59-b02,SPOC,04:16:13.5,50:24:34.58,6.681,0.059,-20.51,0.037,2459912.751153,0.0025921,10.3274379870238,0.0020152035,8.80211143177618,0.24609986,1.346231,0.082946,1239.15636439443,76.39336,8.65754861210942,1.112431,856.735068397412,1379.84843576013,12.537905,305.581,3.6275,6402.35,140.99,3.78349,0.12315,2.40846991539001,0.260206,0.012,0.011,1.285,0.210884,59,2023-02-08,2023-02-08,2023-02-10 12:02:44,apparent odd-even likely due to underlying stellar variability and one TCE near a data gap,6057,1,False,False,True -144006874,6058.01,,2,4,2,2,1,4,4,7.2,71.4,3.83,0,2,0,PC,PC,9.5951,0.006,,1,qlp-s59-ffi,QLP,05:25:36.54,37:07:05.76,18.629,0.098,-93.682,0.067,2459935.968189,0.0018161,2.3673676,8.1e-06,1.045,0.214,0.597319,0.071474,550.0,65.828,1.78396,0.19027,58.4073,770.0,9.0,47.6869,0.1154,4403.0,127.8,4.58,0.1,0.71,0.06,,,0.69,0.0796025,"19,59",2023-02-08,2023-02-08,2023-02-10 12:02:45,low SNR,6058,1,False,False,False -321578632,6059.01,TIC 321578632.01,2,4,2,2,1,4,4,2.9,38.1,5.52,0,3,0,PC,PC,10.2596,0.006,,1,qlp-s59-ffi,SPOC/QLP,05:33:31.2,55:07:43.72,-6.405,0.103,-21.511,0.136,2459928.523425,0.0048389,6.3667329,3.4e-05,2.628,0.556,0.845032,0.068321,778.0,62.9237,2.19947,0.187971,118.939,920.0,9.0,118.685,1.388,5413.7,119.9,4.55,0.09,0.85,0.05,0.19,0.039,0.942,0.122623,"19,59",2023-02-08,2023-02-08,2023-02-10 12:02:43,low SNR; host rotational modulation at ~10 days,6059,1,False,False,True -428867906,6060.01,,3,4,3,3,1,4,4,10.7,39.2,52.58,0,2,0,PC,PC,9.86105,0.006,,1,qlp-s59-ffi,QLP,03:50:14.7,50:37:15.01,12.385,0.079,-22.006,0.077,2459930.334093,0.0050235,3.3906311,2.59e-05,2.344,0.568,0.782012,0.062825,720.0,57.8619,8.3102,0.720709,1156.25,1624.0,9.0,384.79,5.212,7373.8,129.5,3.56,0.09,3.54,0.21,0.086,0.07,1.678,0.294829,"19,59",2023-02-08,2023-02-08,2023-02-10 12:02:44,low SNR; two stars in pixel,6060,1,False,False,False -239823606,6061.01,,2,4,2,2,1,4,4,2.0,35.4,2.94,0,2,0,PC,PC,8.895701,0.006,,1,qlp-s59-ffi,QLP,05:48:40.67,35:02:02.8,43.365,0.087,-154.389,0.07,2459925.631702,0.007467,7.1309123,0.0001656,3.313,0.918,0.339889,0.026088,313.0,24.0272,1.51687,0.1201,144.968,966.0,9.0,79.384,0.4607,5639.0,122.5,4.46,0.08,0.97,0.05,,,1.0,0.127632,"19,43,44,45,59",2023-02-08,2023-02-08,2023-02-10 12:02:44,two stars in pixel; low SNR,6061,1,False,False,False -122629761,6062.01,,2,4,2,2,1,4,4,4.3,55.3,8.11,0,2,0,PC,PC,9.47632,0.006,,1,qlp-s59-ffi,QLP,05:08:40.76,36:25:00.28,4.508,0.084,0.048,0.059,2459925.234358,0.0036165,8.2125432,4.88e-05,3.166,0.784,1.071064,0.073542,986.0,67.7328,2.76845,0.19784,156.917,986.0,9.0,115.362,0.7255,5936.0,130.2,4.47,0.08,1.0,0.05,,,1.084,0.14607,"19,59",2023-02-08,2023-02-08,2023-02-10 12:02:43,variable host; low SNR,6062,1,False,False,False -67031480,6063.01,,3,4,3,3,1,4,4,,,317.0,0,1,0,PC,PC,10.4246,0.132,,1,qlp-s59-ffi,QLP,05:32:01.67,36:35:19.24,-0.623,0.09,-3.127,0.072,2459935.39745,0.0022923,2.1142179,1.14e-05,1.655,0.216,1.030853,0.099726,949.0,91.8468,17.3594,,4869.36,2327.0,10.0,1476.12,146.82,10207.0,131.0,,,5.54,,,,,,"19,59",2023-02-08,2023-02-08,2023-02-10 12:02:44,likely EB; a/Rs~2; host is member of M38 cluster,6063,1,False,False,False -428767018,6064.01,,3,4,3,3,1,4,4,24.5,96.6,119.57,0,5,0,PC,PC,10.409,0.006,,1,qlp-s59-ffi,QLP,03:48:59.55,49:06:39.63,17.619,0.084,-13.847,0.067,2459919.688691,0.0024907,15.3058859,0.0001475,3.463,0.15,7.078136,0.251172,6498.0,231.311,13.4962,1.15815,70.5288,807.0,38.0,347.587,4.881,6803.6,108.5,4.12,0.11,1.75,0.14,0.133,0.012,1.464,0.245446,"19,59",2023-02-08,2023-02-08,2023-02-10 12:02:43,,6064,1,False,False,False -172033454,6065.01,,3,4,3,3,1,4,4,8.6,61.4,19.29,0,1,0,PC,PC,9.4526,0.006,,1,qlp-s60-ffi,QLP,06:30:28.61,31:52:50,12.725,0.104,-41.927,0.095,2459948.69132,0.0090109,8.2065998,0.0002007,3.785,1.905,0.452846,0.89633,417.0,825.21,4.6173,2.06349,3451.52,2135.0,10.0,162.125,1.711,6061.0,136.5,4.21,0.08,1.38,0.07,,,1.13,0.151695,"20,43,44,45,60",2023-02-23,2023-02-23,2023-02-25 12:10:55,slight depth-aperture correlation; possible centroid offset towards bright star to ESE; potential L1 candidate based off Rp uncertainty,6065,1,False,False,False -219697927,6066.01,,2,4,2,2,1,4,4,3.5,35.5,4.39,0,1,0,PC,PC,8.85042,0.006,,1,qlp-s60-ffi,QLP,09:01:48.41,67:40:29.97,-70.344,0.087,-103.14,0.102,2459959.726391,0.0073329,1.8267596,2.75e-05,2.931,1.498,0.161787,0.023011,149.0,21.1934,1.92501,0.201468,5522.43,2401.0,9.0,157.64,1.495,6335.0,135.8,4.1,0.09,1.65,0.07,,,1.253,0.189439,"14,20,40,60",2023-02-23,2023-02-23,2023-02-25 12:10:55,some depth-aperture; possible centroid offset; host is part of 1144 d SB,6066,1,False,False,True -198458010,6067.01,,1,4,1,1,1,4,4,0.4,17.5,8.7,0,1,0,PC,PC,9.76711,0.006,,1,qlp-s60-ffi,QLP,17:27:16.16,54:50:52.73,-46.812,0.041,-28.52,0.052,2459936.170064,0.0051881,87.2129046,0.0008871,2.986,0.467,0.715736,0.050538,659.0,46.5457,2.89746,0.196923,1.3372,299.0,12.0,173.577,0.6925,6236.0,128.5,4.35,0.08,1.22,0.06,,,1.207,0.162893,"14,16,17,18,20,21,23,24,25,26,40,47,48,49,50,51,52,53,54,56,57,58,59,60",2023-02-23,2023-02-23,2023-02-25 12:10:55,L1 candidate; period could be double (~174 d),6067,1,False,False,True -400093502,6068.01,,1,4,1,1,1,4,4,2.2,29.0,8.04,0,1,0,PC,PC,9.67596,0.006,,1,qlp-s60-ffi,QLP,05:52:48.69,70:40:26.76,0.711,0.032,-45.098,0.041,2459951.401022,0.0034805,10.6684085,6.68e-05,2.758,0.32,0.503899,0.040232,464.0,37.054,2.75843,0.189739,100.776,882.0,11.0,200.447,1.0125,6718.0,134.2,4.32,0.09,1.37,0.06,,,1.429,0.249015,"19,20,26,53,59,60",2023-02-23,2023-02-23,2023-02-25 12:10:55,variable host; possible depth-aperture correlation,6068,1,False,False,True -259099556,6069.01,,2,4,2,2,1,4,4,19.2,105.5,14.81,0,2,0,PC,PC,8.92071,0.006,,1,spoc-s60-b02,SPOC,19:24:35.63,67:31:40.67,66.372,0.142,43.603,0.15,2459937.955167,0.0076575764,1.62909256787596,0.0008053472,4.63151891709257,0.33059466,0.447147,0.045425,411.752510821978,41.837414,3.94558997300038,0.3306372,2815.37643542988,1857.82099887423,9.041644,122.51,1.1125,5658.0,131.02,4.08591,0.0801153,1.50370001792908,0.0784422,,,1.005,0.128225,60,2023-02-23,2023-02-23,2023-02-25 12:10:55,low MES; host is listed as part of 148 day SB (2022yCat.1357....0G),6069,1,False,False,True -29106627,6070.01,TIC 29106627.01,2,4,2,2,1,4,4,2.4,35.0,8.03,1,1,0,PC,PC,11.1878,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,07:53:18.08,44:01:30.06,-28.608,0.059,-7.802,0.045,2459942.330357,0.004524539,9.5128915993387,0.0001417764,3.12541705931567,0.5654811,1.294542,0.11742,1191.60674363731,108.14194,2.75317211095437,1.2908589,48.3015381650136,672.372573280885,9.423777,140.442,0.75,4998.0,122.98,4.58615,0.0875278,0.767311990261078,0.047598,,,0.828,0.100812,"47,60",2023-02-23,2023-05-22,2023-06-16 12:14:51,low SNR; also CTOI from Planet Hunters,6070,1,False,False,True -440624788,6071.01,TIC 440624788.01,3,4,3,3,1,4,4,18.8,61.4,83.87,0,0,0,PC,PC,12.9311,0.007,,1,spoc-s60-b02,SPOC,06:12:10.17,43:07:13.04,14.456,0.042,-10.498,0.037,2459939.481098,0.0024252294,5.36644567464123,0.0009253777,2.29759548344027,0.18951508,9.540623,0.619298,8748.74364128288,570.23175,10.9418064484895,0.9228135,248.948060396311,1013.08745210248,13.849086,478.189,6.789,5358.0,122.502,4.34315,0.0818586,1.07572996616364,0.0589924,,,0.93,0.117587,60,2023-02-23,2023-02-23,2023-02-25 12:10:55,,6071,1,False,False,True -147797743,6072.01,TIC 147797743.01,5,5,5,5,5,5,5,108.5,122.0,317.0,0,3,0,KP,KP,10.7447,0.006,,1,spoc-s60-b02,SPOC,07:22:56.48,67:15:09.56,6.907,0.03,24.031,0.036,2459940.374302,0.00030016655,3.69155898990421,8.149446e-05,2.72075803945963,0.022763524,17.861007,0.118329,16316.0231993151,108.979195,14.7244708051366,0.72153413,512.023492354078,1213.22743187293,105.76829,209.229,1.1275,5720.0,128.638,4.37355,0.0745976,1.08782994747162,0.0528995,,,1.02,0.125887,60,2023-02-23,2023-02-23,2023-02-25 12:10:55,Gaia-2 b,6072,1,False,False,True -271424111,6073.01,,5,5,5,5,5,5,5,16.3,17.4,317.0,0,2,2,KP,KP,14.3999,0.007,,1,spoc-s14-s55-b02,SPOC,19:40:06.16,46:57:21.43,-1.908,0.05,-8.511,0.049,2459393.028617,0.0043844637,3.26870634762913,5.436839e-05,3.63985725527105,0.40828836,10.574875,0.969925,9692.54159341537,892.93536,15.04668793115,1.1478163,1155.64638685821,1487.05143707633,10.690438,1523.0,64.625,6007.22,147.004,4.18781,,1.40536999702454,,0.152484,0.0138797,1.11,,"40,41,54,55",2023-02-23,2023-02-23,2023-02-25 12:10:55,Kepler-490 b,6073,1,False,False,True -99896567,6074.01,,2,4,2,2,2,4,4,3.4,74.3,3.09,0,2,1,PC,PC,6.8456,0.006,,1,spoc-s14-s55-b02,SPOC,20:41:41.27,35:32:45.31,92.077,0.045,48.425,0.049,2458690.53445,0.0026926168,12.1324506434323,6.212791e-05,1.57517331243291,0.37245518,0.185977,0.028666,171.276426229121,26.402155,1.56909065368327,0.39792183,98.4603771042734,803.406097041052,7.390087,34.5797,0.03575,5865.0,135.026,4.44965,0.0783168,1.01593005657196,0.0521859,,,1.06,0.13255,"14,15,41,55",2023-02-23,2023-02-23,2023-06-20 00:00:00,very low SNR; bright host star; possible SV,6074,1,False,False,True -424388628,6075.01,,2,4,2,2,1,4,4,0.0,10.1,3.67,0,5,0,PC,PC,9.4287,0.006,,1,spoc-s14-s55-b02,SPOC,18:44:09.07,75:59:29.72,-122.381,0.037,152.091,0.037,2458794.771156,0.007106797,832.923625392567,0.002434274,8.6876380764824,0.7339189,0.645377,0.078776,594.23760693833,72.55295,1.73737806026541,0.8440581,0.405846276194172,203.568295819395,7.41604,39.889,0.0308,4193.0,122.053,4.53686,0.108938,0.725063979625702,0.0660904,,,0.66,0.0794668,"14,15,16,17,18,19,20,21,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55",2023-02-23,2023-02-23,2023-02-25 12:10:55,low SNR; actual period likely shorter than max period of ~832 days,6075,1,False,False,True -308301091,6076.01,TIC 308301091.01,3,4,3,3,1,4,4,0.1,14.3,25.18,0,3,0,PC,PC,9.82897,0.006,,1,spoc-s14-s55-b02,SPOC,17:51:28.14,24:48:40.92,-7.327,0.034,-6.216,0.048,2459030.36672,0.00275209,720.574239906942,0.0040405677,6.66020760588991,0.38719842,1.582966,0.138568,1456.90318471282,127.61762,5.3917254071261,0.63847697,1.07212578773726,259.526186433184,9.610138,221.682,1.322,6665.4,142.8,4.31,0.1,1.37318003177643,0.0683869,-0.101,0.035,1.407,0.247262,"26,52,53",2023-02-23,2023-02-23,2023-02-25 12:10:55,potential SV; two transits,6076,1,False,False,True -196066560,6077.01,,1,4,1,1,2,4,4,7.0,45.6,9.26,0,0,2,PC,PC,12.3475,0.007,,1,spoc-s14-s55-b0H,SPOC,20:59:39.33,40:42:21.64,28.281,0.062,29.531,0.069,2458713.480434,0.0018354162,2.2111104214132,1.164876e-05,2.10602790919096,0.4376893,2.125792,0.217501,1956.01168333229,200.30565,2.99445853689629,1.1183779,95.0381191223057,796.332073104394,11.161335,124.484,0.599,3761.0,157.0,4.60411,0.0116478,0.656735002994537,0.019274,,,0.63215,0.0201545,"15,55",2023-02-23,2023-02-23,2023-07-04 00:00:00,some ramp-like transits; possible centroid offset,6077,1,False,False,True -119973835,6078.01,TIC 119973835.01,1,4,1,1,2,4,4,2.8,47.2,4.61,0,1,1,PC,PC,9.1641,0.006,,1,spoc-s14-s55-b0H,SPOC,16:12:51.85,16:18:21.18,18.748,0.045,-42.964,0.038,2458993.272518,0.0024025862,9.67046143805177,5.4679407e-05,2.72201033653756,0.4662779,0.523306,0.064397,481.866418353289,59.30977,1.98499320991448,1.1288188,67.455041442247,730.925902959879,7.930994,68.6994,0.15275,5212.0,123.889,4.51487,0.0849002,0.863560020923615,0.0494095,,,0.89,0.107623,"25,51,52",2023-02-23,2023-02-23,2023-06-20 00:00:00,low SNR; possible multi,6078,1,True,False,True -119973835,6078.02,TIC 119973835.02,1,4,1,1,2,4,4,2.2,52.1,7.95,0,1,1,PC,PC,9.1641,0.006,,2,spoc-s14-s55-b0H,SPOC,16:12:51.85,16:18:21.18,18.748,0.045,-42.964,0.038,2458985.683317,0.003298689,25.088115348068,0.00014149303,2.96257733861337,0.28888842,0.825344,0.073221,759.880837107046,67.436646,2.73723947001801,0.3334682,18.9228534690533,531.944601989597,9.170711,68.6994,0.15275,5212.0,123.889,4.51487,0.0849002,0.863560020923615,0.0494095,,,0.89,0.107623,"25,51,52",2023-02-23,2023-02-23,2023-06-20 00:00:00,event near 2713 may not be real; potential multi,6078,2,True,False,True -272670038,6079.01,TIC 272670038.01,3,4,3,3,1,4,4,1.6,28.7,44.26,1,2,0,PC,PC,10.5083,0.007,,1,spoc-s14-s60-b0A-PC,SPOC,15:33:59.35,69:21:01.03,-14.91,0.045,11.071,0.051,2458912.458751,0.006047427,104.289279828713,0.0008161206,5.87310290772273,0.23526105,2.197123,0.092088,2021.57936793112,84.81264,7.51266050818462,0.38184854,14.4080456045864,496.902312837786,19.292593,306.839,2.6515,6501.0,127.695,4.25028,0.086382,1.43158996105194,0.0610779,,,1.33,0.211931,"21,22,40,41,47,48,49,50,53,54,56,57,60",2023-02-23,2023-05-19,2023-06-16 12:14:51,s41 transits may be a few hours early,6079,1,False,False,True -116048097,6080.01,TIC 116048097.01,2,4,2,2,2,4,4,3.8,39.7,11.37,0,2,1,PC,PC,10.5912,0.006,,1,spoc-s14-s55-b0H,SPOC,17:46:25.06,38:04:43.35,-9.8,0.04,-16.073,0.047,2459397.070061,0.0036989513,8.05557162698505,0.00010880078,3.58531721474857,0.69348645,0.992667,0.085121,913.862173768744,78.39647,3.3778836346047,1.1123123,168.812018376155,919.328217079863,10.547556,188.183,0.8035,5680.0,127.769,4.38997,0.0778482,1.06220996379852,0.0538694,,,1.01,0.123906,"40,52,53",2023-02-23,2023-02-23,2023-06-20 00:00:00,low MES,6080,1,False,False,True -271431851,6081.01,,5,5,5,5,5,5,5,6.2,18.8,103.82,0,0,1,KP,KP,14.4952,0.008,,1,spoc-s14-s55-b02,SPOC,19:40:22.79,43:32:15.23,-4.263,0.047,-1.241,0.052,2459397.093442,0.008386364,7.88642182497306,0.00024404711,4.94293777851912,0.9122589,6.797933,0.99512,6241.56724429505,916.1197,12.4048290732426,3.1102912,358.115925718018,1109.49578911635,7.481163,1506.58,56.63,5597.0,123.0,4.04717,,1.56051003932953,,,,0.99,,"40,41,54,55",2023-03-02,2023-03-02,2023-03-03 12:11:24,Kepler-855 b,6081,1,False,False,True -199712572,6082.01,,2,4,2,2,2,4,4,1.5,3.1,2.13,1,3,1,PC,PC,8.793181,0.006,,1,spoc-s14-s60-b0A-PC,SPOC,16:55:34.13,57:13:40.47,-8.157,0.04,78.457,0.055,2458714.875668,0.0018040787,3.59412534694485,1.5629144e-05,1.89195163642926,0.20991279,0.08865,0.011618,81.6461319630626,10.700927,1.2600825853561,2.0651228,782.732951617221,1349.03480277898,9.5347395,103.741,0.2705,5694.0,187.0,4.95801,0.288387,1.38695001602173,0.0710352,,,0.975,0.119019,"15,16,17,18,19,20,21,22,23,24,25,26,40,47,48,49,50,52,53,54,55,56,57,58,59,60",2023-03-02,2023-05-19,2023-06-20 00:00:00,low SNR; 2 stars in pixel,6082,1,False,False,True -299089652,6083.01,,5,5,5,5,5,5,5,,,30.85,0,4,6,KP,KP,11.9363,0.006,,1,spoc-s14-s55-b02,SPOC,19:15:23.73,51:12:32.54,31.935,0.041,-2.513,0.046,2459752.893746,0.010351788,0.0,0.0,9.30550947697115,0.8226749,3.92471,0.51529,3608.26634955441,474.4871,6.07620711895807,0.6943608,0.799530267862448,241.172884076551,7.213671,298.532,1.9595,5576.31,102.913,4.48425,0.0737161,0.940603017807007,0.0414573,0.039,0.021,0.984,0.125262,"40,41,53,54,55",2023-03-02,2023-03-02,2023-03-03 12:11:24,single transit of Kepler-858b at TBJD~,6083,1,False,True,True -294283951,6084.01,,5,5,5,5,5,5,5,15.1,63.6,81.1,0,3,0,PC,FP,11.7056,0.01,,1,spoc-s14-s55-b02,SPOC,20:07:00.6,50:20:52.91,2.083,0.053,3.856,0.047,2459422.141727,0.003066902,4.37240628259233,4.6852943e-05,1.41483875947478,0.28113922,1.784456,0.30541,1642.19503261247,281.2538,10.7278886970959,29.522633,2515.01755444592,1806.15494606377,8.109731,819.949,17.331,8096.0,140.794,4.28307,0.0751696,1.67777001857758,0.0627135,,,1.97,0.298859,"41,54,55",2023-03-02,2023-03-02,2023-04-19 12:02:50,v-shaped,6084,1,False,False,True -160223936,6085.01,,3,5,5,3,1,4,4,,,2.58,0,2,0,PC,PC,8.7475,0.006,,1,spoc-s14-s55-b02,SPOC,17:25:07.63,85:06:55.87,47.546,0.042,0.433,0.048,2458691.848481,0.011074305,0.0,0.0,14.1230558348298,0.7457269,0.345294,0.043253,317.976645791019,39.83699,1.40996512738173,0.28082705,0.115645564807229,148.731170206257,7.2045913,47.3174,0.05125,5106.0,123.642,4.62161,0.0861041,0.750715970993042,0.0447739,,,0.86,0.108397,"14,19,20,25,26,40,47,52,53",2023-03-02,2023-03-02,2023-03-03 12:11:24,single transit at ~1691.8 TBJD,6085,1,False,True,True -18318288,6086.01,,2,4,2,2,2,4,4,3.1,13.5,0.86,3,0,1,PC,PC,12.4106,0.007,,1,spoc-s14-s55-b02,SPOC,17:41:28.9,30:18:13.59,-110.595,0.061,2.165,0.071,2458984.759725,0.0013640606,1.38885844016764,1.3820338e-05,0.826700235192078,0.63512415,1.491211,0.261988,1372.51368337488,241.27072,0.96506186796043,1.7210847,31.5257385734569,604.34657757057,8.86141,31.4566,0.0405,3300.0,157.0,4.97775,0.0124862,0.256455987691879,0.00765628,,,0.227881,0.0201097,"25,26,52,53",2023-03-02,2023-03-02,2023-06-20 00:00:00,host is variable; low SNR,6086,1,False,False,True -48448369,6087.01,,5,5,5,5,5,5,5,,,22.32,0,5,5,KP,KP,11.8216,0.007,,1,spoc-s14-s55-b02,SPOC,18:58:57.39,49:35:54.4,12.889,0.04,14.216,0.037,2459806.508801,0.006343114,0.0,0.0,2.29963572728836,0.59975916,2.279306,0.288508,2097.11646682108,265.69083,5.02186246973948,2.04793,18.5331878223904,529.184702598822,7.295672,334.797,2.3875,5819.72,144.003,4.41305,0.0826292,1.05464005470276,0.0595176,-0.206727,0.0133151,1.05,0.131175,"40,41,53,54,55",2023-03-02,2023-03-02,2023-03-03 12:11:24,one transit of Kepler-134 b at TBJD ~2806,6087,1,False,True,True -122375047,6088.01,,5,5,5,5,5,5,5,1.8,24.0,7.77,0,29,4,KP,KP,11.3992,0.006,,1,spoc-s14-s55-b02,SPOC,19:21:41.03,37:51:05.96,25.284,0.033,-30.711,0.037,2459398.896348,0.005168345,9.28667326119068,0.00018114674,3.25938080999382,0.50267756,0.775329,0.098591,713.849435184599,90.801575,2.69962514639685,0.56892985,93.8814468539914,793.897972998696,7.342691,218.562,0.9705,5511.0,101.51,4.50367,0.070297,0.911822974681854,0.0407035,-0.12,0.1,0.967,0.12012,"40,41,54,55",2023-03-02,2023-03-02,2023-03-03 12:11:24,Kepler-19 b; multi planet system,6088,1,False,False,True -350814622,6089.01,TIC 350814622.01,5,5,5,5,5,5,5,3.7,20.2,16.17,0,36,4,KP,KP,11.7266,0.006,,1,spoc-s14-s55-b02,SPOC,19:02:27.71,50:08:08.78,6.003,0.039,4.672,0.043,2459391.482922,0.0029034337,3.21356358670838,4.191005e-05,4.31416113701979,0.5770433,0.711099,0.064874,654.732282128857,59.74978,4.15495542076585,1.930678,1364.58153621743,1550.13535714888,9.909683,487.916,5.8295,5772.0,103.434,4.04527,0.070765,1.59520995616913,0.068191,0.12,0.1,1.03,0.127999,"40,41,53,54,55",2023-03-02,2023-03-02,2023-03-03 12:11:24,Kepler-4 b; crowded field,6089,1,False,False,True -268159158,6090.01,,5,5,5,5,5,5,5,10.7,31.0,91.81,0,0,0,PC,KP,14.5892,0.008,,1,spoc-s14-s55-b02,SPOC,19:54:32.56,44:10:15.38,-1.673,0.049,-0.74,0.049,2459420.878175,0.0047942223,4.70803527871916,8.134121e-05,2.90794233262266,0.5383143,10.53773,1.185371,9658.66035607803,1091.1713,11.5403604730892,2.0736494,363.771110312082,1113.85023541488,8.718572,1065.37,36.405,5490.0,123.0,4.3011,,1.14715003967285,,,,0.96,,"41,54,55",2023-03-02,2023-03-02,2023-03-03 12:11:24,Kepler-720 b,6090,1,False,False,True -336255880,6091.01,,2,4,2,2,2,4,4,3.0,36.6,6.55,0,2,1,PC,PC,11.9323,0.007,,1,spoc-s14-s55-b02,SPOC,18:45:50.75,37:14:09.21,-6.217,0.034,-37.827,0.039,2459392.109891,0.0025844844,5.18555066268537,4.9454873e-05,1.97341329504368,0.48571828,1.626339,0.184394,1496.79192639108,169.81859,2.44067933555722,1.1122566,31.8495386450595,605.892443307337,8.203974,94.6679,0.1795,3921.0,157.0,4.648,0.0107745,0.603803992271423,0.0178073,,,0.591182,0.0202056,"40,53,54",2023-03-02,2023-03-02,2023-07-04 00:00:00,multiple stars in pixel; Kepler target; low SNR,6091,1,False,False,True -339591840,6092.01,,3,5,5,3,1,4,4,,,23.15,0,0,0,PC,PC,12.9805,0.007,,1,spoc-s14-s55-b02,SPOC,18:56:05.44,14:07:19.27,-26.952,0.07,-49.861,0.073,2459746.250584,0.008838637,0.0,0.0,4.6672536133866,0.734923,14.04839,1.923896,12855.6961210613,1770.4044,5.13068561900048,0.59278667,0.674928976551386,231.171487785186,10.6106615,76.6119,0.2585,3476.0,157.0,4.81846,0.00388038,0.408955991268158,0.012138,,,0.401554,0.0202386,"53,54",2023-03-02,2023-03-02,2023-03-03 12:11:24,Single transit candidate at TBJD ~2746,6092,1,False,True,True -97165413,6093.01,TIC 97165413.01,3,4,3,3,1,4,4,49.1,152.7,47.58,1,0,0,PC,PC,10.0452,0.006,,1,qlp-s61-ffi,QLP,07:04:00.24,-35:10:53.39,-37.438,0.042,20.119,0.044,2459986.445346,0.0008835,1.2710408,1.2e-06,1.113,0.204,1.211271,1.080085,1115.0,994.3,7.85938,1.75259,5327.83,2380.0,32.0,219.78,1.302,6004.0,134.6,4.13,0.08,1.5,0.07,,,1.11,0.137886,"6,7,33,34,61",2023-03-23,2023-03-23,2023-03-26 12:03:22,V-shaped; possible odd-even,6093,1,False,False,False -35883621,6094.01,,5,5,5,5,5,5,5,50.4,126.5,100.85,0,0,0,PC,FP,9.65609,0.006,,1,qlp-s61-ffi,QLP,07:50:41.07,-06:29:41.8,2.895,0.114,-8.173,0.068,2459984.008322,0.0045334,3.0519843,2.51e-05,2.868,0.945,0.968909,1.579972,892.0,1454.15,12.1856,3.97345,10790.5,2839.0,16.0,310.559,7.186,6251.1,109.3,3.79,0.08,2.33,0.12,0.291,0.026,1.214,0.173926,"7,34,61",2023-03-23,2023-03-23,2023-03-26 12:03:21,possible centroid offset to NNW,6094,1,False,False,False -157081737,6095.01,,1,4,1,1,1,4,4,4.9,52.8,4.13,0,0,0,PC,PC,10.0956,0.006,,1,qlp-s61-ffi,QLP,06:43:04.02,-44:15:06.69,-12.545,0.038,-8.222,0.035,2459986.834869,0.0026026,2.1613171,6.1e-06,1.289,0.471,0.574506,0.06042,529.0,55.6469,1.86733,0.155413,329.608,1187.0,13.0,99.172,0.2125,5260.0,122.8,4.59,0.09,0.8,0.04,,,0.9,0.11692,"6,7,33,34,61",2023-03-23,2023-03-23,2023-03-26 12:03:23,variable host,6095,1,False,False,True -262781201,6096.01,,5,5,5,5,5,5,5,6.5,54.9,7.06,0,0,0,PC,FP,9.34567,0.006,,1,qlp-s61-ffi,QLP,09:25:36.85,03:39:42.97,-25.891,0.086,2.717,0.083,2459986.266467,0.0030414,1.3154291,5.7e-06,1.996,0.753,0.324684,0.047786,299.0,44.0113,2.55559,0.229034,17356.0,3197.0,17.0,181.94,1.5435,6613.8,98.6,4.28,0.08,1.42,0.05,0.039,0.01,1.384,0.23168,"8,35,45,46,61",2023-03-23,2023-03-23,2023-03-26 12:03:22,possible centroid offset to S,6096,1,False,False,True -293743169,6097.01,,3,4,3,3,1,4,4,42.8,141.4,74.72,1,0,0,PC,PC,10.4284,0.006,,1,qlp-s61-ffi,QLP,07:57:59.22,-21:00:48.11,2.2,2.6,8.7,2.7,2459986.783761,0.000871,1.1256838,1.3e-06,1.773,0.117,3.937496,0.139247,3620.0,128.243,10.2362,,5124.79,,33.0,452.889,,7433.0,,,,1.85,,,,,,"7,61",2023-03-23,2023-03-23,2023-03-26 12:03:23,possible depth-aperture correlation; possibly synchronized,6097,1,False,False,False -269341832,6098.01,,1,4,1,1,1,4,4,6.8,66.3,5.13,0,0,0,PC,PC,8.7699,0.006,,1,qlp-s62-ffi,QLP,07:55:44.83,-48:02:30.38,11.458,0.042,-4.59,0.041,2460010.125461,0.0014423,2.7297541,4.5e-06,1.439,0.184,0.393108,0.026948,362.0,24.8193,2.11652,0.129637,200.856,1048.0,20.0,82.2325,0.15165,5599.3,117.1,4.37,0.07,1.08,0.05,,,0.99,0.114778,"7,9,34,35,61,62",2023-03-23,2023-04-12,2023-04-25 12:12:35,,6098,1,False,False,False -118914286,6099.01,,1,4,1,1,1,4,4,4.1,55.3,3.96,0,1,0,PC,PC,9.4499,0.006,,1,qlp-s62-ffi,QLP,09:01:20.64,-20:58:24.28,-60.603,0.065,-37.571,0.075,2460009.893574,0.0020073,5.2887576,2.19e-05,2.284,0.261,0.649464,0.036894,598.0,33.98,1.80945,0.151919,63.339,785.0,17.0,52.5883,0.1407,4610.0,125.5,4.55,0.1,0.75,0.06,,,0.73,0.0834201,"8,35,61,62",2023-03-23,2023-04-12,2023-04-25 12:12:35,slight depth aperture correlation,6099,1,False,False,False -170434745,6100.01,TIC 170434745.01,2,4,2,2,1,4,4,8.5,52.7,10.39,0,0,0,PC,PC,11.9433,0.006,,1,spoc-s61-b02,SPOC,06:54:03.88,-46:39:34.93,7.705,0.038,-6.998,0.045,2459963.874823,0.0025248881,1.22801556800094,0.00023217595,1.06779744775323,0.56313133,1.430581,0.171398,1316.74620205012,157.85074,3.20342368571167,4.1161757,1038.62842376394,1447.88743905082,8.335865,235.778,1.158,5223.0,129.1,4.53,0.08,0.852492988109589,0.0493819,,,0.89,0.109407,"8,61",2023-03-23,2023-03-23,2023-03-26 12:03:20,Weak signal; short duration; nearby TIC 770748659 (delta Tmag ~ 5) about 1.5 '' away,6100,1,False,False,True -19342878,6101.01,TIC 19342878.01,3,5,5,3,4,4,4,203.4,191.6,317.0,0,0,0,PC,CP,10.8042,0.006,,1,spoc-s61-b02,SPOC,08:16:17.68,-08:41:11.69,-1.571,0.055,22.902,0.051,2459963.429938,0.00015357522,1.33282518275466,1.3788792e-05,2.04961740847406,0.011324949,21.093333,0.082318,19240.1766705933,75.81457,15.3206915457516,0.88988096,1924.80445879434,1689.33742577054,242.24312,211.73,1.688,5595.4,127.6,4.4,0.02,1.0670200586319,0.0618166,0.124,0.019,1.023,0.125001,"7,34,61",2023-03-23,2023-03-23,2023-03-27 12:03:11,,6101,1,False,False,True -55849732,6102.01,TIC 55849732.01,3,4,3,3,1,4,4,16.3,57.7,94.12,0,0,0,PC,PC,13.5803,0.006,,1,spoc-s61-b02,SPOC,05:02:59.03,-59:58:15.43,-1.397,0.032,4.742,0.038,2459965.392386,0.0019656706,5.37030215744109,0.0007485176,2.848198930498,0.18277022,15.061598,0.716761,13776.4684096566,659.94324,11.7099788114653,0.71162367,277.477492218458,1040.94237853455,18.774578,733.926,9.159,5878.0,122.0,4.47546,,0.986176013946533,,,,1.06,,61,2023-03-23,2023-03-23,2023-03-26 12:03:18,,6102,1,False,False,True -92590258,6103.01,TIC 92590258.01,3,4,3,3,1,4,4,77.0,230.1,124.56,0,0,0,PC,PC,10.6664,0.006,,1,spoc-s61-b02,SPOC,08:34:52.31,-49:55:57.08,3.275,0.051,-8.031,0.046,2459965.819135,0.0010109532,3.24224240761246,0.0002887796,3.16625191513628,0.084462695,11.588078,0.64393,10616.25978038,592.9052,13.8082328420196,0.75157803,1534.99081033017,1596.41645097823,15.381104,295.408,2.558,7069.0,137.874,4.40124,0.0816785,1.30308997631073,0.0526231,,,1.56,0.260849,61,2023-03-23,2023-03-23,2023-03-26 12:03:22,nearby bright star (Tmag~8) 35'' away contaminating difference image but signal appears to be on this star,6103,1,False,False,True -265010875,6104.01,TIC 265010875.01,3,4,3,3,1,4,4,33.7,39.7,317.0,0,3,0,PC,PC,10.4146,0.007,,1,spoc-s61-b02,SPOC/QLP,08:26:20.49,05:15:30.24,-7.217,0.079,-4.557,0.046,2459968.466203,0.0020908227,6.40955547115517,0.0011079443,8.47374375267198,0.16282491,3.093478,0.102706,2845.14324659749,94.59097,17.4517773999413,1.0898303,2737.14533869445,1844.77843923826,16.704277,614.477,17.9315,6316.0,130.7,3.53,0.09,3.18048000335693,0.172462,,,1.24,0.19386,"7,34,61",2023-03-23,2023-03-23,2023-03-26 12:03:18,evolved host star; apparent odd-even likely due to transits at the end of orbits,6104,1,False,False,True -182405015,6105.01,TIC 182405015.01,3,4,3,3,1,4,4,96.5,125.3,317.0,1,0,0,PC,PC,10.8235,0.006,,1,spoc-s61-b02,SPOC/QLP,08:14:37.67,-41:09:22.09,-19.541,0.054,14.107,0.047,2459966.48027,0.00040527072,3.11224018260786,0.00021813695,2.46704826956509,0.030811261,15.494669,0.161377,14169.7677985699,148.62244,14.384452245112,0.5682903,496.052069839996,1203.65373024528,106.17964,266.809,2.5085,6176.8,259.0,4.5,0.75,1.1207400560379,0.0434623,,,1.6,0.258598,"8,61",2023-03-23,2023-03-23,2023-03-26 12:03:23,,6105,1,False,False,True -258234731,6106.01,TIC 258234731.01,3,5,5,3,1,4,4,54.6,73.6,317.0,0,2,0,PC,APC,11.646,0.006,,1,spoc-s61-b02,SPOC,08:28:04.61,-24:10:01.06,-18.304,0.041,10.329,0.033,2459964.624513,0.0007183676,6.42409440351428,0.00038861914,4.03073416141896,0.054829553,21.533399,0.363059,19637.6137844304,334.33398,14.8362261072886,0.7685802,212.259983313393,973.501849627372,59.273636,294.59,2.534,5618.0,122.896,4.39959,0.0792673,1.04006004333496,0.0520176,,,0.99,0.12907,61,2023-03-23,2023-03-23,2023-03-31 12:02:57,,6106,1,False,False,True -152245179,6107.01,TIC 152245179.01,3,4,3,3,1,4,4,44.5,108.2,317.0,0,0,0,PC,PC,11.8338,0.009,,1,spoc-s61-b02,SPOC/QLP,07:59:33.22,-32:42:21.84,-3.428,0.043,3.306,0.043,2459966.339978,0.0012513102,3.78990177079963,0.00042345,3.9779406343356,0.10078838,8.293252,0.227844,7609.26878733574,209.83008,23.9262549607055,1.1051998,12025.918155378,2670.84884766339,23.109795,1311.48,45.24,7810.0,277.1,4.08,1.33,2.64206004142761,0.105076,,,2.39,0.341265,"8,61",2023-03-23,2023-03-23,2023-03-26 12:03:23,large planet around large star,6107,1,False,False,True -255780160,6108.01,TIC 255780160.01,3,4,3,3,1,4,4,15.8,41.7,105.63,0,0,0,PC,PC,13.7453,0.006,,1,spoc-s61-b02,SPOC,06:38:44.12,-49:34:20.67,-0.468,0.028,13.416,0.03,2459962.90561,0.005375236,3.87833414391513,0.0014781203,3.62116258033706,0.33567193,8.549531,0.621658,7843.48673232937,572.4046,12.5321784602063,0.9986287,739.765996708678,1330.12770943664,11.893313,1013.74,15.3745,5748.0,122.0,4.19506,,1.34253001213074,,,,1.03,,61,2023-03-23,2023-03-23,2023-03-26 12:03:22,,6108,1,False,False,True -384984325,6109.01,,3,4,3,3,3,4,4,6.9,60.6,15.55,0,0,2,PC,PC,10.3622,0.011,,1,qlp-s58-ffi,QLP,03:20:31.66,42:36:25.04,26.999,0.1,-28.799,0.081,2459908.090635,0.0021178,8.5386633,3.03e-05,2.337,0.418,1.87995,0.129985,1730.0,119.713,4.04578,0.30596,63.3913,786.0,15.0,151.738,1.0855,5416.1,162.8,4.49,0.09,0.95,0.06,0.0895064,0.0138323,1.032,0.131422,"18,58",2023-03-23,2023-03-23,2023-03-26 12:03:20,potential multi; variable star,6109,1,False,False,True -7439480,6110.01,,3,4,4,3,3,4,4,83.4,201.2,56.71,4,0,2,PC,PC,13.0739,0.009,,1,qlp-s38-7439480,CTOI,14:11:42.98,-29:58:29.78,-78.6,0.072,24.87,0.066,2459360.305123,0.000416,1.2541235,1.7e-06,1.105,0.083,25.274704,0.012438,23010.0,11.4553,8.66923,0.339334,78.6048,829.0,46.0,122.281,0.637,3642.0,157.0,4.7,0.01,0.54,0.02,,,0.537459,0.0209364,"11,38",2023-03-23,2023-03-23,2023-05-27 00:00:00,true source of the signal previously released on TIC 7439480 as TOI 4339.01,6110,1,False,False,True -189322727,6111.01,,3,5,5,3,1,4,4,39.8,130.8,99.8,0,2,0,PC,APC,11.6894,0.006,,1,qlp-s56-faintsearch,QLP,20:38:49.98,44:47:31.08,-0.868,0.041,-5.752,0.043,2459848.780642,0.000641,5.8340292,1.12e-05,1.289,0.333,13.046101,1.192978,11944.0,1098.17,12.1719,0.885801,42.4777,711.0,23.0,302.326,2.342,5698.0,185.2,4.4,0.08,1.06,0.06,,,1.015,0.13724,"15,41,55,56",2023-03-30,2023-03-30,2023-05-02 12:02:53,found in faint-star QLP search,6111,1,False,False,False -258741560,6112.01,,3,4,3,3,1,4,4,17.6,67.9,41.95,0,2,0,PC,PC,11.2223,0.008,,1,qlp-s56-faintsearch,QLP,22:09:48.81,22:33:57.85,12.244,0.065,-28.526,0.056,2459852.026484,0.0024451,1.8859353,0.0003069,1.373,0.217,2.387987,0.164067,2197.0,151.1,7.26339,0.490599,721.952,1444.0,15.0,471.571,8.5105,6556.9,141.4,4.18,0.1,1.57,0.08,0.106,0.011,1.36,0.228649,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6112,1,False,False,False -116631353,6113.01,,3,4,3,3,1,4,4,27.7,36.6,317.0,1,1,0,PC,PC,12.307,0.007,,1,qlp-s56-faintsearch,QLP,21:14:05.7,35:04:44.5,-4.885,0.037,-3.882,0.048,2459845.197517,0.0023217,4.9218915,3.07e-05,6.715,0.477,6.801683,0.245292,6245.0,225.897,20.0897,1.22377,1810.88,1817.0,18.0,1174.24,42.44,6178.0,124.9,3.65,0.09,2.7,0.15,,,1.18,0.156928,"15,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6113,1,False,False,False -419840740,6114.01,,3,4,3,3,1,4,4,10.0,47.9,57.73,1,1,0,PC,PC,12.4185,0.011,,1,qlp-s56-faintsearch,QLP,22:28:35.39,06:55:27.21,11.129,0.085,-4.751,0.081,2459849.328185,0.0035366,8.9539287,0.0005615,2.618,0.624,5.587436,0.594439,5133.0,547.349,8.74683,0.718179,79.5224,831.0,11.0,486.122,12.9735,5943.0,116.2,4.34,0.08,1.17,0.07,-0.180156,0.0697067,1.09,0.138602,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6114,1,False,False,False -120115768,6115.01,,3,4,3,3,1,4,4,34.7,48.4,317.0,0,0,0,PC,PC,13.3897,0.008,,1,qlp-s56-faintsearch,QLP,22:19:27.08,40:40:34.13,8.477,0.025,-3.046,0.03,2459848.944054,0.0013423,3.5529033,6.5e-06,1.722,0.183,18.957554,1.062928,17309.0,978.514,17.9469,,236.183,1092.0,21.0,1056.92,24.445,6389.0,122.0,4.24,,1.41,,,,1.28,,"16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6115,1,False,False,False -364408162,6116.01,,3,4,3,3,1,4,4,,,317.0,0,1,0,PC,PC,11.785,0.017,,1,qlp-s56-faintsearch,QLP,20:42:18.72,51:11:11.38,-8.274,2.175,2.249,2.176,2459848.690225,0.001476,3.1256662,7e-06,2.903,0.617,4.422513,1.851792,4065.0,1704.11,,,1434.05,1714.0,35.0,,,4940.2,158.2,,,,,,,,,"15,16,41,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search; no stellar radius,6116,1,False,False,False -436508469,6117.01,,3,4,3,3,1,4,4,15.8,58.4,92.27,1,0,0,PC,PC,11.5989,0.007,,1,qlp-s56-faintsearch,QLP,23:12:23.98,22:20:43.69,4.283,0.063,-2.606,0.042,2459850.257269,0.0030688,9.866312,0.0021019,5.285,0.392,6.246805,0.220532,5737.0,203.097,11.5656,0.632838,283.77,1143.0,23.0,483.576,8.594,6209.0,127.5,4.08,0.09,1.64,0.08,,,1.19,0.170891,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6117,1,False,False,False -125367522,6118.01,,3,4,3,3,1,4,4,16.5,17.4,317.0,1,2,0,PC,PC,11.8495,0.008,,1,qlp-s56-faintsearch,QLP,21:23:34.84,38:18:49.8,-4.607,0.035,-6.669,0.036,2459849.216859,0.0027041,4.6474314,2.89e-05,8.452,0.506,2.883197,0.088524,2652.0,81.5303,16.1625,0.945167,3924.24,2204.0,20.0,1242.07,38.085,6455.0,133.0,3.48,0.09,3.44,0.19,,,1.31,0.210371,"15,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6118,1,False,False,False -322498101,6119.01,,3,4,3,3,1,4,4,27.1,35.0,317.0,0,0,0,PC,PC,13.2225,0.015,,1,qlp-s56-faintsearch,QLP,20:36:49.04,49:36:35.65,-5.469,0.025,-10.775,0.025,2459846.467914,0.0024228,4.2070367,1.55e-05,2.712,0.482,14.526176,0.775336,13290.0,713.856,16.5857,,498.042,1316.0,22.0,920.216,12.3635,6437.0,122.0,4.15,,1.59,,,,1.3,,"15,16,41,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6119,1,False,False,False -435851868,6120.01,,3,4,3,3,1,4,4,88.1,205.2,107.92,1,0,0,PC,PC,12.3983,0.006,,1,qlp-s56-faintsearch,QLP,22:55:31.95,22:33:50.28,5.022,0.065,5.979,0.046,2459852.217468,0.000535,2.1350899,7.46e-05,1.997,0.074,24.790282,0.42755,22574.0,393.711,12.6797,0.884817,280.388,1140.0,81.0,240.498,2.2235,4894.0,132.3,4.53,0.09,0.8,0.06,,,0.8,0.100564,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6120,1,False,False,False -165682741,6121.01,,3,4,3,3,1,4,4,40.1,124.1,114.96,1,1,0,PC,PC,11.5823,0.006,,1,qlp-s56-faintsearch,QLP,21:07:42.55,40:27:02.02,-23.499,0.046,0.245,0.043,2459845.747089,0.0008931,4.2916798,6.1e-06,3.088,0.205,10.228982,0.284709,9377.0,262.192,13.1247,0.639161,675.152,1420.0,46.0,441.015,5.934,6725.0,465.9,4.32,0.12,1.37,0.06,,,1.432,0.315623,"15,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6121,1,False,False,False -352442207,6122.01,,3,4,3,3,1,4,4,27.9,32.0,317.0,2,1,0,PC,PC,11.6925,0.007,,1,qlp-s56-faintsearch,QLP,19:50:00.87,54:09:12.77,1.339,0.056,1.995,0.046,2459847.211624,0.0010141,4.6107024,8.1e-06,5.626,0.32,6.19439,0.103641,5689.0,95.4523,15.7213,0.794791,1656.67,1777.0,46.0,765.772,14.905,6391.0,126.5,3.87,0.09,2.18,0.11,,,1.28,0.199989,"15,16,41,54,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6122,1,False,False,False -91101364,6123.01,,3,4,3,3,1,4,4,36.7,54.0,317.0,0,0,0,PC,PC,13.1618,0.007,,1,qlp-s56-faintsearch,QLP,23:19:08.8,25:59:09.42,-8.726,0.039,-9.602,0.028,2459852.086372,0.0022079,4.0833335,0.000649,4.406,0.185,17.141578,0.493949,15664.0,454.84,19.554,,1082.21,1597.0,26.0,1040.95,24.68,6298.6,25.2,4.14,,1.58,,-0.393,0.024,1.24,,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6123,1,False,False,False -269488987,6124.01,,3,4,3,3,1,4,4,68.9,182.4,108.14,1,0,0,PC,PC,12.3101,0.006,,1,qlp-s56-faintsearch,QLP,21:00:52.84,39:23:30.44,-8.481,0.037,6.583,0.048,2459850.465827,0.0003833,2.8474853,1.9e-06,2.303,0.109,24.642554,0.691939,22441.0,637.096,12.7345,0.775303,260.51,1119.0,97.0,271.974,1.9,5149.0,125.9,4.53,0.09,0.84,0.05,,,0.87,0.110419,"15,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6124,1,False,False,False -404516402,6125.01,,3,4,3,3,2,4,4,58.7,137.8,98.11,1,0,2,PC,PC,12.8119,0.007,,1,qlp-s56-faintsearch,QLP,22:19:35.77,12:21:23.08,29.038,0.067,-26.496,0.056,2459849.022331,0.0007455,2.3107907,0.0001295,1.963,0.081,20.379334,0.585017,18595.0,538.675,12.0547,0.830345,213.379,1064.0,52.0,291.92,3.3805,4767.0,129.3,4.46,0.09,0.86,0.06,,,0.767,0.0886087,56,2023-03-30,2023-03-30,2023-07-07 00:00:00,found in faint-star QLP search,6125,1,False,False,False -129004637,6126.01,,3,4,3,3,1,4,4,25.1,29.0,317.0,0,2,0,PC,PC,12.2601,0.007,,1,qlp-s56-faintsearch,QLP,22:44:04.57,38:30:58.59,-15.4,0.033,-21.326,0.04,2459843.27509,0.001386,7.1603723,0.0009977,4.672,0.343,10.006514,0.310674,9174.0,286.1,14.5353,0.816014,304.256,1163.0,20.0,565.492,10.0555,5767.0,128.3,4.07,0.08,1.54,0.08,,,1.03,0.122767,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6126,1,False,False,False -313975346,6127.01,,3,4,3,3,1,4,4,10.6,32.5,85.56,0,0,0,PC,PC,13.0551,0.034,,1,qlp-s56-faintsearch,QLP,21:14:28.93,57:19:22.77,-7.908,0.031,-6.622,0.035,2459853.020155,0.0062032,6.9191027,5e-05,4.908,0.782,5.361553,0.305349,4926.0,281.197,11.0925,,448.269,1281.0,12.0,713.987,7.551,5922.0,122.0,4.0,,1.72,,,,1.08,,"15,17,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6127,1,False,False,False -100769500,6128.01,,3,4,3,3,1,4,4,13.0,36.4,76.76,0,1,0,PC,PC,12.2652,0.007,,1,qlp-s56-faintsearch,QLP,22:46:50.23,31:33:39.69,7.671,0.061,-5.143,0.068,2459852.594597,0.0053011,4.5016419,0.0015591,1.897,0.967,3.253392,0.533221,2992.0,490.994,10.3672,1.26211,237.971,1094.0,9.0,726.371,25.306,5713.2,152.0,3.89,0.09,1.89,0.13,0.119,0.015,1.02,0.131704,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6128,1,False,False,False -115739057,6129.01,,3,4,3,3,1,4,4,33.4,42.6,317.0,0,0,0,PC,PC,13.261,0.007,,1,qlp-s56-faintsearch,QLP,22:38:37.33,34:48:16.63,-16.333,0.032,-19.447,0.032,2459847.900848,0.0011702,5.0310168,8.1e-06,3.334,0.146,20.048599,0.542356,18296.0,499.404,17.1637,,262.966,1121.0,28.0,762.451,12.1925,5656.1,33.1,4.2,,1.32,,0.117105,0.0314348,1.0,,"16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6129,1,False,False,False -210083929,6130.01,,3,4,4,3,1,4,4,131.0,136.4,317.0,2,2,0,PC,PC,10.5581,0.006,,1,qlp-s56-faintsearch,QLP,22:36:49.22,16:49:37.9,18.511,0.064,9.338,0.063,2459849.639834,0.0004459,2.3927114,0.0001274,1.806,0.347,14.652725,0.331543,13405.0,305.316,14.5439,0.746836,553.561,1351.0,123.0,220.882,2.6065,5967.0,129.9,4.34,0.08,1.17,0.06,,,1.094,0.138896,56,2023-03-30,2023-03-30,2023-07-06 00:00:00,found in faint-star QLP search,6130,1,False,False,False -357872559,6131.01,,3,4,3,3,1,4,4,31.8,70.6,126.5,1,0,0,PC,PC,12.5948,0.056,,1,qlp-s56-faintsearch,,21:07:55.93,48:34:56.27,2.075,0.038,-6.804,0.034,2459852.087815,0.0018256,2.5530138,6.7e-06,3.109,0.284,7.150265,0.287607,6564.0,264.861,13.9066,0.838146,1540.79,1745.0,27.0,692.772,9.5415,6286.0,314.8,4.01,0.11,1.81,0.1,,,1.23,0.205883,"15,16,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6131,1,False,False,False -188800346,6132.01,,3,4,3,3,1,4,4,10.3,19.6,317.0,1,0,0,PC,PC,13.4411,0.013,,1,qlp-s56-faintsearch,QLP,20:35:12.7,47:54:42,-0.815,0.034,-21.475,0.032,2459835.100347,0.0043937,18.8155978,0.0001712,4.153,0.961,20.00989,1.452057,18261.0,1336.5,14.443,,35.8015,681.0,17.0,643.588,8.1705,5641.0,122.0,4.32,,1.14,,,,1.0,,"15,16,41,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6132,1,False,False,False -129107501,6133.01,,3,5,5,3,1,4,4,120.2,197.1,317.0,0,0,0,PC,APC,11.5102,0.009,,1,qlp-s56-faintsearch,QLP,22:47:25.03,37:41:27.73,3.999,0.031,-9.416,0.037,2459850.633702,0.0009823,3.6534344,0.0002853,3.519,0.177,27.160006,0.628648,24705.0,578.839,20.7632,0.959386,869.445,1512.0,51.0,402.816,4.684,6364.0,132.4,4.3,0.09,1.32,0.06,,,1.27,0.195638,56,2023-03-30,2023-03-30,2023-06-27 12:02:57,found in faint-star QLP search,6133,1,False,False,False -199721945,6134.01,,3,4,3,3,1,4,4,19.9,24.1,317.0,0,0,0,PC,PC,12.8813,0.009,,1,qlp-s56-faintsearch,QLP,22:23:00.94,43:47:51.75,2.347,0.023,1.739,0.025,2459847.488707,0.003197,4.679209,0.0014687,4.261,0.846,10.546873,0.62818,9667.0,578.408,14.7013,0.949894,1141.48,1619.0,19.0,1004.18,15.0375,6600.0,132.9,4.13,0.09,1.67,0.08,,,1.38,0.232263,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6134,1,False,False,False -100909102,6135.01,,3,4,4,3,1,4,4,52.6,129.3,119.25,0,0,0,PC,PC,12.0052,0.009,,1,qlp-s56-faintsearch,QLP,23:11:55.13,33:02:51.4,18.705,0.056,-28.143,0.044,2459852.086444,0.0013463,3.1106751,0.0002699,3.129,0.784,11.898398,0.40359,10899.0,371.651,13.4185,0.806434,891.85,1522.0,55.0,399.63,4.884,5660.5,141.7,4.27,0.09,1.22,0.07,0.132779,0.017299,1.01,0.131007,56,2023-03-30,2023-03-30,2023-04-03 00:00:00,found in faint-star QLP search,6135,1,False,False,False -468692991,6136.01,,3,4,3,3,1,4,4,38.1,116.9,102.47,1,0,0,PC,PC,12.8196,0.006,,1,qlp-s56-faintsearch,QLP,22:06:28.3,42:04:55.85,8.577,0.034,5.05,0.036,2459852.825181,0.0014613,3.9779111,0.0004509,1.843,0.155,21.315675,0.98363,19441.0,905.546,12.2764,0.728868,116.092,914.0,23.0,375.401,3.514,5494.0,175.3,4.52,0.08,0.89,0.05,,,0.963,0.127083,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6136,1,False,False,False -44295981,6137.01,,3,4,3,3,1,4,4,796.5,653.9,317.0,1,0,0,PC,PC,14.5158,0.007,,1,qlp-s56-faintsearch,QLP,22:54:36.27,24:05:49.1,29.894,0.19,-15.568,0.121,2459852.35875,5.06e-05,0.520403,9e-07,0.995,0.001,167.573284,0.987837,143020.0,909.418,21.8226,0.694402,155.949,984.0,103.0,128.661,1.7635,3112.0,157.0,4.83,,0.4,0.01,,,0.390401,0.0208653,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6137,1,False,False,False -352892371,6138.01,,3,4,3,3,1,4,4,4.0,30.7,23.64,0,1,0,PC,PC,12.2562,0.006,,1,qlp-s56-faintsearch,QLP,21:26:11.34,40:25:56.42,24.297,0.043,7.961,0.046,2459848.448736,0.0043648,9.7824078,5.55e-05,3.889,0.514,3.499533,0.22863,3218.0,210.554,5.19023,0.348375,124.326,930.0,12.0,362.283,3.568,5749.0,167.9,4.47,0.08,0.98,0.05,,,1.028,0.135514,"15,16,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6138,1,False,False,False -468765355,6139.01,,3,4,3,3,1,4,4,11.6,17.2,317.0,0,0,0,PC,PC,13.1008,0.009,,1,qlp-s56-faintsearch,QLP,22:08:11.84,46:53:41.46,-2.629,0.031,-0.386,0.035,2459843.593313,0.0057146,10.3299557,0.0001189,3.666,0.991,7.814958,0.852039,7172.0,784.449,16.2977,,170.744,1007.0,10.0,1305.91,34.54,6486.0,122.0,3.97,,1.97,,,,1.32,,"16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6139,1,False,False,False -456783397,6140.01,,3,4,3,3,1,4,4,20.3,55.6,110.86,0,0,0,PC,PC,13.2907,0.007,,1,qlp-s56-faintsearch,QLP,22:08:50.83,15:05:49.17,7.279,0.04,-4.9,0.042,2459846.816346,0.0031272,3.4742682,0.0008561,2.577,0.358,10.783707,0.65643,9883.0,604.412,12.8496,,517.706,1328.0,16.0,925.873,26.009,6121.0,66.9,4.25,,1.34,,0.272,0.064,1.16,,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6140,1,False,False,False -217980791,6141.01,,3,4,3,3,1,4,4,59.7,69.2,317.0,0,0,0,PC,PC,12.4789,0.009,,1,qlp-s56-faintsearch,QLP,23:08:12,12:25:58.51,-12.653,0.062,-19.313,0.046,2459848.304998,0.0008803,2.6607389,0.0002093,1.538,0.253,18.188843,0.786643,16613.0,724.263,16.2086,1.0011,315.217,1173.0,30.0,560.429,14.056,6090.2,129.0,4.28,0.09,1.27,0.07,0.015,0.087,1.14,0.153681,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6141,1,False,False,False -129108133,6142.01,,3,4,3,3,1,4,4,17.1,61.6,73.06,0,0,0,PC,PC,13.2516,0.007,,1,qlp-s56-faintsearch,QLP,22:47:02.27,38:23:28.1,2.188,0.022,-17.077,0.029,2459852.072224,0.0022338,4.9564809,2.13e-05,1.617,0.419,9.688782,1.151317,8884.0,1059.84,10.077,,71.7847,810.0,9.0,518.031,5.4695,5511.0,122.0,4.46,,0.96,,,,0.97,,"16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6142,1,False,False,False -423903685,6143.01,,3,5,5,3,1,4,4,70.0,95.9,317.0,0,1,0,PC,APC,12.266,0.007,,1,qlp-s56-faintsearch,QLP,21:58:46.47,22:57:10.13,-3.167,0.072,-8.259,0.059,2459845.510624,0.0013842,4.0938735,0.0007306,4.537,0.393,18.576444,0.486272,16964.0,447.773,20.6029,1.25299,695.416,1430.0,18.0,546.747,10.478,5489.0,131.1,4.04,0.09,1.55,0.09,,,0.96,0.118695,56,2023-03-30,2023-03-30,2023-06-18 12:02:57,found in faint-star QLP search,6143,1,False,False,False -115683877,6144.01,,3,4,3,3,1,4,4,8.8,24.5,83.25,0,0,0,PC,PC,13.1564,0.007,,1,qlp-s56-faintsearch,QLP,22:36:42.36,34:41:57.96,-4.484,0.035,-6.071,0.034,2459849.06266,0.0064943,6.3765906,5.97e-05,5.303,0.851,4.858667,0.331025,4465.0,304.839,10.9141,,436.742,1273.0,11.0,923.907,18.476,5433.0,122.0,3.91,,1.8,,,,0.95,,"16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6144,1,False,False,False -404488903,6145.01,,3,4,3,3,1,4,4,15.6,45.1,97.05,0,0,0,PC,PC,13.3616,0.007,,1,qlp-s56-faintsearch,QLP,22:17:46.8,15:43:32.27,-3.057,0.067,-7.562,0.059,2459852.114072,0.0081382,3.9921399,0.0025507,3.299,0.524,10.765065,0.695303,9866.0,640.193,11.9626,,547.02,1347.0,16.0,912.432,40.264,5885.0,122.0,4.19,,1.38,,,,1.07,,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6145,1,False,False,False -372178596,6146.01,,3,4,3,3,1,4,4,15.7,14.9,317.0,0,0,0,PC,PC,13.1289,0.007,,1,qlp-s56-faintsearch,QLP,21:38:43,38:51:14.35,-5.715,0.023,-3.832,0.028,2459851.168508,0.0051148,4.5803096,3.89e-05,4.962,0.837,6.676046,0.448415,6130.0,412.92,14.6817,,937.58,1541.0,14.0,1121.67,20.86,5770.0,122.0,3.81,,2.1,,,,1.03,,"15,16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6146,1,False,False,False -402740809,6147.01,,3,4,3,3,1,4,4,40.4,90.2,63.85,0,0,0,PC,PC,12.95,0.006,,1,qlp-s56-faintsearch,QLP,23:28:05.84,23:44:57.07,-6.761,0.183,-45.038,0.147,2459851.468348,0.0020923,1.5801759,0.0002246,0.645,0.269,6.738316,2.369445,6187.0,2179.96,9.31686,1.59442,56.4235,763.0,11.0,320.803,13.105,4547.0,124.3,4.31,0.1,0.98,0.09,,,0.716,0.088438,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6147,1,False,False,False -371573539,6148.01,,3,4,3,3,1,4,4,15.8,55.7,86.61,0,2,0,PC,PC,11.351,0.007,,1,qlp-s56-faintsearch,QLP,22:08:08.61,19:30:23.3,-14.869,0.061,-11.683,0.053,2459849.631231,0.0024926,8.3753156,0.0011839,2.687,1.19,4.345113,0.783258,3994.0,721.147,11.1765,1.35114,251.431,1109.0,13.0,501.221,8.3505,6134.6,142.5,4.01,0.09,1.76,0.1,0.322,0.017,1.16,0.165312,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6148,1,False,False,False -195606729,6149.01,,3,4,3,3,1,4,4,5.8,32.7,54.57,0,0,0,PC,PC,12.4814,0.011,,1,qlp-s56-faintsearch,QLP,20:41:04.81,42:13:03.53,5.415,0.036,4.659,0.033,2459831.751003,0.0040267,13.3562254,0.0002341,7.214,0.587,6.331984,0.250983,5815.0,231.137,8.52588,0.465464,277.264,1136.0,20.0,567.759,7.234,6122.0,133.7,4.3,0.08,1.27,0.06,,,1.16,0.154442,"15,41,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6149,1,False,False,False -434186655,6150.01,,3,4,3,3,1,4,4,130.8,213.2,124.65,1,0,0,PC,PC,13.5156,0.007,,1,qlp-s56-faintsearch,QLP,22:43:58.1,22:17:20.02,49.096,0.17,-19.975,0.132,2459851.633598,0.0013806,1.3094686,0.0001183,1.108,0.284,20.183535,23.493185,18418.0,21405.6,13.7943,4.12586,215.564,1067.0,19.0,209.656,4.5775,3818.0,157.0,4.6,0.01,0.66,0.02,,,0.635281,0.0212627,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6150,1,False,False,False -312289279,6151.01,,3,4,3,3,1,4,4,11.7,37.0,39.87,0,8,0,PC,PC,11.5561,0.04,,1,qlp-s56-faintsearch,QLP,20:53:16.61,48:05:13.24,-11.095,0.06,-3.867,0.052,2459852.311661,0.0032391,1.4354814,7.7e-06,2.174,0.436,0.758108,0.089629,698.0,82.5476,7.06395,0.519924,2365.6,1942.0,10.0,590.69,10.9395,6008.0,289.0,3.77,0.09,2.27,0.12,,,1.11,0.17076,"15,16,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6151,1,False,False,False -117068362,6152.01,,3,4,3,3,1,4,4,15.1,57.7,89.18,0,1,0,PC,PC,12.1566,0.009,,1,qlp-s56-faintsearch,QLP,21:17:04.15,33:08:16.95,0.779,0.039,0.674,0.049,2459849.027362,0.0019552,4.2005957,2.37e-05,2.587,0.415,4.840127,0.330831,4448.0,304.66,11.3204,0.688064,1013.24,1571.0,16.0,950.289,31.499,7803.0,139.6,4.26,0.09,1.67,0.08,,,1.85,0.307148,"15,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6152,1,False,False,False -411343008,6153.01,,3,4,3,3,1,4,4,32.2,37.4,317.0,0,0,0,PC,PC,12.9172,0.007,,1,qlp-s56-faintsearch,QLP,22:29:09.52,20:32:06.47,-6.273,0.054,-6.208,0.046,2459848.656116,0.0013269,3.6720231,0.0003722,3.064,0.12,17.091944,0.419713,15619.0,386.495,14.495,0.745415,595.319,1376.0,26.0,723.473,13.7735,6158.0,124.1,4.32,0.09,1.23,0.06,,,1.17,0.170784,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6153,1,False,False,False -301986302,6154.01,,3,4,3,3,1,4,4,69.4,163.7,103.92,1,0,0,PC,PC,12.8213,0.008,,1,qlp-s56-faintsearch,QLP,23:46:11.03,17:01:14.42,5.553,0.041,-31.213,0.024,2459850.43416,0.0006727,2.301919,0.0001226,1.614,0.087,24.641443,0.650578,22440.0,599.025,12.3642,0.941118,129.797,940.0,47.0,258.643,1.5675,4654.0,127.6,4.51,0.1,0.79,0.06,,,0.74,0.0889701,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6154,1,False,False,False -120051913,6155.01,,3,5,5,3,1,4,4,42.9,104.4,93.5,0,1,0,PC,APC,11.8355,0.007,,1,qlp-s56-faintsearch,QLP,22:18:12.21,38:34:44.34,10.097,0.029,0.01,0.041,2459851.726873,0.000779,1.6029811,1.8e-06,0.955,0.33,5.990215,0.637384,5502.0,586.88,11.6345,0.894377,591.525,1373.0,29.0,504.806,6.913,6049.0,122.7,4.13,0.08,1.52,0.07,,,1.13,0.154117,"16,56",2023-03-30,2023-03-30,2023-05-31 12:03:36,found in faint-star QLP search,6155,1,False,False,False -117072799,6156.01,,3,5,5,3,1,4,4,16.7,34.3,317.0,0,2,0,PC,APC,12.5126,0.009,,1,qlp-s56-faintsearch,QLP,21:17:10.26,34:55:03.22,0.081,0.042,0.747,0.046,2459852.126647,0.0019515,12.6885127,0.0008038,1.507,0.213,13.670433,0.867799,12512.0,798.953,16.2893,0.924947,32.0654,662.0,19.0,938.702,28.135,7710.0,134.2,4.37,0.09,1.45,0.06,,,1.81,0.300296,"15,55,56",2023-03-30,2023-03-30,2023-06-02 12:02:59,found in faint-star QLP search,6156,1,False,False,False -86005116,6157.01,,5,5,5,5,5,5,5,157.4,227.3,96.36,1,0,0,PC,FP,14.9131,0.008,,1,qlp-s56-faintsearch,QLP,21:48:10.45,23:06:44.49,-13.051,0.119,-27.705,0.11,2459852.547945,0.0011829,0.4916402,2.28e-05,0.453,0.161,32.078285,20.200238,29113.0,18433.1,11.7778,2.07623,109.834,901.0,16.0,221.034,3.335,3522.0,157.0,4.77,0.01,0.46,0.02,,,0.461082,0.0219981,"55,56",2023-03-30,2023-03-30,2023-04-20 12:02:52,found in faint-star QLP search,6157,1,False,False,False -404456775,6158.01,,3,4,3,3,1,4,4,25.0,99.3,59.65,1,0,0,PC,PC,14.5372,0.007,,1,qlp-s56-faintsearch,QLP,22:15:34.66,16:17:07.41,62.883,0.118,-35.263,0.117,2459851.207721,0.0028421,3.0444485,0.0006138,0.916,0.249,33.11096,6.768066,30036.0,6214.23,9.04276,0.948583,7.01479,453.0,12.0,180.96,3.6285,3413.0,157.0,4.77,0.01,0.47,0.02,,,0.462804,0.0214567,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6158,1,False,False,False -422037524,6159.01,,3,4,3,3,1,4,4,18.4,57.2,87.0,1,0,0,PC,PC,13.2906,0.006,,1,qlp-s56-faintsearch,QLP,22:45:13.07,05:55:07.84,-0.199,0.047,-12.22,0.042,2459852.651612,0.0037556,4.1846077,0.001118,1.805,0.425,11.638274,1.041277,10662.0,958.592,11.2001,,143.488,964.0,10.0,650.131,13.724,5714.9,29.2,4.35,,1.12,,0.327,0.027,1.02,,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6159,1,False,False,False -294904059,6160.01,,3,4,3,3,1,4,4,8.2,33.7,317.0,0,0,0,PC,PC,12.4261,0.006,,1,qlp-s56-faintsearch,QLP,20:10:13.35,53:34:43.05,15.384,0.026,6.902,0.027,2459832.762752,0.0014048,40.7401072,8.28e-05,2.833,0.525,23.904216,5.939996,21776.0,5456.0,14.5988,1.95974,3.77501,388.0,36.0,286.532,1.139,5081.0,143.4,4.48,0.09,0.88,0.05,,,0.851,0.104675,"14,15,16,41,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6160,1,False,False,False -188001223,6161.01,,3,4,3,3,1,4,4,14.4,46.6,87.47,2,0,0,PC,PC,12.8566,0.012,,1,qlp-s56-faintsearch,QLP,20:30:45.18,45:16:44.89,-4.138,0.029,-0.859,0.029,2459846.665072,0.0027906,5.7415661,3.09e-05,1.414,0.461,6.40188,0.856623,5879.0,788.668,11.2346,1.01105,64.1962,788.0,11.0,716.394,8.9485,6051.0,140.4,4.19,0.08,1.42,0.07,,,1.13,0.14338,"14,15,41,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6161,1,False,False,False -164260243,6162.01,,3,4,3,3,1,4,4,108.5,153.9,317.0,1,4,0,PC,PC,10.9837,0.008,,1,qlp-s56-faintsearch,QLP,22:24:20.58,34:09:31.41,5.11,0.053,1.811,0.072,2459852.11669,0.0003685,1.8478843,1.8e-06,2.809,0.092,12.850521,0.224885,11766.0,207.105,18.4423,0.888822,3803.45,2187.0,82.0,499.081,10.301,7218.8,142.4,4.21,0.09,1.65,0.08,0.238,0.029,1.62,0.274813,"16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6162,1,False,False,False -422457210,6163.01,,3,4,3,3,1,4,4,28.9,50.5,317.0,0,0,0,PC,PC,12.7912,0.006,,1,qlp-s56-faintsearch,QLP,23:24:32.05,04:36:16.86,-7.398,0.061,-13.871,0.034,2459843.241782,0.0010341,9.9754699,4.46e-05,3.465,0.166,28.641624,0.874246,26035.0,804.886,15.8848,0.927515,60.6571,777.0,36.0,442.143,5.987,5472.0,120.9,4.42,0.08,1.0,0.06,,,0.96,0.12053,"42,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6163,1,False,False,False -239542854,6164.01,,3,4,3,3,1,4,4,40.3,122.0,75.18,0,0,0,PC,PC,12.6951,0.006,,1,qlp-s56-faintsearch,QLP,22:47:10.92,26:56:23.77,87.094,0.034,18.951,0.034,2459850.906915,0.0010826,3.6948038,0.000309,1.203,0.112,18.878007,0.966562,17237.0,889.84,10.2565,0.890221,22.9867,610.0,30.0,203.52,1.0275,4376.0,120.3,4.52,0.1,0.75,0.06,,,0.684,0.0811257,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6164,1,False,False,False -287863314,6165.01,,3,4,3,3,1,4,4,19.3,71.0,68.3,0,0,0,PC,PC,14.2349,0.007,,1,qlp-s56-faintsearch,QLP,21:49:37.61,35:24:55.12,22.179,0.036,12.395,0.066,2459852.213309,0.0028446,4.3172876,0.000885,2.178,0.263,26.064019,1.762951,23720.0,1622.42,9.68709,0.501559,29.3516,648.0,14.0,262.682,2.745,3744.0,157.0,4.63,0.01,0.63,0.02,,,0.612415,0.0206696,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6165,1,False,False,False -190822775,6166.01,,3,4,3,3,1,4,4,68.5,170.2,116.81,0,3,0,PC,PC,12.128,0.006,,1,qlp-s56-faintsearch,QLP,21:43:55.67,46:34:16.18,-2.93,0.039,-15.534,0.039,2459850.643171,0.0006688,1.8021196,3.1e-06,2.407,0.083,16.879092,0.774861,15426.0,713.419,13.3235,0.744553,1374.91,1696.0,45.0,413.383,4.131,6012.0,178.6,4.4,0.09,1.1,0.05,,,1.111,0.152767,"15,16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6166,1,False,False,False -330665027,6167.01,,3,4,3,3,1,4,4,15.5,51.3,80.19,1,3,0,PC,PC,11.5534,0.006,,1,qlp-s56-faintsearch,QLP,21:57:12.25,45:49:19.7,0.785,0.044,3.156,0.047,2459841.643838,0.0043817,6.7080688,4.4e-05,4.67,0.633,5.029906,0.231784,4622.0,213.458,10.6429,0.644412,498.329,1316.0,18.0,534.326,8.6305,6174.0,157.5,4.0,0.09,1.79,0.09,,,1.179,0.173561,"16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6167,1,False,False,False -10593553,6168.01,,3,4,3,3,1,4,4,25.0,26.5,317.0,0,1,0,PC,PC,11.9966,0.007,,1,qlp-s56-faintsearch,QLP,22:41:14.26,30:19:40.41,-15.831,0.049,-9.652,0.055,2459848.409536,0.0025309,5.0809743,0.0004718,4.08,1.12,6.216229,0.402575,5709.0,370.717,14.7894,0.970386,884.118,1519.0,22.0,735.685,19.2995,6071.2,120.0,3.9,0.08,1.97,0.1,0.057,0.057,1.13,0.151605,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6168,1,False,False,False -193979250,6169.01,,3,4,3,3,1,4,4,7.5,31.7,88.78,0,2,0,PC,PC,11.5337,0.011,,1,qlp-s56-faintsearch,QLP,20:27:04.89,46:31:06.33,2.655,0.043,-2.373,0.043,2459844.944589,0.0032811,17.9661374,7.98e-05,3.791,1.015,3.46141,0.191825,3183.0,176.662,11.3217,0.662392,90.3305,858.0,16.0,688.605,12.9315,6891.0,138.9,3.93,0.09,2.2,0.09,,,1.5,0.263362,"14,15,41,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6169,1,False,False,False -51637609,6170.01,,3,5,5,3,4,4,4,51.0,49.9,317.0,0,0,0,PC,CP,12.1088,0.008,,1,qlp-s56-faintsearch,QLP,22:25:51.43,15:51:23.9,-13.626,0.066,-23.854,0.064,2459849.075692,0.0009785,2.709631,0.0002372,3.282,0.122,11.810585,0.249355,10819.0,229.638,14.9972,0.920548,1041.16,1582.0,12.0,535.689,15.6205,5838.0,130.4,4.12,0.08,1.47,0.09,,,1.05,0.129847,56,2023-03-30,2023-03-30,2023-04-03 12:03:25,found in faint-star QLP search,6170,1,False,False,False -67478724,6171.01,,3,4,3,3,2,4,4,30.4,71.8,107.83,0,2,2,PC,PC,11.0537,0.008,,1,qlp-s56-faintsearch,QLP,23:18:37.3,32:18:05.94,5.03,0.061,-1.423,0.048,2459848.430555,0.0025134,3.7473877,0.0007698,4.812,0.384,4.24047,0.155319,3898.0,143.044,12.686,0.713274,1322.91,1680.0,11.0,492.525,9.2965,5876.0,128.4,3.79,0.08,2.18,0.11,,,1.06,0.135252,56,2023-03-30,2023-03-30,2023-07-07 00:00:00,found in faint-star QLP search,6171,1,False,False,False -26583436,6172.01,,3,4,3,3,1,4,4,5.1,24.6,44.1,0,0,0,PC,PC,13.0091,0.007,,1,qlp-s56-faintsearch,QLP,19:28:07.56,49:23:19.09,0.468,0.031,5.103,0.039,2459851.702422,0.0051646,6.1429164,6.72e-05,4.475,0.654,4.211041,0.239154,3871.0,220.245,7.50153,,592.787,1374.0,18.0,869.253,12.8745,6291.9,20.2,4.25,,1.38,,0.0142717,0.0191102,1.23,,"14,15,40,54,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6172,1,False,False,False -416486384,6173.01,,3,4,3,3,1,4,4,24.6,19.1,317.0,0,0,0,PC,PC,13.0745,0.014,,1,qlp-s56-faintsearch,QLP,20:39:24.88,48:10:19.48,5.395,0.033,-0.744,0.032,2459848.262349,0.0039178,3.8753785,2.31e-05,4.275,0.395,4.369096,0.239538,4016.0,220.598,18.0963,,380.113,1230.0,15.0,786.433,10.8765,4637.0,122.0,,,2.98,,,,,,"15,16,41,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6173,1,False,False,False -164280385,6174.01,,3,4,3,3,1,4,4,8.1,30.9,43.73,0,0,0,PC,PC,13.2513,0.007,,1,qlp-s56-faintsearch,QLP,22:25:36,32:31:28.33,0.921,0.033,-8.163,0.036,2459847.722268,0.0060902,3.5257269,3.16e-05,3.457,1.084,4.82595,0.430462,4435.0,396.392,7.44411,,819.047,1490.0,10.0,718.342,12.4935,5638.1,141.5,4.26,,1.23,,0.354,0.134,1.0,,"16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6174,1,False,False,False -258738570,6175.01,,3,4,3,3,1,4,4,48.8,134.0,122.68,1,0,0,PC,PC,12.1384,0.007,,1,qlp-s56-faintsearch,QLP,22:09:55.16,19:49:43.93,7.141,0.068,-20.108,0.067,2459845.063156,0.0005103,4.1877227,0.0002476,1.891,0.165,18.439498,0.657651,16840.0,605.536,13.6598,0.830361,118.196,918.0,59.0,363.425,7.183,5543.0,127.7,4.39,0.08,1.05,0.06,,,0.98,0.124554,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6175,1,False,False,False -298776943,6176.01,,3,4,3,3,1,4,4,20.5,89.1,110.55,0,0,0,PC,PC,13.3976,0.007,,1,qlp-s56-faintsearch,QLP,21:43:24.09,24:13:34.71,5.325,0.079,-10.346,0.071,2459844.363828,0.0018077,9.6422713,0.0007968,2.946,0.19,31.863594,1.376272,28921.0,1266.79,12.931,,27.248,636.0,24.0,341.972,5.2835,4799.0,122.0,4.58,,0.75,,,,0.78,,"55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6176,1,False,False,False -331456189,6177.01,,3,4,3,3,1,4,4,33.5,35.7,317.0,0,0,0,PC,PC,12.7145,0.011,,1,qlp-s56-faintsearch,QLP,22:01:16.82,45:29:47.6,-8.799,0.025,1.587,0.026,2459847.553938,0.001431,3.89989,8.7e-06,1.888,0.252,11.610838,0.594682,10637.0,547.572,14.6814,0.826029,211.573,1062.0,14.0,635.864,6.6105,6076.0,134.0,4.2,0.08,1.41,0.07,,,1.14,0.149836,"16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6177,1,False,False,False -314649737,6178.01,,3,4,3,3,1,4,4,23.0,79.3,99.18,1,0,0,PC,PC,12.6685,0.009,,1,qlp-s56-faintsearch,QLP,21:39:49.74,35:41:02.29,-9.637,0.018,-6.81,0.028,2459844.841088,0.0010927,5.8878118,9.8e-06,1.815,0.251,10.656512,0.733928,9767.0,675.744,12.1166,0.694133,77.0112,825.0,26.0,502.874,4.476,5925.0,129.8,4.41,0.08,1.08,0.05,,,1.08,0.143625,"15,16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6178,1,False,False,False -257056367,6179.01,,3,4,3,3,1,4,4,18.6,50.5,317.0,0,0,0,PC,PC,13.2368,0.009,,1,qlp-s56-faintsearch,QLP,21:59:30.98,39:02:46.66,2.279,0.025,-0.196,0.034,2459818.612268,0.0049425,19.2445211,0.0001141,5.3,1.445,19.116665,14.832669,17453.0,13568.5,20.2585,,173.181,1010.0,16.0,809.109,13.945,6203.0,122.0,4.32,,1.25,,,,1.19,,"15,16,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6179,1,False,False,False -452743735,6180.01,,3,4,3,3,1,4,4,68.0,96.8,317.0,0,0,0,PC,PC,13.0636,0.007,,1,qlp-s56-faintsearch,QLP,22:05:24.21,27:03:11.21,-0.602,0.069,-11.762,0.061,2459849.581128,0.000837,2.7432173,0.0001782,2.595,0.102,27.840408,0.67851,25316.0,624.736,20.2394,,682.635,1424.0,54.0,761.754,18.062,6087.0,123.0,4.29,,1.27,,,,1.14,,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6180,1,False,False,False -199162630,6181.01,,3,4,3,3,1,4,4,16.3,61.6,77.3,0,1,0,PC,PC,11.8563,0.007,,1,qlp-s56-faintsearch,QLP,22:15:23.41,46:18:08.18,0.993,0.039,-1.698,0.043,2459847.834654,0.0029428,2.7649802,0.0006825,1.659,0.516,3.888462,0.386704,3575.0,356.104,10.4307,0.747897,1119.71,1611.0,14.0,873.578,19.013,7776.0,122.7,4.2,0.08,1.78,0.06,,,1.84,0.282351,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6181,1,False,False,False -97249514,6182.01,,3,4,3,3,1,4,4,15.3,35.2,116.08,0,0,0,PC,PC,12.8026,0.007,,1,qlp-s56-faintsearch,QLP,23:15:01.75,13:39:54.93,0.646,0.051,-6.02,0.03,2459848.402483,0.0081549,4.7783263,0.0028033,5.374,2.38,5.559062,0.984971,5107.0,906.78,13.2499,1.82631,1511.43,1737.0,10.0,922.871,24.6375,5622.0,127.8,3.84,0.08,2.0,0.12,,,1.0,0.124546,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6182,1,False,False,False -351864831,6183.01,,3,4,3,3,1,4,4,8.0,28.4,86.6,0,0,0,PC,PC,12.9591,0.019,,1,qlp-s56-faintsearch,QLP,20:20:11.91,53:57:45.33,-9.593,0.025,-4.136,0.027,2459840.156934,0.003839,8.7311119,5.02e-05,4.4,0.554,5.253538,0.319586,4827.0,294.306,11.1752,0.693972,235.614,1091.0,15.0,912.735,11.4375,6047.0,162.1,4.03,0.08,1.69,0.08,,,1.12,0.166493,"14,15,16,41,55,56",2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6183,1,False,False,False -257207557,6184.01,,3,4,3,3,1,4,4,56.6,143.7,122.12,1,0,0,PC,PC,11.8836,0.006,,1,qlp-s56-faintsearch,QLP,22:50:33.22,09:26:36.26,-9.46,0.071,-27.432,0.072,2459847.821903,0.0005892,3.6153701,0.0001742,2.714,0.33,15.643616,0.517557,14305.0,476.574,13.6892,0.81267,350.5,1205.0,69.0,334.216,6.2915,5516.0,129.2,4.32,0.08,1.13,0.06,,,0.969,0.120217,56,2023-03-30,2023-03-30,2023-03-31 12:12:24,found in faint-star QLP search,6184,1,False,False,False -346077232,6185.01,,3,4,3,3,1,4,4,14.7,48.3,100.45,0,0,0,PC,PC,12.7875,0.013,,1,qlp-s57-faintsearch,QLP,23:47:34.58,56:04:14.45,-4.519,0.026,-5.768,0.025,2459880.180162,0.0036624,6.3720834,3.02e-05,1.322,0.481,6.161632,0.949527,5659.0,874.164,12.1724,1.12746,58.7935,771.0,10.0,774.276,10.5265,6390.0,141.0,4.19,0.09,1.5,0.07,,,1.28,0.201967,"17,24,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6185,1,False,False,False -345333936,6186.01,,3,4,3,3,1,4,4,36.0,94.2,81.72,0,0,0,PC,PC,12.4033,0.017,,1,qlp-s57-faintsearch,QLP,23:43:07.44,56:48:36.17,-5.735,0.04,-0.823,0.039,2459880.953725,0.0014553,1.4252334,2.8e-06,1.673,0.261,7.518639,0.393883,6901.0,362.714,10.7664,0.657638,1265.88,1661.0,28.0,543.454,8.5685,6033.0,167.1,4.23,0.08,1.35,0.07,,,1.12,0.152973,"17,24,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6186,1,False,False,False -251894891,6187.01,,3,4,3,3,1,4,4,14.9,42.2,104.9,0,0,0,PC,PC,13.4144,0.02,,1,qlp-s57-faintsearch,QLP,23:27:41.08,57:23:49.28,2.029,0.03,-1.635,0.029,2459875.809804,0.0042401,5.5133822,4.42e-05,3.601,0.803,8.538055,0.71272,7833.0,656.224,12.462,,363.901,1216.0,11.0,758.848,11.527,5785.0,122.0,4.13,,1.46,,,,1.04,,"24,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6187,1,False,False,False -469702377,6188.01,,3,4,3,3,2,4,4,6.5,39.4,20.24,0,0,1,PC,PC,12.1075,0.006,,1,qlp-s57-faintsearch,QLP,21:58:16.34,55:48:20.08,-10.278,0.043,-11.151,0.046,2459873.021669,0.0037083,4.7061119,2.33e-05,3.03,0.624,2.78196,0.202917,2559.0,186.876,4.75935,0.341463,331.92,1189.0,11.0,300.589,2.346,5660.0,229.6,4.44,0.09,1.0,0.05,,,1.005,0.144986,"16,17,56,57",2023-04-03,2023-04-03,2023-07-07 00:00:00,found in faint-star QLP search,6188,1,False,False,False -63844530,6189.01,,3,4,3,3,1,4,4,24.8,75.0,113.26,1,0,0,PC,PC,13.2903,0.029,,1,qlp-s57-faintsearch,QLP,21:23:12.65,53:08:28.51,-5.296,0.039,-5.642,0.033,2459880.415341,0.0016268,5.5867425,1.28e-05,2.46,0.252,17.168051,0.881813,15688.0,811.85,13.0389,,103.299,888.0,23.0,497.836,5.2105,5444.0,122.0,4.4,,1.02,,,,0.95,,"15,16,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6189,1,False,False,False -440636649,6190.01,,3,4,3,3,1,4,4,11.2,62.5,23.91,7,0,0,PC,PC,11.6283,0.006,,1,qlp-s57-faintsearch,QLP,00:27:01.52,29:29:14.18,15.063,0.065,0.126,0.055,2459878.295658,0.0013743,3.5595352,1.2e-05,1.027,0.177,3.268638,0.324173,3006.0,298.53,5.24582,0.401915,60.7503,777.0,13.0,261.749,2.809,5669.0,129.5,4.5,0.08,0.94,0.05,,,1.007,0.128393,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6190,1,False,False,False -197743152,6191.01,,3,4,3,3,1,4,4,37.7,114.7,82.0,0,0,0,PC,PC,11.4105,0.006,,1,qlp-s57-faintsearch,QLP,22:28:10.35,49:34:25.14,6.273,0.044,-29.634,0.046,2459880.418253,0.0005533,3.7752321,6.9e-06,1.465,0.117,8.01182,0.303285,7352.0,279.297,10.759,0.586036,96.9264,874.0,42.0,303.581,2.745,5585.0,127.8,4.26,0.08,1.22,0.06,,,0.986,0.119586,"16,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6191,1,False,False,False -194234471,6192.01,,3,4,3,3,1,4,4,18.4,69.9,40.16,0,0,0,PC,PC,12.545,0.006,,1,qlp-s57-faintsearch,QLP,00:06:26.96,37:51:18.99,50.437,0.03,-5.123,0.018,2459880.976064,0.0020483,3.563037,9.4e-06,1.66,0.783,4.553341,3.062334,4185.0,2816.54,7.13684,1.78858,190.511,1035.0,12.0,217.319,0.989,4490.0,114.1,4.43,0.09,0.85,0.06,0.056,0.044,0.705,0.0786102,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6192,1,False,False,False -387933822,6193.01,,3,4,3,3,1,4,4,19.6,49.2,107.79,0,0,0,PC,PC,12.6449,0.009,,1,qlp-s57-faintsearch,QLP,21:41:51.89,50:30:08.06,5.639,0.029,3.478,0.029,2459876.615391,0.0022679,2.8953095,9.6e-06,4.137,0.333,5.841748,0.210367,5366.0,193.736,12.6737,0.663935,2522.62,1974.0,23.0,932.053,16.92,6526.0,125.8,3.97,0.09,1.98,0.09,,,1.34,0.219456,"15,16,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6193,1,False,False,False -176861415,6194.01,,3,4,3,3,1,4,4,10.0,33.5,106.71,0,0,0,PC,PC,12.863,0.007,,1,qlp-s57-faintsearch,QLP,23:39:40.26,44:15:44.02,-1.276,0.032,-3.75,0.023,2459871.681397,0.0034202,8.6738593,0.000922,2.582,0.476,5.799177,0.585036,5327.0,538.693,12.6434,0.993653,108.749,899.0,8.0,1013.07,21.7975,6446.0,131.6,4.09,0.09,1.72,0.09,,,1.31,0.208026,57,2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6194,1,False,False,False -155258153,6195.01,TIC 155258153.01,3,4,3,3,1,4,4,18.7,78.0,41.42,0,0,0,PC,PC,10.5489,0.006,,1,qlp-s57-faintsearch,QLP,23:58:39.67,33:49:13.83,-11.447,0.063,-14.081,0.038,2459881.257523,0.0012457,3.1989808,6.9e-06,0.785,0.399,2.02135,0.389286,1860.0,358.481,7.20813,0.777434,133.516,947.0,13.0,330.476,5.256,6442.9,103.8,4.18,0.08,1.54,0.06,0.076,0.01,1.304,0.201705,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6195,1,False,False,False -330944099,6196.01,,3,4,3,3,1,4,4,18.5,62.8,73.8,0,0,0,PC,PC,13.4836,0.016,,1,qlp-s57-faintsearch,QLP,22:16:43.12,58:12:49.22,8.191,0.033,12.677,0.031,2459876.327103,0.0035315,3.6119975,2.05e-05,4.013,0.537,13.088957,0.676015,11983.0,622.439,10.1678,,1057.47,1588.0,21.0,578.849,7.192,5979.0,122.0,4.46,,1.03,,,,1.1,,"16,17,24,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6196,1,False,False,False -196261799,6197.01,,3,4,3,3,1,4,4,18.2,60.2,69.55,0,0,0,PC,PC,12.5814,0.009,,1,qlp-s57-faintsearch,QLP,00:54:33.31,43:50:53.93,2.018,0.043,2.635,0.039,2459880.365159,0.0014795,3.7294859,8.8e-06,3.315,0.214,7.749345,0.259831,7112.0,239.285,9.77695,0.50829,553.409,1351.0,22.0,549.225,8.323,5719.9,104.1,4.26,0.07,1.24,0.06,0.282,0.102,1.02,0.12661,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6197,1,False,False,False -202514659,6198.01,,3,4,3,3,1,4,4,24.0,80.5,127.92,0,0,0,PC,PC,11.7644,0.007,,1,qlp-s57-faintsearch,QLP,00:26:05.23,49:35:57.03,-0.569,0.084,-4.847,0.05,2459877.340534,0.001539,3.6166109,0.0005113,2.711,0.318,7.64,0.265124,7012.0,244.158,14.0162,1.0805,1746.66,1801.0,21.0,937.243,60.904,8143.0,127.5,4.2,0.09,1.85,0.13,,,1.99,0.306491,57,2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6198,1,False,False,False -302201081,6199.01,,3,4,3,3,1,4,4,21.9,112.3,28.16,0,0,0,PC,PC,10.6336,0.006,,1,qlp-s57-faintsearch,QLP,00:36:47.89,16:05:49.6,90.335,0.126,1.204,0.09,2459877.909014,0.0031113,3.8311803,2.81e-05,1.892,0.794,1.271055,2.981526,1170.0,2742.32,5.75003,2.36448,1067.42,1592.0,10.0,146.254,2.393,5366.0,119.8,4.5,0.08,0.9,0.05,,,0.929,0.111593,"17,42,43,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6199,1,False,False,False -44621795,6200.01,,3,4,3,3,1,4,4,38.1,87.1,126.67,1,0,0,PC,PC,11.6166,0.009,,1,qlp-s57-faintsearch,QLP,01:28:25.93,32:08:13.06,31.41,0.099,6.646,0.104,2459877.87044,0.0008237,3.1923193,4.7e-06,1.548,0.137,5.619086,0.279347,5162.0,257.255,13.949,0.871677,206.861,1056.0,29.0,554.658,17.439,6003.0,128.8,3.96,0.08,1.83,0.1,,,1.11,0.147833,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6200,1,False,False,False -455727012,6201.01,,3,4,3,3,1,4,4,36.4,123.7,53.14,0,0,0,PC,PC,12.12,0.018,,1,qlp-s57-faintsearch,QLP,23:46:51.16,36:01:35.98,-0.54,2.0,21.09,2.0,2459880.993679,0.0007597,2.9172231,3.3e-06,1.243,0.097,9.195933,0.415077,8434.0,382.227,,,63.1506,785.0,28.0,,,4843.0,28.1,,,,,0.259,0.026,,,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6201,1,False,False,False -422223456,6202.01,,3,4,3,3,1,4,4,28.3,88.1,103.66,1,0,0,PC,PC,11.4737,0.006,,1,qlp-s57-faintsearch,QLP,22:23:24.62,55:04:31.9,-13.377,3.081,-5.806,1.303,2459876.667144,0.0016462,2.8979408,7.5e-06,2.932,0.568,4.900111,0.194456,4503.0,179.085,12.4152,,2931.18,,29.0,569.89,,7767.0,,,,1.97,,,,,,"16,17,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6202,1,False,False,False -437756191,6203.01,,3,4,3,3,1,4,4,5.0,39.5,37.04,0,0,0,PC,PC,10.5505,0.006,,1,qlp-s57-faintsearch,QLP,00:22:23.97,24:52:01.15,-1.958,0.123,-29.502,0.072,2459855.605714,0.0031928,25.1745344,0.0041613,4.865,0.654,3.029083,0.126549,2786.0,116.549,6.78671,0.443967,30.5175,654.0,18.0,245.424,4.028,5776.9,138.2,4.16,0.08,1.41,0.08,0.397,0.016,1.035,0.129107,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6203,1,False,False,False -325410269,6204.01,,3,4,4,3,1,4,4,25.3,76.9,114.05,2,0,0,PC,PC,12.8643,0.009,,1,qlp-s57-faintsearch,QLP,22:03:33.28,50:34:04.32,8.799,0.031,3.81,0.027,2459881.637411,0.0010561,4.0673088,1.01e-05,2.623,0.191,11.8501,0.429136,10855.0,395.171,13.1156,0.660684,417.756,1259.0,32.0,685.554,8.9615,6333.0,130.6,4.35,0.09,1.24,0.06,,,1.25,0.189911,"16,56,57",2023-04-03,2023-04-03,2023-07-10 00:00:00,found in faint-star QLP search,6204,1,False,False,False -154351773,6205.01,,3,4,3,3,1,4,4,22.2,21.1,317.0,0,0,0,PC,PC,13.1349,0.008,,1,qlp-s57-faintsearch,QLP,22:50:07.88,45:15:13.62,5.159,0.032,-2.085,0.032,2459874.30158,0.0018992,3.9089363,1.63e-05,4.636,0.335,8.053385,0.312003,7390.0,287.324,15.0353,,1032.67,1579.0,26.0,923.266,19.0865,5800.0,122.0,3.91,,1.87,,,,1.04,,"16,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6205,1,False,False,False -154576989,6206.01,,3,4,3,3,1,4,4,7.3,36.7,67.06,0,0,0,PC,PC,12.8939,0.007,,1,qlp-s57-faintsearch,QLP,22:54:03.85,44:54:46.49,14.289,0.024,-11.2,0.025,2459856.664269,0.0031837,13.1471808,9.5e-05,4.471,0.508,8.382674,0.459283,7691.0,422.926,9.63171,0.611298,79.8277,832.0,15.0,544.396,5.006,5670.0,127.8,4.3,0.07,1.18,0.06,,,1.01,0.124248,"16,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search; multiple bright stars in pixel,6206,1,False,False,False -432422552,6207.01,,3,4,3,3,1,4,4,44.7,83.4,317.0,0,0,0,PC,PC,12.1134,0.006,,1,qlp-s57-faintsearch,QLP,23:42:09.62,31:47:35.93,49.441,0.048,-1.619,0.032,2459881.332399,0.0006807,9.7712443,0.0004497,3.956,0.231,37.812351,1.293372,34227.0,1190.53,15.2558,0.916465,104.782,891.0,94.0,243.593,2.7145,5294.0,121.5,4.61,0.08,0.79,0.04,,,0.91,0.112033,57,2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6207,1,False,False,False -326475995,6208.01,,3,4,3,3,1,4,4,28.2,32.0,317.0,0,0,0,PC,PC,11.9806,0.006,,1,qlp-s57-faintsearch,QLP,22:07:21.17,53:31:10.51,17.173,0.053,4.53,0.049,2459872.105147,0.0014983,5.2266285,1.4e-05,5.412,0.397,7.257376,0.217741,6662.0,200.527,15.6275,0.8214,1046.27,1584.0,31.0,696.374,14.518,6205.0,173.2,3.91,0.09,2.0,0.1,,,1.192,0.187799,"16,17,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6208,1,False,False,False -200606486,6209.01,,3,4,3,3,1,4,4,28.8,82.3,31.52,0,0,0,PC,PC,12.9672,0.006,,1,qlp-s57-faintsearch,QLP,22:37:51.26,45:09:35.85,-32.053,0.087,-17.992,0.085,2459881.944818,0.0012616,0.747693,2e-06,0.684,0.289,3.734835,1.315428,3434.0,1210.82,6.17927,0.975121,414.266,1256.0,15.0,314.979,5.8315,4825.0,140.2,4.47,0.09,0.86,0.06,,,0.782,0.0939822,"16,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6209,1,False,False,False -326116570,6210.01,,3,4,3,3,1,4,4,24.4,36.6,317.0,0,0,0,PC,PC,11.707,0.008,,1,qlp-s57-faintsearch,QLP,22:06:14.99,52:16:07.03,-6.631,0.049,-8.574,0.044,2459876.706893,0.0025792,7.8580085,2.81e-05,6.999,0.502,4.763789,0.161579,4378.0,148.809,21.4783,1.29399,908.368,1529.0,27.0,1093.37,34.785,6406.0,127.3,3.46,0.09,3.5,0.19,,,1.29,0.198155,"16,17,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6210,1,False,False,False -25758870,6211.01,,3,4,3,3,1,4,4,10.4,47.9,73.14,0,0,0,PC,PC,12.6474,0.006,,1,qlp-s57-faintsearch,QLP,00:40:02.73,24:22:46.83,14.82,0.044,3.008,0.03,2459881.500754,0.0029824,10.3473602,5.63e-05,2.365,0.486,8.387051,0.69882,7695.0,643.43,10.117,0.706022,38.6952,694.0,12.0,510.917,6.071,5672.0,124.0,4.33,0.07,1.14,0.06,,,1.01,0.11807,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6211,1,False,False,False -173671381,6212.01,,3,4,3,3,1,4,4,37.1,41.5,317.0,0,0,0,PC,PC,13.0803,0.007,,1,qlp-s57-faintsearch,QLP,23:16:13.49,45:00:45.25,-0.871,0.028,3.66,0.025,2459879.477717,0.0042447,3.6444426,2.07e-05,3.296,1.155,6.835553,6.780695,6276.0,6225.79,19.0899,,1872.26,1832.0,14.0,849.122,13.645,5407.0,122.0,3.86,,1.88,,,,0.94,,"16,17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6212,1,False,False,False -430751891,6213.01,,3,4,3,3,1,4,4,28.7,68.9,101.76,3,0,0,PC,PC,12.3642,0.009,,1,qlp-s57-faintsearch,QLP,22:14:56.23,48:52:35.68,1.377,0.046,2.83,0.044,2459878.065088,0.0023124,2.3921761,1.57e-05,2.792,0.328,8.7646,0.419074,8040.0,385.907,12.2947,0.795747,1055.22,1587.0,18.0,628.024,12.0005,5817.0,128.6,4.04,0.08,1.63,0.08,,,1.05,0.132059,"16,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6213,1,False,False,False -314088020,6214.01,,3,4,3,3,1,4,4,17.8,30.4,317.0,1,0,0,PC,PC,12.4954,0.014,,1,qlp-s57-faintsearch,QLP,21:15:25.78,56:07:11.38,-3.326,0.054,-4.272,0.052,2459868.609542,0.0022527,7.0346299,2.84e-05,2.565,0.618,4.074805,0.40945,3746.0,377.046,17.638,1.08551,533.148,1338.0,14.0,1183.88,36.425,8294.0,165.7,3.97,0.08,2.44,0.11,,,2.04,0.314761,"15,16,17,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6214,1,False,False,False -431114892,6215.01,,3,4,3,3,1,4,4,24.9,33.6,317.0,1,0,0,PC,PC,13.0454,0.009,,1,qlp-s57-faintsearch,QLP,22:20:09.48,51:33:22.14,-0.698,0.03,-1.455,0.031,2459879.050673,0.0012875,2.0323202,4e-06,2.786,0.234,9.701928,0.35232,8896.0,324.446,15.3325,,5028.16,2345.0,30.0,1459.35,43.245,8011.0,122.0,4.27,,1.68,,,,1.93,,"16,17,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6215,1,False,False,False -428317266,6216.01,,3,4,3,3,1,4,4,8.9,73.2,84.36,0,0,0,PC,PC,12.0152,0.006,,1,qlp-s57-faintsearch,QLP,22:58:29.04,57:27:10.08,81.917,0.047,41.298,0.04,2459831.799479,0.0014023,29.5406035,5.29e-05,3.382,0.15,14.278623,0.431168,13065.0,397.042,10.9471,0.556929,12.4858,523.0,29.0,322.084,3.203,6315.0,240.6,4.58,0.1,0.94,0.04,,,1.243,0.19111,"16,17,24,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6216,1,False,False,False -375116172,6217.01,,3,4,3,3,1,4,4,30.8,31.9,317.0,1,0,0,PC,PC,13.1013,0.025,,1,qlp-s57-faintsearch,QLP,21:00:53.62,54:57:44.87,4.407,0.034,-1.833,0.033,2459881.159824,0.0018669,3.0365848,1.54e-05,3.089,0.31,8.922225,0.391306,8184.0,360.341,17.0668,,850.609,1504.0,18.0,837.654,11.849,5928.0,122.0,3.84,,2.06,,,,1.08,,"15,16,55,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6217,1,False,False,False -202283090,6218.01,,3,4,3,3,1,4,4,60.0,168.9,99.63,0,0,0,PC,PC,11.702,0.006,,1,qlp-s57-faintsearch,QLP,00:20:26.71,48:46:03.98,-6.868,0.067,-25.703,0.043,2459878.34576,0.0006171,5.1570194,0.0002571,2.42,0.064,18.159033,0.348834,16586.0,321.236,12.0548,0.902532,50.6137,743.0,80.0,159.96,1.549,4476.1,112.6,4.38,0.09,0.89,0.07,-0.169,0.043,0.702,0.0786075,57,2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6218,1,False,False,False -252585354,6219.01,,3,4,3,3,1,4,4,19.1,46.0,106.19,0,0,0,PC,PC,13.2805,0.008,,1,qlp-s57-faintsearch,QLP,23:02:37.23,50:06:17.74,4.392,0.04,2.4,0.036,2459881.309267,0.002935,2.4784193,1.01e-05,1.687,0.362,4.25355,0.558406,3910.0,514.179,12.5391,,493.403,1313.0,10.0,1093.22,30.59,6115.0,123.0,4.04,,1.69,,,,1.15,,"16,17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6219,1,False,False,False -325653071,6220.01,,3,4,3,3,1,4,4,8.2,48.8,58.14,0,0,0,PC,PC,10.7981,0.006,,1,qlp-s57-faintsearch,QLP,22:04:26.49,49:41:13.72,-5.265,0.051,-9.986,0.047,2459868.567359,0.0035111,19.6518502,0.0027925,2.525,0.967,3.398238,0.350482,3125.0,322.754,8.79457,0.679741,27.0742,635.0,14.0,358.734,4.216,6359.0,159.0,4.15,0.09,1.56,0.07,,,1.264,0.198769,"16,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6220,1,False,False,False -456910600,6221.01,,3,4,3,3,1,4,4,4.4,23.0,37.44,0,0,0,PC,PC,12.5316,0.008,,1,qlp-s57-faintsearch,QLP,01:46:37.75,22:44:35.01,0.119,0.059,3.048,0.06,2459869.806895,0.0063191,9.8326403,0.000115,4.827,0.821,3.008396,0.235103,2767.0,216.514,6.80252,0.500916,229.607,1084.0,13.0,606.891,12.681,5966.4,107.1,4.18,0.07,1.41,0.07,-0.143,0.024,1.09,0.137537,"17,42,43,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6221,1,False,False,False -150907983,6222.01,,3,4,3,3,1,4,4,12.8,54.2,85.72,0,0,0,PC,PC,12.0861,0.009,,1,qlp-s57-faintsearch,QLP,00:18:47.89,22:21:16.17,-2.238,0.075,-1.886,0.07,2459878.774673,0.0028651,9.4321076,0.0022332,3.852,0.383,7.683737,0.328412,7052.0,302.433,11.0911,0.655459,223.365,1077.0,19.0,615.666,16.1805,6704.0,131.6,4.28,0.09,1.43,0.07,,,1.42,0.237552,57,2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6222,1,False,False,False -288144647,6223.01,,3,4,3,3,1,4,4,11.2,64.5,21.69,0,0,0,PC,PC,12.6758,0.007,,1,qlp-s57-faintsearch,QLP,23:43:48.14,33:04:02.05,14.046,0.037,-29.305,0.021,2459879.618086,0.0025541,3.8553342,0.0006445,1.895,0.411,7.215842,0.569504,6624.0,524.395,4.94518,0.273157,41.8646,708.0,17.0,133.122,0.535,3909.0,157.0,4.65,0.01,0.6,0.02,,,0.587363,0.0202831,57,2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6223,1,False,False,False -66726479,6224.01,,3,4,3,3,1,4,4,55.5,118.4,114.27,0,0,0,PC,PC,13.2049,0.006,,1,qlp-s57-faintsearch,QLP,22:47:27.97,52:23:42.48,13.665,0.032,10.157,0.039,2459881.612767,0.000975,1.5554236,2.1e-06,1.916,0.114,19.886033,0.699713,18149.0,644.252,13.1166,,711.089,1438.0,34.0,498.044,5.456,5318.0,122.0,4.39,,1.01,,,,0.916,,"16,17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6224,1,False,False,False -352147273,6225.01,,3,4,3,3,1,4,4,5.2,75.3,23.3,0,0,0,PC,PC,13.104,0.007,,1,qlp-s57-faintsearch,QLP,00:01:56.41,35:59:51.99,39.607,0.063,-59.835,0.043,2459867.415663,0.0030882,8.555965,2.89e-05,1.865,0.302,13.517614,0.955626,12373.0,879.777,5.09342,0.256758,4.00885,394.0,11.0,83.7373,0.3534,3376.0,157.0,4.79,0.01,0.44,0.01,,,0.44118,0.0203153,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6225,1,False,False,False -176789447,6226.01,,3,4,3,3,1,4,4,18.9,44.4,123.98,0,0,0,PC,PC,13.0145,0.007,,1,qlp-s57-faintsearch,QLP,23:37:21.78,47:17:19.21,0.417,0.044,-4.429,0.036,2459880.971907,0.0021247,3.8857292,3.53e-05,1.928,0.378,6.768907,0.574315,6215.0,528.824,13.8034,,248.774,1106.0,13.0,1027.44,31.849,6084.0,122.0,3.99,,1.79,,,,1.14,,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6226,1,False,False,False -53874375,6227.01,,3,4,3,3,1,4,4,56.2,58.6,317.0,0,0,0,PC,PC,14.3279,0.007,,1,qlp-s57-faintsearch,QLP,00:58:07.64,29:59:08.04,-13.385,0.087,12.683,0.073,2459879.248503,0.0025093,3.0922512,0.0004608,1.936,0.468,49.013144,18.629901,44139.0,17012.4,15.731,3.03241,64.8463,790.0,19.0,313.996,5.6735,3661.0,157.0,4.59,0.01,0.68,0.02,,,0.646368,0.0210127,57,2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6227,1,False,False,False -66788350,6228.01,,3,4,3,3,1,4,4,26.7,35.7,317.0,0,0,0,PC,PC,11.6181,0.009,,1,qlp-s57-faintsearch,QLP,22:48:09.72,48:32:54.59,1.463,0.054,-1.45,0.049,2459880.856197,0.0008443,3.3338016,3.4e-06,2.902,0.358,5.551423,0.105662,5100.0,97.3139,15.1293,0.620812,2284.74,1926.0,39.0,960.874,29.191,7894.0,130.3,4.04,0.08,2.17,0.09,,,1.89,0.294216,"16,17,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6228,1,False,False,False -437736517,6229.01,,3,4,3,3,1,4,4,28.1,94.6,79.75,0,0,0,PC,PC,12.9192,0.007,,1,qlp-s57-faintsearch,QLP,00:09:40.1,28:14:37.24,19.32,0.04,-2.873,0.056,2459875.788906,0.0011054,4.6071277,1.15e-05,2.266,0.212,19.255907,0.932535,17579.0,858.528,10.6145,0.76421,87.2497,851.0,28.0,314.824,3.5105,4928.0,125.0,4.52,0.09,0.82,0.05,,,0.81,0.0944915,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6229,1,False,False,False -252610172,6230.01,,3,4,3,3,1,4,4,16.6,50.1,98.71,0,0,0,PC,PC,12.6848,0.009,,1,qlp-s57-faintsearch,QLP,23:03:46.43,49:21:59.01,1.272,0.027,-6.174,0.026,2459880.187207,0.0024751,4.3518774,1.34e-05,3.284,0.306,7.279236,0.280689,6682.0,258.491,12.0164,0.619462,673.068,1419.0,24.0,891.159,13.56,6496.3,103.2,4.15,0.08,1.61,0.07,0.189,0.022,1.33,0.207612,"16,17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6230,1,False,False,False -406783172,6231.01,,3,4,3,3,1,4,4,5.0,46.5,55.69,0,0,0,PC,PC,12.735,0.006,,1,qlp-s57-faintsearch,QLP,21:41:25.18,61:26:30.9,-24.097,0.038,-16.959,0.041,2459836.451005,0.0044521,24.8366994,0.0001507,4.793,0.618,11.8973,0.570259,10898.0,525.09,8.57154,0.557894,40.0666,700.0,21.0,391.594,2.9705,6334.0,395.9,4.63,0.12,0.89,0.05,,,1.252,0.24273,"16,17,24,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6231,1,False,False,False -202087931,6232.01,,3,4,3,3,1,4,4,16.7,59.8,116.35,0,0,0,PC,PC,13.0754,0.009,,1,qlp-s57-faintsearch,QLP,00:16:15.87,49:11:10.98,-1.031,0.058,-11.382,0.042,2459870.641636,0.0019215,9.8538051,2.55e-05,4.048,0.258,16.153727,0.610875,14768.0,562.478,13.3007,,102.929,887.0,28.0,581.095,15.656,5634.0,122.0,4.35,,1.11,,,,1.0,,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6232,1,False,False,False -431660224,6233.01,,3,4,3,3,1,4,4,44.3,130.2,108.67,0,0,0,PC,PC,11.1585,0.006,,1,qlp-s57-faintsearch,QLP,23:53:57.51,52:32:00.69,13.999,0.044,-3.515,0.035,2459876.499866,0.0007292,3.7069545,5.7e-06,2.38,0.159,8.464739,0.2037,7766.0,187.597,12.7103,0.61051,517.456,1328.0,35.0,377.069,4.11,6643.0,270.3,4.23,0.1,1.49,0.07,,,1.397,0.252741,"24,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6233,1,False,False,False -202282233,6234.01,,3,4,3,3,1,4,4,10.2,36.1,68.16,0,0,0,PC,PC,12.8741,0.007,,1,qlp-s57-faintsearch,QLP,00:20:16.6,49:27:57.37,-11.278,0.04,1.015,0.025,2459869.410711,0.0038858,6.6283182,7.94e-05,4.344,0.526,5.854847,0.373303,5378.0,343.766,9.65916,0.654109,273.774,1133.0,15.0,631.946,12.1075,5528.0,123.6,4.16,0.08,1.35,0.07,,,0.97,0.120852,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6234,1,False,False,False -150902766,6235.01,,3,4,3,3,1,4,4,36.9,65.4,317.0,0,0,0,PC,PC,12.8967,0.007,,1,qlp-s57-faintsearch,QLP,00:16:52.59,20:25:58.03,17.828,0.046,-142.608,0.048,2459872.368343,0.0013182,7.8209807,0.0009544,1.183,0.403,16.569265,23.682257,15145.0,21576.0,14.2139,4.73496,43.9112,717.0,13.0,374.957,4.0135,5917.0,125.6,4.76,0.08,0.71,0.04,,,1.08,0.133004,57,2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6235,1,False,False,False -405532603,6236.01,,3,4,3,3,1,4,4,46.7,125.4,108.48,0,0,0,PC,PC,11.4715,0.008,,1,qlp-s57-faintsearch,QLP,23:56:45.27,28:36:36.27,28.772,0.054,-3.323,0.036,2459882.031252,0.0010745,3.3045926,0.0002333,1.322,0.136,9.418235,0.440605,8637.0,405.73,12.7666,0.6898,145.508,967.0,42.0,403.61,7.495,6102.0,117.9,4.22,0.08,1.38,0.06,,,1.15,0.152785,57,2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6236,1,False,False,False -430431091,6237.01,,3,4,3,3,1,4,4,14.4,17.5,317.0,0,0,0,PC,PC,13.2587,0.008,,1,qlp-s57-faintsearch,QLP,22:10:42.23,48:39:09.96,0.098,0.025,0.126,0.025,2459878.064073,0.0028256,4.1533998,3.67e-05,3.857,0.333,6.581008,0.37375,6043.0,344.177,15.5058,,1266.49,1661.0,13.0,1556.04,37.855,6866.0,122.0,3.96,,2.11,,,,1.49,,"16,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search; possible slight odd-even,6237,1,False,False,False -125489084,6238.01,,3,4,3,3,1,4,4,11.0,36.2,70.14,0,0,0,PC,PC,13.3351,0.007,,1,qlp-s57-faintsearch,QLP,23:40:00.68,40:40:57.66,-10.239,0.036,-0.448,0.026,2459879.172244,0.0034459,5.7419523,7e-05,2.08,0.549,8.556658,0.843923,7850.0,776.98,9.81505,,82.5797,839.0,11.0,676.128,12.419,5396.0,122.0,4.21,,1.26,,,,0.94,,"16,17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6238,1,False,False,False -319294834,6239.01,,3,4,3,3,1,4,4,13.2,44.8,72.77,0,0,0,PC,PC,12.483,0.016,,1,qlp-s57-faintsearch,QLP,23:21:44.26,54:06:43.76,19.489,0.034,3.904,0.028,2459872.189739,0.0029656,6.0749198,2.28e-05,2.728,0.418,6.892369,0.300203,6328.0,276.459,10.0564,0.624961,146.106,968.0,15.0,563.864,7.523,5643.0,155.0,4.13,0.08,1.43,0.07,,,1.0,0.118134,"17,24,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6239,1,False,False,False -249776059,6240.01,,3,4,3,3,1,4,4,27.6,69.8,96.64,0,0,0,PC,PC,12.9847,0.008,,1,qlp-s57-faintsearch,QLP,22:38:29.58,50:31:29.68,-3.904,0.07,-1.204,0.074,2459881.923097,0.0012099,1.1797412,2.7e-06,3.391,0.191,7.760281,0.222422,7122.0,204.837,11.867,0.779673,8997.74,2713.0,33.0,960.615,42.299,6393.0,128.7,4.16,0.1,1.55,0.1,,,1.28,0.203394,"16,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6240,1,False,False,False -15654898,6241.01,,3,4,3,3,1,4,4,8.3,44.0,21.86,0,0,0,PC,PC,12.0227,0.006,,1,qlp-s57-faintsearch,QLP,01:08:19.84,25:39:09.27,-23.898,0.063,-10.704,0.071,2459879.12449,0.0025425,3.7812464,1.65e-05,2.13,0.332,2.740597,0.211481,2521.0,194.762,4.97462,0.374151,167.006,1001.0,12.0,278.827,3.0865,5209.0,131.2,4.4,0.09,0.99,0.06,,,0.886,0.108851,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6241,1,False,False,False -437740083,6242.01,TIC 437740083.01,3,4,3,3,1,4,4,31.6,98.2,88.92,0,1,0,PC,PC,11.0999,0.008,,1,qlp-s57-faintsearch,QLP,00:11:48.09,27:26:34.13,23.292,0.051,14.009,0.059,2459879.464465,0.0007606,5.6020298,7.8e-06,1.893,0.256,6.693525,0.332,6146.0,305.737,11.3612,0.748923,89.7874,857.0,35.0,328.625,3.9325,5750.6,142.0,4.14,0.08,1.44,0.08,0.199169,0.0108998,1.03,0.129513,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6242,1,False,False,False -276250096,6243.01,,2,4,2,2,1,4,4,4.8,45.2,8.73,0,0,0,PC,PC,10.7106,0.006,,1,qlp-s57-faintsearch,QLP,21:56:21.41,54:27:58.59,41.615,0.059,16.003,0.044,2459875.523593,0.0024544,3.5653226,1.45e-05,1.7,0.304,0.979776,0.078375,902.0,72.1835,2.88847,0.206164,185.407,1028.0,11.0,181.395,0.9825,5715.0,155.2,4.45,0.08,1.0,0.05,,,1.019,0.125289,"16,17,56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6243,1,False,False,False -431216437,6244.01,,3,4,3,3,1,4,4,135.3,137.0,317.0,1,0,0,PC,PC,10.5508,0.007,,1,qlp-s57-faintsearch,QLP,22:54:12.77,52:23:01.55,24.812,0.232,18.532,0.228,2459879.165546,0.0002223,2.5553078,7e-07,2.332,0.109,14.074022,0.158137,12879.0,145.639,15.4336,1.15448,551.23,1349.0,169.0,230.559,7.8485,5739.2,144.3,4.22,0.09,1.3,0.1,0.162,0.018,1.025,0.129575,"16,17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search,6244,1,False,False,False -446157122,6245.01,,2,4,2,2,1,4,4,1.3,14.4,0.68,0,0,0,PC,PC,12.133,0.007,,1,spoc-s14-s60-b0H,SPOC,05:54:47.82,80:05:40.61,-150.687,0.07,-6.745,0.081,2458818.754695,0.00087247306,3.21499374162644,1.0421917e-05,0.702266441411609,0.40231752,1.563314,0.21916,1438.82973997563,201.83324,0.904427174941137,1.3004019,7.33835383229916,419.777746344067,8.336911,22.1852,0.02325,3106.0,157.0,5.00517,0.0163985,0.236457005143166,0.00708549,,,0.206352,0.0200982,"19,20,26,40,52,53,59,60",2023-04-03,2023-04-03,2023-04-04 12:14:00,possible odd-even; low MES; M-dwarf host; possibly Eaarth-sized,6245,1,False,False,True -388505345,6246.01,,3,4,3,3,1,4,4,77.8,250.6,124.67,0,0,0,PC,PC,7.7085,0.006,,1,spoc-s14-s60-b0H,SPOC,23:46:29.19,81:22:41.02,-9.373,0.056,0.18,0.049,2459723.376477,0.0025392678,6.77864033372871,0.00012289383,1.89639430047245,0.11751578,1.245364,0.142111,1146.3653640779,130.88066,13.8147157558622,14.720568,2865.19810349809,1865.98613876484,11.1778145,187.612,1.0275,7665.0,187.3,3.86,0.08,2.59439992904663,0.0780352,,,1.795,0.291103,"52,53,58,59",2023-04-03,2023-04-03,2023-04-04 12:14:00,pulsating and bright host; potential secondary at ~0.63 phase; possibly v-shaped,6246,1,False,False,True -418301643,6247.01,,3,4,3,3,1,4,4,2.6,30.2,15.6,0,0,0,PC,PC,9.62005,0.006,,1,spoc-s14-s60-b0H,SPOC,21:34:19.74,72:45:27.48,15.21,0.041,9.107,0.047,2458771.24442,0.003665481,24.0916340749752,0.00010439189,5.73195664036531,0.269175,0.697863,0.061696,642.548998523138,56.822258,4.06842818461533,0.36757496,118.341341357726,841.208924354564,10.940302,216.838,1.104,6675.0,232.8,4.24,0.09,1.49434995651245,0.0628417,,,1.411,0.258245,"17,19,52,57,58,59",2023-04-03,2023-04-03,2023-04-04 12:14:00,potential L1 candidate given uncertainty,6247,1,False,False,True -154304816,6248.01,TIC 154304816.01,3,4,3,3,3,4,4,53.8,78.0,317.0,1,0,2,PC,PC,12.7841,0.01,,1,spoc-s14-s60-b0H,SPOC/QLP,22:49:38.55,46:20:59.94,0.348,0.029,-1.504,0.026,2459828.699823,0.0018395581,3.85289330861965,0.00023874505,2.2041562469395,0.15548569,8.865567,0.495089,8132.24154441662,455.88983,18.8912058354084,20.935768,974.481682862297,1424.99443928394,18.92265,701.295,8.636,6306.0,131.46,4.267,0.0818397,1.35594999790192,0.0603015,,,1.24,0.182407,"56,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,found in faint-star QLP search; Gaia DR3 RV error ~3.8 km/s; v-shaped; likely too large,6248,1,False,False,True -456260074,6249.01,TIC 456260074.01,1,4,1,1,4,4,4,0.0,23.7,10.03,0,1,3,PC,PC,9.0449,0.006,,1,spoc-s14-s60-b02,SPOC,06:45:58.09,66:53:26.32,-26.86,0.038,-20.602,0.05,2458853.470005,0.0018359637,1092.00229897156,0.0025958547,5.60492896452886,0.21951467,1.836011,0.06027,1689.5997266505,55.50942,3.13841012163411,0.38553283,0.07422631281688,133.124877594158,30.469858,47.9491,0.076,4813.0,125.942,4.57884,0.0940107,0.751037001609802,0.0528769,,,0.78,0.0938976,"20,60",2023-04-03,2023-04-03,2023-06-05 00:00:00,Duotransit. Many period aliases. Potential multi.,6249,1,True,False,True -456260074,6249.02,,2,4,2,2,4,4,4,3.7,74.7,7.22,0,1,3,PC,PC,9.0449,0.006,,2,spoc-s14-s60-b02,SPOC,06:45:58.09,66:53:26.32,-26.86,0.038,-20.602,0.05,2458844.107949,0.0031101839,15.5739142526762,0.0020791837,2.42692621286294,0.34125623,0.847117,0.111361,779.919369125268,102.56169,2.58642460759855,0.33543804,21.4614429823573,548.952135996791,8.035878,47.9491,0.076,4813.0,125.942,4.57884,0.0940107,0.751037001609802,0.0528769,,,0.78,0.0938976,"20,60",2023-04-03,2023-04-03,2023-06-05 00:00:00,asymmetric transit shape and centroid offset on nothing; only two TCEs both in S20 that may correspond to unique candidates due to slight difference in depth; potential multi,6249,2,True,False,True -455737331,6250.01,TIC 455737331.01,1,4,1,1,3,4,4,0.0,9.4,8.02,0,0,2,PC,PC,9.51477,0.006,,1,spoc-s14-s60-b02,SPOC,23:49:24.44,36:54:01.64,112.827,0.06,-77.66,0.04,2458780.693422,0.005203085,1076.60941651454,0.010402426,6.78038313840184,1.6964355,0.68055,0.076465,626.613019076062,70.424644,2.75122614820511,3.0867565,0.282475888633336,185.936689986461,11.369339,121.523,0.7205,5848.0,171.157,4.38886,0.0812249,1.08752000331879,0.0516935,,,1.056,0.142254,"17,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,duotransit; actual period likely shorter than max period of ~1076 days,6250,1,False,False,True -52005579,6251.01,,2,4,2,2,3,4,4,0.1,13.7,0.79,0,0,2,PC,PC,10.1769,0.007,,1,spoc-s14-s60-b02,SPOC,00:15:49.9,13:33:27.42,618.003,0.163,329.319,0.139,2459497.184957,0.0018435018,25.522952715243,8.0398844e-05,1.04449919613371,0.7485024,1.281601,0.187269,1179.70139249007,172.46657,0.942768812973293,1.5967367,1.90172396846718,299.50675348738,7.9643807,12.21,0.01305,3376.0,157.0,4.9613,0.0101873,0.269427001476288,0.0080644,,,0.242168,0.0201353,"42,43,57",2023-04-03,2023-04-03,2023-04-04 12:14:00,period may be half (~12.76 days),6251,1,False,False,True -307734818,6252.01,TIC 307734818.01,3,4,3,3,1,4,4,61.6,137.0,97.95,1,0,0,PC,PC,13.7607,0.009,,1,qlp-s49-307734818,CTOI,11:26:23.21,28:03:28.9,31.358,0.089,-18.738,0.084,2459661.706445,0.0015578,2.1077445,0.0002807,1.779,0.188,36.576418,2.064274,33127.0,1899.46,12.0414,0.553647,95.8765,871.0,25.0,244.588,4.007,3954.0,157.0,4.61,0.01,0.65,0.02,,,0.624949,0.0210258,49,2023-04-06,2023-04-06,2023-04-07 12:13:06,true source of TIC 307734817.01 (TOI-1808.01),6252,1,False,False,False -287152495,6253.01,,2,4,2,2,2,4,4,0.5,1.8,2.51,0,1,1,PC,PC,11.6807,0.006,,1,spoc-s14-s60-b02,SPOC,16:54:47.35,60:42:10.07,-20.038,0.044,34.142,0.041,2458686.243474,0.001732896,9.234734841313,1.8771372e-05,0.961997187785116,0.25385955,0.385078,0.06531,354.607495847713,60.150555,1.38834947595636,3.459586,112.675515868136,830.954297699861,7.2694163,163.316,0.573,4902.0,123.673,4.59853,0.0896284,0.744485020637512,0.049206,,,0.802,0.0933807,"14,15,16,17,18,19,20,21,22,23,24,25,26,40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2023-04-06,2023-04-06,2023-06-05 00:00:00,low SNR; period could be half,6253,1,False,False,True -432758245,6254.01,,2,4,2,2,1,4,4,7.5,60.0,6.51,0,0,0,PC,PC,10.4564,0.006,,1,spoc-s14-s60-b02,SPOC,00:57:17.47,37:01:44.33,7.406,0.084,-41.005,0.065,2458765.54076,0.0013303404,1.53611368167626,1.1567551e-05,1.13703017454937,0.24224664,0.590559,0.081513,543.776736931168,75.07352,2.43395729661239,0.48301896,876.574146453994,1387.76814346432,7.1577888,131.686,0.8585,5317.0,127.663,4.50528,0.0816702,0.885814011096954,0.0503593,,,0.916,0.114268,"17,57",2023-04-06,2023-04-06,2023-04-07 12:13:06,low SNR; some asymmetry in transit shape,6254,1,False,False,True -261135533,6255.01,TIC 261135533.01,1,4,1,1,2,4,4,17.4,33.1,0.85,5,1,1,PC,PC,10.4458,0.007,,1,spoc-s14-s60-b02,SPOC,22:06:00.76,39:17:55.78,69.188,0.067,-458.917,0.083,2458738.712374,0.000466235,0.238182333577565,7.5510798e-06,0.476353557961978,0.16656613,0.536461,0.053271,493.976395669302,49.063408,0.961738557272788,0.28935423,588.994350817339,1256.4567155639,11.5334835,20.3167,0.0236,3423.0,157.0,4.85554,0.00118834,0.369076997041702,0.0109958,,,0.356208,0.0202346,"16,56",2023-04-06,2023-04-06,2023-07-07 00:00:00,short duration; USP,6255,1,False,False,True -373017793,6256.01,,2,4,2,2,1,4,4,3.8,36.2,11.96,0,0,0,PC,PC,10.2602,0.006,,1,spoc-s14-s60-b02,SPOC,23:59:43.92,77:48:13.43,29.441,0.042,11.41,0.037,2459722.052653,0.00946189,7.99455027678079,0.00047361874,4.76453625502729,0.515522,0.526691,0.054518,484.983026923932,50.211216,3.48016341510802,0.30176675,311.907104153875,1071.83038905959,8.384741,218.299,1.0875,6088.0,247.1,4.27,0.09,1.30233001708984,0.0594472,,,1.141,0.189362,"52,58,59",2023-04-06,2023-04-06,2023-04-07 12:13:06,,6256,1,False,False,True -237204346,6257.01,TIC 237204346.01,2,4,2,2,1,4,4,1.8,20.4,7.07,0,0,0,PC,PC,10.6713,0.006,,1,spoc-s14-s60-b02,SPOC,19:33:17.63,76:55:18.1,19.04,0.038,30.514,0.048,2458796.051294,0.0029802676,6.54520144213766,3.130784e-05,4.19311244411609,0.6848081,0.386622,0.037821,356.028621278037,34.834267,2.55531632634521,1.6534029,462.913994586202,1183.02746470297,9.30532,287.03,1.8885,6353.0,131.855,4.29887,0.08818,1.3186399936676,0.0586433,,,1.262,0.197608,"18,19,24,57,58,59,60",2023-04-06,2023-04-06,2023-04-07 12:13:06,two stars in pixel,6257,1,False,False,True -435878153,6258.01,,2,4,2,2,1,4,4,7.4,10.0,1.95,2,0,0,PC,PC,12.0398,0.008,,1,spoc-s14-s60-b02,SPOC,00:52:20.49,20:56:19.95,85.693,0.119,-53.08,0.085,2458764.784402,0.0013156168,0.557086891906361,2.5310477e-05,0.991697527366155,0.76131487,1.081081,0.253552,995.217211423614,233.50243,1.21514782321363,2.6829014,189.597342738952,946.40671080547,7.712143,44.0959,0.1583,3392.0,157.0,4.84507,0.00195359,0.380156010389328,0.0112742,,,0.368918,0.0202085,"17,57",2023-04-06,2023-04-06,2023-04-07 12:13:06,low SNR; asymmetric transit shape; flaring possibly young host,6258,1,False,False,True -294497466,6259.01,,1,4,1,3,1,4,4,6.6,47.6,27.23,0,0,0,PC,PC,10.2279,0.007,,1,qlp-s62-ffi,QLP,09:20:27.76,-51:39:37.64,-8.258,0.07,9.301,0.063,2460009.295861,0.0032672,3.2376482,1.19e-05,2.038,0.287,0.758108,0.049965,698.0,46.0186,5.6488,0.300198,2947.16,2052.0,12.0,606.267,13.3515,10023.0,209.2,4.17,0.06,2.19,0.07,,,2.57,0.335373,"9,10,35,36,62",2023-04-13,2023-04-13,2023-05-30 00:00:00,possible centroid offset to S,6259,1,False,False,False -60984804,6260.01,,1,4,1,1,1,4,4,6.6,74.2,6.04,0,0,0,PC,PC,7.11719,0.007,,1,qlp-s62-ffi,QLP,09:22:22.99,-06:03:38.28,-44.806,0.123,-9.177,0.114,2460009.508249,0.0031711,2.3898191,4.02e-05,2.766,0.439,0.228029,0.012526,210.0,11.5371,2.32849,0.135741,3762.79,2181.0,17.0,113.102,0.9505,7707.0,128.6,4.11,0.08,1.96,0.06,,,1.812,0.28773,"8,35,62",2023-04-13,2023-04-13,2023-04-25 12:12:35,bright host; some asymmetry in transit shape; one transit on momentum dump,6260,1,False,False,True -181748381,6261.01,,3,4,3,3,1,4,4,23.9,91.9,58.5,0,0,0,PC,PC,10.4441,0.006,,1,qlp-s62-ffi,QLP,08:48:13.26,-39:41:10.65,-18.738,0.082,8.575,0.074,2460013.716939,0.0011678,5.4920894,7.2e-06,2.934,0.184,4.310231,0.116007,3962.0,106.841,8.83359,0.453196,265.101,1124.0,29.0,267.542,3.3455,6090.0,130.5,4.12,0.08,1.53,0.07,,,1.14,0.158788,"8,9,35,61,62",2023-04-13,2023-04-13,2023-04-25 12:12:35,similarly bright neighbor to W; possible centroid offset to SE; slight depth aperture correlation,6261,1,False,False,False -180575165,6262.01,,2,4,2,2,1,4,4,3.2,40.0,8.19,0,0,0,PC,PC,9.9551,0.006,,1,qlp-s62-ffi,QLP,08:36:37.93,-36:31:23.43,-7.01,0.058,2.082,0.067,2460013.011321,0.0040179,1.4945947,3.89e-05,2.71,0.501,0.304049,0.02512,280.0,23.1364,2.79068,0.177373,21608.7,3377.0,10.0,441.135,8.68,9532.0,190.2,4.34,0.07,1.75,0.06,,,2.43,0.33376,"35,61,62",2023-04-13,2023-04-13,2023-04-25 12:12:35,possible centroid offset to ESE; slight depth aperture correlation; low SNR,6262,1,False,False,False -293547742,6263.01,,2,4,2,2,1,4,4,2.0,9.1,0.76,1,0,0,PC,PC,9.1348,0.006,,1,qlp-s62-ffi,QLP,09:16:47.94,-49:18:03.04,-214.498,0.049,116.674,0.05,2460009.249357,0.0089529,3.0178746,2.65e-05,2.679,0.455,0.209567,0.018735,193.0,17.2557,0.930891,0.0813588,303.499,1162.0,9.0,46.2588,0.06885,4717.0,108.2,4.61,0.08,0.71,0.04,0.06,0.09,0.76,0.0871925,"8,9,35,36,62",2023-04-13,2023-04-13,2023-04-25 12:12:35,low SNR; slight depth-aperture correlation,6263,1,False,False,False -291471222,6264.01,,2,4,2,2,1,4,4,2.5,18.2,13.95,0,0,0,PC,PC,10.1972,0.006,,1,qlp-s62-ffi,QLP,07:26:05.74,-52:27:47.52,-15.665,0.051,23.876,0.051,2460011.204616,0.0098018,5.6928845,5.16e-05,4.261,0.993,0.315995,0.029843,291.0,27.4864,3.80626,0.309485,908.509,1529.0,10.0,437.146,4.622,6610.0,125.5,3.79,0.09,2.47,0.1,,,1.38,0.229177,"7,8,9,33,34,35,61,62",2023-04-13,2023-04-13,2023-04-25 12:12:35,L1 candidate; possible offset E; slight depth aperture correlation,6264,1,False,False,False -344927749,6265.01,,1,4,1,1,1,4,4,2.7,44.6,2.99,0,1,0,PC,PC,7.4829,0.006,,1,qlp-s62-ffi,QLP,10:06:30.62,03:28:27.69,-58.742,0.097,-69.112,0.079,2460002.820386,0.0076129,5.7935446,4.33e-05,3.395,0.591,0.1531,0.011432,141.0,10.529,1.53996,0.0997399,456.108,1287.0,11.0,71.8401,0.29395,6387.1,114.4,4.27,0.08,1.37,0.06,,,1.28,0.200442,"8,35,45,46,62",2023-04-13,2023-04-13,2023-04-25 12:12:35,two stars in pixel; some asymmetry in transit shape,6265,1,False,False,True -193023697,6266.01,,2,4,2,2,1,4,4,2.7,10.8,0.92,0,2,0,PC,PC,8.5953,0.006,,1,qlp-s62-ffi,QLP,10:22:23.48,-28:50:50.95,-5.101,0.069,30.917,0.063,2460013.265158,0.0047231,2.7895524,1.47e-05,1.969,0.794,0.2845,0.03025,262.0,27.8612,0.986147,0.114162,376.853,1227.0,10.0,42.6435,0.06215,5039.0,132.8,4.62,0.09,0.74,0.05,-0.09,0.06,0.84,0.102543,"9,36,62",2023-04-13,2023-04-13,2023-04-25 12:12:35,low SNR,6266,1,False,False,True -296737508,6267.01,TIC 296737508.01,3,4,3,3,3,4,4,0.0,17.3,20.81,0,3,2,PC,PC,9.19706,0.006,,1,qlp-s62-ffi,QLP,09:28:43.02,-14:41:11.22,1.342,0.079,-4.534,0.063,2460005.986483,0.0021935,733.99109376,5.63e-05,4.719,0.401,1.820133,0.058916,1675.0,54.2619,4.8141,0.277572,31.6587,660.0,23.0,118.021,0.582,5699.6,132.8,4.24,0.08,1.27,0.07,0.05,0.1,1.015,0.127835,"8,35,62",2023-04-13,2023-04-13,2023-04-25 12:12:35,3 transits; actual period likely shorter than max period of ~733.9904 days,6267,1,False,False,True -434477274,6268.01,TIC 434477274.01,3,4,3,3,1,4,4,37.6,95.3,125.63,1,0,0,PC,PC,12.2659,0.007,,1,spoc-s62-b02,SPOC,10:24:29.04,-23:00:15.01,-26.349,0.075,7.901,0.055,2459989.600491,0.0017475806,2.8959153305136,0.00033539714,1.7993552035741,0.08193935,7.673825,0.53637,7042.93519565846,493.89343,13.8781873677893,1.0172917,1511.71268771735,1590.32931352017,20.659163,629.506,16.8105,6249.0,125.481,4.22232,0.0849707,1.41015005111694,0.0718794,,,1.21,0.173641,62,2023-04-13,2023-04-13,2023-04-25 12:12:35,V-shaped,6268,1,False,False,True -168281028,6269.01,TIC 168281028.01,5,5,5,5,5,5,5,11.4,52.9,34.28,0,0,0,KP,KP,11.8134,0.007,,1,spoc-s62-b02,SPOC,10:17:05.05,-25:16:34.67,-21.752,0.066,-7.54,0.07,2459991.434964,0.0019067009,4.37446138036514,0.00063754205,3.04844944149777,0.15113048,3.557246,0.176716,3270.98285564573,162.74796,6.4637765204215,0.6338399,419.437882889947,1154.21486362506,17.267347,343.525,5.049,5677.0,129.358,4.34735,0.0775018,1.11563003063202,0.058093,,,1.01,0.125335,62,2023-04-13,2023-04-13,2023-04-25 12:12:35,HATS-38 b,6269,1,False,False,True -192976435,6270.01,TIC 192976435.01,3,4,3,3,1,4,4,25.3,27.2,317.0,0,0,0,PC,PC,12.8122,0.008,,1,spoc-s62-b02,SPOC,10:20:07.72,-29:16:33.99,-12.492,0.034,3.069,0.031,2459992.527635,0.0026106583,4.22836203482917,0.0008286421,4.4126225597927,0.18828918,9.365434,0.489862,8588.78761318354,451.0774,14.7143972893177,1.0207324,1012.47734182863,1438.68619989272,16.708778,819.375,12.935,6001.0,127.916,4.09439,0.0778122,1.56496000289917,0.0755527,,,1.11,0.137653,62,2023-04-13,2023-04-13,2023-04-25 12:12:35,two stars in pixel,6270,1,False,False,True -134528212,6271.01,TIC 134528212.01,3,4,3,3,1,4,4,55.7,51.8,317.0,0,0,0,PC,PC,13.7025,0.006,,1,spoc-s62-b02,SPOC,08:09:39.31,-37:22:15.96,4.079,2.85,-4.126,2.85,2459989.286186,0.0025260157,1.60416160647951,0.0002969716,2.50899045547159,0.19114731,21.014232,1.988111,19168.7206900412,1829.4423,13.8626063217424,0.69242215,1388.96681385942,1557.01471467406,13.153058,705.238,,5780.0,,4.438,,1.0,,,,,,"61,62",2023-04-13,2023-04-13,2023-04-25 12:12:35,multiple stars in pixel; no stellar radius but Gaia DR2 Rs=1.22 so Rp~17 Re,6271,1,False,False,True -33303538,6272.01,,3,4,3,3,2,4,4,86.9,115.6,317.0,1,0,1,PC,PC,10.7852,0.008,,1,spoc-s62-b02,SPOC,09:59:40.43,-06:54:21.83,5.04,0.084,-3.478,0.088,2459989.253135,0.002089424,2.51414058793831,0.00035491202,2.54190140010579,0.12690365,3.888336,0.16441,3574.88503134313,151.41582,17.7772902828643,15.106553,3909.74221333669,2016.77189439741,22.879612,476.194,13.515,6880.0,132.624,4.08875,0.0938743,1.82495999336243,0.093799,,,1.49,0.259854,62,2023-04-13,2023-04-13,2023-06-05 00:00:00,V-shaped,6272,1,False,False,True -142211778,6273.01,,5,5,5,5,5,5,5,18.7,44.0,122.07,0,0,0,KP,KP,13.9069,0.006,,1,spoc-s63-b02,SPOC,12:02:11.09,-35:32:54.99,-2.416,0.04,1.487,0.025,2460016.846502,0.003919048,3.05205702480118,0.00094086275,3.48177919898711,0.28988293,10.257581,0.790196,9403.09260110119,727.53284,13.6453427597527,1.2313935,1077.34405830216,1461.1955965983,11.614146,1096.19,41.565,5726.0,122.0,4.16246,,1.38707995414734,,,,1.02,,63,2023-04-27,2023-04-27,2023-04-28 12:12:06,NGTS-18 b,6273,1,False,False,True -465933345,6274.01,,3,4,3,3,1,4,4,51.5,122.0,99.35,0,0,0,PC,PC,10.4819,0.006,,1,spoc-s63-b02,SPOC,10:59:03.33,-60:04:58.58,-18.138,0.049,-3.208,0.045,2460014.407836,0.0021352351,1.11090528232309,0.00016419074,1.91803720217095,0.09142716,2.26515,0.190435,2084.10528211251,175.38188,12.0880981803174,0.789483,17057.3557354931,2914.72560604071,8.178762,502.979,7.9245,6498.6,126.5,3.67,0.71,2.33238005638123,0.104789,,,1.39,0.23425,63,2023-04-27,2023-04-27,2023-04-28 12:12:06,pulsating host; crowded field,6274,1,False,False,True -49043968,6275.01,TIC 49043968.01,3,4,4,3,1,4,4,39.7,139.5,119.29,1,0,0,PC,PC,11.6337,0.008,,1,spoc-s63-b02,SPOC,10:57:23.79,-29:59:49.64,-49.031,0.053,1.227,0.055,2460017.858526,0.00076792523,6.24622520490738,0.00042168977,4.25083606822295,0.058976885,14.504751,0.228051,13270.5292659393,210.02043,13.4614755701256,0.65420496,339.101349975268,1094.46563371968,60.30014,362.087,5.308,6132.0,127.507,4.38741,0.084278,1.14172005653381,0.0533769,,,1.16,0.159949,63,2023-04-27,2023-04-27,2023-04-28 12:12:06,two stars in pixel,6275,1,False,False,True -397362481,6276.01,,2,4,4,2,1,4,4,4.0,25.5,0.83,2,0,0,PC,PC,6.7213,0.006,,1,spoc-s63-b02,SPOC,11:41:01.51,-44:24:14.93,-660.418,0.233,241.799,0.117,2460017.108056,0.0016719438,6.20747203169486,0.0009819452,1.55874039995771,0.15797926,0.25073,0.031379,230.904139734345,28.900988,0.955851376202058,0.83626235,45.9200705607039,663.927085206015,7.184499,12.7781,0.0114,4633.87,143.288,4.70763,0.105376,0.630715012550354,0.0536482,-0.505455,0.027136,0.74,0.0868159,63,2023-04-27,2023-04-27,2023-06-02 00:00:00,potential multi; low SNR,6276,1,True,False,True -397362481,6276.02,,2,4,2,2,1,4,4,4.6,29.7,0.63,2,0,0,PC,PC,6.7213,0.006,,2,spoc-s63-b02,SPOC,11:41:01.51,-44:24:14.93,-660.418,0.233,241.799,0.117,2460014.846822,0.0021372268,4.46534709871303,0.00070410635,1.56914862167412,0.11201358,0.202792,0.027286,186.760672664854,25.131464,0.885684603080662,0.46845463,71.244051912514,740.980710535205,7.353104,12.7781,0.0114,4633.87,143.288,4.70763,0.105376,0.630715012550354,0.0536482,-0.505455,0.027136,0.74,0.0868159,63,2023-04-27,2023-04-27,2023-04-28 12:12:06,potential multi; low SNR,6276,2,True,False,True -462206806,6277.01,TIC 462206806.01,3,4,3,3,1,4,4,62.4,67.5,317.0,3,0,0,PC,PC,11.9905,0.006,,1,spoc-s63-b02,SPOC,10:01:51.32,-55:39:37.34,4.081,0.061,5.649,0.054,2460016.245607,0.00072224694,3.373350647646,0.00017825459,2.87686401600775,0.051701482,17.519166,0.274568,16006.2646898968,252.85437,14.4530161532189,0.76509,582.4111152197,1252.93102479482,46.95095,362.374,5.0405,5704.0,131.889,4.36494,0.0786546,1.09865999221802,0.0559673,,,1.02,0.127071,63,2023-04-27,2023-04-27,2023-04-28 12:12:06,multiple stars in pixel,6277,1,False,False,True -157230659,6278.01,TIC 157230659.01,5,5,5,5,5,5,5,17.2,59.0,79.6,0,0,0,KP,KP,11.6634,0.006,,1,spoc,SPOC,11:44:59.99,-35:38:26.03,-18.414,0.044,7.138,0.032,2460019.14123,0.0022684252,7.53376570240877,0.0021649108,5.58438360869278,0.2017168,5.111908,0.245322,4697.17530859535,225.92403,10.6111189603954,0.77257526,422.162337392881,1156.08461314337,7.1724796,446.442,7.5795,5869.0,123.928,4.09453,0.076669,1.52904999256134,0.0744673,,,1.06,0.135145,63,2023-04-27,2023-04-27,2023-04-28 12:12:06,NGTS-12 b,6278,1,False,False,True -449951606,6279.01,,5,5,5,5,5,5,5,16.1,51.7,117.89,0,0,0,PC,FP,10.3879,0.007,,1,qlp-s63-ffi,QLP,11:12:51.09,-58:56:32.75,-8.314,0.058,2.737,0.06,2460032.930262,0.0051966,5.1681189,3.04e-05,3.736,0.88,1.911492,0.133909,1759.0,123.327,13.3663,0.923549,1947.87,1850.0,17.0,860.379,31.018,8254.0,144.8,3.67,0.08,3.44,0.17,,,2.03,0.311209,"10,11,63",2023-04-27,2023-04-27,2023-07-08 12:03:09,very crowded field; slight depth aperture correlation,6279,1,False,False,False -370877263,6280.01,,3,4,3,3,1,4,4,8.6,65.0,32.44,0,0,0,PC,PC,9.927,0.006,,1,qlp-s63-ffi,QLP,09:40:41.85,-66:39:16.16,-6.545,0.062,4.902,0.058,2460023.22326,0.0015845,15.9865424,2.97e-05,1.346,0.207,2.64808,0.176138,2436.0,162.216,6.25995,0.380885,8.96921,482.0,23.0,199.531,1.3635,6429.0,135.2,4.34,0.09,1.28,0.06,,,1.3,0.201432,"9,10,11,36,38,63",2023-04-27,2023-04-27,2023-04-28 12:12:06,variable host; slightly v-shaped; multiple stars in pixel,6280,1,False,False,False -152569268,6281.01,,1,4,1,1,1,4,4,19.9,101.6,8.2,0,0,0,PC,PC,9.9542,0.006,,1,qlp-s63-ffi,QLP,11:29:30.85,-40:36:33.93,-117.521,0.044,60.118,0.038,2460038.110256,0.0023392,1.0542548,2.9e-06,1.271,0.521,0.459364,0.763701,423.0,703.147,2.77385,1.19872,4181.02,2240.0,13.0,57.7451,0.1116,4160.1,120.7,4.37,0.11,0.87,0.08,-0.09,0.08,0.65,0.0813771,"10,36,37,63",2023-04-27,2023-04-27,2023-04-28 12:12:06,,6281,1,False,False,False -370009806,6282.01,,2,4,2,2,1,4,4,1.1,24.0,3.34,0,0,0,PC,PC,9.1848,0.006,,1,qlp-s63-ffi,QLP,03:08:07.55,-70:06:37.65,-35.426,0.047,-9.169,0.042,2460030.866836,0.0082096,12.4751573,9.46e-05,3.967,1.902,0.271468,0.028152,250.0,25.9288,1.63668,0.136546,230.334,1085.0,10.0,113.881,0.2875,6055.0,130.9,4.41,0.08,1.09,0.05,,,1.13,0.146956,"1,2,3,13,27,28,29,30,63",2023-05-03,2023-05-03,2023-05-06 12:13:45,,6282,1,False,False,True -361218772,6283.01,,3,4,3,3,1,4,4,12.9,83.0,110.8,1,0,0,PC,PC,9.3478,0.006,,1,qlp-s63-ffi,QLP,09:35:22.12,-65:12:58.25,-27.504,0.066,20.334,0.055,2459287.316463,0.0025095,51.6708185,0.00029,3.449,0.371,5.111717,0.281869,4697.0,259.577,12.8776,0.665902,7.89484,466.0,21.0,262.942,2.2005,7115.0,136.6,4.07,0.08,1.91,0.07,,,1.58,0.263206,"9,10,11,36,37,38,63",2023-05-03,2023-05-03,2023-05-06 12:13:45,pulsating host,6283,1,False,False,False -286763141,6284.01,,2,4,2,2,1,4,4,1.7,13.4,0.49,0,0,0,PC,PC,9.72334,0.007,,1,qlp-s63-ffi,QLP,10:01:24.03,-38:50:27.74,161.909,0.061,-207.177,0.069,2460035.841876,0.0035015,3.4475935,1.33e-05,1.731,0.327,0.347491,0.032554,320.0,29.9826,0.830466,0.0538853,31.3617,659.0,9.0,21.0197,0.0203,3548.0,157.0,4.77,0.01,0.47,0.01,,,0.465272,0.0203779,"9,35,36,62,63",2023-05-03,2023-05-03,2023-05-06 12:13:45,low SNR; possible unrelated transit near TBJD 1568,6284,1,False,False,True -308778563,6285.01,TIC 308778563.01,3,4,3,3,1,4,4,19.4,65.3,84.39,0,0,0,PC,PC,10.6006,0.01,,1,qlp-s58-faintsearch,QLP,01:36:52.25,51:37:53.66,-0.084,0.066,-6.803,0.073,2459908.497832,0.0012691,6.8581311,1.27e-05,5.186,0.373,3.033438,0.066393,2790.0,61.1482,10.9703,0.516681,753.001,1459.0,42.0,432.725,7.415,6605.0,135.1,3.92,0.09,2.12,0.1,,,1.38,0.234429,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6285,1,False,False,False -354285962,6286.01,,5,5,5,5,5,5,5,5.2,17.1,59.24,0,0,0,PC,FP,12.4721,0.012,,1,qlp-s58-faintsearch,QLP,23:05:45.9,72:24:37.99,-8.426,0.029,-1.219,0.026,2459907.595404,0.0174707,5.6289226,0.0001592,9.272,1.955,2.010472,0.108895,1850.0,100.291,8.93102,0.646382,4560.18,2289.0,20.0,1111.47,21.04,6683.0,144.5,3.72,0.09,2.72,0.12,,,1.41,0.243085,"18,24,25,52,57,58",2023-05-03,2023-05-03,2023-07-08 12:03:07,found in faint-star QLP search,6286,1,False,False,False -22712134,6287.01,,3,4,3,3,1,4,4,15.8,49.2,55.8,0,0,0,PC,PC,12.6502,0.009,,1,qlp-s58-faintsearch,QLP,02:31:51.31,28:57:57.64,1.39,0.046,-12.23,0.044,2459908.580448,0.0024206,1.640758,5.8e-06,1.326,0.284,2.313997,0.33221,2129.0,305.93,8.61251,0.642563,747.202,1456.0,11.0,779.009,14.849,6262.0,122.2,4.16,0.09,1.52,0.07,,,1.22,0.1825,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6287,1,False,False,False -240714633,6288.01,,3,4,3,3,1,4,4,5.8,49.3,47.55,0,0,0,PC,PC,12.383,0.006,,1,qlp-s58-faintsearch,QLP,00:40:38.35,52:39:15.87,67.719,0.05,-7.009,0.034,2459895.113278,0.0032737,18.0370154,0.0031282,2.356,0.33,9.109434,0.668461,8355.0,615.486,7.85944,0.556722,9.70594,491.0,16.0,307.157,3.8735,5400.0,150.3,4.55,0.08,0.85,0.05,,,0.938,0.12161,"17,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6288,1,False,False,False -292469572,6289.01,,3,4,3,3,1,4,4,23.9,71.9,92.27,0,0,0,PC,PC,13.2644,0.007,,1,qlp-s58-faintsearch,QLP,02:10:28.73,43:58:30.11,12.648,0.089,-9.0,0.096,2459905.132375,0.0015963,3.7077543,7.9e-06,2.662,0.205,10.816605,0.627132,9913.0,577.443,11.5364,,317.476,1175.0,26.0,608.995,28.105,5620.2,171.2,4.4,,1.04,,0.305,0.159,1.0,,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6289,1,False,False,False -256576519,6290.01,,2,4,2,2,1,4,4,1.5,25.0,7.96,0,1,0,PC,PC,10.6382,0.006,,1,qlp-s58-faintsearch,QLP,21:49:21.97,67:01:46.38,42.247,0.048,-24.535,0.043,2459893.809226,0.005064,17.6037996,0.0001319,3.574,0.485,0.958042,0.083912,882.0,77.2827,2.74615,0.216225,23.7402,614.0,11.0,151.713,0.6215,5265.0,134.1,4.43,0.08,0.96,0.05,,,0.902,0.115247,"16,17,18,24,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6290,1,False,False,True -26390980,6291.01,,3,4,3,3,1,4,4,28.7,20.2,317.0,0,0,0,PC,PC,13.0735,0.013,,1,qlp-s58-faintsearch,QLP,03:45:15.69,32:08:12.49,-1.472,0.13,-5.553,0.067,2459900.051272,0.004082,5.2556421,3.94e-05,3.434,0.38,4.776875,0.299278,4390.0,275.607,15.1084,,191.054,1035.0,17.0,449.608,13.0265,5061.0,122.0,,,2.26,,,,,,"18,42,43,44,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6291,1,False,False,False -238751619,6292.01,,3,4,3,3,1,4,4,12.5,46.9,26.22,0,0,0,PC,PC,11.627,0.007,,1,qlp-s58-faintsearch,QLP,02:56:21.49,43:05:31.97,-0.54,0.089,-10.604,0.067,2459908.735558,0.0025856,0.8236066,3e-06,1.71,0.315,1.184098,0.09547,1090.0,87.9272,5.5335,0.477795,4901.54,2331.0,16.0,522.859,11.932,6202.0,190.1,4.06,0.11,1.69,0.12,0.051,0.193,1.19,0.18245,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6292,1,False,False,False -34977731,6293.01,,3,4,3,3,1,4,4,9.0,47.0,66.93,0,0,0,PC,PC,13.1745,0.006,,1,qlp-s58-faintsearch,QLP,03:12:05.37,28:27:52.85,33.29,0.054,-32.897,0.048,2459899.168188,0.0026674,13.3673993,0.0001442,3.63,0.296,11.21694,0.644038,10278.0,593.005,9.61997,,25.0292,623.0,20.0,322.06,3.077,4831.0,122.0,4.4,,0.93,,,,0.784,,"18,42,43,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search; potential multi,6293,1,True,False,False -34977731,6293.02,,3,4,3,3,1,4,4,0.0,14.4,63.37,0,0,0,PC,PC,13.1745,0.006,,2,qlp-s58-faintsearch,QLP,03:12:05.37,28:27:52.85,33.29,0.054,-32.897,0.048,2459480.391456,0.0043333,405.0756576,0.0033399,5.339,0.547,16.780952,0.73156,15337.0,673.565,9.31573,,0.0601025,137.0,9.0,322.06,3.077,4831.0,122.0,4.4,,0.93,,,,0.784,,"18,42,43,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search; potential multi; first transit distorted; period likely much shorter,6293,2,True,False,False -434813314,6294.01,,3,4,3,3,1,4,4,17.7,94.3,66.94,0,0,0,PC,PC,12.4533,0.006,,1,qlp-s58-faintsearch,QLP,23:03:17.92,60:18:40.14,-4.242,0.03,9.728,0.027,2459893.51801,0.0008887,9.288704,1.84e-05,3.019,0.298,15.356164,0.684503,14044.0,630.252,9.62284,0.708379,34.2291,673.0,48.0,217.443,0.925,4753.0,137.7,4.57,0.09,0.75,0.05,,,0.764,0.0884426,"24,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6294,1,False,False,False -456171328,6295.01,,3,4,3,3,1,4,4,0.1,7.8,317.0,0,0,0,PC,PC,11.4381,0.006,,1,qlp-s58-faintsearch,QLP,03:28:54.19,46:26:34.96,-5.592,0.068,-7.206,0.055,2458799.419698,8.3e-06,1106.220834,1e-06,3.759,0.014,6.809331,0.162407,6252.0,149.571,14.786,0.714469,0.0333828,119.0,15.0,420.683,5.958,6199.0,209.9,4.07,0.09,1.67,0.08,,,1.19,0.175802,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search; period may be shorter,6295,1,False,False,False -373894336,6296.01,,3,4,3,3,1,4,4,20.6,22.9,317.0,0,0,0,PC,PC,12.7859,0.027,,1,qlp-s58-faintsearch,QLP,01:53:10.05,60:13:25.73,-7.422,0.017,3.639,0.032,2459908.370097,0.0043295,4.2234273,0.0011686,4.384,0.397,8.660624,0.379143,7945.0,349.143,14.4033,0.823551,1446.04,1717.0,20.0,853.919,15.1525,6696.0,218.3,4.04,0.09,1.88,0.08,,,1.42,0.255067,58,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6296,1,False,False,False -369907772,6297.01,,3,4,3,3,1,4,4,21.5,58.1,117.33,0,0,0,PC,PC,12.0782,0.014,,1,qlp-s58-faintsearch,QLP,01:22:14.87,56:46:41.51,-0.242,0.04,4.447,0.044,2459904.298736,0.0021297,4.2771464,1.3e-05,3.867,0.456,6.647643,0.23564,6104.0,217.009,13.316,0.709008,1149.87,1622.0,39.0,773.628,19.0565,6707.0,149.3,4.03,0.08,1.91,0.09,,,1.42,0.235656,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6297,1,False,False,False -285233023,6298.01,,5,5,5,5,5,5,5,12.4,44.5,47.3,0,0,0,PC,FP,12.4487,0.015,,1,qlp-s58-faintsearch,QLP,00:49:53.05,60:56:45.74,-5.379,0.035,-7.593,0.035,2459904.85743,0.0041351,2.8577028,1.82e-05,2.264,0.631,2.930009,0.346994,2695.0,319.542,7.78724,0.648829,771.67,1468.0,11.0,594.839,9.627,6240.0,159.7,4.2,0.09,1.45,0.07,,,1.21,0.180008,"17,18,24,58",2023-05-03,2023-05-03,2023-07-08 12:03:07,found in faint-star QLP search,6298,1,False,False,False -285505979,6299.01,TIC 285505979.01,3,4,3,3,1,4,4,28.1,117.1,37.96,0,0,0,PC,PC,10.9907,0.006,,1,qlp-s58-faintsearch,QLP,01:52:00.72,50:55:15.38,55.387,0.086,-29.82,0.075,2459905.450417,0.0009126,4.7089027,5.4e-06,0.942,0.373,2.637196,0.964603,2426.0,888.038,6.86414,0.938079,18.4286,577.0,19.0,102.382,0.4965,4351.7,143.8,4.41,0.12,0.85,0.09,0.138,0.028,0.68,0.0843424,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6299,1,False,False,True -271747067,6300.01,,3,4,3,3,1,4,4,44.6,63.8,317.0,0,0,0,PC,PC,13.1987,0.029,,1,qlp-s58-faintsearch,QLP,23:38:37.88,60:16:02.08,2.302,0.031,-0.943,0.027,2459909.013557,0.0012359,2.8976822,5.5e-06,1.973,0.226,8.285299,0.535154,7602.0,492.774,20.1303,,731.624,1448.0,29.0,947.643,18.654,7006.0,129.0,4.01,,2.03,,,,1.54,,"17,18,24,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6300,1,False,False,False -326809267,6301.01,,3,4,3,3,1,4,4,8.0,27.9,90.81,0,0,0,PC,PC,12.8355,0.007,,1,qlp-s58-faintsearch,QLP,01:29:37.58,46:45:33.66,-4.885,0.06,1.09,0.052,2459899.627921,0.0042023,7.1436336,3.79e-05,5.668,0.626,5.666016,0.216884,5205.0,199.738,11.4874,0.805369,837.098,1498.0,25.0,1175.42,48.985,6604.0,125.8,4.01,0.1,1.92,0.12,,,1.38,0.232656,"17,18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6301,1,False,False,False -177712122,6302.01,,3,4,3,3,1,4,4,49.8,121.5,108.74,0,0,0,PC,PC,13.2402,0.008,,1,qlp-s58-faintsearch,QLP,03:09:06.51,37:04:33.91,2.035,0.072,-13.632,0.051,2459907.648297,0.0008155,2.8465714,3.9e-06,1.419,0.353,18.252881,1.996168,16671.0,1836.85,12.8225,,100.235,881.0,29.0,340.92,5.553,4802.0,122.0,4.5,,0.83,,,,0.78,,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6302,1,False,False,False -186810676,6303.01,,3,4,3,3,1,4,4,24.8,130.7,101.68,0,0,0,PC,PC,12.9386,0.007,,1,qlp-s58-faintsearch,QLP,03:07:07.36,40:08:49.83,32.941,0.069,-35.376,0.054,2459901.013491,0.0009429,9.4852479,2.07e-05,2.713,0.141,35.779427,1.63995,32417.0,1509.31,12.3024,0.468122,9.45481,488.0,36.0,152.219,1.1895,3848.0,157.0,4.63,0.01,0.63,0.02,,,0.60998,0.0202845,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6303,1,False,False,False -186989177,6304.01,,3,4,3,3,1,4,4,17.4,41.5,100.4,0,0,0,PC,PC,12.9385,0.007,,1,qlp-s58-faintsearch,QLP,02:17:35.42,36:50:13.4,9.236,0.047,-0.729,0.048,2459908.949571,0.0025291,3.645356,1.6e-05,4.787,0.426,5.379011,0.267166,4942.0,246.039,12.1687,0.792442,1002.22,1567.0,23.0,802.343,19.7375,5421.0,122.5,3.95,0.08,1.7,0.1,,,0.94,0.12308,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6304,1,False,False,False -320505267,6305.01,,3,4,3,3,1,4,4,8.7,36.0,57.23,0,0,0,PC,PC,12.8245,0.006,,1,qlp-s58-faintsearch,QLP,00:32:23.35,54:12:38.67,-7.502,0.025,-1.359,0.024,2459909.455446,0.0030237,6.6245939,3.83e-05,2.751,0.385,3.835071,0.38741,3526.0,356.754,8.74267,0.588676,142.438,962.0,11.0,623.493,9.35,5874.0,129.7,4.24,0.08,1.29,0.06,,,1.064,0.132198,"17,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6305,1,False,False,False -445370101,6306.01,,3,4,3,3,1,4,4,21.1,47.6,117.81,0,0,0,PC,PC,12.3693,0.01,,1,qlp-s58-faintsearch,QLP,00:57:34.02,56:58:41.46,8.351,0.034,-6.234,0.035,2459902.833152,0.002742,3.662222,1.26e-05,4.253,0.371,4.370186,0.217065,4017.0,199.904,13.3765,0.823117,1055.67,1588.0,29.0,771.08,18.2415,5826.0,135.7,3.82,0.08,2.08,0.11,,,1.05,0.136564,"17,18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6306,1,False,False,False -202869426,6307.01,,3,4,3,3,1,4,4,43.7,97.7,107.51,0,0,0,PC,PC,14.6617,0.008,,1,qlp-s58-faintsearch,QLP,02:25:48.13,42:09:16.48,-28.612,0.126,-15.741,0.105,2459909.820633,0.0031277,2.4589458,0.000452,1.553,0.241,34.632113,3.892406,31394.0,3578.62,12.6341,0.784622,46.8448,728.0,15.0,323.375,7.76,3810.0,157.0,4.63,0.01,0.62,0.02,,,0.605207,0.0215921,58,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6307,1,False,False,False -301414902,6308.01,,3,4,3,3,1,4,4,55.4,119.5,82.04,0,0,0,PC,PC,13.3683,0.006,,1,qlp-s58-faintsearch,QLP,02:24:56.6,52:24:56.86,0.625,0.068,1.917,0.072,2459908.862323,0.0007898,1.7555108,2.1e-06,1.355,0.145,14.66373,0.907921,13415.0,835.877,10.7893,,117.332,916.0,30.0,263.166,2.2,4249.0,122.0,4.48,,0.78,,,,0.664,,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6308,1,False,False,False -412887082,6309.01,,3,4,3,3,1,4,4,6.5,35.7,106.29,0,0,0,PC,PC,12.6134,0.033,,1,qlp-s58-faintsearch,QLP,21:58:48.19,63:03:18.4,12.442,0.03,5.717,0.027,2459901.581317,0.0031809,28.8005547,0.0002269,3.773,0.739,7.946196,0.68026,7292.0,626.346,12.6164,0.893386,17.1246,566.0,18.0,604.936,6.339,6051.0,248.9,4.18,0.09,1.44,0.07,,,1.13,0.170336,"16,17,24,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6309,1,False,False,False -353893493,6310.01,TIC 353893493.01,2,4,2,2,1,4,4,7.3,51.3,10.9,0,0,0,PC,PC,11.8443,0.006,,1,qlp-s58-faintsearch,QLP,02:31:02.67,25:24:47.85,78.807,0.07,-22.207,0.064,2459906.481901,0.0024157,3.3528597,1.5e-05,2.08,0.655,1.914755,0.163248,1762.0,150.346,3.27543,0.352053,81.3622,836.0,21.0,96.6459,0.37705,3896.8,105.0,4.51,0.11,0.71,0.07,-0.368,0.041,0.6,0.079382,"18,42,43,44,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6310,1,False,False,False -52260140,6311.01,,3,4,3,3,1,4,4,13.8,50.7,72.34,0,0,0,PC,PC,12.9697,0.006,,1,qlp-s58-faintsearch,QLP,01:04:11.72,60:18:09.48,5.92,0.024,0.991,0.028,2459899.571654,0.0028227,6.2808216,2.23e-05,3.366,0.359,8.487718,0.502194,7787.0,462.431,10.0476,0.654676,186.513,1029.0,20.0,502.268,5.287,5602.0,227.7,4.31,0.08,1.15,0.06,,,0.991,0.133045,"18,24,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6311,1,False,False,False -470724594,6312.01,,3,4,3,3,1,4,4,12.6,21.8,317.0,0,0,0,PC,PC,12.1827,0.132,,1,qlp-s58-faintsearch,QLP,23:50:26.96,65:48:55.78,-3.05,0.039,-0.828,0.038,2459907.258256,0.0019768,16.8498547,5.93e-05,3.778,0.431,4.27862,0.26453,3933.0,243.611,15.5178,1.45951,128.166,937.0,25.0,760.641,14.115,7823.0,862.0,4.05,0.15,2.14,0.19,,,1.86,0.448918,"17,18,24,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6312,1,False,False,False -192487723,6313.01,,3,4,3,3,1,4,4,9.0,13.0,317.0,0,0,0,PC,PC,13.4257,0.01,,1,qlp-s58-faintsearch,QLP,03:06:01.03,47:27:41,-1.412,0.058,0.382,0.051,2459906.770206,0.0081004,4.9570983,6.18e-05,6.687,0.986,5.289542,0.376602,4860.0,346.803,15.9349,,5671.62,2417.0,13.0,2579.15,186.045,8120.6,35.0,3.9,,2.62,,0.369,0.033,1.98,,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6313,1,False,False,False -272218608,6314.01,,3,4,3,3,1,4,4,34.9,48.4,317.0,0,0,0,PC,PC,13.3085,0.017,,1,qlp-s58-faintsearch,QLP,23:42:43.77,62:28:06.1,1.353,0.032,-3.152,0.027,2459904.680527,0.0018684,3.1777383,8.5e-06,3.922,0.227,9.54638,0.327804,8754.0,301.873,19.2706,,2620.94,1993.0,35.0,980.327,17.578,7233.0,122.0,4.02,,2.06,,,,1.62,,"17,18,24,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6314,1,False,False,False -354742440,6315.01,,3,4,3,3,1,4,4,17.8,34.2,124.41,0,0,0,PC,PC,12.0193,0.011,,1,qlp-s58-faintsearch,QLP,00:24:44.85,58:28:06.77,2.871,0.043,-1.463,0.037,2459906.723061,0.0027112,4.4532909,1.57e-05,6.572,0.53,3.116188,0.085219,2866.0,78.4864,13.8211,0.821823,1510.03,1736.0,37.0,751.084,16.8385,5613.0,138.9,3.49,0.08,2.97,0.16,,,0.99,0.125314,"17,18,24,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search; slight depth aperture correlation,6315,1,False,False,False -444753130,6316.01,,3,4,3,3,1,4,4,38.9,59.0,317.0,0,0,0,PC,PC,12.6927,0.016,,1,qlp-s58-faintsearch,QLP,01:40:42.5,61:00:34.99,-1.24,0.018,-0.377,0.024,2459905.111048,0.0015438,3.0057526,6.8e-06,3.594,0.208,13.293372,0.464825,12169.0,428.028,17.9698,0.797688,2928.62,2049.0,44.0,943.154,17.0065,7581.0,165.8,4.2,0.08,1.74,0.06,,,1.76,0.287434,"18,25,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6316,1,False,False,False -85281192,6317.01,,3,4,3,3,1,4,4,12.8,69.8,39.88,0,0,0,PC,PC,14.1332,0.008,,1,qlp-s58-faintsearch,QLP,01:44:46.37,34:14:38.72,0.299,0.082,-11.814,0.074,2459903.350981,0.0023241,4.244335,0.0010835,1.969,0.226,20.147035,1.790954,18385.0,1648.17,7.13409,0.404307,19.463,585.0,13.0,170.038,1.207,3518.0,157.0,4.74,0.01,0.5,0.01,,,0.493325,0.0204082,58,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6317,1,False,False,False -292852583,6318.01,,3,4,3,3,1,4,4,24.0,119.1,41.77,0,0,0,PC,PC,10.8357,0.007,,1,qlp-s58-faintsearch,QLP,02:17:04.87,44:35:13.16,-1.588,0.102,-24.018,0.078,2459903.846019,0.0016326,5.8310296,3.09e-05,0.682,0.277,2.299852,1.55067,2116.0,1427.2,7.23053,1.13833,10.4888,501.0,9.0,184.682,2.1205,5617.5,105.8,4.48,0.08,0.95,0.04,0.154,0.017,0.994,0.12798,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6318,1,False,False,False -12980264,6319.01,,3,4,3,3,1,4,4,52.2,55.6,317.0,0,0,0,PC,PC,11.5706,0.032,,1,qlp-s58-faintsearch,QLP,02:18:00.24,62:45:48.25,-0.757,0.029,-6.993,0.048,2459906.8349,0.0008794,3.2964006,4.6e-06,3.959,0.124,6.532947,0.183547,5999.0,169.039,16.9987,0.921171,1080.06,1597.0,57.0,517.51,7.8065,5883.0,239.7,3.83,0.09,2.09,0.11,,,1.07,0.145792,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6319,1,False,False,False -196474344,6320.01,,3,4,3,3,1,4,4,41.9,59.3,317.0,0,0,0,PC,PC,13.022,0.006,,1,qlp-s58-faintsearch,QLP,01:02:06.64,46:23:14.02,5.407,0.047,0.58,0.044,2459903.193487,0.0007454,3.6360128,7.7e-06,4.088,0.121,16.083201,0.409812,14704.0,377.38,18.9197,,1204.47,1641.0,68.0,911.335,37.0815,6358.0,122.0,4.19,,1.49,,,,1.26,,"17,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6320,1,False,False,False -301991463,6321.01,,3,4,3,3,1,4,4,33.1,81.1,101.59,0,0,0,PC,PC,13.0057,0.006,,1,qlp-s58-faintsearch,QLP,02:42:09.46,53:33:20.89,26.578,0.057,-14.846,0.047,2459909.227937,0.0017154,2.9086778,7.3e-06,2.887,0.32,11.266306,0.569794,10323.0,524.662,12.2888,,536.747,1340.0,30.0,472.785,5.835,5401.0,122.0,4.27,,1.18,,,,0.939,,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6321,1,False,False,False -270132709,6322.01,,3,4,3,3,1,4,4,16.2,46.9,98.01,0,0,0,PC,PC,12.8545,0.015,,1,qlp-s58-faintsearch,QLP,23:25:11.41,60:05:40.53,0.752,0.025,-3.823,0.022,2459906.805369,0.0023824,4.2807899,2.14e-05,3.9,0.38,6.47178,0.300936,5943.0,277.134,11.9706,0.672931,865.407,1511.0,25.0,811.05,10.6095,6274.0,155.6,4.09,0.09,1.65,0.08,,,1.22,0.192099,"17,24,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6322,1,False,False,False -63586213,6323.01,,3,4,3,3,1,4,4,23.6,58.5,126.39,0,0,0,PC,PC,12.6167,0.009,,1,qlp-s58-faintsearch,QLP,02:10:13.2,32:59:00.38,-1.368,0.056,-7.902,0.048,2459908.696077,0.0017188,4.071096,9.5e-06,2.988,0.254,6.394235,0.320028,5872.0,294.713,13.9361,0.802509,456.955,1288.0,26.0,773.844,16.9105,6008.0,127.8,4.03,0.08,1.68,0.09,,,1.11,0.137325,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6323,1,False,False,False -372207328,6324.01,TIC 372207328.01,2,4,2,2,1,4,4,18.9,33.6,1.13,0,0,0,PC,PC,10.97,0.007,,1,qlp-s58-faintsearch,QLP,22:03:22.69,67:29:55.24,531.463,0.057,-296.205,0.054,2459909.915493,0.0006825,0.2792211,2e-07,0.409,0.138,0.846118,0.132902,779.0,122.4,1.05678,0.0691901,284.211,1143.0,23.0,20.5488,0.01515,3358.0,157.0,4.93,0.01,0.3,0.01,,,0.272208,0.0201984,"16,17,18,24,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6324,1,False,False,True -200775844,6325.01,,3,4,3,3,1,4,4,22.1,120.3,37.36,0,0,0,PC,PC,13.3415,0.006,,1,qlp-s58-faintsearch,QLP,03:34:41.56,37:41:40.88,1.996,0.068,-12.726,0.045,2459908.419586,0.0024342,3.7307609,0.0006146,1.587,0.223,13.819974,1.325592,12648.0,1220.17,6.78569,,87.4596,851.0,17.0,310.892,3.236,5273.1,42.7,4.96,,0.52,,0.34856,0.0408,0.904,,58,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6325,1,False,False,False -307201632,6326.01,,3,4,3,3,1,4,4,45.7,55.7,317.0,1,0,0,PC,PC,12.1684,0.007,,1,qlp-s58-faintsearch,QLP,00:59:54.45,49:02:03.03,-6.778,0.069,-1.445,0.067,2459907.561815,0.0004839,2.3556749,3.1e-06,3.351,0.078,10.228982,0.125261,9377.0,115.363,16.7502,1.1086,2508.24,1971.0,98.0,796.313,34.751,6708.0,132.4,4.1,0.1,1.75,0.12,,,1.42,0.250928,"17,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6326,1,False,False,False -196973090,6327.01,,3,4,3,3,1,4,4,12.3,64.3,68.53,0,0,0,PC,PC,12.6978,0.006,,1,qlp-s58-faintsearch,QLP,01:22:45.59,43:59:40.03,-14.135,0.075,-8.351,0.125,2459900.57604,0.0020424,10.4612769,2.69e-05,3.208,0.311,10.076647,0.600395,9238.0,552.831,9.72119,0.584389,43.6657,716.0,25.0,345.666,7.2665,5208.2,104.9,4.5,0.08,0.88,0.05,0.294731,0.0423252,0.886,0.108205,"17,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6327,1,False,False,False -249884767,6328.01,,3,4,3,3,1,4,4,12.4,60.2,94.84,0,0,0,PC,PC,11.0888,0.007,,1,qlp-s58-faintsearch,QLP,02:33:35.98,49:10:10.06,-3.278,0.103,1.287,0.093,2459886.611066,0.002251,16.672227,0.0035659,2.703,0.325,4.189242,0.333177,3851.0,306.82,11.748,0.678956,43.5589,715.0,19.0,478.34,11.1995,7025.0,121.0,4.18,0.09,1.68,0.07,,,1.55,0.261365,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6328,1,False,False,False -283845022,6329.01,,3,4,3,3,1,4,4,13.2,46.9,124.25,0,0,0,PC,PC,12.6447,0.017,,1,qlp-s58-faintsearch,QLP,00:33:56.35,60:05:03.59,-5.556,0.086,2.383,0.083,2459905.91407,0.003635,15.2334037,5.67e-05,1.947,0.407,3.941855,0.7302,3624.0,672.313,13.7686,1.09333,12.2874,521.0,10.0,585.094,21.6855,5675.0,161.2,4.1,0.09,1.48,0.09,,,1.01,0.128486,"17,18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6329,1,False,False,False -308120029,6330.01,,3,4,3,3,1,4,4,19.4,122.7,76.54,0,0,0,PC,PC,13.7853,0.007,,1,qlp-s58-faintsearch,QLP,01:28:40.32,53:41:09.88,-35.668,0.164,-45.075,0.073,2459901.36046,0.0009035,6.8498533,0.0007501,1.525,0.138,36.583156,2.911186,33133.0,2677.71,10.4676,0.473346,3.94674,392.0,22.0,139.042,1.1375,3522.0,157.0,4.76,0.01,0.48,0.01,,,0.473309,0.0205459,58,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6330,1,False,False,False -415875608,6331.01,,3,4,3,3,1,4,4,8.5,36.9,48.28,0,0,0,PC,PC,13.228,0.007,,1,qlp-s58-faintsearch,QLP,01:51:33.59,43:39:59.61,10.152,0.048,-1.372,0.049,2459905.5747,0.0039852,5.4454541,2.93e-05,3.41,0.537,6.240253,0.461464,5731.0,424.934,7.92255,,289.299,1148.0,18.0,617.88,14.171,5684.0,122.0,4.4,,1.05,,,,1.01,,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6331,1,False,False,False -101133275,6332.01,,3,4,3,3,1,4,4,32.0,32.7,317.0,0,0,0,PC,PC,13.3773,0.008,,1,qlp-s58-faintsearch,QLP,03:39:54.51,34:27:34.26,-0.739,0.05,-2.574,0.038,2459906.799332,0.002122,1.6630135,5.9e-06,3.133,0.267,6.494717,0.415566,5964.0,382.677,16.7474,,4598.31,2294.0,18.0,1274.18,47.155,6690.3,38.1,3.97,,2.04,,-0.104,0.036,1.42,,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6332,1,False,False,False -5724439,6333.01,,2,4,2,2,1,4,4,4.3,37.0,9.42,0,0,0,PC,PC,11.5517,0.006,,1,qlp-s58-faintsearch,QLP,02:13:23.11,26:32:40.34,-2.772,0.076,-8.515,0.065,2459909.673379,0.0031873,2.7205913,1.61e-05,2.321,0.533,0.983036,0.10303,905.0,94.8895,3.02214,0.2248,668.663,1416.0,11.0,263.454,3.004,5784.6,102.9,4.49,0.07,0.96,0.04,-0.113,0.029,1.038,0.125005,"18,42,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6333,1,False,False,False -63718617,6334.01,,3,4,3,3,1,4,4,42.3,49.9,317.0,0,0,0,PC,PC,11.4808,0.008,,1,qlp-s58-faintsearch,QLP,02:15:28.82,35:21:26.05,5.202,0.103,-4.328,0.109,2459905.971048,0.0024784,3.8363055,1.37e-05,7.175,0.495,4.200141,0.284602,3861.0,262.094,18.8534,1.34255,9673.97,2762.0,50.0,729.418,30.893,5982.0,127.9,3.65,0.09,2.6,0.17,,,1.1,0.13544,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6334,1,False,False,False -407156755,6335.01,,3,4,3,3,1,4,4,12.4,30.8,88.06,0,0,0,PC,PC,12.0066,0.042,,1,qlp-s58-faintsearch,QLP,00:23:32.87,67:46:32.6,2.302,0.042,1.844,0.039,2459900.666047,0.0056952,4.7924038,3.24e-05,6.012,0.852,2.785226,0.115683,2562.0,106.542,11.263,0.684066,1688.16,1785.0,29.0,680.868,12.689,6176.0,292.2,3.63,0.09,2.75,0.13,,,1.18,0.200189,"17,18,24,25,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6335,1,False,False,False -327126871,6336.01,,3,4,3,3,1,4,4,5.1,28.6,110.81,0,0,0,PC,PC,11.5821,0.011,,1,qlp-s58-faintsearch,QLP,00:13:36.95,56:11:04.76,-2.624,0.048,-2.542,0.042,2459893.689503,0.0040641,39.810528,0.000317,3.576,1.172,3.373188,0.340301,3102.0,313.38,12.8908,0.959968,43.1032,713.0,11.0,1002.36,32.535,8796.0,170.3,4.04,0.07,2.34,0.09,,,2.21,0.303265,"17,24,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search; several fainter stars (delta Tmag~6) nearby,6336,1,False,False,False -381591826,6337.01,,3,4,3,3,1,4,4,16.9,75.2,69.46,0,0,0,PC,PC,13.4209,0.01,,1,qlp-s58-faintsearch,QLP,02:02:02.19,37:53:29.34,16.503,0.059,-6.957,0.055,2459909.763948,0.0018752,6.8793455,2.1e-05,1.299,0.53,18.042011,5.200713,16480.0,4778.58,9.84834,1.41307,7.99212,468.0,13.0,228.091,1.5625,3993.0,157.0,4.58,0.01,0.69,0.02,,,0.653579,0.0203723,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6337,1,False,False,False -186715217,6338.01,,3,4,3,3,1,4,4,58.3,120.9,82.65,0,0,0,PC,PC,14.2955,0.007,,1,qlp-s58-faintsearch,QLP,03:03:50.32,40:19:28.4,49.899,0.108,-0.419,0.094,2459909.930562,0.0016813,1.4491171,0.0001644,1.051,0.143,25.690412,2.766928,23384.0,2545.19,10.794,0.627172,48.8379,736.0,18.0,249.517,5.3995,3581.0,157.0,4.65,0.01,0.6,0.02,,,0.590513,0.0213418,58,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6338,1,False,False,False -332496784,6339.01,,3,4,3,3,1,4,4,9.7,47.7,21.74,0,0,0,PC,PC,10.8179,0.006,,1,qlp-s58-faintsearch,QLP,01:19:09.78,59:05:59.86,-0.485,0.042,-20.615,0.048,2459909.082915,0.0037097,2.5938771,1.75e-05,2.706,0.58,1.058022,0.106079,974.0,97.6977,4.93408,0.376687,1208.93,1642.0,14.0,304.522,3.1585,6110.0,224.9,4.12,0.09,1.55,0.08,,,1.151,0.172753,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6339,1,False,False,False -376765646,6340.01,,3,4,3,3,1,4,4,18.2,21.7,317.0,0,0,0,PC,PC,12.2164,0.035,,1,qlp-s58-faintsearch,QLP,22:43:20.88,70:20:12.42,-4.338,0.042,-7.254,0.034,2459904.952825,0.0020872,8.2686298,2.4e-05,4.906,0.294,3.970187,0.160384,3650.0,147.708,15.9425,0.850466,359.275,1212.0,35.0,785.17,12.8515,6275.0,257.4,3.77,0.1,2.38,0.12,,,1.22,0.208892,"18,24,25,52,57,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6340,1,False,False,False -285328782,6341.01,,3,4,3,3,1,4,4,52.8,78.7,317.0,0,0,0,PC,PC,13.2013,0.015,,1,qlp-s58-faintsearch,QLP,00:50:34.6,61:02:46.43,-0.461,0.026,0.869,0.027,2459907.877418,0.0010886,2.7182588,3.6e-06,1.682,0.168,13.473642,0.819248,12333.0,754.271,20.77,,402.801,1248.0,36.0,980.978,21.222,6433.0,122.0,4.15,,1.59,,,,1.3,,"17,18,24,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6341,1,False,False,False -184739529,6342.01,,3,4,3,3,1,4,4,35.8,190.9,124.05,0,0,0,PC,PC,12.7058,0.008,,1,qlp-s58-faintsearch,QLP,02:13:23.75,36:31:19.18,181.067,0.054,-21.199,0.069,2459895.572362,0.0003651,9.3568116,6.4e-06,1.117,0.11,31.586348,2.386289,28673.0,2195.44,13.6687,0.757348,8.92217,481.0,52.0,299.126,2.7675,5866.0,128.2,4.89,0.08,0.61,0.03,,,1.06,0.132413,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6342,1,False,False,False -256349966,6343.01,TIC 256349966.01,5,5,5,5,5,5,5,7.2,33.4,74.01,0,7,0,PC,FP,12.0913,0.028,,1,qlp-s58-faintsearch,QLP,21:30:52.18,68:29:43.06,-4.844,0.047,-4.931,0.045,2459906.003673,0.003002,14.5877856,4.9e-05,3.517,0.735,3.669468,0.304178,3374.0,280.119,10.1617,0.651811,82.7417,840.0,28.0,655.707,11.3195,6544.0,212.1,4.13,0.1,1.66,0.08,,,1.35,0.234901,"17,18,24,25,57,58",2023-05-03,2023-05-03,2023-06-18 12:02:56,found in faint-star QLP search,6343,1,False,False,False -327093061,6344.01,,3,4,3,3,1,4,4,31.7,33.6,317.0,0,0,0,PC,PC,13.0366,0.007,,1,qlp-s58-faintsearch,QLP,01:35:06.03,47:45:03.62,-4.67,0.046,-12.754,0.045,2459907.818792,0.0015717,3.5297965,8.1e-06,3.283,0.228,12.141016,0.504285,11120.0,464.356,15.5125,,625.677,1393.0,36.0,789.069,21.03,5846.0,122.0,4.12,,1.48,,,,1.06,,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6344,1,False,False,False -241062925,6345.01,,3,4,3,3,1,4,4,5.8,39.2,18.85,0,0,0,PC,PC,11.6424,0.006,,1,qlp-s58-faintsearch,QLP,01:27:38.04,51:42:39.44,13.743,0.07,-23.909,0.069,2459905.064219,0.0033968,6.2378654,2.67e-05,3.174,0.464,1.958262,0.156286,1802.0,143.934,4.55893,0.313457,149.586,974.0,16.0,244.686,2.6215,5301.0,168.9,4.41,0.08,0.99,0.05,,,0.912,0.119701,"18,58",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6345,1,False,False,False -260040728,6346.01,,3,4,3,3,1,4,4,27.7,33.2,317.0,0,0,0,PC,PC,13.4352,0.006,,1,qlp-s59-faintsearch,QLP,04:11:08.59,56:11:41.84,-3.276,0.034,-1.188,0.03,2459933.411238,0.0020078,6.3111727,2.23e-05,3.039,0.277,15.85292,1.055972,14495.0,972.113,14.8439,,130.71,941.0,19.0,508.418,6.848,5531.0,122.0,4.31,,1.14,,,,0.973,,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6346,1,False,False,False -467690903,6347.01,,3,4,3,3,1,4,4,38.6,99.4,128.98,0,0,0,PC,PC,11.2367,0.008,,1,qlp-s59-faintsearch,QLP,04:04:40.72,34:11:10.01,-3.943,0.094,5.284,0.043,2459935.419244,0.0017089,3.9332583,0.0004889,4.438,0.221,5.488129,0.181222,5042.0,166.898,14.1242,0.672923,1666.08,1779.0,43.0,547.43,11.8205,6699.9,113.2,4.04,0.09,1.89,0.08,0.02,0.01,1.42,0.243362,59,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6347,1,False,False,False -321258259,6348.01,,3,4,3,3,1,4,4,31.8,33.8,317.0,0,0,0,PC,PC,13.3256,0.016,,1,qlp-s59-faintsearch,QLP,05:29:11.52,57:39:22.78,2.392,0.038,-3.295,0.037,2459933.238043,0.0021107,3.6894234,1.28e-05,2.085,0.391,5.970564,0.865853,5484.0,797.162,16.5011,,246.061,1103.0,12.0,720.125,16.3905,5776.0,122.0,4.03,,1.63,,,,1.04,,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6348,1,False,False,False -470450936,6349.01,,3,4,3,3,1,4,4,10.3,44.0,27.74,0,0,0,PC,PC,12.2124,0.006,,1,qlp-s59-faintsearch,QLP,04:24:48.58,53:07:41.56,-3.829,0.054,-31.451,0.038,2459931.665595,0.0031806,2.7934699,1.32e-05,2.8,0.437,2.694882,0.190064,2479.0,175.04,5.70537,0.403159,746.786,1456.0,15.0,350.759,4.0735,5635.0,186.0,4.27,0.08,1.21,0.06,,,0.999,0.130448,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6349,1,False,False,False -266609407,6350.01,,3,4,3,3,1,4,4,29.5,82.1,90.69,0,0,0,PC,PC,13.3199,0.03,,1,qlp-s59-faintsearch,QLP,04:05:38.67,50:03:12.22,-2.474,0.053,-5.489,0.038,2459933.220302,0.0020144,2.4766677,8.4e-06,2.457,0.486,10.612655,0.792691,9727.0,729.829,11.4749,,1029.38,1578.0,22.0,602.08,10.2945,6197.6,178.0,4.4,,1.14,,-0.061,0.168,1.19,,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6350,1,False,False,False -392674549,6351.01,,3,4,3,3,1,4,4,18.0,42.6,124.79,0,0,0,PC,PC,12.982,0.071,,1,qlp-s59-faintsearch,QLP,03:45:38.67,63:57:53.88,7.314,0.029,-9.645,0.035,2459926.653788,0.0029144,6.7510278,2.83e-05,4.011,0.393,6.916408,0.382335,6350.0,352.082,13.8093,,149.336,973.0,18.0,575.503,6.573,5024.0,122.0,,,1.67,,,,,,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6351,1,False,False,False -459102737,6352.01,,3,4,3,3,1,4,4,13.2,80.5,33.59,0,0,0,PC,PC,11.0529,0.006,,1,qlp-s59-faintsearch,QLP,04:05:50.59,64:15:15.49,11.942,0.042,49.0,0.043,2459936.48409,0.0012453,7.4562671,1.28e-05,1.682,0.499,3.377545,0.404802,3106.0,372.767,6.40887,0.444653,55.5163,760.0,26.0,213.45,1.3735,5822.0,178.5,4.51,0.08,0.95,0.05,,,1.048,0.147468,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6352,1,False,False,False -259810421,6353.01,,3,4,3,3,1,4,4,31.1,73.1,106.12,0,0,0,PC,PC,12.5755,0.015,,1,qlp-s59-faintsearch,QLP,04:12:46.54,46:45:41.27,10.857,0.067,-11.669,0.044,2459935.210603,0.001739,2.5048108,7.3e-06,3.434,0.274,6.747056,0.297689,6195.0,274.144,12.5335,0.976046,1701.78,1789.0,30.0,615.476,26.024,6080.0,120.7,4.07,0.1,1.62,0.12,0.153,0.112,1.14,0.160506,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6353,1,False,False,False -355418639,6354.01,,3,4,3,3,1,4,4,10.2,51.7,93.26,0,0,0,PC,PC,12.0763,0.006,,1,qlp-s59-faintsearch,QLP,05:12:10.42,53:42:24.4,6.518,0.072,-10.942,0.062,2459907.478398,0.0031316,18.7541398,7.64e-05,3.925,0.532,6.903296,0.511086,6338.0,470.617,11.641,1.06023,59.4985,773.0,20.0,512.561,9.5145,6681.2,104.7,4.31,0.11,1.37,0.11,-0.091,0.043,1.414,0.232524,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6354,1,False,False,False -98613492,6355.01,,3,4,3,3,1,4,4,21.7,80.9,28.94,0,0,0,PC,PC,11.8275,0.006,,1,qlp-s59-faintsearch,QLP,05:18:53.79,47:32:50.03,-1.017,0.073,-19.097,0.067,2459934.888565,0.0011195,1.0617107,1.9e-06,1.067,0.355,2.575161,0.293566,2369.0,270.348,5.85456,0.446364,916.847,1533.0,22.0,317.292,4.4925,5589.0,150.0,4.38,0.08,1.06,0.06,,,0.987,0.128232,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6355,1,False,False,False -9136777,6356.01,,3,4,3,3,1,4,4,78.8,99.7,317.0,0,0,0,PC,PC,11.8848,0.006,,1,qlp-s59-faintsearch,QLP,04:30:25.2,56:23:40.07,4.196,0.06,-18.435,0.051,2459930.555384,0.0003991,3.7799201,2.1e-06,3.493,0.059,18.129224,0.278056,16559.0,256.066,16.2502,1.75456,674.743,1419.0,128.0,374.605,6.7325,6121.6,97.0,4.38,0.12,1.14,0.12,-0.113,0.034,1.156,0.155818,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6356,1,False,False,False -122881136,6357.01,,3,4,3,3,1,4,4,17.4,62.8,82.07,0,0,0,PC,PC,13.2012,0.011,,1,qlp-s59-faintsearch,QLP,05:10:21.34,39:40:25.16,-0.991,0.044,-0.604,0.031,2459933.829498,0.0029522,5.1941869,2.4e-05,1.581,0.316,6.484887,1.216934,5955.0,1120.21,10.8037,,85.2496,846.0,9.0,621.191,9.703,6085.6,129.7,4.43,,1.08,,-0.045,0.12,1.14,,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6357,1,False,False,False -259708416,6358.01,,3,4,3,3,1,4,4,17.7,46.4,119.84,0,0,0,PC,PC,12.566,0.011,,1,qlp-s59-faintsearch,QLP,04:11:12.2,43:36:03.23,8.708,0.048,-4.996,0.035,2459930.30884,0.004974,5.3802465,2.8e-05,3.538,0.513,4.165263,0.345257,3829.0,317.943,13.5242,0.973538,538.751,1342.0,15.0,858.675,18.2045,6476.4,150.6,3.97,0.1,1.98,0.12,0.165,0.035,1.32,0.209644,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6358,1,False,False,False -267617257,6359.01,,3,4,3,3,1,4,4,16.2,56.8,86.28,0,0,0,PC,PC,13.0074,0.025,,1,qlp-s59-faintsearch,QLP,04:12:39.62,50:09:32.22,0.614,0.069,-2.8,0.045,2459934.924254,0.0031517,2.4398136,1.18e-05,3.751,0.499,4.747431,0.301441,4363.0,277.599,11.128,,7439.71,2587.0,18.0,1055.41,36.91,8184.6,121.0,4.29,,1.67,,0.341,0.112,2.0,,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6359,1,False,False,False -458987621,6360.01,,3,4,3,3,1,4,4,34.5,119.5,59.61,0,0,0,PC,PC,11.6033,0.029,,1,qlp-s59-faintsearch,QLP,03:57:28.52,64:19:16.47,-6.903,0.046,2.102,0.051,2459936.550769,0.0007975,1.9765848,2.4e-06,1.347,0.146,3.730477,0.299004,3430.0,275.355,8.95604,0.487971,674.183,1419.0,31.0,346.061,4.107,6799.0,227.7,4.41,0.09,1.25,0.05,,,1.46,0.258621,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6360,1,False,False,False -450308346,6361.01,,3,4,3,3,1,4,4,27.8,94.7,104.22,0,0,0,PC,PC,13.4852,0.006,,1,qlp-s59-faintsearch,QLP,04:45:48.82,57:16:19.33,16.029,0.04,3.246,0.035,2459926.607636,0.0016385,5.9419732,0.0014453,2.361,0.232,23.935294,1.457319,21804.0,1341.34,12.3895,,67.643,798.0,22.0,364.939,3.4755,5206.0,122.0,4.56,,0.81,,,,0.885,,59,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6361,1,False,False,False -148514918,6362.01,,3,4,3,3,1,4,4,12.5,46.3,84.72,0,0,0,PC,PC,13.3133,0.008,,1,qlp-s59-faintsearch,QLP,05:11:02.84,62:40:40.37,-4.894,0.03,-1.381,0.031,2459932.637758,0.0028824,6.0602101,3.17e-05,3.036,0.375,9.724933,0.692982,8917.0,638.056,11.0384,,252.333,1110.0,17.0,755.957,13.6935,6252.0,122.0,4.35,,1.22,,,,1.21,,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6362,1,False,False,False -311284709,6363.01,,3,4,3,3,1,4,4,32.2,46.7,317.0,0,0,0,PC,PC,11.6603,0.007,,1,qlp-s59-faintsearch,QLP,05:44:37.22,50:22:39.68,2.351,0.061,-6.771,0.056,2459929.14978,0.0013048,6.583694,1.39e-05,4.635,0.274,5.335367,0.192851,4902.0,177.607,19.1169,1.12787,611.047,1385.0,41.0,809.782,31.8375,6600.9,105.2,3.8,0.09,2.45,0.14,-0.180875,0.0112476,1.38,0.22674,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6363,1,False,False,False -407517154,6364.01,,3,4,3,3,1,4,4,5.9,53.8,87.47,0,0,0,PC,PC,13.2114,0.009,,1,qlp-s59-faintsearch,QLP,00:10:55.7,78:53:59.02,-9.927,0.032,2.806,0.032,2459899.625001,0.0018864,25.8866192,6.6e-05,3.737,0.713,15.214119,1.382131,13915.0,1272.18,11.2641,,14.5766,544.0,30.0,390.021,2.553,5326.0,122.0,4.6,,0.8,,,,0.92,,"18,19,24,25,52,58,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6364,1,False,False,False -272994016,6365.01,,3,4,3,3,1,4,4,28.3,59.3,123.66,0,0,0,PC,PC,13.4756,0.015,,1,qlp-s59-faintsearch,QLP,04:30:18.24,48:19:12.74,5.081,0.049,1.32,0.027,2459934.072463,0.0033021,3.0496565,1.58e-05,3.455,0.46,7.36559,0.628783,6761.0,578.963,13.7764,,817.877,1489.0,15.0,617.476,11.8255,5568.0,122.0,4.08,,1.5,,,,0.98,,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6365,1,False,False,False -279851358,6366.01,,1,4,1,3,1,4,4,,,317.0,0,0,0,PC,PC,10.9113,0.006,,1,qlp-s59-faintsearch,QLP,03:33:10.75,61:20:34.54,-3.479,0.048,2.465,0.054,2459932.031487,0.0012532,18.893475,0.000128,3.457,0.588,6.809331,2.462308,6252.0,2265.3,,,2296.08,,36.0,612.388,13.7825,13896.0,,,,,,,,,,"19,59",2023-05-03,2023-05-03,2023-05-30 00:00:00,found in faint-star QLP search; no stellar radius,6366,1,False,False,False -259502942,6367.01,,3,5,5,3,1,4,4,20.4,69.2,41.72,0,0,0,PC,PC,14.4594,0.008,,1,qlp-s59-faintsearch,QLP,05:02:14.29,48:44:30.68,-12.964,0.105,14.626,0.083,2459933.713713,0.0041053,2.1653281,0.000786,2.732,0.366,20.547506,1.653543,18747.0,1521.81,7.31275,0.428015,146.971,970.0,13.0,216.77,2.611,3510.0,157.0,4.71,0.01,0.54,0.02,,,0.532327,0.0208833,59,2023-05-03,2023-05-03,2023-07-08 00:00:00,found in faint-star QLP search,6367,1,False,False,False -274002141,6368.01,,3,4,3,3,1,4,4,108.5,327.1,87.93,0,0,0,PC,PC,14.5853,0.008,,1,qlp-s59-faintsearch,QLP,05:47:54.07,41:56:32.38,20.81,0.137,-126.002,0.115,2459935.162255,2.4e-05,1.6197991,1e-06,0.95,0.002,34.297007,0.822078,31095.0,756.875,11.4253,0.367142,31.7825,661.0,12.0,100.741,1.1189,3192.0,157.0,4.92,,0.31,0.01,,,0.282616,0.0205617,59,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6368,1,False,False,False -274472658,6369.01,,3,4,3,3,1,4,4,6.9,35.2,44.11,0,0,0,PC,PC,11.4974,0.006,,1,qlp-s59-faintsearch,QLP,04:37:00.13,49:36:53.5,8.466,0.054,-12.59,0.036,2459934.394703,0.006208,13.2329062,0.0001712,6.245,1.145,3.263193,0.175485,3001.0,161.615,7.5049,1.62974,295.457,1155.0,21.0,445.311,7.918,6461.3,121.6,4.11,0.19,1.67,0.35,0.072,0.067,1.313,0.199147,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6369,1,False,False,False -251705938,6370.01,,3,4,3,3,1,4,4,50.1,50.3,317.0,0,0,0,PC,PC,12.0907,0.018,,1,qlp-s59-faintsearch,QLP,03:06:10.12,57:04:32.41,-8.094,0.063,-11.329,0.062,2459934.386386,0.0006858,2.9124991,3.4e-06,4.175,0.117,8.001976,0.156289,7343.0,143.937,16.4233,0.790085,1711.93,1792.0,82.0,534.894,9.903,6051.0,164.5,3.94,0.08,1.89,0.09,,,1.13,0.162102,"18,58,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6370,1,False,False,False -279725262,6371.01,,3,4,3,3,1,4,4,59.4,129.0,117.89,0,0,0,PC,PC,12.0402,0.04,,1,qlp-s59-faintsearch,QLP,03:30:27.3,61:38:08.78,3.829,0.043,-8.597,0.043,2459934.367358,0.0004702,1.8597817,1.5e-06,1.156,0.067,6.074282,0.361703,5579.0,333.085,13.3278,0.730392,260.966,1119.0,39.0,431.523,5.7985,5751.0,234.2,4.19,0.09,1.35,0.07,,,1.03,0.135808,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6371,1,False,False,False -115899725,6372.01,,2,4,2,2,1,4,4,3.3,42.1,7.09,0,0,0,PC,PC,11.3035,0.006,,1,qlp-s59-faintsearch,QLP,05:37:55.39,35:17:40.98,-8.964,0.068,-141.121,0.052,2459934.577923,0.004263,6.5587386,5.92e-05,2.196,0.384,1.516747,0.128116,1396.0,117.992,2.56709,0.252437,30.3163,653.0,13.0,93.6289,0.33025,4337.0,122.0,4.63,0.1,0.66,0.06,,,0.68,0.0811744,"19,43,44,45,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6372,1,False,False,False -286951368,6373.01,,3,4,3,3,1,4,4,21.7,25.1,317.0,0,0,0,PC,PC,12.5799,0.01,,1,qlp-s59-faintsearch,QLP,05:31:07.83,60:23:12.37,-0.903,0.029,-7.213,0.03,2459932.578534,0.0019043,4.9613647,1.64e-05,4.318,0.255,6.585378,0.291434,6047.0,268.385,14.2376,0.738403,916.634,1532.0,30.0,767.899,12.911,6592.0,135.7,4.1,0.09,1.72,0.08,,,1.37,0.229539,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6373,1,False,False,False -468501184,6374.01,,3,4,3,3,1,4,4,33.5,36.1,317.0,0,0,0,PC,PC,12.7022,0.02,,1,qlp-s59-faintsearch,QLP,00:55:29.35,73:27:50.99,-4.925,0.026,7.215,0.027,2459933.264523,0.0009781,4.5944948,5.5e-06,3.482,0.209,11.840221,0.368671,10846.0,339.501,14.2928,0.748715,424.183,1264.0,62.0,515.735,4.4875,5890.0,178.7,4.24,0.08,1.3,0.06,,,1.07,0.135665,"18,19,24,58,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6374,1,False,False,False -390410937,6375.01,,3,4,3,3,1,4,4,26.5,27.9,317.0,0,0,0,PC,PC,13.1429,0.016,,1,qlp-s59-faintsearch,QLP,02:52:10.04,63:38:22.27,4.348,0.02,-3.014,0.033,2459934.24396,0.0016254,3.0679061,6.8e-06,2.645,0.193,7.784338,0.347242,7144.0,319.771,15.0074,,921.092,1534.0,26.0,913.0,18.5485,6632.0,122.0,4.12,,1.7,,,,1.39,,"18,19,58,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6375,1,False,False,False -9441591,6376.01,,3,4,3,3,1,4,4,16.6,39.5,104.99,0,0,0,PC,PC,12.7346,0.014,,1,qlp-s59-faintsearch,QLP,04:34:50.32,55:53:20.82,0.996,0.032,-3.598,0.025,2459934.822357,0.0032301,4.7185893,2.84e-05,5.576,0.528,4.207771,0.229237,3868.0,211.113,12.5103,0.758018,1274.32,1664.0,17.0,823.754,14.9365,6039.7,106.3,3.86,0.08,2.06,0.1,0.234,0.057,1.12,0.153754,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6376,1,False,False,False -187532854,6377.01,,3,4,3,3,1,4,4,28.5,76.3,66.5,0,0,0,PC,PC,12.2059,0.006,,1,qlp-s59-faintsearch,QLP,05:11:28.63,37:55:23.61,14.737,0.071,-10.008,0.053,2459934.8744,0.0015851,1.6513066,4e-06,0.82,0.237,1.90279,0.526426,1751.0,484.739,9.54979,0.916504,231.366,1086.0,10.0,536.017,11.7625,5887.6,129.7,4.13,0.09,1.47,0.1,-0.653582,0.0356921,1.068,0.136539,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6377,1,False,False,False -251594291,6378.01,,3,4,3,3,1,4,4,12.3,58.4,98.02,0,0,0,PC,PC,13.4948,0.028,,1,qlp-s59-faintsearch,QLP,03:03:16.75,59:18:31.02,0.645,0.031,-1.775,0.048,2459916.231219,0.0028061,12.9589981,5.19e-05,3.683,0.286,18.343425,0.941084,16753.0,866.395,11.9733,,60.044,775.0,21.0,489.542,5.5595,5925.0,122.0,4.52,,0.94,,,,1.08,,"18,58,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6378,1,False,False,False -450308271,6379.01,,3,4,3,3,1,4,4,122.1,248.8,100.86,0,0,0,PC,PC,12.8552,0.006,,1,qlp-s59-faintsearch,QLP,04:45:59.04,57:18:49.63,-7.253,0.033,14.751,0.031,2459936.127449,0.0008563,1.5057127,0.0001029,0.244,0.083,5.849389,19.175564,5373.0,17506.3,12.1483,3.73349,9.00759,482.0,12.0,173.849,0.6825,4335.0,148.2,4.65,0.1,0.64,0.05,,,0.678,0.0811509,59,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6379,1,False,False,False -458890024,6380.01,TIC 458890024.01,3,4,3,3,1,4,4,10.3,55.3,27.53,0,0,0,PC,PC,11.8123,0.006,,1,qlp-s59-faintsearch,QLP,03:13:50.23,65:16:04.3,5.201,0.027,-11.723,0.051,2459933.989586,0.0026947,5.1404883,1.48e-05,1.988,0.333,3.148854,0.247321,2896.0,227.765,5.66149,0.406857,76.7777,824.0,20.0,240.108,2.4045,5155.0,139.6,4.44,0.09,0.93,0.06,,,0.871,0.107835,"18,19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6380,1,False,False,False -470653603,6381.01,,3,4,3,3,1,4,4,7.4,65.1,18.81,0,0,0,PC,PC,10.7233,0.006,,1,qlp-s59-faintsearch,QLP,05:42:52.69,44:40:12.02,5.441,0.08,-25.808,0.07,2459929.634393,0.0020731,8.9270275,2.53e-05,2.409,0.71,2.565366,0.270756,2360.0,249.344,4.54883,0.340382,56.8769,765.0,23.0,149.566,1.224,5492.0,135.8,4.56,0.08,0.85,0.05,,,0.963,0.121331,"19,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6381,1,False,False,False -367522211,6382.01,,3,4,3,3,1,4,4,6.1,39.5,112.54,0,0,0,PC,PC,12.6924,0.015,,1,qlp-s59-faintsearch,QLP,05:13:59.98,33:16:59.66,3.275,0.045,-5.701,0.033,2459894.73853,0.0030561,35.3712924,0.0002101,1.907,0.298,4.761608,0.875486,4376.0,806.027,13.0539,0.925591,3.89814,391.0,10.0,708.125,11.259,6702.0,109.0,4.35,0.09,1.32,0.07,0.028207,0.0314441,1.42,0.235381,"19,43,44,45,59",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6382,1,False,False,False -328513434,6383.01,,3,4,3,3,1,4,4,68.8,169.2,88.99,0,0,0,PC,PC,14.4506,0.007,,1,qlp-s59-faintsearch,QLP,04:01:41.93,60:53:28.92,41.134,0.063,-51.191,0.07,2459933.595246,0.0010596,1.7904917,0.0001515,1.223,0.086,52.626682,3.286259,47315.0,3022.18,11.4109,0.480695,31.6712,660.0,28.0,171.319,1.323,3425.0,157.0,4.78,0.01,0.46,0.01,,,0.453737,0.0204697,59,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6383,1,False,False,False -16550540,6384.01,,3,4,3,3,1,4,4,24.8,72.5,58.02,0,0,0,PC,PC,14.394,0.009,,1,qlp-s60-faintsearch,QLP,06:50:44.3,40:52:22.31,4.315,0.081,-25.638,0.071,2459959.556369,0.0033691,2.4810218,0.0007191,1.541,0.244,27.124383,2.547866,24673.0,2343.92,8.87122,0.629245,43.5124,715.0,15.0,259.341,3.0965,3691.0,157.0,4.65,0.01,0.6,0.02,,,0.584702,0.0206081,60,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6384,1,False,False,False -16552586,6385.01,,3,4,3,3,1,4,4,36.8,50.2,317.0,0,0,0,PC,PC,13.4358,0.007,,1,qlp-s60-faintsearch,QLP,07:03:06.67,39:33:05.15,1.932,0.04,2.024,0.037,2459958.847447,0.0014246,2.8895991,6.2e-06,3.647,0.159,14.851931,0.60051,13586.0,552.937,18.732,,1619.54,1767.0,43.0,1216.71,33.985,6451.9,136.8,4.19,,1.51,,-0.147405,0.127535,1.31,,"20,47,60",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6385,1,False,False,False -138344895,6386.01,,3,4,3,3,1,4,4,15.5,56.0,102.12,0,0,0,PC,PC,13.0817,0.008,,1,qlp-s60-faintsearch,QLP,05:41:34.16,79:30:13.55,1.647,0.025,0.68,0.029,2459958.684389,0.0021215,6.2663565,2.52e-05,1.359,0.269,6.228241,1.028507,5720.0,946.841,12.2751,,52.4199,749.0,12.0,776.855,10.4695,6316.0,122.0,4.36,,1.22,,,,1.24,,"19,20,40,52,53,59,60",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6386,1,False,False,False -459982699,6387.01,,3,4,4,3,1,4,4,88.0,168.0,107.44,2,0,0,PC,PC,14.9787,0.007,,1,qlp-s60-faintsearch,QLP,17:05:17.23,64:55:48.35,7.161,0.125,13.056,0.11,2459961.822257,0.0003962,1.1669652,1.6e-06,0.562,0.071,31.025364,10.060111,28171.0,9222.91,12.7459,1.07917,21.7929,601.0,49.0,240.373,3.925,3452.0,157.0,4.76,0.01,0.48,0.02,,,0.474555,0.0214036,"40,41,47,48,49,50,51,52,53,54,55,56,57,58,59,60",2023-05-03,2023-05-03,2023-06-03 00:00:00,found in faint-star QLP search,6387,1,False,False,False -16776356,6388.01,,3,4,3,3,1,4,4,124.4,148.8,317.0,0,0,0,PC,PC,13.3476,0.007,,1,qlp-s60-faintsearch,QLP,08:11:54.94,38:20:46.08,-7.305,0.04,-9.565,0.029,2459962.155168,0.0016605,1.3940614,0.0002032,0.925,0.324,9.972545,25.611482,9143.0,23313.0,20.0134,,591.468,1373.0,15.0,557.187,7.796,5402.0,122.0,4.43,,0.98,,,,0.94,,60,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6388,1,False,False,False -239159011,6389.01,,3,4,3,3,1,4,4,11.4,18.8,317.0,0,0,0,PC,PC,12.7613,0.007,,1,qlp-s60-faintsearch,QLP,07:32:44.56,33:33:24.57,-2.675,0.047,-3.242,0.044,2459960.48611,0.0021296,15.8034785,7.75e-05,1.648,0.462,7.626879,0.839097,7000.0,772.538,14.6849,0.978169,12.8934,527.0,16.0,791.689,16.583,6039.2,114.5,4.14,0.07,1.49,0.07,0.0996288,0.0271163,1.12,0.143119,"20,44,45,46,47,60",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6389,1,False,False,False -318071201,6390.01,,3,4,3,3,1,4,4,25.7,34.0,317.0,0,0,0,PC,PC,13.032,0.007,,1,qlp-s60-faintsearch,QLP,07:14:51.29,51:02:43.98,0.449,0.035,-4.514,0.026,2459956.120171,0.001492,5.2434358,1.22e-05,2.19,0.312,8.892668,0.72596,8157.0,668.41,15.7628,,164.202,997.0,28.0,836.498,17.3145,6174.0,122.0,4.24,,1.37,,,,1.18,,"20,47,60",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6390,1,False,False,False -171922657,6391.01,,3,4,3,3,1,4,4,13.6,52.2,62.91,0,0,0,PC,PC,12.9713,0.015,,1,qlp-s60-faintsearch,QLP,06:28:21.87,35:44:28.8,9.165,0.039,-29.316,0.034,2459958.667743,0.0028116,5.01345,2.64e-05,3.437,0.281,8.312651,0.35138,7627.0,323.581,9.1986,0.592295,278.509,1138.0,29.0,513.641,6.274,5505.9,117.1,4.36,0.08,1.07,0.06,-0.08,0.058,0.97,0.126347,"20,44,45,60",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search; two fainter stars (delta Tmag~3) in pixel though this appears to be the correct source based on the difference image,6391,1,False,False,False -88460991,6392.01,,3,4,3,3,1,4,4,15.1,50.0,96.24,0,0,0,PC,PC,12.7094,0.007,,1,qlp-s60-faintsearch,QLP,07:02:05.71,65:17:12.06,-1.129,0.018,-29.285,0.027,2459961.921815,0.0024518,6.9603975,2.65e-05,3.734,0.934,6.772184,0.594205,6218.0,547.133,11.906,0.78331,302.518,1161.0,25.0,658.966,9.317,5837.0,127.8,4.2,0.08,1.36,0.07,,,1.05,0.132695,"20,47,60",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6392,1,False,False,False -147821208,6393.01,,2,4,2,2,2,4,4,1.7,24.2,7.35,0,1,1,PC,PC,11.7801,0.006,,1,qlp-s60-faintsearch,QLP,09:24:58.49,68:47:17.93,22.084,0.035,3.807,0.048,2459961.061588,0.0085451,9.5315703,0.0001152,2.695,0.584,1.189533,0.13738,1095.0,126.524,2.62547,0.23911,39.0679,696.0,10.0,186.229,1.054,5022.0,125.4,4.59,0.09,0.77,0.05,,,0.835,0.0973347,"14,20,40,41,47,60",2023-05-03,2023-05-03,2023-06-16 00:00:00,found in faint-star QLP search,6393,1,False,False,True -309512152,6394.01,,3,4,3,3,1,4,4,20.1,32.9,317.0,0,0,0,PC,PC,12.5085,0.009,,1,qlp-s60-faintsearch,QLP,06:36:31.92,40:22:11.3,9.813,0.051,-10.683,0.045,2459944.684979,0.0017746,13.026976,3.33e-05,5.16,0.394,11.263015,0.493802,10320.0,454.705,16.5308,1.26172,110.559,903.0,38.0,606.491,11.108,5817.2,185.7,4.13,0.1,1.46,0.11,0.285,0.182,1.05,0.14468,"20,60",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6394,1,False,False,False -191998744,6395.01,,3,4,3,3,1,4,4,22.6,67.6,111.16,0,0,0,PC,PC,11.475,0.008,,1,qlp-s60-faintsearch,QLP,06:55:12.7,45:19:27.14,-2.935,0.066,-5.694,0.062,2459958.614324,0.0028126,2.8140328,1.64e-05,4.309,0.425,5.711856,0.253172,5247.0,233.153,12.904,0.904141,5118.7,2356.0,22.0,896.944,36.626,7487.8,138.5,3.98,0.09,2.22,0.12,0.308,0.017,1.72,0.27942,"20,47,60",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6395,1,False,False,False -73244652,6396.01,,5,5,5,5,5,5,5,21.5,28.6,317.0,0,0,0,PC,FP,11.8431,0.009,,1,qlp-s60-faintsearch,SPOC/QLP,08:10:04.66,63:49:34.45,-0.649,0.057,-3.465,0.055,2459600.062651,0.0018613,8.2100724,3.6e-05,1.37,0.538,4.558792,0.399914,4190.0,368.267,15.5396,4.21304,105.793,893.0,17.0,720.484,22.2375,6427.0,128.0,3.97,0.09,1.96,0.1,,,1.3,0.206964,"20,47,60",2023-05-03,2023-02-23,2023-05-16 12:02:48,found in faint-star QLP search; varying transit depth and possible odd-even,6396,1,False,False,True -359629653,6397.01,,3,4,3,3,1,4,4,103.5,103.3,317.0,0,0,0,PC,PC,13.1766,0.006,,1,qlp-s60-faintsearch,QLP,18:40:15.56,58:59:15.03,-6.335,0.028,-6.053,0.026,2459960.018674,0.0005412,1.6707289,1.3e-06,0.707,0.242,2.998597,18.639069,2758.0,17020.7,17.2506,,289.366,1149.0,31.0,430.356,2.361,5041.0,122.0,4.43,,0.93,,,,0.84,,"14,15,16,17,18,19,20,21,22,23,24,25,40,41,47,48,49,50,51,53,54,55,56,57,58,59,60",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6397,1,False,False,False -353586703,6398.01,TIC 353586703.01,3,4,3,3,1,4,4,37.6,114.3,101.42,0,0,0,PC,PC,12.1953,0.007,,1,qlp-s60-faintsearch,QLP,06:26:04.39,39:47:40.47,-2.866,0.082,0.484,0.075,2459961.599204,0.0006417,3.0043128,2.7e-06,0.714,0.221,6.534039,1.956173,6000.0,1800.08,12.1874,1.36016,61.8402,781.0,19.0,502.17,10.247,6405.0,122.9,4.41,0.09,1.17,0.06,,,1.29,0.208437,"20,60",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6398,1,False,False,False -287207371,6399.01,,3,4,3,3,1,4,4,5.5,19.7,82.04,0,0,0,PC,PC,13.1843,0.008,,1,qlp-s60-faintsearch,QLP,07:23:05.96,65:28:20.66,5.774,0.022,1.426,0.036,2459960.22282,0.0097729,12.6427441,0.0002642,7.917,1.054,8.443948,0.294555,7747.0,271.258,10.8159,,269.47,1128.0,29.0,958.967,30.187,5605.0,122.0,3.94,,1.76,,,,0.99,,"20,47,60",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search; possible slight depth aperture correlation,6399,1,False,False,False -88999533,6400.01,,3,4,3,3,1,4,4,13.0,16.6,317.0,0,1,0,PC,PC,12.349,0.007,,1,qlp-s61-faintsearch,QLP,08:12:46.13,-04:14:51.76,-0.397,0.072,-0.689,0.05,2459983.780715,0.0047633,5.0358501,3.01e-05,6.391,0.626,4.303691,0.239907,3956.0,220.938,15.0966,1.21984,3403.81,2127.0,19.0,1533.65,99.74,7455.0,128.1,3.85,0.1,2.57,0.18,,,1.71,0.274859,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6400,1,False,False,False -150470555,6401.01,,3,4,3,3,1,4,4,,,317.0,0,0,0,PC,PC,12.6839,0.013,,1,qlp-s61-faintsearch,QLP,07:50:29.54,-33:30:29.73,-4.052,0.042,5.705,0.041,2459983.676263,0.001946,3.0199448,6.3e-06,2.129,0.162,12.35953,0.605932,11319.0,557.928,,,,,22.0,848.343,18.358,,,,,,,,,,,"7,8,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6401,1,False,False,False -265076459,6402.01,TIC 265076459.01,3,4,3,3,1,4,4,30.9,87.0,101.62,0,2,0,PC,PC,12.23,0.008,,1,qlp-s61-faintsearch,QLP,08:28:39.08,02:42:37.58,5.025,0.071,1.62,0.051,2459986.099782,0.0013128,3.4053234,4.6e-06,1.794,0.619,5.228446,2.193719,4804.0,2018.45,12.264,1.83472,696.43,1431.0,30.0,552.846,12.5335,6111.0,131.3,4.26,0.09,1.32,0.07,,,1.15,0.161272,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6402,1,False,False,False -94405787,6403.01,,3,4,3,3,1,4,4,0.0,11.9,65.45,0,0,0,PC,PC,12.9298,0.006,,1,qlp-s61-94405787,QLP,07:42:06.5,-13:27:39.03,-5.129,0.034,0.786,0.028,2459979.393533,9.9e-06,742.682809,1.1e-06,5.052,0.005,12.885679,0.189696,11798.0,174.701,9.50064,0.495088,0.0343651,119.0,13.0,517.363,6.128,5931.0,149.7,4.49,0.08,0.98,0.05,,,1.082,0.127512,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search; period likely several times shorter than max period of ~742.7 days,6403,1,False,False,False -141395223,6404.01,,3,4,3,3,1,4,4,24.2,84.6,59.47,0,0,0,PC,PC,12.4628,0.006,,1,qlp-s61-faintsearch,QLP,07:48:33,-22:28:10.74,-11.008,0.027,15.291,0.028,2459985.463213,0.0012278,3.7442969,5e-06,1.378,0.142,7.564557,0.544353,6943.0,501.242,8.95062,0.604043,58.7809,771.0,26.0,312.797,2.0575,5114.0,127.4,4.45,0.09,0.92,0.05,,,0.86,0.100942,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6404,1,False,False,False -142908390,6405.01,,3,4,3,3,1,4,4,22.1,102.3,57.61,0,0,0,PC,PC,12.2657,0.006,,1,qlp-s61-faintsearch,QLP,07:57:01.8,-20:27:49.04,-21.265,0.038,-4.459,0.037,2459980.170942,0.001061,6.7392054,8.7e-06,0.839,0.192,5.63873,1.885584,5180.0,1735.18,8.73795,1.00512,4.48575,405.0,14.0,190.315,1.092,4557.0,128.1,4.52,0.1,0.77,0.06,,,0.719,0.0901292,"7,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6405,1,False,False,False -31605271,6406.01,,3,4,3,3,1,4,4,62.4,157.6,95.56,0,0,0,PC,PC,13.0461,0.006,,1,qlp-s61-faintsearch,QLP,08:31:33.67,-00:32:07.23,-13.614,0.043,-10.709,0.03,2459984.134429,0.0005281,2.2314165,1.2e-06,1.255,0.065,19.292378,0.961161,17612.0,884.87,11.7385,,106.977,895.0,59.0,322.174,2.7755,4956.1,242.6,4.59,,0.75,,0.087,0.225,0.817,,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6406,1,False,False,False -97925605,6407.01,,3,4,3,3,1,4,4,10.4,34.0,83.38,0,0,0,PC,PC,12.1158,0.006,,1,qlp-s61-faintsearch,QLP,07:11:23.63,-33:04:14.11,4.922,0.042,-0.337,0.044,2459973.681274,0.0029789,8.9913818,3.19e-05,6.905,0.463,3.610641,0.13654,3320.0,125.75,10.912,0.644327,467.293,1295.0,32.0,671.665,14.3675,5863.0,131.9,3.92,0.08,1.88,0.1,,,1.06,0.128752,"7,33,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6407,1,False,False,False -452867348,6408.01,,3,4,3,3,1,4,4,14.7,67.8,86.22,0,0,0,PC,PC,13.9983,0.009,,1,qlp-s61-faintsearch,QLP,08:02:18.34,02:30:16.96,15.829,0.071,-32.27,0.044,2459986.095759,0.0039964,8.0924283,0.0030755,2.047,0.353,23.820976,2.415854,21701.0,2222.61,11.0971,0.67287,8.0575,469.0,12.0,268.499,2.7785,3821.0,157.0,4.58,0.01,0.69,0.02,,,0.657426,0.0206919,61,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6408,1,False,False,False -97279971,6409.01,,3,4,3,3,1,4,4,78.6,98.8,317.0,0,0,0,PC,PC,12.2411,0.006,,1,qlp-s61-faintsearch,QLP,07:05:48.03,-35:15:22.09,-2.825,0.039,5.019,0.045,2459987.356029,0.0006127,1.5304279,1e-06,2.951,0.155,10.362704,0.244313,9499.0,224.995,19.1928,0.925587,4037.72,2220.0,111.0,734.456,14.044,6476.0,135.9,4.09,0.09,1.72,0.08,,,1.32,0.220272,"6,7,33,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6409,1,False,False,False -142916753,6410.01,,3,4,3,3,1,4,4,18.1,58.7,110.23,0,0,0,PC,PC,12.6159,0.006,,1,qlp-s61-faintsearch,QLP,07:57:20.95,-18:45:32.11,-6.722,0.039,-0.224,0.039,2459979.307311,0.0028631,5.1491091,1.34e-05,4.667,0.558,9.508045,0.416276,8719.0,383.331,12.8079,0.772268,1104.38,1606.0,30.0,839.513,21.5705,6648.0,131.8,4.25,0.09,1.46,0.08,,,1.399,0.229885,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6410,1,False,False,False -106829921,6411.01,,3,4,3,3,1,4,4,5.4,30.2,42.13,0,0,0,PC,PC,13.075,0.006,,1,qlp-s61-faintsearch,QLP,07:21:06.03,-26:47:58.36,0.768,0.025,6.67,0.029,2459987.565605,0.0083289,8.2165446,8.1e-05,3.438,0.532,5.774071,0.457048,5304.0,420.868,7.33005,,172.843,1010.0,13.0,653.557,7.765,6114.0,122.0,4.43,,1.09,,,,1.152,,"7,33,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6411,1,False,False,False -176082442,6412.01,,3,4,3,3,1,4,4,14.3,41.7,93.86,0,0,0,PC,PC,13.1167,0.006,,1,qlp-s61-faintsearch,QLP,08:05:57.28,-18:22:59.79,-1.848,0.031,-4.76,0.025,2459981.680244,0.0023661,3.9802888,1.08e-05,1.382,0.241,4.431234,0.556317,4073.0,512.256,11.6985,,106.678,895.0,13.0,934.231,17.7295,5991.0,122.0,4.12,,1.52,,,,1.1,,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6412,1,False,False,False -170466784,6413.01,,3,4,3,3,1,4,4,13.6,61.1,90.4,0,0,0,PC,PC,12.9494,0.007,,1,qlp-s61-faintsearch,QLP,08:10:11.81,-06:48:09.9,-43.753,0.05,-5.597,0.031,2459974.167838,0.0020181,10.8310228,2.26e-05,1.516,0.251,8.423159,1.031918,7728.0,949.98,11.3849,0.750872,12.0417,518.0,17.0,490.336,6.1595,5524.8,113.5,4.44,0.08,0.98,0.05,-0.413,0.051,0.97,0.125301,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6413,1,False,False,False -169191182,6414.01,,3,4,3,3,1,4,4,3.3,32.5,18.63,0,2,0,PC,PC,10.3377,0.006,,1,qlp-s61-faintsearch,QLP,08:29:09.38,-02:07:00.01,-22.189,0.068,-8.682,0.042,2459987.730483,0.0046659,17.7607727,7.68e-05,4.474,0.695,1.51131,0.090836,1391.0,83.6599,4.52589,0.317312,71.0596,808.0,20.0,238.113,2.3515,6180.8,151.5,4.28,0.09,1.31,0.07,0.104,0.096,1.182,0.172514,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6414,1,False,False,False -157050713,6415.01,,3,4,3,3,1,4,4,5.4,35.8,78.49,0,0,0,PC,PC,13.4164,0.006,,1,qlp-s61-faintsearch,QLP,06:59:01.63,-36:21:39.82,-1.383,0.029,10.698,0.036,2459981.628151,0.0062943,20.8380576,0.0001144,3.561,1.064,11.872053,0.906059,10875.0,834.163,10.4977,,37.6029,689.0,18.0,662.479,7.6605,6165.0,122.0,4.48,,1.03,,,,1.17,,"6,7,33,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6415,1,False,False,False -106626059,6416.01,,3,4,3,3,1,4,4,35.1,69.2,317.0,0,0,0,PC,PC,13.097,0.019,,1,qlp-s61-faintsearch,QLP,07:20:39.67,-27:39:40.45,5.334,2.114,6.162,2.114,2459980.202369,0.0014107,8.2330943,1.16e-05,3.172,0.102,32.912852,0.957002,29859.0,881.043,,,,,47.0,824.51,,,,,,,,,,,,"7,33,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6416,1,False,False,False -95191643,6417.01,,3,4,3,3,1,4,4,40.8,42.0,317.0,0,0,0,PC,PC,11.7024,0.007,,1,qlp-s61-faintsearch,QLP,07:43:23.58,-08:31:23.57,4.727,0.059,-8.443,0.05,2459987.101904,0.0009202,3.3458255,6e-06,3.821,0.129,6.60504,0.156593,6065.0,144.217,14.8231,0.775876,1120.52,1611.0,60.0,577.753,13.5065,6089.0,121.8,4.01,0.08,1.75,0.09,,,1.14,0.158946,"34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6417,1,False,False,False -36022284,6418.01,,3,4,3,3,1,4,4,24.4,72.5,94.22,0,0,0,PC,PC,12.5598,0.006,,1,qlp-s61-faintsearch,QLP,07:52:00.99,-11:24:44.75,-14.807,0.04,-1.17,0.03,2459980.519131,0.0013861,4.6478092,6.5e-06,3.454,0.151,10.141305,0.309601,9297.0,285.112,11.76,0.668465,312.405,1171.0,48.0,474.94,6.125,5510.0,131.4,4.28,0.08,1.19,0.06,,,0.967,0.117043,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6418,1,False,False,False -144037593,6419.01,,3,4,3,3,1,4,4,18.1,60.3,81.39,0,0,0,PC,PC,12.9149,0.008,,1,qlp-s61-faintsearch,QLP,08:26:24.67,-23:53:26.91,-4.016,0.03,-0.323,0.024,2459981.589903,0.0023426,4.160454,0.0010498,2.572,0.295,11.29483,0.55046,10349.0,506.864,10.705,0.648843,315.01,1173.0,20.0,649.613,8.2655,5963.0,124.3,4.34,0.08,1.16,0.06,,,1.09,0.139545,61,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6419,1,False,False,False -143526233,6420.01,,3,4,3,3,1,4,4,12.9,48.3,80.46,0,0,0,PC,PC,12.4877,0.006,,1,qlp-s61-faintsearch,QLP,08:22:10.63,-19:07:27.43,-8.847,0.054,1.867,0.046,2459985.848349,0.0022431,6.9615164,1.88e-05,2.403,0.338,7.071579,0.400249,6492.0,368.575,10.6573,0.682895,106.619,895.0,20.0,634.712,14.7615,5994.0,127.4,4.2,0.08,1.37,0.07,,,1.1,0.144765,"7,8,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6420,1,False,False,False -107617930,6421.01,,3,4,3,3,1,4,4,27.2,40.1,317.0,0,0,0,PC,PC,13.2808,0.017,,1,qlp-s61-faintsearch,QLP,07:24:36.76,-25:04:18.34,-3.004,0.025,1.437,0.033,2459985.803053,0.0021771,3.750778,8e-06,3.127,0.275,15.243848,0.638646,13942.0,588.042,17.4249,,903.749,1527.0,28.0,1182.83,27.87,6751.0,122.0,4.22,,1.54,,,,1.44,,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6421,1,False,False,False -140740440,6422.01,,3,4,3,3,1,4,4,15.1,54.6,60.52,0,0,0,PC,PC,12.6968,0.01,,1,qlp-s61-faintsearch,QLP,07:45:04.04,-22:10:43.67,5.475,0.025,8.666,0.029,2459985.504594,0.00326,3.7521603,1.35e-05,2.1,0.309,5.958555,0.478071,5473.0,440.223,9.01204,0.617586,262.822,1121.0,16.0,577.888,6.8155,5917.0,135.3,4.32,0.08,1.19,0.06,,,1.08,0.130676,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6422,1,False,False,False -141458054,6423.01,,3,4,3,3,1,4,4,31.3,30.7,317.0,0,0,0,PC,PC,13.3579,0.01,,1,qlp-s61-faintsearch,QLP,07:49:01.86,-19:13:55.13,-1.268,0.028,1.686,0.027,2459985.558593,0.0021611,1.364829,3e-06,1.25,0.217,5.075719,0.632683,4664.0,582.553,15.8394,,957.887,1549.0,15.0,1370.47,40.705,6392.0,122.0,4.01,,1.85,,,,1.28,,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6423,1,False,False,False -98159959,6424.01,,3,4,3,3,1,4,4,10.0,40.0,44.17,0,0,0,PC,PC,13.2535,0.006,,1,qlp-s61-faintsearch,QLP,07:12:47.99,-32:31:12.22,-5.889,0.025,4.63,0.03,2459984.928734,0.0044642,2.0396825,1.12e-05,2.473,0.511,4.819406,0.384693,4429.0,354.253,7.50494,,2000.39,1863.0,14.0,873.87,13.8545,6559.0,122.0,4.4,,1.22,,,,1.36,,"7,33,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6424,1,False,False,False -107776260,6425.01,,3,4,3,3,1,4,4,9.4,37.6,95.25,0,0,0,PC,PC,11.9634,0.006,,1,qlp-s61-faintsearch,QLP,07:26:00.56,-25:29:29.71,-2.762,0.038,3.661,0.048,2459977.389004,0.002725,12.1422411,4.03e-05,3.453,0.313,4.988457,0.216087,4584.0,199.004,11.7961,0.671513,110.449,903.0,24.0,792.402,18.2695,6716.0,127.8,4.07,0.09,1.83,0.09,,,1.428,0.231027,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6425,1,False,False,False -142420436,6426.01,,3,4,3,3,1,4,4,17.6,51.0,108.6,0,0,0,PC,PC,13.1896,0.008,,1,qlp-s61-faintsearch,QLP,07:54:26.39,-19:39:25.13,-1.532,0.03,-9.161,0.031,2459984.741697,0.0032844,3.8801586,1.39e-05,3.656,0.419,8.876249,0.519342,8142.0,478.217,12.7189,,983.22,1560.0,19.0,996.119,23.8785,6371.0,122.0,4.23,,1.43,,,,1.27,,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search; brighter star nearby but this appears to be the correct source,6426,1,False,False,False -22972676,6427.01,,3,4,3,3,1,4,4,4.3,23.2,53.73,0,0,0,PC,PC,12.4642,0.006,,1,qlp-s61-faintsearch,QLP,07:17:46.22,-40:53:09.79,-16.244,0.032,-0.295,0.035,2459961.906987,0.0061437,18.372561,0.0001171,4.807,0.652,4.690727,0.221441,4311.0,203.934,8.40725,0.533254,56.6794,764.0,17.0,601.941,6.736,5822.0,127.9,4.09,0.08,1.53,0.07,,,1.05,0.132868,"7,8,33,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6427,1,False,False,False -238914510,6428.01,,3,4,3,3,1,4,4,49.7,55.8,317.0,1,0,0,PC,PC,13.1815,0.006,,1,qlp-s61-faintsearch,QLP,06:15:57.74,-52:28:48.77,-2.4,0.029,0.358,0.033,2459986.706088,0.0007113,1.6763835,1.1e-06,1.509,0.201,14.50637,0.664238,13272.0,611.599,17.7371,,760.788,1463.0,66.0,972.897,13.118,6087.0,122.0,4.13,,1.52,,,,1.14,,"1,5,6,7,8,11,28,32,34,35,38,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6428,1,False,False,False -348501452,6429.01,,3,4,3,3,1,4,4,10.5,36.3,53.37,0,0,0,PC,PC,12.3056,0.021,,1,qlp-s61-faintsearch,QLP,07:34:41.56,-19:22:01.27,-3.172,0.048,11.229,0.056,2459987.620891,0.0040451,2.4257176,1.95e-05,2.581,0.484,2.015911,0.208515,1855.0,192.031,8.37058,0.686068,1677.9,1783.0,11.0,873.301,34.8295,6658.0,177.4,4.05,0.1,1.85,0.11,,,1.4,0.231409,"34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6429,1,False,False,False -50211272,6430.01,,3,4,3,3,1,4,4,20.6,64.9,70.39,0,0,0,PC,PC,14.329,0.007,,1,qlp-s61-faintsearch,QLP,07:28:40.72,-14:59:28.21,-4.847,0.052,5.006,0.051,2459981.428415,0.002812,3.6024986,0.0014455,2.055,0.287,22.812618,2.420435,20792.0,2226.82,9.87637,0.681676,47.7872,732.0,12.0,333.252,3.758,3967.0,157.0,4.59,0.01,0.67,0.02,,,0.641581,0.0205605,61,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6430,1,False,False,False -54141697,6431.01,,3,4,3,3,1,4,4,11.1,43.4,53.61,0,0,0,PC,PC,13.1583,0.008,,1,qlp-s61-faintsearch,QLP,07:52:33.27,-12:06:29.71,-3.443,0.032,-3.162,0.028,2459981.409845,0.0033678,3.5423487,1.29e-05,1.35,0.303,3.802384,0.703967,3496.0,648.167,8.42588,,151.261,977.0,10.0,735.252,11.7635,6195.0,122.0,4.39,,1.15,,,,1.19,,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6431,1,False,False,False -141933255,6432.01,,3,4,3,3,1,4,4,25.2,80.7,84.81,0,0,0,PC,PC,12.7819,0.009,,1,qlp-s61-faintsearch,QLP,07:51:35.64,-21:23:16.81,4.22,0.025,0.719,0.025,2459984.307515,0.0011769,3.356169,4.9e-06,1.434,0.166,8.110265,0.635902,7442.0,585.516,11.0376,0.632138,144.158,965.0,23.0,552.368,5.9075,5941.0,126.1,4.41,0.08,1.08,0.05,,,1.09,0.138718,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6432,1,False,False,False -266486214,6433.01,,3,4,3,3,1,4,4,0.1,10.9,68.06,0,0,0,PC,PC,11.3461,0.007,,1,qlp-s61-faintsearch,QLP,07:55:18.62,04:46:45.77,-0.603,0.203,2.696,0.135,2459237.888296,9.6e-06,741.9398361,1e-06,3.178,0.005,4.749612,0.125467,4365.0,115.553,9.70279,0.74944,0.0147618,97.0,14.0,409.7,20.5945,5589.0,123.2,3.99,0.09,1.68,0.12,,,0.99,0.123003,"34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search; period may be shorter,6433,1,False,False,False -32296259,6434.01,TIC 32296259.01,3,4,3,3,1,4,4,13.4,66.7,18.34,0,0,0,PC,PC,12.2757,0.007,,1,qlp-s61-faintsearch,QLP,07:49:18.9,-11:14:32.45,-0.099,0.038,-28.022,0.028,2459987.239352,0.0013784,2.7775786,4e-06,1.9,0.195,4.64602,0.233735,4270.0,215.255,4.50048,0.182481,79.8073,832.0,30.0,128.006,0.456,3982.0,157.0,4.6,0.01,0.66,0.02,,,0.631665,0.0202531,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6434,1,False,False,False -60189629,6435.01,,3,4,3,3,1,4,4,12.2,58.2,36.58,0,0,0,PC,PC,11.0464,0.006,,1,qlp-s61-faintsearch,QLP,07:26:15.28,-44:35:42.43,31.642,0.038,-10.365,0.046,2459987.023429,0.0019841,6.1161423,1.57e-05,1.424,0.415,3.902627,0.249908,3588.0,230.147,6.70408,0.491749,53.9292,754.0,17.0,288.377,1.877,5858.0,136.6,4.23,0.08,1.31,0.07,,,1.06,0.131114,"7,33,34,35,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6435,1,False,False,False -290415036,6436.01,,3,4,3,3,1,4,4,21.3,72.2,105.8,0,0,0,PC,PC,12.6738,0.007,,1,qlp-s61-faintsearch,QLP,08:33:32.91,01:42:24.84,-8.02,0.039,-5.774,0.03,2459976.878311,0.0013956,6.1879019,9.8e-06,2.432,0.18,9.99994,0.535682,9168.0,493.26,12.4998,0.604861,118.339,918.0,34.0,568.421,7.34,5925.5,97.8,4.33,0.07,1.17,0.05,-0.0425041,0.0223789,1.08,0.141189,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6436,1,False,False,False -139707575,6437.01,,3,4,3,3,1,4,4,25.0,36.2,317.0,0,0,0,PC,PC,11.6147,0.014,,1,qlp-s61-faintsearch,QLP,07:28:18.37,-23:16:12.15,-0.87,0.046,-4.711,0.056,2459987.838206,0.0019217,8.31001,1.69e-05,7.754,0.32,6.170367,0.122444,5667.0,112.769,18.2639,0.934931,1097.56,1603.0,35.0,854.485,25.7905,6649.0,146.4,3.79,0.09,2.48,0.12,,,1.4,0.24671,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6437,1,False,False,False -332383229,6438.01,,2,4,2,2,1,4,4,2.4,44.4,8.92,0,0,0,PC,PC,10.4099,0.006,,1,qlp-s61-faintsearch,QLP,08:03:08.18,-12:23:54.31,-29.744,0.05,3.189,0.036,2459980.013021,0.0051062,16.1268294,6.85e-05,2.019,0.507,1.058022,0.153789,974.0,141.635,2.9287,0.270499,7.15343,455.0,10.0,93.0359,0.31185,4833.0,130.7,4.56,0.1,0.77,0.05,,,0.78,0.0944138,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6438,1,False,False,False -122981686,6439.01,,3,4,3,3,1,4,4,57.0,83.1,317.0,0,0,0,PC,PC,12.2879,0.007,,1,qlp-s61-faintsearch,QLP,07:52:36.98,-04:20:06.27,-1.014,0.066,-3.227,0.047,2459982.473246,0.0007259,2.9896663,2.4e-06,2.168,0.138,15.253758,0.396196,13951.0,364.843,19.5222,1.27712,640.322,1401.0,65.0,840.511,31.3265,6689.6,159.2,4.15,0.1,1.67,0.11,-0.02,0.148,1.42,0.250134,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6439,1,False,False,False -348297468,6440.01,,3,4,3,3,1,4,4,22.5,71.4,82.08,0,0,0,PC,PC,11.5876,0.007,,1,qlp-s61-faintsearch,QLP,08:04:04.31,-17:27:33.21,-4.796,0.045,1.64,0.043,2459982.180104,0.0014462,3.8190051,5.3e-06,1.199,0.468,2.072476,0.453209,1907.0,417.334,10.8225,0.800499,193.673,1039.0,19.0,546.411,10.9225,6379.0,124.5,4.13,0.08,1.61,0.08,,,1.27,0.189262,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6440,1,False,False,False -422031406,6441.01,,3,4,3,3,1,4,4,35.7,123.1,85.47,0,0,0,PC,PC,12.5605,0.006,,1,qlp-s61-faintsearch,QLP,08:09:17.36,-16:44:14.66,-20.556,0.026,9.244,0.02,2459981.657715,0.0007593,4.5579065,3.8e-06,2.621,0.114,16.750079,0.571006,15309.0,525.778,11.1283,0.736828,116.63,915.0,66.0,273.991,1.446,4977.0,124.4,4.54,0.09,0.81,0.05,,,0.82,0.0950134,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6441,1,False,False,False -97921547,6442.01,,3,4,3,3,1,4,4,99.7,159.0,317.0,0,0,0,PC,PC,11.1007,0.006,,1,qlp-s61-faintsearch,QLP,07:11:20,-35:51:01.87,-5.057,0.036,6.438,0.039,2459986.409366,0.0003084,2.8279716,1.1e-06,2.237,0.056,16.239687,0.253955,14846.0,233.874,18.5153,0.711756,1118.3,1611.0,129.0,437.855,4.3285,6707.0,105.0,4.1,1.42,1.48,0.06,,,1.7,0.282111,"7,33,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6442,1,False,False,False -125563127,6443.01,,3,4,3,3,1,4,4,9.8,39.2,75.43,0,0,0,PC,PC,11.8052,0.012,,1,qlp-s61-faintsearch,QLP,07:39:37.05,-25:27:55.61,-5.938,0.041,2.206,0.04,2459971.064943,0.0035528,9.9872075,3.91e-05,2.861,0.47,3.135787,0.24803,2884.0,228.418,10.2877,0.624316,105.868,893.0,17.0,644.794,10.8395,6453.0,143.9,4.07,0.09,1.75,0.08,,,1.31,0.211013,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6443,1,False,False,False -97588014,6444.01,,3,4,3,3,1,4,4,10.0,34.8,127.77,0,0,0,PC,PC,13.3362,0.007,,1,qlp-s61-faintsearch,QLP,07:08:07.77,-30:35:44.41,-0.227,0.026,7.683,0.031,2459978.35554,0.0039036,12.2925281,6.04e-05,5.394,0.393,11.239977,0.54788,10299.0,504.489,14.0235,,160.207,991.0,23.0,991.268,18.8605,6019.0,122.0,4.14,,1.49,,,,1.11,,"7,33,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6444,1,False,False,False -323569398,6445.01,,3,4,3,3,1,4,4,4.5,41.1,52.87,0,1,0,PC,PC,12.2099,0.009,,1,qlp-s61-faintsearch,QLP,09:04:01.9,08:44:02.9,4.918,0.069,-28.007,0.052,2459965.970231,0.0020131,26.3926606,7.58e-05,1.812,0.251,3.748998,0.495968,3447.0,456.699,8.33825,0.536195,2.97563,365.0,15.0,345.036,5.0995,5543.0,128.8,4.44,0.08,0.99,0.05,,,0.98,0.124482,"8,34,44,45,46,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6445,1,False,False,False -122798633,6446.01,,3,4,3,3,1,4,4,30.9,102.1,92.52,0,0,0,PC,PC,14.1224,0.008,,1,qlp-s61-faintsearch,QLP,07:50:46.37,-02:04:40.11,6.997,0.072,14.145,0.048,2459983.882874,0.0022257,4.2240015,0.0008234,1.605,0.178,39.237666,2.983943,35494.0,2744.54,11.5236,0.618649,15.196,550.0,16.0,230.066,2.319,3724.0,157.0,4.66,0.01,0.59,0.02,,,0.58275,0.0206332,61,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6446,1,False,False,False -347442932,6447.01,,3,4,3,3,1,4,4,36.4,109.4,64.94,0,0,0,PC,PC,13.346,0.007,,1,qlp-s61-faintsearch,QLP,08:53:01.23,-13:03:02.52,-20.093,0.039,9.174,0.041,2459986.820098,0.000819,0.6646521,6e-07,1.272,0.124,7.842298,0.51773,7197.0,476.733,9.44803,,3611.53,2159.0,32.0,707.586,12.494,6256.0,122.0,4.55,,0.97,,,,1.22,,"8,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6447,1,False,False,False -320411045,6448.01,,3,4,3,3,1,4,4,5.2,39.4,39.68,0,0,0,PC,PC,12.3239,0.006,,1,qlp-s61-faintsearch,QLP,07:20:40.9,-33:55:20.38,-8.145,0.042,5.102,0.046,2459971.671935,0.0035433,14.8442674,9.4e-05,2.748,0.343,7.894792,0.402969,7245.0,371.079,7.05099,0.457246,28.1152,641.0,21.0,386.879,4.109,5920.0,140.2,4.51,0.08,0.96,0.05,,,1.08,0.133998,"33,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6448,1,False,False,False -168936945,6449.01,,3,4,3,3,1,4,4,47.4,141.0,101.64,1,0,0,PC,PC,14.9728,0.007,,1,qlp-s61-faintsearch,QLP,08:23:43.31,-05:11:22.18,-3.914,0.167,-20.28,0.097,2459984.192328,0.0018611,2.4404127,0.000413,1.354,0.198,75.873241,6.785524,67496.0,6230.21,12.1385,0.763227,19.4163,584.0,15.0,215.005,4.5525,3356.0,157.0,4.78,0.01,0.45,0.02,,,0.451014,0.0218581,61,2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6449,1,False,False,False -47244580,6450.01,,3,4,3,3,1,4,4,13.9,59.4,36.54,0,0,0,PC,PC,12.9007,0.006,,1,qlp-s61-faintsearch,QLP,08:58:26.07,-06:18:49.68,-24.877,0.044,4.689,0.041,2459984.16862,0.0018072,3.6092665,6.9e-06,2.376,0.245,7.599544,0.374564,6975.0,344.927,6.6756,0.497087,153.851,981.0,30.0,296.583,2.3365,4823.0,123.3,4.53,0.09,0.79,0.05,,,0.782,0.0927098,"8,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6450,1,False,False,False -150559728,6451.01,,3,4,3,3,1,4,4,8.5,32.1,73.09,0,0,0,PC,PC,13.3935,0.007,,1,qlp-s61-faintsearch,QLP,07:50:29.89,-31:43:48.54,-3.638,0.028,2.4,0.033,2459978.277606,0.0103539,5.495078,5.8e-05,2.962,0.832,5.992398,0.669097,5504.0,616.071,10.0782,,469.613,1296.0,12.0,1011.08,20.193,6852.0,122.0,4.26,,1.5,,,,1.48,,"7,8,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6451,1,False,False,False -7562528,6452.01,,3,4,3,3,1,4,4,11.2,46.1,54.88,0,0,0,PC,PC,12.8743,0.006,,1,qlp-s61-faintsearch,QLP,07:37:17.99,-11:44:14.35,6.864,0.043,-0.005,0.032,2459987.078877,0.0033982,5.2477739,1.73e-05,3.138,0.294,7.292353,0.407368,6694.0,375.129,8.53362,0.546246,239.402,1095.0,17.0,538.47,6.4385,5647.0,128.9,4.36,0.08,1.1,0.06,,,1.002,0.124504,"7,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6452,1,False,False,False -66242670,6453.01,,3,4,3,3,1,4,4,9.1,28.2,110.2,0,0,0,PC,PC,13.0537,0.008,,1,qlp-s61-faintsearch,QLP,07:17:05.76,-24:08:12.18,-1.377,0.024,-1.273,0.028,2459977.256094,0.0060388,6.8688474,4.68e-05,5.418,0.843,4.792142,0.350625,4404.0,322.885,12.8155,,854.65,1506.0,15.0,1344.25,35.79,6621.0,122.0,3.99,,1.98,,,,1.39,,"7,33,34,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search,6453,1,False,False,False -146413471,6454.01,,3,4,3,3,1,4,4,3.3,43.1,22.21,0,2,0,PC,PC,11.0427,0.006,,1,qlp-s61-faintsearch,QLP,08:15:39.11,-29:58:19.04,-12.103,0.039,0.564,0.046,2459948.818566,0.0056188,22.5012924,0.0001456,4.055,0.907,4.087883,0.245255,3758.0,225.863,5.01721,0.344562,22.423,606.0,24.0,182.45,0.9655,5443.0,121.8,4.51,0.08,0.9,0.05,,,0.95,0.120755,"7,8,34,35,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search; potential multi,6454,1,True,False,False -146413471,6454.02,,3,4,3,3,1,4,4,3.4,40.9,13.19,0,2,0,PC,PC,11.0427,0.006,,2,qlp-s61-faintsearch,QLP,08:15:39.11,-29:58:19.04,-12.103,0.039,0.564,0.046,2459974.384105,0.0057287,10.9835772,6.2e-05,3.26,0.799,2.489187,0.190054,2290.0,175.031,3.69154,0.30283,63.5296,786.0,15.0,182.45,0.9655,5443.0,121.8,4.51,0.08,0.9,0.05,,,0.95,0.120755,"7,8,34,35,61",2023-05-03,2023-05-03,2023-05-06 12:13:45,found in faint-star QLP search; potential multi,6454,2,True,False,False -255588086,6455.01,TIC 255588086.01,3,4,3,3,1,4,4,116.3,98.3,317.0,0,0,0,PC,PC,10.9421,0.006,,1,spoc-s61-b02,SPOC/QLP,06:27:26.79,-52:17:52.11,-3.564,0.059,-8.856,0.047,2459963.647136,0.0011346162,0.897037765734032,6.889167e-05,1.57754980824798,0.0835804,2.782989,0.103961,2559.94554489803,95.7473,15.472488106196,13.56911,11175.7161899556,2622.33753090529,21.237682,409.393,5.0035,5811.0,32.9,3.78,0.75,1.84757995605469,0.0888945,,,1.11,0.143364,"6,61",2023-05-18,2023-05-18,2023-06-16 12:14:51,V-shaped; evolved host,6455,1,False,False,True -270456887,6456.01,TIC 270456887.01,3,4,3,3,1,4,4,108.5,153.2,317.0,0,0,0,PC,PC,11.8895,0.008,,1,spoc-s61-b02,SPOC,09:00:33.53,01:23:24.49,-9.711,0.088,-4.583,0.081,2459963.887975,0.0013369204,2.2685932038762,0.00021903736,2.46123084560223,0.09924898,8.822451,0.257814,8092.85235334418,237.42715,19.7806144411629,16.53836,2058.21365586921,1717.87817986225,26.882883,530.397,14.626,6763.0,157.4,4.23,0.01,1.33733999729156,0.075505,-0.102551,0.00637492,1.33,0.208078,"8,61",2023-05-18,2023-05-18,2023-06-16 12:14:51,V-shaped; likely too large,6456,1,False,False,True -328502522,6457.01,TIC 328502522.01,3,4,3,3,3,4,4,0.4,29.8,81.18,0,0,2,PC,PC,10.4475,0.006,,1,spoc-s14-s60-b0H,SPOC/QLP,07:14:14.81,33:04:13.31,-0.158,0.093,-41.871,0.083,2459534.509223,0.0013686708,414.185039828429,0.0020691454,8.11713348974445,0.13668141,6.096045,0.132516,5598.93223501836,122.04424,10.7342874359004,0.61354434,1.8987534915262,299.389728156542,46.13237,263.807,4.1145,6080.7,139.3,4.19,0.09,1.41429996490479,0.0738995,0.197341,0.00860948,1.138,0.149829,"44,45,60",2023-05-18,2023-05-18,2023-06-16 12:14:51,Duotransit. Many possible period aliases.,6457,1,False,False,True -2507547,6458.01,,2,4,2,2,1,4,4,6.7,67.4,7.98,0,0,0,PC,PC,6.4843,0.006,,1,spoc-s14-s60-b0H,SPOC,05:20:00.74,32:47:07.56,17.555,0.084,-38.459,0.058,2458817.042625,0.0020125026,9.78303695600445,3.5771445e-05,3.56794827482244,0.6737669,0.179967,0.018179,165.741800499653,16.743185,2.74216951296399,3.4247186,643.109659807764,1284.37252835495,10.465361,66.5884,0.2286,6200.93,105.169,3.87276,0.0759769,2.09135007858276,0.081407,,,1.19,0.166383,"19,43,44,45,59",2023-05-18,2023-05-18,2023-06-16 12:14:51,slight centroid shift likely do to saturation of bright host star,6458,1,False,False,True -238317637,6459.01,,1,4,1,1,1,4,4,3.5,35.4,8.08,0,0,0,PC,PC,10.3823,0.006,,1,qlp-s62-ffi,QLP,08:01:37.39,-48:49:17.77,9.737,0.051,81.946,0.045,2460008.619686,0.0037389,5.1494363,2.19e-05,3.67,0.59,0.800483,0.041422,737.0,38.1501,2.76723,0.168907,478.295,1302.0,15.0,186.742,0.966,5588.0,94.7,4.27,0.31,1.13,0.05,,,1.06,0.132862,"7,9,34,35,61,62",2023-05-18,2023-05-18,2023-06-16 12:14:51,found in faint-star QLP search; possible centroid offset,6459,1,False,False,True -93862917,6460.01,,3,4,3,3,1,4,4,5.4,36.6,15.94,0,0,0,PC,PC,11.601,0.007,,1,qlp-s61-faintsearch,QLP,07:39:41.06,-08:55:08.29,-9.047,0.07,7.903,0.059,2459984.409752,0.0037991,4.4044418,1.79e-05,2.581,0.517,1.791857,0.143822,1649.0,132.456,4.13545,0.293244,302.886,1162.0,16.0,299.878,4.2465,5754.0,98.9,4.41,0.38,1.04,0.05,,,1.04,0.129847,"7,34,61",2023-05-18,2023-05-18,2023-06-16 12:14:51,found in faint-star QLP search,6460,1,False,False,False -123133954,6461.01,,3,4,3,3,1,4,4,25.1,77.9,95.29,0,0,0,PC,PC,11.139,0.02,,1,qlp-s61-faintsearch,QLP,07:54:42.52,-04:20:31.74,-0.359,2.146,-5.87,1.143,2459982.300342,0.0022836,4.064628,1.11e-05,1.304,0.363,3.386258,0.271917,3114.0,250.413,,,214.521,,14.0,631.411,,6876.0,1036.7,4.15,0.44,,,-0.0284947,0.0097152,,,"7,34,61",2023-05-18,2023-05-18,2023-06-16 12:14:51,found in faint-star QLP search,6461,1,False,False,False -453009027,6462.01,,3,4,3,3,1,4,4,28.8,32.9,317.0,0,0,0,PC,PC,11.9319,0.007,,1,qlp-s61-faintsearch,QLP,08:12:03.92,02:46:56.53,-4.237,0.093,-4.045,0.058,2459980.581682,0.0013395,3.8720204,6.2e-06,3.999,0.28,7.847766,0.235402,7202.0,216.79,14.8477,0.8948,1287.54,1668.0,55.0,761.889,32.5005,6976.0,194.4,4.1,0.01,1.83,0.1,0.120066,0.0065226,1.36,0.214742,"7,34,61",2023-05-18,2023-05-18,2023-06-16 12:14:51,found in faint-star QLP search,6462,1,False,False,False -180989820,6463.01,TIC 180989820.01,3,4,3,3,1,4,4,15.7,69.6,81.66,0,0,0,PC,PC,11.2854,0.007,,1,spoc-s62-b02,SPOC,08:41:01.68,-40:35:05.24,-9.721,0.157,10.126,0.153,2459992.239565,0.00237302,9.8738838739848,0.0033383456,8.53090233245468,0.2029422,5.16989,0.191093,4750.3264568977,175.98784,10.7705055704093,0.7230523,191.880940207562,949.243668423999,20.8662,476.611,20.2155,6543.5,103.3,4.17,1.76,1.51874005794525,0.0907085,,,1.59,0.255365,62,2023-05-18,2023-05-18,2023-06-16 12:14:51,,6463,1,False,False,True -190643105,6464.01,,3,4,3,3,1,4,4,9.6,31.6,94.11,0,0,0,PC,PC,11.4749,0.007,,1,qlp-s62-faintsearch,QLP,08:53:54.49,-38:59:49.6,-10.653,0.049,7.033,0.065,2460008.968908,0.0052152,9.6742544,4.92e-05,6.594,1.079,3.178254,0.126526,2923.0,116.528,11.7179,0.716075,753.131,1459.0,25.0,803.422,22.9945,6803.0,133.8,3.75,0.09,2.66,0.13,,,1.46,0.235924,"8,9,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6464,1,False,False,False -184801054,6465.01,,3,4,3,3,1,4,4,196.4,263.8,127.02,0,0,0,PC,PC,14.2084,0.008,,1,qlp-s62-faintsearch,QLP,08:31:55.68,-37:27:45.55,-1.458,0.074,-8.283,0.073,2460013.850462,0.0006953,0.6593681,1.8e-06,0.395,0.113,22.214036,19.532786,20252.0,17829.5,13.8937,2.41119,41.406,706.0,19.0,200.8,1.861,3421.0,157.0,4.69,0.01,0.55,0.02,,,0.547878,0.0205784,"35,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6465,1,False,False,False -186707229,6466.01,,3,4,3,3,1,4,4,27.8,92.3,51.07,0,0,0,PC,PC,13.2722,0.006,,1,qlp-s62-faintsearch,QLP,08:52:56.01,-31:59:53.24,4.009,0.024,-1.257,0.026,2460013.533512,0.0009753,1.4571902,2.3e-06,0.568,0.148,6.858498,1.38586,6297.0,1275.61,8.18389,,112.285,906.0,15.0,458.026,4.028,5712.0,122.0,4.62,,0.82,,,,1.02,,"8,35,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6466,1,False,False,False -385157401,6467.01,,3,4,3,3,1,4,4,6.8,28.4,81.99,0,0,0,PC,PC,12.7401,0.009,,1,qlp-s62-faintsearch,QLP,10:15:33.75,-14:42:30.84,-3.379,0.051,4.216,0.039,2460009.154035,0.0047217,11.9964056,7.2e-05,5.207,0.508,5.246992,0.283427,4821.0,261.012,10.8162,0.701474,203.513,1052.0,20.0,885.89,22.759,6311.0,127.7,4.1,0.09,1.64,0.09,,,1.24,0.182434,"9,35,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6467,1,False,False,False -180931993,6468.01,,3,4,3,3,1,4,4,10.0,49.0,78.94,0,0,0,PC,PC,11.9468,0.006,,1,qlp-s62-faintsearch,QLP,08:39:59.33,-36:10:54.43,-9.155,0.044,9.102,0.047,2460007.96996,0.0029571,12.1228168,0.0001993,4.577,0.453,6.565716,0.352666,6029.0,324.765,10.5524,0.596611,202.591,1051.0,18.0,601.947,10.462,6799.0,136.4,4.28,0.09,1.45,0.06,,,1.46,0.241745,"8,35,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6468,1,False,False,False -4598935,6469.01,,3,4,3,3,1,4,4,4.2,36.4,37.74,5,0,0,PC,PC,11.4274,0.006,,1,qlp-s62-faintsearch,QLP,09:24:52.78,-39:01:51.51,-21.165,0.035,-16.522,0.039,2459972.631689,0.0062288,24.7104662,0.0001089,5.259,0.652,3.843788,0.20319,3534.0,187.127,6.84115,0.394095,38.4335,693.0,22.0,310.479,2.52,5876.0,124.0,4.32,0.08,1.18,0.06,,,1.06,0.137134,"8,9,35,36,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6469,1,False,False,False -12061971,6470.01,,3,4,3,3,1,4,4,7.4,38.1,65.18,0,0,0,PC,PC,12.1958,0.006,,1,qlp-s62-faintsearch,QLP,09:46:51.93,-35:12:23.4,-16.163,0.028,3.056,0.045,2459998.192483,0.0034628,13.7333847,8.73e-05,1.641,0.3,5.159716,0.479891,4741.0,441.898,9.42304,0.708267,17.2584,567.0,10.0,592.196,9.6485,6415.0,128.2,4.26,0.09,1.4,0.06,,,1.29,0.211969,"9,35,36,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6470,1,False,False,False -410901394,6471.01,,3,4,3,3,1,4,4,4.7,23.8,22.77,0,0,0,PC,PC,13.1352,0.006,,1,qlp-s62-faintsearch,QLP,07:08:45.79,-49:49:18.57,1.48,0.03,14.311,0.025,2460008.932044,0.0048295,3.0758364,1.56e-05,2.567,0.451,2.55013,0.199949,2346.0,184.143,5.09878,,558.588,1354.0,13.0,634.454,5.3325,5745.0,122.0,4.33,,1.15,,,,1.03,,"6,7,8,33,34,35,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6471,1,False,False,False -140706833,6472.01,,3,4,3,3,1,4,4,21.7,21.9,317.0,0,0,0,PC,PC,13.2967,0.01,,1,qlp-s62-faintsearch,QLP,08:33:51.37,-43:47:03.82,-9.808,0.036,16.47,0.031,2460011.106992,0.0048244,2.6808268,1.49e-05,4.872,0.688,7.026774,0.430427,6451.0,396.359,14.3489,,6752.98,2525.0,17.0,1056.18,21.135,7349.0,122.0,4.06,,2.0,,,,1.67,,"8,9,35,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6472,1,False,False,False -410303247,6473.01,,3,4,3,3,1,4,4,22.5,71.4,43.95,0,0,0,PC,PC,13.4379,0.007,,1,qlp-s62-faintsearch,QLP,09:59:53,-22:55:21.3,-25.73,0.062,-9.87,0.058,2460011.956516,0.0013308,1.0992893,1.9e-06,1.044,0.269,7.156823,0.665967,6570.0,613.19,7.47037,,719.668,1442.0,17.0,558.189,13.2845,5636.0,122.0,4.56,,0.87,,,,1.0,,"9,35,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6473,1,False,False,False -189097100,6474.01,,3,4,3,3,1,4,4,30.9,44.9,317.0,0,0,0,PC,PC,12.198,0.006,,1,qlp-s62-faintsearch,QLP,09:21:41.32,-29:06:29.08,-2.984,1.661,-1.816,2.251,2460012.369919,0.0036739,1.6069363,0.0004247,2.609,0.277,5.025543,0.219866,4618.0,202.484,,,10608.2,2827.0,24.0,1373.8,,8753.0,377.1,,,,,,,,,62,2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6474,1,False,False,False -132314633,6475.01,,3,4,3,3,1,4,4,11.6,23.6,317.0,0,0,0,PC,PC,12.3164,0.007,,1,qlp-s62-faintsearch,QLP,07:57:48.37,-40:44:11.19,-7.563,0.04,-26.069,0.051,2459997.919926,0.0033302,26.5988575,0.0001351,9.151,1.712,8.963824,0.631715,8222.0,581.662,15.707,0.929203,237.562,1093.0,34.0,624.824,9.8335,6685.0,134.4,4.17,0.09,1.62,0.07,,,1.42,0.23472,"7,8,34,35,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6475,1,False,False,False -380528770,6476.01,,3,4,3,3,1,4,4,12.0,48.2,83.38,0,0,0,PC,PC,12.5776,0.008,,1,qlp-s62-faintsearch,QLP,09:20:47.99,-18:40:02.89,-5.164,0.057,-2.41,0.052,2459998.505612,0.0024855,8.1168658,2.6e-05,5.237,0.625,8.277641,0.354581,7595.0,326.528,10.8668,0.649529,473.148,1299.0,33.0,696.339,16.331,6381.0,132.0,4.29,0.09,1.33,0.07,,,1.27,0.196068,"8,35,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6476,1,False,False,False -11927677,6477.01,,3,4,3,3,1,4,4,18.9,49.4,108.69,0,0,0,PC,PC,12.6602,0.009,,1,qlp-s62-faintsearch,QLP,09:44:36.07,-30:06:17.12,4.321,0.045,-2.282,0.05,2460006.687707,0.0023034,3.6860654,8.6e-06,3.531,0.3,7.235516,0.265431,6642.0,244.441,12.7501,0.729778,902.856,1527.0,36.0,883.135,21.6655,6206.0,125.7,4.02,0.08,1.76,0.09,,,1.19,0.166532,"9,35,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6477,1,False,False,False -332657786,6478.01,TIC 332657786.01,3,4,3,3,1,4,4,0.0,36.6,19.46,0,0,0,PC,PC,13.0041,0.008,,1,qlp-s62-faintsearch,QLP,09:59:58.03,-16:09:35.26,52.411,0.122,-172.313,0.093,2458536.766582,1.02e-05,1462.2115148,1e-06,3.105,0.004,37.788742,0.373071,34206.0,343.552,4.5351,0.139016,0.000341885,37.0,32.0,38.6057,0.1007,3275.0,157.0,5.01,0.02,0.23,0.01,,,0.204775,0.0201127,"8,35,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search; period likely shorter,6478,1,False,False,True -181208298,6479.01,,3,4,3,3,1,4,4,39.9,117.9,98.98,0,0,0,PC,PC,12.3987,0.006,,1,qlp-s62-faintsearch,QLP,08:42:55.72,-37:38:03.67,-11.875,0.041,13.073,0.04,2460008.643088,0.0005733,2.9193825,2.1e-06,1.507,0.094,12.971381,0.563075,11876.0,518.477,12.0124,0.632978,213.872,1065.0,46.0,455.749,5.5475,6037.0,129.4,4.43,0.08,1.06,0.05,,,1.12,0.149855,"8,35,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6479,1,False,False,False -81089255,6480.01,TIC 81089255.01,3,4,3,3,1,4,4,0.1,12.6,68.06,0,0,0,PC,PC,11.8409,0.006,,1,qlp-s62-faintsearch,QLP,08:10:46.58,-43:51:12.24,-12.784,0.044,19.85,0.045,2460010.445952,1.15e-05,750.2395535,1e-06,3.922,0.006,7.313121,0.189337,6713.0,174.371,9.68778,0.417459,0.0560777,135.0,21.0,564.158,8.164,7459.0,134.6,4.36,0.08,1.43,0.05,,,1.71,0.289006,"7,8,34,35,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search; period likely shorter,6480,1,False,False,True -101225566,6481.01,,3,4,3,3,1,4,4,8.7,46.0,33.73,0,0,0,PC,PC,12.5284,0.007,,1,qlp-s62-faintsearch,QLP,10:22:13.44,-14:03:07.74,-15.199,0.064,-9.434,0.069,2460007.897962,0.0027939,6.2796518,2.26e-05,2.26,0.565,5.433569,0.444973,4992.0,409.751,6.38573,0.497153,71.742,810.0,18.0,318.741,2.803,5159.0,125.2,4.47,0.08,0.9,0.05,,,0.87,0.104986,"9,35,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6481,1,False,False,False -189300053,6482.01,,3,4,3,3,1,4,4,0.0,5.4,317.0,0,0,0,PC,PC,13.1388,0.007,,1,qlp-s62-faintsearch,QLP,09:27:43.11,-24:57:54.1,-1.02,0.039,3.408,0.041,2458522.214136,1.07e-05,1483.5175058,1.1e-06,5.424,0.016,12.803279,0.231463,11723.0,213.163,17.4711,,0.020302,105.0,15.0,910.154,19.863,5782.0,122.0,4.06,,1.58,,,,1.04,,"8,35,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search; period likely shorter,6482,1,False,False,False -355449539,6483.01,,3,4,3,3,1,4,4,10.4,58.6,30.36,0,0,0,PC,PC,12.4716,0.006,,1,qlp-s62-faintsearch,QLP,07:21:12.28,-49:08:05.49,-0.048,0.028,24.305,0.024,2460007.257989,0.0014786,5.2076995,8.2e-06,0.887,0.34,4.695089,0.801571,4315.0,738.002,6.02778,0.58522,17.5447,570.0,16.0,242.223,0.738,4961.0,124.4,4.57,0.08,0.78,0.05,,,0.82,0.0926927,"7,8,33,34,35,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6483,1,False,False,False -294394558,6484.01,,2,4,2,2,1,4,4,1.7,28.7,14.22,0,0,0,PC,PC,12.0808,0.006,,1,qlp-s62-faintsearch,QLP,07:17:17.51,-54:07:01.89,-52.784,0.043,59.22,0.045,2459989.462343,0.0044143,18.2457829,0.0001212,3.64,0.468,3.433091,0.174376,3157.0,160.593,3.87217,0.291601,18.6783,579.0,22.0,212.659,0.9885,5057.0,132.6,4.58,0.09,0.78,0.05,,,0.84,0.10423,"6,7,8,9,33,34,35,36,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6484,1,False,False,False -281286325,6485.01,,3,4,3,3,1,4,4,9.4,16.6,317.0,0,0,0,PC,PC,13.4446,0.007,,1,qlp-s62-faintsearch,QLP,10:03:49.68,-19:16:57,-19.464,0.045,8.936,0.046,2460013.556944,0.0028603,17.0180939,5.26e-05,4.558,0.314,15.010442,0.617557,13730.0,568.629,14.5502,,49.0598,737.0,28.0,843.379,19.4355,5782.0,122.0,4.26,,1.26,,,,1.04,,"9,35,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6485,1,False,False,False -46772529,6486.01,,3,4,3,3,1,4,4,33.9,63.8,317.0,0,0,0,PC,PC,12.8397,0.006,,1,qlp-s62-faintsearch,QLP,09:26:53.48,-07:34:45.3,1.017,0.039,-34.002,0.041,2460011.847824,0.0006119,10.6332248,8.6e-06,3.436,0.17,40.436063,1.378783,36558.0,1269.1,15.9854,1.13442,26.5909,632.0,95.0,271.71,1.758,4678.0,117.5,4.5,0.09,0.81,0.06,,,0.746,0.088668,"8,35,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6486,1,False,False,False -37754672,6487.01,,3,4,3,3,1,4,4,7.4,36.0,69.76,0,0,0,PC,PC,12.1185,0.007,,1,qlp-s62-faintsearch,QLP,09:03:04,-29:16:50.56,0.657,0.046,-4.609,0.042,2459994.435005,0.0039199,14.13519,5.93e-05,2.273,0.916,4.202321,0.558936,3863.0,514.667,9.82212,0.872831,65.1514,791.0,13.0,633.364,11.748,6466.0,124.9,4.18,0.09,1.54,0.07,,,1.32,0.211548,"8,35,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6487,1,False,False,False -238124845,6488.01,,2,4,2,2,1,4,4,3.1,28.8,14.59,0,0,0,PC,PC,11.8187,0.006,,1,qlp-s62-faintsearch,QLP,07:02:23.33,-50:52:20.46,-10.161,0.039,1.174,0.04,2460010.258574,0.0054347,8.0850515,5.44e-05,2.817,0.664,1.652662,0.14085,1521.0,129.719,3.89202,0.293038,92.8495,864.0,15.0,298.567,1.7525,5560.0,131.7,4.41,0.08,1.02,0.05,,,0.98,0.126315,"6,7,8,33,34,35,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6488,1,False,False,False -423445163,6489.01,,2,4,2,2,1,4,4,5.2,40.5,9.65,0,0,0,PC,PC,12.5035,0.006,,1,qlp-s62-faintsearch,QLP,10:31:16.89,-18:48:30.76,5.011,0.056,-9.062,0.085,2460010.70579,0.0035151,2.917882,1.08e-05,1.483,0.248,2.10511,0.242309,1937.0,223.15,3.08813,0.29172,81.6812,837.0,11.0,186.872,1.761,4593.4,112.4,4.65,0.09,0.67,0.05,-0.0186559,0.0718954,0.726,0.0836591,"9,36,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6489,1,False,False,False -118754987,6490.01,,3,4,3,3,1,4,4,10.8,38.0,102.4,0,0,0,PC,PC,13.1011,0.007,,1,qlp-s62-faintsearch,QLP,08:58:19.67,-22:42:03.36,-4.271,0.034,3.613,0.024,2460012.251052,0.0036843,7.842208,3.71e-05,4.914,1.098,7.730756,0.499119,7095.0,459.6,12.3266,,527.439,1335.0,21.0,965.524,18.3345,6428.0,122.0,4.18,,1.53,,,,1.3,,"8,35,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6490,1,False,False,False -25212199,6491.01,,3,4,3,3,1,4,4,7.4,30.4,53.99,0,0,0,PC,PC,12.3727,0.006,,1,qlp-s62-faintsearch,QLP,09:34:06.11,-34:02:17.95,-1.845,0.035,-0.969,0.06,2459999.851216,0.0063981,7.5520411,4.62e-05,4.338,0.699,4.22194,0.220849,3881.0,203.389,8.43121,0.568397,306.311,1165.0,21.0,641.243,14.882,5936.0,125.1,4.07,0.08,1.58,0.08,,,1.08,0.138833,"8,9,35,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6491,1,False,False,False -47143972,6492.01,,3,4,3,3,1,4,4,0.0,21.5,105.75,0,0,0,PC,PC,14.2991,0.007,,1,qlp-s62-faintsearch,QLP,09:40:02.9,-10:58:37.8,-48.08,0.096,10.809,0.101,2459262.1237,9.4e-06,731.8319734,8e-07,2.747,0.004,51.599195,0.430939,46413.0,396.831,12.4424,0.397706,0.00158664,55.0,15.0,214.326,3.027,3556.0,157.0,4.7,0.01,0.54,0.02,,,0.540045,0.0209888,"35,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search; period likely shorter,6492,1,False,False,False -445522339,6493.01,,2,4,2,2,1,4,4,7.7,57.4,11.36,0,0,0,PC,PC,12.4802,0.008,,1,qlp-s62-faintsearch,QLP,07:31:55.51,-49:08:02.84,-18.86,0.038,147.717,0.033,2460007.949022,0.0015254,3.0667073,6.7e-06,1.486,0.287,3.803474,0.263524,3497.0,242.685,3.39378,0.171446,37.0044,687.0,21.0,104.516,0.213,3808.0,157.0,4.68,0.01,0.57,0.02,,,0.560346,0.0202209,"7,8,34,35,61,62",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6493,1,False,False,False -438376091,6494.01,,3,4,3,3,1,4,4,,,317.0,0,0,0,PC,PC,12.2137,0.012,,1,qlp-s63-faintsearch,QLP,09:29:29.41,-54:25:59.33,-7.409,0.052,6.046,0.054,2460037.919088,0.0023325,3.5327892,8.8e-06,2.093,0.277,4.906655,0.281,4509.0,258.777,,,1406.91,1706.0,25.0,1136.24,33.84,8706.0,286.3,,,,,,,,,"9,10,35,37,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6494,1,False,False,False -36808091,6495.01,,3,4,3,3,1,4,4,13.6,37.4,93.55,0,0,0,PC,PC,12.973,0.006,,1,qlp-s63-faintsearch,QLP,10:02:52.63,-46:22:28.99,-7.35,0.027,4.193,0.026,2460034.982322,0.0035278,3.7781679,1.6e-05,4.416,0.498,6.135426,0.289499,5635.0,266.603,11.6911,0.710894,1317.34,1678.0,21.0,966.05,15.891,6118.0,134.1,4.0,0.08,1.77,0.09,,,1.15,0.151941,"9,36,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6495,1,False,False,False -374741750,6496.01,,3,4,3,3,1,4,4,,,63.8,0,0,0,PC,PC,13.1263,0.01,,1,qlp-s63-faintsearch,QLP,10:04:11.74,-60:07:34.43,-6.015,0.041,3.83,0.038,2460037.882769,0.0023357,0.9942215,2.3e-06,2.554,0.188,7.952758,0.318906,7298.0,293.68,,,,,29.0,1713.43,63.26,,,,,,,,,,,"9,10,36,37,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6496,1,False,False,False -303426966,6497.01,,3,4,3,3,1,4,4,43.9,54.3,317.0,0,0,0,PC,PC,13.1074,0.006,,1,qlp-s63-faintsearch,QLP,10:56:34.02,-57:42:15.94,-9.537,0.03,3.586,0.027,2460035.301628,0.0016026,2.1439841,5.1e-06,1.793,0.264,14.627414,0.91414,13382.0,841.6,16.8452,,968.251,1554.0,21.0,957.246,19.1395,6788.0,122.0,4.29,,1.44,,,,1.46,,"10,37,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6497,1,False,False,False -371596277,6498.01,,3,4,3,3,1,4,4,8.8,63.5,98.71,0,0,0,PC,PC,13.0303,0.006,,1,qlp-s63-faintsearch,QLP,09:51:32.48,-67:06:46.97,22.363,0.022,-30.381,0.023,2460031.276647,0.0042571,22.5095172,9.67e-05,4.509,0.435,28.82446,1.178142,26199.0,1084.52,12.0156,,14.3836,542.0,27.0,332.357,1.4115,4952.0,122.0,4.5,,0.84,,,,0.82,,"10,11,36,37,38,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6498,1,False,False,False -45881495,6499.01,,3,4,3,3,1,4,4,8.6,55.8,73.88,0,0,0,PC,PC,14.6334,0.007,,1,qlp-s63-faintsearch,QLP,09:58:33.04,-37:42:27.3,-6.592,0.047,-13.121,0.066,2460024.214602,0.0019577,9.0441543,3.95e-05,1.196,0.177,27.495142,3.403608,25006.0,3129.93,10.2153,0.673387,1.72908,319.0,10.0,260.803,3.1105,3642.0,157.0,4.68,0.01,0.57,0.02,,,0.559986,0.020689,"35,36,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6499,1,False,False,False -72806004,6500.01,,3,4,3,3,1,4,4,15.9,65.7,46.71,0,0,0,PC,PC,11.9865,0.006,,1,qlp-s63-faintsearch,QLP,10:10:16.2,-40:38:50.5,-16.026,0.037,26.687,0.045,2460038.185655,0.0017693,4.4156851,9.5e-06,1.091,0.599,3.442894,2.421012,3166.0,2227.35,7.75741,2.13739,143.363,964.0,12.0,343.112,3.4655,5599.0,129.2,4.35,0.08,1.1,0.06,,,0.99,0.124496,"9,36,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6500,1,False,False,False -35973654,6501.01,,3,4,3,3,1,4,4,10.9,37.6,61.37,0,0,0,PC,PC,12.834,0.006,,1,qlp-s63-faintsearch,QLP,09:57:27.67,-42:51:40.25,-26.728,0.032,3.759,0.03,2460035.416251,0.003487,4.4581792,2.5e-05,3.561,0.602,5.545966,0.310609,5095.0,286.041,9.08219,0.580344,599.933,1378.0,20.0,709.759,9.6485,5973.0,131.1,4.17,0.08,1.43,0.07,,,1.1,0.150953,"9,36,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6501,1,False,False,False -75580659,6502.01,,3,4,3,3,1,4,4,14.0,16.9,317.0,0,0,0,PC,PC,12.9544,0.008,,1,qlp-s63-faintsearch,QLP,09:16:41.32,-44:35:05.31,-8.347,0.025,6.626,0.025,2460030.946212,0.0035334,5.0711656,2.64e-05,6.032,0.526,5.796994,0.22029,5325.0,202.874,15.3998,0.799926,2760.2,2019.0,26.0,1355.12,30.455,7304.0,142.9,3.88,0.08,2.43,0.1,,,1.65,0.274523,"8,9,35,36,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6502,1,False,False,False -358838026,6503.01,,3,4,3,3,1,4,4,16.0,38.9,121.42,0,0,0,PC,PC,12.9435,0.006,,1,qlp-s63-faintsearch,QLP,10:06:26.67,-47:01:27.41,-0.991,0.03,-3.382,0.028,2460032.665492,0.0042563,3.9535041,1.4e-05,3.684,0.329,7.072672,0.303469,6493.0,279.466,13.6119,0.8431,835.02,1497.0,22.0,1079.16,21.24,6166.0,130.2,3.91,0.09,1.98,0.1,,,1.17,0.163457,"9,10,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6503,1,False,False,False -177257073,6504.01,,3,4,3,3,1,4,4,7.3,26.8,62.49,0,0,0,PC,PC,13.2222,0.006,,1,qlp-s63-faintsearch,QLP,06:49:10.31,-76:14:44.59,1.767,0.029,-2.053,0.03,2460040.002324,0.0026017,6.8328077,1.74e-05,5.311,0.286,4.846671,0.143748,4454.0,132.388,9.18199,,410.019,1253.0,45.0,789.385,11.6265,5657.0,122.0,4.11,,1.45,,,,1.0,,"1,3,4,5,6,7,8,9,10,11,13,27,28,29,30,31,32,33,34,35,36,37,38,39,61,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6504,1,False,False,False -376800517,6505.01,,3,4,3,3,1,4,4,7.4,69.9,98.32,0,0,0,PC,PC,14.1994,0.007,,1,qlp-s63-faintsearch,QLP,10:13:52.93,-63:29:24.52,3.266,0.044,-12.664,0.044,2460020.4559,0.0037199,15.8951857,0.0002036,3.711,0.602,45.250845,4.106388,40821.0,3774.98,11.9336,0.724781,6.40691,443.0,14.0,231.356,1.3005,3792.0,157.0,4.67,0.01,0.57,0.02,,,0.56621,0.0203872,"37,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6505,1,False,False,False -469008497,6506.01,,3,4,3,3,1,4,4,8.6,49.0,68.08,0,0,0,PC,PC,13.0582,0.006,,1,qlp-s63-faintsearch,QLP,09:36:15.69,-49:14:44.43,-19.404,0.028,24.23,0.027,2460015.235883,0.0026358,13.0795854,4.75e-05,4.918,0.373,13.109836,0.574995,12002.0,529.45,9.66071,,83.886,843.0,26.0,435.115,3.2795,5555.0,122.0,4.5,,0.92,,,,0.98,,"9,35,36,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6506,1,False,False,False -54145416,6507.01,,3,4,3,3,1,4,4,8.1,43.6,30.75,0,0,0,PC,PC,12.9845,0.006,,1,qlp-s63-faintsearch,QLP,10:42:24.66,-30:14:59.75,-8.798,0.034,7.688,0.035,2460034.719502,0.0031573,5.267165,1.96e-05,1.743,0.434,5.597258,0.562481,5142.0,517.93,6.02919,0.512482,48.3829,734.0,12.0,322.179,2.4255,4930.0,126.8,4.54,0.09,0.8,0.05,,,0.81,0.0979164,"9,36,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6507,1,False,False,False -142277868,6508.01,,3,4,3,3,1,4,4,2.5,287.1,71.85,0,0,0,PC,PC,14.3088,0.008,,1,qlp-s63-faintsearch,QLP,12:03:03.42,-33:39:55.8,-413.185,0.129,-35.015,0.078,2460038.984559,3.09e-05,18.9926881,7e-07,1.506,0.001,274.940021,1.117417,223710.0,1028.65,10.231,0.309282,0.172006,179.0,56.0,48.4666,0.22785,3003.0,157.0,5.05,0.02,0.21,0.01,,,0.174017,0.0200756,"37,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6508,1,False,False,False -358164738,6509.01,,3,4,3,3,1,4,4,22.5,25.0,317.0,0,0,0,PC,PC,12.0622,0.006,,1,qlp-s63-faintsearch,QLP,09:16:25.45,-63:38:27.83,-5.101,0.045,2.106,0.043,2460035.128051,0.0016443,5.6022404,1e-05,6.027,0.231,4.749612,0.12158,4365.0,111.973,16.2862,0.851652,1136.7,1617.0,61.0,900.01,18.212,6237.0,130.0,3.73,0.08,2.49,0.12,,,1.21,0.164607,"9,10,11,36,37,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6509,1,False,False,False -361154154,6510.01,,3,4,3,3,1,4,4,4.1,32.3,73.65,0,0,0,PC,PC,12.2544,0.006,,1,qlp-s63-faintsearch,QLP,09:34:46.21,-63:44:07.84,-20.116,0.059,9.545,0.049,2459987.504092,0.0042109,37.98781,0.0002483,4.309,0.431,8.499755,0.415432,7798.0,382.554,10.1109,0.626495,10.8495,505.0,22.0,501.914,7.49,5983.0,134.4,4.26,0.08,1.29,0.06,,,1.1,0.146284,"9,11,36,37,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6510,1,False,False,False -303030789,6511.01,,3,4,3,3,1,4,4,5.2,37.0,65.03,0,0,0,PC,PC,12.7121,0.006,,1,qlp-s63-faintsearch,QLP,10:20:39.41,-69:29:18.12,-7.245,0.025,2.262,0.022,2460001.825924,0.0039211,21.5962209,9.13e-05,4.511,0.44,10.052538,0.511919,9216.0,471.384,9.42089,0.568296,37.4782,689.0,23.0,539.43,4.1185,6012.0,129.9,4.41,0.08,1.09,0.05,,,1.11,0.144234,"10,11,37,38,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6511,1,False,False,False -72542944,6512.01,,3,4,3,3,1,4,4,19.6,20.3,317.0,0,0,0,PC,PC,13.1724,0.006,,1,qlp-s63-faintsearch,QLP,10:06:21.1,-39:05:31.27,-8.707,0.023,1.796,0.027,2460038.289329,0.0018742,2.5011016,1.21e-05,1.366,0.263,5.053903,0.462523,4644.0,425.909,15.7428,,368.009,1220.0,11.0,1515.49,45.16,6421.0,122.0,3.84,,2.25,,,,1.29,,"36,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6512,1,False,False,False -29780740,6513.01,,3,4,3,3,1,4,4,24.8,64.4,71.01,0,0,0,PC,PC,14.8212,0.008,,1,qlp-s63-faintsearch,QLP,04:19:50.72,-69:51:15.14,4.098,0.095,12.908,0.104,2460037.851741,0.0013347,2.4214702,5.5e-06,1.395,0.138,22.931265,1.372771,20899.0,1263.57,9.94252,0.451893,33.5202,670.0,27.0,340.166,6.147,3642.0,157.0,4.62,0.01,0.64,0.02,,,0.618525,0.0213523,"31,35,36,37,39,61,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6513,1,False,False,False -439618305,6514.01,,3,4,3,3,1,4,4,30.7,54.2,317.0,0,0,0,PC,PC,11.9783,0.013,,1,qlp-s63-faintsearch,QLP,09:34:05.74,-54:54:19.51,-9.713,0.057,7.368,0.05,2460034.691388,0.0012623,4.0236761,6.7e-06,5.03,0.168,6.769999,0.151335,6216.0,139.375,16.953,0.68278,9268.26,2733.0,55.0,965.229,32.375,9833.0,293.9,4.18,0.06,2.14,0.08,,,2.51,0.314576,"9,10,36,37,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6514,1,False,False,False -101961987,6515.01,,3,4,3,3,1,4,4,14.5,34.0,115.92,0,0,0,PC,PC,13.3092,0.006,,1,qlp-s63-faintsearch,QLP,10:14:51.41,-43:30:54.58,-0.517,0.029,3.094,0.032,2460034.628679,0.0043765,3.8149372,1.77e-05,4.366,0.572,7.019124,0.337095,6444.0,310.428,13.2182,,963.383,1552.0,22.0,1093.34,23.27,5709.0,122.0,3.89,,1.89,,,,1.02,,"9,36,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6515,1,False,False,False -446524637,6516.01,,3,4,3,3,1,4,4,5.0,25.6,77.9,0,0,0,PC,PC,13.1386,0.006,,1,qlp-s63-faintsearch,QLP,10:23:32.72,-52:57:12.08,-14.586,0.031,5.475,0.03,2460018.647355,0.0099328,18.8392786,0.0002219,4.036,1.321,7.014753,0.763782,6440.0,703.222,10.5098,,46.6035,727.0,12.0,762.45,10.9435,5972.0,122.0,4.18,,1.42,,,,1.1,,"9,10,36,37,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6516,1,False,False,False -5709314,6517.01,,3,4,3,3,1,4,4,11.2,53.9,30.79,0,0,0,PC,PC,12.3947,0.006,,1,qlp-s63-faintsearch,QLP,09:34:22.96,-41:31:32.78,-16.312,0.04,6.583,0.044,2460038.98992,0.0017155,2.6185048,4.8e-06,1.096,0.261,3.831802,0.367357,3523.0,338.291,6.08823,0.454911,235.909,1091.0,16.0,461.438,6.0005,6478.0,135.0,4.53,0.09,1.04,0.05,,,1.32,0.208111,"9,35,36,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6517,1,False,False,False -139314045,6518.01,,3,4,3,3,1,4,4,33.2,23.0,317.0,0,0,0,PC,PC,12.5611,0.006,,1,qlp-s63-faintsearch,QLP,10:07:20.33,-53:20:35.9,-16.947,0.033,12.875,0.032,2460035.739125,0.0032143,2.1978944,6.2e-06,1.619,0.341,3.483194,0.300747,3203.0,276.96,15.7016,,292.313,1151.0,16.0,802.838,11.9545,5147.0,122.0,,,2.61,,,,,,"9,10,36,37,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6518,1,False,False,False -188128470,6519.01,,3,4,3,3,1,4,4,,,124.07,0,0,0,PC,PC,11.5447,0.008,,1,qlp-s63-faintsearch,QLP,10:48:40.51,-24:43:09.94,-15.365,0.076,8.286,0.056,2460026.546049,0.0023494,10.397262,3.06e-05,9.97,0.518,3.417843,0.097042,3143.0,89.375,13.8002,,371.029,1222.0,48.0,521.207,10.7815,4953.5,75.8,,,2.47,,0.152673,0.0869542,,,"9,36,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6519,1,False,False,False -382688257,6520.01,,3,4,3,3,1,4,4,,,317.0,0,0,0,PC,PC,12.7216,0.02,,1,qlp-s63-faintsearch,QLP,09:09:09.72,-51:04:26.24,-1.38,0.031,0.438,0.029,2460029.644705,0.0042854,7.6016156,3.73e-05,2.116,0.589,3.228346,0.38551,2969.0,355.005,19.3547,1.91447,44.5994,719.0,10.0,1261.35,30.0,5200.0,190.2,,,3.38,0.25,,,,,"8,9,35,36,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6520,1,False,False,False -382187347,6521.01,,3,4,3,3,1,4,4,27.3,79.8,102.98,0,0,0,PC,PC,14.9198,0.008,,1,qlp-s63-faintsearch,QLP,05:24:57.02,-57:02:07.72,-4.119,0.069,-1.44,0.089,2460033.08159,0.0009768,3.581253,5.9e-06,1.874,0.102,46.011778,1.949332,41493.0,1793.79,12.2522,0.489378,31.7588,661.0,40.0,358.254,3.9705,3873.0,157.0,4.66,0.01,0.58,0.02,,,0.575212,0.0208875,"31,36,37,39,61,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6521,1,False,False,False -71674064,6522.01,,3,4,3,3,1,4,4,9.6,58.8,20.13,0,0,0,PC,PC,11.3742,0.006,,1,qlp-s63-faintsearch,QLP,10:25:36.74,-32:35:34.18,-7.356,0.045,-46.227,0.05,2460034.344843,0.0025481,4.7383479,1.82e-05,1.935,1.115,2.002858,1.662448,1843.0,1530.0,4.7507,1.55542,453.403,1285.0,13.0,182.154,0.985,5109.0,130.1,4.48,0.09,0.89,0.05,,,0.86,0.107121,"9,36,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6522,1,False,False,False -167720788,6523.01,,3,4,3,3,1,4,4,18.9,59.0,127.6,0,0,0,PC,PC,12.8603,0.006,,1,qlp-s63-faintsearch,QLP,06:53:36.67,-64:26:14.65,-1.071,0.03,11.827,0.027,2460033.568724,0.0008999,7.809463,6.5e-06,4.133,0.065,12.27168,0.147637,11239.0,135.969,14.0451,0.661369,214.334,1065.0,129.0,708.281,5.8605,5816.0,65.7,4.32,,1.33,0.06,,,1.1,0.150173,"1,3,4,5,6,7,8,9,10,11,13,27,28,30,31,32,33,34,35,36,37,38,39,61,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6523,1,False,False,False -356921678,6524.01,,3,4,3,3,1,4,4,207.9,141.0,317.0,0,0,0,PC,PC,14.478,0.007,,1,qlp-s63-faintsearch,QLP,09:02:13.69,-62:38:49.41,-11.101,0.178,-7.981,0.14,2460039.991677,0.0003559,0.8515408,5e-07,0.648,0.076,56.855063,7.520257,51018.0,6902.48,16.072,0.914562,37.4851,689.0,53.0,200.435,3.2695,3254.0,157.0,4.7,0.01,0.54,0.02,,,0.536065,0.0210891,"35,36,37,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6524,1,False,False,False -147193084,6525.01,,3,4,3,3,1,4,4,0.1,6.8,317.0,0,0,0,PC,PC,13.463,0.006,,1,qlp-s63-faintsearch,QLP,10:49:05.04,-45:05:07.97,-22.791,0.03,-1.281,0.032,2460018.452985,1.19e-05,731.3548427,9e-07,3.429,0.004,20.98576,0.210797,19143.0,194.132,15.334,,0.0186537,102.0,17.0,703.497,9.2645,5794.0,122.0,4.36,,1.12,,,,1.04,,"9,10,36,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search; period likely shorter,6525,1,False,False,False -57694405,6526.01,,3,4,3,3,1,4,4,5.6,38.0,45.9,0,0,0,PC,PC,12.6161,0.006,,1,qlp-s63-faintsearch,QLP,11:36:30.15,-31:32:06.52,11.838,0.028,-15.5,0.022,2460026.901592,0.0036419,14.7478214,6.57e-05,2.355,0.845,6.637812,0.729196,6095.0,671.389,7.68311,0.649392,16.3125,559.0,17.0,355.397,3.1645,5167.0,122.3,4.41,0.08,0.96,0.05,,,0.87,0.108764,"10,36,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6526,1,False,False,False -437774844,6527.01,,3,4,3,3,1,4,4,24.1,32.2,317.0,0,0,0,PC,PC,14.7698,0.008,,1,qlp-s63-faintsearch,QLP,09:26:26.75,-59:40:24.52,-20.747,0.083,-13.751,0.074,2460037.607112,0.0020189,5.389491,2.07e-05,2.0,0.208,54.765648,3.290843,49190.0,3026.39,14.3807,0.720163,10.8749,505.0,21.0,336.274,4.8295,3493.0,157.0,4.6,0.01,0.67,0.02,,,0.638258,0.0208159,"36,37,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6527,1,False,False,False -363417404,6528.01,,3,4,3,3,1,4,4,0.0,10.5,59.59,0,0,0,PC,PC,13.2466,0.007,,1,qlp-s63-faintsearch,QLP,10:57:11.18,-27:31:25.31,6.936,0.04,-15.64,0.038,2458551.974298,9.3e-06,1484.1934287,1.1e-06,3.05,0.003,14.723158,0.228313,13469.0,210.262,8.94439,,0.00244304,61.0,15.0,449.808,6.3255,5602.0,122.0,4.63,,0.8,,,,0.99,,"9,36,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search; period likely shorter,6528,1,False,False,False -54238138,6529.01,,2,4,2,2,1,4,4,2.4,34.4,5.49,0,0,0,PC,PC,10.8273,0.006,,1,qlp-s63-faintsearch,QLP,10:43:47.76,-33:09:18.1,-116.265,0.047,-13.005,0.049,2460035.361451,0.0049825,7.4476397,3.83e-05,2.266,0.602,1.109103,0.108545,1021.0,99.9684,2.1911,0.224523,32.4591,664.0,12.0,92.6712,0.2802,4526.0,121.1,4.56,0.1,0.73,0.06,,,0.71,0.0872258,"9,36,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6529,1,False,False,True -49066806,6530.01,,2,4,2,2,1,4,4,5.1,51.2,8.81,0,0,0,PC,PC,11.213,0.006,,1,qlp-s63-faintsearch,QLP,10:58:42.31,-35:20:27.86,-94.99,0.038,13.069,0.047,2460031.360183,0.0032883,5.332805,2.84e-05,2.142,0.911,1.950648,0.236545,1795.0,217.842,2.92256,0.347358,56.7571,764.0,14.0,86.8636,0.29595,4189.0,123.7,4.57,0.11,0.7,0.06,,,0.66,0.0783168,"9,36,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6530,1,False,False,False -297853363,6531.01,,3,4,3,3,1,4,4,18.6,17.7,317.0,0,0,0,PC,PC,13.2786,0.006,,1,qlp-s63-faintsearch,QLP,09:29:58.37,-50:43:30.67,-8.703,0.033,7.253,0.029,2460037.428926,0.0043207,4.416076,2.54e-05,4.677,0.416,8.304992,0.382697,7620.0,352.415,16.839,,537.53,1341.0,25.0,1111.68,22.65,5186.0,122.0,,,2.32,,,,,,"9,10,35,36,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6531,1,False,False,False -72542131,6532.01,,3,4,3,3,1,4,4,40.8,62.9,317.0,0,0,0,PC,PC,12.4974,0.006,,1,qlp-s63-faintsearch,QLP,10:06:43.46,-39:42:38.79,-11.342,0.032,7.405,0.039,2460037.030104,0.0006612,5.4736892,4.8e-06,2.699,0.154,15.957587,0.547377,14590.0,504.026,18.8155,1.03592,217.531,1069.0,66.0,682.391,11.484,6229.4,130.4,4.17,0.09,1.5,0.08,0.110657,0.0848795,1.2,0.171828,"9,36,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6532,1,False,False,False -464544047,6533.01,,3,4,3,3,1,4,4,11.9,48.0,86.9,0,0,0,PC,PC,13.2022,0.008,,1,qlp-s63-faintsearch,QLP,10:26:28.16,-56:32:43.93,-8.173,0.032,4.716,0.03,2460036.616077,0.0031671,2.8656356,1.08e-05,3.523,0.386,6.020784,0.290879,5530.0,267.874,11.1837,,6267.38,2478.0,23.0,1350.5,38.29,8849.0,123.0,4.4,,1.56,,,,2.23,,"9,10,36,37,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6533,1,False,False,False -459604398,6534.01,,3,4,3,3,1,4,4,,,131.44,0,0,0,PC,PC,12.4454,0.019,,1,qlp-s63-faintsearch,QLP,10:52:21.83,-56:15:50.04,-8.176,0.062,2.39,0.072,2460035.270028,0.0066012,3.4542618,3.82e-05,3.93,0.484,5.817733,0.242076,5344.0,222.935,,,,,27.0,1102.52,44.775,,,,,,,,,,,"36,37,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6534,1,False,False,False -46104747,6535.01,,3,4,3,3,1,4,4,3.5,23.0,44.71,0,0,0,PC,PC,11.7347,0.006,,1,qlp-s63-faintsearch,QLP,08:48:05.62,-58:45:30.76,-9.078,0.055,2.321,0.04,2460020.202715,0.0059478,20.8359197,0.0001229,3.321,0.588,2.664406,0.198762,2451.0,183.05,7.56184,0.538369,40.967,704.0,13.0,637.497,10.142,6838.0,135.4,4.14,0.09,1.71,0.07,,,1.48,0.249408,"8,9,10,35,36,37,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6535,1,False,False,False -280647591,6536.01,,3,4,3,3,1,4,4,6.5,32.8,34.15,0,0,0,PC,PC,13.4696,0.006,,1,qlp-s63-faintsearch,QLP,09:37:25.9,-48:16:30.83,-17.389,0.032,10.659,0.031,2460031.461041,0.0052097,4.2380294,3.94e-05,3.699,0.57,5.113899,0.411781,4699.0,379.192,6.48085,,695.384,1430.0,14.0,643.227,8.402,6030.0,122.0,4.5,,0.99,,,,1.12,,"9,35,36,62,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6536,1,False,False,False -80384677,6537.01,,2,4,2,2,1,4,4,4.9,34.0,13.79,0,0,0,PC,PC,12.131,0.047,,1,qlp-s63-faintsearch,QLP,11:00:33.65,-49:04:38.38,,,,,2460033.390882,0.0059689,3.6477926,2.82e-05,2.667,0.51,1.89844,0.174959,1747.0,161.13,3.9626,0.324388,252.255,1110.0,8.0,428.196,,5005.4,140.4,,,0.98,0.05,,,,,"10,36,37,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6537,1,False,False,False -306248357,6538.01,,3,4,3,3,1,4,4,10.8,38.2,66.55,0,0,0,PC,PC,11.9319,0.006,,1,qlp-s63-faintsearch,QLP,11:06:13.9,-54:34:23.71,-6.907,0.05,0.648,0.051,2460037.150566,0.0037761,5.7180689,2.47e-05,5.215,0.451,3.11401,0.16176,2864.0,148.975,9.5585,0.579763,860.489,1508.0,22.0,666.515,16.142,6219.0,130.3,3.99,0.09,1.83,0.09,,,1.2,0.172206,"10,37,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6538,1,False,False,False -310497279,6539.01,,3,4,3,3,1,4,4,15.2,18.2,317.0,0,0,0,PC,PC,13.2487,0.006,,1,qlp-s63-faintsearch,QLP,10:10:43.43,-48:16:21.47,-7.077,0.028,2.503,0.036,2460036.316219,0.0037724,2.3645949,9e-06,2.442,0.691,5.72932,0.537023,5263.0,494.494,14.3865,,3031.27,2067.0,15.0,1724.86,52.4,7743.0,122.0,4.09,,2.02,,,,1.83,,"9,10,36,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6539,1,False,False,False -142171554,6540.01,,3,4,3,3,1,4,4,13.0,41.0,80.42,0,0,0,PC,PC,13.4905,0.006,,1,qlp-s63-faintsearch,QLP,11:59:54.67,-30:13:17.76,-15.249,0.038,3.911,0.02,2460035.449501,0.0034864,4.5127799,1.89e-05,3.11,0.339,8.122297,0.57697,7453.0,531.268,10.6956,,316.305,1174.0,14.0,796.484,18.5915,5643.0,122.0,4.25,,1.25,,,,1.0,,"10,37,63",2023-06-15,2023-06-15,2023-06-16 12:14:51,found in faint-star QLP search,6540,1,False,False,False -457337619,6541.01,,2,4,2,2,1,4,4,1.6,6.6,1.37,0,0,0,PC,PC,9.1069,0.006,,1,qlp-s64-ffi,QLP,10:28:58.44,-58:47:38.9,117.517,0.051,-86.01,0.054,2460065.150815,0.0092884,5.8991458,0.0001306,4.815,0.829,0.298619,0.025942,275.0,23.8932,1.10037,0.100661,449.719,1282.0,9.0,64.4175,0.1177,5419.4,138.3,4.65,0.09,0.76,0.05,,,0.94,0.116044,"36,37,63,64",2023-06-15,2023-06-15,2023-06-16 12:14:51,low SNR; multiple stars in pixel; possible centroid offset towards W,6541,1,False,False,False -255851356,6542.01,,5,5,5,5,5,5,5,50.8,138.0,74.14,0,0,0,PC,FP,9.9747,0.006,,1,qlp-s64-ffi,QLP,13:14:19.74,-59:41:32.1,-53.253,0.035,-15.592,0.039,2460065.683162,0.0059521,2.4018591,3.16e-05,3.471,1.279,0.71139,1.802939,655.0,1659.19,10.1612,3.45898,25813.2,3531.0,14.0,260.511,1.9645,6071.0,128.5,3.95,0.08,1.86,0.09,,,1.13,0.149759,"38,64",2023-06-15,2023-06-15,2023-07-08 12:03:08,slightly asymmetric transit shape; two stars in pixel,6542,1,False,False,False -390151888,6543.01,,1,4,1,1,1,4,4,4.3,52.4,12.37,0,0,0,PC,PC,9.2889,0.006,,1,qlp-s64-ffi,QLP,12:14:26.75,-58:03:31.64,84.33,0.045,-35.821,0.038,2460067.846787,0.0112711,15.5523703,0.000124,5.554,1.857,0.785271,0.403712,723.0,371.763,3.54892,0.899163,861.828,1509.0,18.0,115.665,0.4485,5759.0,128.6,4.31,0.07,1.18,0.06,,,1.03,0.12786,"10,11,37,38,64",2023-06-15,2023-06-15,2023-06-16 12:14:51,variable host; possible unrelated transits in s10 + s37 + s38+ s64,6543,1,False,False,False -161738745,6544.01,,3,4,3,3,1,4,4,,,317.0,0,0,0,PC,PC,9.6235,0.006,,1,qlp-s64-ffi,QLP,12:40:37.94,-48:08:26.69,-12.4,1.8,1.9,1.7,2460067.409044,0.0023463,3.6249482,8.6e-06,2.294,0.718,0.812435,0.04571,748.0,42.0998,5.1321,0.279664,332.475,1189.0,17.0,,,4935.7,100.9,,,1.94,0.08,-0.23,0.09,,,"10,11,37,64",2023-06-15,2023-06-15,2023-06-16 12:14:51,evolved variable host; multiple stars in pixel,6544,1,False,False,False -72504017,6545.01,,3,4,3,3,1,4,4,,,,0,0,0,PC,PC,9.74,0.006,,1,qlp-s64-ffi,QLP,12:30:36.37,-43:57:12.82,-33.444,0.055,2.099,0.051,2460067.553154,0.0037309,5.6177467,3.55e-05,2.307,0.599,0.727687,0.062098,670.0,57.1926,5.60938,0.452494,233.759,1089.0,11.0,346.576,4.607,6315.0,124.3,3.74,0.08,2.48,0.11,,,1.24,0.181787,"10,37,64",2023-06-29,2023-06-29,2023-07-15 12:11:42,slightly evolved host,6545,1,False,False,True -9385460,6546.01,,5,5,5,5,5,5,5,,,,0,0,0,KP,KP,12.5329,0.008,,1,spoc-s64-b02,SPOC,12:46:48.68,-24:25:38.6,-1.156,0.056,-2.219,0.048,2460044.202478,0.001712831,3.37796143335662,0.00047814465,4.2709189187804,0.12811731,7.844209,0.26954,7198.74711253128,248.2248,14.3326751107228,0.9640704,1619.40597435977,1617.92611063806,17.646152,773.974,19.819,6113.0,133.074,4.05769,0.0900418,1.66164994239807,0.0947234,,,1.15,0.156014,64,2023-06-29,2023-06-29,2023-07-15 12:11:42,HATS-31 b,6546,1,False,False,True -915110182,6547.01,,5,5,5,5,5,5,5,,,,0,0,0,KP,KP,14.7028,0.008,,1,spoc-s64-b02,SPOC,10:52:24.25,-61:26:48.69,-14.942,0.05,9.878,0.053,2460042.540561,0.003437063,1.4328254862015,0.00034632548,2.07185183067293,0.27360955,56.936795,5.071341,51089.4348603512,4659.986,18.2238418133032,2.0446618,528.414703201908,1222.8226457065,9.99859,566.459,11.2695,4588.0,124.0,4.47637,,0.817543983459473,,,,0.73,,"63,64",2023-06-29,2023-06-29,2023-07-15 12:11:42,OGLE-TR-113 b,6547,1,False,False,True -302212110,6548.01,TIC 302212110.01,3,4,3,3,1,4,4,,,,0,0,0,PC,PC,12.4715,0.006,,1,spoc-s64-b02,SPOC,08:51:04.29,-69:20:39.04,-5.719,0.038,9.124,0.035,2460047.264124,0.0038049878,8.5473,0.00029,3.54510319187053,0.33943254,3.106596,0.279835,2857.19123787129,257.7042,10.3970348726536,1.5380366,742.918712457266,1331.54262620713,9.716477,971.803,20.54,6619.0,130.1,4.02,0.09,1.89910995960236,0.0898845,,,1.39,0.244508,"11,63,64",2023-06-29,2023-06-29,2023-07-15 12:11:42,possibly V-shaped,6548,1,False,False,True -290777444,6549.01,TIC 290777444.01,3,4,3,3,1,4,4,,,,0,0,0,PC,PC,12.2311,0.006,,1,spoc-64-b02,SPOC,05:39:26.16,-52:55:59.92,-4.796,0.036,10.935,0.041,2460042.872187,0.0011785898,6.10790665018568,0.0004938387,5.19998680911887,0.08962485,16.092796,0.391312,14712.70754456,360.3468,19.3044393268744,1.0556351,527.414710809305,1222.24370549051,25.415627,575.271,7.359,5681.0,128.22,4.0558,0.0778109,1.56061995029449,0.0801985,,,1.01,0.12824,64,2023-06-29,2023-06-29,2023-07-15 12:11:42,Gaia DR3 NSS SB1 list has a 13 km/s signal at P ~7.6 d,6549,1,False,False,True diff --git a/src/tess_atlas/data/exofop/constants.py b/src/tess_atlas/data/exofop/constants.py index 8da1ed6b..46b74092 100644 --- a/src/tess_atlas/data/exofop/constants.py +++ b/src/tess_atlas/data/exofop/constants.py @@ -5,10 +5,10 @@ TIC_SEARCH = EXOFOP + "target.php?id={tic_id}" DIR = os.path.dirname(__file__) +TIC_CACHE_URL = "https://tess-atlas.github.io/exofop_data/exofop_data.csv" TIC_CACHE = os.path.join(DIR, "cached_tic_database.csv") -TIC_OLD_CACHE = TIC_CACHE + ".old" -LK_AVAIL = "Lightcurve Availible" +LK_AVAIL = "Lightcurve Available" TIC_ID = "TIC ID" TOI = "TOI" # 101.01 TOI_INT = "TOI int" # 101 diff --git a/src/tess_atlas/data/exofop/exofop_database.py b/src/tess_atlas/data/exofop/exofop_database.py index 557d3abc..55262b06 100644 --- a/src/tess_atlas/data/exofop/exofop_database.py +++ b/src/tess_atlas/data/exofop/exofop_database.py @@ -1,33 +1,24 @@ import logging import os -import random -from math import isnan -from typing import Dict, List, NamedTuple, Optional, Union +from typing import List, NamedTuple, Optional, Union import pandas as pd -from numpy import nan -from tqdm.auto import tqdm from tess_atlas.data.exofop.constants import ( LK_AVAIL, MULTIPLANET, NORMAL, - PERIOD, - PLANET_COUNT, SINGLE_TRANSIT, TIC_CACHE, - TIC_DATASOURCE, + TIC_CACHE_URL, TIC_ID, - TIC_OLD_CACHE, TIC_SEARCH, TOI, - TOI_INT, ) from ...file_management import get_file_timestamp from ...logger import LOGGER_NAME, all_logging_disabled from ..lightcurve_data.lightcurve_search import LightcurveSearch -from .plotting import plot_lk_status logger = logging.getLogger(LOGGER_NAME) @@ -40,122 +31,63 @@ class Categories(NamedTuple): class ExofopDatabase: - """Interface to the Exofop datatable of TIC that we analyse. + """Interface to the Exofop datatable of TIC that we analyse.""" - We cache the TIC database in a CSV file, and update it periodically when needed. - # TODO: cron job to update the cache periodically? - - """ - - def __init__(self, clean=False, update=False, fname=TIC_CACHE): + def __init__(self, clean=False, cache_fname=TIC_CACHE): self._db = pd.DataFrame() - self.fname = fname - self.previous_fname = fname + ".old" + self.cache_fname = cache_fname self.load(clean) - if update: - self.update() def load(self, clean=False): - if not self.cache_present: - clean = True # if no cache, we must clean-load from exofop - if clean: + if not self.cache_present or clean: self._clean_cache() - self.update() + self.__download() logger.debug( f"Loading cached TIC list (last modified {self.cache_timestamp})" ) - self._db = pd.read_csv(self.fname) + self._db = pd.read_csv(self.cache_fname) return self @property def cache_timestamp(self): - return get_file_timestamp(self.fname) + return get_file_timestamp(self.cache_fname) @property def cache_present(self): - return os.path.isfile(self.fname) + return os.path.isfile(self.cache_fname) def _clean_cache(self): if self.cache_present: - os.rename(self.fname, self.previous_fname) - - def load_old_cache(self): - if os.path.isfile(self.previous_fname): - return pd.read_csv(self.previous_fname) - return pd.DataFrame() + os.remove(self.cache_fname) @property def cached_tic_lk_dict(self): if self.cache_present: - cached = pd.read_csv(self.fname) + cached = pd.read_csv(self.cache_fname) tics, lk_avail = cached[TIC_ID], cached[LK_AVAIL] return dict(zip(tics, lk_avail)) return {} - def update(self, save_name=TIC_CACHE): - """Update the TIC cache from the exofop database + def __download(self): + """Download the TIC cache. - Queries Lightkurve to check if lightcurve data is available for each TIC. - (querying lightkurve is slow, so we cache the results) + Note: this contains the LK_AVAIL column, + unlike the original ExoFOP table """ - new_table = _download_exofop_tic_table() - logger.info( - f"Current TIC cache: {len(self._db):,}, online TIC list: {len(new_table):,}" - ) - - # Update new tables' TIC:lk-avail dict with cached data (for TIC already checked) - tic_lk_dict = dict(zip(new_table[TIC_ID], new_table[LK_AVAIL])) - tic_lk_dict.update(self.cached_tic_lk_dict) - - self._clean_cache() # after extracting cache data, we can clean cache - self._save_table_with_lk_status(new_table, tic_lk_dict, save_name) - - # Get the subset of TICs with no lightcurve data - nan_lk_dict = {tic: lk for tic, lk in tic_lk_dict.items() if isnan(lk)} - num_nan = len(nan_lk_dict) - logger.info( - f"Checking {num_nan}/{len(new_table)} TICs for lightcurve availability" - ) - # shuffle dict - nan_lk_dict = { - k: nan_lk_dict[k] - for k in random.sample(list(nan_lk_dict.keys()), num_nan) - } - for i, (t, avail) in tqdm( - enumerate(nan_lk_dict.items()), - total=num_nan, - desc="Checking TIC lightcurve availability", - ): - if isnan(avail): - nan_lk_dict[t] = _lightcurve_available(t) - if i % 100 == 0: # update cache every 100 TICs - logger.debug( - f"Updating TIC cache at {100 * (i / num_nan):.2f}%" - ) - self._save_table_with_lk_status( - new_table, nan_lk_dict, save_name - ) - - self._save_table_with_lk_status(new_table, nan_lk_dict, save_name) - logger.info( - f"Updated database from {len(self.load_old_cache())}-->{len(new_table)} TICs" - ) - self.fname = save_name - self.load() + df = pd.read_csv(TIC_CACHE_URL) + df.to_csv(self.cache_fname, index=False) def get_df( self, category=None, remove_toi_without_lk=False ) -> pd.DataFrame: df = self._db.copy() if remove_toi_without_lk: - df = _filter_db_without_lk(df) + df = df[df[LK_AVAIL] == True] if category is not None: - if category == MULTIPLANET: - df = df[df[MULTIPLANET]] - elif category == SINGLE_TRANSIT: - df = df[df[SINGLE_TRANSIT]] - elif category == NORMAL: + if category == NORMAL: df = df[~df[MULTIPLANET] & ~df[SINGLE_TRANSIT]] + else: + df = df[df[category]] return df def get_tic_id_for_toi(self, toi_number: int) -> int: @@ -208,14 +140,6 @@ def get_tic_url(tic_id): """ExoFop Url""" return TIC_SEARCH.format(tic_id=tic_id) - def plot(self, new=None, old=None) -> "plt.Figure": - """Plot if the TOI has lightcurve data using the old and new TIC caches""" - if new is None: - new = self._db - if old is None: - old = self.load_old_cache() - return plot_lk_status(new, old) - def get_counts(self, filter=False) -> Categories: """Get the number of TOIs in the database""" return Categories( @@ -225,54 +149,9 @@ def get_counts(self, filter=False) -> Categories: all=len(self.get_df(None, filter)), ) - def _save_table_with_lk_status( - self, - table: pd.DataFrame, - lk_status_dict: Dict[int, bool], - save_fn=TIC_CACHE, - ): - """Update the table with the lightcurve status""" - tic_lk_dict = dict(zip(table[TIC_ID], table[LK_AVAIL])) - tic_lk_dict.update(lk_status_dict) - table[LK_AVAIL] = table[TIC_ID].map(tic_lk_dict) - table.to_csv(save_fn, index=False) - self.plot(table, self.load_old_cache()) - return table - @property def n_tois(self): return len(self.get_toi_list(remove_toi_without_lk=True)) def __repr__(self): return f"" - - -def _download_exofop_tic_table() -> pd.DataFrame: - db = pd.read_csv(TIC_DATASOURCE) - logger.info(f"TIC database has {len(db)} entries") - db[[TOI_INT, PLANET_COUNT]] = ( - db[TOI].astype(str).str.split(".", n=1, expand=True).astype(int) - ) - db = db.astype({TOI_INT: "int", PLANET_COUNT: "int"}) - db[MULTIPLANET] = db[TOI_INT].duplicated(keep=False) - db[SINGLE_TRANSIT] = db[PERIOD] <= 0 - db[LK_AVAIL] = nan - return db - - -def _lightcurve_available(tic: int) -> Union[bool, float]: - """Check if a TIC has lightcurve data available - - Returns: - Union[bool, float]: True if lightcurve data is available, False if not, nan if error - """ - with all_logging_disabled(): - try: - return LightcurveSearch(tic).lk_data_available - except Exception as _: - return nan - - -def _filter_db_without_lk(db: pd.DataFrame) -> pd.DataFrame: - """Filter out TOIs without lightcurve data""" - return db[db[LK_AVAIL] == True] diff --git a/src/tess_atlas/data/exofop/plotting.py b/src/tess_atlas/data/exofop/plotting.py deleted file mode 100644 index a3e90b05..00000000 --- a/src/tess_atlas/data/exofop/plotting.py +++ /dev/null @@ -1,65 +0,0 @@ -import matplotlib.pyplot as plt -import pandas as pd -from matplotlib.lines import Line2D - -from .constants import LK_AVAIL, TIC_CACHE, TOI_INT - - -def plot_lk_status(new: pd.DataFrame, old: pd.DataFrame = None) -> plt.Figure: - """Plot if the TOI has lightcurve data using the old and new TIC caches""" - if len(old) > 0: - fig, axes = plt.subplots( - 2, 1, figsize=(10, 5), sharex=True, sharey=True - ) - _add_lk_status_to_ax(axes[1], old, "Old Cache") - ax = axes[0] - else: - fig, axes = plt.subplots(1, 1, figsize=(10, 2.5)) - ax = axes - _add_lk_status_to_ax(ax, new, label="Cache") - fig.suptitle("TOIs with 2-min Lightcurve data", fontsize="xx-large") - fig.tight_layout() - fig.savefig(TIC_CACHE.replace(".csv", ".png")) - return fig - - -def _add_lk_status_to_ax(ax: plt.Axes, data: pd.DataFrame, label=""): - r = dict(ymin=0, ymax=2, lw=0.1, alpha=0.5) - valid = set(data[data[LK_AVAIL] == True][TOI_INT].tolist()) - invalid = set(data[data[LK_AVAIL] == False][TOI_INT].tolist()) - nans = set(data[data[LK_AVAIL].isna()][TOI_INT].tolist()) - total = len(data) - colors = dict(valid="tab:green", invalid="tab:red", nans="tab:orange") - ax.vlines( - list(valid), - **r, - label=f"Valid ({len(valid)}/{total} TOIs)", - color=colors["valid"], - ) - ax.vlines( - list(invalid), - **r, - label=f"Invalid ({len(invalid)}/{total} TOIs)", - color=colors["invalid"], - zorder=-10, - ) - ax.vlines( - list(nans), - **r, - label=f"Nans ({len(nans)}/{total} TOIs)", - color=colors["nans"], - zorder=-20, - ) - - # make legend with larger markers visible in the plot - handles, labels = ax.get_legend_handles_labels() - handles = [Line2D([0], [0], color=c, lw=2) for c in colors.values()] - labels = [ - f"{l} ({len(s)})" for l, s in zip(labels, [valid, invalid, nans]) - ] - ax.legend(handles, labels, loc="upper left", fontsize=8) - ax.set_ylim(0.99, 1.01) - ax.set_xlim(left=100, right=max(data["TOI int"])) - ax.set_yticks([]) - ax.set_xlabel("TOI Number") - ax.set_ylabel(label) diff --git a/src/tess_atlas/data/lightcurve_data/lightcurve_data.py b/src/tess_atlas/data/lightcurve_data/lightcurve_data.py index 12df0e0d..846c7c6a 100644 --- a/src/tess_atlas/data/lightcurve_data/lightcurve_data.py +++ b/src/tess_atlas/data/lightcurve_data/lightcurve_data.py @@ -48,7 +48,7 @@ def from_database(cls, tic: int, outdir: str): """Uses lightkurve to get TESS data for a TIC from MAST""" logger.info("Downloading LightCurveData from MAST") lc = LightcurveSearch(tic).lk_download(outdir) - logger.info("Completed light curve data download") + logger.info("Completed light curve data __download") return cls( raw_lc=lc, outdir=outdir, diff --git a/src/tess_atlas/notebook_controllers/controllers/menu_notebook_controller.py b/src/tess_atlas/notebook_controllers/controllers/menu_notebook_controller.py index aa76e782..8fea58da 100644 --- a/src/tess_atlas/notebook_controllers/controllers/menu_notebook_controller.py +++ b/src/tess_atlas/notebook_controllers/controllers/menu_notebook_controller.py @@ -37,14 +37,3 @@ def execute(self, **kwargs) -> bool: "save_profiling_data", False ) return super().execute(**kwargs) - - -def run_menu_page(notebook_dir): - summary = AnalysisSummary.load(notebook_dir) - menu_notebook_fn = os.path.join(notebook_dir, "menu.ipynb") - processor = MenuPageController(menu_notebook_fn) - processor.generate(summary_path=summary.fname(notebook_dir)) - processor.execute() - logger.info( - f"Menu page generated [{processor.execution_success}]: {processor.notebook_path}" - ) diff --git a/src/tess_atlas/notebook_controllers/controllers/toi_notebook_controller/toi_notebook_core.py b/src/tess_atlas/notebook_controllers/controllers/toi_notebook_controller/toi_notebook_core.py index 9090e655..f2792f05 100644 --- a/src/tess_atlas/notebook_controllers/controllers/toi_notebook_controller/toi_notebook_core.py +++ b/src/tess_atlas/notebook_controllers/controllers/toi_notebook_controller/toi_notebook_core.py @@ -53,7 +53,7 @@ def generate(self, *args, **kwargs): Parameters ---------- setup: bool, optional - Whether to download the TOI data. Defaults to False. + Whether to __download the TOI data. Defaults to False. quickrun: bool, optional Whether to make add some 'hacks' to make the notebook run faster. Defaults to False. """ diff --git a/src/tess_atlas/notebook_controllers/templates/catalog_page.py b/src/tess_atlas/notebook_controllers/templates/catalog_page.py index 8cc02483..a45560b2 100644 --- a/src/tess_atlas/notebook_controllers/templates/catalog_page.py +++ b/src/tess_atlas/notebook_controllers/templates/catalog_page.py @@ -58,7 +58,7 @@ # ## Download a TESS-Atlas fit # -# To download the notebook and results for a TOI (for example TOI 103) you could use the following: +# To __download the notebook and results for a TOI (for example TOI 103) you could use the following: # ! download_toi 103 --outdir . @@ -73,7 +73,7 @@ # ## Download all TESS-Atlas fits # -# You may want to download _all_ TOI notebooks and fits. To do this, you can use the following. +# You may want to __download _all_ TOI notebooks and fits. To do this, you can use the following. # # ```{warning} # This can take a longgg time! @@ -279,7 +279,7 @@ def process_all_toi_results(): print("Converting summary to dataframe") df = get_populoation_summary(summary_info) - # download EXOFOP stats + # __download EXOFOP stats exofop = get_exopfop_db() exofop.to_csv("exofop.csv", index=False) exofop = pd.read_csv("exofop.csv") diff --git a/src/tess_atlas/notebook_controllers/templates/demo_page.py b/src/tess_atlas/notebook_controllers/templates/demo_page.py index 6b87f5ea..8738e777 100644 --- a/src/tess_atlas/notebook_controllers/templates/demo_page.py +++ b/src/tess_atlas/notebook_controllers/templates/demo_page.py @@ -57,7 +57,7 @@ # ## Download a TESS-Atlas fit # -# To download the notebook and results for a TOI (for example TOI 103) you could use the following: +# To __download the notebook and results for a TOI (for example TOI 103) you could use the following: # ! download_toi 103 --outdir . @@ -72,7 +72,7 @@ # ## Download all TESS-Atlas fits # -# You may want to download _all_ TOI notebooks and fits. To do this, you can use the following. +# You may want to __download _all_ TOI notebooks and fits. To do this, you can use the following. # # ```{warning} # This can take a longgg time! @@ -278,7 +278,7 @@ def process_all_toi_results(): print("Converting summary to dataframe") df = get_populoation_summary(summary_info) - # download EXOFOP stats + # __download EXOFOP stats exofop = get_exopfop_db() exofop.to_csv("exofop.csv", index=False) exofop = pd.read_csv("exofop.csv") diff --git a/src/tess_atlas/notebook_controllers/templates/toi_template.py b/src/tess_atlas/notebook_controllers/templates/toi_template.py index 57e7062e..8405975c 100644 --- a/src/tess_atlas/notebook_controllers/templates/toi_template.py +++ b/src/tess_atlas/notebook_controllers/templates/toi_template.py @@ -35,7 +35,7 @@ # From here, you can # - scroll down and take a look at the fit results # - open the notebook in Google Colab to run the fit yourself -# - download the notebook +# - __download the notebook # # # @@ -109,7 +109,7 @@ # + [markdown] tags=["def"] # ## Downloading Data # -# Next, we grab some inital guesses for the TOI's parameters from [ExoFOP](https://exofop.ipac.caltech.edu/tess/) and download the TOI's lightcurve with [Lightkurve]. +# Next, we grab some inital guesses for the TOI's parameters from [ExoFOP](https://exofop.ipac.caltech.edu/tess/) and __download the TOI's lightcurve with [Lightkurve]. # # We wrap the information in three objects, a `TIC Entry`, a `Planet Candidate` and finally a `Lightcurve Data` object. # diff --git a/tests/test_exofop_interface.py b/tests/test_exofop_interface.py index 937e2e0f..5ec80b2c 100644 --- a/tests/test_exofop_interface.py +++ b/tests/test_exofop_interface.py @@ -20,34 +20,3 @@ def test_get_toi_numbers_for_different_categories(): toi_numbers = EXOFOP_DATA.get_categorised_toi_lists() assert isinstance(toi_numbers.single_transit, List) assert len(toi_numbers.single_transit) > 0 - - -@pytest.fixture -def mock_lighcurve_check(monkeypatch): - """Mock tess_atlas.data.exofop.exofp_database._lightcurve_available(tic: int)""" - - def mock_lighcurve_check(tic: int): - return np.nan - - monkeypatch.setattr( - "tess_atlas.data.exofop.exofop_database._lightcurve_available", - mock_lighcurve_check, - ) - - -def test_update(tmp_path, mock_lighcurve_check, monkeypatch): - logging.getLogger(LOGGER_NAME).setLevel(logging.DEBUG) - - # mock the TIC_DATASOURCE --> TIC_CACHE - N_LINES = 10 - tmp_csv = str(tmp_path / "cached_tic_database.csv") - with open(exofop_database.TIC_CACHE) as old, open(tmp_csv, "w") as new: - lines = old.readlines() - new.writelines(lines[: 1 + N_LINES]) # write header + N_LINES - - monkeypatch.setattr(exofop_database, "TIC_DATASOURCE", tmp_csv) - monkeypatch.setattr(exofop_database, "TIC_CACHE", tmp_csv) - - fname = str(tmp_path / "test.csv") - exo_db = ExofopDatabase(fname=tmp_csv) - exo_db.update(save_name=fname) diff --git a/tests/test_toi_notebook.py b/tests/test_toi_notebook.py index 2ac43d6b..a39f2956 100644 --- a/tests/test_toi_notebook.py +++ b/tests/test_toi_notebook.py @@ -29,7 +29,7 @@ def test_analysis_starts(tmpdir): controller = TOINotebookController.from_toi_number(SINGLE_PLANET, tmpdir) controller.generate(quickrun=True) - # mock the data download stage + # mock the data __download stage print(f"Running notebook {controller.notebook_path}") with pytest.raises(TimeoutError): diff --git a/tests/test_webbuild.py b/tests/test_webbuild.py deleted file mode 100644 index 81cab95b..00000000 --- a/tests/test_webbuild.py +++ /dev/null @@ -1,22 +0,0 @@ -import os - -import pytest - -from tess_atlas.webbuilder import build_website - -N_TOI_NOTEBOOKS = 5 - - -@pytest.mark.fake_notebook_dir(n=N_TOI_NOTEBOOKS) -def test_website_generation( - tmp_path, fake_notebook_dir, mock_exofop_get_toi_list -): - webdir = f"{tmp_path}/webdir" - build_website( - builddir=webdir, - notebook_dir=fake_notebook_dir, - rebuild=True, - update_api_files=False, - ) - assert os.path.exists(webdir) - assert os.path.exists(f"{webdir}/_build/index.html")