From 6d851731aff311875e77b99203d669e6d71893ff Mon Sep 17 00:00:00 2001 From: Matthew Gaughan Date: Fri, 31 Jan 2025 11:34:20 -0600 Subject: [PATCH] updating doc collection with from oldest instead --- 12825_revision/list_existing_data.py | 81 +- .../CONTRIBUTING_for_download.csv | 304 +- .../misc_data_files/README_for_download.csv | 2460 ++++++++--------- .../spec_file/updated_get_spec_file.py | 19 +- 4 files changed, 1472 insertions(+), 1392 deletions(-) diff --git a/12825_revision/list_existing_data.py b/12825_revision/list_existing_data.py index f55498c..5a7153d 100644 --- a/12825_revision/list_existing_data.py +++ b/12825_revision/list_existing_data.py @@ -2,6 +2,7 @@ import pandas as pd import os import datetime as dt import json +import shutil def repo_id_from_upstream(vcs_link): if 'github' in vcs_link: @@ -44,12 +45,85 @@ def check_collected_files(dirpath): return unmatched_files, matched_repo_ids +def hard_codes(vcs_link, filename): + if vcs_link == "https://github.com/df7cb/pg_filedump.git" and filename == "pg_filedump.git_README.pg_filedump": + rel_filename = filename + return True, rel_filename + if vcs_link == "https://github.com/sleuthkit/sleuthkit" and filename == "sleuthkit_README_win32.txt": + rel_filename = filename + return True, rel_filename + if vcs_link == "https://github.com/metlov/cycle.git" and filename == "cycle.git_README_ru.html": + rel_filename = filename + return True, rel_filename + if vcs_link == "https://github.com/winchen/engauge_debian" and filename == "engauge_debian_README_for_osx": + rel_filename = filename + return True, rel_filename + if vcs_link == "https://github.com/babelouest/yder" and filename == "yder_README_8md.html": + rel_filename = filename + return True, rel_filename + if vcs_link == "https://github.com/SebWouters/CheMPS2" and filename == "CheMPS2_README_8md_source.html": + rel_filename = filename + return True, rel_filename + if vcs_link == "https://github.com/TACC/Lmod" and filename == "Lmod_README_lua_modulefiles.txt": + rel_filename = filename + return True, rel_filename + if vcs_link == "https://github.com/hunspell/hyphen.git" and filename == "hyphen.git_README_hyph_en_US.txt": + rel_filename = filename + return True, rel_filename + if vcs_link == "https://github.com/greenbone/openvas" and filename == "openvas_UPGRADE_README": + rel_filename = filename + return True, rel_filename + if vcs_link == "https://github.com/MightyCreak/diffuse.git" and filename == "diffuse.git_README_ru": + rel_filename = filename + return True, rel_filename + return False, "" + def cp_existing_docs(matched_repo_ids, is_readme): if not is_readme: + existing_dir = "/data/users/mgaughan/kkex/time_specific_files/contributing4/" + dest_dir = "/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/existing_contributing/" manifest = pd.read_csv('012925_contributing_manifest.csv') else: + existing_dir = "/data/users/mgaughan/kkex/time_specific_files/readme4/" + dest_dir = "/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/existing_readme/" manifest = pd.read_csv('012925_readme_manifest.csv') - # match the ids to the upstream vcs links + filtered_df = manifest[manifest['repo_id'].isin(matched_repo_ids)] + print(len(filtered_df)) + successes = 0 + failures = [] + for index,row in filtered_df.iterrows(): + vcs_link = row['upstream_vcs_link'] + project = row['upstream_vcs_link'].split("/")[-1] + rel_filename = "" + #print(project) + is_success = False + for filename in os.listdir(existing_dir): + if filename.startswith(project): + rel_filename = filename + #print(rel_filename) + target_path = existing_dir + rel_filename + dest_path = os.path.join(dest_dir, f"{row['repo_id']}_hullabaloo_{rel_filename.split('_')[-1]}") + #print(dest_path) + successes+= 1 + is_success = True + shutil.copy(target_path, dest_path) + break + ''' + if rel_filename != "": + target_path = existing_dir + rel_filename + #print(target_path) + dest_path = os.path.join(dest_dir, f"{row['repo_id']}_hullabaloo_{rel_filename}") + #print(target_path, full_temp_path[:-4], filename, destination_path) + shutil.copy(target_path, dest_path) + return filename + else: + print("error!") + print(project) + ''' + if not is_success: + failures.append(project) + print(successes) + print(failures) # match those to the files in "/data/users/mgaughan/time_specific_files/{doctype}3" # copy matched files to "/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/{doctype}/" @@ -65,7 +139,7 @@ def get_doc_publication(dirpath, file, doc_name): unmatched_df = pd.read_csv(dirpath + file) # because we only care about the date, not going to un-flatten the timezones unmatched_df['commit_date'] = pd.to_datetime(unmatched_df['commit_date'], utc=True) - unmatched_df = unmatched_df.sort_values(by='commit_date', ascending=False) + unmatched_df = unmatched_df.sort_values(by='commit_date', ascending=True) #print(unmatched_df.head()) unmatched_df['diff_contains_document'] = unmatched_df['diff_info'].apply(lambda diffs: document_in_diffs(diffs, doc_name)) first_instance = unmatched_df[unmatched_df['diff_contains_document']].head(1) @@ -145,7 +219,8 @@ if __name__ == "__main__": #get_contributing_licsv_files = [f for f in os.listdir(dirpath) if f.endswith('_commits.csv')] is_readme = False unmatched_files, matched_repo_ids = check_collected_files("/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/contributing") - print(len(unmatched_files)) + print(len(matched_repo_ids)) + #cp_existing_docs(matched_repo_ids, is_readme) list_for_doc_collection(unmatched_files, is_readme) #print(len(unmatched_files)) #print(len(matched_repo_ids)) \ No newline at end of file diff --git a/12825_revision/misc_data_files/CONTRIBUTING_for_download.csv b/12825_revision/misc_data_files/CONTRIBUTING_for_download.csv index eb48079..2026fa6 100644 --- a/12825_revision/misc_data_files/CONTRIBUTING_for_download.csv +++ b/12825_revision/misc_data_files/CONTRIBUTING_for_download.csv @@ -1,202 +1,202 @@ commit_hash,author_name,author_email,authored_date,committer_name,committer_email,commit_date,is_merge,author_org,committer_org,branches,diff_contains_document,repo_id,project_handle,upstream_vcs_link -ef42007d965871ecab0cfcb7d7c7c3fdcbc6e97f,Richard Schwab,gitrichardschwab-7a2qxq42kj@central-intelligence.agency,2022-04-10 09:25:58+02:00,GitHub,noreply@github.com,2022-04-10 07:25:58+00:00,False,central-intelligence,github,* master,True,aio-libs_aiomysql.git,aio-libs/aiomysql.git,https://github.com/aio-libs/aiomysql.git -fffc4338837d4474cc7a05cc80c645fd8ffae153,patchback[bot],45432694+patchback[bot]@users.noreply.github.com,2023-11-09 19:33:38+00:00,GitHub,noreply@github.com,2023-11-09 19:33:38+00:00,False,users,github,* master,True,aio-libs_aiohttp.git,aio-libs/aiohttp.git,https://github.com/aio-libs/aiohttp.git +9b5ae2ba1c1e2fe20ae555212ef9a6b1f50957cf,Andrew Svetlov,andrew.svetlov@gmail.com,2015-07-11 13:11:06+03:00,Andrew Svetlov,andrew.svetlov@gmail.com,2015-07-11 10:11:06+00:00,False,gmail,gmail,* master,True,aio-libs_aiomysql.git,aio-libs/aiomysql.git,https://github.com/aio-libs/aiomysql.git +f8d94662015fa4ced56a4d2d11875b91b7284666,Andrew Svetlov,andrew.svetlov@gmail.com,2015-07-11 12:08:56+03:00,Andrew Svetlov,andrew.svetlov@gmail.com,2015-07-11 09:08:56+00:00,False,gmail,gmail,* master,True,aio-libs_aiohttp.git,aio-libs/aiohttp.git,https://github.com/aio-libs/aiohttp.git 679bf7de5aa77e34f534ce31ce33ea7ff0707317,Peter Potrebic,ppotrebic@box.com,2014-03-23 20:47:09-07:00,Peter Potrebic,ppotrebic@box.com,2014-03-24 03:47:09+00:00,False,box,box,* master,True,box_genty.git,box/genty.git,https://github.com/box/genty.git a0b321f7a1ae658ee62899b776416c8eceb6db61,Raphael Pierzina,raphael@hackebrot.de,2015-12-04 14:31:18+01:00,Raphael Pierzina,raphael@hackebrot.de,2015-12-04 13:31:18+00:00,False,hackebrot,hackebrot,* main,True,hackebrot_jinja2-time,hackebrot/jinja2-time,https://github.com/hackebrot/jinja2-time -2ee1c673046fe673a377943d9bbb4d9c1404dc9c,Daniel Manila,dmv@springwater7.org,2016-12-29 08:47:02+06:00,Daniel Manila,dmv@springwater7.org,2016-12-29 02:50:39+00:00,False,springwater7,springwater7,* master,True,DonyorM_weresync.git,DonyorM/weresync.git,https://github.com/DonyorM/weresync.git -9a565ce98423b526b96088bda648f17fae4b264b,Brendan Gregg,brendan.d.gregg@gmail.com,2018-10-10 09:49:20-07:00,GitHub,noreply@github.com,2018-10-10 16:49:20+00:00,True,gmail,github,* master,True,iovisor_bpftrace,iovisor/bpftrace,https://github.com/iovisor/bpftrace +cf31482daf25df12bd718e00ae92fd50dfc4eb37,Daniel Manila,dmv@springwater7.org,2016-11-18 10:09:10+06:00,Daniel Manila,dmv@springwater7.org,2016-11-18 04:12:06+00:00,False,springwater7,springwater7,* master,True,DonyorM_weresync.git,DonyorM/weresync.git,https://github.com/DonyorM/weresync.git +f4d7c1a628411df9c818ac57c7bdc67e66177585,Brendan Gregg,bgregg@netflix.com,2018-09-09 03:24:16+00:00,Brendan Gregg,bgregg@netflix.com,2018-09-09 18:23:21+00:00,False,netflix,netflix,* master,True,iovisor_bpftrace,iovisor/bpftrace,https://github.com/iovisor/bpftrace 8eaf930ba595fb9f3e124ec1d17ef469c9ab01f6,Michael Howitz,mh@gocept.com,2023-02-28 07:57:40+01:00,GitHub,noreply@github.com,2023-02-28 06:57:40+00:00,False,gocept,github,* master,True,zopefoundation_roman,zopefoundation/roman,https://github.com/zopefoundation/roman -1ae029a963ffa4d0e5daeea83206c38a5b883f0c,Peter Boling,peter.boling@gmail.com,2022-09-16 11:03:13+07:00,Peter Boling,peter.boling@gmail.com,2022-09-16 04:03:13+00:00,False,gmail,gmail,* migrated,True,intridea_oauth2,intridea/oauth2,https://github.com/intridea/oauth2 -1172a8764cd03240d114ad1a3b0ef797e4343fe5,Jason Tyler,jmtyler@gmail.com,2020-02-11 23:02:15-08:00,GitHub,noreply@github.com,2020-02-12 07:02:15+00:00,True,gmail,github,* develop,True,timothycrosley_hug.git,timothycrosley/hug.git,https://github.com/timothycrosley/hug.git -65b749ba98fa29531ca7e281f2d2295ea5bb5644,Angelo Paparazzi,angelo.paparazzi@ibm.com,2023-03-02 10:47:57-06:00,Angelo Paparazzi,apaparazzi0329@gmail.com,2023-03-16 21:52:55+00:00,False,ibm,gmail,* master,True,watson-developer-cloud_python-sdk.git,watson-developer-cloud/python-sdk.git,https://github.com/watson-developer-cloud/python-sdk.git -bf8e1b08f4a847dcd97f54c5115c9db59796f410,Matt Brictson,matt@mattbrictson.com,2023-10-19 22:54:28-07:00,GitHub,noreply@github.com,2023-10-20 05:54:28+00:00,False,mattbrictson,github,* master,True,vcr_vcr,vcr/vcr,https://github.com/vcrhonek/hwdata.git -f1d872bee4efa4d03cf136488379968002d139c1,Karen Etheridge,ether@cpan.org,2016-03-12 16:41:03-08:00,Karen Etheridge,ether@cpan.org,2016-03-13 00:41:03+00:00,False,cpan,cpan,* master,True,moose_MooseX-Runnable,moose/MooseX-Runnable,https://github.com/moose/MooseX-Runnable -06da921608b971fb47603671bcafdb2843992eb3,Tim Pope,code@tpope.net,2018-04-05 17:59:12-04:00,Tim Pope,code@tpope.net,2018-04-05 21:59:57+00:00,False,tpope,tpope,* master,True,tpope_vim-pathogen.git,tpope/vim-pathogen.git,https://github.com/tpope/vim-pathogen.git -648a38e376afd2f9a4cb44eef457c99c61e2107b,Ogi Moore,ognyan.moore@gmail.com,2022-10-01 13:07:37-07:00,GitHub,noreply@github.com,2022-10-01 20:07:37+00:00,True,gmail,github,* master,True,pyqtgraph_pyqtgraph.git,pyqtgraph/pyqtgraph.git,https://github.com/pyqtgraph/pyqtgraph.git -1be2f2a179a2cb951690fd64b1fe5a6ce2db0139,Jerome Leclanche,jerome@leclan.ch,2018-02-10 13:58:49+02:00,Jerome Leclanche,jerome@leclan.ch,2018-02-10 12:01:16+00:00,False,leclan,leclan,* master,True,jazzband_django-push-notifications,jazzband/django-push-notifications,https://github.com/jazzband/django-push-notifications -bc8c5044010262b383bff98d26ebb746077bf80d,Jeff Meadows,jrmeadows2@gmail.com,2019-01-09 10:09:09-08:00,GitHub,noreply@github.com,2019-01-09 18:09:09+00:00,False,gmail,github,* master,True,box_flaky.git,box/flaky.git,https://github.com/box/flaky.git -d1ec087a7f86e6dc14ed3771a9f8e84a5d384e0a,Andreas Mueller,t3kcit@gmail.com,2020-04-09 11:14:26-04:00,GitHub,noreply@github.com,2020-04-09 15:14:26+00:00,True,gmail,github,* main,True,amueller_word_cloud,amueller/word/cloud,https://github.com/amueller/word_cloud +4f3144d6bc05a74f24aa4e94e5dc4e6a461b87b7,Erik Michaels-Ober,sferik@gmail.com,2013-01-26 00:40:04-08:00,Erik Michaels-Ober,sferik@gmail.com,2013-01-26 08:40:13+00:00,False,gmail,gmail,* migrated,True,intridea_oauth2,intridea/oauth2,https://github.com/intridea/oauth2 +8f793f86ce59ef393b3f7c6d93130dedb8d79fc8,Timothy Crosley,timothy.crosley@gmail.com,2016-02-07 12:17:36-08:00,Timothy Crosley,timothy.crosley@gmail.com,2016-02-07 20:17:36+00:00,False,gmail,gmail,* develop,True,timothycrosley_hug.git,timothycrosley/hug.git,https://github.com/timothycrosley/hug.git +0fc9e32a0296ba399f216878c305fd83d7f115a9,Jeffrey Stylos,jsstylos@gmail.com,2015-10-08 10:09:23-04:00,Jeffrey Stylos,jsstylos@gmail.com,2015-10-08 14:09:23+00:00,False,gmail,gmail,* master,True,watson-developer-cloud_python-sdk.git,watson-developer-cloud/python-sdk.git,https://github.com/watson-developer-cloud/python-sdk.git +7b9bf81a172eaccb55f282c39480161f73edf8f8,Flaviu Simihaian,flsimihaian@gmail.com,2011-11-21 21:33:27-05:00,Flaviu Simihaian,flsimihaian@gmail.com,2011-11-22 02:33:27+00:00,False,gmail,gmail,* master,True,vcr_vcr,vcr/vcr,https://github.com/vcrhonek/hwdata.git +2505322d10223bf7965740fac270c80cffed683f,Karen Etheridge,ether@cpan.org,2013-11-18 18:31:37-08:00,Karen Etheridge,ether@cpan.org,2013-11-19 02:31:37+00:00,False,cpan,cpan,* master,True,moose_MooseX-Runnable,moose/MooseX-Runnable,https://github.com/moose/MooseX-Runnable +3111f06b7039417845164434801c1e5443b0b2d9,Tim Pope,code@tpope.net,2013-03-10 16:07:37-04:00,Tim Pope,code@tpope.net,2013-03-10 20:07:37+00:00,False,tpope,tpope,* master,True,tpope_vim-pathogen.git,tpope/vim-pathogen.git,https://github.com/tpope/vim-pathogen.git +a82e940f7ab11fa150db8ef67aca36b2a558282f,Luke Campagnola,luke.campagnola@gmail.com,2014-03-05 11:01:53-05:00,Luke Campagnola,luke.campagnola@gmail.com,2014-03-05 16:01:53+00:00,False,gmail,gmail,* master,True,pyqtgraph_pyqtgraph.git,pyqtgraph/pyqtgraph.git,https://github.com/pyqtgraph/pyqtgraph.git +1a0a8a536b2b3b22c0669fdefd810a7764553428,Jerome Leclanche,jerome@leclan.ch,2015-06-30 07:34:06+02:00,Jerome Leclanche,jerome@leclan.ch,2015-06-30 05:34:14+00:00,False,leclan,leclan,* master,True,jazzband_django-push-notifications,jazzband/django-push-notifications,https://github.com/jazzband/django-push-notifications +857ab548f619773a8420331ce77ee6dce21ed106,Jeff-Meadows,jrmeadows2@gmail.com,2014-04-07 15:05:50-07:00,Jeff-Meadows,jrmeadows2@gmail.com,2014-04-07 22:05:50+00:00,False,gmail,gmail,* master,True,box_flaky.git,box/flaky.git,https://github.com/box/flaky.git +2a732ce025b508dfe8381ace04e8c59050790530,Carl Gieringer,78054+carlgieringer@users.noreply.github.com,2020-02-22 23:14:08-08:00,Jean-Christophe Fillion-Robin,jchris.fillionr@kitware.com,2020-04-08 18:55:56+00:00,False,users,kitware,* main,True,amueller_word_cloud,amueller/word/cloud,https://github.com/amueller/word_cloud 95e617b15a138771ee61c3f65f6f5a7a9c1f872b,Zearin,zearin@gonk.net,2013-05-22 14:35:09-04:00,Zearin,zearin@gonk.net,2013-05-22 18:35:09+00:00,False,gonk,gonk,* master,True,heynemann_pyvows.git,heynemann/pyvows.git,https://github.com/heynemann/pyvows.git -8c0c5cb671871b3c724378be2d15065260097ff2,Guillaume Lours,705411+glours@users.noreply.github.com,2023-11-23 11:28:04+01:00,GitHub,noreply@github.com,2023-11-23 10:28:04+00:00,True,users,github,* main,True,docker_compose,docker/compose,https://github.com/docker/compose -e9185324ae5bf0e4ba72a9b07b0d50814b06ba16,Markus Unterwaditzer,markus@unterwaditzer.net,2016-08-15 20:44:45+02:00,Markus Unterwaditzer,markus@unterwaditzer.net,2016-08-15 18:44:45+00:00,False,unterwaditzer,unterwaditzer,* main,True,pimutils_vdirsyncer,pimutils/vdirsyncer,https://github.com/pimutils/vdirsyncer -3d9c14a8849114db9eb6f444c52631dd6c804fc3,Anthony Sottile,asottile@umich.edu,2024-01-06 14:14:49-05:00,GitHub,noreply@github.com,2024-01-06 19:14:49+00:00,True,umich,github,* main,True,dahlia_libsass-python.git,dahlia/libsass-python.git,https://github.com/dahlia/libsass-python.git -94544bdc6b564c59d2fa79af1ce100536fbff471,Oleh Prypin,oleh@pryp.in,2023-12-30 12:51:59+01:00,Oleh Prypin,oleh@pryp.in,2024-03-16 13:43:27+00:00,False,pryp,pryp,* master,True,mkdocs_mkdocs,mkdocs/mkdocs,https://github.com/mkdocs/mkdocs -3b82add3755a8ffb826be54d0a1c9c6bd3218126,Jonathan Weaver,createchange@protonmail.com,2023-05-05 00:25:40-04:00,GitHub,noreply@github.com,2023-05-05 04:25:40+00:00,False,protonmail,github,* develop,True,boto_boto3,boto/boto3,https://github.com/boto/boto3 -0e9f056b3acc4862fadff5bb417150a8a38593ab,Jeff Quast,contact@jeffquast.com,2020-01-15 16:05:17-08:00,GitHub,noreply@github.com,2020-01-16 00:05:17+00:00,False,jeffquast,github,* master,True,jquast_blessed,jquast/blessed,https://github.com/jquast/blessed +8cfcfc8645fa47b776c8c6b441a9e2bb4b1b28d3,Guillaume Lours,guillaume.lours@docker.com,2020-08-17 18:29:28+02:00,Guillaume Lours,guillaume.lours@docker.com,2020-08-18 07:53:57+00:00,False,docker,docker,* main,True,docker_compose,docker/compose,https://github.com/docker/compose +0749e18b7b4c032db9dd39df00a63fafbe2960f2,Markus Unterwaditzer,markus@unterwaditzer.net,2014-04-14 12:49:39+02:00,Markus Unterwaditzer,markus@unterwaditzer.net,2014-04-14 10:49:39+00:00,False,unterwaditzer,unterwaditzer,* main,True,pimutils_vdirsyncer,pimutils/vdirsyncer,https://github.com/pimutils/vdirsyncer +8706f6598ea157841c8d8ccf6365dfdbf0d72970,Hong Minhee,hongminhee@member.fsf.org,2015-10-02 04:27:46+09:00,Hong Minhee,hongminhee@member.fsf.org,2015-10-01 19:27:46+00:00,False,member,member,* main,True,dahlia_libsass-python.git,dahlia/libsass-python.git,https://github.com/dahlia/libsass-python.git +bdbf2ce5edc4d973e6f2c2b7a2acf85285918eee,Dougal Matthews,dougal@redhat.com,2015-04-03 14:47:00+01:00,Dougal Matthews,dougal@redhat.com,2015-04-03 13:47:00+00:00,False,redhat,redhat,* master,True,mkdocs_mkdocs,mkdocs/mkdocs,https://github.com/mkdocs/mkdocs +e3d291ba3c9f48f5d439233584652aa71d6890c1,Daniel G. Taylor,danielgtaylor@gmail.com,2014-11-11 11:50:58-08:00,Daniel G. Taylor,danielgtaylor@gmail.com,2014-11-11 19:50:58+00:00,False,gmail,gmail,* develop,True,boto_boto3,boto/boto3,https://github.com/boto/boto3 +1af188b50248c794b671e55df5659e5935fdc799,Jeff Quast,contact@jeffquast.com,2015-10-02 14:08:41-07:00,Jeff Quast,contact@jeffquast.com,2015-10-02 21:08:41+00:00,False,jeffquast,jeffquast,* master,True,jquast_blessed,jquast/blessed,https://github.com/jquast/blessed 02c417d33da3c237ecf65afe84d4fb0c6f1b4286,Robert Grosse,grosse@google.com,2015-06-04 12:13:55-07:00,Robert Grosse,grosse@google.com,2015-06-04 19:13:55+00:00,False,google,google,* master,True,Storyyeller_enjarify,Storyyeller/enjarify,https://github.com/Storyyeller/enjarify -cdd4ad47d798d8729d510b9b00957044e26acb59,Kenneth Daily,kdaily@amazon.com,2021-10-15 10:57:21-07:00,GitHub,noreply@github.com,2021-10-15 17:57:21+00:00,False,amazon,github,* develop,True,boto_s3transfer,boto/s3transfer,https://github.com/boto/s3transfer -b74141257443f217393bce2abf82ccd1d425b10d,Derek Gulbranson,derek73@gmail.com,2018-08-31 15:59:44-07:00,Derek Gulbranson,derek73@gmail.com,2018-08-31 22:59:44+00:00,False,gmail,gmail,* master,True,derek73_python-nameparser,derek73/python-nameparser,https://github.com/derek73/python-nameparser -ee7de60f1a4a7652a35c5ce0a52c1276e5fada2e,Johannes Hoppe,info@johanneshoppe.com,2019-07-23 09:57:30+02:00,Johannes Hoppe,info@johanneshoppe.com,2019-07-23 08:52:58+00:00,False,johanneshoppe,johanneshoppe,* main,True,coddingtonbear_python-measurement,coddingtonbear/python-measurement,https://github.com/coddingtonbear/python-measurement +7721c5c0e0fc59f4e9bdcbaa5b30ee82dd88a15e,Nate Prewitt,Nate.Prewitt@gmail.com,2021-09-05 00:11:40-07:00,Nate Prewitt,Nate.Prewitt@gmail.com,2021-10-06 22:06:42+00:00,False,gmail,gmail,* develop,True,boto_s3transfer,boto/s3transfer,https://github.com/boto/s3transfer +78ffdef83dad7cf04392d8aae77fed247323536e,Derek Gulbranson,derek73@gmail.com,2014-05-14 15:52:19-07:00,Derek Gulbranson,derek73@gmail.com,2014-05-14 22:52:19+00:00,False,gmail,gmail,* master,True,derek73_python-nameparser,derek73/python-nameparser,https://github.com/derek73/python-nameparser +a76744c544d9302f6cf3612326ec52214e2099d4,Johannes Hoppe,info@johanneshoppe.com,2018-01-09 18:26:18+01:00,Johannes Hoppe,info@johanneshoppe.com,2018-01-09 17:26:18+00:00,False,johanneshoppe,johanneshoppe,* main,True,coddingtonbear_python-measurement,coddingtonbear/python-measurement,https://github.com/coddingtonbear/python-measurement af43013b4c7bf9edf13429be80d8c522cf14a730,Hong Xu,hong@topbug.net,2018-11-15 16:20:37-08:00,Hong Xu,hong@topbug.net,2018-11-16 00:20:37+00:00,False,topbug,topbug,* master,True,editorconfig_editorconfig-core-c.git,editorconfig/editorconfig-core-c.git,https://github.com/editorconfig/editorconfig-core-c.git -c3cd386de68721815451e8ba7cf4560d8d1c6ff6,omahs,73983677+omahs@users.noreply.github.com,2024-02-16 16:27:20+01:00,GitHub,noreply@github.com,2024-02-16 15:27:20+00:00,False,users,github,* master,True,joke2k_faker,joke2k/faker,https://github.com/joke2k/faker -087e79f8ac48898bd9ecc1ed54d636a0277e9690,Benoit Jacob,benoitjacob@google.com,2015-09-23 09:51:46-04:00,Benoit Jacob,benoitjacob@google.com,2015-09-23 13:51:46+00:00,True,google,google,* master,True,google_gemmlowp,google/gemmlowp,https://github.com/google/gemmlowp +7529e129e46b0dd27ecc9ecc843bc7cc0231571e,joke2k,joke2k@gmail.com,2015-02-16 17:47:38+01:00,joke2k,joke2k@gmail.com,2015-02-16 17:42:00+00:00,False,gmail,gmail,* master,True,joke2k_faker,joke2k/faker,https://github.com/joke2k/faker +75c4ec0ba4dd86e4f763a54e01002ff29f1d57ae,Benoit Jacob,benoitjacob@google.com,2015-06-25 15:50:59-04:00,Benoit Jacob,benoitjacob@google.com,2015-06-25 19:53:04+00:00,False,google,google,* master,True,google_gemmlowp,google/gemmlowp,https://github.com/google/gemmlowp 5f72a0dc00818bea3bb0a6b5b10ad23824fbdcd3,Iustin Pop,iustin@k1024.org,2023-04-23 22:15:21+02:00,Iustin Pop,iustin@k1024.org,2023-04-23 20:16:42+00:00,False,k1024,k1024,* main,True,iustin_pylibacl,iustin/pylibacl,https://github.com/iustin/pylibacl -f0f45dc240da0dcf9b98bad4271d52a9d230f1ea,Martin Larralde,martin.larralde@embl.de,2021-02-01 03:51:01+01:00,Martin Larralde,martin.larralde@embl.de,2021-02-01 02:51:01+00:00,False,embl,embl,* master,True,PyFilesystem_pyfilesystem2,PyFilesystem/pyfilesystem2,https://github.com/PyFilesystem/pyfilesystem2 -417268cb0ff2ecf8da29f80d542b0b10c97bab01,David Lord,davidism@gmail.com,2023-06-27 14:41:47-07:00,David Lord,davidism@gmail.com,2023-06-27 21:41:47+00:00,True,gmail,gmail,* main,True,pallets_werkzeug,pallets/werkzeug,https://github.com/pallets/werkzeug -ecf6db5425913f97d14774987b65849d0b5b0d0b,Min RK,benjaminrk@gmail.com,2024-02-16 14:51:38+01:00,GitHub,noreply@github.com,2024-02-16 13:51:38+00:00,True,gmail,github,* main,True,zeromq_pyzmq.git,zeromq/pyzmq.git,https://github.com/zeromq/pyzmq.git -8801e4d3fc542656c7caa3c77a1307daf210f2f3,Rick van Hattem,Wolph@wol.ph,2019-09-05 11:05:15+02:00,Rick van Hattem,Wolph@wol.ph,2019-09-05 09:05:15+00:00,True,wol,wol,* develop,True,WoLpH_numpy-stl,WoLpH/numpy-stl,https://github.com/WoLpH/numpy-stl -687c601a2636dde7a2c466056296a4bb8a981bd9,Martin Packman,gzlist@googlemail.com,2018-10-15 11:05:59+01:00,Brian Brazil,brian.brazil@robustperception.io,2018-10-15 10:05:59+00:00,False,googlemail,robustperception,* master,True,prometheus_client_python.git,prometheus/client/python.git,https://github.com/prometheus/client_python.git +9be803c1ff0a1440b6c8d2bdb39a4e4a511d4695,Will McGugan,willmcgugan@gmail.com,2019-01-06 13:49:08+00:00,Will McGugan,willmcgugan@gmail.com,2019-01-06 13:49:08+00:00,False,gmail,gmail,* master,True,PyFilesystem_pyfilesystem2,PyFilesystem/pyfilesystem2,https://github.com/PyFilesystem/pyfilesystem2 +271968e67533d195c16d0c0e1d73301ab8052c29,Markus Unterwaditzer,markus@unterwaditzer.net,2014-09-01 23:33:28+02:00,Markus Unterwaditzer,markus@unterwaditzer.net,2014-09-02 03:03:07+00:00,False,unterwaditzer,unterwaditzer,* main,True,pallets_werkzeug,pallets/werkzeug,https://github.com/pallets/werkzeug +b95d3ee5bd401ef17f259e3eae27a3f5694016be,MinRK,benjaminrk@gmail.com,2012-03-05 14:51:01-08:00,MinRK,benjaminrk@gmail.com,2012-03-06 21:36:34+00:00,False,gmail,gmail,* main,True,zeromq_pyzmq.git,zeromq/pyzmq.git,https://github.com/zeromq/pyzmq.git +6ab218bf71bc091eb04cedde61dcfc6fb52bbf13,Rick van Hattem,Wolph@wol.ph,2016-09-11 18:13:17+02:00,Rick van Hattem,Wolph@wol.ph,2016-09-11 16:13:17+00:00,False,wol,wol,* develop,True,WoLpH_numpy-stl,WoLpH/numpy-stl,https://github.com/WoLpH/numpy-stl +7ec4d00ea72ebeba4f3ce72e78a84e8d20c6f659,Brian Brazil,brian.brazil@gmail.com,2015-02-04 09:44:34+00:00,Brian Brazil,brian.brazil@gmail.com,2015-02-09 23:02:29+00:00,False,gmail,gmail,* master,True,prometheus_client_python.git,prometheus/client/python.git,https://github.com/prometheus/client_python.git 5ed5d4ebc1bcabecdc3278a7dda848a29b5e8ae6,Zearin,Zearin@users.noreply.github.com,2015-03-02 13:06:18-05:00,Zearin,Zearin@users.noreply.github.com,2015-03-02 18:06:18+00:00,False,users,users,* master,True,heynemann_preggy,heynemann/preggy,https://github.com/heynemann/preggy -1403966f149f6ff42a3b5770bb5b0e562e1f2544,Nathaniel J. Smith,njs@pobox.com,2017-12-06 03:23:12-08:00,GitHub,noreply@github.com,2017-12-06 11:23:12+00:00,True,pobox,github,* main,True,python-trio_trio,python-trio/trio,https://github.com/python-trio/trio -8985b952cd8af594b3a9c822f793f980ee79aeb2,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-10-21 17:14:19+03:00,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-10-21 14:14:19+00:00,False,ionelmc,ionelmc,* master,True,ionelmc_python-tblib,ionelmc/python-tblib,https://github.com/ionelmc/python-tblib -1ff8b03ae9cf7b6d14cf514a3a8ac297fe799a24,Gabriel Scherer,gabriel.scherer@gmail.com,2019-06-23 17:37:03+02:00,GitHub,noreply@github.com,2019-06-23 15:37:03+00:00,True,gmail,github,* master,True,ocaml_ocamlbuild.git,ocaml/ocamlbuild.git,https://github.com/ocaml/ocamlbuild.git -c262a2d65d39e4b2a9593cf0537ddb68f78798c7,Karen Etheridge,ether@cpan.org,2019-04-13 23:55:47-07:00,Karen Etheridge,ether@cpan.org,2019-04-14 06:55:47+00:00,False,cpan,cpan,* master,True,karenetheridge_B-Hooks-Parser.git,karenetheridge/B-Hooks-Parser.git,https://github.com/karenetheridge/B-Hooks-Parser.git -5b7260e222f66040807abbe5ec162b07f9201292,Thomas Montague,montague.thomas@gmail.com,2024-01-10 19:43:19-05:00,GitHub,noreply@github.com,2024-01-11 00:43:19+00:00,True,gmail,github,* master,True,ComplianceAsCode_content,ComplianceAsCode/content,https://github.com/ComplianceAsCode/content -bbe2749821f565190979971c8ea3db8e50cb1698,Zander Brown,ZanderBrown@users.noreply.github.com,2018-07-08 19:06:15+01:00,Zander Brown,ZanderBrown@users.noreply.github.com,2018-07-08 18:06:15+00:00,True,users,users,* master,True,mu-editor_mu,mu-editor/mu,https://github.com/mu-editor/mu -8179f7f379de8a882deeeb8081e1dce051fa7c53,Jacob Tomlinson,jacobtomlinson@users.noreply.github.com,2019-10-22 13:18:14+01:00,Benjamin Zaitlen,quasiben@users.noreply.github.com,2019-10-22 12:18:14+00:00,False,users,users,* main,True,dask_dask,dask/dask,https://github.com/dask/dask -7105292f785e68c31cca6b06740b5958faf321c5,Venelin Stoykov,vkstoykov@gmail.com,2021-11-02 08:39:05+02:00,Venelin Stoykov,vkstoykov@gmail.com,2021-11-02 06:39:05+00:00,True,gmail,gmail,* develop,True,matthewwithanm_django-imagekit.git,matthewwithanm/django-imagekit.git,https://github.com/matthewwithanm/django-imagekit.git -4c3d023d3258e1792378b9e23ec4127cbce181df,David Golden,xdg@xdg.me,2017-04-02 13:43:23-04:00,David Golden,xdg@xdg.me,2017-04-02 17:43:23+00:00,False,xdg,xdg,* master,True,dagolden_class-insideout.git,dagolden/class-insideout.git,https://github.com/dagolden/class-insideout.git -882ddc191e1b06738c16daf0c11e3b96feb30f66,Bob Copeland,copeland@lastpass.com,2015-11-02 16:34:13-05:00,Bob Copeland,copeland@lastpass.com,2015-11-10 15:19:45+00:00,False,lastpass,lastpass,* master,True,lastpass_lastpass-cli,lastpass/lastpass-cli,https://github.com/lastpass/lastpass-cli -901b00547d67a3244626e41849fc41c15be28a75,Johan ter Beest,johan@terbeest.net,2015-11-18 12:25:05+01:00,Johan ter Beest,johan@terbeest.net,2015-11-18 11:25:05+00:00,True,terbeest,terbeest,* master,True,RIPE-NCC_ripe.atlas.sagan,RIPE-NCC/ripe.atlas.sagan,https://github.com/RIPE-NCC/ripe.atlas.sagan -0badc75904cb6efd126f1f01b74ca40af9e92ab8,E. McConville,emcconville@emcconville.com,2020-07-19 09:28:39-05:00,E. McConville,emcconville@emcconville.com,2020-07-19 14:28:39+00:00,False,emcconville,emcconville,* master,True,emcconville_wand,emcconville/wand,https://github.com/emcconville/wand +3759eada7e7905ad0091e1f8edf676f177009188,Nathaniel J. Smith,njs@pobox.com,2017-12-04 05:17:55-08:00,Nathaniel J. Smith,njs@pobox.com,2017-12-05 00:14:52+00:00,False,pobox,pobox,* main,True,python-trio_trio,python-trio/trio,https://github.com/python-trio/trio +8d04e68fdac7ddf9f34f3d2f11f5f305815ef789,Ionel Cristian Mărieș,contact@ionelmc.ro,2015-10-02 22:42:08+03:00,Ionel Cristian Mărieș,contact@ionelmc.ro,2015-10-02 19:42:08+00:00,False,ionelmc,ionelmc,* master,True,ionelmc_python-tblib,ionelmc/python-tblib,https://github.com/ionelmc/python-tblib +0aaffb919f6938261a75203f2c1c5f19764b0e17,Sander Maijers,S.N.Maijers@gmail.com,2016-04-18 14:02:43+02:00,Gabriel Scherer,gabriel.scherer@gmail.com,2016-05-04 11:33:20+00:00,False,gmail,gmail,* master,True,ocaml_ocamlbuild.git,ocaml/ocamlbuild.git,https://github.com/ocaml/ocamlbuild.git +5f1e47afcb524803f71f600b6a1edbfe40f6796f,Karen Etheridge,ether@cpan.org,2015-06-06 13:55:06-07:00,Karen Etheridge,ether@cpan.org,2015-06-06 20:55:06+00:00,False,cpan,cpan,* master,True,karenetheridge_B-Hooks-Parser.git,karenetheridge/B-Hooks-Parser.git,https://github.com/karenetheridge/B-Hooks-Parser.git +0ebc98342d4b2be00d7799e2e35b33898619b901,Juan Antonio Osorio Robles,jaosorior@redhat.com,2020-03-24 17:09:56+02:00,Juan Antonio Osorio Robles,jaosorior@redhat.com,2020-03-24 15:09:56+00:00,False,redhat,redhat,* master,True,ComplianceAsCode_content,ComplianceAsCode/content,https://github.com/ComplianceAsCode/content +9b6705571107d704d576269ae1723d589c330a16,Nicholas H.Tollervey,ntoll@ntoll.org,2015-12-08 07:07:13+00:00,Nicholas H.Tollervey,ntoll@ntoll.org,2015-12-08 07:07:13+00:00,False,ntoll,ntoll,* master,True,mu-editor_mu,mu-editor/mu,https://github.com/mu-editor/mu +0f896927c4541cc70226e5fc946520f6225cde7b,Matthew Rocklin,mrocklin@gmail.com,2016-06-22 16:41:31-07:00,GitHub,noreply@github.com,2016-06-22 23:41:31+00:00,False,gmail,github,* main,True,dask_dask,dask/dask,https://github.com/dask/dask +7532e5040bd9487ddc4d74dcac22209b2fee33de,Matthew Tretter,m@tthewwithanm.com,2012-11-06 00:40:14-05:00,Matthew Tretter,m@tthewwithanm.com,2012-11-06 05:40:14+00:00,False,tthewwithanm,tthewwithanm,* develop,True,matthewwithanm_django-imagekit.git,matthewwithanm/django-imagekit.git,https://github.com/matthewwithanm/django-imagekit.git +de6d9769c13e375a6299907dd0f1cd85e31a7ee1,David Golden,dagolden@cpan.org,2013-01-23 20:38:23-05:00,David Golden,dagolden@cpan.org,2013-01-24 01:38:23+00:00,False,cpan,cpan,* master,True,dagolden_class-insideout.git,dagolden/class-insideout.git,https://github.com/dagolden/class-insideout.git +5c229976032872d2c5e889f033ce82f20e15e6c4,Bob Copeland,copeland@lastpass.com,2014-11-20 04:48:29-05:00,Bob Copeland,copeland@lastpass.com,2014-11-20 09:48:29+00:00,False,lastpass,lastpass,* master,True,lastpass_lastpass-cli,lastpass/lastpass-cli,https://github.com/lastpass/lastpass-cli +8a365abd9c7255d0b92787671bdea5f44408cbaa,Daniel Quinn,dquinn@ripe.net,2015-11-17 18:27:00+01:00,Daniel Quinn,dquinn@ripe.net,2015-11-17 17:27:00+00:00,False,ripe,ripe,* master,True,RIPE-NCC_ripe.atlas.sagan,RIPE-NCC/ripe.atlas.sagan,https://github.com/RIPE-NCC/ripe.atlas.sagan +92f3d5111cf529b550a35a43cdbdd92910697ed1,Hong Minhee,minhee@dahlia.kr,2013-03-05 01:05:47+09:00,Hong Minhee,minhee@dahlia.kr,2013-03-04 16:05:47+00:00,False,dahlia,dahlia,* master,True,emcconville_wand,emcconville/wand,https://github.com/emcconville/wand 5010bd74848e732669ef739b3df2b0d34e8f84c1,Karen Etheridge,ether@cpan.org,2017-06-27 16:21:31-07:00,Karen Etheridge,ether@cpan.org,2017-06-27 23:21:31+00:00,False,cpan,cpan,* master,True,perl-catalyst_Catalyst-Authentication-Credential-HTTP,perl-catalyst/Catalyst-Authentication-Credential-HTTP,https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP 87c6bc4f1cf3ca953dcb839fbfe32329947ce687,Andrew Ayer,andrew@sslmate.com,2017-01-06 10:55:52-08:00,Andrew Ayer,andrew@sslmate.com,2017-01-06 18:55:52+00:00,False,sslmate,sslmate,* master,True,sslmate_certspotter,sslmate/certspotter,https://github.com/sslmate/certspotter -f643a8e6e6a3e69ff803048e6fb33dfcdc244ac3,memst,stankev.martynas@gmail.com,2021-09-14 20:22:48+01:00,GitHub,noreply@github.com,2021-09-14 19:22:48+00:00,False,gmail,github,* master,True,python-hyper_h11.git,python-hyper/h11.git,https://github.com/python-hyper/h11.git -9ed5b172ee02183dd9e57efad0a7661eb56529b2,Talha Awan,talhamanzoorawan@gmail.com,2020-12-20 19:16:00+05:00,Talha Awan,talhamanzoorawan@gmail.com,2020-12-20 14:16:00+00:00,True,gmail,gmail,* master,True,felixge_node-dateformat,felixge/node-dateformat,https://github.com/felixge/node-dateformat -3f8314db627fe366dc7de1d3f514c4ef7e56e52d,Steven Silvester,steven.silvester@ieee.org,2023-12-12 14:12:51-06:00,GitHub,noreply@github.com,2023-12-12 20:12:51+00:00,False,ieee,github,* master,True,mongodb_motor,mongodb/motor,https://github.com/mongodb/motor +2dc18c5ef831bd6d9b7d5cb2def4450a83114980,Nathaniel J. Smith,njs@pobox.com,2016-05-13 18:19:14-07:00,Nathaniel J. Smith,njs@pobox.com,2016-05-14 01:19:14+00:00,False,pobox,pobox,* master,True,python-hyper_h11.git,python-hyper/h11.git,https://github.com/python-hyper/h11.git +5fa13ecb73d35b1e29ce2d5b8256dd879b58921c,Charlike Mike Reagent,mamemto_100@mail.bg,2014-11-26 13:45:57+02:00,Charlike Mike Reagent,mamemto_100@mail.bg,2014-11-26 11:45:57+00:00,False,mail,mail,* master,True,felixge_node-dateformat,felixge/node-dateformat,https://github.com/felixge/node-dateformat +3d6089eeeea36ac808c6c409c36b8c13f1901bba,A. Jesse Jiryu Davis,jesse@10gen.com,2013-01-15 14:07:09-05:00,A. Jesse Jiryu Davis,jesse@10gen.com,2013-01-15 19:07:09+00:00,False,10gen,10gen,* master,True,mongodb_motor,mongodb/motor,https://github.com/mongodb/motor 7401efab4d6c2db93886ca92b4479ce90d749a51,Bob Halley,halley@dnspython.org,2024-02-09 14:12:59-08:00,Bob Halley,halley@dnspython.org,2024-02-09 22:12:59+00:00,False,dnspython,dnspython,* main,True,rthalley_dnspython.git,rthalley/dnspython.git,https://github.com/rthalley/dnspython.git -d75c658e1bd25444d2af2ea759c734fb0f952aa4,fgo,fgo@ableton.com,2018-07-06 09:21:52+02:00,fgo,fgo@ableton.com,2018-07-06 07:32:01+00:00,False,ableton,ableton,* master,True,Ableton_link.git,Ableton/link.git,https://github.com/Ableton/link.git -a9cbc405d26a78a617c07c5fb924c5a666091ea3,Rémy Coutable,rymai@users.noreply.github.com,2019-11-01 01:17:30+01:00,GitHub,noreply@github.com,2019-11-01 00:17:30+00:00,True,users,github,* master,True,guard_guard.git,guard/guard.git,https://invent.kde.org/plasma/libksysguard.git -a51dbb5a3f0a524064e735a9d2a66f8f55ed1378,Raphaël Barrois,raphael.barrois@polytechnique.org,2018-07-29 14:55:03+01:00,Raphaël Barrois,raphael.barrois@polytechnique.org,2018-07-29 13:55:03+00:00,False,polytechnique,polytechnique,* master,True,django-ldapdb_django-ldapdb,django-ldapdb/django-ldapdb,https://github.com/django-ldapdb/django-ldapdb -c34ddaa9a4041bc4c38414d3d0aeb1eb588d92f8,Dan Hemberger,daniel.hemberger@gmail.com,2022-11-09 22:39:19-08:00,Dan Hemberger,daniel.hemberger@gmail.com,2022-11-10 06:41:16+00:00,False,gmail,gmail,* main,True,hickford_MechanicalSoup,hickford/MechanicalSoup,https://github.com/hickford/MechanicalSoup -c3e7f310927a0806de8663676d645ecb8f693229,Marius Gedminas,marius@gedmin.as,2015-12-08 19:01:44+02:00,Marius Gedminas,marius@gedmin.as,2015-12-08 17:01:44+00:00,False,gedmin,gedmin,* master,True,gtimelog_gtimelog,gtimelog/gtimelog,https://github.com/gtimelog/gtimelog -d1e69b195b2c40f3ecc30563722858d4af24dad7,Zuul,zuul@review.opendev.org,2020-06-01 23:33:33+00:00,Gerrit Code Review,review@openstack.org,2020-06-01 23:33:33+00:00,True,review,openstack,* master,True,openstack_python-swiftclient.git,openstack/python-swiftclient.git,https://github.com/openstack/python-swiftclient.git +c33d22bc3ca9f18d4d282c04c77c8dfc88effb8b,fgo,fgo@ableton.com,2016-09-01 10:12:58+02:00,fgo,fgo@ableton.com,2016-09-12 19:44:41+00:00,False,ableton,ableton,* master,True,Ableton_link.git,Ableton/link.git,https://github.com/Ableton/link.git +94623f22ddc05e6ba39515f5dd19fde28c2d3f23,Michael Kessler,michi@netzpiraten.ch,2012-09-17 23:08:52+02:00,Michael Kessler,michi@netzpiraten.ch,2012-09-17 21:09:03+00:00,False,netzpiraten,netzpiraten,* master,True,guard_guard.git,guard/guard.git,https://invent.kde.org/plasma/libksysguard.git +4d4720a2fc6827729aba75b950fb9a1cbb8a83c9,Raphaël Barrois,raphael.barrois@polytechnique.org,2018-07-29 14:24:46+01:00,Raphaël Barrois,raphael.barrois@polytechnique.org,2018-07-29 13:28:09+00:00,False,polytechnique,polytechnique,* master,True,django-ldapdb_django-ldapdb,django-ldapdb/django-ldapdb,https://github.com/django-ldapdb/django-ldapdb +39e75497959a90f3e5c3925801b15e21899e2398,Mirth Hickford,mirth.hickford@gmail.com,2015-11-24 12:03:29+00:00,Mirth Hickford,mirth.hickford@gmail.com,2015-11-24 12:03:29+00:00,False,gmail,gmail,* main,True,hickford_MechanicalSoup,hickford/MechanicalSoup,https://github.com/hickford/MechanicalSoup +44d5a1cb3c6b78e0c2fe77f7133ddf909fb24d1c,Marius Gedminas,marius@gedmin.as,2013-11-27 10:46:23+02:00,Marius Gedminas,marius@gedmin.as,2013-11-27 08:46:23+00:00,False,gedmin,gedmin,* master,True,gtimelog_gtimelog,gtimelog/gtimelog,https://github.com/gtimelog/gtimelog +061607fc1dd4c9acde6bfbcbd7094d2515163f8b,liuqing,jing.liuqing@99cloud.net,2014-07-01 16:04:12+08:00,liuqing,jing.liuqing@99cloud.net,2014-07-03 06:54:25+00:00,False,99cloud,99cloud,* master,True,openstack_python-swiftclient.git,openstack/python-swiftclient.git,https://github.com/openstack/python-swiftclient.git e65c12da5f0b2d2c3531d790953b5d288c03b4a7,Dan Williams,dcbw@src.gnome.org,2007-02-02 15:37:33+00:00,Dan Williams,dcbw@src.gnome.org,2007-02-02 15:37:33+00:00,False,src,src,* main,True,GNOME_network-manager-applet,GNOME/network-manager-applet,https://gitlab.gnome.org/GNOME/network-manager-applet c9cda413f4f4be6a42a55d7c44a56081e8496ce6,Daniel P. Berrangé,berrange@redhat.com,2020-05-11 13:50:26+01:00,Daniel P. Berrangé,berrange@redhat.com,2020-05-15 16:34:35+00:00,False,redhat,redhat,* master,True,libvirt_libvirt-ruby.git,libvirt/libvirt-ruby.git,https://gitlab.com/libvirt/libvirt-ruby.git -99909fcd219211e71c1742add9a9db811d8e8cae,David Ford,david@blue-labs.org,2022-03-13 21:21:19-04:00,GitHub,noreply@github.com,2022-03-14 01:21:19+00:00,True,blue-labs,github,* master,True,FirefighterBlu3_python-pam,FirefighterBlu3/python-pam,https://github.com/FirefighterBlu3/python-pam -1a4452ac8e92f90d8c16a4ba0bee7ba3f0a6cd2e,Alf Gaida,agaida@siduction.org,2018-03-26 18:18:29+02:00,Alf Gaida,agaida@siduction.org,2018-03-26 16:18:29+00:00,False,siduction,siduction,* master,True,lxqt_qterminal.git,lxqt/qterminal.git,https://github.com/lxqt/qterminal.git -d7235c74f8605f4abfb11eb257246864c7dcf709,John L. Villalovos,john@sodarock.com,2024-02-17 10:09:20-08:00,Nejc Habjan,hab.nejc@gmail.com,2024-02-17 19:24:19+00:00,False,sodarock,gmail,* main,True,python-gitlab_python-gitlab.git,python-gitlab/python-gitlab.git,https://github.com/python-gitlab/python-gitlab.git -cb853560019b61f3fe840b2be3621a0c7793324c,Axel Beckert,abe@deuxchevaux.org,2017-07-23 19:29:27+02:00,Axel Beckert,abe@deuxchevaux.org,2017-07-23 17:29:27+00:00,False,deuxchevaux,deuxchevaux,* master,True,elmar_aptitude-robot,elmar/aptitude-robot,https://github.com/elmar/aptitude-robot -2e6d53f28a6cd356bc500c05d0f653ebe40255c8,Nikita Bulai,bulaj.nikita@gmail.com,2020-06-03 21:47:42+03:00,Nikita Bulai,bulaj.nikita@gmail.com,2020-06-03 18:47:42+00:00,False,gmail,gmail,* main,True,doorkeeper-gem_doorkeeper,doorkeeper-gem/doorkeeper,https://github.com/doorkeeper-gem/doorkeeper +8826e8c8dd196963866d5907b46f4716fc8732f7,David Ford,david@blue-labs.org,2018-05-04 21:50:57-04:00,GitHub,noreply@github.com,2018-05-05 01:50:57+00:00,False,blue-labs,github,* master,True,FirefighterBlu3_python-pam,FirefighterBlu3/python-pam,https://github.com/FirefighterBlu3/python-pam +78425623e890d254da489e7a198223849883a157,Jerome Leclanche,jerome@leclan.ch,2014-10-21 18:11:55+02:00,Jerome Leclanche,jerome@leclan.ch,2014-10-22 08:13:14+00:00,False,leclan,leclan,* master,True,lxqt_qterminal.git,lxqt/qterminal.git,https://github.com/lxqt/qterminal.git +edf49a3d855b1ce4e2bd8a7038b7444ff0ab5fdc,Eric Davies,iamed2@gmail.com,2021-07-27 14:36:55-05:00,John Villalovos,john@sodarock.com,2021-07-27 21:35:34+00:00,False,gmail,sodarock,* main,True,python-gitlab_python-gitlab.git,python-gitlab/python-gitlab.git,https://github.com/python-gitlab/python-gitlab.git +fc342ca115e577225dd54c7c8cfed3b21edbcba8,Axel Beckert,abe@deuxchevaux.org,2017-07-23 19:27:34+02:00,Axel Beckert,abe@deuxchevaux.org,2017-07-23 17:27:34+00:00,False,deuxchevaux,deuxchevaux,* master,True,elmar_aptitude-robot,elmar/aptitude-robot,https://github.com/elmar/aptitude-robot +93a66ab15c5068574d71acec298219f32fb0c3a2,Tute Costa,tutecosta@gmail.com,2014-11-22 20:02:50-05:00,Tute Costa,tutecosta@gmail.com,2014-11-23 01:02:50+00:00,False,gmail,gmail,* main,True,doorkeeper-gem_doorkeeper,doorkeeper-gem/doorkeeper,https://github.com/doorkeeper-gem/doorkeeper 72455878f6e8a7056448829ef227d31520b34839,Stefan Breunig,stefan-github@yrden.de,2014-12-27 21:46:11+01:00,Stefan Breunig,stefan-github@yrden.de,2014-12-27 20:46:11+00:00,False,yrden,yrden,* master,True,breunigs_python-librtmp-debian,breunigs/python-librtmp-debian,https://github.com/breunigs/python-librtmp-debian 56fceff11bf90f020acd4000568a0a56299f8ffe,Gregory Smith,gps@google.com,2015-03-20 18:22:24-07:00,Gregory Smith,gps@google.com,2015-03-21 01:22:24+00:00,False,google,google,* main,True,google_python_portpicker,google/python/portpicker,https://github.com/google/python_portpicker -70b949cd2c723ac315f95539ad72d388daf84806,John Vandenberg,jayvdb@gmail.com,2022-03-14 10:36:04+08:00,GitHub,noreply@github.com,2022-03-14 02:36:04+00:00,True,gmail,github,* master,True,carljm_django-model-utils.git,carljm/django-model-utils.git,https://github.com/carljm/django-model-utils.git -5885bcb3d4145ac159805b56b0b2fc4f13a09a7e,mgetka,michal.getka@gmail.com,2020-08-10 10:37:23+02:00,mgetka,michal.getka@gmail.com,2020-08-10 08:37:23+00:00,True,gmail,gmail,* dev,True,marshmallow-code_marshmallow.git,marshmallow-code/marshmallow.git,https://github.com/marshmallow-code/flask-marshmallow.git -3096a5caa6c37f0e6d5067214829e5b988bc35e7,Tomas Susanka,tsusanka@gmail.com,2020-04-30 14:49:33+02:00,Tomas Susanka,tsusanka@gmail.com,2020-04-30 12:49:47+00:00,False,gmail,gmail,* main,True,trezor_trezor-firmware.git,trezor/trezor-firmware.git,https://github.com/trezor/trezor-firmware.git -edf1d67ff7322d3cf5b747fc0753704a41be098e,Gregory Todd Williams,greg@evilfunhouse.com,2018-02-03 18:04:22-08:00,GitHub,noreply@github.com,2018-02-04 02:04:22+00:00,True,evilfunhouse,github,* master,True,kasei_attean.git,kasei/attean.git,https://github.com/kasei/attean.git -543ffdb82b4c5b6af4b135aa76bb988b1bce8ac6,Gaetano Guerriero,x.guerriero@tin.it,2018-04-25 15:30:41+02:00,Gaetano Guerriero,x.guerriero@tin.it,2018-04-25 13:30:41+00:00,False,tin,tin,* master,True,gaetano-guerriero_eyeD3-debian,gaetano-guerriero/eyeD3-debian,https://github.com/gaetano-guerriero/eyeD3-debian -bd2c6282a78954d996ecd989f774b18f6e5c4960,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-12-13 18:17:28+02:00,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-12-13 16:17:28+00:00,False,ionelmc,ionelmc,* master,True,ionelmc_python-lazy-object-proxy.git,ionelmc/python-lazy-object-proxy.git,https://github.com/ionelmc/python-lazy-object-proxy.git -134c792df3b6aa84de3e74e81a875493c95dcc2e,Aarni Koskela,akx@iki.fi,2023-03-03 18:51:58+02:00,GitHub,noreply@github.com,2023-03-03 16:51:58+00:00,True,iki,github,* master,True,python-babel_babel,python-babel/babel,https://github.com/python-babel/flask-babel +6aa6ba0667f49dea0e71d4ec1cca93d3d67f302c,Trey Hunner,trey@treyhunner.com,2013-05-20 22:58:08-07:00,Trey Hunner,trey@treyhunner.com,2013-07-25 06:22:12+00:00,False,treyhunner,treyhunner,* master,True,carljm_django-model-utils.git,carljm/django-model-utils.git,https://github.com/carljm/django-model-utils.git +f1aa25bcf83eb77eb6476c678d4375039127679a,Steven Loria,sloria1@gmail.com,2013-11-08 13:36:15-06:00,Steven Loria,sloria1@gmail.com,2013-11-08 19:36:15+00:00,False,gmail,gmail,* dev,True,marshmallow-code_marshmallow.git,marshmallow-code/marshmallow.git,https://github.com/marshmallow-code/flask-marshmallow.git +f684f4ad243abfed03c53946a85493e03d272ec7,Tomas Susanka,tsusanka@gmail.com,2019-01-16 13:23:44+01:00,Pavol Rusnak,pavol@rusnak.io,2019-01-16 12:46:13+00:00,False,gmail,rusnak,* main,True,trezor_trezor-firmware.git,trezor/trezor-firmware.git,https://github.com/trezor/trezor-firmware.git +33c482078b0ffe85e13dd624cd985e7a69d15041,Gregory Todd Williams,greg@evilfunhouse.com,2016-02-17 12:57:08-08:00,Gregory Todd Williams,greg@evilfunhouse.com,2016-02-17 20:57:08+00:00,False,evilfunhouse,evilfunhouse,* master,True,kasei_attean.git,kasei/attean.git,https://github.com/kasei/attean.git +a7cceacf16d2a0f959ec76935c89ccdce1707385,Gaetano Guerriero,x.guerriero@tin.it,2017-07-15 10:42:40+02:00,Gaetano Guerriero,x.guerriero@tin.it,2017-07-15 08:42:40+00:00,False,tin,tin,* master,True,gaetano-guerriero_eyeD3-debian,gaetano-guerriero/eyeD3-debian,https://github.com/gaetano-guerriero/eyeD3-debian +890441240ba4fa5d2f79d4e6e6c326a5f0542c6d,Ionel Cristian Mărieș,contact@ionelmc.ro,2014-12-07 16:37:38+02:00,Ionel Cristian Mărieș,contact@ionelmc.ro,2014-12-07 14:37:38+00:00,False,ionelmc,ionelmc,* master,True,ionelmc_python-lazy-object-proxy.git,ionelmc/python-lazy-object-proxy.git,https://github.com/ionelmc/python-lazy-object-proxy.git +1174bff582e4a8c41bec10b7114aa202a32c6b48,Lasse Schuirmann,lasse.schuirmann@gmail.com,2015-09-22 23:21:20+02:00,Lasse Schuirmann,lasse.schuirmann@gmail.com,2015-09-22 21:22:40+00:00,False,gmail,gmail,* master,True,python-babel_babel,python-babel/babel,https://github.com/python-babel/flask-babel 8cba4a2011f70921d5130e0fbffa7e986ea82593,Chip Kent,5250374+chipkent@users.noreply.github.com,2021-05-19 12:46:19-06:00,GitHub,noreply@github.com,2021-05-19 18:46:19+00:00,False,users,github,* master,True,jpy-consortium_jpy,jpy-consortium/jpy,https://github.com/jpy-consortium/jpy 30167a535c7eac17888d50a08998bccf92469e19,Federico Capoano,nemesis@ninux.org,2016-07-08 17:35:25+02:00,Federico Capoano,nemesis@ninux.org,2016-07-08 15:35:25+00:00,False,ninux,ninux,* master,True,openwisp_django-x509,openwisp/django-x509,https://github.com/openwisp/django-x509 3e3455ef9ae8f9751f8f1cdc8d08c7ccfdcd2b2f,nefrob,25070989+nefrob@users.noreply.github.com,2023-10-27 11:06:58-06:00,GitHub,noreply@github.com,2023-10-27 17:06:58+00:00,False,users,github,* main,True,tox-dev_py-filelock,tox-dev/py-filelock,https://github.com/tox-dev/py-filelock fdb29683d805781884262ace1df463746bc66caa,Juho Vepsäläinen,bebraw@gmail.com,2020-10-16 16:47:14+02:00,Juho Vepsäläinen,bebraw@gmail.com,2020-10-16 14:47:14+00:00,False,gmail,gmail,* develop,True,survivejs_webpack-merge.git,survivejs/webpack-merge.git,https://github.com/survivejs/webpack-merge.git -e8acf461093570fd519d4c16d9a18cd0b5bfaf2d,Matthew Fernandez,matthew.fernandez@gmail.com,2020-03-12 18:43:26-07:00,Matthew Fernandez,matthew.fernandez@gmail.com,2020-03-13 01:43:26+00:00,True,gmail,gmail,* main,True,Smattr_rumur.git,Smattr/rumur.git,https://github.com/Smattr/rumur.git -369106ced0f0ac43ac5b7a3fb3e98f95b811caa7,Lucas Hoffmann,lucc@posteo.de,2023-12-01 09:44:19+01:00,Lucas Hoffmann,lucc@posteo.de,2023-12-01 08:44:19+00:00,False,posteo,posteo,* main,True,lucc_khard,lucc/khard,https://github.com/lucc/khard +c975a20ac362b8097978d9eda4e65a9ba5e25bc6,Matthew Fernandez,matthew.fernandez@gmail.com,2020-02-06 18:00:29-08:00,Matthew Fernandez,matthew.fernandez@gmail.com,2020-02-07 02:00:29+00:00,False,gmail,gmail,* main,True,Smattr_rumur.git,Smattr/rumur.git,https://github.com/Smattr/rumur.git +4327f5898a3fdf0cb2a29cfa5318ff61670bb97b,Lucas Hoffmann,lucc@posteo.de,2019-06-21 22:34:35+02:00,Lucas Hoffmann,lucc@posteo.de,2019-06-23 08:33:32+00:00,False,posteo,posteo,* main,True,lucc_khard,lucc/khard,https://github.com/lucc/khard 7ac26ed9c241d00e8688139b06e804badb25fa46,José Expósito,jose.exposito89@gmail.com,2024-02-28 17:07:45+01:00,José Expósito,jose.exposito89@gmail.com,2024-02-28 16:07:45+00:00,False,gmail,gmail,* main,True,libinput_libinput,libinput/libinput,https://gitlab.freedesktop.org/libinput/libinput -706b2b23b0f35d8db5800a6d8c4b02d9e54bee4c,Chris Simpkins,git.simpkins@gmail.com,2017-10-19 20:48:46-04:00,Chris Simpkins,git.simpkins@gmail.com,2017-10-20 00:48:46+00:00,False,gmail,gmail,* master,True,source-foundry_Hack,source-foundry/Hack,https://github.com/source-foundry/Hack -fcf29c3e74cbc6aa5ab7e6a21a4bd85e63b0acd7,Pamela Fox,pamela.fox@gmail.com,2023-06-19 18:32:37-07:00,GitHub,noreply@github.com,2023-06-20 01:32:37+00:00,True,gmail,github,* main,True,pallets-eco_flask-sqlalchemy,pallets-eco/flask-sqlalchemy,https://github.com/pallets-eco/flask-sqlalchemy +ca39efa570755928384f9ad7f60e62f3535a5c6f,Chris Simpkins,git.simpkins@gmail.com,2017-08-10 23:27:07-04:00,Chris Simpkins,git.simpkins@gmail.com,2017-08-11 03:27:07+00:00,False,gmail,gmail,* master,True,source-foundry_Hack,source-foundry/Hack,https://github.com/source-foundry/Hack +c724fbdbc3041446ba139feaa9bd2a7189706611,Laura Beaufort,31420082+lbeaufort@users.noreply.github.com,2019-05-06 12:32:42-04:00,David Lord,davidism@gmail.com,2020-05-26 13:34:30+00:00,False,users,gmail,* main,True,pallets-eco_flask-sqlalchemy,pallets-eco/flask-sqlalchemy,https://github.com/pallets-eco/flask-sqlalchemy b72dea2157ad7cb1eb3b1b7d85326f10f2ca6192,Matthew Tretter,m@tthewwithanm.com,2013-02-07 19:25:11-05:00,Matthew Tretter,m@tthewwithanm.com,2013-02-08 00:47:45+00:00,False,tthewwithanm,tthewwithanm,* master,True,matthewwithanm_pilkit,matthewwithanm/pilkit,https://github.com/matthewwithanm/pilkit a1b157f8fe1e12b8028190c81d43e478df7484e5,Ian Cordasco,graffatcolmingov@gmail.com,2016-07-19 12:32:21-05:00,Ian Cordasco,graffatcolmingov@gmail.com,2016-07-19 17:32:21+00:00,False,gmail,gmail,* main,True,PyCQA_flake8-polyfill.git,PyCQA/flake8-polyfill.git,https://github.com/PyCQA/flake8-polyfill.git -8ad6fe676e014ec716ee8c4ffcca479eb74f5610,Brian Quinlan,brian@sweetapp.com,2020-06-29 17:46:16-07:00,Brian Quinlan,brian@sweetapp.com,2020-06-30 00:46:16+00:00,True,sweetapp,sweetapp,* master,True,google_pybadges.git,google/pybadges.git,https://github.com/google/pybadges.git -788e936fc80cbbe74896d3ff86d2a84d2ceeb989,Pierre Sassoulas,pierre.sassoulas@gmail.com,2022-11-30 11:45:41+01:00,Pierre Sassoulas,pierre.sassoulas@gmail.com,2022-11-30 11:23:26+00:00,True,gmail,gmail,* master,True,PyCQA_prospector,PyCQA/prospector,https://github.com/PyCQA/prospector -cd1f8eb80fe585557f95829fa2e990d5ab48b83e,Kostya Esmukov,kostya@esmukov.ru,2021-03-28 02:23:58+03:00,Kostya Esmukov,kostya@esmukov.ru,2021-03-27 23:23:58+00:00,False,esmukov,esmukov,* master,True,geopy_geopy,geopy/geopy,https://github.com/geopython/geolinks.git -86945f9a1f7cae10a9ac9ccf4b41ce9ddfabe14c,Bruno Oliveira,nicoddemus@gmail.com,2024-03-07 19:12:19-03:00,GitHub,noreply@github.com,2024-03-07 22:12:19+00:00,False,gmail,github,* main,True,pytest-dev_pytest.git,pytest-dev/pytest.git,https://github.com/pytest-dev/pytest.git -be46440c9b9984b7b091cde504f96e82ee47acc8,Sasha Rudan,mprinc@gmail.com,2022-11-07 00:45:51+01:00,GitHub,noreply@github.com,2022-11-06 23:45:51+00:00,True,gmail,github,* main,True,pika_pika,pika/pika,https://github.com/pika/pika -b51d43ba182d776cbf073c7a796010efc63eee1d,Matt Richards,45483497+m-richards@users.noreply.github.com,2023-09-13 19:14:10+10:00,GitHub,noreply@github.com,2023-09-13 09:14:10+00:00,False,users,github,* main,True,geopandas_geopandas.git,geopandas/geopandas.git,https://github.com/geopandas/geopandas.git +2bbc8714acfcf25aa0ba43389ad1cdb1c0dbafe2,Brian Quinlan,brian@sweetapp.com,2018-06-27 13:29:57-07:00,Brian Quinlan,brian@sweetapp.com,2018-06-27 20:29:57+00:00,False,sweetapp,sweetapp,* master,True,google_pybadges.git,google/pybadges.git,https://github.com/google/pybadges.git +257e3aca40db8e2cdc004afbc6c8f9549b628a2a,Carlos Coêlho,carlospecter@gmail.com,2019-07-29 21:46:10-03:00,GitHub,noreply@github.com,2019-07-30 00:46:10+00:00,False,gmail,github,* master,True,PyCQA_prospector,PyCQA/prospector,https://github.com/PyCQA/prospector +30b0f836ff28750fcadfe5511b35e8b00c0de1e5,ijl,ijl@mailbox.org,2015-08-31 23:43:38+00:00,ijl,ijl@mailbox.org,2015-08-31 23:44:42+00:00,False,mailbox,mailbox,* master,True,geopy_geopy,geopy/geopy,https://github.com/geopython/geolinks.git +c2c44f0ffc659ebdd1a1faf334c845aefdd371e1,Piotr Banaszkiewicz,piotr@banaszkiewicz.org,2014-01-22 11:37:02+01:00,Piotr Banaszkiewicz,piotr@banaszkiewicz.org,2014-01-22 10:37:02+00:00,False,banaszkiewicz,banaszkiewicz,* main,True,pytest-dev_pytest.git,pytest-dev/pytest.git,https://github.com/pytest-dev/pytest.git +b293438ff8f1b39cad9329028b135c768f34c137,Gavin M. Roy,gavinr@aweber.com,2015-09-02 13:52:56-04:00,Gavin M. Roy,gavinr@aweber.com,2015-09-02 17:52:56+00:00,False,aweber,aweber,* main,True,pika_pika,pika/pika,https://github.com/pika/pika +7057bbbf5abd0b2c39940bbc3fb4a253ff920e59,Kelsey Jordahl,kjordahl@alum.mit.edu,2013-10-16 07:59:30-04:00,Kelsey Jordahl,kjordahl@alum.mit.edu,2013-10-23 01:45:21+00:00,False,alum,alum,* main,True,geopandas_geopandas.git,geopandas/geopandas.git,https://github.com/geopandas/geopandas.git c79b6e3e1e7faae5a36d1396c9fce0e0987db8d7,Steven Silvester,steven.silvester@ieee.org,2023-12-22 09:43:02-06:00,GitHub,noreply@github.com,2023-12-22 15:43:02+00:00,False,ieee,github,* main,True,jupyter_jupyter-sphinx.git,jupyter/jupyter-sphinx.git,https://github.com/jupyter/jupyter-sphinx.git -966cce897c0a25485918f945eb83968d04933b2d,Tres Seaver,tseaver@palladion.com,2023-11-09 15:31:48-05:00,GitHub,noreply@github.com,2023-11-09 20:31:48+00:00,True,palladion,github,* main,True,Pylons_venusian,Pylons/venusian,https://github.com/Pylons/venusian -946926a20e47543c83f7a2cd2acc9f33d246b19d,jjjake,jake@archive.org,2022-04-26 11:01:16-07:00,GitHub,noreply@github.com,2022-04-26 18:01:16+00:00,True,archive,github,* master,True,jjjake_internetarchive.git,jjjake/internetarchive.git,https://github.com/jjjake/internetarchive.git -1d9c1e82f33686c80e49edd041fcd8d0253afdb1,Andrey Kurilin,andr.kurilin@gmail.com,2021-06-16 18:19:25+03:00,Andrey Kurilin,andr.kurilin@gmail.com,2021-06-16 15:31:48+00:00,False,gmail,gmail,* master,True,openstack_rally.git,openstack/rally.git,https://github.com/openstack/rally.git -c484eab8b19ccc8fb63495077297554055f30514,Kai Ren,tyranron@gmail.com,2023-07-04 15:16:01+03:00,GitHub,noreply@github.com,2023-07-04 12:16:01+00:00,False,gmail,github,* master,True,coturn_coturn,coturn/coturn,https://github.com/coturn/coturn -1ddc368d63b12f7c61826c266ed80db40f32c0c6,David Fisher,ddfisher@dropbox.com,2017-01-09 15:58:25-08:00,David Fisher,ddfisher@dropbox.com,2017-01-09 23:59:09+00:00,False,dropbox,dropbox,* master,True,python_typed_ast.git,python/typed/ast.git,https://github.com/python/typed_ast.git -a10b49d7819986a8f0086ff2f3a20b15569584f0,John Siirola,jsiirola@users.noreply.github.com,2019-11-07 09:15:05-07:00,GitHub,noreply@github.com,2019-11-07 16:15:05+00:00,True,users,github,* master,True,pyutilib_pyutilib,pyutilib/pyutilib,https://github.com/pyutilib/pyutilib +e94e9a8b1fe87b82f3d1eb2269898d8e62b38f81,Tres Seaver,tseaver@palladion.com,2023-11-04 14:10:26-04:00,Tres Seaver,tseaver@palladion.com,2023-11-04 18:10:26+00:00,False,palladion,palladion,* main,True,Pylons_venusian,Pylons/venusian,https://github.com/Pylons/venusian +d5e671f1ce4b4086a7fbfb06efae14dae9a5fccb,jake,jake@archive.org,2016-02-18 15:42:43-08:00,jake,jake@archive.org,2016-02-18 23:42:43+00:00,False,archive,archive,* master,True,jjjake_internetarchive.git,jjjake/internetarchive.git,https://github.com/jjjake/internetarchive.git +8544eabcb99f3bc58052e722e8317ad7a9bfd620,Dina Belova,dbelova@mirantis.com,2016-12-06 11:05:15-08:00,Dina Belova,dbelova@mirantis.com,2017-01-10 19:25:00+00:00,False,mirantis,mirantis,* master,True,openstack_rally.git,openstack/rally.git,https://github.com/openstack/rally.git +70d28de924a200102d98d55757c986ab2b839753,tyranron,tyranron@gmail.com,2021-04-13 13:25:03+03:00,tyranron,tyranron@gmail.com,2021-04-13 10:25:03+00:00,False,gmail,gmail,* master,True,coturn_coturn,coturn/coturn,https://github.com/coturn/coturn +841005cbfaa6a3d3f97c96b5228838eba3f41ab9,David Fisher,ddfisher@dropbox.com,2016-04-11 13:53:06-07:00,David Fisher,ddfisher@dropbox.com,2016-04-11 21:43:08+00:00,False,dropbox,dropbox,* master,True,python_typed_ast.git,python/typed/ast.git,https://github.com/python/typed_ast.git +422b3ede6532a10f6171388cd7d4d940e872d044,John Siirola,jsiirola@users.noreply.github.com,2018-10-27 18:03:23-06:00,John Siirola,jsiirola@users.noreply.github.com,2018-10-28 00:06:46+00:00,False,users,users,* master,True,pyutilib_pyutilib,pyutilib/pyutilib,https://github.com/pyutilib/pyutilib a112f9a9c6f901f8f249ea40efbfee2aeb36644e,Kirill Pavlov,k@p99.io,2017-10-30 22:44:25+08:00,Kirill Pavlov,k@p99.io,2017-10-30 14:50:08+00:00,False,p99,p99,* master,True,pavlov99_json-rpc,pavlov99/json-rpc,https://github.com/pavlov99/json-rpc -0d3baf27119a4265f7fdf661ca1366e7bdeda4ba,Ross Barnowski,rossbar@berkeley.edu,2022-10-25 15:23:41-07:00,GitHub,noreply@github.com,2022-10-25 22:23:41+00:00,False,berkeley,github,* main,True,pygraphviz_pygraphviz.git,pygraphviz/pygraphviz.git,https://github.com/pygraphviz/pygraphviz.git +2021e1904a53a1eb7509e488b3216136c5b32f35,David Breese,dabreese00@gmail.com,2022-01-11 22:11:26-06:00,GitHub,noreply@github.com,2022-01-12 04:11:26+00:00,False,gmail,github,* main,True,pygraphviz_pygraphviz.git,pygraphviz/pygraphviz.git,https://github.com/pygraphviz/pygraphviz.git d1041acfbaabe3df0642f3312f9f0148fe819a7a,Rudolf Polzer,rpolzer@google.com,2014-06-23 12:15:16+02:00,Rudolf Polzer,rpolzer@google.com,2014-06-25 18:26:36+00:00,False,google,google,* master,True,google_xsecurelock,google/xsecurelock,https://github.com/google/xsecurelock -9e3f1d9ba4e4cfee82e2bef93fee4daaa7d22bf9,Bastien Gérard,bast.gerard@gmail.com,2024-03-10 12:56:26+01:00,GitHub,noreply@github.com,2024-03-10 11:56:26+00:00,True,gmail,github,* master,True,mongoengine_mongoengine,mongoengine/mongoengine,https://github.com/mongoengine/flask-mongoengine -08d76df72883f18f651826d81dbf53b28fa78a33,Karen Etheridge,ether@cpan.org,2017-07-31 09:25:50-07:00,Karen Etheridge,ether@cpan.org,2017-07-31 16:25:50+00:00,False,cpan,cpan,* master,True,karenetheridge_B-Hooks-OP-Check,karenetheridge/B-Hooks-OP-Check,https://github.com/karenetheridge/B-Hooks-OP-Check -d0e639b0e5c6e4d763169a18bf2972ce55cec385,Karol Baryła,git@baryla.org,2023-10-27 21:22:57+02:00,GitHub,noreply@github.com,2023-10-27 19:22:57+00:00,False,baryla,github,* master,True,datastax_python-driver.git,datastax/python-driver.git,https://github.com/datastax/python-driver.git -68fdf01a9144a0a970eb8c0f8f89e303bab01cca,Benjamin Gruenbaum,inglor@gmail.com,2015-12-29 16:59:44+02:00,Benjamin Gruenbaum,inglor@gmail.com,2015-12-29 14:59:44+00:00,False,gmail,gmail,* master,True,petkaantonov_bluebird.git,petkaantonov/bluebird.git,https://github.com/petkaantonov/bluebird.git -620ee415f1d4a30e7de1d2bf995eee7f73087881,Michael Merickel,michael@merickel.org,2017-06-11 23:21:50-05:00,Michael Merickel,michael@merickel.org,2017-06-12 04:21:50+00:00,False,merickel,merickel,* main,True,Pylons_plaster_pastedeploy.git,Pylons/plaster/pastedeploy.git,https://github.com/Pylons/plaster_pastedeploy.git +7c1ee28f13fe9c947d956d9b2ba298cba4776e1a,Ross Lawley,ross.lawley@gmail.com,2012-09-27 10:26:22+00:00,Ross Lawley,ross.lawley@gmail.com,2012-09-27 10:26:22+00:00,False,gmail,gmail,* master,True,mongoengine_mongoengine,mongoengine/mongoengine,https://github.com/mongoengine/flask-mongoengine +ddbefff7edcf47906373c9fa1175ba7a8927e446,Karen Etheridge,ether@cpan.org,2017-05-11 11:26:49+02:00,Karen Etheridge,ether@cpan.org,2017-05-11 09:26:49+00:00,False,cpan,cpan,* master,True,karenetheridge_B-Hooks-OP-Check,karenetheridge/B-Hooks-OP-Check,https://github.com/karenetheridge/B-Hooks-OP-Check +24eba1bbc0aafc9e503747e688cacfdb88ad2fb8,Blake Eggleston,bdeggleston@gmail.com,2013-06-03 10:11:38-07:00,Blake Eggleston,bdeggleston@gmail.com,2013-06-03 17:11:38+00:00,False,gmail,gmail,* master,True,datastax_python-driver.git,datastax/python-driver.git,https://github.com/datastax/python-driver.git +8d52ba7a184305e474eddd1f3f7cacd0e26c2cbe,Petka Antonov,petka_antonov@hotmail.com,2013-11-18 01:34:54+02:00,Petka Antonov,petka_antonov@hotmail.com,2013-11-17 23:34:54+00:00,False,hotmail,hotmail,* master,True,petkaantonov_bluebird.git,petkaantonov/bluebird.git,https://github.com/petkaantonov/bluebird.git +fafacbff1595d5e94c7afb633ec84ff1e7229ebb,Hunter Senft-Grupp,huntcsg@gmail.com,2016-06-04 16:11:20-07:00,Hunter Senft-Grupp,huntcsg@gmail.com,2016-06-04 23:11:20+00:00,False,gmail,gmail,* main,True,Pylons_plaster_pastedeploy.git,Pylons/plaster/pastedeploy.git,https://github.com/Pylons/plaster_pastedeploy.git aeed204942a7305dc28ae1523a9befb3cb053fe8,James Tauber,jtauber@jtauber.com,2016-05-18 11:23:50+08:00,James Tauber,jtauber@jtauber.com,2016-05-18 03:23:50+00:00,False,jtauber,jtauber,* master,True,jtauber_pyuca,jtauber/pyuca,https://github.com/jtauber/pyuca -3890e8e4641974f4e3194db3ade7ef214479d5be,Stan Hu,stanhu@gmail.com,2021-12-03 01:09:24+00:00,Stan Hu,stanhu@gmail.com,2021-12-03 01:09:24+00:00,True,gmail,gmail,* master,True,gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org/ruby/gems/gitlab-mail/room.git,https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git +cb947f6d12d125fd84a051f65808fb4a88825307,Bronwyn Barnett,bbarnett@gitlab.com,2021-11-15 18:57:26+00:00,Bronwyn Barnett,bbarnett@gitlab.com,2021-11-15 18:57:26+00:00,False,gitlab,gitlab,* master,True,gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org/ruby/gems/gitlab-mail/room.git,https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git 13716d8b48c8380e3e0eb962a9ea2d452182db57,Jan Wassenberg,janwas@google.com,2016-03-01 15:44:10+01:00,Jan Wassenberg,janwas@google.com,2016-03-01 14:44:10+00:00,False,google,google,* master,True,google_highwayhash,google/highwayhash,https://github.com/google/highwayhash 6088ce10b9afad415ebe3fc96cb40e271a0cf910,Daniel P. Berrangé,berrange@redhat.com,2020-05-01 14:04:51+01:00,Daniel P. Berrangé,berrange@redhat.com,2020-05-05 11:10:18+00:00,False,redhat,redhat,* master,True,libvirt_libvirt-python.git,libvirt/libvirt-python.git,https://gitlab.com/libvirt/libvirt-python.git -2c6b0a65bee700b42c8d0806364f4fc4ebddcc52,David I. Lehn,dlehn@digitalbazaar.com,2024-02-20 12:50:59-05:00,David I. Lehn,dil@lehn.org,2024-02-20 17:53:04+00:00,False,digitalbazaar,lehn,* master,True,digitalbazaar_pyld,digitalbazaar/pyld,https://github.com/digitalbazaar/pyld -dd61fb169bbcf43d382ffbd03c7f6bfd9e97b18b,Rasmus Andersson,rasmus@notion.se,2023-04-20 13:47:14-07:00,Rasmus Andersson,rasmus@notion.se,2023-04-20 20:47:14+00:00,False,notion,notion,* master,True,rsms_inter,rsms/inter,https://github.com/rsms/inter -9c1a99f065f5a9acb2ddb4fb47e0bfa1e4ccf3f4,Jérémie Astori,jeremie@astori.fr,2017-12-15 21:17:23-05:00,GitHub,noreply@github.com,2017-12-16 02:17:23+00:00,True,astori,github,* main,True,chaijs_chai,chaijs/chai,https://github.com/chaijs/chai -58699464ee1f3d2707f5a8d5a699dd1dd3dbec9e,Simon McVittie,smcv@collabora.com,2022-09-06 18:35:51+01:00,Simon McVittie,smcv@collabora.com,2022-09-06 17:35:51+00:00,False,collabora,collabora,* master,True,dbus_dbus-python,dbus/dbus-python,https://gitlab.freedesktop.org/dbus/dbus-python -4ad46bb0c666d1b04222c1c5f55e1566c8763d60,Jon Dufresne,jon.dufresne@gmail.com,2017-12-12 01:29:47-08:00,Petr Viktorin,encukou@gmail.com,2017-12-12 09:29:47+00:00,False,gmail,gmail,* main,True,python-ldap_python-ldap,python-ldap/python-ldap,https://github.com/python-ldap/python-ldap -3fcf3380570d1d0bcefe9c07f1921ba4fd2754ad,David Lord,davidism@gmail.com,2023-06-28 11:52:24-07:00,GitHub,noreply@github.com,2023-06-28 18:52:24+00:00,True,gmail,github,* main,True,pallets_click.git,pallets/click.git,https://github.com/pallets/click.git -566602cc1a34224b3ef0e88298d865a7249c65e4,Kirk Byers,ktbyers@twb-tech.com,2023-11-17 09:35:03-08:00,GitHub,noreply@github.com,2023-11-17 17:35:03+00:00,True,twb-tech,github,* develop,True,ktbyers_netmiko,ktbyers/netmiko,https://github.com/ktbyers/netmiko -136802a5b2e40735b23635c63b97f69f75c71679,Carlos Cordoba,ccordoba12@gmail.com,2022-12-10 22:15:58-05:00,GitHub,noreply@github.com,2022-12-11 03:15:58+00:00,True,gmail,github,* master,True,spyder-ide_qtawesome,spyder-ide/qtawesome,https://github.com/spyder-ide/qtawesome -d81e7114fc4f3e805d3de4dfd8753e53b1b591c9,Josh Cooper,737664+joshcooper@users.noreply.github.com,2023-12-04 16:56:05-08:00,GitHub,noreply@github.com,2023-12-05 00:56:05+00:00,True,users,github,* main,True,puppetlabs_facter.git,puppetlabs/facter.git,https://github.com/puppetlabs/facter.git -72a11cdb9bf8228df6daf00ac2d192a414051a2b,Steven Loria,sloria1@gmail.com,2020-10-20 23:38:24-04:00,GitHub,noreply@github.com,2020-10-21 03:38:24+00:00,False,gmail,github,* dev,True,marshmallow-code_flask-marshmallow.git,marshmallow-code/flask-marshmallow.git,https://github.com/marshmallow-code/flask-marshmallow.git +03993c4b41ac65105f9a118c6b4624b692ddea30,David I. Lehn,dlehn@digitalbazaar.com,2015-10-08 19:06:04-04:00,David I. Lehn,dlehn@digitalbazaar.com,2015-10-08 23:06:04+00:00,False,digitalbazaar,digitalbazaar,* master,True,digitalbazaar_pyld,digitalbazaar/pyld,https://github.com/digitalbazaar/pyld +797757bde2e305e035bcba65a93993ecd0716398,Rasmus Andersson,rasmus@notion.se,2017-08-22 10:23:13-07:00,Rasmus Andersson,rasmus@notion.se,2017-08-22 17:28:57+00:00,False,notion,notion,* master,True,rsms_inter,rsms/inter,https://github.com/rsms/inter +44a829cf8946707bd08ed17cc2342b69b9d2cab1,Jake Luer,jake@alogicalparadox.com,2014-01-29 17:36:01-05:00,Jake Luer,jake@alogicalparadox.com,2014-01-29 22:36:01+00:00,False,alogicalparadox,alogicalparadox,* main,True,chaijs_chai,chaijs/chai,https://github.com/chaijs/chai +232cae5253382d8d8f7678dbda1ee37424904cab,Simon McVittie,smcv@debian.org,2018-01-29 08:47:56+00:00,Simon McVittie,smcv@debian.org,2018-01-29 08:47:56+00:00,False,debian,debian,* master,True,dbus_dbus-python,dbus/dbus-python,https://gitlab.freedesktop.org/dbus/dbus-python +d4cfa1f208803cb95a4e2261bd2c3fc132f4b347,Petr Viktorin,pviktori@redhat.com,2017-11-29 13:59:55+01:00,Petr Viktorin,pviktori@redhat.com,2017-11-29 14:04:24+00:00,False,redhat,redhat,* main,True,python-ldap_python-ldap,python-ldap/python-ldap,https://github.com/python-ldap/python-ldap +3b766a866fc78226e43a9efe692220bbcb87e399,Markus Unterwaditzer,markus@unterwaditzer.net,2015-04-26 14:06:29+02:00,Markus Unterwaditzer,markus@unterwaditzer.net,2015-04-26 12:06:29+00:00,False,unterwaditzer,unterwaditzer,* main,True,pallets_click.git,pallets/click.git,https://github.com/pallets/click.git +a5f5b6f0420786fae6120d54fc8eac9b0f22b745,Kirk Byers,ktbyers@twb-tech.com,2023-11-15 10:48:11-08:00,GitHub,noreply@github.com,2023-11-15 18:48:11+00:00,False,twb-tech,github,* develop,True,ktbyers_netmiko,ktbyers/netmiko,https://github.com/ktbyers/netmiko +7026b4a2975340fd3535cfebff39171a07008688,dalthviz,d.althviz10@uniandes.edu.co,2022-10-27 13:33:47-05:00,dalthviz,d.althviz10@uniandes.edu.co,2022-10-27 18:33:47+00:00,False,uniandes,uniandes,* master,True,spyder-ide_qtawesome,spyder-ide/qtawesome,https://github.com/spyder-ide/qtawesome +b13de9045fe41c913cb2ad651eefba6c440a3a9a,Sebastian Miclea,sebastian.miclea@puppet.com,2020-04-06 17:08:24+03:00,GitHub,noreply@github.com,2020-04-06 14:08:24+00:00,False,puppet,github,* main,True,puppetlabs_facter.git,puppetlabs/facter.git,https://github.com/puppetlabs/facter.git +b80894938070fcec09a6dec7c8648f4d167fc45a,Steven Loria,sloria1@gmail.com,2019-03-09 17:18:42-05:00,Steven Loria,sloria1@gmail.com,2019-03-09 22:40:02+00:00,False,gmail,gmail,* dev,True,marshmallow-code_flask-marshmallow.git,marshmallow-code/flask-marshmallow.git,https://github.com/marshmallow-code/flask-marshmallow.git 129ce46dc40e72147385082736475c2cc8926968,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-08-20 15:30:19-03:00,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-08-20 18:35:22+00:00,False,eriberto,eriberto,* master,True,resurrecting-open-source-projects_outguess,resurrecting-open-source-projects/outguess,https://github.com/resurrecting-open-source-projects/outguess -06ba03b183a237cba774a827460da116042dcb02,Daniel Althviz Moré,16781833+dalthviz@users.noreply.github.com,2023-10-27 14:15:05-05:00,GitHub,noreply@github.com,2023-10-27 19:15:05+00:00,True,users,github,* master,True,spyder-ide_qtpy,spyder-ide/qtpy,https://github.com/spyder-ide/qtpy -6bad1860740be2a6ab87414773fae8691a86d7d2,Christopher Gallo,cgallo@us.ibm.com,2024-03-05 12:43:06-06:00,Christopher Gallo,cgallo@us.ibm.com,2024-03-05 18:43:06+00:00,True,us,us,* master,True,softlayer_softlayer-python,softlayer/softlayer-python,https://github.com/softlayer/softlayer-python -813a5f94a40fcd69107252af4d7f1f3a9abd8586,Denis Bardadym,bardadymchik@gmail.com,2016-12-10 13:36:05+03:00,Denis Bardadym,bardadymchik@gmail.com,2016-12-10 10:36:05+00:00,True,gmail,gmail,* master,True,shouldjs_should.js.git,shouldjs/should.js.git,https://github.com/shouldjs/should.js.git -8dfc19905e8f15e4f96d8ec6520b762076212caa,Steven Silvester,steven.silvester@ieee.org,2023-09-09 21:49:39-05:00,GitHub,noreply@github.com,2023-09-10 02:49:39+00:00,False,ieee,github,* main,True,jupyter_terminado,jupyter/terminado,https://github.com/jupyter/terminado -f2378a19388f33c48a859891411721c8964ba007,Christian Clauss,cclauss@me.com,2022-10-02 00:51:48+02:00,GitHub,noreply@github.com,2022-10-01 22:51:48+00:00,False,me,github,* master,True,django-waffle_django-waffle,django-waffle/django-waffle,https://github.com/django-waffle/django-waffle -a04baae9d96e90955df751e1c1da26589d6e0e30,Stefan Oderbolz,oderbolz@gmail.com,2015-05-26 01:35:12+02:00,Stefan Oderbolz,oderbolz@gmail.com,2015-05-25 23:35:12+00:00,True,gmail,gmail,* develop,True,metaodi_osmapi.git,metaodi/osmapi.git,https://github.com/metaodi/osmapi.git -c1df9aa7cbfd8c7e64eaadd8027e9669b5cd5a4e,michalbiesek,michal.biesek@intel.com,2021-03-01 08:28:41+01:00,GitHub,noreply@github.com,2021-03-01 07:28:41+00:00,True,intel,github,* master,True,kilobyte_memkind,kilobyte/memkind,https://github.com/kilobyte/memkind -0ab63df6732eafccf36cd3ee2ceb888fde3ae820,David Lord,davidism@gmail.com,2023-06-28 12:01:56-07:00,GitHub,noreply@github.com,2023-06-28 19:01:56+00:00,True,gmail,github,* main,True,pallets_itsdangerous,pallets/itsdangerous,https://github.com/pallets/itsdangerous -6d305026c5c415d07d2bcd15bf3e8224423902f1,kridai,kridaigoswami@gmail.com,2023-09-29 13:11:05+05:30,GitHub,noreply@github.com,2023-09-29 07:41:05+00:00,False,gmail,github,* main,True,twilio_twilio-python,twilio/twilio-python,https://github.com/twilio/twilio-python -1604f672facd3eb04260464d7a4c982920b7536d,Gael Pasgrimaud,gael@gawel.org,2016-10-14 16:48:01+02:00,Gael Pasgrimaud,gael@gawel.org,2016-10-14 14:56:45+00:00,False,gawel,gawel,* master,True,gawel_panoramisk.git,gawel/panoramisk.git,https://github.com/gawel/panoramisk.git -c89b1ff65b86ae25c51acfa646b1edcf7beb0f23,James Coglan,jcoglan@gmail.com,2016-03-25 17:42:53+00:00,James Coglan,jcoglan@gmail.com,2016-03-25 17:42:53+00:00,True,gmail,gmail,* master,True,faye_faye,faye/faye,https://github.com/faye/faye -ec47bd12bf438e7b416035e913fc8f114242242d,Zuul,zuul@review.opendev.org,2022-12-13 19:51:08+00:00,Gerrit Code Review,review@openstack.org,2022-12-13 19:51:08+00:00,True,review,openstack,* master,True,openstack_swift.git,openstack/swift.git,https://github.com/openstack/swift.git +c474d99907a19deea5a4cb7ee3ebea1add698006,Gonzalo Peña-Castellanos,goanpeca@gmail.com,2015-03-01 19:03:19+01:00,Gonzalo Peña-Castellanos,goanpeca@gmail.com,2015-03-01 18:03:19+00:00,False,gmail,gmail,* master,True,spyder-ide_qtpy,spyder-ide/qtpy,https://github.com/spyder-ide/qtpy +d90770d185c28742ee750a732aa3749ff58ff158,underscorephil,underscorephil@gmail.com,2014-07-08 12:46:47-05:00,underscorephil,underscorephil@gmail.com,2014-07-08 17:46:47+00:00,False,gmail,gmail,* master,True,softlayer_softlayer-python,softlayer/softlayer-python,https://github.com/softlayer/softlayer-python +3eae6f4fff3fd01a40f56b19f02e0690266fc824,Denis Bardadym,bardadymchik@gmail.com,2014-03-08 12:37:36+04:00,Denis Bardadym,bardadymchik@gmail.com,2014-03-08 08:39:25+00:00,False,gmail,gmail,* master,True,shouldjs_should.js.git,shouldjs/should.js.git,https://github.com/shouldjs/should.js.git +7c6ed297ddaad3c2f78fed1c3b6bb548c6f658e1,Steven Silvester,steven.silvester@ieee.org,2022-03-31 11:54:23-05:00,GitHub,noreply@github.com,2022-03-31 16:54:23+00:00,False,ieee,github,* main,True,jupyter_terminado,jupyter/terminado,https://github.com/jupyter/terminado +1e8e049887206b7933b8cc3c7ceeda864fb4c05e,James Socol,me@jamessocol.com,2015-01-10 14:44:37-05:00,James Socol,me@jamessocol.com,2015-01-11 17:42:19+00:00,False,jamessocol,jamessocol,* master,True,django-waffle_django-waffle,django-waffle/django-waffle,https://github.com/django-waffle/django-waffle +d9823fcc76a6cdad4cc68ad138cc5bbbf810a764,Stefan Oderbolz,stefan.oderbolz@liip.ch,2015-05-24 16:25:22+02:00,Stefan Oderbolz,stefan.oderbolz@liip.ch,2015-05-24 14:32:18+00:00,False,liip,liip,* develop,True,metaodi_osmapi.git,metaodi/osmapi.git,https://github.com/metaodi/osmapi.git +f43f8495c79fa9374ad2a5e5011f31d555e0cdec,Christopher M. Cantalupo,christopher.m.cantalupo@intel.com,2015-03-31 10:12:43-07:00,Christopher M. Cantalupo,christopher.m.cantalupo@intel.com,2015-04-08 19:14:32+00:00,False,intel,intel,* master,True,kilobyte_memkind,kilobyte/memkind,https://github.com/kilobyte/memkind +e0e50841f91c1d2c77145f475aab67bf02ce1973,G. Fioravante,40348770+northernSage@users.noreply.github.com,2020-08-31 13:22:39-03:00,GitHub,noreply@github.com,2020-08-31 16:22:39+00:00,False,users,github,* main,True,pallets_itsdangerous,pallets/itsdangerous,https://github.com/pallets/itsdangerous +65577d13992ba086bbba7882dda352d7b232b385,Doug Black,dblack@twilio.com,2017-07-27 11:56:42-07:00,Doug Black,dblack@twilio.com,2017-07-27 18:56:42+00:00,False,twilio,twilio,* main,True,twilio_twilio-python,twilio/twilio-python,https://github.com/twilio/twilio-python +d5420216df8a35c16e569a353b41029ec667ebf3,Gael Pasgrimaud,gael@gawel.org,2016-10-14 10:55:20+02:00,Gael Pasgrimaud,gael@gawel.org,2016-10-14 08:55:20+00:00,False,gawel,gawel,* master,True,gawel_panoramisk.git,gawel/panoramisk.git,https://github.com/gawel/panoramisk.git +ab769e86b0e516d37a52038bb337053addf9af4a,James Coglan,jcoglan@gmail.com,2013-09-26 08:48:20+01:00,James Coglan,jcoglan@gmail.com,2013-09-26 07:48:20+00:00,False,gmail,gmail,* master,True,faye_faye,faye/faye,https://github.com/faye/faye +fdf55c2817c9a457de4d5609cabfda0aa0620dc1,Samuel Merritt,sam@swiftstack.com,2012-11-21 11:08:37-08:00,Samuel Merritt,sam@swiftstack.com,2012-11-21 19:23:15+00:00,False,swiftstack,swiftstack,* master,True,openstack_swift.git,openstack/swift.git,https://github.com/openstack/swift.git 6e1fc74ed936860f9609f964d48d63f380c58170,Andreas Strikos,astrikos@ripe.net,2016-01-16 17:11:40+01:00,Andreas Strikos,astrikos@ripe.net,2016-01-16 16:11:40+00:00,False,ripe,ripe,* master,True,RIPE-NCC_ripe-atlas-cousteau.git,RIPE-NCC/ripe-atlas-cousteau.git,https://github.com/RIPE-NCC/ripe-atlas-cousteau.git -0383474ce6e4c6f173b61ecac91e6c3faaec94e8,Vladimir Rusinov,vrusinov@google.com,2017-10-27 13:59:06+01:00,Vladimir Rusinov,vrusinov@google.com,2017-10-27 12:59:06+00:00,False,google,google,* master,True,google_python-gflags.git,google/python-gflags.git,https://github.com/google/python-gflags.git -3be3d101ce2f9c54bae2a0d8824298f0501f2ce0,unknown,a.jakubowski@mdbootstrap.com,2022-03-24 10:44:03+01:00,unknown,a.jakubowski@mdbootstrap.com,2022-03-24 09:44:03+00:00,False,mdbootstrap,mdbootstrap,* main,True,mdbootstrap_perfect-scrollbar,mdbootstrap/perfect-scrollbar,https://github.com/mdbootstrap/perfect-scrollbar +2cc5f14309704d80063a750b85861cb86dc40e7f,vrusinov,vrusinov@google.com,2016-02-03 11:48:09-08:00,Vladimir Rusinov,vrusinov@google.com,2016-02-05 20:41:41+00:00,False,google,google,* master,True,google_python-gflags.git,google/python-gflags.git,https://github.com/google/python-gflags.git +1094a4c862d1b600a6a93d04f276809f5cd03701,Filip Kapusta,f.kapusta@mdbootstrap.com,2022-03-23 15:12:15+01:00,Filip Kapusta,f.kapusta@mdbootstrap.com,2022-03-23 14:12:15+00:00,False,mdbootstrap,mdbootstrap,* main,True,mdbootstrap_perfect-scrollbar,mdbootstrap/perfect-scrollbar,https://github.com/mdbootstrap/perfect-scrollbar 350b191468d1a701d945a062bbf4df9fbdaaaaae,geemus,geemus@gmail.com,2014-10-15 09:03:48-05:00,geemus,geemus@gmail.com,2014-10-15 14:03:48+00:00,False,gmail,gmail,* master,True,heroku_netrc,heroku/netrc,https://github.com/heroku/netrc -ebffdc2ca0a43fd87dfd270bbb16007591139626,Pierre Fersing,pierre.fersing@bleemeo.com,2024-02-10 13:48:25+00:00,Pierre Fersing,pierre.fersing@bleemeo.com,2024-02-10 13:48:25+00:00,False,bleemeo,bleemeo,* master,True,eclipse_paho.mqtt.python.git,eclipse/paho.mqtt.python.git,https://github.com/eclipse/paho.mqtt.python.git -e51433d361736806896f10d971c0f28556bb94a4,Jordan Cook,jordan.cook.git@proton.me,2024-02-07 13:11:53-06:00,Jordan Cook,jordan.cook.git@proton.me,2024-02-07 19:18:49+00:00,False,proton,proton,* main,True,requests-cache_requests-cache,requests-cache/requests-cache,https://github.com/requests-cache/requests-cache -b00e214476c8a399157234106b28df993f243ce4,Eemeli Aro,eemeli@mozilla.com,2022-11-09 23:47:17+02:00,GitHub,noreply@github.com,2022-11-09 21:47:17+00:00,False,mozilla,github,* master,True,mozilla_source-map,mozilla/source-map,https://github.com/mozilla/source-map +48b19a2272867854f097058dda4f55d05d93e28d,Roger Light,roger@atchoo.org,2014-03-27 12:33:15+00:00,Roger Light,roger@atchoo.org,2014-03-27 12:33:15+00:00,False,atchoo,atchoo,* master,True,eclipse_paho.mqtt.python.git,eclipse/paho.mqtt.python.git,https://github.com/eclipse/paho.mqtt.python.git +d424c38e59bca66492f90817a5990922b4b004d0,Jordan Cook,jordan.cook@pioneer.com,2021-03-03 08:11:20-06:00,Jordan Cook,jordan.cook@pioneer.com,2021-03-03 14:27:30+00:00,False,pioneer,pioneer,* main,True,requests-cache_requests-cache,requests-cache/requests-cache,https://github.com/requests-cache/requests-cache +fc5abc05876bbffb8aa8776868492a5bcb596c99,Nick Fitzgerald,fitzgen@gmail.com,2015-08-28 15:15:34-07:00,Nick Fitzgerald,fitzgen@gmail.com,2015-09-10 14:57:30+00:00,False,gmail,gmail,* master,True,mozilla_source-map,mozilla/source-map,https://github.com/mozilla/source-map e2d247f40339088710ba2322bea3e44f801acfac,David Golden,dagolden@cpan.org,2013-06-09 14:54:54-04:00,David Golden,dagolden@cpan.org,2013-06-09 18:54:54+00:00,False,cpan,cpan,* master,True,dagolden_math-random-oo.git,dagolden/math-random-oo.git,https://github.com/dagolden/math-random-oo.git 7d375e1b7502995703fb3c1729ed4f746d169751,Luis R. Rodriguez,mcgrof@suse.com,2014-03-07 14:28:50-08:00,Johannes Berg,johannes.berg@intel.com,2014-03-28 08:56:54+00:00,False,suse,intel,* master,True,pub_scm_linux_kernel_git_jberg_iw.git,pub/scm/linux/kernel/git/jberg/iw.git,https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git -d479009d79374dc4a56c9f4346b1af38f5ac182c,Joe Hamman,jhamman1@gmail.com,2022-02-10 11:44:51-08:00,GitHub,noreply@github.com,2022-02-10 19:44:51+00:00,False,gmail,github,* main,True,pydata_xarray,pydata/xarray,https://github.com/pydata/xarray -c5dbcb4f349046389828ccf645a2e9446f2bba72,John Sirois,john.sirois@gmail.com,2024-02-13 21:24:16-08:00,GitHub,noreply@github.com,2024-02-14 05:24:16+00:00,False,gmail,github,* main,True,pantsbuild_pex.git,pantsbuild/pex.git,https://github.com/pantsbuild/pex.git -069c9d190c67ba55fb48b716422bb9b38b0d23c4,Luca Comellini,luca.com@gmail.com,2023-07-25 17:31:34-07:00,GitHub,noreply@github.com,2023-07-26 00:31:34+00:00,False,gmail,github,* main,True,nginxinc_nginx-prometheus-exporter,nginxinc/nginx-prometheus-exporter,https://github.com/nginxinc/nginx-prometheus-exporter -be8871192aa75398198184699097661ea5ba3142,Freek Dijkstra,freek@macfreek.nl,2021-04-27 21:17:41+02:00,Freek Dijkstra,freek@macfreek.nl,2021-04-27 19:17:41+00:00,False,macfreek,macfreek,* master,True,sphinx-contrib_restbuilder.git,sphinx-contrib/restbuilder.git,https://github.com/sphinx-contrib/restbuilder.git +3a995294a99a00a62fb451c8dc3f0c404c8e92f5,Joe Hamman,jhamman@ucar.edu,2017-10-27 18:24:02-07:00,GitHub,noreply@github.com,2017-10-28 01:24:02+00:00,False,ucar,github,* main,True,pydata_xarray,pydata/xarray,https://github.com/pydata/xarray +27c2db2bf26039bef41323c964bc4e0317a7b4f5,John Sirois,john.sirois@gmail.com,2024-02-09 21:40:18-08:00,GitHub,noreply@github.com,2024-02-10 05:40:18+00:00,False,gmail,github,* main,True,pantsbuild_pex.git,pantsbuild/pex.git,https://github.com/pantsbuild/pex.git +8d90a86cdf4da7bc1ea520ef5701a63780638c13,Michael Pleshakov,michael@nginx.com,2018-05-30 14:49:53+01:00,Michael Pleshakov,michael@nginx.com,2018-05-30 13:49:53+00:00,False,nginx,nginx,* main,True,nginxinc_nginx-prometheus-exporter,nginxinc/nginx-prometheus-exporter,https://github.com/nginxinc/nginx-prometheus-exporter +ba1ef7a8f47a6140f8323a393f0e04f818f5f52d,Freek Dijkstra,freek@macfreek.nl,2021-02-28 15:10:33+01:00,Freek Dijkstra,freek@macfreek.nl,2021-02-28 14:10:33+00:00,False,macfreek,macfreek,* master,True,sphinx-contrib_restbuilder.git,sphinx-contrib/restbuilder.git,https://github.com/sphinx-contrib/restbuilder.git 1c6af940c08ca2fdb142916974a192ab6ff9ea7c,Michael Howitz,mh@gocept.com,2023-04-14 08:03:36+02:00,GitHub,noreply@github.com,2023-04-14 06:03:36+00:00,False,gocept,github,* master,True,zopefoundation_zope.component,zopefoundation/zope.component,https://github.com/zopefoundation/zope.component -d01f4593c2fa9547c9912ac443ee67b9604b3e88,Brendan Gregg,brendan.d.gregg@gmail.com,2019-01-18 09:11:03-08:00,yonghong-song,ys114321@gmail.com,2019-01-18 17:11:03+00:00,False,gmail,gmail,* master,True,iovisor_bcc.git,iovisor/bcc.git,https://github.com/iovisor/bcc.git -d60918099930bd1809e56a9227ab3e5bf0f06a94,Amethyst Reese,amethyst@n7.gg,2023-04-30 13:56:56-07:00,Amethyst Reese,amethyst@n7.gg,2023-04-30 21:16:24+00:00,False,n7,n7,* main,True,diff-match-patch-python_diff-match-patch,diff-match-patch-python/diff-match-patch,https://github.com/diff-match-patch-python/diff-match-patch -1d475905976bb91dd77f1f4383b28307f98e19ed,Nate Prewitt,nate.prewitt@gmail.com,2022-06-16 10:59:27-06:00,GitHub,noreply@github.com,2022-06-16 16:59:27+00:00,True,gmail,github,* develop,True,boto_botocore,boto/botocore,https://github.com/boto/botocore -cdee20eb79b3623e200545b3eb44e72c08697acf,Erik Michaels-Ober,sferik@gmail.com,2013-12-31 04:18:39+01:00,Erik Michaels-Ober,sferik@gmail.com,2013-12-31 03:18:39+00:00,False,gmail,gmail,* master,True,sferik_twitter,sferik/twitter,https://github.com/sferik/twitter -c79ee1e8ba5af3ce1c627882a6b75c1c8fb150dc,Michael R. Crusoe,michael.crusoe@gmail.com,2023-08-14 17:57:54+02:00,Michael R. Crusoe,1330696+mr-c@users.noreply.github.com,2023-08-14 16:19:43+00:00,False,gmail,users,* main,True,common-workflow-language_schema_salad,common-workflow-language/schema/salad,https://github.com/common-workflow-language/schema_salad +87d2f69a591b29c254f6ce1974a8347d746bfe9f,Brendan Gregg,brendan.d.gregg@gmail.com,2016-02-05 13:36:06-08:00,Brendan Gregg,bgregg@netflix.com,2016-02-05 21:49:28+00:00,False,gmail,netflix,* master,True,iovisor_bcc.git,iovisor/bcc.git,https://github.com/iovisor/bcc.git +04693fc6beb2d2dbb3aa8d33932a171900ea239c,John Reese,john@noswap.com,2018-11-05 18:23:24-08:00,John Reese,john@noswap.com,2018-11-06 02:23:24+00:00,False,noswap,noswap,* main,True,diff-match-patch-python_diff-match-patch,diff-match-patch-python/diff-match-patch,https://github.com/diff-match-patch-python/diff-match-patch +0d125a567e7ffa9dfe285df8c436783d29594c79,Daniel G. Taylor,danielgtaylor@gmail.com,2013-08-09 13:31:16-07:00,Daniel G. Taylor,danielgtaylor@gmail.com,2013-08-09 20:31:16+00:00,False,gmail,gmail,* develop,True,boto_botocore,boto/botocore,https://github.com/boto/botocore +fc679cf33ed2c65c2deaf9235f08889ef95dd2f2,Erik Michaels-Ober,sferik@gmail.com,2012-10-07 11:08:23-07:00,Erik Michaels-Ober,sferik@gmail.com,2012-10-07 18:08:28+00:00,False,gmail,gmail,* master,True,sferik_twitter,sferik/twitter,https://github.com/sferik/twitter +3ce1cbdc192a709b51290725506c31a8959423ad,Michael R. Crusoe,1330696+mr-c@users.noreply.github.com,2019-07-29 18:44:11+02:00,GitHub,noreply@github.com,2019-07-29 16:44:11+00:00,False,users,github,* main,True,common-workflow-language_schema_salad,common-workflow-language/schema/salad,https://github.com/common-workflow-language/schema_salad 892ea9e222ca7148551c3d00bb37ce9e24316b16,Aleksi Häkli,aleksi.hakli@iki.fi,2022-01-26 12:00:58+02:00,Aleksi Häkli,aleksi.hakli@iki.fi,2022-01-26 10:00:58+00:00,False,iki,iki,* master,True,jazzband_django-recurrence,jazzband/django-recurrence,https://github.com/jazzband/django-recurrence -905cba2b0591ef09edcbb800c84dc4cbd2f97a1e,Geremia Taglialatela,tagliala@users.noreply.github.com,2021-12-07 14:05:52+01:00,GitHub,noreply@github.com,2021-12-07 13:05:52+00:00,True,users,github,* master,True,nesquena_rabl,nesquena/rabl,https://github.com/nesquena/rabl -679935b82e8177799c34981e8f384a5466840301,Ionel Cristian Mărieș,contact@ionelmc.ro,2021-09-28 14:02:52+03:00,GitHub,noreply@github.com,2021-09-28 11:02:52+00:00,True,ionelmc,github,* master,True,pytest-dev_pytest-cov.git,pytest-dev/pytest-cov.git,https://github.com/pytest-dev/pytest-cov.git -f538ea7afaed6b5bd26d24a62795576679d0f5c0,Michael Jones,m.pricejones@gmail.com,2021-09-04 11:51:11+01:00,GitHub,noreply@github.com,2021-09-04 10:51:11+00:00,True,gmail,github,* main,True,michaeljones_breathe.git,michaeljones/breathe.git,https://github.com/michaeljones/breathe.git -cacbd0dabef064a49ce1c1aa0c41a7d145a6c655,Michael Merickel,michael@merickel.org,2022-12-28 13:31:29-06:00,GitHub,noreply@github.com,2022-12-28 19:31:29+00:00,True,merickel,github,* main,True,Pylons_hupper,Pylons/hupper,https://github.com/Pylons/hupper -a2270b0cbd71c39194acb28b1206f374f87a8856,Bas van Oostveen,bas.van.oostveen@solera.nl,2022-07-08 22:28:22+02:00,Bas van Oostveen,bas.van.oostveen@solera.nl,2022-07-08 20:28:22+00:00,False,solera,solera,* main,True,django-extensions_django-extensions,django-extensions/django-extensions,https://github.com/django-extensions/django-extensions +915f126b9484ad7fe6df0d7f323bd55f93f1c917,Nathan Esquenazi,nesquena@gmail.com,2012-11-08 12:01:59-08:00,Nathan Esquenazi,nesquena@gmail.com,2012-11-08 20:01:59+00:00,False,gmail,gmail,* master,True,nesquena_rabl,nesquena/rabl,https://github.com/nesquena/rabl +0a6b00dd73c2c49d38e50d01add558e1bb4f3c92,Marc Schlaich,marc.schlaich@googlemail.com,2014-11-24 18:15:44+01:00,Marc Schlaich,marc.schlaich@googlemail.com,2014-11-24 17:15:44+00:00,False,googlemail,googlemail,* master,True,pytest-dev_pytest-cov.git,pytest-dev/pytest-cov.git,https://github.com/pytest-dev/pytest-cov.git +90014cb496817f7b9544832073137f9e463e746a,Michael Jones,m.pricejones@gmail.com,2014-09-28 11:31:08+01:00,Michael Jones,m.pricejones@gmail.com,2014-09-28 10:33:18+00:00,False,gmail,gmail,* main,True,michaeljones_breathe.git,michaeljones/breathe.git,https://github.com/michaeljones/breathe.git +f6ee96cf37bdb805ed35416b4370e3e407875bca,Michael Merickel,michael@merickel.org,2016-10-18 01:26:21-05:00,Michael Merickel,michael@merickel.org,2016-10-18 06:39:25+00:00,False,merickel,merickel,* main,True,Pylons_hupper,Pylons/hupper,https://github.com/Pylons/hupper +451c9909d4fd7bc5301bf032a0b6f21982dac4cb,abhiabhi94,13880786+abhiabhi94@users.noreply.github.com,2020-09-12 16:51:48+05:30,abhiabhi94,13880786+abhiabhi94@users.noreply.github.com,2020-09-12 11:21:48+00:00,False,users,users,* main,True,django-extensions_django-extensions,django-extensions/django-extensions,https://github.com/django-extensions/django-extensions fe623bbfadfe8d32efffa9dcded4db1f9b3d9550,Matthias C. M. Troffaes,matthias.troffaes@gmail.com,2021-09-14 22:45:40+01:00,GitHub,noreply@github.com,2021-09-14 21:45:40+00:00,False,gmail,github,* develop,True,mcmtroffaes_pathlib2.git,mcmtroffaes/pathlib2.git,https://github.com/mcmtroffaes/pathlib2.git -d2922ea4bfb097814573d70633e08bc99945af61,Christoffer Jansson,jansson@google.com,2018-02-13 15:09:44+01:00,GitHub,noreply@github.com,2018-02-13 14:09:44+00:00,True,google,github,* main,True,webrtchacks_adapter,webrtchacks/adapter,https://github.com/webrtchacks/adapter +937da03f5709f943f9ed23ff786b42aa78fac336,Jiayang Liu,jiayl@chromium.org,2015-01-14 12:58:05-08:00,Jiayang Liu,jiayl@chromium.org,2015-01-14 21:03:32+00:00,False,chromium,chromium,* main,True,webrtchacks_adapter,webrtchacks/adapter,https://github.com/webrtchacks/adapter da2b0f065eb084d7c9f607a8e1f8fbad8036e1ba,Jannis Leidel,jannis@leidel.info,2016-07-26 11:00:46+02:00,Jannis Leidel,jannis@leidel.info,2016-07-26 09:01:06+00:00,False,leidel,leidel,* main,True,jazzband_django-debug-toolbar.git,jazzband/django-debug-toolbar.git,https://github.com/jazzband/django-debug-toolbar.git -51efb0d7a8afbac2df2cc31aa7840e4f8a32b4bf,Alan D. Snow,alansnow21@gmail.com,2023-01-10 12:48:09-06:00,GitHub,noreply@github.com,2023-01-10 18:48:09+00:00,False,gmail,github,* main,True,rasterio_rasterio.git,rasterio/rasterio.git,https://github.com/rasterio/rasterio.git +048b33b80c9a11bf11dd72a385e16152dc1ec48b,Sean Gillies,sean@mapbox.com,2016-05-11 16:05:57-06:00,Sean Gillies,sean@mapbox.com,2016-05-11 22:05:57+00:00,False,mapbox,mapbox,* main,True,rasterio_rasterio.git,rasterio/rasterio.git,https://github.com/rasterio/rasterio.git 44be7c4582c077924d88a7a551cc31700f1014f3,Zygmunt Krynicki,zygmunt.krynicki@canonical.com,2015-02-11 19:39:51+01:00,Zygmunt Krynicki,zygmunt.krynicki@canonical.com,2015-02-11 19:42:49+00:00,False,canonical,canonical,* master,True,zyga_padme,zyga/padme,https://github.com/zyga/padme -ef994be749c1c175ca7d1f9f580304fc68a6f519,Brad Rogers,brad12rogers@gmail.com,2020-11-03 13:50:52-05:00,GitHub,noreply@github.com,2020-11-03 18:50:52+00:00,False,gmail,github,* main,True,dropbox_dropbox-sdk-python,dropbox/dropbox-sdk-python,https://github.com/dropbox/dropbox-sdk-python -57d33863ac817372f853bd68afd893f73591ed89,Gavish,gavishpoddar@hotmail.com,2021-08-09 21:33:36+05:30,GitHub,noreply@github.com,2021-08-09 16:03:36+00:00,True,hotmail,github,* master,True,scrapinghub_dateparser,scrapinghub/dateparser,https://github.com/scrapinghub/dateparser -e92ad6d5c0fd699e8d39d3756e5fee09626991ef,Jorge Zapata,jorgeluis.zapata@gmail.com,2024-01-24 12:21:44+01:00,Jorge Zapata,jorgeluis.zapata@gmail.com,2024-03-12 09:03:58+00:00,False,gmail,gmail,* main,True,gstreamer_orc,gstreamer/orc,https://gitlab.freedesktop.org/gstreamer/orc +4471b7e8506082ed7daf92304cc2f35eb844a5d2,Brad Rogers,brad12rogers@gmail.com,2020-04-15 19:04:28-07:00,GitHub,noreply@github.com,2020-04-16 02:04:28+00:00,False,gmail,github,* main,True,dropbox_dropbox-sdk-python,dropbox/dropbox-sdk-python,https://github.com/dropbox/dropbox-sdk-python +29f13ea202f07dce62f9073f24b2daa3d780a55f,Elias Dorneles,eliasdorneles@gmail.com,2014-11-24 15:17:18-02:00,Elias Dorneles,eliasdorneles@gmail.com,2014-11-24 17:17:18+00:00,False,gmail,gmail,* master,True,scrapinghub_dateparser,scrapinghub/dateparser,https://github.com/scrapinghub/dateparser +02a8a52e005c0fdfff80f0b709b59f8cfccdf7fc,Jorge Zapata,jorgeluis.zapata@gmail.com,2024-01-08 11:34:43+01:00,Jorge Zapata,jorgeluis.zapata@gmail.com,2024-01-09 09:11:05+00:00,False,gmail,gmail,* main,True,gstreamer_orc,gstreamer/orc,https://gitlab.freedesktop.org/gstreamer/orc 5448e7ee9a18599042e3adf6e9cb34d812a82323,Kornel Lesiński,kornel@geekhood.net,2016-11-18 01:21:15+00:00,Kornel Lesiński,kornel@geekhood.net,2016-11-18 01:21:15+00:00,False,geekhood,geekhood,* main,True,kornelski_pngquant.git,kornelski/pngquant.git,https://github.com/kornelski/pngquant.git -c85a2572e53218716359126d9465cc63447817e5,Tim Gates,tim.gates@iress.com,2022-08-06 13:59:07+10:00,GitHub,noreply@github.com,2022-08-06 03:59:07+00:00,False,iress,github,* master,True,jazzband_django-pipeline,jazzband/django-pipeline,https://github.com/jazzband/django-pipeline -1c146ac76219e52b6cc07939eecad282ffb1a554,ghiggi,gionata.ghiggi@gmail.com,2023-05-25 08:12:40+02:00,ghiggi,gionata.ghiggi@gmail.com,2023-05-25 06:12:40+00:00,False,gmail,gmail,* main,True,pytroll_satpy,pytroll/satpy,https://github.com/pytroll/satpy -27f59cb37166dc25824613c8ebbbfc63ce1f29bf,Andre Klapper,a9016009@gmx.de,2022-02-21 11:27:15+01:00,Andre Klapper,a9016009@gmx.de,2022-02-21 10:27:15+00:00,False,gmx,gmx,* main,True,GNOME_mobile-broadband-provider-info,GNOME/mobile-broadband-provider-info,https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info -b41442a89e3a5a26637b07f665cca4595811dfc3,Daniel Roy Greenfeld,pydanny@users.noreply.github.com,2018-10-09 21:46:08-07:00,GitHub,noreply@github.com,2018-10-10 04:46:08+00:00,False,users,github,* master,True,cookiecutter_whichcraft,cookiecutter/whichcraft,https://github.com/cookiecutter/whichcraft -5a01a4c8a900a98ca0186b742d03d02c55846632,Daniel,107224353+daniel-web-developer@users.noreply.github.com,2023-08-31 10:19:25+02:00,GitHub,noreply@github.com,2023-08-31 08:19:25+00:00,False,users,github,* master,True,encode_django-rest-framework,encode/django-rest-framework,https://github.com/encode/django-rest-framework +14eb52c34131bd702778b6d9a02d5f754e329e76,Timothée Peignier,timothee.peignier@tryphon.org,2012-09-17 21:54:57+02:00,Timothée Peignier,timothee.peignier@tryphon.org,2012-09-17 19:54:57+00:00,False,tryphon,tryphon,* master,True,jazzband_django-pipeline,jazzband/django-pipeline,https://github.com/jazzband/django-pipeline +fdf513302703d830eddbac40a8757c6b02549261,davidh-ssec,david.hoese@ssec.wisc.edu,2018-01-12 15:02:08-06:00,davidh-ssec,david.hoese@ssec.wisc.edu,2018-01-26 21:56:02+00:00,False,ssec,ssec,* main,True,pytroll_satpy,pytroll/satpy,https://github.com/pytroll/satpy +647f21332d37c05e888eb9d01261310450704d53,Lubomir Rintel,lkundrak@v3.sk,2019-03-15 20:59:05+01:00,Lubomir Rintel,lkundrak@v3.sk,2019-04-10 17:02:46+00:00,False,v3,v3,* main,True,GNOME_mobile-broadband-provider-info,GNOME/mobile-broadband-provider-info,https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info +e903b9c057a41ce5039c9d91ccbce549e5b71126,Daniel Roy Greenfeld,danny@eventbrite.com,2015-09-09 20:56:45-07:00,Daniel Roy Greenfeld,danny@eventbrite.com,2015-09-10 03:56:45+00:00,False,eventbrite,eventbrite,* master,True,cookiecutter_whichcraft,cookiecutter/whichcraft,https://github.com/cookiecutter/whichcraft +f0f7a91b3157790aac8c568e3349dde8dca1fac5,Tom Christie,tom@tomchristie.com,2013-12-16 11:59:37+00:00,Tom Christie,tom@tomchristie.com,2013-12-16 11:59:37+00:00,False,tomchristie,tomchristie,* master,True,encode_django-rest-framework,encode/django-rest-framework,https://github.com/encode/django-rest-framework dea4b862e6548858f5645b6359eff9a4cb51b594,idle sign,idlesign@yandex.ru,2018-02-07 20:33:38+07:00,idle sign,idlesign@yandex.ru,2018-02-07 13:33:38+00:00,False,yandex,yandex,* master,True,idlesign_django-sitetree,idlesign/django-sitetree,https://github.com/idlesign/django-sitetree -06a7fac32cfcd6c42fd6541a4d7770dc65588f68,Simon McVittie,smcv@collabora.com,2019-07-29 13:29:18+01:00,Simon McVittie,smcv@collabora.com,2021-03-26 11:09:42+00:00,False,collabora,collabora,* master,True,dbus_dbus-glib.git,dbus/dbus-glib.git,https://gitlab.freedesktop.org/dbus/dbus-glib.git -8c4557cdb9270996176e8874b16ab095a525dcd6,Quentin Pradet,quentin.pradet@elastic.co,2024-01-15 15:04:29+01:00,GitHub,noreply@github.com,2024-01-15 14:04:29+00:00,False,elastic,github,* main,True,elastic_elasticsearch-py.git,elastic/elasticsearch-py.git,https://github.com/elastic/elasticsearch-py.git -e7cbaafce2647eb9b33577366b178ae66250473f,Michael Merickel,michael@merickel.org,2017-06-11 23:20:09-05:00,Michael Merickel,michael@merickel.org,2017-06-12 04:20:09+00:00,False,merickel,merickel,* main,True,pylons_plaster,pylons/plaster,https://github.com/pylons/plaster +232cae5253382d8d8f7678dbda1ee37424904cab,Simon McVittie,smcv@debian.org,2018-01-29 08:47:56+00:00,Simon McVittie,smcv@debian.org,2018-01-29 08:47:56+00:00,False,debian,debian,* master,True,dbus_dbus-glib.git,dbus/dbus-glib.git,https://gitlab.freedesktop.org/dbus/dbus-glib.git +638713daab211eb104f0228a7d59af227a89008f,Honza Kral,honza.kral@gmail.com,2013-09-26 11:34:15+02:00,Honza Kral,honza.kral@gmail.com,2013-09-26 09:34:15+00:00,False,gmail,gmail,* main,True,elastic_elasticsearch-py.git,elastic/elasticsearch-py.git,https://github.com/elastic/elasticsearch-py.git +5445c0a95352506da2677f3de09c07286d5140ea,Michael Merickel,michael@merickel.org,2016-06-01 21:27:09-07:00,Michael Merickel,michael@merickel.org,2016-06-02 04:48:54+00:00,False,merickel,merickel,* main,True,pylons_plaster,pylons/plaster,https://github.com/pylons/plaster ca82caaeb6ee6ef2820ca6726eba5b8f86f5e566,Teemu R,tpr@iki.fi,2021-09-17 12:17:20+02:00,GitHub,noreply@github.com,2021-09-17 10:17:20+00:00,False,iki,github,* master,True,rytilahti_python-miio.git,rytilahti/python-miio.git,https://github.com/rytilahti/python-miio.git -0b6eb7abe6a839c27c4828ad5671b8816cd967f5,Ron Frederick,ronf@timeheart.net,2018-09-01 20:51:22-07:00,Ron Frederick,ronf@timeheart.net,2018-09-02 03:51:22+00:00,False,timeheart,timeheart,* develop,True,ronf_asyncssh,ronf/asyncssh,https://github.com/ronf/asyncssh +d5d49519e52c665b4789ce9e44c558cbcc127b8a,Ron Frederick,ronf@timeheart.net,2015-05-17 19:54:17-07:00,Ron Frederick,ronf@timeheart.net,2015-05-18 02:54:17+00:00,False,timeheart,timeheart,* develop,True,ronf_asyncssh,ronf/asyncssh,https://github.com/ronf/asyncssh 717482dd873a9032cbb019062aa06401f871f765,Michael Howitz,mh@gocept.com,2023-02-23 08:17:11+01:00,GitHub,noreply@github.com,2023-02-23 07:17:11+00:00,False,gocept,github,* master,True,zopefoundation_zc.lockfile,zopefoundation/zc.lockfile,https://github.com/zopefoundation/zc.lockfile 77cf9560ceb833f7dd51c10b6d10519ef7875084,Ianaré Sévi,ianare@gmail.com,2015-05-15 22:40:37+02:00,Ianaré Sévi,ianare@gmail.com,2015-05-15 20:40:37+00:00,False,gmail,gmail,* develop,True,ianare_exif-py,ianare/exif-py,https://github.com/ianare/exif-py -ff5eb53f487341774b24930f8243c41a32d16d09,Luciano Lionello,lucianolio@protonmail.com,2022-02-04 20:22:28-03:00,Benj Fassbind,randombenj@gmail.com,2022-02-05 08:28:44+00:00,False,protonmail,gmail,* master,True,aptly-dev_aptly.git,aptly-dev/aptly.git,https://github.com/aptly-dev/aptly.git -779967e0f7c1438c37cf74a4a85bf8597486b23a,jan iversen,jancasacondor@gmail.com,2024-03-03 13:48:40+01:00,jan iversen,jancasacondor@gmail.com,2024-03-03 12:48:40+00:00,True,gmail,gmail,* dev,True,pymodbus-dev_pymodbus.git,pymodbus-dev/pymodbus.git,https://github.com/pymodbus-dev/pymodbus.git -2cf826f236222d517c847fd5c61d48d3d85333d2,Saurabh Kumar,theskumar@users.noreply.github.com,2022-06-05 12:54:25+05:30,GitHub,noreply@github.com,2022-06-05 07:24:25+00:00,False,users,github,* main,True,theskumar_python-dotenv.git,theskumar/python-dotenv.git,https://github.com/theskumar/python-dotenv.git -50f35d4a0091c2da6d87f5d43365f7eddaa3faa8,Nikita Sobolev,mail@sobolevn.me,2019-09-15 21:08:02+03:00,GitHub,noreply@github.com,2019-09-15 18:08:02+00:00,False,sobolevn,github,* master,True,sobolevn_django-split-settings,sobolevn/django-split-settings,https://github.com/sobolevn/django-split-settings -6633f27a28ae048e0a5e352bbe0251f8c32b3469,Nikolai Aleksandrovich Pavlov,kp-pav@yandex.ru,2014-12-08 08:37:39+03:00,Nikolai Aleksandrovich Pavlov,kp-pav@yandex.ru,2014-12-08 05:37:39+00:00,True,yandex,yandex,* develop,True,powerline_powerline,powerline/powerline,https://github.com/powerline/powerline +c6c10123301a20c6d6981c7062617edb9425fac2,Andrey Smirnov,smirnov.andrey@gmail.com,2017-03-22 17:38:32+03:00,Andrey Smirnov,smirnov.andrey@gmail.com,2017-03-22 16:24:06+00:00,False,gmail,gmail,* master,True,aptly-dev_aptly.git,aptly-dev/aptly.git,https://github.com/aptly-dev/aptly.git +e43ab548b28c8d1af01253088a44a41e35c08722,jan iversen,jancasacondor@gmail.com,2023-03-16 21:02:03+01:00,GitHub,noreply@github.com,2023-03-16 20:02:03+00:00,False,gmail,github,* dev,True,pymodbus-dev_pymodbus.git,pymodbus-dev/pymodbus.git,https://github.com/pymodbus-dev/pymodbus.git +b7759b7b62bce8f658aab5a1b8968a539d10208d,Saurabh Kumar,saurabh@saurabh-kumar.com,2019-09-10 16:49:51+05:30,Saurabh Kumar,saurabh@saurabh-kumar.com,2019-09-10 11:19:51+00:00,False,saurabh-kumar,saurabh-kumar,* main,True,theskumar_python-dotenv.git,theskumar/python-dotenv.git,https://github.com/theskumar/python-dotenv.git +aca958de3e7d22375a10a642d551a27e3686415c,sobolevn,n.a.sobolev@gmail.com,2015-05-04 21:06:16+03:00,sobolevn,n.a.sobolev@gmail.com,2015-05-04 18:06:16+00:00,False,gmail,gmail,* master,True,sobolevn_django-split-settings,sobolevn/django-split-settings,https://github.com/sobolevn/django-split-settings +edfc090ddb977752557febb1c99981a4efb612da,Kim Silkebækken,kim.silkebaekken@gmail.com,2013-03-15 15:20:00+01:00,Kim Silkebækken,kim.silkebaekken@gmail.com,2013-03-15 14:23:41+00:00,False,gmail,gmail,* develop,True,powerline_powerline,powerline/powerline,https://github.com/powerline/powerline a557ccc7a87ebe0ae1222bff9cb5eb82d54db726,Karen Etheridge,ether@cpan.org,2017-12-19 17:34:46-08:00,Karen Etheridge,ether@cpan.org,2017-12-20 01:34:46+00:00,False,cpan,cpan,* master,True,karenetheridge_Module-Manifest,karenetheridge/Module-Manifest,https://github.com/karenetheridge/Module-Manifest -d9401ec5344f103826ef83fd9138250a32d020fe,Laurent LAPORTE,tantale.solutions@gmail.com,2020-05-13 21:59:46+02:00,Laurent LAPORTE,tantale.solutions@gmail.com,2020-05-13 19:59:46+00:00,False,gmail,gmail,* master,True,tantale_deprecated.git,tantale/deprecated.git,https://github.com/tantale/deprecated.git +1dafef2b20dc3e2ff1e3adea2fd6af4a39db87c0,Laurent LAPORTE,tantale.solutions@gmail.com,2017-11-20 14:13:26+01:00,Laurent LAPORTE,tantale.solutions@gmail.com,2017-11-20 13:13:26+00:00,False,gmail,gmail,* master,True,tantale_deprecated.git,tantale/deprecated.git,https://github.com/tantale/deprecated.git feed17b67d83bc8e7b8a72c62c56c5103c7bebf2,Joelle Maslak,jmaslak@antelope.net,2018-06-03 21:03:34-06:00,Joelle Maslak,jmaslak@antelope.net,2018-06-04 03:03:34+00:00,False,antelope,antelope,* master,True,jmaslak_Net-Netmask.git,jmaslak/Net-Netmask.git,https://github.com/jmaslak/Net-Netmask.git -b4ec64228d65e2ed9917b3f9da442f039fbf2a5e,Patrick Totzke,patricktotzke@gmail.com,2021-09-23 18:16:03+01:00,Patrick Totzke,patricktotzke@gmail.com,2021-09-23 17:16:03+00:00,False,gmail,gmail,* master,True,pazz_alot,pazz/alot,https://github.com/pazz/alot -6429d57dde582371fc7204307c857bbd5cfa0c6e,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-04-26 16:19:21-03:00,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-04-26 19:19:21+00:00,False,eriberto,eriberto,* master,True,resurrecting-open-source-projects_cbm,resurrecting-open-source-projects/cbm,https://github.com/resurrecting-open-source-projects/cbm +26075d8710cc4f460cb8645352ca63cf4398568c,Dylan Baker,dylan@pnwbakers.com,2017-08-18 10:49:06-07:00,Dylan Baker,dylan@pnwbakers.com,2017-08-18 22:44:42+00:00,False,pnwbakers,pnwbakers,* master,True,pazz_alot,pazz/alot,https://github.com/pazz/alot +b656d864ed490c8370304c5170e95c42d8fa966a,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-04-26 16:09:23-03:00,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-04-26 19:09:23+00:00,False,eriberto,eriberto,* master,True,resurrecting-open-source-projects_cbm,resurrecting-open-source-projects/cbm,https://github.com/resurrecting-open-source-projects/cbm ff9658b9e170031daa6dc66b9116c53a214652eb,Bernardo Heynemann,heynemann@gmail.com,2014-03-19 19:18:17-03:00,Bernardo Heynemann,heynemann@gmail.com,2014-03-19 22:18:17+00:00,False,gmail,gmail,* master,True,thumbor_libthumbor,thumbor/libthumbor,https://github.com/thumbor/libthumbor -f1c39b4c1404d5dfdf13dbea40b3c0186e7d84a5,Stoeffel,schtoeffel@gmail.com,2016-02-24 09:27:48+01:00,Stoeffel,schtoeffel@gmail.com,2016-02-24 08:27:48+00:00,False,gmail,gmail,* master,True,epeli_underscore.string,epeli/underscore.string,https://github.com/epeli/underscore.string +dc0c5a37faf31c28bcf4765206482ef693b83ecd,Esa-Matti Suuronen,esa-matti@suuronen.org,2014-12-11 13:41:01+02:00,Esa-Matti Suuronen,esa-matti@suuronen.org,2014-12-11 11:41:01+00:00,False,suuronen,suuronen,* master,True,epeli_underscore.string,epeli/underscore.string,https://github.com/epeli/underscore.string 117c4f758cd5da2eea272f7ef5418aaa41996008,Simon Josefsson,simon@josefsson.org,2023-12-31 13:29:07+01:00,Simon Josefsson,simon@josefsson.org,2023-12-31 12:36:42+00:00,False,josefsson,josefsson,* master,True,jas_libntlm,jas/libntlm,https://gitlab.com/jas/libntlm -25ef5ec3afd1fcb2a1c3f4f4bff050414d3a9bd8,Markus Unterwaditzer,markus@unterwaditzer.net,2016-08-12 18:00:33+02:00,Markus Unterwaditzer,markus@unterwaditzer.net,2016-08-12 16:00:33+00:00,False,unterwaditzer,unterwaditzer,* master,True,untitaker_python-atomicwrites,untitaker/python-atomicwrites,https://github.com/untitaker/python-atomicwrites +4425735296e32c33781be0c76e77a0d9811b6206,Markus Unterwaditzer,markus@unterwaditzer.net,2016-08-12 17:44:09+02:00,Markus Unterwaditzer,markus@unterwaditzer.net,2016-08-12 15:44:09+00:00,False,unterwaditzer,unterwaditzer,* master,True,untitaker_python-atomicwrites,untitaker/python-atomicwrites,https://github.com/untitaker/python-atomicwrites 0acc6486652024304058da5baf87113fe97f5464,Adam Donaghy,adamdonaghy1994@gmail.com,2023-11-23 18:15:35+11:00,Diederik van der Boor,vdboor@codingdomain.com,2023-11-23 07:30:38+00:00,False,gmail,codingdomain,* master,True,django-polymorphic_django-polymorphic,django-polymorphic/django-polymorphic,https://github.com/django-polymorphic/django-polymorphic -a2d601630bf405d29747a95a4b5038c706a46bf5,ryneeverett,ryneeverett@gmail.com,2023-12-31 14:21:16-05:00,ryneeverett,ryneeverett@gmail.com,2023-12-31 20:05:22+00:00,False,gmail,gmail,* develop,True,ralphbean_bugwarrior,ralphbean/bugwarrior,https://github.com/ralphbean/bugwarrior +af6b7f05af97c6be88e1e3dc2be5e2a5a108d464,ryneeverett,ryneeverett@gmail.com,2016-05-20 17:46:04-04:00,ryneeverett,ryneeverett@gmail.com,2016-05-20 21:46:04+00:00,False,gmail,gmail,* develop,True,ralphbean_bugwarrior,ralphbean/bugwarrior,https://github.com/ralphbean/bugwarrior e02d5e4788e7a477d061accdefbd701d6fa876cf,Michael Williamson,mike@zwobble.org,2014-04-16 16:52:45+01:00,Michael Williamson,mike@zwobble.org,2014-04-16 15:52:45+00:00,False,zwobble,zwobble,* master,True,mwilliamson_spur.py.git,mwilliamson/spur.py.git,https://github.com/mwilliamson/spur.py.git diff --git a/12825_revision/misc_data_files/README_for_download.csv b/12825_revision/misc_data_files/README_for_download.csv index 90ff825..71de923 100644 --- a/12825_revision/misc_data_files/README_for_download.csv +++ b/12825_revision/misc_data_files/README_for_download.csv @@ -1,1323 +1,1323 @@ commit_hash,author_name,author_email,authored_date,committer_name,committer_email,commit_date,is_merge,author_org,committer_org,branches,diff_contains_document,repo_id,project_handle,upstream_vcs_link -4c1c325db36e84e968dba5d663f3a8427470726c,Richard Schwab,gitrichardschwab-7a2qxq42kj@central-intelligence.agency,2022-04-11 02:29:30+02:00,GitHub,noreply@github.com,2022-04-11 00:29:30+00:00,False,central-intelligence,github,* master,True,aio-libs_aiomysql.git,aio-libs/aiomysql.git,https://github.com/aio-libs/aiomysql.git -223fc2953c3d61fed98fd175fcc8ff57fbabd2c4,Friedrich W. H. Kossebau,kossebau@kde.org,2021-01-24 03:30:59+01:00,Friedrich W. H. Kossebau,kossebau@kde.org,2021-01-24 02:30:59+00:00,False,kde,kde,* master,True,palapeli.git,palapeli.git,https://anongit.kde.org/palapeli.git -380a110bd23f317e2ba3c5429b82f23612c73668,Tim Coalson,tsc5yc@mst.edu,2017-08-24 15:42:29-05:00,Tim Coalson,tsc5yc@mst.edu,2017-08-24 20:42:29+00:00,False,mst,mst,* master,True,Washington-University_CiftiLib,Washington-University/CiftiLib,https://github.com/Washington-University/CiftiLib -a71a0d9af8d22f66264bebb4fe77baa9a1bdb681,Arondit,57594292+Arondit@users.noreply.github.com,2024-03-05 22:38:40+03:00,GitHub,noreply@github.com,2024-03-05 19:38:40+00:00,False,users,github,* main,True,anymail_django-anymail,anymail/django-anymail,https://github.com/anymail/django-anymail -60648d4a6354901ce49412f953191cc738c08c68,Corentin Noël,corentin.noel@collabora.com,2021-08-31 11:44:06+02:00,Corentin Noël,corentin.noel@collabora.com,2021-09-01 07:28:52+00:00,False,collabora,collabora,* main,True,virgl_virglrenderer.git,virgl/virglrenderer.git,https://gitlab.freedesktop.org/virgl/virglrenderer.git -9910f5f3be6f2464e0a6a9c24c0fec07bd36daf5,patchback[bot],45432694+patchback[bot]@users.noreply.github.com,2024-02-09 01:53:16+00:00,GitHub,noreply@github.com,2024-02-09 01:53:16+00:00,False,users,github,* master,True,aio-libs_aiohttp.git,aio-libs/aiohttp.git,https://github.com/aio-libs/aiohttp.git -7929f413b33adfecd4a693c12202db01414715e6,Kamil Aronowski,kamil.aronowski@yahoo.com,2023-04-12 11:41:36+02:00,Robbie Harwood,rharwood@redhat.com,2023-04-12 13:50:29+00:00,False,yahoo,redhat,* master,True,rhboot_dumpet.git,rhboot/dumpet.git,https://github.com/rhboot/dumpet.git -60d0e02ad419cad1c5f7ee3c3e9518211fb9595e,Lie Ryan,lie.1296@gmail.com,2024-03-05 21:42:55+11:00,Lie Ryan,lie.1296@gmail.com,2024-03-05 10:42:55+00:00,True,gmail,gmail,* master,True,python-rope_rope,python-rope/rope,https://github.com/python-rope/rope -be95f4f9edc39524cc831baa9c0308d84048acf7,Valère Monseur,dev@vale.re,2022-04-27 21:39:29+02:00,Valère Monseur,dev@vale.re,2022-04-27 19:39:29+00:00,False,vale,vale,* master,True,valr_cbatticon.git,valr/cbatticon.git,https://github.com/valr/cbatticon.git -734cba7364bae2ef93b97be3e51c47c741f80ef1,Marek Kubica,marek@tarides.com,2022-07-21 14:25:31+02:00,ygrek,ygrek@autistici.org,2022-08-05 14:15:51+00:00,False,tarides,autistici,* master,True,ygrek_ocaml-extlib.git,ygrek/ocaml-extlib.git,https://github.com/ygrek/ocaml-extlib.git -daf11dbb509af2bd2ec144b2a6c92a51cdf42c18,IOhannes m zmölnig,zmoelnig@iem.at,2018-02-07 16:31:45+01:00,IOhannes m zmölnig,zmoelnig@iem.at,2018-02-07 15:31:50+00:00,True,iem,iem,* master,True,pure-data_libdir,pure-data/libdir,https://github.com/pure-data/libdir -53b17ac1e84613be79fbe59cb0071707ad8143af,Alexandru Csete,oz9aec@gmail.com,2013-12-09 17:37:43+01:00,Alexandru Csete,oz9aec@gmail.com,2013-12-09 16:43:23+00:00,False,gmail,gmail,* master,True,csete_qthid,csete/qthid,https://github.com/csete/qthid -cbcb0d312facc35baf868593031cbe10f788f35a,Jeff Meadows,jrmeadows2@gmail.com,2015-11-06 12:53:06-08:00,Jeff Meadows,jrmeadows2@gmail.com,2015-11-06 20:53:06+00:00,True,gmail,gmail,* master,True,box_genty.git,box/genty.git,https://github.com/box/genty.git -f9843757630160f1222ef084a47931c7d0b90fe3,Alberto Fanjul,albertofanjul@gmail.com,2023-09-03 10:46:03+02:00,Alberto Fanjul,albertofanjul@gmail.com,2023-09-03 08:46:48+00:00,False,gmail,gmail,* master,True,GNOME_libgit2-glib.git,GNOME/libgit2-glib.git,https://gitlab.gnome.org/GNOME/libgit2-glib.git -df1669e3aafa4edf6feba6761f9349fa0417be61,Dimitri Fontaine,dim@tapoueh.org,2019-04-12 12:08:44+02:00,GitHub,noreply@github.com,2019-04-12 10:08:44+00:00,True,tapoueh,github,* master,True,dimitri_prefix,dimitri/prefix,https://github.com/dimitri/prefix -47a4e3b795e3edc04838d6c68c5bbbf4e9232d4f,Sorokin Alexei,sor.alexei@meowr.ru,2016-03-02 01:26:32+03:00,Sorokin Alexei,sor.alexei@meowr.ru,2016-03-03 13:10:22+00:00,False,meowr,meowr,* master,True,compiz_compiz-plugins-extra.git,compiz/compiz-plugins-extra.git,https://gitlab.com/compiz/compiz-plugins-extra.git -539fa681d1167e378001a3666f16379dcb741e87,AlisterH,alister.hood@gmail.com,2021-01-25 20:58:06+13:00,Alister Hood,alister.hood@gmail.com,2022-04-15 09:27:27+00:00,False,gmail,gmail,* stable,True,AlisterH_gwc.git,AlisterH/gwc.git,https://github.com/AlisterH/gwc.git -f645e7d7724f8d1f7bf23ffabe5d03ead0d3b6d5,Raphael Pierzina,raphael@hackebrot.de,2016-06-09 00:11:35+01:00,Raphael Pierzina,raphael@hackebrot.de,2016-06-08 23:11:47+00:00,False,hackebrot,hackebrot,* main,True,hackebrot_jinja2-time,hackebrot/jinja2-time,https://github.com/hackebrot/jinja2-time -a0e4d555d3e743df68318e673e1ed49028c7bc5c,Joachim Metz,joachim.metz@gmail.com,2016-01-07 13:45:08+01:00,Joachim Metz,joachim.metz@gmail.com,2016-01-07 12:45:08+00:00,False,gmail,gmail,* main,True,libyal_libolecf.git,libyal/libolecf.git,https://github.com/libyal/libolecf.git -3753f729f68a87e3be615ad483c183ff2a6dbcb9,Sebastian Thiel,sebastian.thiel@icloud.com,2023-10-20 17:25:31+02:00,GitHub,noreply@github.com,2023-10-20 15:25:31+00:00,True,icloud,github,* master,True,gitpython-developers_gitdb,gitpython-developers/gitdb,https://github.com/gitpython-developers/gitdb +07ae36e644cdca99eb5c2bbc5fbbf562512325a6,David Story,idavidstory@gmail.com,2009-06-16 16:38:15+00:00,David Story,idavidstory@gmail.com,2009-06-16 16:38:15+00:00,False,gmail,gmail,* master,True,aio-libs_aiomysql.git,aio-libs/aiomysql.git,https://github.com/aio-libs/aiomysql.git +1fe7af9f08965945584f0b7feade1cfa61160e26,Stefan Majewsky,majewsky@gmx.net,2008-07-08 14:28:21+00:00,Stefan Majewsky,majewsky@gmx.net,2008-07-08 14:28:21+00:00,False,gmx,gmx,* master,True,palapeli.git,palapeli.git,https://anongit.kde.org/palapeli.git +6a84771afad1a353b2352d838e3105306a601780,Tim Coalson,tsc5yc@mst.edu,2014-04-30 18:25:00-05:00,Tim Coalson,tsc5yc@mst.edu,2014-04-30 23:25:00+00:00,False,mst,mst,* master,True,Washington-University_CiftiLib,Washington-University/CiftiLib,https://github.com/Washington-University/CiftiLib +dee08b60b21d8d597d87af9d664d21eadbbe3e29,Chris Jones,chris@brack3t.com,2012-01-16 12:14:35-08:00,Chris Jones,chris@brack3t.com,2012-01-16 20:14:35+00:00,False,brack3t,brack3t,* main,True,anymail_django-anymail,anymail/django-anymail,https://github.com/anymail/django-anymail +e7f47fd3dbe025af00403ec2ae59c2b86938c5b6,Gert Wollny,gert.wollny@collabora.com,2020-11-09 17:28:45+01:00,Gert Wollny,gw.fossdev@gmail.com,2021-01-11 14:47:33+00:00,False,collabora,gmail,* main,True,virgl_virglrenderer.git,virgl/virglrenderer.git,https://gitlab.freedesktop.org/virgl/virglrenderer.git +f382b5ffc445e45a110734f5396728da7914aeb6,Nikolay Kim,fafhrd91@gmail.com,2013-10-01 16:02:54-07:00,Nikolay Kim,fafhrd91@gmail.com,2013-10-01 23:02:54+00:00,False,gmail,gmail,* master,True,aio-libs_aiohttp.git,aio-libs/aiohttp.git,https://github.com/aio-libs/aiohttp.git +276cad5b29e45014e16f2fc8c65e2e97dcb9afcd,Peter Jones,pjones@redhat.com,2009-10-02 12:54:23-04:00,Peter Jones,pjones@pjones5.install.bos.redhat.com,2009-10-02 16:57:55+00:00,False,redhat,pjones5,* master,True,rhboot_dumpet.git,rhboot/dumpet.git,https://github.com/rhboot/dumpet.git +04ffbd441fae69ee073cce9a64c3245f8a96a4b8,Ali Gholami Rudi,aligrudi@users.sourceforge.net,2008-03-14 21:32:02+03:30,Ali Gholami Rudi,aligrudi@users.sourceforge.net,2008-03-14 18:02:02+00:00,False,users,users,* master,True,python-rope_rope,python-rope/rope,https://github.com/python-rope/rope +eb5d332af5db85cc51a12702980fb6261ff85486,Colin Jones,xentalion@gmail.com,2011-04-09 22:20:02-04:00,Colin Jones,xentalion@gmail.com,2011-04-10 02:20:02+00:00,False,gmail,gmail,* master,True,valr_cbatticon.git,valr/cbatticon.git,https://github.com/valr/cbatticon.git +47cb8900bdbc0eebeb60c86498cbd8c26f1e1991,ncannasse,ncannasse@gmail.com,2003-05-16 11:14:10+00:00,ncannasse,ncannasse@gmail.com,2003-05-16 11:14:10+00:00,False,gmail,gmail,* master,True,ygrek_ocaml-extlib.git,ygrek/ocaml-extlib.git,https://github.com/ygrek/ocaml-extlib.git +4b44403aebf7f8111f755ab622535e7a8bd7790b,Hans-Christoph Steiner,eighthave@users.sourceforge.net,2010-09-07 16:57:22+00:00,Hans-Christoph Steiner,eighthave@users.sourceforge.net,2010-09-07 16:57:22+00:00,False,users,users,* master,True,pure-data_libdir,pure-data/libdir,https://github.com/pure-data/libdir +92bd1699c42e5f34b7fda3954ac3bb204bfb316e,Alexandru Csete,oz9aec@gmail.com,2011-02-16 23:54:51+01:00,Alexandru Csete,oz9aec@gmail.com,2011-02-16 22:54:51+00:00,False,gmail,gmail,* master,True,csete_qthid,csete/qthid,https://github.com/csete/qthid +679bf7de5aa77e34f534ce31ce33ea7ff0707317,Peter Potrebic,ppotrebic@box.com,2014-03-23 20:47:09-07:00,Peter Potrebic,ppotrebic@box.com,2014-03-24 03:47:09+00:00,False,box,box,* master,True,box_genty.git,box/genty.git,https://github.com/box/genty.git +7c8b38777cfb353595f2ba6bad2a5a03dce70c3d,Ignacio Casal Quinteiro,icq@gnome.org,2011-08-06 20:21:47+02:00,Ignacio Casal Quinteiro,icq@gnome.org,2011-08-06 18:21:47+00:00,False,gnome,gnome,* master,True,GNOME_libgit2-glib.git,GNOME/libgit2-glib.git,https://gitlab.gnome.org/GNOME/libgit2-glib.git +0fc1320e8b7fafc7b061c0c74112df7b39141333,dim,dim,2008-01-19 15:30:08+00:00,dim,dim,2008-01-19 15:30:08+00:00,False,dim,dim,* master,True,dimitri_prefix,dimitri/prefix,https://github.com/dimitri/prefix +c7c68504eb2d666b83c70b29336466301250bdfc,Dennis Kasprzyk,onestone@beryl-project.org,2007-05-21 18:00:42+02:00,Dennis Kasprzyk,onestone@beryl-project.org,2007-05-21 16:00:42+00:00,False,beryl-project,beryl-project,* master,True,compiz_compiz-plugins-extra.git,compiz/compiz-plugins-extra.git,https://gitlab.com/compiz/compiz-plugins-extra.git +8be4281fa271b9b04c235107607d96c8a0cbbe42,Alister Hood,alister.hood@gmail.com,2014-06-19 20:16:57+12:00,Alister Hood,alister.hood@gmail.com,2014-06-19 08:16:57+00:00,False,gmail,gmail,* stable,True,AlisterH_gwc.git,AlisterH/gwc.git,https://github.com/AlisterH/gwc.git +a0b321f7a1ae658ee62899b776416c8eceb6db61,Raphael Pierzina,raphael@hackebrot.de,2015-12-04 14:31:18+01:00,Raphael Pierzina,raphael@hackebrot.de,2015-12-04 13:31:18+00:00,False,hackebrot,hackebrot,* main,True,hackebrot_jinja2-time,hackebrot/jinja2-time,https://github.com/hackebrot/jinja2-time +823e6e647ea6f3554b7c15da761bf30b3f659899,Joachim Metz,joachim.metz@gmail.com,2014-09-30 07:15:40+02:00,Joachim Metz,joachim.metz@gmail.com,2014-09-30 05:15:40+00:00,False,gmail,gmail,* main,True,libyal_libolecf.git,libyal/libolecf.git,https://github.com/libyal/libolecf.git +10fef8f8e4ee83cf54feadbb5ffb522efec739fc,Sebastian Thiel,byronimo@gmail.com,2010-06-12 17:18:51+02:00,Sebastian Thiel,byronimo@gmail.com,2010-06-12 15:18:51+00:00,False,gmail,gmail,* master,True,gitpython-developers_gitdb,gitpython-developers/gitdb,https://github.com/gitpython-developers/gitdb a56e5dc17238ae926e4219fee9460eaf99294324,Eugene Trounev,eugene.trounev@gmail.com,2008-11-17 15:26:31+00:00,Eugene Trounev,eugene.trounev@gmail.com,2008-11-17 15:26:31+00:00,False,gmail,gmail,* master,True,kblocks.git,kblocks.git,https://anongit.kde.org/kblocks.git -6b36f0851173cfd4c1ec67aa6632388979c05978,mozman,me@mozman.at,2022-07-14 15:36:03+02:00,mozman,me@mozman.at,2022-07-14 13:36:03+00:00,False,mozman,mozman,* master,True,mozman_svgwrite.git,mozman/svgwrite.git,https://github.com/mozman/svgwrite.git -786201637857a14a1b925902b2fc8b78f9516f8f,Antonio Valentino,antonio.valentino@tiscali.it,2023-10-15 12:29:30+02:00,Antonio Valentino,antonio.valentino@tiscali.it,2023-10-15 10:52:55+00:00,False,tiscali,tiscali,* main,True,avalentino_pyepr.git,avalentino/pyepr.git,https://github.com/avalentino/pyepr.git -728a1b85d03e312545d339909677d0265deb7bff,Kenny Heinonen,kenny_heinonen@hotmail.com,2021-05-14 14:44:40+03:00,GitHub,noreply@github.com,2021-05-14 11:44:40+00:00,False,hotmail,github,* master,True,Koed00_django-q,Koed00/django-q,https://github.com/Koed00/django-q -e823c847db6c89de83328cc0584f2574319370a0,Matthew Pounsett,matt@conundrum.com,2019-11-09 14:53:44-05:00,Matthew Pounsett,matt@conundrum.com,2019-11-09 19:53:54+00:00,False,conundrum,conundrum,* develop,True,mpounsett_nagiosplugin.git,mpounsett/nagiosplugin.git,https://github.com/mpounsett/nagiosplugin.git -5afec8fe692ca213f6d57a7ef77062fe211451b7,cen1,cen.is.imba@gmail.com,2024-03-10 21:18:31+01:00,GitHub,noreply@github.com,2024-03-10 20:18:31+00:00,False,gmail,github,* master,True,stachenov_quazip.git,stachenov/quazip.git,https://github.com/stachenov/quazip.git -e7c578c842ae6834a9a1caf12211812942fa26ed,Adam Borowski,kilobyte@angband.pl,2019-01-10 01:48:54+01:00,Adam Borowski,kilobyte@angband.pl,2019-01-10 00:48:54+00:00,False,angband,angband,* master,True,kilobyte_tran,kilobyte/tran,https://github.com/kilobyte/tran -ff2ef0ad3d9a22cc806bcb9f3876154441ffe702,Daniel P. Berrangé,berrange@redhat.com,2021-09-03 17:05:01+01:00,Daniel P. Berrangé,berrange@redhat.com,2021-09-03 16:21:56+00:00,False,redhat,redhat,* main,True,libosinfo_libosinfo.git,libosinfo/libosinfo.git,https://gitlab.com/libosinfo/libosinfo.git -8019a883eec547d91ecda6ba12669d4f4504c625,Pankrat,lha@ableton.com,2021-12-29 09:29:24+01:00,Pankrat,lha@ableton.com,2021-12-29 11:52:34+00:00,False,ableton,ableton,* master,True,pympler_pympler.git,pympler/pympler.git,https://github.com/pympler/pympler.git -417a8c41b24b951bf4f964973413974073995625,Robert Stone,rob.stone@whitehatsec.com,2015-09-26 20:25:52-07:00,Robert Stone,rob.stone@whitehatsec.com,2015-09-28 19:57:19+00:00,False,whitehatsec,whitehatsec,* main,True,tlby_netmask,tlby/netmask,https://github.com/tlby/netmask -2b00f0c1c249daf476457f8ed36d683c5de1c5df,Martin Kepplinger,martink@posteo.de,2017-05-12 09:14:03+02:00,Martin Kepplinger,martink@posteo.de,2017-05-12 07:14:03+00:00,False,posteo,posteo,* master,True,merge_tslib-debian,merge/tslib-debian,https://github.com/merge/tslib-debian -d334bf43735962f8f91479291c309e7960be6d06,Matthias C. M. Troffaes,matthias.troffaes@gmail.com,2021-06-15 09:16:27+01:00,GitHub,noreply@github.com,2021-06-15 08:16:27+00:00,False,gmail,github,* develop,True,mcmtroffaes_latexcodec,mcmtroffaes/latexcodec,https://github.com/mcmtroffaes/latexcodec -9876299d16b85143b30f3bfe07466603df349344,Evgeni Golov,evgeni@golov.de,2023-08-05 11:25:08+02:00,Evgeni Golov,evgeni@golov.de,2023-08-05 09:35:13+00:00,False,golov,golov,* master,True,linux-thinkpad_tp_smapi,linux-thinkpad/tp/smapi,https://github.com/linux-thinkpad/tp_smapi -2f6a07a166eaddc69333d4a62e205c4f311893c5,Ronny Pfannschmidt,opensource@ronnypfannschmidt.de,2022-05-08 23:32:30+02:00,GitHub,noreply@github.com,2022-05-08 21:32:30+00:00,True,ronnypfannschmidt,github,* main,True,pytest-dev_apipkg,pytest-dev/apipkg,https://github.com/pytest-dev/apipkg -9201d20d7be10e2e859b2c08f451ad3073c9ca16,Michel Albert,michel@albert.lu,2014-09-12 21:58:01+02:00,Michel Albert,michel@albert.lu,2014-09-12 19:58:01+00:00,True,albert,albert,* master,True,exhuma_python-cluster.git,exhuma/python-cluster.git,https://github.com/exhuma/python-cluster.git -99befa51c05aa2797d66a55d0e738ab7c39f08e8,ara.t.howard,ara.t.howard@gmail.com,2011-10-04 19:49:44-07:00,ara.t.howard,ara.t.howard@gmail.com,2011-10-05 02:49:44+00:00,True,gmail,gmail,* master,True,ahoward_open4,ahoward/open4,https://github.com/ahoward/open4 -4f7a51bb9a7f57a8aa704f8e7f858d2d2df08dcd,Jens Vagelpohl,jens@netz.ooo,2021-03-11 07:32:11+01:00,GitHub,noreply@github.com,2021-03-11 06:32:11+00:00,True,netz,github,* master,True,zopefoundation_roman,zopefoundation/roman,https://github.com/zopefoundation/roman -34d0744b5105fd28db56e873e2ee8bf8c75b968a,Frank B. Brokken,f.b.brokken@rug.nl,2015-08-24 13:43:05+02:00,Frank B. Brokken,f.b.brokken@rug.nl,2015-08-24 11:43:05+00:00,False,rug,rug,* master,True,fbb-git_ssh-cron.git,fbb-git/ssh-cron.git,https://gitlab.com/fbb-git/ssh-cron.git -6d8f686cf431aaed03c8484d0980f4fb4db6bb8a,Moxie Marlinspike,moxie@thoughtcrime.org,2011-07-25 18:48:59-04:00,Moxie Marlinspike,moxie@thoughtcrime.org,2011-07-25 22:48:59+00:00,False,thoughtcrime,thoughtcrime,* master,True,moxie0_sslsniff.git,moxie0/sslsniff.git,https://github.com/moxie0/sslsniff.git -33753ca2abd4f7bd0530e60dc117c652a10eed3b,Ryan Davis,ryand-ruby@zenspider.com,2024-01-15 14:30:19-08:00,Ryan Davis,ryand-ruby@zenspider.com,2024-01-15 22:30:19+00:00,False,zenspider,zenspider,* master,True,seattlerb_ruby_parser.git,seattlerb/ruby/parser.git,https://github.com/seattlerb/ruby_parser.git -b6442029a76b5384b4505d2da4926c4959789c28,Bastien Nocera,hadess@hadess.net,2022-06-30 12:05:21+02:00,Bastien Nocera,hadess@hadess.net,2022-06-30 10:05:21+00:00,False,hadess,hadess,* master,True,GNOME_geocode-glib.git,GNOME/geocode-glib.git,https://gitlab.gnome.org/GNOME/geocode-glib.git -cc372d09dcd5a5eabdc6ed4cf365bdb0be004d44,Casper da Costa-Luis,tqdm@cdcl.ml,2024-02-10 18:11:50+00:00,Casper da Costa-Luis,tqdm@cdcl.ml,2024-02-10 18:11:50+00:00,True,cdcl,cdcl,* master,True,tqdm_tqdm.git,tqdm/tqdm.git,https://github.com/tqdm/tqdm.git +d81202bf64b0bcceac3abe338fa45cdda1ede021,Manfred Moitzi,mozman@gmx.at,2010-09-08 20:51:38+02:00,Manfred Moitzi,mozman@gmx.at,2010-09-08 18:51:38+00:00,False,gmx,gmx,* master,True,mozman_svgwrite.git,mozman/svgwrite.git,https://github.com/mozman/svgwrite.git +41cf126808a4dc6f107790d7189767e562efe588,Antonio Valentino,antonio.valentino@tiscali.it,2011-03-05 18:45:09+01:00,Antonio Valentino,antonio.valentino@tiscali.it,2011-03-05 17:45:09+00:00,False,tiscali,tiscali,* main,True,avalentino_pyepr.git,avalentino/pyepr.git,https://github.com/avalentino/pyepr.git +c74f931930f9124205c1a4d9ba51700909d43b88,Ilan Steemers,koed00@gmail.com,2015-06-14 14:37:08+02:00,Ilan Steemers,koed00@gmail.com,2015-06-14 12:37:08+00:00,False,gmail,gmail,* master,True,Koed00_django-q,Koed00/django-q,https://github.com/Koed00/django-q +48fff954a3f1bc5cfc1b51c3cce3f8c5d707f2e0,Christian Kauhaus,kc@gocept.com,2010-08-06 16:27:47+02:00,Christian Kauhaus,kc@gocept.com,2010-08-06 14:27:47+00:00,False,gocept,gocept,* develop,True,mpounsett_nagiosplugin.git,mpounsett/nagiosplugin.git,https://github.com/mpounsett/nagiosplugin.git +edbf40ae320bf79bdd3ed520ffe680b483162365,Sergei Tachenov,sergei@tachenov.name,2005-07-01 13:28:47+00:00,Sergei Tachenov,sergei@tachenov.name,2005-07-01 13:28:47+00:00,False,tachenov,tachenov,* master,True,stachenov_quazip.git,stachenov/quazip.git,https://github.com/stachenov/quazip.git +da6e99e59b900e491cb9ca4c4b1288bb7b5a4ec7,Adam Borowski,kilobyte@angband.pl,2016-04-17 06:06:26+02:00,Adam Borowski,kilobyte@angband.pl,2016-04-17 04:06:26+00:00,False,angband,angband,* master,True,kilobyte_tran,kilobyte/tran,https://github.com/kilobyte/tran +8b81e75b90c6ae12ecc8f9b99e492be3e740ac45,Arjun Roy,arroy@redhat.com,2009-11-06 12:42:27-08:00,Arjun Roy,arroy@redhat.com,2009-11-06 20:42:27+00:00,False,redhat,redhat,* main,True,libosinfo_libosinfo.git,libosinfo/libosinfo.git,https://gitlab.com/libosinfo/libosinfo.git +57ef501c71973720e1bbd4f1dcf0b5ef1126ec41,robert.schuppenies,robert.schuppenies@9e6fa867-6b55-0410-95a4-a37b91626726,2008-08-27 07:27:35+00:00,robert.schuppenies,robert.schuppenies@9e6fa867-6b55-0410-95a4-a37b91626726,2008-08-27 07:27:35+00:00,False,9e6fa867-6b55-0410-95a4-a37b91626726,9e6fa867-6b55-0410-95a4-a37b91626726,* master,True,pympler_pympler.git,pympler/pympler.git,https://github.com/pympler/pympler.git +5aba416d687a5e29d444659ba2980d9c532846af,Robert Stone,talby@trap.mtview.ca.us,2013-03-16 10:36:43-07:00,Robert Stone,talby@trap.mtview.ca.us,2013-03-16 17:37:00+00:00,False,trap,trap,* main,True,tlby_netmask,tlby/netmask,https://github.com/tlby/netmask +809ed7607003132702712bb23ff61b10403a3fb8,Martin Kepplinger,martink@posteo.de,2016-12-13 13:09:51+01:00,Martin Kepplinger,martink@posteo.de,2016-12-13 12:09:51+00:00,False,posteo,posteo,* master,True,merge_tslib-debian,merge/tslib-debian,https://github.com/merge/tslib-debian +45118f083732062058bb93201c6745c5e195989c,Matthias C. M. Troffaes,matthias.troffaes@gmail.com,2011-08-03 15:34:34+01:00,Matthias C. M. Troffaes,matthias.troffaes@gmail.com,2013-08-06 09:34:25+00:00,False,gmail,gmail,* develop,True,mcmtroffaes_latexcodec,mcmtroffaes/latexcodec,https://github.com/mcmtroffaes/latexcodec +a3ac33022c1b7773916660cf486849513d804a47,Shem Multinymous,multinymous@gmail.com,2011-06-03 12:46:28+02:00,Evgeni Golov,evgeni@golov.de,2011-06-03 10:46:28+00:00,False,gmail,golov,* master,True,linux-thinkpad_tp_smapi,linux-thinkpad/tp/smapi,https://github.com/linux-thinkpad/tp_smapi +047ec416f5996d7852a7a457c96231c358d8bca8,holger krekel,holger@merlinux.eu,2010-01-19 00:05:38+01:00,holger krekel,holger@merlinux.eu,2010-01-18 23:05:38+00:00,False,merlinux,merlinux,* main,True,pytest-dev_apipkg,pytest-dev/apipkg,https://github.com/pytest-dev/apipkg +72092770328659988998d5693c1a23a0dd74990f,Michel Albert,michel@albert.lu,2007-10-14 10:16:37+00:00,Michel Albert,michel@albert.lu,2007-10-14 10:16:37+00:00,False,albert,albert,* master,True,exhuma_python-cluster.git,exhuma/python-cluster.git,https://github.com/exhuma/python-cluster.git +8600faf38862598e2655e3f934ab2e3f109a41d6,ara.t.howard,ara.t.howard@gmail.com,2009-06-06 22:23:45-06:00,ara.t.howard,ara.t.howard@gmail.com,2009-06-07 04:23:45+00:00,False,gmail,gmail,* master,True,ahoward_open4,ahoward/open4,https://github.com/ahoward/open4 +aef5754f5f47edd4fea51d3dedcbcb384bbdccc3,Jens Vagelpohl,jens@netz.ooo,2019-04-14 12:02:44-05:00,Jens Vagelpohl,jens@netz.ooo,2019-04-14 17:02:44+00:00,False,netz,netz,* master,True,zopefoundation_roman,zopefoundation/roman,https://github.com/zopefoundation/roman +b629557a03a86e1e9aa87e4f44b8ccb288be3447,Frank B. Brokken,f.b.brokken@rug.nl,2014-05-12 12:34:05+02:00,Frank B. Brokken,f.b.brokken@rug.nl,2014-05-12 10:34:05+00:00,False,rug,rug,* master,True,fbb-git_ssh-cron.git,fbb-git/ssh-cron.git,https://gitlab.com/fbb-git/ssh-cron.git +a7ab7c3c9fa6011ee959598f9abe49afdefc8417,Moxie Marlinspike,moxie@thoughtcrime.org,2011-04-23 16:21:29-04:00,Moxie Marlinspike,moxie@thoughtcrime.org,2011-04-23 20:21:29+00:00,False,thoughtcrime,thoughtcrime,* master,True,moxie0_sslsniff.git,moxie0/sslsniff.git,https://github.com/moxie0/sslsniff.git +afc6228460ffc178c78aa4bd99e5e6f06a6e752b,Ryan Davis,ryand@zenspider.com,2007-11-14 14:53:47-08:00,Ryan Davis,ryand@zenspider.com,2007-11-14 22:53:47+00:00,False,zenspider,zenspider,* master,True,seattlerb_ruby_parser.git,seattlerb/ruby/parser.git,https://github.com/seattlerb/ruby_parser.git +efcddc5889c75e85e1b07e497c28cfc736b5d115,Bastien Nocera,hadess@hadess.net,2011-04-19 17:04:48+01:00,Bastien Nocera,hadess@hadess.net,2011-04-21 01:57:28+00:00,False,hadess,hadess,* master,True,GNOME_geocode-glib.git,GNOME/geocode-glib.git,https://gitlab.gnome.org/GNOME/geocode-glib.git +fbe7952cce11e8073378b063bdae7ab277a96eb8,noamraph,noamraph@gmail.com,2013-10-26 11:50:04-07:00,noamraph,noamraph@gmail.com,2013-10-26 18:50:04+00:00,False,gmail,gmail,* master,True,tqdm_tqdm.git,tqdm/tqdm.git,https://github.com/tqdm/tqdm.git 1353286208dd351dd8b7cc7e179beed701d2c1aa,athomas,athomas@2c20d666-1312-0410-9f56-fdb53240404a,2004-09-03 09:34:52+00:00,athomas,athomas@2c20d666-1312-0410-9f56-fdb53240404a,2004-09-03 09:34:52+00:00,False,2c20d666-1312-0410-9f56-fdb53240404a,2c20d666-1312-0410-9f56-fdb53240404a,* master,True,alecthomas_devtodo,alecthomas/devtodo,https://github.com/alecthomas/devtodo -f336a5b809fda548cd87d1c64c9b7e1c7908c816,Peter Boling,peter.boling@gmail.com,2022-09-15 07:08:23+07:00,Peter Boling,peter.boling@gmail.com,2022-09-15 00:08:23+00:00,False,gmail,gmail,* migrated,True,intridea_oauth2,intridea/oauth2,https://github.com/intridea/oauth2 +311d9f42e52b832119170d90e818f0f0b0078851,Michael Bleigh,michael@intridea.com,2010-04-21 20:22:04-04:00,Michael Bleigh,michael@intridea.com,2010-04-22 00:22:04+00:00,False,intridea,intridea,* migrated,True,intridea_oauth2,intridea/oauth2,https://github.com/intridea/oauth2 23ede92b13261d3d2ec9f583b197351142f723d8,Branko Majic,branko@majic.rs,2013-11-27 21:11:12+01:00,Branko Majic,branko@majic.rs,2013-11-27 20:11:12+00:00,False,majic,majic,* master,True,azaghal_pydenticon,azaghal/pydenticon,https://github.com/azaghal/pydenticon -b7a0451f461e26ba46667811e876c7680bd648d2,Eugene Makarihkin,eugene@makarikhin.info,2023-09-22 22:05:48+02:00,Eugene Makarihkin,eugene@makarikhin.info,2023-09-22 20:05:48+00:00,False,makarikhin,makarikhin,* master,True,jeremyevans_sequel_pg.git,jeremyevans/sequel/pg.git,https://github.com/jeremyevans/sequel_pg.git -5043e572358a27e3fec10fc9862e89cac00f1ca8,Brett,kittykatt@kittykatt.co,2021-02-25 08:34:22-06:00,GitHub,noreply@github.com,2021-02-25 14:34:22+00:00,True,kittykatt,github,* master,True,KittyKatt_screenFetch.git,KittyKatt/screenFetch.git,https://github.com/KittyKatt/screenFetch.git -755ceae1f6a899a8befcc033d99acdddee224ba2,J. Nick Koston,nick@koston.org,2022-12-17 11:47:56-10:00,GitHub,noreply@github.com,2022-12-17 21:47:56+00:00,False,koston,github,* master,True,python-zeroconf_python-zeroconf.git,python-zeroconf/python-zeroconf.git,https://github.com/python-zeroconf/python-zeroconf.git -ab89b6513ee72f829b267570d4045ec373cfec9f,Michael Levin,risujin@gmail.com,2017-11-07 19:02:12-08:00,GitHub,noreply@github.com,2017-11-08 03:02:12+00:00,True,gmail,github,* master,True,risujin_cellwriter,risujin/cellwriter,https://github.com/risujin/cellwriter -3dccd585a0f217153f3eaa4b847ef49d8375b329,David Muir Sharnoff,muir@idiom.org,2013-10-15 09:01:26-07:00,David Muir Sharnoff,muir@idiom.org,2013-10-15 16:01:26+00:00,False,idiom,idiom,* master,True,muir_File-Flock.git,muir/File-Flock.git,https://github.com/muir/File-Flock.git -120ac5daa7738512cd56c81d7562f129b67fe722,Dirkjan Bussink,d.bussink@gmail.com,2013-05-01 10:40:13-07:00,Dirkjan Bussink,d.bussink@gmail.com,2013-05-01 17:40:13+00:00,True,gmail,gmail,* master,True,datamapper_do,datamapper/do,https://github.com/datamapper/do -8f205e6b12cb9c34905fa960416b6f661bf38ac3,Carl Reinke,carlreinke@users.noreply.github.com,2022-03-11 11:25:15-07:00,Carl Reinke,carlreinke@users.noreply.github.com,2022-03-18 07:13:57+00:00,False,users,users,* master,True,opentyrian_opentyrian.git,opentyrian/opentyrian.git,https://github.com/opentyrian/opentyrian.git -e38b1a39a8ca4f82b74d7b70bf9a3489e37b3588,Niels P. Mayer,Niels.Mayer@gmail.com,2016-02-18 18:15:46-08:00,Niels P. Mayer,Niels.Mayer@gmail.com,2016-02-19 02:15:46+00:00,False,gmail,gmail,* master,True,NielsMayer_mudita24,NielsMayer/mudita24,https://github.com/NielsMayer/mudita24 -188184a4e640c6aa0a3eee631a8fbe3c14b108c6,Laurent Mazuel,laurent.mazuel@gmail.com,2024-02-26 16:59:16-08:00,GitHub,noreply@github.com,2024-02-27 00:59:16+00:00,False,gmail,github,* master,True,Azure_msrestazure-for-python,Azure/msrestazure-for-python,https://github.com/Azure/msrestazure-for-python -f3a4ad13b8d96054a79d01125ccf5d122e09793e,Jaldhar H. Vyas,jaldhar@braincells.com,2015-09-20 05:17:51-04:00,Jaldhar H. Vyas,jaldhar@braincells.com,2015-09-20 09:17:51+00:00,False,braincells,braincells,* master,True,jaldhar_Module-Starter-Plugin-CGIApp,jaldhar/Module-Starter-Plugin-CGIApp,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp -c90618a455beb858f4d893073e7a363aae358769,Aristotle Pagaltzis,pagaltzis@gmx.de,2022-07-17 04:26:24+02:00,Aristotle Pagaltzis,pagaltzis@gmx.de,2022-07-17 02:26:24+00:00,False,gmx,gmx,* master,True,ap_Test-File-Contents.git,ap/Test-File-Contents.git,https://github.com/ap/Test-File-Contents.git -220594f8c0b23982b90290c299d369413fff5d96,Miroslav Šedivý,6774676+eumiro@users.noreply.github.com,2023-10-14 09:08:44+02:00,Miroslav Šedivý,6774676+eumiro@users.noreply.github.com,2023-10-14 07:08:44+00:00,False,users,users,* main,True,cokelaer_colormap,cokelaer/colormap,https://github.com/cokelaer/colormap -08b71207924ded5b75f05d93e947888fae5fca38,Simon Neutert,simonneutert@users.noreply.github.com,2023-11-30 08:07:30+01:00,GitHub,noreply@github.com,2023-11-30 07:07:30+00:00,False,users,github,* master,True,vcr_vcr,vcr/vcr,https://github.com/vcrhonek/hwdata.git -2f77e86a38ad8eb0a29a400e29d62e873d3612e8,Montel Laurent,montel@kde.org,2015-01-24 22:35:54+01:00,Montel Laurent,montel@kde.org,2015-01-24 21:35:54+00:00,False,kde,kde,* master,True,ksquares.git,ksquares.git,https://anongit.kde.org/ksquares.git -f2b53ca523b75d1dd830531b61c2b9ce74f7f66e,lian-bo,lijiang@redhat.com,2021-06-29 09:54:21+08:00,GitHub,noreply@github.com,2021-06-29 01:54:21+00:00,True,redhat,github,* master,True,nima_python-dmidecode,nima/python-dmidecode,https://github.com/nima/python-dmidecode -c65e21f92c2d18ed7c52b8ede2fcd70b9849fe9c,Yao Xiao,108576690+Charlie-XIAO@users.noreply.github.com,2023-07-08 03:43:06+08:00,GitHub,noreply@github.com,2023-07-07 19:43:06+00:00,False,users,github,* master,True,scikit-learn-contrib_imbalanced-learn.git,scikit-learn-contrib/imbalanced-learn.git,https://github.com/scikit-learn-contrib/imbalanced-learn.git -84648b52ac45ea4735689ffb052eb5abd5c6dd67,Daniel Elstner,daniel@src.gnome.org,2007-01-06 05:20:56+00:00,Daniel Elstner,daniel@src.gnome.org,2007-01-06 05:20:56+00:00,False,src,src,* master,True,Archive_regexxer,Archive/regexxer,https://gitlab.gnome.org/Archive/regexxer -dd5c1e848ff501b192a26a0a0187e618fda13f97,schollii,oliver.schoenborn@gmail.com,2019-03-31 22:57:45-04:00,GitHub,noreply@github.com,2019-04-01 02:57:45+00:00,False,gmail,github,* master,True,schollii_pypubsub,schollii/pypubsub,https://github.com/schollii/pypubsub -7b532c809cbc20ef5af8b5d532d90ebf6e36ff9d,Tom Lee,93216+thomaslee@users.noreply.github.com,2020-05-01 19:45:56-07:00,GitHub,noreply@github.com,2020-05-02 02:45:56+00:00,True,users,github,* master,True,thomaslee_spin-debian,thomaslee/spin-debian,https://github.com/thomaslee/spin-debian -e4705a18556020244e611824c6e4c7169bf59d6b,Andrej Shadura,andrew.shadura@collabora.co.uk,2019-11-22 16:16:06+01:00,Andrej Shadura,andrew.shadura@collabora.co.uk,2019-11-22 15:16:06+00:00,False,collabora,collabora,* main,True,pristine-lfs-team_pristine-lfs.git,pristine-lfs-team/pristine-lfs.git,https://salsa.debian.org/pristine-lfs-team/pristine-lfs.git -95f01ef60583ad378b5718ee664d176cbe085211,Christian Steinert,chr.steinert@outlook.com,2024-02-12 18:21:42+01:00,GitHub,noreply@github.com,2024-02-12 17:21:42+00:00,False,outlook,github,* master,True,open-iscsi_open-iscsi.git,open-iscsi/open-iscsi.git,https://github.com/open-iscsi/open-iscsi.git -40177cf3f20fa120e3349d6325f68a6a93313523,Jiri Pirko,jiri@mellanox.com,2017-01-22 12:12:23+01:00,Jiri Pirko,jiri@mellanox.com,2017-01-22 11:12:23+00:00,False,mellanox,mellanox,* master,True,jpirko_libteam,jpirko/libteam,https://github.com/jpirko/libteam -50d789b32ee5cc5b17bf57fa573f9cc2764b2adc,Douglas Kosovic,doug@uq.edu.au,2024-02-13 07:19:00+10:00,Douglas Kosovic,doug@uq.edu.au,2024-02-12 21:48:42+00:00,True,uq,uq,* main,True,nm-l2tp_debian.git,nm-l2tp/debian.git,https://github.com/nm-l2tp/debian.git -ec59a43d2631a0f0bb48dec704f688e78b9e98ae,Leon Brocard,acme@astray.com,2009-01-23 10:26:00+00:00,Leon Brocard,acme@astray.com,2009-01-23 10:26:00+00:00,False,astray,astray,* master,True,wchristian_parse-cpan-packages,wchristian/parse-cpan-packages,https://github.com/wchristian/parse-cpan-packages -1e8a2f8801fa69c4052a74b8110add6e56d1c524,Roland Bless,roland.bless@kit.edu,2021-03-13 22:36:51+01:00,Roland Bless,roland.bless@kit.edu,2021-03-13 21:36:51+00:00,False,kit,kit,* main,True,roland-bless_ps2eps.git,roland-bless/ps2eps.git,https://github.com/roland-bless/ps2eps.git -f1d872bee4efa4d03cf136488379968002d139c1,Karen Etheridge,ether@cpan.org,2016-03-12 16:41:03-08:00,Karen Etheridge,ether@cpan.org,2016-03-13 00:41:03+00:00,False,cpan,cpan,* master,True,moose_MooseX-Runnable,moose/MooseX-Runnable,https://github.com/moose/MooseX-Runnable -8a752c88f53f6279ea52b94d6000d95e2b353710,Jan Schneider,jan@horde.org,2017-10-17 20:43:32+02:00,Jan Schneider,jan@horde.org,2017-10-17 18:43:32+00:00,False,horde,horde,* master,True,horde_webmail.git,horde/webmail.git,https://github.com/horde/webmail.git -ec04b5966c2216eb9e71017daaf7058fe9ada140,Markus Neteler,neteler@mundialis.de,2024-02-06 11:08:52+01:00,GitHub,noreply@github.com,2024-02-06 10:08:52+00:00,False,mundialis,github,* main,True,OSGeo_gdal-grass.git,OSGeo/gdal-grass.git,https://github.com/OSGeo/gdal-grass.git -0ab28897c5ebb9092daf09c104c1ff96c24ff3c9,Owen T. Heisler,writer@owenh.net,2020-01-11 20:10:48+02:00,Rafael Laboissière,rafael@laboissiere.net,2021-09-09 06:18:23+00:00,False,owenh,laboissiere,* main,True,libvc_rolo,libvc/rolo,https://github.com/libvc/rolo -2f30a7bcc1432748131cb32bac096eb10b476903,mulkieran,mulkieran@users.noreply.github.com,2023-03-16 08:23:30-04:00,GitHub,noreply@github.com,2023-03-16 12:23:30+00:00,True,users,github,* master,True,pyudev_pyudev,pyudev/pyudev,https://github.com/pyudev/pyudev -124e6bb8a077bfa32d83fb2bd58f2ebafe340b7b,Santiago Perez De Rosso,spderosso@gmail.com,2021-01-26 22:36:59-08:00,GitHub,noreply@github.com,2021-01-27 06:36:59+00:00,False,gmail,github,* master,True,sdg-mit_gitless.git,sdg-mit/gitless.git,https://github.com/sdg-mit/gitless.git +d439e6a783ab231cd71b9ea041ada7563878413c,Jeremy Evans,code@jeremyevans.net,2010-08-27 22:36:33-07:00,Jeremy Evans,code@jeremyevans.net,2010-08-28 05:36:33+00:00,False,jeremyevans,jeremyevans,* master,True,jeremyevans_sequel_pg.git,jeremyevans/sequel/pg.git,https://github.com/jeremyevans/sequel_pg.git +7e702b02482c4639e5926b6635cd02cd800ce8e5,Brett Bohnenkamper,kittykatt@archlinux.us,2010-03-22 10:29:12-05:00,Brett Bohnenkamper,kittykatt@archlinux.us,2010-03-22 15:29:12+00:00,False,archlinux,archlinux,* master,True,KittyKatt_screenFetch.git,KittyKatt/screenFetch.git,https://github.com/KittyKatt/screenFetch.git +c3a39f874a5c10e91ee2315271f13ae74ee381fd,Paul Scott-Murphy,paul@scott-murphy.com,2009-05-11 22:43:30+10:00,Paul Scott-Murphy,paul@scott-murphy.com,2009-05-11 12:43:30+00:00,False,scott-murphy,scott-murphy,* master,True,python-zeroconf_python-zeroconf.git,python-zeroconf/python-zeroconf.git,https://github.com/python-zeroconf/python-zeroconf.git +62e00619bed37d1718a7f5a778e11af1f2782f18,Michael Levin,risujin@gmail.com,2014-08-21 19:54:25-07:00,Michael Levin,risujin@gmail.com,2014-08-22 02:54:25+00:00,False,gmail,gmail,* master,True,risujin_cellwriter,risujin/cellwriter,https://github.com/risujin/cellwriter +117c145f95416db6fb9805f46f567acb59a6f61e,David Muir Sharnoff,muir@idiom.org,2013-03-29 21:30:05-07:00,David Muir Sharnoff,muir@idiom.org,2013-03-30 04:30:05+00:00,False,idiom,idiom,* master,True,muir_File-Flock.git,muir/File-Flock.git,https://github.com/muir/File-Flock.git +71d359fcef21c5a8583a0ec98d32f76b94005d91,Sam Smoot,ssmoot@gmail.com,2007-12-30 15:53:00+00:00,Sam Smoot,ssmoot@gmail.com,2007-12-30 15:53:00+00:00,False,gmail,gmail,* master,True,datamapper_do,datamapper/do,https://github.com/datamapper/do +7ccb18122aa973f4c379dcf16681a1406b7769e7,syntaxglitch,none@none,2007-02-07 12:31:22+00:00,syntaxglitch,none@none,2007-02-07 12:31:22+00:00,False,none,none,* master,True,opentyrian_opentyrian.git,opentyrian/opentyrian.git,https://github.com/opentyrian/opentyrian.git +180f8f04f8dfcfdc2efd87a75d4deff5b3b60691,NielsMayer,NielsMayer@aab3581c-414c-2e5c-8dd2-1f04abb8ff1f,2010-08-24 01:44:48+00:00,NielsMayer,NielsMayer@aab3581c-414c-2e5c-8dd2-1f04abb8ff1f,2010-08-24 01:44:48+00:00,False,aab3581c-414c-2e5c-8dd2-1f04abb8ff1f,aab3581c-414c-2e5c-8dd2-1f04abb8ff1f,* master,True,NielsMayer_mudita24,NielsMayer/mudita24,https://github.com/NielsMayer/mudita24 +4f5db8e196108c66c96d1fd92170ed192ab90784,Laurent Mazuel,lmazuel@microsoft.com,2016-10-18 12:28:42-07:00,Laurent Mazuel,lmazuel@microsoft.com,2016-10-18 19:28:42+00:00,False,microsoft,microsoft,* master,True,Azure_msrestazure-for-python,Azure/msrestazure-for-python,https://github.com/Azure/msrestazure-for-python +2dbf88e14e41acb847f5f58874ca803cb6bf7299,Jaldhar H. Vyas,jaldhar@braincells.com,2008-03-23 13:38:20+00:00,Jaldhar H. Vyas,jaldhar@braincells.com,2008-03-23 13:38:20+00:00,False,braincells,braincells,* master,True,jaldhar_Module-Starter-Plugin-CGIApp,jaldhar/Module-Starter-Plugin-CGIApp,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp +4a8ed266f778f4b4cb8ec3704c48a91ee984503d,Kirrily 'Skud' Robert,skud@infotrope.net,2004-08-25 11:02:34-08:00,Michael G. Schwern,schwern@pobox.com,2009-12-13 13:52:12+00:00,False,infotrope,pobox,* master,True,ap_Test-File-Contents.git,ap/Test-File-Contents.git,https://github.com/ap/Test-File-Contents.git +573a37e39dc392bd7cff5271d96973b9c4ee8f6d,Thomas Cokelaer,cokelaer@gmail.com,2014-09-18 15:52:04+01:00,Thomas Cokelaer,cokelaer@gmail.com,2014-09-18 14:52:04+00:00,False,gmail,gmail,* main,True,cokelaer_colormap,cokelaer/colormap,https://github.com/cokelaer/colormap +d2577f79247d7db60bf160881b1b64e9fa10e4fd,Myron Marston,myron.marston@gmail.com,2010-02-24 19:34:48-08:00,Myron Marston,myron.marston@gmail.com,2010-02-25 03:34:48+00:00,False,gmail,gmail,* master,True,vcr_vcr,vcr/vcr,https://github.com/vcrhonek/hwdata.git +4edd4de537a3957bd30b2d739e5918eeb2e07b86,Matt Williams,matt@milliams.com,2006-12-24 14:28:55+00:00,Matt Williams,matt@milliams.com,2006-12-24 14:28:55+00:00,False,milliams,milliams,* master,True,ksquares.git,ksquares.git,https://anongit.kde.org/ksquares.git +e7d6d472c21aa80c28be01c0d6dcbfd250d57a25,nima,nima@abc39116-655e-4be6-ad55-d661dc543056,2008-06-30 12:08:58+00:00,nima,nima@abc39116-655e-4be6-ad55-d661dc543056,2008-06-30 12:08:58+00:00,False,abc39116-655e-4be6-ad55-d661dc543056,abc39116-655e-4be6-ad55-d661dc543056,* master,True,nima_python-dmidecode,nima/python-dmidecode,https://github.com/nima/python-dmidecode +54338573a8e160dd7f7c1868215009a10733ab61,Fernando Nogueira,fmfnogueira@gmail.com,2014-08-16 01:10:13-04:00,Fernando Nogueira,fmfnogueira@gmail.com,2014-08-16 05:10:13+00:00,False,gmail,gmail,* master,True,scikit-learn-contrib_imbalanced-learn.git,scikit-learn-contrib/imbalanced-learn.git,https://github.com/scikit-learn-contrib/imbalanced-learn.git +864d4bdd102dcad778b2a054f2c09d838729c07f,daniel_e,daniel_e,2002-10-15 22:25:02+00:00,daniel_e,daniel_e,2002-10-15 22:25:02+00:00,False,daniel_e,daniel_e,* master,True,Archive_regexxer,Archive/regexxer,https://gitlab.gnome.org/Archive/regexxer +da5c7908e224ecadb40e97669149ddaec4b75737,schollii,oliver.schoenborn@gmail.com,2014-05-08 18:55:18-07:00,schollii,oliver.schoenborn@gmail.com,2014-05-09 01:55:18+00:00,False,gmail,gmail,* master,True,schollii_pypubsub,schollii/pypubsub,https://github.com/schollii/pypubsub +504e05d07138e791e57a01259e488beacaf46b81,Tom Lee,github@tomlee.co,2016-02-06 11:50:35-08:00,Tom Lee,github@tomlee.co,2016-02-06 19:50:35+00:00,False,tomlee,tomlee,* master,True,thomaslee_spin-debian,thomaslee/spin-debian,https://github.com/thomaslee/spin-debian +309d730e4363faea7cdea3b7ce95455ca0e8e7ed,Andrej Shadura,andrew.shadura@collabora.co.uk,2019-05-02 20:57:30+02:00,Andrej Shadura,andrew.shadura@collabora.co.uk,2019-05-02 18:57:30+00:00,False,collabora,collabora,* main,True,pristine-lfs-team_pristine-lfs.git,pristine-lfs-team/pristine-lfs.git,https://salsa.debian.org/pristine-lfs-team/pristine-lfs.git +b1e1694a2923cb2191cfd3ebf0a0750f9864f533,open-iscsi,open-iscsi@d7303112-9cec-0310-bdd2-e83a94d6c2b6,2005-02-20 07:13:34+00:00,open-iscsi,open-iscsi@d7303112-9cec-0310-bdd2-e83a94d6c2b6,2005-02-20 07:13:34+00:00,False,d7303112-9cec-0310-bdd2-e83a94d6c2b6,d7303112-9cec-0310-bdd2-e83a94d6c2b6,* master,True,open-iscsi_open-iscsi.git,open-iscsi/open-iscsi.git,https://github.com/open-iscsi/open-iscsi.git +c38b475904d00353e8a7d1be8b29dc5cd5f184b0,Jiří Župka,jzupka@redhat.com,2011-10-04 16:57:41+02:00,Jiri Pirko,jpirko@redhat.com,2011-10-04 17:08:40+00:00,False,redhat,redhat,* master,True,jpirko_libteam,jpirko/libteam,https://github.com/jpirko/libteam +f5da20d4fa683c26f2dfc51754b96420bd20104d,Douglas Kosovic,doug@uq.edu.au,2017-05-21 18:37:23+10:00,Douglas Kosovic,doug@uq.edu.au,2017-05-21 08:37:23+00:00,False,uq,uq,* main,True,nm-l2tp_debian.git,nm-l2tp/debian.git,https://github.com/nm-l2tp/debian.git +39336e4d090427b13e3f9e71e89c95256d204696,Leon Brocard,acme@astray.com,2009-01-15 20:03:47+00:00,Leon Brocard,acme@astray.com,2009-01-15 20:03:47+00:00,False,astray,astray,* master,True,wchristian_parse-cpan-packages,wchristian/parse-cpan-packages,https://github.com/wchristian/parse-cpan-packages +8287adb69a569fb9139437eb836c413a3d313ffb,roland-bless,roland-bless@users.noreply.github.com,2021-03-13 22:05:39+01:00,GitHub,noreply@github.com,2021-03-13 21:05:39+00:00,False,users,github,* main,True,roland-bless_ps2eps.git,roland-bless/ps2eps.git,https://github.com/roland-bless/ps2eps.git +d42333d2091a1d1f68197491e998ce80578cec83,Jonathan Rockway,jon@jrock.us,2009-03-29 18:32:12-05:00,Jonathan Rockway,jon@jrock.us,2009-03-29 23:32:12+00:00,False,jrock,jrock,* master,True,moose_MooseX-Runnable,moose/MooseX-Runnable,https://github.com/moose/MooseX-Runnable +9b3e409efcf97a92798cf7f98f6a6b29fad87bca,Jan Schneider,jan@horde.org,2011-04-18 17:48:10+02:00,Jan Schneider,jan@horde.org,2011-04-18 15:48:10+00:00,False,horde,horde,* master,True,horde_webmail.git,horde/webmail.git,https://github.com/horde/webmail.git +fe414bbd68228f498930c9ba42c4ed83fd8a22ca,Frank Warmerdam,warmerdam@pobox.com,2004-11-05 16:18:18+00:00,Frank Warmerdam,warmerdam@pobox.com,2004-11-05 16:18:18+00:00,False,pobox,pobox,* main,True,OSGeo_gdal-grass.git,OSGeo/gdal-grass.git,https://github.com/OSGeo/gdal-grass.git +c2e732094a838e19a84c118986514a6862d1a060,Andrew Hsu,ahsu@users.sf.net,2003-02-16 05:10:33+00:00,Rafael Laboissiere,rafael@laboissiere.net,2017-02-17 23:41:19+00:00,False,users,laboissiere,* main,True,libvc_rolo,libvc/rolo,https://github.com/libvc/rolo +985a139ebec54def29ea8473ff7549ec78974397,Sebastian Wiesner,lunaryorn@googlemail.com,2010-05-02 11:39:08+02:00,Sebastian Wiesner,lunaryorn@googlemail.com,2010-05-02 09:39:08+00:00,False,googlemail,googlemail,* master,True,pyudev_pyudev,pyudev/pyudev,https://github.com/pyudev/pyudev +6db820f7c582c312eeae2be70c96a925073a57c0,spderosso,spderosso@gmail.com,2013-06-06 14:33:27-07:00,spderosso,spderosso@gmail.com,2013-06-06 21:33:27+00:00,False,gmail,gmail,* master,True,sdg-mit_gitless.git,sdg-mit/gitless.git,https://github.com/sdg-mit/gitless.git 6a077d6c09b93bcc97f0c67da4cbba10cfc6c2ee,Oliver Beard,olib141@outlook.com,2024-02-29 17:20:49+00:00,Oliver Beard,olib141@outlook.com,2024-02-29 17:20:49+00:00,False,outlook,outlook,* master,True,plasma_plasma-workspace-wallpapers.git,plasma/plasma-workspace-wallpapers.git,https://invent.kde.org/plasma/plasma-workspace-wallpapers.git -9de59261354cca93886a11ca3f2d8c88e904e3d4,Frank B. Brokken,f.b.brokken@rug.nl,2023-10-25 21:52:28+02:00,Frank B. Brokken,f.b.brokken@rug.nl,2023-10-25 19:52:28+00:00,False,rug,rug,* master,True,fbb-git_oxref,fbb-git/oxref,https://gitlab.com/fbb-git/oxref -614f3e134376f0ac60b38d05a43eee8438033ee1,P. L. Lim,2090236+pllim@users.noreply.github.com,2023-02-17 09:44:18-05:00,GitHub,noreply@github.com,2023-02-17 14:44:18+00:00,True,users,github,* main,True,astropy_pytest-openfiles,astropy/pytest-openfiles,https://github.com/astropy/pytest-openfiles +7857a26a3a2fec9840a9ffd4cb54e559037c670d,Frank B. Brokken,f.b.brokken@rug.nl,2015-08-24 12:51:17+02:00,Frank B. Brokken,f.b.brokken@rug.nl,2015-08-24 10:51:17+00:00,False,rug,rug,* master,True,fbb-git_oxref,fbb-git/oxref,https://gitlab.com/fbb-git/oxref +ed0460fa59f2a525c3f65a61e6d5336303b4e827,Dan D'Avella,drdavella@gmail.com,2017-09-20 19:42:28-04:00,Dan D'Avella,drdavella@gmail.com,2017-09-20 23:42:28+00:00,False,gmail,gmail,* main,True,astropy_pytest-openfiles,astropy/pytest-openfiles,https://github.com/astropy/pytest-openfiles 6b8a8cb8d25e47aae1b3f03b96d87e58652c343e,gfx,gfuji@cpan.org,2010-02-20 14:52:35+09:00,gfx,gfuji@cpan.org,2010-02-20 05:52:35+00:00,False,cpan,cpan,* master,True,gfx_p5-MouseX-NativeTraits.git,gfx/p5-MouseX-NativeTraits.git,https://github.com/gfx/p5-MouseX-NativeTraits.git -ab9fd38d455c2df1b8eadb6ee47f1238653b4651,Matt Davis,mattdavis9@gmail.com,2021-08-30 20:48:34-07:00,GitHub,noreply@github.com,2021-08-31 03:48:34+00:00,True,gmail,github,* master,True,enferex_pdfresurrect.git,enferex/pdfresurrect.git,https://github.com/enferex/pdfresurrect.git -b82d9c76eac5f35d1061330bd64af39acd54355d,Andre Klapper,a9016009@gmx.de,2024-03-15 09:27:07+01:00,Andre Klapper,a9016009@gmx.de,2024-03-15 08:27:07+00:00,False,gmx,gmx,* master,True,GNOME_perl-pango,GNOME/perl-pango,https://gitlab.gnome.org/GNOME/perl-pango -2a4d84f9b602c115bdd7fba6c4d76d8d79a24bf0,Alexandre Dantas,alex.dantas92@gmail.com,2014-07-09 16:45:43-04:00,Alexandre Dantas,alex.dantas92@gmail.com,2014-07-09 20:45:43+00:00,False,gmail,gmail,* readme,True,alexdantas_nsnake.debian,alexdantas/nsnake.debian,https://github.com/alexdantas/nsnake.debian -c7b0a148ccdb08d3a55e0158b8967afc9667e9dc,Ogi Moore,ognyan.moore@gmail.com,2023-06-26 09:53:50-07:00,GitHub,noreply@github.com,2023-06-26 16:53:50+00:00,True,gmail,github,* master,True,pyqtgraph_pyqtgraph.git,pyqtgraph/pyqtgraph.git,https://github.com/pyqtgraph/pyqtgraph.git -00b645a67c5345e0a9c849967637507e9f47f0f3,Michael Pruett,michael@68k.org,2014-05-26 21:20:23-05:00,Michael Pruett,michael@68k.org,2014-05-27 02:20:23+00:00,False,68k,68k,* master,True,mpruett_audiofile,mpruett/audiofile,https://github.com/mpruett/audiofile -4bd6810fab8361bce591d35343556f751b39a959,Joachim Metz,joachim.metz@gmail.com,2020-11-23 11:25:47+01:00,Joachim Metz,joachim.metz@gmail.com,2020-11-23 10:25:47+00:00,False,gmail,gmail,* main,True,libyal_libewf-legacy.git,libyal/libewf-legacy.git,https://github.com/libyal/libewf-legacy.git -e6f4fead21d3a5a0b4cf72a6f9060350bd2b55d8,Stein Magnus Jodal,stein.magnus@jodal.no,2023-06-21 22:19:36+02:00,GitHub,noreply@github.com,2023-06-21 20:19:36+00:00,True,jodal,github,* main,True,mopidy_mopidy-mpris.git,mopidy/mopidy-mpris.git,https://github.com/mopidy/mopidy-mpris.git -2cc4a215fcf9df7b50e50e6d0b9ef501204dcc70,Sean Gillies,sean.gillies@gmail.com,2017-01-02 14:24:06+01:00,GitHub,noreply@github.com,2017-01-02 13:24:06+00:00,True,gmail,github,* master,True,mapbox_snuggs.git,mapbox/snuggs.git,https://github.com/mapbox/snuggs.git -0f5d26211d652526631ce07dd0011e20fa0a1686,Omer Katz,omer.katz@kcg.tech,2024-01-18 16:27:42+02:00,Omer Katz,omer.katz@kcg.tech,2024-01-18 14:27:42+00:00,False,kcg,kcg,* master,True,celery_sphinx_celery,celery/sphinx/celery,https://github.com/celery/sphinx_celery -f47c93881ec218b2f31516d2bed51f48621e6975,Ruslan Spivak,ruslan.spivak@gmail.com,2012-03-25 14:24:50-04:00,Ruslan Spivak,ruslan.spivak@gmail.com,2012-03-25 18:24:50+00:00,False,gmail,gmail,* master,True,rspivak_httpcode,rspivak/httpcode,https://github.com/rspivak/httpcode -9a2a46d3622863c8d83aa46a884d1cc1f90bfb84,Stefano Karapetsas,stefano@karapetsas.com,2013-02-27 13:14:29+01:00,Stefano Karapetsas,stefano@karapetsas.com,2013-02-27 12:14:29+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_mate-sensors-applet.git,mate-desktop/mate-sensors-applet.git,https://github.com/mate-desktop/mate-sensors-applet.git -dd90d5132091bc91f2fab64efa5988985b575b34,henk84,github@henk.geekmail.org,2022-12-14 00:15:35+01:00,Daiki Ueno,ueno@gnu.org,2022-12-14 03:42:04+00:00,False,henk,gnu,* master,True,ueno_ruby-gpgme,ueno/ruby-gpgme,https://github.com/ueno/ruby-gpgme -fe04290e650fe415f4af1bb8175f6eb5072bbe06,Irina Truong,i.chernyavska@gmail.com,2022-03-21 11:10:28-07:00,GitHub,noreply@github.com,2022-03-21 18:10:28+00:00,False,gmail,github,* main,True,dbcli_pgspecial,dbcli/pgspecial,https://github.com/dbcli/pgspecial -5d047b2cba666293cf6187cad2138da7bed30963,Greg Kroah-Hartman,gregkh@linuxfoundation.org,2014-01-23 12:54:31-08:00,Greg Kroah-Hartman,gregkh@linuxfoundation.org,2014-01-23 20:54:31+00:00,False,linuxfoundation,linuxfoundation,* master,True,gregkh_bti.git,gregkh/bti.git,https://github.com/gregkh/bti.git -b39f29f65943d2b9ff6d88e1d6a3245c315ca328,Albert Graef,aggraef@gmail.com,2024-03-01 02:26:49+01:00,Albert Graef,aggraef@gmail.com,2024-03-01 01:47:46+00:00,False,gmail,gmail,* master,True,agraef_pd-lua.git,agraef/pd-lua.git,https://github.com/agraef/pd-lua.git -58a1fc89bfb28cc12761e6ca1b04f5b949810909,bra@fsn.hu,bra@fsn.hu,2018-07-23 13:38:42+02:00,bra@fsn.hu,bra@fsn.hu,2018-07-23 11:38:42+00:00,True,fsn,fsn,* master,True,cablehead_python-consul,cablehead/python-consul,https://github.com/cablehead/python-consul -307a1b80ef94e564e5e897fd6a79ae3389352594,İshak Okutan,ishakoktn@gmail.com,2024-02-23 04:00:10+03:00,GitHub,noreply@github.com,2024-02-23 01:00:10+00:00,False,gmail,github,* master,True,jazzband_django-push-notifications,jazzband/django-push-notifications,https://github.com/jazzband/django-push-notifications -be13e645f1d25d5ee9269397ce0d176a5ecd7363,Benjamin Peterson,benjamin@python.org,2020-01-14 18:44:51-08:00,Benjamin Peterson,benjamin@python.org,2020-01-15 02:44:51+00:00,False,python,python,* main,True,benjaminp_six,benjaminp/six,https://github.com/benjaminp/six -69c297e516846257dda83d3b57f6618dc6f1d4dc,Nikita Sobolev,mail@sobolevn.me,2023-09-21 22:40:48+03:00,GitHub,noreply@github.com,2023-09-21 19:40:48+00:00,False,sobolevn,github,* master,True,box_flaky.git,box/flaky.git,https://github.com/box/flaky.git -eefd45b79383b1b4aab1607444e41366fd1348a6,Michael Dowling,mtdowling@gmail.com,2019-03-03 11:07:14-08:00,GitHub,noreply@github.com,2019-03-03 19:07:14+00:00,True,gmail,github,* master,True,guzzle_guzzle_sphinx_theme.git,guzzle/guzzle/sphinx/theme.git,https://github.com/guzzle/guzzle_sphinx_theme.git -63b9e7ebe797f468b425bdf84927a0ec9f7141f9,Daniele Alessandri,suppakilla@gmail.com,2012-04-07 12:50:20+02:00,Daniele Alessandri,suppakilla@gmail.com,2012-04-07 10:50:20+00:00,False,gmail,gmail,* version-2.0,True,nrk_redis-lua,nrk/redis-lua,https://github.com/nrk/redis-lua -d8c61b0595a456be6ba5edf9e2a1173cf56443ac,Joachim Metz,joachim.metz@gmail.com,2019-08-01 08:44:01+02:00,Joachim Metz,joachim.metz@gmail.com,2019-08-01 08:32:14+00:00,False,gmail,gmail,* main,True,libyal_libevt,libyal/libevt,https://github.com/libyal/libevt -ab82fb456ce77b69e88da8abeb84cacb9aa67467,Andreas Kloeckner,inform@tiker.net,2022-06-24 18:29:41-05:00,Andreas Kloeckner,inform@tiker.net,2022-06-24 23:29:41+00:00,False,tiker,tiker,* main,True,inducer_pycuda,inducer/pycuda,https://github.com/inducer/pycuda -7ce306c64e3512d9c16eef5a97c224429bea68ec,Adrian Sampson,adrian@radbox.org,2023-11-17 08:33:58-05:00,GitHub,noreply@github.com,2023-11-17 13:33:58+00:00,True,radbox,github,* master,True,beetbox_pyacoustid.git,beetbox/pyacoustid.git,https://github.com/beetbox/pyacoustid.git -82a67181a5893c89ff179a6bbffc0b13f8ef1734,niallo,niallo@f3d975e6-390d-11de-b310-9106b1f7c239,2008-09-26 20:52:33+00:00,niallo,niallo@f3d975e6-390d-11de-b310-9106b1f7c239,2008-09-26 20:52:33+00:00,False,f3d975e6-390d-11de-b310-9106b1f7c239,f3d975e6-390d-11de-b310-9106b1f7c239,* master,True,niallo_Unworkable.git,niallo/Unworkable.git,https://github.com/niallo/Unworkable.git -20b09e445b559e27bbc9fe4234060c664491ff78,Tammo Jan Dijkema,dijkema@astron.nl,2022-07-07 11:55:00+02:00,GitHub,noreply@github.com,2022-07-07 09:55:00+00:00,False,astron,github,* master,True,casacore_python-casacore,casacore/python-casacore,https://github.com/casacore/python-casacore -001cbfe13f6f1dd6dba642c4d841e5a7f3a39191,monsta,monsta@inbox.ru,2014-12-19 11:20:22+03:00,monsta,monsta@inbox.ru,2014-12-19 08:20:22+00:00,False,inbox,inbox,* master,True,mate-desktop_mate-icon-theme.git,mate-desktop/mate-icon-theme.git,https://github.com/mate-desktop/mate-icon-theme.git -8709cc596d7b4e8dcbef7c06bce97d6ca5e5bd49,Choe Hwanjin,choe.hwanjin@gmail.com,2016-01-20 14:08:59+09:00,Choe Hwanjin,choe.hwanjin@gmail.com,2016-01-20 05:08:59+00:00,False,gmail,gmail,* master,True,choehwanjin_repairer,choehwanjin/repairer,https://github.com/choehwanjin/repairer -5934be05684cc7c39a3f4b8fd71ddd8d98cefed5,Delta Regeer,bertjw@regeer.org,2024-02-04 15:38:32-07:00,Delta Regeer,bertjw@regeer.org,2024-02-04 22:38:32+00:00,False,regeer,regeer,* main,True,Pylons_waitress.git,Pylons/waitress.git,https://github.com/Pylons/waitress.git -b2e9b1c3cb064b11ac2705170d202e9ad524be00,Håkon Nessjøen,haakon.nessjoen@gmail.com,2016-10-11 00:46:31+02:00,Håkon Nessjøen,haakon.nessjoen@gmail.com,2016-10-10 22:46:31+00:00,True,gmail,gmail,* master,True,haakonnessjoen_MACTelnet-Debian-Packaging,haakonnessjoen/MACTelnet-Debian-Packaging,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging -a36935c3063fd03a747b51a8f7f41c51993ae997,Muflone,webreg@muflone.com,2022-10-01 19:50:45+02:00,Muflone,webreg@muflone.com,2022-10-01 17:50:45+00:00,False,muflone,muflone,* master,True,muflone_gwakeonlan.git,muflone/gwakeonlan.git,https://github.com/muflone/gwakeonlan.git -0df401464bd8bb30ab57bfffd15d028212347a2a,philwhineray,phil@firehol.org,2022-02-06 09:04:44+00:00,GitHub,noreply@github.com,2022-02-06 09:04:44+00:00,True,firehol,github,* master,True,firehol_firehol,firehol/firehol,https://github.com/firehol/firehol -4d5b0ad1403f7cbc412ace7da0434987505186ff,J.M. Dana,jmdana@gmail.com,2019-03-29 11:48:53+00:00,J.M. Dana,jmdana@gmail.com,2019-03-29 11:49:37+00:00,False,gmail,gmail,* master,True,jmdana_memprof,jmdana/memprof,https://github.com/jmdana/memprof -861ff93192504f99451802433e1438096e277ef8,Ruslan Spivak,ruslan.spivak@gmail.com,2016-06-12 10:45:44-04:00,GitHub,noreply@github.com,2016-06-12 14:45:44+00:00,True,gmail,github,* master,True,rspivak_slimit.git,rspivak/slimit.git,https://github.com/rspivak/slimit.git -a6d6140749e0b66bc51864a1471052cfcf9b79c2,Frank B. Brokken,f.b.brokken@rug.nl,2022-11-09 20:41:30+01:00,Frank B. Brokken,f.b.brokken@rug.nl,2022-11-09 19:41:30+00:00,False,rug,rug,* master,True,fbb-git_icmake.git,fbb-git/icmake.git,https://gitlab.com/fbb-git/icmake.git +2dcbada971bfb818059263baa3bba7ebb4aea0d5,Matt Davis,mattdavis9@gmail.com,2008-07-13 18:14:30+00:00,Matt Davis,mattdavis9@gmail.com,2008-07-13 18:14:30+00:00,False,gmail,gmail,* master,True,enferex_pdfresurrect.git,enferex/pdfresurrect.git,https://github.com/enferex/pdfresurrect.git +f0a02586c7dad01bbf55ae308860a8d73d6a6306,Torsten Schönfeld,tsch@src.gnome.org,2008-11-02 12:33:26+00:00,Torsten Schönfeld,tsch@src.gnome.org,2008-11-02 12:33:26+00:00,False,src,src,* master,True,GNOME_perl-pango,GNOME/perl-pango,https://gitlab.gnome.org/GNOME/perl-pango +0aaa4385980b38276fb8074b2fe9a34c9f5daa3e,Alexandre Dantas,alex.dantas92@gmail.com,2014-07-09 16:41:35-04:00,Alexandre Dantas,alex.dantas92@gmail.com,2014-07-09 20:41:35+00:00,False,gmail,gmail,* readme,True,alexdantas_nsnake.debian,alexdantas/nsnake.debian,https://github.com/alexdantas/nsnake.debian +3d84aefbc45c941ae73694c529e4b021a229edcf,Luke Campagnola,luke.campagnola@gmail.com,2010-03-22 01:48:52-04:00,Luke Campagnola,luke.campagnola@gmail.com,2010-03-22 05:48:52+00:00,False,gmail,gmail,* master,True,pyqtgraph_pyqtgraph.git,pyqtgraph/pyqtgraph.git,https://github.com/pyqtgraph/pyqtgraph.git +f2ba879d4d3ddca9ba026d456dc2cc9359301f21,Michael Pruett,mpruett@sgi.com,2001-02-26 16:00:24+00:00,Michael Pruett,mpruett@sgi.com,2001-02-26 16:00:24+00:00,False,sgi,sgi,* master,True,mpruett_audiofile,mpruett/audiofile,https://github.com/mpruett/audiofile +5b0b3d6f4b737ae06b238e8e6e95db016ffc9bd2,Joachim Metz,joachim.metz@gmail.com,2016-01-01 13:24:14+01:00,Joachim Metz,joachim.metz@gmail.com,2016-01-01 12:24:14+00:00,False,gmail,gmail,* main,True,libyal_libewf-legacy.git,libyal/libewf-legacy.git,https://github.com/libyal/libewf-legacy.git +1165a4171b83c4731b421e9e4e6fc4562ef8e620,Stein Magnus Jodal,stein.magnus@jodal.no,2013-10-07 22:49:44+02:00,Stein Magnus Jodal,stein.magnus@jodal.no,2013-10-07 20:51:25+00:00,False,jodal,jodal,* main,True,mopidy_mopidy-mpris.git,mopidy/mopidy-mpris.git,https://github.com/mopidy/mopidy-mpris.git +2c82a187c72760b5161ec434c3d4ea59c80aaab4,Sean Gillies,sean@mapbox.com,2015-02-11 18:34:24-07:00,Sean Gillies,sean@mapbox.com,2015-02-12 01:34:24+00:00,False,mapbox,mapbox,* master,True,mapbox_snuggs.git,mapbox/snuggs.git,https://github.com/mapbox/snuggs.git +5a9730ae2f785cfb8cb31ca1569dcfdceb8eefb7,Ask Solem,ask@celeryproject.org,2016-04-07 17:19:14-07:00,Ask Solem,ask@celeryproject.org,2016-04-08 00:19:14+00:00,False,celeryproject,celeryproject,* master,True,celery_sphinx_celery,celery/sphinx/celery,https://github.com/celery/sphinx_celery +c7ff3eaf37e3edccc8a3cfea19c93a91ac865ed3,Ruslan Spivak,ruslan.spivak@gmail.com,2011-12-21 14:03:07-05:00,Ruslan Spivak,ruslan.spivak@gmail.com,2011-12-21 19:03:07+00:00,False,gmail,gmail,* master,True,rspivak_httpcode,rspivak/httpcode,https://github.com/rspivak/httpcode +69ecddf1317e71f35b1c1de00392dc76f8f1701c,Stefano Karapetsas,stefano@karapetsas.com,2011-11-21 23:44:15+01:00,Stefano Karapetsas,stefano@karapetsas.com,2011-11-21 22:44:15+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_mate-sensors-applet.git,mate-desktop/mate-sensors-applet.git,https://github.com/mate-desktop/mate-sensors-applet.git +de7756e4631a339e902a725cbe31ad5c1bacf6be,Daiki Ueno,ueno@unixuser.org,2006-10-23 03:03:49+00:00,Daiki Ueno,ueno@unixuser.org,2006-10-23 03:03:49+00:00,False,unixuser,unixuser,* master,True,ueno_ruby-gpgme,ueno/ruby-gpgme,https://github.com/ueno/ruby-gpgme +b5bd0aab04d46fcfa95cdb0c24b4840f47fce460,Iryna Cherniavska,i.chernyavska@gmail.com,2015-09-21 16:48:57-07:00,Iryna Cherniavska,i.chernyavska@gmail.com,2015-09-21 23:48:57+00:00,False,gmail,gmail,* main,True,dbcli_pgspecial,dbcli/pgspecial,https://github.com/dbcli/pgspecial +f13aba787f0df46ee170aefdce9be82256538b5d,Greg Kroah-Hartman,gregkh@suse.de,2008-05-20 09:12:57-07:00,Greg Kroah-Hartman,gregkh@suse.de,2008-05-20 16:12:57+00:00,False,suse,suse,* master,True,gregkh_bti.git,gregkh/bti.git,https://github.com/gregkh/bti.git +4f4f06e365fa514980def50c1e572b622bd1b108,IOhannes m zmölnig,zmoelnig@umlautQ.umlaeute.mur.at,2014-07-21 17:09:14+02:00,IOhannes m zmölnig,zmoelnig@umlautQ.umlaeute.mur.at,2014-07-21 15:09:14+00:00,False,umlautQ,umlautQ,* master,True,agraef_pd-lua.git,agraef/pd-lua.git,https://github.com/agraef/pd-lua.git +eec26b8f2c8f953688752db4947a5af3c260fd81,Andy Gayton,andy@thecablelounge.com,2014-09-25 18:03:37-07:00,Andy Gayton,andy@thecablelounge.com,2014-09-26 01:03:37+00:00,False,thecablelounge,thecablelounge,* master,True,cablehead_python-consul,cablehead/python-consul,https://github.com/cablehead/python-consul +95f1bf13b61d69e3892a1afeb05d7141e51f825c,Jerome Leclanche,adys.wh@gmail.com,2013-03-15 00:54:29+00:00,Jerome Leclanche,adys.wh@gmail.com,2013-03-15 00:54:29+00:00,False,gmail,gmail,* master,True,jazzband_django-push-notifications,jazzband/django-push-notifications,https://github.com/jazzband/django-push-notifications +dfc800b27e5b5b24519087e69766f20f1c16ade0,Benjamin Peterson,benjamin@python.org,2010-11-20 15:52:32-06:00,Benjamin Peterson,benjamin@python.org,2010-11-20 21:52:32+00:00,False,python,python,* main,True,benjaminp_six,benjaminp/six,https://github.com/benjaminp/six +857ab548f619773a8420331ce77ee6dce21ed106,Jeff-Meadows,jrmeadows2@gmail.com,2014-04-07 15:05:50-07:00,Jeff-Meadows,jrmeadows2@gmail.com,2014-04-07 22:05:50+00:00,False,gmail,gmail,* master,True,box_flaky.git,box/flaky.git,https://github.com/box/flaky.git +c3ab900e5ec82e9f6973e8e845ffdcbdcc25607e,Michael Dowling,mtdowling@gmail.com,2013-05-07 19:13:16-07:00,Michael Dowling,mtdowling@gmail.com,2013-05-08 02:13:16+00:00,False,gmail,gmail,* master,True,guzzle_guzzle_sphinx_theme.git,guzzle/guzzle/sphinx/theme.git,https://github.com/guzzle/guzzle_sphinx_theme.git +0df27cc9effbba08c7da6859979b8e67d1fca2e3,Daniele Alessandri,suppakilla@gmail.com,2009-03-24 12:41:45+01:00,Daniele Alessandri,suppakilla@gmail.com,2009-03-24 11:41:45+00:00,False,gmail,gmail,* version-2.0,True,nrk_redis-lua,nrk/redis-lua,https://github.com/nrk/redis-lua +eac7ce8e1d17f3e235029e9cff69074f836e4a68,Joachim Metz,joachim.metz@gmail.com,2011-10-06 07:47:30+02:00,Joachim Metz,joachim.metz@gmail.com,2016-03-27 14:40:18+00:00,False,gmail,gmail,* main,True,libyal_libevt,libyal/libevt,https://github.com/libyal/libevt +4d05c56a4a2a8e57a6301567a2b418d5897a75e5,Andreas Kloeckner,andreas@dart.ath.cx,2008-05-07 16:23:05-04:00,Andreas Kloeckner,andreas@dart.ath.cx,2008-05-07 20:23:05+00:00,False,dart,dart,* main,True,inducer_pycuda,inducer/pycuda,https://github.com/inducer/pycuda +9a5fd7c53a2ed3370699a8e7e77c1c55b7eb1919,Adrian Sampson,adrian@radbox.org,2011-11-11 16:20:57-08:00,Adrian Sampson,adrian@radbox.org,2011-11-12 00:20:57+00:00,False,radbox,radbox,* master,True,beetbox_pyacoustid.git,beetbox/pyacoustid.git,https://github.com/beetbox/pyacoustid.git +ae33a3a55c0d9804a9af108485231e4abab57843,niallo,niallo@f3d975e6-390d-11de-b310-9106b1f7c239,2007-10-26 21:53:05+00:00,niallo,niallo@f3d975e6-390d-11de-b310-9106b1f7c239,2007-10-26 21:53:05+00:00,False,f3d975e6-390d-11de-b310-9106b1f7c239,f3d975e6-390d-11de-b310-9106b1f7c239,* master,True,niallo_Unworkable.git,niallo/Unworkable.git,https://github.com/niallo/Unworkable.git +d7288fc289d2c0bbe17b952c9fafcc83f2035f2a,Malte.Marquarding,Malte.Marquarding@80e5cd9e-5d28-0410-a7fc-3f808f404835,2007-03-22 04:43:44+00:00,Malte.Marquarding,Malte.Marquarding@80e5cd9e-5d28-0410-a7fc-3f808f404835,2007-03-22 04:43:44+00:00,False,80e5cd9e-5d28-0410-a7fc-3f808f404835,80e5cd9e-5d28-0410-a7fc-3f808f404835,* master,True,casacore_python-casacore,casacore/python-casacore,https://github.com/casacore/python-casacore +783bf11df04627b63812812fc7ba756248499883,Perberos,perberos@gmail.com,2011-12-01 22:26:22-03:00,Perberos,perberos@gmail.com,2011-12-02 01:26:22+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-icon-theme.git,mate-desktop/mate-icon-theme.git,https://github.com/mate-desktop/mate-icon-theme.git +c783c6c9d23cb80a5731880c1432174a0a7d87a2,Choe Hwanjin,choe.hwanjin@gmail.com,2008-01-14 23:04:54+09:00,Choe Hwanjin,choe.hwanjin@gmail.com,2008-01-14 14:04:54+00:00,False,gmail,gmail,* master,True,choehwanjin_repairer,choehwanjin/repairer,https://github.com/choehwanjin/repairer +ca89e19909700b92fbd8fb9d099141b13a4b8862,Chris McDonough,chrism@plope.com,2011-12-17 02:01:18-05:00,Chris McDonough,chrism@plope.com,2011-12-17 07:01:18+00:00,False,plope,plope,* main,True,Pylons_waitress.git,Pylons/waitress.git,https://github.com/Pylons/waitress.git +f10557065a4d2858e18bdcefa8b3f610f37e56c6,Håkon Nessjøen,haakon.nessjoen@gmail.com,2011-11-08 00:28:37+01:00,Håkon Nessjøen,haakon.nessjoen@gmail.com,2011-11-07 23:28:37+00:00,False,gmail,gmail,* master,True,haakonnessjoen_MACTelnet-Debian-Packaging,haakonnessjoen/MACTelnet-Debian-Packaging,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging +9907ca7b56b919e8bdc4607176a237bd5f1641f1,Muflone,muflone@vbsimple.net,2009-12-31 20:50:17+00:00,Muflone,muflone@vbsimple.net,2009-12-31 20:50:17+00:00,False,vbsimple,vbsimple,* master,True,muflone_gwakeonlan.git,muflone/gwakeonlan.git,https://github.com/muflone/gwakeonlan.git +779d95b949bb859cdf62b7b0d8841d0a17c218d1,ktsaou,ktsaou,2002-10-18 00:03:29+00:00,ktsaou,ktsaou,2002-10-18 00:03:29+00:00,False,ktsaou,ktsaou,* master,True,firehol_firehol,firehol/firehol,https://github.com/firehol/firehol +1cf793234b420c8893b486b9cfe2a5234534a6f0,Jose M. Dana,dana.develop@gmail.com,2013-06-18 11:50:32+01:00,Jose M. Dana,dana.develop@gmail.com,2013-06-18 10:50:32+00:00,False,gmail,gmail,* master,True,jmdana_memprof,jmdana/memprof,https://github.com/jmdana/memprof +cd616ed94c3b34b67920da36b727081537e7c61e,Ruslan Spivak,ruslan.spivak@gmail.com,2011-03-20 15:04:42-04:00,Ruslan Spivak,ruslan.spivak@gmail.com,2011-03-20 19:04:42+00:00,False,gmail,gmail,* master,True,rspivak_slimit.git,rspivak/slimit.git,https://github.com/rspivak/slimit.git +9be0e6c3bce5c0d01af45289c2640d41c11c6b84,Frank B. Brokken,f.b.brokken@rug.nl,2006-09-19 15:01:57+00:00,Frank B. Brokken,f.b.brokken@rug.nl,2006-09-19 15:01:57+00:00,False,rug,rug,* master,True,fbb-git_icmake.git,fbb-git/icmake.git,https://gitlab.com/fbb-git/icmake.git 2932cb08e700035b99e8b0e773771317cb2f948e,Cory Watson,github@onemogin.com,2009-10-04 00:35:47-05:00,Cory Watson,github@onemogin.com,2009-10-04 05:35:47+00:00,False,onemogin,onemogin,* master,True,rentrak_chi-driver-redis,rentrak/chi-driver-redis,https://github.com/rentrak/chi-driver-redis -e30cbfd06ab10c20132014e5a21656fcd9661b82,Éloi Rivard,eloi@yaal.coop,2023-10-05 13:43:05+02:00,Éloi Rivard,eloi@yaal.coop,2023-10-05 11:43:21+00:00,False,yaal,yaal,* main,True,wtforms_wtforms.git,wtforms/wtforms.git,https://github.com/wtforms/wtforms.git -b75441d5509ad179930103b926379b1e0dfedef6,Facundo Batista,facundo@taniquetil.com.ar,2024-02-28 17:40:07-03:00,GitHub,noreply@github.com,2024-02-28 20:40:07+00:00,True,taniquetil,github,* master,True,PyAr_fades.git,PyAr/fades.git,https://github.com/PyAr/fades.git -a704d91d03de178fadc65496dffc760111c08c1b,Marcin Owsiany,marcin@owsiany.pl,2019-09-05 22:35:36+02:00,Marcin Owsiany,marcin@owsiany.pl,2019-09-05 20:35:36+00:00,False,owsiany,owsiany,* master,True,porridge_autorenamer,porridge/autorenamer,https://github.com/porridge/autorenamer -401006584e32864a10c69d29f14414828909362e,Syohei YOSHIDA,syohex@gmail.com,2015-03-10 17:53:06+09:00,Syohei YOSHIDA,syohex@gmail.com,2015-03-10 08:53:06+00:00,True,gmail,gmail,* master,True,tkf_emacs-python-environment.git,tkf/emacs-python-environment.git,https://github.com/tkf/emacs-python-environment.git -8ae566b9214687bbd1cce5627e1df6e0609252ab,Yuri D'Elia,wavexx@thregr.org,2024-01-02 23:00:43+01:00,Yuri D'Elia,wavexx@thregr.org,2024-01-02 22:00:43+00:00,False,thregr,thregr,* master,True,wavexx_trend,wavexx/trend,https://gitlab.com/wavexx/trend -700f31373ed28e088d934f0345a15621c8ff3841,Jim Huang,jserv@0xlab.org,2014-04-20 12:59:42+08:00,Jim Huang,jserv@0xlab.org,2014-04-20 04:59:42+00:00,False,0xlab,0xlab,* master,True,chewing_scim-chewing.git,chewing/scim-chewing.git,https://github.com/chewing/scim-chewing.git -e492ebe6d9b1606cda010a2a13a7c9f4d9a90b17,Christoph Reiter,reiter.christoph@gmail.com,2023-09-15 10:49:10+02:00,Christoph Reiter,reiter.christoph@gmail.com,2023-09-15 08:49:10+00:00,False,gmail,gmail,* main,True,quodlibet_mutagen.git,quodlibet/mutagen.git,https://github.com/quodlibet/mutagen.git -9faef4aebb0eeb4f9f55d67a29026373d7c394a8,johnthagen,johnthagen@users.noreply.github.com,2023-11-29 14:16:23-05:00,Nicolas De loof,nicolas.deloof@gmail.com,2023-11-30 07:53:44+00:00,False,users,gmail,* main,True,docker_compose,docker/compose,https://github.com/docker/compose -50cf930ec8240be069a18765c10f681f1c4d7599,Roman Gilg,subdiff@gmail.com,2019-11-04 10:53:44+01:00,Roman Gilg,subdiff@gmail.com,2019-11-11 20:52:25+00:00,False,gmail,gmail,* master,True,plasma_kscreen.git,plasma/kscreen.git,https://invent.kde.org/plasma/kscreen.git -2eb0b356e5e3936e7bba3bff3edc7af8813e5e66,Alexander Larsson,alexl@redhat.com,2007-03-01 11:00:54+00:00,Alexander Larsson,alexl@src.gnome.org,2007-03-01 11:00:54+00:00,False,redhat,src,* master,True,GNOME_xdg-user-dirs-gtk,GNOME/xdg-user-dirs-gtk,https://gitlab.gnome.org/GNOME/xdg-user-dirs-gtk -43a32fcc760a9b57af14835e2e9b31b4af0c3393,Brett M. Morris,morrisbrettm@gmail.com,2023-07-27 13:40:28-04:00,GitHub,noreply@github.com,2023-07-27 17:40:28+00:00,True,gmail,github,* main,True,astropy_astroplan.git,astropy/astroplan.git,https://github.com/astropy/astroplan.git -cddee155c12c7be21420b1649a50fe95cc81e38e,Tomas Babej,tomas@tbabej.com,2021-09-12 22:05:18-04:00,Tomas Babej,tomas@tbabej.com,2021-09-15 01:43:57+00:00,False,tbabej,tbabej,* develop,True,GothenburgBitFactory_tasklib.git,GothenburgBitFactory/tasklib.git,https://github.com/GothenburgBitFactory/tasklib.git -a93aa9bf18771d868de542b6323cdfe8b2555fdc,Ricardo Alves,lafere@gmail.com,2022-05-13 14:26:40+02:00,GitHub,noreply@github.com,2022-05-13 12:26:40+00:00,False,gmail,github,* master,True,kpn-digital_django-etcd-settings,kpn-digital/django-etcd-settings,https://github.com/kpn-digital/django-etcd-settings -0f7e268e3a4a86feeee655c4c58087aa506cab95,Joachim Metz,joachim.metz@gmail.com,2016-01-08 15:21:17+01:00,Joachim Metz,joachim.metz@gmail.com,2016-01-08 14:26:23+00:00,False,gmail,gmail,* main,True,libyal_libscca,libyal/libscca,https://github.com/libyal/libscca -1e0e6621ec8726dc7a21110e2e37985d5e051981,Bo Bayles,bbayles@gmail.com,2024-01-08 09:43:16-06:00,GitHub,noreply@github.com,2024-01-08 15:43:16+00:00,True,gmail,github,* master,True,erikrose_more-itertools,erikrose/more-itertools,https://github.com/erikrose/more-itertools -16c4f011f66d157d7d9be1bd9d173da3b25e8e25,Massimiliano Ghilardi,massimiliano.ghilardi@gmail.com,2017-01-14 15:28:54+01:00,Massimiliano Ghilardi,massimiliano.ghilardi@gmail.com,2017-01-14 14:28:54+00:00,False,gmail,gmail,* master,True,cosmos72_detachtty.git,cosmos72/detachtty.git,https://github.com/cosmos72/detachtty.git -d67c3cb4ecfb421a43c23fbb7ca53caa350404c4,Aarni Koskela,akx@iki.fi,2023-12-20 10:18:01+02:00,GitHub,noreply@github.com,2023-12-20 08:18:01+00:00,False,iki,github,* main,True,jupyter_notebook.git,jupyter/notebook.git,https://github.com/jupyter/notebook.git -5f6f17930e558ab902d9355b9e94fca8341c28e4,Andrew,arwmoffat@gmail.com,2023-08-07 01:25:14-07:00,GitHub,noreply@github.com,2023-08-07 08:25:14+00:00,True,gmail,github,* develop,True,amoffat_sh,amoffat/sh,https://github.com/amoffat/sh -e9b1be1998304d05401df18a5366e5d4664571ad,Yoshiki Shibukawa,yoshiki@shibu.jp,2022-07-01 21:20:17+09:00,Yoshiki Shibukawa,yoshiki@shibu.jp,2022-07-01 12:20:17+00:00,False,shibu,shibu,* master,True,shibukawa_imagesize_py,shibukawa/imagesize/py,https://github.com/shibukawa/imagesize_py -3ca0c79b0f23184b3bafc0dee74f905e7cc408b2,Florian Pelgrim,florian.pelgrim@craneworks.de,2016-03-27 21:59:35+02:00,Florian Pelgrim,florian.pelgrim@craneworks.de,2016-03-27 19:59:35+00:00,False,craneworks,craneworks,* master,True,craneworks_python-ipcalc,craneworks/python-ipcalc,https://github.com/craneworks/python-ipcalc +c0998bac1a4d5cd5fdf43a825529a64e24dea9a5,Thomas Johansson,prencher@prencher.dk,2008-01-14 23:55:10+01:00,Thomas Johansson,prencher@prencher.dk,2008-01-14 22:55:10+00:00,False,prencher,prencher,* main,True,wtforms_wtforms.git,wtforms/wtforms.git,https://github.com/wtforms/wtforms.git +675d4d00ac40dacb9eb11473d44e53095a5d8f73,Facundo Batista,facundo@taniquetil.com.ar,2014-11-16 23:44:04-03:00,Facundo Batista,facundo@taniquetil.com.ar,2014-11-17 02:44:04+00:00,False,taniquetil,taniquetil,* master,True,PyAr_fades.git,PyAr/fades.git,https://github.com/PyAr/fades.git +fe0774f3fa9b096e9a1433001a845848bc31c569,Marcin Owsiany,marcin@owsiany.pl,2011-11-27 11:54:26+00:00,Marcin Owsiany,marcin@owsiany.pl,2011-11-27 11:55:12+00:00,False,owsiany,owsiany,* master,True,porridge_autorenamer,porridge/autorenamer,https://github.com/porridge/autorenamer +37cb686a66c79dad24eb9d0424d15d5f96a45118,Takafumi Arakaki,aka.tkf@gmail.com,2013-06-21 20:50:36+02:00,Takafumi Arakaki,aka.tkf@gmail.com,2013-06-21 18:52:31+00:00,False,gmail,gmail,* master,True,tkf_emacs-python-environment.git,tkf/emacs-python-environment.git,https://github.com/tkf/emacs-python-environment.git +0ddedf73550f8d0c0be5bf883a1f5bb257c91ef5,wavemm,a@b,2004-09-09 17:36:14+01:00,wavemm,a@b,2004-09-09 16:36:14+00:00,False,b,b,* master,True,wavexx_trend,wavexx/trend,https://gitlab.com/wavexx/trend +3789e59ed181452c615b976b0ab889dd44b1323f,kanru,kanru@ac1be623-90ea-0310-9410-ba68b2efa777,2005-01-27 02:15:14+00:00,kanru,kanru@ac1be623-90ea-0310-9410-ba68b2efa777,2005-01-27 02:15:14+00:00,False,ac1be623-90ea-0310-9410-ba68b2efa777,ac1be623-90ea-0310-9410-ba68b2efa777,* master,True,chewing_scim-chewing.git,chewing/scim-chewing.git,https://github.com/chewing/scim-chewing.git +20411c8f4e908c39208154d9e79b0d4710bd5050,Joe Wreschnig,joe.wreschnig@gmail.com,2005-07-18 21:25:02+00:00,Joe Wreschnig,joe.wreschnig@gmail.com,2005-07-18 21:25:02+00:00,False,gmail,gmail,* main,True,quodlibet_mutagen.git,quodlibet/mutagen.git,https://github.com/quodlibet/mutagen.git +0eb5897fd95a27f5b71f3e32d7ff4f7cbe2ea547,Michael Crosby,crosbymichael@gmail.com,2020-04-06 10:40:40-04:00,Michael Crosby,crosbymichael@gmail.com,2020-04-06 14:40:40+00:00,False,gmail,gmail,* main,True,docker_compose,docker/compose,https://github.com/docker/compose +5b9cda96303755085114f482d5dac9811f641e7f,Alex Fiestas,afiestas@kde.org,2012-12-09 00:13:57+01:00,Alex Fiestas,afiestas@kde.org,2012-12-08 23:16:11+00:00,False,kde,kde,* master,True,plasma_kscreen.git,plasma/kscreen.git,https://invent.kde.org/plasma/kscreen.git +9aedd5a84efac57343a5c84fde595f8c43cb96c5,Alexander Larsson,alexl@src.gnome.org,2007-03-01 08:09:56+00:00,Alexander Larsson,alexl@src.gnome.org,2007-03-01 08:09:56+00:00,False,src,src,* master,True,GNOME_xdg-user-dirs-gtk,GNOME/xdg-user-dirs-gtk,https://gitlab.gnome.org/GNOME/xdg-user-dirs-gtk +f1523f1a388d41a28113fddf03cdbcd9441ccce3,Christoph Deil,Deil.Christoph@gmail.com,2015-04-28 10:26:39+02:00,Christoph Deil,Deil.Christoph@gmail.com,2015-04-28 08:27:12+00:00,False,gmail,gmail,* main,True,astropy_astroplan.git,astropy/astroplan.git,https://github.com/astropy/astroplan.git +e17985e0d4a7ce2eb83c580c71e2f7c1af7f093b,Rob Golding,rob@robgolding.com,2013-04-01 16:50:18+01:00,Rob Golding,rob@robgolding.com,2013-04-01 15:50:18+00:00,False,robgolding,robgolding,* develop,True,GothenburgBitFactory_tasklib.git,GothenburgBitFactory/tasklib.git,https://github.com/GothenburgBitFactory/tasklib.git +da5c46037d1d8acb149f0f2fb8fb15e682795821,Enrique Paz,enrique.pazperez@kpn.com,2015-10-14 14:57:43+02:00,Enrique Paz,enrique.pazperez@kpn.com,2015-10-14 12:57:43+00:00,False,kpn,kpn,* master,True,kpn-digital_django-etcd-settings,kpn-digital/django-etcd-settings,https://github.com/kpn-digital/django-etcd-settings +56161e279d2c536ac4c67ea80fb0ebbcfb752040,Joachim Metz,joachim.metz@gmail.com,2014-10-03 08:13:05+02:00,Joachim Metz,joachim.metz@gmail.com,2014-10-03 06:13:05+00:00,False,gmail,gmail,* main,True,libyal_libscca,libyal/libscca,https://github.com/libyal/libscca +c9805345e04691a0671f2d0671e587ae5130b372,Erik Rose,erik@votizen.com,2012-04-25 22:18:06-07:00,Erik Rose,erik@votizen.com,2012-04-26 05:18:06+00:00,False,votizen,votizen,* master,True,erikrose_more-itertools,erikrose/more-itertools,https://github.com/erikrose/more-itertools +0478d608e595da64ffaa7e80f4edfcbc4a8dee56,dan,dan,2001-10-16 18:54:13+00:00,dan,dan,2001-10-16 18:54:13+00:00,False,dan,dan,* master,True,cosmos72_detachtty.git,cosmos72/detachtty.git,https://github.com/cosmos72/detachtty.git +3e088743166deb507e2dfda45393d1a516186b8b,Brian E. Granger,ellisonbg@gmail.com,2013-04-28 21:16:25-07:00,Brian E. Granger,ellisonbg@gmail.com,2013-04-29 04:16:25+00:00,False,gmail,gmail,* main,True,jupyter_notebook.git,jupyter/notebook.git,https://github.com/jupyter/notebook.git +c1012878a40f7215c09f87a013aa685ceb104069,Andrew Moffat,andrew.robert.moffat@gmail.com,2012-01-14 20:38:19-06:00,Andrew Moffat,andrew.robert.moffat@gmail.com,2012-01-15 02:38:19+00:00,False,gmail,gmail,* develop,True,amoffat_sh,amoffat/sh,https://github.com/amoffat/sh +0354c84c702e35fb135c5814536b525d2edcc342,Yoshiki Shibukawa,shibukawa.yoshiki@dena.jp,2016-02-01 16:51:02+09:00,Yoshiki Shibukawa,shibukawa.yoshiki@dena.jp,2016-02-01 07:51:02+00:00,False,dena,dena,* master,True,shibukawa_imagesize_py,shibukawa/imagesize/py,https://github.com/shibukawa/imagesize_py +5e0f61861ae263f3ae2001c162f2d14181262f53,MEZGANI Ali,mezgani@linuxmail.org,2009-06-17 01:33:25+02:00,Florian Pelgrim,florian.pelgrim@craneworks.de,2015-01-04 13:23:43+00:00,False,linuxmail,craneworks,* master,True,craneworks_python-ipcalc,craneworks/python-ipcalc,https://github.com/craneworks/python-ipcalc 829f49a4b92799ce633891c9ae6be8aba0c97c59,Dave Barr,dave.barr@gmail.com,2011-01-07 15:39:27-08:00,Dave Barr,dave.barr@gmail.com,2011-01-07 23:39:27+00:00,False,gmail,gmail,* master,True,davebarr_dnswalk.git,davebarr/dnswalk.git,https://github.com/davebarr/dnswalk.git -9bafea61089ad7df393809661b4dce909bf0ae1e,Bert Münnich,xyb3rt@gmail.com,2023-06-12 11:09:36+02:00,Bert Münnich,xyb3rt@gmail.com,2023-06-12 09:09:36+00:00,False,gmail,gmail,* master,True,rakitzis_rc,rakitzis/rc,https://github.com/rakitzis/rc -5766e1c5017ad35d786268cbd810d4fd4f377d01,Bleala,51357182+Bleala@users.noreply.github.com,2024-02-16 14:07:21+01:00,Hugo,hugo@whynothugo.nl,2024-02-16 13:29:11+00:00,False,users,whynothugo,* main,True,pimutils_vdirsyncer,pimutils/vdirsyncer,https://github.com/pimutils/vdirsyncer -78c59859eca9f3e7f2cabb8fc851a70b6d293ff4,monsta,monsta@inbox.ru,2017-03-12 18:22:29+03:00,monsta,monsta@inbox.ru,2017-03-12 15:22:29+00:00,False,inbox,inbox,* master,True,mate-desktop_mate-system-monitor.git,mate-desktop/mate-system-monitor.git,https://github.com/mate-desktop/mate-system-monitor.git -80629d9ba84b8181fa44788a2dbb44b88fec5319,Matthew Grant,matthew.grant@net24.co.nz,2013-11-26 08:34:52+13:00,Matthew Grant,matthew.grant@net24.co.nz,2013-11-25 19:34:52+00:00,False,net24,net24,* master,True,grantma_py-magcode-core,grantma/py-magcode-core,https://github.com/grantma/py-magcode-core -1e2a91c27d84752829f78ec9688ea04997e17d2b,David Robertson,davidr@element.io,2022-09-20 00:46:22+01:00,GitHub,noreply@github.com,2022-09-19 23:46:22+00:00,True,element,github,* main,True,matrix-org_matrix-synapse-ldap3,matrix-org/matrix-synapse-ldap3,https://github.com/matrix-org/matrix-synapse-ldap3 +6bb38f6a01dbf4bbd584e038ceace0a00faa27bb,Byron Rakitzis,byron@archone.tamu.edu,1992-05-27 00:00:01+01:00,Toby Goodwin,toby@paccrat.org,2015-05-16 20:22:04+00:00,False,archone,paccrat,* master,True,rakitzis_rc,rakitzis/rc,https://github.com/rakitzis/rc +220f921ab69058fc810611e423d6877b4f32d7d5,Markus Unterwaditzer,markus@unterwaditzer.net,2014-02-15 16:32:55+01:00,Markus Unterwaditzer,markus@unterwaditzer.net,2014-02-28 13:44:07+00:00,False,unterwaditzer,unterwaditzer,* main,True,pimutils_vdirsyncer,pimutils/vdirsyncer,https://github.com/pimutils/vdirsyncer +f45852ab2a7126f354079499fc8b03976c0eab27,Perberos,perberos@gmail.com,2011-11-08 16:22:08-03:00,Perberos,perberos@gmail.com,2011-11-08 19:22:08+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-system-monitor.git,mate-desktop/mate-system-monitor.git,https://github.com/mate-desktop/mate-system-monitor.git +5fcb2c00df55d307d87b50200176ca16179a0c86,Matthew Grant,matthew.grant@net24.co.nz,2013-07-14 17:31:03+12:00,Matthew Grant,matthew.grant@net24.co.nz,2013-07-14 05:31:03+00:00,False,net24,net24,* master,True,grantma_py-magcode-core,grantma/py-magcode-core,https://github.com/grantma/py-magcode-core +4c6e04e3accd6a3b5030d6e82bd821f6a951f695,Erik Johnston,erikj@matrix.org,2016-11-08 16:08:04+00:00,Erik Johnston,erikj@matrix.org,2016-11-08 16:08:04+00:00,False,matrix,matrix,* main,True,matrix-org_matrix-synapse-ldap3,matrix-org/matrix-synapse-ldap3,https://github.com/matrix-org/matrix-synapse-ldap3 2aee4613530f2d84d86d8458d746fb864948283c,"Giuseppe ""denever"" Martino",denever@autistici.org,2007-11-05 08:08:48+01:00,"Giuseppe ""denever"" Martino",denever@autistici.org,2007-11-05 07:08:48+00:00,False,autistici,autistici,* master,True,git_aldo.git,git/aldo.git,https://git.savannah.nongnu.org/git/aldo.git -d159508f7bce10881767e5f6a082ba5d01428615,Chris Kampmeier,chris@kampers.net,2013-05-18 20:06:47-07:00,Chris Kampmeier,chris@kampers.net,2013-05-19 03:10:51+00:00,False,kampers,kampers,* master,True,chrisk_fakeweb.git,chrisk/fakeweb.git,https://github.com/chrisk/fakeweb.git +7a1a3d5c3ba711d3f112747406286893c69d4cea,Blaine Cook,romeda@gmail.com,2006-05-23 06:59:12+00:00,Blaine Cook,romeda@gmail.com,2006-05-23 06:59:12+00:00,False,gmail,gmail,* master,True,chrisk_fakeweb.git,chrisk/fakeweb.git,https://github.com/chrisk/fakeweb.git e9fd37debfd3a7ac111619850384f5302d3a9c43,Abigail,abigail@abigail.be,2009-04-02 21:02:22+02:00,Abigail,abigail@abigail.be,2009-04-02 19:02:22+00:00,False,abigail,abigail,* master,True,Abigail_end.git,Abigail/end.git,https://github.com/Abigail/end.git -7569a4bb60ea8b886d8ca158c855c4d53e24534e,Saúl Ibarra Corretgé,s@saghul.net,2023-10-07 22:33:55+02:00,Saúl Ibarra Corretgé,s@saghul.net,2023-10-07 20:38:08+00:00,False,saghul,saghul,* master,True,saghul_aiodns.git,saghul/aiodns.git,https://github.com/saghul/aiodns.git -8a2b582dbec78dfb2d60170c691af2948e55a960,NP-Hardass,np.hardass@gmail.com,2020-08-03 01:46:00-04:00,raveit65,mate@raveit.de,2020-10-20 08:34:23+00:00,False,gmail,raveit,* master,True,mate-desktop_mate-power-manager.git,mate-desktop/mate-power-manager.git,https://github.com/mate-desktop/mate-power-manager.git -3919a30845fb3ef7bc1df199d6274f9e2db65221,Jérôme Kieffer,jerome.kieffer@terre-adelie.org,2021-12-03 13:47:22+01:00,Jérôme Kieffer,jerome.kieffer@terre-adelie.org,2021-12-03 12:47:22+00:00,True,terre-adelie,terre-adelie,* main,True,silx-kit_fabio.git,silx-kit/fabio.git,https://github.com/silx-kit/fabio.git -5259a4b1698e6c07ac3e318ddfe5a99977c11ab2,Kate Hsuan,hpa@redhat.com,2024-02-19 15:44:06+08:00,Kate Hsuan,hpa@redhat.com,2024-02-19 07:44:06+00:00,False,redhat,redhat,* master,True,bolt_bolt,bolt/bolt,https://gitlab.freedesktop.org/bolt/bolt -1614a363a380e1b12ff056ac74f49003cedfe475,Kjetil Matheussen,k.s.matheussen@notam02.no,2014-03-16 13:54:51+01:00,Kjetil Matheussen,k.s.matheussen@notam02.no,2014-03-16 12:54:51+00:00,False,notam02,notam02,* master,True,kmatheussen_radium_compressor.git,kmatheussen/radium/compressor.git,https://github.com/kmatheussen/radium_compressor.git -a85ecfb6560a82d6717b496fb558053d71fcbee6,Daniel Pocock,daniel@pocock.pro,2015-02-15 17:25:20+01:00,Daniel Pocock,daniel@pocock.pro,2015-02-15 16:25:20+00:00,False,pocock,pocock,* master,True,ganglia_gmetric4j,ganglia/gmetric4j,https://github.com/ganglia/gmetric4j -e35a47062f7baefb49cf25c7d5f3d75fc3687e95,Linus Lüssing,linus.luessing@c0d3.blue,2023-08-01 04:15:36+02:00,Sven Eckelmann,sven@narfation.org,2023-11-15 10:58:08+00:00,False,c0d3,narfation,* main,True,batctl.git,batctl.git,https://git.open-mesh.org/batctl.git -52e53725f86fd74e551965de4e3a9f3aee826c8d,Arie Bovenberg,a.c.bovenberg@gmail.com,2023-12-08 08:11:16+01:00,GitHub,noreply@github.com,2023-12-08 07:11:16+00:00,False,gmail,github,* master,True,regebro_tzlocal,regebro/tzlocal,https://github.com/regebro/tzlocal -d81e8c189acd44449bc1a7698ec182c306e5c172,Sergio Costas,rastersoft@gmail.com,2023-10-10 20:43:20+02:00,Sergio Costas,rastersoft@gmail.com,2023-10-10 18:43:20+00:00,False,gmail,gmail,* master,True,rastersoft_terminus,rastersoft/terminus,https://gitlab.com/rastersoft/terminus -67abd8ceb23a87200477d3ef839dfef78e1956a5,Guilherme G. Piccoli,gpiccoli@linux.vnet.ibm.com,2017-04-19 15:28:41-03:00,Brian King,brking@linux.vnet.ibm.com,2017-06-09 14:56:38+00:00,False,linux,linux,* master,True,bjking1_iprutils,bjking1/iprutils,https://github.com/bjking1/iprutils -2a3f5730a82f33222927035231a64a31cf5e7dfc,Kurt Raschke,kurt@kurtraschke.com,2019-05-15 20:33:43-04:00,Kurt Raschke,kurt@kurtraschke.com,2019-05-16 00:33:43+00:00,False,kurtraschke,kurtraschke,* master,True,kurtraschke_pyRFC3339,kurtraschke/pyRFC3339,https://github.com/kurtraschke/pyRFC3339 -1376bdae89a3e0e6afc3c718b75d148203235344,David Zeuthen,davidz@redhat.com,2009-06-08 16:11:40-04:00,David Zeuthen,davidz@redhat.com,2009-06-08 20:11:40+00:00,False,redhat,redhat,* master,True,GNOME_policykit-gnome,GNOME/policykit-gnome,https://gitlab.gnome.org/GNOME/policykit-gnome -06016479e0680ddd0ae740d48d1c51e2cbebc8c5,Frazer McLean,frazer@frazermclean.co.uk,2017-12-12 01:26:25+01:00,Frazer McLean,frazer@frazermclean.co.uk,2017-12-12 00:26:36+00:00,False,frazermclean,frazermclean,* master,True,RazerM_ratelimiter,RazerM/ratelimiter,https://github.com/RazerM/ratelimiter -30456de5d9fd774fb7e8309ec8ffe40613111ddc,Anthony Sottile,asottile@umich.edu,2024-01-06 14:16:26-05:00,Anthony Sottile,asottile@umich.edu,2024-01-06 19:16:34+00:00,False,umich,umich,* main,True,dahlia_libsass-python.git,dahlia/libsass-python.git,https://github.com/dahlia/libsass-python.git -987d55e3e1fab0bd0892ccbac8d9a2d5801d0af9,jrburke,jrburke@gmail.com,2016-03-09 16:23:12-08:00,jrburke,jrburke@gmail.com,2016-03-10 00:23:12+00:00,False,gmail,gmail,* master,True,requirejs_text,requirejs/text,https://github.com/requirejs/text -e0ea4b0ce1bf793062bf2eec8cab7d42fe9cc168,Qingqing Zhou,zhouqq.github@gmail.com,2022-08-07 11:57:44-07:00,Christoph Berg,cb@df7cb.de,2022-09-21 14:28:02+00:00,False,gmail,df7cb,* master,True,anse1_sqlsmith,anse1/sqlsmith,https://github.com/anse1/sqlsmith -cbb5fe30fb561893ad9d28b72e89c130bbe390a0,Chris 'BinGOs' Williams,chris@bingosnet.co.uk,2011-05-13 12:40:40+01:00,Chris 'BinGOs' Williams,chris@bingosnet.co.uk,2011-05-13 11:40:40+00:00,False,bingosnet,bingosnet,* master,True,jib_term-ui.git,jib/term-ui.git,https://github.com/jib/term-ui.git -f4ffbf1d7223f1c95f115c1e10288352380da5f3,Grégory Mantelet,gregory.mantelet@astro.unistra.fr,2019-07-02 10:18:47+02:00,Grégory Mantelet,gregory.mantelet@astro.unistra.fr,2019-07-02 08:18:47+00:00,False,astro,astro,* master,True,gmantele_taplib.git,gmantele/taplib.git,https://github.com/gmantele/taplib.git +823f82d2f9459562da60c61d956286486306066f,Saúl Ibarra Corretgé,saghul@gmail.com,2014-03-26 23:57:55+01:00,Saúl Ibarra Corretgé,saghul@gmail.com,2014-03-26 22:57:55+00:00,False,gmail,gmail,* master,True,saghul_aiodns.git,saghul/aiodns.git,https://github.com/saghul/aiodns.git +51175189c6d7313a3b84019e39496f957c4e6164,Stefano Karapetsas,stefano@karapetsas.com,2011-12-11 12:55:19+01:00,Stefano Karapetsas,stefano@karapetsas.com,2011-12-11 11:55:19+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_mate-power-manager.git,mate-desktop/mate-power-manager.git,https://github.com/mate-desktop/mate-power-manager.git +8f90857f5828d197750bd448c62a872e05fcb505,jpwright,jpwright@d066a591-ed20-0410-833c-cb8bbb91b4a7,2008-10-23 09:51:39+00:00,jpwright,jpwright@d066a591-ed20-0410-833c-cb8bbb91b4a7,2008-10-23 09:51:39+00:00,False,d066a591-ed20-0410-833c-cb8bbb91b4a7,d066a591-ed20-0410-833c-cb8bbb91b4a7,* main,True,silx-kit_fabio.git,silx-kit/fabio.git,https://github.com/silx-kit/fabio.git +be120774ea24e766d3de813ac9cb9fd9e5903c81,Christian Kellner,christian@kellner.me,2017-11-10 18:45:30+01:00,Christian Kellner,christian@kellner.me,2017-11-15 10:21:13+00:00,False,kellner,kellner,* master,True,bolt_bolt,bolt/bolt,https://gitlab.freedesktop.org/bolt/bolt +20208a051d25492b01e9b3de09831597b5ff1d48,Kjetil Matheussen,k.s.matheussen@notam02.no,2013-01-17 10:54:20+01:00,Kjetil Matheussen,k.s.matheussen@notam02.no,2013-01-17 09:54:20+00:00,False,notam02,notam02,* master,True,kmatheussen_radium_compressor.git,kmatheussen/radium/compressor.git,https://github.com/kmatheussen/radium_compressor.git +b7d06c0e44dddbb08a3795425bef2236323f0380,Daniel Pocock,daniel@pocock.com.au,2012-06-16 15:50:45+02:00,Daniel Pocock,daniel@pocock.com.au,2012-06-16 13:50:45+00:00,False,pocock,pocock,* master,True,ganglia_gmetric4j,ganglia/gmetric4j,https://github.com/ganglia/gmetric4j +c83fd89ed0e5d7ace371642b6a74b295f9b79e77,Andreas Langer,a.langer@q-dsl.de,2007-06-20 16:44:58+02:00,Andreas Langer,a.langer@q-dsl.de,2007-06-20 14:44:58+00:00,False,q-dsl,q-dsl,* main,True,batctl.git,batctl.git,https://git.open-mesh.org/batctl.git +5b5c5134464d8e64621bd27a23ece2812e52d18f,Lennart Regebro,regebro@gmail.com,2012-09-11 14:51:48+02:00,Lennart Regebro,regebro@gmail.com,2012-09-11 12:51:48+00:00,False,gmail,gmail,* master,True,regebro_tzlocal,regebro/tzlocal,https://github.com/regebro/tzlocal +eb2ee46e9432b80d8590b527b56e0ccfa9070fac,Sergio Costas,raster@rastersoft.com,2016-08-13 20:21:57+02:00,Sergio Costas,raster@rastersoft.com,2016-08-13 18:21:57+00:00,False,rastersoft,rastersoft,* master,True,rastersoft_terminus,rastersoft/terminus,https://gitlab.com/rastersoft/terminus +5b6d45f28626cbb3bc4e055a1196932f0eceda9e,manderso,manderso,2003-10-22 22:21:02+00:00,manderso,manderso,2003-10-22 22:21:02+00:00,False,manderso,manderso,* master,True,bjking1_iprutils,bjking1/iprutils,https://github.com/bjking1/iprutils +aa419b8b668214470b2b0b3733ca6510a8f622f7,Kurt Raschke,kurt@kurtraschke.com,2009-08-23 20:43:09-04:00,Kurt Raschke,kurt@kurtraschke.com,2009-08-24 00:43:09+00:00,False,kurtraschke,kurtraschke,* master,True,kurtraschke_pyRFC3339,kurtraschke/pyRFC3339,https://github.com/kurtraschke/pyRFC3339 +a615c3784b159108c4def76d5e1fe71d6415ec66,David Zeuthen,davidz@src.gnome.org,2008-04-04 06:02:43+00:00,David Zeuthen,davidz@src.gnome.org,2008-04-04 06:02:43+00:00,False,src,src,* master,True,GNOME_policykit-gnome,GNOME/policykit-gnome,https://gitlab.gnome.org/GNOME/policykit-gnome +9ee86c35c8f8803444a302d5d59aa09b0ee1d0f2,Arnaud Porterie,arnaud.porterie@gmail.com,2013-02-24 13:55:34+01:00,Arnaud Porterie,arnaud.porterie@gmail.com,2013-02-24 12:55:34+00:00,False,gmail,gmail,* master,True,RazerM_ratelimiter,RazerM/ratelimiter,https://github.com/RazerM/ratelimiter +b62ddd098d90f9820f75da5219baa20c37bb2c32,Joshua Bussdieker,josh.bussdieker@moovweb.com,2012-06-14 15:13:43-07:00,Joshua Bussdieker,josh.bussdieker@moovweb.com,2012-06-14 22:13:43+00:00,False,moovweb,moovweb,* main,True,dahlia_libsass-python.git,dahlia/libsass-python.git,https://github.com/dahlia/libsass-python.git +25df75ecc99447646956f09d527462108f76e113,jrburke,jrburke@gmail.com,2012-05-26 17:39:53-07:00,jrburke,jrburke@gmail.com,2012-05-27 00:39:53+00:00,False,gmail,gmail,* master,True,requirejs_text,requirejs/text,https://github.com/requirejs/text +1f2eb2c994717c62df517918d9f64fe4098341d0,Andreas Seltenreich,andreas+git@ansel.ydns.eu,2015-05-01 18:03:10+02:00,Andreas Seltenreich,andreas+git@ansel.ydns.eu,2015-05-01 16:03:10+00:00,False,ansel,ansel,* master,True,anse1_sqlsmith,anse1/sqlsmith,https://github.com/anse1/sqlsmith +24678ae14d82e4ca73650af2537abb42c316e05a,Jos Boumans,kane@cpan.org,2006-08-17 20:51:43+00:00,Jos Boumans,kane@cpan.org,2006-08-17 20:51:43+00:00,False,cpan,cpan,* master,True,jib_term-ui.git,jib/term-ui.git,https://github.com/jib/term-ui.git +e963dd44d8356f506acd17dd6f490cd6ed4a8024,gmantele,gmantele@ari.uni-heidelberg.de,2014-04-03 18:28:02+02:00,gmantele,gmantele@ari.uni-heidelberg.de,2014-04-03 16:28:02+00:00,False,ari,ari,* master,True,gmantele_taplib.git,gmantele/taplib.git,https://github.com/gmantele/taplib.git 6fbec998dcfd9859a12cec6ce1745c7dab217c22,Rainer Gerhards,rgerhards@adiscon.com,2008-03-12 20:49:43+01:00,Rainer Gerhards,rgerhards@adiscon.com,2008-03-12 19:49:43+00:00,False,adiscon,adiscon,* master,True,rsyslog_librelp,rsyslog/librelp,https://github.com/rsyslog/librelp -120f012d38e0a4653416fc8302c5e61563b16da7,Daniel Muey,simplemood.com@gmail.com,2016-01-15 16:13:25-06:00,Daniel Muey,simplemood.com@gmail.com,2016-01-15 22:13:25+00:00,False,gmail,gmail,* master,True,drmuey_p5-Locales.git,drmuey/p5-Locales.git,https://github.com/drmuey/p5-Locales.git -1a8d5f8842729e264bee8495b97b5d14396eaa39,aws-sdk-python-automation,github-aws-sdk-python-automation@amazon.com,2024-01-23 01:10:57+00:00,aws-sdk-python-automation,github-aws-sdk-python-automation@amazon.com,2024-01-23 01:10:57+00:00,False,amazon,amazon,* develop,True,boto_boto3,boto/boto3,https://github.com/boto/boto3 +2dbf2e22af42a49bd7b20dd46ceeda5b63012ac0,Daniel Muey,simplemood.com@gmail.com,2013-09-20 17:55:17-05:00,Daniel Muey,simplemood.com@gmail.com,2013-09-20 22:55:17+00:00,False,gmail,gmail,* master,True,drmuey_p5-Locales.git,drmuey/p5-Locales.git,https://github.com/drmuey/p5-Locales.git +a33e1f8595e8d4cf70b8d5c0b1a7657124adc6a2,Daniel G. Taylor,danielgtaylor@gmail.com,2014-09-03 16:12:23-07:00,Daniel G. Taylor,danielgtaylor@gmail.com,2014-09-03 23:12:23+00:00,False,gmail,gmail,* develop,True,boto_boto3,boto/boto3,https://github.com/boto/boto3 1a38d8c73b3eb9962ead90cae72f930faf7fd3b6,Rainer Gerhards,rgerhards@adiscon.com,2010-11-04 11:10:58+01:00,Rainer Gerhards,rgerhards@adiscon.com,2010-11-04 10:10:58+00:00,False,adiscon,adiscon,* master,True,rsyslog_libestr.git,rsyslog/libestr.git,https://github.com/rsyslog/libestr.git -ffa33578552bc27ed707dce762da2f056e1aa373,Jeff Quast,contact@jeffquast.com,2015-10-09 16:32:11-07:00,Jeff Quast,contact@jeffquast.com,2015-10-09 23:39:26+00:00,True,jeffquast,jeffquast,* master,True,jquast_blessed,jquast/blessed,https://github.com/jquast/blessed +8c7940f196b111742adbcf50caddb62cb78d3497,Erik Rose,erik@mozilla.com,2011-11-07 01:53:27-08:00,Erik Rose,erik@mozilla.com,2011-11-07 09:53:27+00:00,False,mozilla,mozilla,* master,True,jquast_blessed,jquast/blessed,https://github.com/jquast/blessed c8e1bc43ca4956ea68c266a8f4a75e9c8d5266ac,Côme Chilliet,come@opensides.be,2017-12-06 11:20:18+01:00,Côme Chilliet,come@opensides.be,2017-12-06 10:20:18+00:00,False,opensides,opensides,* master,True,argonaut_libpoe-component-server-jsonrpc,argonaut/libpoe-component-server-jsonrpc,https://gitlab.fusiondirectory.org/argonaut/libpoe-component-server-jsonrpc -d0054391774f52431e268cadae465c3b4534f7e6,Daniel Kobras,kobras@puzzle-itc.de,2022-02-23 12:02:36+01:00,Daniel Kobras,30901193+dkobras@users.noreply.github.com,2022-02-23 11:55:20+00:00,False,puzzle-itc,users,* master,True,msktutil_msktutil,msktutil/msktutil,https://github.com/msktutil/msktutil -4f8313459c4dff92ceba5049d0290b88cc028a9d,Grant Erickson,gerickson@nuovations.com,2023-12-21 14:35:04-08:00,Marcel Holtmann,marcel@holtmann.org,2023-12-23 12:19:19+00:00,False,nuovations,holtmann,* master,True,pub_scm_network_connman_connman.git,pub/scm/network/connman/connman.git,https://git.kernel.org/pub/scm/network/connman/connman.git -fe5c8000681b9a8afd8ceabc622958ff18759f03,sunnavy,sunnavy@bestpractical.com,2023-09-20 09:29:12-04:00,sunnavy,sunnavy@bestpractical.com,2023-09-20 14:35:32+00:00,False,bestpractical,bestpractical,* master,True,bestpractical_rt-extension-repeatticket,bestpractical/rt-extension-repeatticket,https://github.com/bestpractical/rt-extension-repeatticket -8c08b391a9f8976153a3a1972c66296e01f60c66,Asif Saif Uddin,auvipy@gmail.com,2023-11-05 14:43:31+06:00,Asif Saif Uddin,auvipy@gmail.com,2023-11-05 08:43:31+00:00,False,gmail,gmail,* master,True,celery_vine,celery/vine,https://github.com/celery/vine -b50e5c2246ac0aef39c7009231170a579f6aa204,Tomer Nosrati,tomer.nosrati@gmail.com,2024-01-12 21:53:46+02:00,Tomer Nosrati,tomer.nosrati@gmail.com,2024-01-12 19:53:46+00:00,False,gmail,gmail,* main,True,celery_kombu,celery/kombu,https://github.com/celery/kombu -b50346b5c217c401d8cc0f3c58ca5a953fc2f53f,Nate Prewitt,nate.prewitt@gmail.com,2022-01-02 11:00:55-07:00,GitHub,noreply@github.com,2022-01-02 18:00:55+00:00,True,gmail,github,* develop,True,boto_s3transfer,boto/s3transfer,https://github.com/boto/s3transfer -ce4b8674302ecf7fcd51f6f026852136daf6b9ee,Dr. Ben Schneider,benschneider@users.noreply.github.com,2022-09-30 01:01:12+02:00,Dr. Ben Schneider,benschneider@users.noreply.github.com,2022-09-29 23:01:12+00:00,False,users,users,* master,True,benschneider_PyGnuplot,benschneider/PyGnuplot,https://github.com/benschneider/PyGnuplot -006ddc7e55362a0500d1d9339364a220d94b51ae,Adam Borowski,kilobyte@angband.pl,2018-09-30 11:59:41+02:00,Adam Borowski,kilobyte@angband.pl,2018-09-30 09:59:41+00:00,False,angband,angband,* master,True,kilobyte_termrec,kilobyte/termrec,https://github.com/kilobyte/termrec -265d2b3b9611b41060ac550c85911be95ed7ca5b,Derek Gulbranson,derek73@gmail.com,2022-01-28 18:26:30-08:00,Derek Gulbranson,derek73@gmail.com,2022-01-29 02:26:30+00:00,False,gmail,gmail,* master,True,derek73_python-nameparser,derek73/python-nameparser,https://github.com/derek73/python-nameparser -7c4eda810d5242e8f1ad80a649c4f635dcc164b7,Alexander Larsson,alexl@redhat.com,2009-11-06 11:22:29+01:00,Alexander Larsson,alexl@redhat.com,2009-11-06 10:22:29+00:00,False,redhat,redhat,* master,True,xdg_xdg-user-dirs.git,xdg/xdg-user-dirs.git,https://gitlab.freedesktop.org/xdg/xdg-user-dirs.git -a19b876241c01b19dcbd089dc03d9ffb6afbe9c1,Martin R. Albrecht,martinralbrecht@googlemail.com,2024-01-21 12:36:56+00:00,Martin R. Albrecht,martinralbrecht@googlemail.com,2024-01-21 12:36:56+00:00,False,googlemail,googlemail,* master,True,fplll_fpylll.git,fplll/fpylll.git,https://github.com/fplll/fpylll.git -b6e1c9f4f1d24906cfc2106d5d9bf5c866a6e775,Johannes Hoppe,info@johanneshoppe.com,2020-04-18 20:39:06+02:00,Johannes Hoppe,info@johanneshoppe.com,2020-04-18 18:41:19+00:00,False,johanneshoppe,johanneshoppe,* main,True,coddingtonbear_python-measurement,coddingtonbear/python-measurement,https://github.com/coddingtonbear/python-measurement -c7cabe18328e5d247f75140155d5124ecd4b3884,Pino Toscano,ptoscano@redhat.com,2023-09-12 07:38:54+02:00,Pino Toscano,ptoscano@redhat.com,2023-09-12 05:38:54+00:00,False,redhat,redhat,* main,True,libosinfo_osinfo-db.git,libosinfo/osinfo-db.git,https://gitlab.com/libosinfo/osinfo-db.git -c3cd386de68721815451e8ba7cf4560d8d1c6ff6,omahs,73983677+omahs@users.noreply.github.com,2024-02-16 16:27:20+01:00,GitHub,noreply@github.com,2024-02-16 15:27:20+00:00,False,users,github,* master,True,joke2k_faker,joke2k/faker,https://github.com/joke2k/faker -df3000f0b2965a5f6d5d4e237d43354a15b2d447,Aleksander Morgado,aleksander@aleksander.es,2022-02-11 12:26:36+01:00,Aleksander Morgado,aleksander@aleksander.es,2022-02-11 11:26:57+00:00,False,aleksander,aleksander,* main,True,mobile-broadband_libqmi.git,mobile-broadband/libqmi.git,https://gitlab.freedesktop.org/mobile-broadband/libqmi.git -a88d62c6ed5246614a3d5a09326473c90e92452d,Michael Howitz,icemac@gmx.net,2023-12-19 09:39:38+01:00,GitHub,noreply@github.com,2023-12-19 08:39:38+00:00,False,gmx,github,* master,True,zopefoundation_zope.testing,zopefoundation/zope.testing,https://github.com/zopefoundation/zope.testing -875e1c9d6cd0c15b4bff39d7e4bf4fe254fd6873,Kai Mühlbauer,kai.muehlbauer@uni-bonn.de,2024-01-12 15:54:50+01:00,Kai Mühlbauer,kmuehlbauer@wradlib.org,2024-01-16 10:51:43+00:00,False,uni-bonn,wradlib,* main,True,h5netcdf_h5netcdf.git,h5netcdf/h5netcdf.git,https://github.com/h5netcdf/h5netcdf.git -fc2f2feaa99dce8aab6381168051f2725b537621,Bartosz Golaszewski,bartosz.golaszewski@linaro.org,2024-01-16 10:40:57+01:00,Bartosz Golaszewski,bartosz.golaszewski@linaro.org,2024-01-17 16:15:15+00:00,False,linaro,linaro,* master,True,pub_scm_libs_libgpiod_libgpiod.git,pub/scm/libs/libgpiod/libgpiod.git,https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git -d70a3b19312a572c6b3b59a851d67bd33126a4ca,YuLun Shih,shih@yulun.me,2017-07-18 10:03:13+08:00,YuLun Shih,shih@yulun.me,2017-07-18 02:07:40+00:00,False,yulun,yulun,* master,True,imZack_modem-cmd.git,imZack/modem-cmd.git,https://github.com/imZack/modem-cmd.git -316981e43b14f42a9aa7b461c97e1f61f6f2390b,Anton D. Kachalov,mouse@ya.ru,2020-04-04 10:59:39+02:00,Anton D. Kachalov,gmouse@google.com,2020-04-05 11:18:58+00:00,False,ya,google,* master,True,ya-mouse_fatresize,ya-mouse/fatresize,https://github.com/ya-mouse/fatresize -84fb5cfe96263f79e50b68a5a6996e40c514cf74,rbuj,robert.buj@gmail.com,2020-10-05 15:58:40+02:00,raveit65,mate@raveit.de,2020-10-17 15:55:40+00:00,False,gmail,raveit,* master,True,mate-desktop_engrampa.git,mate-desktop/engrampa.git,https://github.com/mate-desktop/engrampa.git -f25f1b659ce33e9ec469a88285a553269ad0ee55,willyrk1,willyrk1@gmail.com,2022-09-20 18:40:51-04:00,GitHub,noreply@github.com,2022-09-20 22:40:51+00:00,False,gmail,github,* master,True,dimitri_pgloader,dimitri/pgloader,https://github.com/dimitri/pgloader -4017a6c9d4a09d5af1ce18e8a56fefc3f9b6697e,Michael Pavone,pavone@retrodev.com,2019-03-27 23:34:53-07:00,Michael Pavone,pavone@retrodev.com,2019-03-28 06:34:53+00:00,False,retrodev,retrodev,* master,True,coringao_blastem,coringao/blastem,https://gitlab.com/coringao/blastem -5d6531a663849c2f46f9114d88323f84ce918797,Montel Laurent,montel@kde.org,2015-01-31 13:09:08+01:00,Montel Laurent,montel@kde.org,2015-01-31 12:09:08+00:00,False,kde,kde,* master,True,bomber.git,bomber.git,https://anongit.kde.org/bomber.git -81268a4e4f0243d26f146e2acc32bd7c37521af3,Albert Astals Cid,aacid@kde.org,2024-01-01 22:42:58+01:00,Albert Astals Cid,aacid@kde.org,2024-01-01 21:42:58+00:00,False,kde,kde,* master,True,libraries_qca.git,libraries/qca.git,https://invent.kde.org/libraries/qca.git -8ce6e770f296ce341acea9869817c4eb0fd2d442,Kuba Kuźma,kuba@jah.pl,2016-05-09 22:57:43+02:00,Kuba Kuźma,kuba@jah.pl,2016-05-09 20:57:43+00:00,True,jah,jah,* master,True,qoobaa_magic,qoobaa/magic,https://github.com/qoobaa/magic -89002d1add30d6bfeb8260eb23304373f0741463,David Lord,davidism@gmail.com,2023-04-19 16:15:18-07:00,David Lord,davidism@gmail.com,2023-04-19 23:15:18+00:00,False,gmail,gmail,* main,True,pallets_werkzeug,pallets/werkzeug,https://github.com/pallets/werkzeug -6de1a017a523401cf97ee3e42d44ca0e48aec5d0,Sergey Poznyakoff,gray@gnu.org,2023-01-22 14:32:04+02:00,Sergey Poznyakoff,gray@gnu.org,2023-01-22 12:32:04+00:00,False,gnu,gnu,* master,True,rush.git,rush.git,https://git.gnu.org.ua/rush.git -05cdcfef78e918b16bb543a9e6dbadda73b0556a,Ronald Oussoren,ronaldoussoren@mac.com,2020-01-21 20:43:40+01:00,Ronald Oussoren,ronaldoussoren@mac.com,2020-01-21 19:43:40+00:00,False,mac,mac,* master,True,ronaldoussoren_macholib,ronaldoussoren/macholib,https://github.com/ronaldoussoren/macholib -55c86280df80437f185eab6ab43fcb5fde5f3f06,Chris Rose,offline@offby1.net,2022-12-14 14:41:50-05:00,GitHub,noreply@github.com,2022-12-14 19:41:50+00:00,True,offby1,github,* main,True,hamcrest_PyHamcrest,hamcrest/PyHamcrest,https://github.com/hamcrest/PyHamcrest -a7111770dce5e6941ddc013f878411c4c5e26f8c,Hervé Pagès,hpages.on.github@gmail.com,2021-04-22 22:00:43-07:00,Hervé Pagès,hpages.on.github@gmail.com,2021-04-23 05:00:43+00:00,False,gmail,gmail,* devel,True,Bioconductor_Rsamtools.git,Bioconductor/Rsamtools.git,https://github.com/Bioconductor/Rsamtools.git -96823eb1d12d0742c0602654c53ec89986003a4d,Bruno Renié,brutasse@users.noreply.github.com,2023-06-22 09:16:06+02:00,Bruno Renié,brutasse@users.noreply.github.com,2023-06-22 07:16:06+00:00,False,users,users,* master,True,exoscale_cs,exoscale/cs,https://github.com/exoscale/cs -55e2595e9658f933ed057cd4e3c16aa1adb6af7a,RachelRen05,38059915+RachelRen05@users.noreply.github.com,2022-07-15 23:44:02+08:00,GitHub,noreply@github.com,2022-07-15 15:44:02+00:00,False,users,github,* rolling,True,ros-perception_vision_opencv,ros-perception/vision/opencv,https://github.com/ros-perception/vision_opencv -40413399eb70fec7bbc0211805e50fa8d62b92ca,Stephen Rosen,sirosen@globus.org,2022-07-21 20:18:23+00:00,Stephen Rosen,sirosen@globus.org,2022-07-27 20:11:26+00:00,False,globus,globus,* main,True,nose-devs_nose2.git,nose-devs/nose2.git,https://github.com/nose-devs/nose2.git -0be305feb6b8b4e409098811fc4c69e6ccec4798,David Leadbeater,dgl@dgl.cx,2023-06-19 10:41:57+10:00,David Leadbeater,dgl@dgl.cx,2023-06-19 00:41:57+00:00,False,dgl,dgl,* master,True,dgl_re-engine-RE2.git,dgl/re-engine-RE2.git,https://github.com/dgl/re-engine-RE2.git -aac59078d31ed813edf9869baae9cae924e78040,Yury Matveyev,y.matveev@gmail.com,2024-03-13 09:12:37+00:00,Yury Matveyev,y.matveev@gmail.com,2024-03-13 09:12:37+00:00,True,gmail,gmail,* develop,True,tango-controls_pytango,tango-controls/pytango,https://gitlab.com/tango-controls/pytango -c6716fa4de6ed5272470d71a9bea7827a5426840,Stein Magnus Jodal,stein.magnus@jodal.no,2023-06-21 22:34:33+02:00,GitHub,noreply@github.com,2023-06-21 20:34:33+00:00,True,jodal,github,* main,True,mopidy_mopidy-alsamixer,mopidy/mopidy-alsamixer,https://github.com/mopidy/mopidy-alsamixer -901aa6fd974f1d636e69ed7d95ce92762712d66b,Marco d'Itri,md@linux.it,2023-12-10 03:22:00+01:00,Marco d'Itri,md@linux.it,2023-12-10 02:22:00+00:00,True,linux,linux,* master,True,rfc1036_rblcheck,rfc1036/rblcheck,https://github.com/rfc1036/rblcheck -4e404e6cc0135f3524bb306392775b6f134a4e0d,Doug Hellmann,dhellmann@redhat.com,2021-06-10 22:46:13-04:00,GitHub,noreply@github.com,2021-06-11 02:46:13+00:00,True,redhat,github,* main,True,sphinx-contrib_spelling,sphinx-contrib/spelling,https://github.com/sphinx-contrib/spelling -9dff0691e0824d72df23b0dd2b446ea1769b3b4e,Tim Abbott,tabbott@zulip.com,2022-07-11 17:26:49-07:00,Tim Abbott,tabbott@zulip.com,2022-07-12 00:31:43+00:00,False,zulip,zulip,* master,True,disqus_django-bitfield,disqus/django-bitfield,https://github.com/disqus/django-bitfield -a9625d25b03dff1f233cf22f3726ba8e98edaa51,Thomas Kemmer,tkemmer@computer.org,2023-01-08 21:38:25+01:00,Thomas Kemmer,tkemmer@computer.org,2023-01-08 20:38:25+00:00,False,computer,computer,* master,True,tkem_uritools,tkem/uritools,https://github.com/tkem/uritools -4ce9f7f37801309011d1cc6aaf370a54d7193b53,Axel Beckert,abe@deuxchevaux.org,2021-02-16 19:10:19+01:00,Axel Beckert,abe@deuxchevaux.org,2021-02-16 18:10:19+00:00,False,deuxchevaux,deuxchevaux,* master,True,elmar_dh-dist-zilla,elmar/dh-dist-zilla,https://github.com/elmar/dh-dist-zilla -ec55218baa727ff94d8cafe38815ab969cbc4841,Marco d'Itri,md@linux.it,2004-09-29 16:24:09+02:00,Marco d'Itri,md@linux.it,2013-04-01 03:56:19+00:00,False,linux,linux,* master,True,rfc1036_gup,rfc1036/gup,https://github.com/rfc1036/gup -9611082e10f00dc1d19e3d4dab5ced00a9f238d6,Ignacio Casal Quinteiro,qignacio@amazon.com,2017-06-12 22:57:51+02:00,Carlos Garcia Campos,carlosgc@gnome.org,2017-06-24 07:32:33+00:00,False,amazon,gnome,* master,True,GNOME_libgxps.git,GNOME/libgxps.git,https://gitlab.gnome.org/GNOME/libgxps.git -5b13af18e8633f0ed8c77bb5e5147eb5ac9b16a0,Artur Barseghyan,artur.barseghyan@gmail.com,2019-09-08 21:29:15+02:00,Artur Barseghyan,artur.barseghyan@gmail.com,2019-09-08 19:29:15+00:00,False,gmail,gmail,* master,True,barseghyanartur_transliterate,barseghyanartur/transliterate,https://github.com/barseghyanartur/transliterate -5918a0ef8034379c2e409ae93ee11d24295bb201,Wu Tingfeng,wutingfeng@outlook.com,2023-12-02 14:48:02+08:00,GitHub,noreply@github.com,2023-12-02 06:48:02+00:00,True,outlook,github,* master,True,kjd_idna,kjd/idna,https://github.com/kjd/idna -fa6023ae18a93d5e299d8cba652eeed945834d68,Stefan Koch,stefan.koch10@gmail.com,2022-12-19 21:54:54+01:00,Stefan Koch,stefan.koch10@gmail.com,2022-12-19 21:13:21+00:00,False,gmail,gmail,* master,True,kochstefan_usbauth-all.git,kochstefan/usbauth-all.git,https://github.com/kochstefan/usbauth-all.git -b795f8c9c5f5da461f2b6fe5579d7864bfc80130,Nick Andrik,nick.andrik@gmail.com,2016-11-05 02:07:06+01:00,Nick Andrik,nick.andrik@gmail.com,2016-11-05 01:38:24+00:00,False,gmail,gmail,* master,True,andrikos_kismet-debian,andrikos/kismet-debian,https://github.com/andrikos/kismet-debian -bdaa099bebb90a30a3c49c917064445d21293622,Rick van Hattem,Wolph@wol.ph,2023-03-13 22:11:20+01:00,Rick van Hattem,Wolph@wol.ph,2023-03-13 21:11:20+00:00,True,wol,wol,* develop,True,WoLpH_numpy-stl,WoLpH/numpy-stl,https://github.com/WoLpH/numpy-stl -b24840900c42a5d81259afcacfc2e26189ac1458,Michal Čihař,michal@cihar.com,2024-03-05 12:39:58+01:00,Michal Čihař,michal@cihar.com,2024-03-05 11:39:58+00:00,False,cihar,cihar,* master,True,nijel_utidylib.git,nijel/utidylib.git,https://github.com/nijel/utidylib.git -4f2afdad94d4b6ede332fa3a0e9b4b90ba144189,Brice Goglin,Brice.Goglin@ens-lyon.org,2017-10-17 07:50:28+02:00,Brice Goglin,Brice.Goglin@ens-lyon.org,2017-10-17 05:52:06+00:00,False,ens-lyon,ens-lyon,* master,True,bgoglin_lltag,bgoglin/lltag,https://github.com/bgoglin/lltag -beaff3a9c4a3248f2dcb2917d6e19e5f2bc8e5a1,Joachim Metz,joachim.metz@gmail.com,2016-01-10 09:49:43+01:00,Joachim Metz,joachim.metz@gmail.com,2016-01-10 08:49:43+00:00,False,gmail,gmail,* main,True,libyal_libfwsi.git,libyal/libfwsi.git,https://github.com/libyal/libfwsi.git -0f22454f81733eb6f45249236e798deb3d334c6c,Russell Jones,rjones@mailgunhq.com,2014-02-19 18:48:13-08:00,Russell Jones,rjones@mailgunhq.com,2014-02-20 02:48:13+00:00,False,mailgunhq,mailgunhq,* master,True,mailgun_dnsq.git,mailgun/dnsq.git,https://github.com/mailgun/dnsq.git -7188628df078932b4f23ecb3173b4b8bc479c873,Takashi Iwai,tiwai@suse.de,2007-07-25 11:36:41+02:00,Takashi Iwai,tiwai@suse.de,2007-07-25 09:36:41+00:00,False,suse,suse,* master,True,tiwai_awesfx.git,tiwai/awesfx.git,https://github.com/tiwai/awesfx.git -86e7ad0a434ef7f4d14789e861d980bbc593e5ca,Kip Hampton,khampton@totalcinema.com,2012-11-21 16:42:42-08:00,Kip Hampton,khampton@totalcinema.com,2012-11-22 00:42:42+00:00,True,totalcinema,totalcinema,* master,True,tamarou_magpie.git,tamarou/magpie.git,https://github.com/tamarou/magpie.git +e1343c4a2edf34fe9c2bcdd03fe4874e3a3d61ef,James Y Knight,foom@fuhm.net,2010-02-22 18:58:57-05:00,James Y Knight,foom@fuhm.net,2010-02-13 18:02:42+00:00,False,fuhm,fuhm,* master,True,msktutil_msktutil,msktutil/msktutil,https://github.com/msktutil/msktutil +ba189b000c4c5ab4d15c6b155a7dbf8bd46c42d4,Marcel Holtmann,marcel@holtmann.org,2007-12-22 20:47:27+01:00,Marcel Holtmann,marcel@holtmann.org,2007-12-22 19:47:27+00:00,False,holtmann,holtmann,* master,True,pub_scm_network_connman_connman.git,pub/scm/network/connman/connman.git,https://git.kernel.org/pub/scm/network/connman/connman.git +60cf0606ff555c2c1f3892bf8075f010d11145a4,sunnavy,sunnavy@bestpractical.com,2012-06-07 13:26:01+08:00,sunnavy,sunnavy@bestpractical.com,2012-06-07 05:26:01+00:00,False,bestpractical,bestpractical,* master,True,bestpractical_rt-extension-repeatticket,bestpractical/rt-extension-repeatticket,https://github.com/bestpractical/rt-extension-repeatticket +ef6ae3cba938aa54ac53b3d7a9a85b749fbcf126,Ask Solem,ask@celeryproject.org,2016-03-02 13:02:39-08:00,Ask Solem,ask@celeryproject.org,2016-03-02 21:07:33+00:00,False,celeryproject,celeryproject,* master,True,celery_vine,celery/vine,https://github.com/celery/vine +da3e75459489e2069b4de487eb578c99bc6a19ed,Ask Solem,askh@opera.com,2010-06-23 12:08:39+02:00,Ask Solem,askh@opera.com,2010-06-23 10:08:39+00:00,False,opera,opera,* main,True,celery_kombu,celery/kombu,https://github.com/celery/kombu +26080084c6772132d8a7c80b8b730591e3ede14b,Kyle Knapp,kyleknap@amazon.com,2016-01-12 15:19:43-08:00,Kyle Knapp,kyleknap@amazon.com,2016-01-12 23:19:43+00:00,False,amazon,amazon,* develop,True,boto_s3transfer,boto/s3transfer,https://github.com/boto/s3transfer +e517ecb377f67d11b74bc19b0c707c08cf575d2c,Ben,benh.schneider@gmail.com,2016-07-28 20:29:00+02:00,Ben,benh.schneider@gmail.com,2016-07-28 18:29:00+00:00,False,gmail,gmail,* master,True,benschneider_PyGnuplot,benschneider/PyGnuplot,https://github.com/benschneider/PyGnuplot +aca4d4265f1544f79c3fbc4cb06101b3fd1a7135,kilobyte,kilobyte@8f4a4dc5-f818-0410-840f-8bcc34fcb755,2005-02-15 08:40:35+00:00,kilobyte,kilobyte@8f4a4dc5-f818-0410-840f-8bcc34fcb755,2005-02-15 08:40:35+00:00,False,8f4a4dc5-f818-0410-840f-8bcc34fcb755,8f4a4dc5-f818-0410-840f-8bcc34fcb755,* master,True,kilobyte_termrec,kilobyte/termrec,https://github.com/kilobyte/termrec +280895bd696cfb22739a6f775bf63886226a765a,Derek Gulbranson,derek73@gmail.com,2011-02-03 18:22:15-08:00,Derek Gulbranson,derek73@gmail.com,2011-02-04 02:22:15+00:00,False,gmail,gmail,* master,True,derek73_python-nameparser,derek73/python-nameparser,https://github.com/derek73/python-nameparser +85558b8afbaf404b7d14a5a9d45a94cfdfc863f8,Adam Jacksson,ajax@freedesktop.org,2007-02-26 15:51:16+00:00,Adam Jacksson,ajax@freedesktop.org,2007-02-26 15:51:16+00:00,False,freedesktop,freedesktop,* master,True,xdg_xdg-user-dirs.git,xdg/xdg-user-dirs.git,https://gitlab.freedesktop.org/xdg/xdg-user-dirs.git +053f33ef6bb287d5c37e807adf70f4de1a5810fa,Martin R. Albrecht,martinralbrecht@googlemail.com,2015-11-03 18:26:50+00:00,Martin R. Albrecht,martinralbrecht@googlemail.com,2015-11-03 18:26:50+00:00,False,googlemail,googlemail,* master,True,fplll_fpylll.git,fplll/fpylll.git,https://github.com/fplll/fpylll.git +dc418a07eb252238c33e316c0acc81e102eb29d1,Johannes Hoppe,info@johanneshoppe.com,2018-01-09 16:51:53+01:00,Johannes Hoppe,info@johanneshoppe.com,2018-01-09 17:15:13+00:00,False,johanneshoppe,johanneshoppe,* main,True,coddingtonbear_python-measurement,coddingtonbear/python-measurement,https://github.com/coddingtonbear/python-measurement +488aedb37cdcca85be45db67c3e30301e122ee40,Arjun Roy,arroy@redhat.com,2009-11-06 12:42:27-08:00,Arjun Roy,arroy@redhat.com,2009-11-06 20:42:27+00:00,False,redhat,redhat,* main,True,libosinfo_osinfo-db.git,libosinfo/osinfo-db.git,https://gitlab.com/libosinfo/osinfo-db.git +95051461df395ee68d32aedec2fcb4884246ce56,joke2k,joke2k@gmail.com,2012-11-12 15:00:10-08:00,joke2k,joke2k@gmail.com,2012-11-12 23:00:10+00:00,False,gmail,gmail,* master,True,joke2k_faker,joke2k/faker,https://github.com/joke2k/faker +f9aa19c63fb456dd493a8f8fc7fee5acd91e2d33,Dan Williams,dcbw@redhat.com,2011-07-11 20:17:14-05:00,Dan Williams,dcbw@redhat.com,2011-07-12 01:17:14+00:00,False,redhat,redhat,* main,True,mobile-broadband_libqmi.git,mobile-broadband/libqmi.git,https://gitlab.freedesktop.org/mobile-broadband/libqmi.git +fa8174f76d88eb96b0289a305fc05728cea6fd8e,Jim Fulton,jim@zope.com,2005-05-24 20:28:53+00:00,Jim Fulton,jim@zope.com,2005-05-24 20:28:53+00:00,False,zope,zope,* master,True,zopefoundation_zope.testing,zopefoundation/zope.testing,https://github.com/zopefoundation/zope.testing +0923ef7fb4d6f1a5580f0ee9e48889919169c042,Stephan Hoyer,shoyer@climate.com,2015-04-07 11:48:11-07:00,Stephan Hoyer,shoyer@climate.com,2015-04-07 18:48:11+00:00,False,climate,climate,* main,True,h5netcdf_h5netcdf.git,h5netcdf/h5netcdf.git,https://github.com/h5netcdf/h5netcdf.git +fff7e7b75965e954fac5ece0cde365c342f98b02,Bartosz Golaszewski,bartekgola@gmail.com,2017-01-02 11:44:35+01:00,Bartosz Golaszewski,bartekgola@gmail.com,2017-01-02 10:44:35+00:00,False,gmail,gmail,* master,True,pub_scm_libs_libgpiod_libgpiod.git,pub/scm/libs/libgpiod/libgpiod.git,https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git +1d29b3757857380535b502ed909accd098a04b88,YuLun Shih,shih@yulun.me,2014-12-25 23:19:00+08:00,YuLun Shih,shih@yulun.me,2014-12-25 15:19:00+00:00,False,yulun,yulun,* master,True,imZack_modem-cmd.git,imZack/modem-cmd.git,https://github.com/imZack/modem-cmd.git +9995b39456379d4bd057a107befb8b1a1d9953ee,Anton D. Kachalov,mouse@ya.ru,2016-11-18 10:40:27+08:00,Anton D. Kachalov,mouse@ya.ru,2016-11-18 02:40:27+00:00,False,ya,ya,* master,True,ya-mouse_fatresize,ya-mouse/fatresize,https://github.com/ya-mouse/fatresize +70438138096a47b2505ac55634cd94947ce378b6,Perberos,perberos@gmail.com,2011-11-09 22:53:33-03:00,Perberos,perberos@gmail.com,2011-11-10 01:53:33+00:00,False,gmail,gmail,* master,True,mate-desktop_engrampa.git,mate-desktop/engrampa.git,https://github.com/mate-desktop/engrampa.git +1dfa170a49cbb3b42580e545467903dd643cc934,Dimitri Fontaine,dim@tapoueh.org,2013-01-25 12:46:38+01:00,Dimitri Fontaine,dim@tapoueh.org,2013-01-25 11:46:38+00:00,False,tapoueh,tapoueh,* master,True,dimitri_pgloader,dimitri/pgloader,https://github.com/dimitri/pgloader +4d20ddd615f7f07ec56d70ee90f2c61d76a7ad7f,Mike Pavone,pavone@retrodev.com,2013-09-11 00:08:33-07:00,Mike Pavone,pavone@retrodev.com,2013-09-11 07:08:33+00:00,False,retrodev,retrodev,* master,True,coringao_blastem,coringao/blastem,https://gitlab.com/coringao/blastem +624eaf907f8b52f02db3618eac4106f16498c4a0,John-Paul Stanford,jp@stanwood.org.uk,2008-07-07 20:12:20+00:00,John-Paul Stanford,jp@stanwood.org.uk,2008-07-07 20:12:20+00:00,False,stanwood,stanwood,* master,True,bomber.git,bomber.git,https://anongit.kde.org/bomber.git +a361aa20fbbbb249bc4968e804900a8f05080e45,Justin Karneges,justin@affinix.com,2003-07-10 17:31:04+00:00,Justin Karneges,justin@affinix.com,2003-07-10 17:31:04+00:00,False,affinix,affinix,* master,True,libraries_qca.git,libraries/qca.git,https://invent.kde.org/libraries/qca.git +962de58fb0fc5af40d15de378936c2e4a6dfae7e,Jakub Kuźma,qoobaa+github@gmail.com,2010-01-10 20:57:05+01:00,Jakub Kuźma,qoobaa+github@gmail.com,2010-01-10 19:57:05+00:00,False,gmail,gmail,* master,True,qoobaa_magic,qoobaa/magic,https://github.com/qoobaa/magic +0acf8cab6a8be33d8778973a162d956650dd0a03,Armin Ronacher,armin.ronacher@active-4.com,2007-11-27 23:51:17+01:00,Armin Ronacher,armin.ronacher@active-4.com,2007-11-27 22:51:17+00:00,False,active-4,active-4,* main,True,pallets_werkzeug,pallets/werkzeug,https://github.com/pallets/werkzeug +c53198ab147f5842eabdd31bc3c7f5eff1f30e4c,Sergey Poznyakoff,gray@gnu.org.ua,2008-08-25 02:59:11+03:00,Sergey Poznyakoff,gray@gnu.org.ua,2008-08-24 23:59:11+00:00,False,gnu,gnu,* master,True,rush.git,rush.git,https://git.gnu.org.ua/rush.git +fe4adba1be25ad55f94166b2e0556fe456930c28,Ronald Oussoren,ronaldoussoren@mac.com,2011-03-12 21:55:07-05:00,Ronald Oussoren,ronaldoussoren@mac.com,2011-03-13 02:55:07+00:00,False,mac,mac,* master,True,ronaldoussoren_macholib,ronaldoussoren/macholib,https://github.com/ronaldoussoren/macholib +39a0cfa306f8c0a93c82b7ffb9831bc67ee38870,Jon Reid,jon.reid@mac.com,2010-11-28 21:15:36+00:00,Jon Reid,jon.reid@mac.com,2010-11-28 21:15:36+00:00,False,mac,mac,* main,True,hamcrest_PyHamcrest,hamcrest/PyHamcrest,https://github.com/hamcrest/PyHamcrest +5f7b1f94c1bd43a75c2941f0b23249e9c1c6d2e8,Martin Morgan,mtmorgan@fhcrc.org,2009-09-04 00:20:56+00:00,Martin Morgan,mtmorgan@fhcrc.org,2009-09-04 00:20:56+00:00,False,fhcrc,fhcrc,* devel,True,Bioconductor_Rsamtools.git,Bioconductor/Rsamtools.git,https://github.com/Bioconductor/Rsamtools.git +cbadda7f733486e95d328bbacf94508092e41976,Bruno Renié,brutasse@gmail.com,2014-07-01 16:35:13+02:00,Bruno Renié,brutasse@gmail.com,2014-07-01 14:35:13+00:00,False,gmail,gmail,* master,True,exoscale_cs,exoscale/cs,https://github.com/exoscale/cs +2be3371fa6f793b9562f0f891fe561effd511ca9,Vincent Rabaud,vincent.rabaud@gmail.com,2015-11-22 22:37:36+01:00,Vincent Rabaud,vincent.rabaud@gmail.com,2015-11-22 21:37:36+00:00,False,gmail,gmail,* rolling,True,ros-perception_vision_opencv,ros-perception/vision/opencv,https://github.com/ros-perception/vision_opencv +eb89a93b6f035059267d1bf63a44f4ffafc224b9,JP,jpellerin@gmail.com,2012-01-19 09:43:35-05:00,JP,jpellerin@gmail.com,2012-01-19 14:43:35+00:00,False,gmail,gmail,* main,True,nose-devs_nose2.git,nose-devs/nose2.git,https://github.com/nose-devs/nose2.git +7c7a9ca4471cb77f8ef2d8689d8e657d36359ccd,David Leadbeater,dgl@dgl.cx,2010-07-25 11:05:31+01:00,David Leadbeater,dgl@dgl.cx,2010-07-25 10:05:31+00:00,False,dgl,dgl,* master,True,dgl_re-engine-RE2.git,dgl/re-engine-RE2.git,https://github.com/dgl/re-engine-RE2.git +d8b36f3e26c24c5bdcb045603395c911eb9f8636,tiagocoutinho,tiagocoutinho@4e9c00fd-8f2e-0410-aa12-93ce3db5e235,2012-02-13 09:12:55+00:00,tiagocoutinho,tiagocoutinho@4e9c00fd-8f2e-0410-aa12-93ce3db5e235,2012-02-13 09:12:55+00:00,False,4e9c00fd-8f2e-0410-aa12-93ce3db5e235,4e9c00fd-8f2e-0410-aa12-93ce3db5e235,* develop,True,tango-controls_pytango,tango-controls/pytango,https://gitlab.com/tango-controls/pytango +bff13c8334bf1b9ddcd61464e3535af5eee5e36c,Stein Magnus Jodal,stein.magnus@jodal.no,2014-06-22 11:49:22+02:00,Stein Magnus Jodal,stein.magnus@jodal.no,2014-06-22 09:49:22+00:00,False,jodal,jodal,* main,True,mopidy_mopidy-alsamixer,mopidy/mopidy-alsamixer,https://github.com/mopidy/mopidy-alsamixer +7edb87599f3887747188c634b411a4071e8665b1,Marco d'Itri,md@linux.it,2016-12-28 15:34:38+01:00,Marco d'Itri,md@linux.it,2016-12-28 14:34:38+00:00,False,linux,linux,* master,True,rfc1036_rblcheck,rfc1036/rblcheck,https://github.com/rfc1036/rblcheck +2bc05eab6be0c65a2d00ea3a898082e396d5d637,Georg Brandl,georg@python.org,2009-05-17 19:36:23+02:00,Georg Brandl,georg@python.org,2009-05-17 17:36:23+00:00,False,python,python,* main,True,sphinx-contrib_spelling,sphinx-contrib/spelling,https://github.com/sphinx-contrib/spelling +41d147324f47bdd9644c15eb71e76d9195b15245,David Cramer,dcramer@gmail.com,2010-12-27 18:32:11-08:00,David Cramer,dcramer@gmail.com,2010-12-28 02:32:39+00:00,False,gmail,gmail,* master,True,disqus_django-bitfield,disqus/django-bitfield,https://github.com/disqus/django-bitfield +6b62a0b2d522563b9959bc200d861ef67f6eb5b4,Thomas Kemmer,tkemmer@computer.org,2014-02-07 22:20:19-08:00,Thomas Kemmer,tkemmer@computer.org,2014-02-08 06:20:19+00:00,False,computer,computer,* master,True,tkem_uritools,tkem/uritools,https://github.com/tkem/uritools +beac245a056212acd56127e9ebbfbb92450cf7d8,Elmar S. Heeb,heeb@phys.ethz.ch,2014-07-31 16:13:27+02:00,Elmar S. Heeb,heeb@phys.ethz.ch,2014-07-31 14:13:27+00:00,False,phys,phys,* master,True,elmar_dh-dist-zilla,elmar/dh-dist-zilla,https://github.com/elmar/dh-dist-zilla +44ebfe165b4d3009e5377f2e672297a94f284e44,Marco d'Itri,md@linux.it,2000-04-07 18:24:53+02:00,Marco d'Itri,md@linux.it,2013-04-01 03:56:19+00:00,False,linux,linux,* master,True,rfc1036_gup,rfc1036/gup,https://github.com/rfc1036/gup +18b30745869ef02761d2ccc24bef71fae08fe845,Carlos Garcia Campos,carlosgc@gnome.org,2010-08-08 16:26:59+02:00,Carlos Garcia Campos,carlosgc@gnome.org,2010-09-03 12:50:52+00:00,False,gnome,gnome,* master,True,GNOME_libgxps.git,GNOME/libgxps.git,https://gitlab.gnome.org/GNOME/libgxps.git +13405d3f3eaeefc9e251ea614108c68aa7feb918,Artur Barseghyan,artur.barseghyan@gmail.com,2013-09-08 16:05:21+02:00,Artur Barseghyan,artur.barseghyan@gmail.com,2013-09-08 14:05:21+00:00,False,gmail,gmail,* master,True,barseghyanartur_transliterate,barseghyanartur/transliterate,https://github.com/barseghyanartur/transliterate +e9b1c9202908745fff22e9e4bf3d7bb7d6f6c6f5,Kim Davies,kim@cynosure.com.au,2013-05-27 15:22:14-07:00,Kim Davies,kim@cynosure.com.au,2013-05-27 22:22:14+00:00,False,cynosure,cynosure,* master,True,kjd_idna,kjd/idna,https://github.com/kjd/idna +50b1e93b818dc2946080fe6318693a4a73859d64,Stefan Koch,skoch@suse.de,2015-05-12 11:41:29+02:00,Stefan Koch,skoch@suse.de,2015-05-12 09:41:29+00:00,False,suse,suse,* master,True,kochstefan_usbauth-all.git,kochstefan/usbauth-all.git,https://github.com/kochstefan/usbauth-all.git +e58cdc65bb14227b4f07c94286b7f2b6c26aea9c,Nick Andrik,nick.andrik@gmail.com,2012-12-26 03:59:50+02:00,Nick Andrik,nick.andrik@gmail.com,2012-12-26 01:59:50+00:00,False,gmail,gmail,* master,True,andrikos_kismet-debian,andrikos/kismet-debian,https://github.com/andrikos/kismet-debian +bf8b159315f6362cfef2bd44d8379c4760035e8d,Rick van Hattem,Wolph@wol.ph,2014-10-16 18:15:09+02:00,Rick van Hattem,Wolph@wol.ph,2014-10-16 16:15:09+00:00,False,wol,wol,* develop,True,WoLpH_numpy-stl,WoLpH/numpy-stl,https://github.com/WoLpH/numpy-stl +5034191fbc3dcbffd982628f56aaa090dc4c6105,Greg Thornton,xdissent@gmail.com,2010-01-08 16:48:18-06:00,Greg Thornton,xdissent@gmail.com,2010-01-08 22:48:18+00:00,False,gmail,gmail,* master,True,nijel_utidylib.git,nijel/utidylib.git,https://github.com/nijel/utidylib.git +1aefd29d8f01e1f38f271cfefc294d584335ed3f,bgoglin,bgoglin@b20c0237-0900-0410-9b41-d09804560211,2005-09-05 18:31:33+00:00,bgoglin,bgoglin@b20c0237-0900-0410-9b41-d09804560211,2005-09-05 18:31:33+00:00,False,b20c0237-0900-0410-9b41-d09804560211,b20c0237-0900-0410-9b41-d09804560211,* master,True,bgoglin_lltag,bgoglin/lltag,https://github.com/bgoglin/lltag +54bc4e024a73b9f56aec6c2374580ae023ac1805,Joachim Metz,joachim.metz@gmail.com,2014-09-21 17:47:14+02:00,Joachim Metz,joachim.metz@gmail.com,2014-09-21 15:47:14+00:00,False,gmail,gmail,* main,True,libyal_libfwsi.git,libyal/libfwsi.git,https://github.com/libyal/libfwsi.git +ab8b381769797c72dcc31713849c72730ec834c5,Russell Jones,russjones@users.noreply.github.com,2014-02-19 18:32:48-08:00,Russell Jones,russjones@users.noreply.github.com,2014-02-20 02:32:48+00:00,False,users,users,* master,True,mailgun_dnsq.git,mailgun/dnsq.git,https://github.com/mailgun/dnsq.git +0421a20937f15fd8498a59a7f32b81a4fefbe946,Takashi Iwai,tiwai@suse.de,2000-04-27 15:45:27+02:00,Takashi Iwai,tiwai@suse.de,2000-04-27 13:45:27+00:00,False,suse,suse,* master,True,tiwai_awesfx.git,tiwai/awesfx.git,https://github.com/tiwai/awesfx.git +62436cc63f3b9a6ab85614743c84fd851787df7d,Kip Hampton,khampton@totalcinema.com,2011-07-08 05:45:02-07:00,Kip Hampton,khampton@totalcinema.com,2011-07-08 12:45:02+00:00,False,totalcinema,totalcinema,* master,True,tamarou_magpie.git,tamarou/magpie.git,https://github.com/tamarou/magpie.git 2e170943ff1dcef5c638a5093d4460932c252fc4,Adrian Glaubitz,glaubitz@physik.fu-berlin.de,2011-05-09 17:08:35+02:00,Adrian Glaubitz,glaubitz@physik.fu-berlin.de,2011-05-09 15:08:35+00:00,False,physik,physik,* master,True,glaubitz_gkrellm-cpufreq-debian,glaubitz/gkrellm-cpufreq-debian,https://github.com/glaubitz/gkrellm-cpufreq-debian -e6edc67bea1deed36d74da67c7091c69e3f2e4f7,Ryan Davis,ryand@zenspider.com,2017-07-17 15:20:29-08:00,Ryan Davis,ryand@zenspider.com,2017-07-17 23:20:29+00:00,False,zenspider,zenspider,* master,True,seattlerb_ruby2ruby.git,seattlerb/ruby2ruby.git,https://github.com/seattlerb/ruby2ruby.git -b542ab445c2ac8dca684d093f74721d23b533527,Kjetil Kjernsmo,kjetil@kjernsmo.net,2016-12-29 00:41:48+01:00,Kjetil Kjernsmo,kjetil@kjernsmo.net,2016-12-28 23:41:48+00:00,False,kjernsmo,kjernsmo,* master,True,kjetilk_RDF-Helper-Properties.git,kjetilk/RDF-Helper-Properties.git,https://github.com/kjetilk/RDF-Helper-Properties.git -8b1554866fe2f822e8e61b50314947cb490de266,richardsheridan,richard.sheridan@gmail.com,2023-10-29 13:56:18-04:00,GitHub,noreply@github.com,2023-10-29 17:56:18+00:00,False,gmail,github,* main,True,python-trio_trio,python-trio/trio,https://github.com/python-trio/trio -8c8bfe198aa1838a4c7eb2e1e72a5444e9d5a8d1,Marko Kreen,markokr@gmail.com,2023-09-17 15:18:18+03:00,Marko Kreen,markokr@gmail.com,2023-09-17 15:43:11+00:00,False,gmail,gmail,* master,True,markokr_rarfile.git,markokr/rarfile.git,https://github.com/markokr/rarfile.git +ef58491616d9dea84031ea54b015426989c1c078,Ryan Davis,ryand@zenspider.com,2006-08-14 20:50:47-08:00,Ryan Davis,ryand@zenspider.com,2006-08-15 04:50:47+00:00,False,zenspider,zenspider,* master,True,seattlerb_ruby2ruby.git,seattlerb/ruby2ruby.git,https://github.com/seattlerb/ruby2ruby.git +ae5d5380ef8f706fb6be2cc2e376b7022b9ded3e,Kjetil Kjernsmo,kjetil@startsiden.no,2010-08-18 12:39:06+02:00,Kjetil Kjernsmo,kjetil@startsiden.no,2010-08-18 10:39:06+00:00,False,startsiden,startsiden,* master,True,kjetilk_RDF-Helper-Properties.git,kjetilk/RDF-Helper-Properties.git,https://github.com/kjetilk/RDF-Helper-Properties.git +59931ee9ba63eb5469a08cdf1e78f7b84f4253bb,Nathaniel J. Smith,njs@pobox.com,2017-01-10 22:02:52-08:00,Nathaniel J. Smith,njs@pobox.com,2017-01-11 06:02:52+00:00,False,pobox,pobox,* main,True,python-trio_trio,python-trio/trio,https://github.com/python-trio/trio +975dbbcddd9a6c7b09358fae718e3eb7f42a589f,Marko Kreen,markokr@gmail.com,2005-12-12 18:08:01+00:00,Marko Kreen,markokr@gmail.com,2005-12-12 18:08:01+00:00,False,gmail,gmail,* master,True,markokr_rarfile.git,markokr/rarfile.git,https://github.com/markokr/rarfile.git 0f541f62d937574355178a82e88fdc9826468563,Sudip Mukherjee,sudipm.mukherjee@gmail.com,2019-11-01 18:08:40+00:00,Sudip Mukherjee,sudipm.mukherjee@gmail.com,2019-11-12 21:58:25+00:00,False,gmail,gmail,* master,True,sudipm-mukherjee_systune.git,sudipm-mukherjee/systune.git,https://github.com/sudipm-mukherjee/systune.git -1e5a2e6bf1ec012fdaa7883a5e7843c968682a40,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-10-22 03:34:50+03:00,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-10-22 00:34:50+00:00,False,ionelmc,ionelmc,* master,True,ionelmc_python-tblib,ionelmc/python-tblib,https://github.com/ionelmc/python-tblib -ec5f4168f5242d9b759f4b599b2e841bc47d6a80,Joachim Metz,joachim.metz@gmail.com,2021-08-01 19:24:40+02:00,Joachim Metz,joachim.metz@gmail.com,2021-08-01 17:24:40+00:00,False,gmail,gmail,* main,True,libyal_libmsiecf.git,libyal/libmsiecf.git,https://github.com/libyal/libmsiecf.git -313d06b0eac0541ad6bde3cb0e3effc0a9e6b5ce,Jason Madden,jamadden@gmail.com,2023-10-25 06:09:03-05:00,Jason Madden,jamadden@gmail.com,2023-10-25 11:09:03+00:00,False,gmail,gmail,* master,True,python-greenlet_greenlet,python-greenlet/greenlet,https://github.com/python-greenlet/greenlet -0328360adc12d73829495627b777492db6918f2b,Stefan Tomanek,stefan.tomanek@wertarbyte.de,2016-08-17 19:58:48+02:00,Stefan Tomanek,stefan.tomanek@wertarbyte.de,2016-08-17 17:58:48+00:00,False,wertarbyte,wertarbyte,* master,True,wertarbyte_triggerhappy,wertarbyte/triggerhappy,https://github.com/wertarbyte/triggerhappy -7288913b2083cbdd49a7e98cfe8f77c6978d7f2b,Aaron Patterson,aaron.patterson@gmail.com,2009-10-21 21:36:15-07:00,Aaron Patterson,aaron.patterson@gmail.com,2009-10-22 04:36:15+00:00,False,gmail,gmail,* master,True,gitlab-org_mmap2,gitlab-org/mmap2,https://gitlab.com/gitlab-org/mmap2 -d2097871953a10723ec3f6da25edc33b873c8feb,Daniel Nephin,dnephin@gmail.com,2022-09-03 14:58:18-04:00,GitHub,noreply@github.com,2022-09-03 18:58:18+00:00,True,gmail,github,* main,True,dnephin_PyStaticConfiguration,dnephin/PyStaticConfiguration,https://github.com/dnephin/PyStaticConfiguration -6e91622a4c6e7a84a5d722462dea21b08b478dab,Rolf Leggewie,foss@rolf.leggewie.biz,2018-04-17 15:16:55+08:00,Rolf Leggewie,foss@rolf.leggewie.biz,2018-04-17 08:00:21+00:00,False,rolf,rolf,* master,True,leggewie-DM_n2n,leggewie-DM/n2n,https://github.com/leggewie-DM/n2n -8286ad85b2bfcd3897c87150df6fdfdb69784b18,Andreas Koenig,andk@cpan.org,2016-04-11 22:32:42+02:00,Andreas Koenig,andk@cpan.org,2016-04-11 20:32:42+00:00,False,cpan,cpan,* master,True,andk_devel-symdump,andk/devel-symdump,https://github.com/andk/devel-symdump -e9294fe37ce5821ec98fa9d2a0f2637095ddc6da,Ilgaz Öcal,ilgaz@ilgaz.gen.tr,2023-12-19 15:20:59+03:00,GitHub,noreply@github.com,2023-12-19 12:20:59+00:00,False,ilgaz,github,* master,True,linuxmint_cinnamon.git,linuxmint/cinnamon.git,https://github.com/linuxmint/cinnamon.git -683389117fc07e6b8a7c19d5298dc41cf82b17c5,Andrey Kislyuk,kislyuk@gmail.com,2023-07-27 16:44:23-07:00,GitHub,noreply@github.com,2023-07-27 23:44:23+00:00,False,gmail,github,* main,True,pyauth_pyotp.git,pyauth/pyotp.git,https://github.com/pyauth/pyotp.git -14a7bb6aa62f5762e2ce12dcb0006f19055b3ccc,Jonathan Huot,JonathanHuot@users.noreply.github.com,2024-01-06 21:47:13+01:00,GitHub,noreply@github.com,2024-01-06 20:47:13+00:00,True,users,github,* master,True,oauthlib_oauthlib,oauthlib/oauthlib,https://github.com/oauthlib/oauthlib -44e7173219c30de3676110dc6ce5beea9e03cc33,Davide Gessa (dakk),gessadavide@gmail.com,2021-08-11 17:10:05+02:00,Davide Gessa (dakk),gessadavide@gmail.com,2021-08-11 15:10:05+00:00,False,gmail,gmail,* master,True,dakk_FreeAlchemist,dakk/FreeAlchemist,https://github.com/dakk/FreeAlchemist -fddea9425a4ffe2069587377084f731ce7bc63b9,Mike Taylor,bear@circleci.com,2021-12-19 12:46:21-05:00,GitHub,noreply@github.com,2021-12-19 17:46:21+00:00,True,circleci,github,* master,True,bear_python-twitter.git,bear/python-twitter.git,https://github.com/bear/python-twitter.git -ceaed9338a1d43120ed21cea6fd914306fa8b1ee,Dmitry Tokarev,dmitrytokarev@users.noreply.github.com,2019-09-12 12:06:04-07:00,Alex Gaynor,alex.gaynor@gmail.com,2019-09-12 19:09:53+00:00,False,users,gmail,* master,True,alex_pretend,alex/pretend,https://github.com/alex/pretend -204b5a8d8caace4385a075ae7d3f13920a9fa6b3,Reini Urban,rurban@cpan.org,2022-08-16 11:00:32+02:00,Reini Urban,rurban@cpan.org,2022-08-16 20:37:21+00:00,False,cpan,cpan,* master,True,rurban_Filter,rurban/Filter,https://github.com/rurban/Filter -ee0da46af05d73a1b457f8a94c247fa27f27fdc7,Karen Etheridge,ether@cpan.org,2019-04-14 11:20:19-07:00,Karen Etheridge,ether@cpan.org,2019-04-14 18:20:19+00:00,False,cpan,cpan,* master,True,karenetheridge_B-Hooks-Parser.git,karenetheridge/B-Hooks-Parser.git,https://github.com/karenetheridge/B-Hooks-Parser.git -385d6017d5857e16ba10bfcb5b4fc0fe58fa3447,tison,wander4096@gmail.com,2023-03-10 09:51:37+08:00,GitHub,noreply@github.com,2023-03-10 01:51:37+00:00,False,gmail,github,* master,True,apache_curator.git,apache/curator.git,https://github.com/apache/curator.git -6425463faed78363c946a105bec3ba780db5c5b9,Andrew Svetlov,andrew.svetlov@gmail.com,2018-03-01 15:18:32+02:00,GitHub,noreply@github.com,2018-03-01 13:18:32+00:00,False,gmail,github,* master,True,aio-libs_aiohttp-cors.git,aio-libs/aiohttp-cors.git,https://github.com/aio-libs/aiohttp-cors.git -6672c1d57ce9872454c608c8a857f63e1d0b82ef,Mark G,mark.gensler@protonmail.com,2023-06-19 20:59:28+01:00,GitHub,noreply@github.com,2023-06-19 19:59:28+00:00,False,protonmail,github,* master,True,AndrewIngram_django-extra-views,AndrewIngram/django-extra-views,https://github.com/AndrewIngram/django-extra-views +bf5dd770120acde9eacb502d39ed63ee2997e564,Ionel Cristian Mărieș,contact@ionelmc.ro,2013-12-31 02:07:24+02:00,Ionel Cristian Mărieș,contact@ionelmc.ro,2013-12-31 00:07:24+00:00,False,ionelmc,ionelmc,* master,True,ionelmc_python-tblib,ionelmc/python-tblib,https://github.com/ionelmc/python-tblib +b3c3194d1d4629432af13a574cf5e18be8fca90d,Joachim Metz,joachim.metz@gmail.com,2014-03-17 06:58:12+01:00,Joachim Metz,joachim.metz@gmail.com,2014-03-17 05:58:12+00:00,False,gmail,gmail,* main,True,libyal_libmsiecf.git,libyal/libmsiecf.git,https://github.com/libyal/libmsiecf.git +c7f33e537f409107ec33ca277f2d584e68f3df54,bob@16b7edcf-4bd7-0310-b1c2-f8d8cf7ab505,bob@16b7edcf-4bd7-0310-b1c2-f8d8cf7ab505,2006-01-10 02:27:55+00:00,bob@16b7edcf-4bd7-0310-b1c2-f8d8cf7ab505,bob@16b7edcf-4bd7-0310-b1c2-f8d8cf7ab505,2006-01-10 02:27:55+00:00,False,16b7edcf-4bd7-0310-b1c2-f8d8cf7ab505,16b7edcf-4bd7-0310-b1c2-f8d8cf7ab505,* master,True,python-greenlet_greenlet,python-greenlet/greenlet,https://github.com/python-greenlet/greenlet +5b6f364f8517be7a34faef8f39eee6908e783004,Stefan Tomanek,stefan.tomanek@wertarbyte.de,2010-09-28 11:25:12+02:00,Stefan Tomanek,stefan.tomanek@wertarbyte.de,2010-09-28 09:25:12+00:00,False,wertarbyte,wertarbyte,* master,True,wertarbyte_triggerhappy,wertarbyte/triggerhappy,https://github.com/wertarbyte/triggerhappy +660ba64fd3bdd6b593252e8b81fe6130f9316ac7,Aaron Patterson,aaron.patterson@gmail.com,2009-10-08 12:53:44-07:00,Aaron Patterson,aaron.patterson@gmail.com,2009-10-08 19:53:44+00:00,False,gmail,gmail,* master,True,gitlab-org_mmap2,gitlab-org/mmap2,https://gitlab.com/gitlab-org/mmap2 +d9314e752f9d83a35c941ac018b6c919eadd8356,Daniel Nephin,dnephin@gmail.com,2012-07-20 16:22:58-07:00,Daniel Nephin,dnephin@gmail.com,2012-07-20 23:22:58+00:00,False,gmail,gmail,* main,True,dnephin_PyStaticConfiguration,dnephin/PyStaticConfiguration,https://github.com/dnephin/PyStaticConfiguration +ce56f3183d9b98552f7e5abb7dc8b4eb8b3fe5ce,cristian paul peñaranda rojas,kristian.paul@gmail.com,2008-11-29 00:31:58-05:00,root,root@Rie,2012-07-21 05:12:26+00:00,False,gmail,Rie,* master,True,leggewie-DM_n2n,leggewie-DM/n2n,https://github.com/leggewie-DM/n2n +257ec43a73ce6697888974669c7bc2124489cc15,k,k@46ba2471-b208-0410-975e-eefba8006f10,2005-12-25 03:59:41+00:00,k,k@46ba2471-b208-0410-975e-eefba8006f10,2005-12-25 03:59:41+00:00,False,46ba2471-b208-0410-975e-eefba8006f10,46ba2471-b208-0410-975e-eefba8006f10,* master,True,andk_devel-symdump,andk/devel-symdump,https://github.com/andk/devel-symdump +4f16f79b3684dbba9b76168101965c53419ca38f,Clement Lefebvre,clement.lefebvre@linuxmint.com,2011-12-11 03:30:58+00:00,Clement Lefebvre,clement.lefebvre@linuxmint.com,2011-12-11 03:30:58+00:00,False,linuxmint,linuxmint,* master,True,linuxmint_cinnamon.git,linuxmint/cinnamon.git,https://github.com/linuxmint/cinnamon.git +b06037fb9fc03bd652a7cb5ce748247677c908c0,Mark Percival,mark@mpercival.com,2011-02-13 13:09:52-08:00,Mark Percival,mark@mpercival.com,2011-02-13 21:09:52+00:00,False,mpercival,mpercival,* main,True,pyauth_pyotp.git,pyauth/pyotp.git,https://github.com/pyauth/pyotp.git +a635e2afac970e3d5de0e4ce9c0ec24a7a5a1ae6,Idan Gazit,idan@gazit.me,2011-11-20 01:06:01+02:00,Idan Gazit,idan@gazit.me,2011-11-19 23:06:01+00:00,False,gazit,gazit,* master,True,oauthlib_oauthlib,oauthlib/oauthlib,https://github.com/oauthlib/oauthlib +7a48b2cd2f7a7cc828b79f3853bbb022ee750d33,dak,dak@gentoo-eee.(none),2011-10-17 10:46:31+00:00,dak,dak@gentoo-eee.(none),2011-10-17 10:46:31+00:00,False,gentoo-eee,gentoo-eee,* master,True,dakk_FreeAlchemist,dakk/FreeAlchemist,https://github.com/dakk/FreeAlchemist +56326248ba27ec24fb87d28616cf471247103722,Mike Taylor,bear42@gmail.com,2012-09-11 23:51:02-07:00,Mike Taylor,bear42@gmail.com,2012-09-12 06:51:02+00:00,False,gmail,gmail,* master,True,bear_python-twitter.git,bear/python-twitter.git,https://github.com/bear/python-twitter.git +7f9961991c9a19168d685ceb11ea25afa3dca4b5,Alex Gaynor,alex.gaynor@rd.io,2012-11-07 18:57:13-08:00,Alex Gaynor,alex.gaynor@rd.io,2012-11-08 02:57:13+00:00,False,rd,rd,* master,True,alex_pretend,alex/pretend,https://github.com/alex/pretend +92c23805ec0bc2d0db21556fbdf115030ab6d512,Paul Marquess,pmqs@cpan.org,1995-12-11 15:04:38-08:00,Michael G. Schwern,schwern@pobox.com,2009-12-11 22:11:39+00:00,False,cpan,pobox,* master,True,rurban_Filter,rurban/Filter,https://github.com/rurban/Filter +5f1e47afcb524803f71f600b6a1edbfe40f6796f,Karen Etheridge,ether@cpan.org,2015-06-06 13:55:06-07:00,Karen Etheridge,ether@cpan.org,2015-06-06 20:55:06+00:00,False,cpan,cpan,* master,True,karenetheridge_B-Hooks-Parser.git,karenetheridge/B-Hooks-Parser.git,https://github.com/karenetheridge/B-Hooks-Parser.git +1210055007a144e6b7f7e384afa26d0aa5031821,Jordan Zimmerman,jzimmerman@netflix.com,2011-07-15 13:48:34-07:00,Jordan Zimmerman,jzimmerman@netflix.com,2011-07-15 20:48:34+00:00,False,netflix,netflix,* master,True,apache_curator.git,apache/curator.git,https://github.com/apache/curator.git +5310d4eed167451332262e209fe184af235e4a0f,Andrew Svetlov,andrew.svetlov@gmail.com,2015-09-23 21:58:40+03:00,Andrew Svetlov,andrew.svetlov@gmail.com,2015-09-23 18:58:40+00:00,False,gmail,gmail,* master,True,aio-libs_aiohttp-cors.git,aio-libs/aiohttp-cors.git,https://github.com/aio-libs/aiohttp-cors.git +6229fbc10ae7aa05305f4b61c3d764b2d6562ed5,Andrew Ingram,andy@andrewingram.net,2011-05-16 22:51:32+01:00,Andrew Ingram,andy@andrewingram.net,2011-05-16 21:51:32+00:00,False,andrewingram,andrewingram,* master,True,AndrewIngram_django-extra-views,AndrewIngram/django-extra-views,https://github.com/AndrewIngram/django-extra-views 68ae9d4791853e956dd51df3026abc58a71d42ba,Andreas Granig,agranig@sipwise.com,2014-01-13 13:55:36+01:00,Andreas Granig,agranig@sipwise.com,2014-01-13 12:55:36+00:00,False,sipwise,sipwise,* master,True,sipwise_data-hal.git,sipwise/data-hal.git,https://github.com/sipwise/data-hal.git -8497d94708ae3a699a9159a5b3dfa29cf2183177,Bill Cox,waywardgeek@google.com,2017-05-07 07:24:29-07:00,Bill Cox,waywardgeek@google.com,2017-05-07 14:24:29+00:00,False,google,google,* master,True,waywardgeek_sonic,waywardgeek/sonic,https://github.com/waywardgeek/sonic -b758aa10adad162b9e9e231e6a9f6af7e341562c,Steven Silvester,steven.silvester@ieee.org,2023-10-15 08:35:02-05:00,GitHub,noreply@github.com,2023-10-15 13:35:02+00:00,False,ieee,github,* main,True,jupyter_nbconvert,jupyter/nbconvert,https://github.com/jupyter/nbconvert -52f3c228ddb367adc43b1b22bf96cf98651b2758,Phil Dibowitz,phil@ipom.com,2024-01-11 23:40:12-08:00,GitHub,noreply@github.com,2024-01-12 07:40:12+00:00,False,ipom,github,* main,True,jaymzh_concordance.git,jaymzh/concordance.git,https://github.com/jaymzh/concordance.git -2e4f6d01abed9410c9084c47c0110e97df605e7e,Jason R. Coombs,jaraco@jaraco.com,2024-02-08 12:43:22-05:00,Jason R. Coombs,jaraco@jaraco.com,2024-02-08 17:43:22+00:00,True,jaraco,jaraco,* main,True,jazzband_inflect.git,jazzband/inflect.git,https://github.com/jazzband/inflect.git -35a05e6c6d195a8e863a3bbf8114e30d13b919ef,Erik Tollerud,erik.tollerud@gmail.com,2020-12-01 16:05:41-05:00,GitHub,noreply@github.com,2020-12-01 21:05:41+00:00,False,gmail,github,* master,True,astropy_montage-wrapper,astropy/montage-wrapper,https://github.com/astropy/montage-wrapper -6d8241e00ae35643ebc4efccc0079dd5ae6f9ee0,INACHI Minoru,minoru.inachi@gmail.com,2021-03-20 11:19:05+09:00,INACHI Minoru,minoru.inachi@gmail.com,2021-03-20 02:19:05+00:00,True,gmail,gmail,* master,True,mu-editor_mu,mu-editor/mu,https://github.com/mu-editor/mu -7fd29f2034bee437f68bda619f2e6d819adfb7c2,Benoit Chesneau,bchesneau@gmail.com,2020-04-07 00:52:21+02:00,Benoit Chesneau,bchesneau@gmail.com,2020-04-06 22:52:21+00:00,False,gmail,gmail,* master,True,benoitc_http-parser,benoitc/http-parser,https://github.com/benoitc/http-parser -c569765777a77994942ffa66534d8476c7af827d,Florian Jetter,fjetter@users.noreply.github.com,2024-03-11 10:31:00+01:00,GitHub,noreply@github.com,2024-03-11 09:31:00+00:00,False,users,github,* main,True,dask_dask,dask/dask,https://github.com/dask/dask -af41991f17445e4cb26d39c247f091ddfd7027b9,Laurent Mazuel,laurent.mazuel@gmail.com,2022-11-08 14:12:47-08:00,GitHub,noreply@github.com,2022-11-08 22:12:47+00:00,False,gmail,github,* master,True,Azure_msrest-for-python,Azure/msrest-for-python,https://github.com/Azure/msrest-for-python +9e7f1ae812b33637eab9a88d3c5e86b3dc598bb1,Bill Cox,waywardgeek@gmail.com,2010-11-04 09:19:09-04:00,Bill Cox,waywardgeek@gmail.com,2010-11-04 13:19:09+00:00,False,gmail,gmail,* master,True,waywardgeek_sonic,waywardgeek/sonic,https://github.com/waywardgeek/sonic +8a95fec25ed7970ccf39eb8d693970a72296cf46,Matthias BUSSONNIER,bussonniermatthias@gmail.com,2013-01-22 09:47:28+01:00,Matthias BUSSONNIER,bussonniermatthias@gmail.com,2013-01-22 08:47:28+00:00,False,gmail,gmail,* main,True,jupyter_nbconvert,jupyter/nbconvert,https://github.com/jupyter/nbconvert +eef860e4664fe4eac2f1f237c1009c28b9d632a1,Phil Dibowitz,phil@ipom.com,2007-07-23 20:10:12+00:00,Phil Dibowitz,phil@ipom.com,2007-07-23 20:10:12+00:00,False,ipom,ipom,* main,True,jaymzh_concordance.git,jaymzh/concordance.git,https://github.com/jaymzh/concordance.git +e0b5db9aedf81315c2259ddd1fae3045be34a9f8,Paul Dyson,pwdyson@yahoo.com,2010-06-19 09:34:18+10:00,Paul Dyson,pwdyson@yahoo.com,2010-06-18 23:34:18+00:00,False,yahoo,yahoo,* main,True,jazzband_inflect.git,jazzband/inflect.git,https://github.com/jazzband/inflect.git +c0bf56247fd06bfa597870301094d4e75a6e2709,astrofrog,thomas.robitaille@gmail.com,2009-12-30 21:46:08+00:00,astrofrog,thomas.robitaille@gmail.com,2009-12-30 21:46:08+00:00,False,gmail,gmail,* master,True,astropy_montage-wrapper,astropy/montage-wrapper,https://github.com/astropy/montage-wrapper +98f4ea0ba1e5fe44a6378bece7fa92db0a50354f,Nicholas H.Tollervey,ntoll@ntoll.org,2015-12-07 20:05:51+00:00,Nicholas H.Tollervey,ntoll@ntoll.org,2015-12-07 20:05:51+00:00,False,ntoll,ntoll,* master,True,mu-editor_mu,mu-editor/mu,https://github.com/mu-editor/mu +fce754a87b09f7fb58865a9c66548ef3f52464c1,benoitc,benoitc@gmail.com,2011-04-14 17:52:39+02:00,benoitc,benoitc@gmail.com,2011-04-14 15:52:39+00:00,False,gmail,gmail,* master,True,benoitc_http-parser,benoitc/http-parser,https://github.com/benoitc/http-parser +23bce271c30eb8c3737394fd0afd9da68ef84334,Matthew Rocklin,mrocklin@gmail.com,2015-01-04 10:24:17-08:00,Matthew Rocklin,mrocklin@gmail.com,2015-01-04 18:24:17+00:00,False,gmail,gmail,* main,True,dask_dask,dask/dask,https://github.com/dask/dask +1110fb394bd5dceeda0b8b3054f83b466b5e3b5f,Laurent Mazuel,lmazuel@microsoft.com,2016-10-17 16:01:48-07:00,Laurent Mazuel,lmazuel@microsoft.com,2016-10-17 23:01:48+00:00,False,microsoft,microsoft,* master,True,Azure_msrest-for-python,Azure/msrest-for-python,https://github.com/Azure/msrest-for-python 9cf06f7a23776c14d855b321c88fb2c6f421accc,Jason Smith,jason@t500,2009-07-17 02:52:52-04:00,Jason Smith,jason@t500,2009-07-17 06:52:52+00:00,False,t500,t500,* master,True,bamf,bamf,https://git.launchpad.net/bamf -6d030eb588d791717e20d7e4437193098aabeb8a,John Goerzen,jgoerzen@complete.org,2014-02-13 01:12:09-06:00,John Goerzen,jgoerzen@complete.org,2014-02-13 07:12:09+00:00,False,complete,complete,* master,True,jgoerzen_simplesnap,jgoerzen/simplesnap,https://github.com/jgoerzen/simplesnap -3b960852e5b9f1484256129268b140eaf3d188ef,Santiago Lezica,slezica89@gmail.com,2016-07-22 14:59:46-03:00,GitHub,noreply@github.com,2016-07-22 17:59:46+00:00,True,gmail,github,* master,True,slezica_python-frozendict.git,slezica/python-frozendict.git,https://github.com/slezica/python-frozendict.git +3b27b0594cdcfea2bdc161439d48d333448b7e2c,John Goerzen,jgoerzen@complete.org,2014-02-10 03:48:16-06:00,John Goerzen,jgoerzen@complete.org,2014-02-10 09:48:16+00:00,False,complete,complete,* master,True,jgoerzen_simplesnap,jgoerzen/simplesnap,https://github.com/jgoerzen/simplesnap +36213e67c56968bef51b9e41fd697f53f6259043,Santiago Lezica,slezica89@gmail.com,2012-12-07 19:42:20-03:00,Santiago Lezica,slezica89@gmail.com,2012-12-07 22:42:20+00:00,False,gmail,gmail,* master,True,slezica_python-frozendict.git,slezica/python-frozendict.git,https://github.com/slezica/python-frozendict.git 61354406c1f0670150fd1f30822dae017dfdf291,MSERGEANT,msergeant@cpan.org,2004-08-09 07:44:14-08:00,Michael G. Schwern,schwern@pobox.com,2009-12-11 20:34:57+00:00,False,cpan,pobox,* master,True,rurban_DBD-SQLite2,rurban/DBD-SQLite2,https://github.com/rurban/DBD-SQLite2 -e6b6b032bd5692cc2b386e8b9fd3a0853cfb4ff1,Lennart Regebro,regebro@gmail.com,2022-04-14 13:56:58+02:00,Lennart Regebro,regebro@gmail.com,2022-04-14 11:56:58+00:00,False,gmail,gmail,* master,True,regebro_hovercraft,regebro/hovercraft,https://github.com/regebro/hovercraft -de7d011b35458de1472665f50b96c9cf6c303f39,Barnabás Pőcze,65779826+pobrn@users.noreply.github.com,2021-01-30 01:43:42+01:00,GitHub,noreply@github.com,2021-01-30 00:43:42+00:00,False,users,github,* master,True,pobrn_mktorrent,pobrn/mktorrent,https://github.com/pobrn/mktorrent -13c8c333d759b4c5c4b5e8ad0ef16b7c71d56b52,Ben Hoyt,benhoyt@gmail.com,2021-02-27 20:50:33+13:00,Ben Hoyt,benhoyt@gmail.com,2021-02-27 07:50:33+00:00,False,gmail,gmail,* master,True,benhoyt_scandir,benhoyt/scandir,https://github.com/benhoyt/scandir -fc154b550e516f159e20585a0adee82500204399,Ronald Oussoren,ronaldoussoren@mac.com,2023-09-25 11:03:39+02:00,Ronald Oussoren,ronaldoussoren@mac.com,2023-09-25 09:03:39+00:00,False,mac,mac,* master,True,ronaldoussoren_altgraph,ronaldoussoren/altgraph,https://github.com/ronaldoussoren/altgraph -3b0ac96dd34e8a35f538af7d9c99ccc1e59f04da,Jeremy Evans,code@jeremyevans.net,2022-06-23 15:37:18-07:00,Jeremy Evans,code@jeremyevans.net,2022-06-23 22:37:18+00:00,False,jeremyevans,jeremyevans,* master,True,jeremyevans_minitest-shared_description,jeremyevans/minitest-shared/description,https://github.com/jeremyevans/minitest-shared_description -80cac93c28e318ff3fa0bcce57d9675a8ea0d958,Corbin Simpson,cds@corbinsimpson.com,2014-05-22 15:45:46-07:00,Corbin Simpson,cds@corbinsimpson.com,2014-05-22 22:45:46+00:00,False,corbinsimpson,corbinsimpson,* master,True,MostAwesomeDude_txWS,MostAwesomeDude/txWS,https://github.com/MostAwesomeDude/txWS -6ac6e86a6e3559eaf05ec949ab1708abc059199c,James E Keenan,jkeenan@cpan.org,2017-10-26 19:40:54-04:00,James E Keenan,jkeenan@cpan.org,2017-10-26 23:40:54+00:00,False,cpan,cpan,* master,True,jkeenan_file-save-home,jkeenan/file-save-home,https://github.com/jkeenan/file-save-home -03130ea94ab838bb22be751dcae75d27db82830c,Jakub Nowacki,j.s.nowacki@gmail.com,2012-02-08 20:43:01+00:00,Jakub Nowacki,j.s.nowacki@gmail.com,2012-02-08 20:43:01+00:00,True,gmail,gmail,* master,True,neurodebian_pkg-xppaut,neurodebian/pkg-xppaut,https://github.com/neurodebian/pkg-xppaut -2412cf6d78436ec29412b81c47d0ed746089b2cc,Sergey Ilinykh,rion4ik@gmail.com,2021-12-21 09:13:02+03:00,GitHub,noreply@github.com,2021-12-21 06:13:02+00:00,True,gmail,github,* master,True,psi-im_psi-l10n.git,psi-im/psi-l10n.git,https://github.com/psi-im/psi-l10n.git -dc26d3cb8d6996a42b882a7183bacd7f667edc53,Hugo Osvaldo Barrera,hugo@barrera.io,2021-08-04 21:21:21+02:00,Hugo Osvaldo Barrera,hugo@barrera.io,2021-08-04 19:21:21+00:00,False,barrera,barrera,* main,True,hobarrera_sphinx-autorun,hobarrera/sphinx-autorun,https://github.com/hobarrera/sphinx-autorun -fb86d338a3706e6e0ede09170b9fa58fb740ec1e,Alan Hamlett,alanhamlett@users.noreply.github.com,2023-09-14 10:15:39+03:00,GitHub,noreply@github.com,2023-09-14 07:15:39+00:00,True,users,github,* master,True,JazzCore_python-pdfkit,JazzCore/python-pdfkit,https://github.com/JazzCore/python-pdfkit -25370311ccac722e59a6e4ed655b8b662787a359,Xavier Leroy,xavier.leroy@college-de-france.fr,2022-10-13 10:58:32+02:00,Xavier Leroy,xavier.leroy@college-de-france.fr,2022-10-13 08:58:32+00:00,False,college-de-france,college-de-france,* master,True,xavierleroy_camlidl,xavierleroy/camlidl,https://github.com/xavierleroy/camlidl -9923bf59dd711838405febc2977e5334304510e6,Thomas S Hatch,thatch45@gmail.com,2017-07-20 15:56:55-06:00,Thomas S Hatch,thatch45@gmail.com,2017-07-20 21:56:55+00:00,False,gmail,gmail,* master,True,saltstack_libnacl.git,saltstack/libnacl.git,https://github.com/saltstack/libnacl.git +79d8bbaa3f6fa8dc43a6da33e1f7db792aeb7e5e,Lennart Regebro,regebro@gmail.com,2013-01-28 00:02:11-08:00,Lennart Regebro,regebro@gmail.com,2013-01-28 08:02:11+00:00,False,gmail,gmail,* master,True,regebro_hovercraft,regebro/hovercraft,https://github.com/regebro/hovercraft +9b2fcf941859f32960c8f8acfcae89914a0ddcfe,Emil Renner Berthing,esmil@mailme.dk,2009-02-22 00:44:31+01:00,Emil Renner Berthing,esmil@mailme.dk,2009-02-21 23:44:31+00:00,False,mailme,mailme,* master,True,pobrn_mktorrent,pobrn/mktorrent,https://github.com/pobrn/mktorrent +2c23c7227ad353de76f544e8c1dd39d0d08dec33,Ben Hoyt,benhoyt@gmail.com,2013-05-13 20:15:15+12:00,Ben Hoyt,benhoyt@gmail.com,2013-05-13 08:15:15+00:00,False,gmail,gmail,* master,True,benhoyt_scandir,benhoyt/scandir,https://github.com/benhoyt/scandir +9eb220b476cb9be6d390265f160c0a6f5a344d90,Ronald Oussoren,ronaldoussoren@mac.com,2012-11-09 15:10:26+01:00,Ronald Oussoren,ronaldoussoren@mac.com,2012-11-09 14:10:26+00:00,False,mac,mac,* master,True,ronaldoussoren_altgraph,ronaldoussoren/altgraph,https://github.com/ronaldoussoren/altgraph +564a3757a81e1148dda8c05bf0ef90e8b36bf248,Jeremy Evans,code@jeremyevans.net,2015-05-06 10:10:54-07:00,Jeremy Evans,code@jeremyevans.net,2015-05-06 17:10:54+00:00,False,jeremyevans,jeremyevans,* master,True,jeremyevans_minitest-shared_description,jeremyevans/minitest-shared/description,https://github.com/jeremyevans/minitest-shared_description +defada04defb3996f7f6dd24893fffda161f5724,Corbin Simpson,simpsoco@osuosl.org,2011-09-21 15:07:36-07:00,Corbin Simpson,simpsoco@osuosl.org,2011-09-21 22:07:36+00:00,False,osuosl,osuosl,* master,True,MostAwesomeDude_txWS,MostAwesomeDude/txWS,https://github.com/MostAwesomeDude/txWS +96f8b23251573a7bb58e8ef11b63ba3080024a93,jimk,jimk@07862939-d7ef-0310-b512-86c215e7314a,2005-10-31 14:59:39+00:00,jimk,jimk@07862939-d7ef-0310-b512-86c215e7314a,2005-10-31 14:59:39+00:00,False,07862939-d7ef-0310-b512-86c215e7314a,07862939-d7ef-0310-b512-86c215e7314a,* master,True,jkeenan_file-save-home,jkeenan/file-save-home,https://github.com/jkeenan/file-save-home +8b4a39ca2d055a8b004187339c3ecbef640acfca,Yaroslav Halchenko,debian@onerussian.com,2011-08-30 14:05:19+02:00,Yaroslav Halchenko,debian@onerussian.com,2011-08-30 12:05:19+00:00,False,onerussian,onerussian,* master,True,neurodebian_pkg-xppaut,neurodebian/pkg-xppaut,https://github.com/neurodebian/pkg-xppaut +d71a6dd88cfeac81b14c3bf23edf733c49e8cb83,Justin Karneges,justin@affinix.com,2012-09-11 16:51:39-07:00,Justin Karneges,justin@affinix.com,2012-09-11 23:51:39+00:00,False,affinix,affinix,* master,True,psi-im_psi-l10n.git,psi-im/psi-l10n.git,https://github.com/psi-im/psi-l10n.git +1b76446494192b6cd945f47c90016e9d7e18eeaf,Vadim Gubergrits,vadim.gubergrits@gmail.com,2010-03-04 23:37:43-05:00,Vadim Gubergrits,vadim.gubergrits@gmail.com,2010-03-05 04:37:43+00:00,False,gmail,gmail,* main,True,hobarrera_sphinx-autorun,hobarrera/sphinx-autorun,https://github.com/hobarrera/sphinx-autorun +ea68662ac66aec856321cbddcabea524199b8d83,Stanislav Golovanov,stgolovanov@gmail.com,2013-01-07 20:34:34+04:00,Stanislav Golovanov,stgolovanov@gmail.com,2013-01-07 16:34:34+00:00,False,gmail,gmail,* master,True,JazzCore_python-pdfkit,JazzCore/python-pdfkit,https://github.com/JazzCore/python-pdfkit +00f24cd89bff5748060d3238cddc60b3ebb19201,Xavier Leroy,xavierleroy@users.noreply.github.com,1999-02-22 17:42:24+00:00,Xavier Leroy,xavierleroy@users.noreply.github.com,1999-02-22 17:42:24+00:00,False,users,users,* master,True,xavierleroy_camlidl,xavierleroy/camlidl,https://github.com/xavierleroy/camlidl +b7ebd97b79268ed6ed7a83aecc70f36e1210742a,Thomas S Hatch,thatch45@gmail.com,2014-05-27 16:39:13-06:00,Thomas S Hatch,thatch45@gmail.com,2014-05-27 22:39:13+00:00,False,gmail,gmail,* master,True,saltstack_libnacl.git,saltstack/libnacl.git,https://github.com/saltstack/libnacl.git a0865a82fb2b3fbd6172a9b4116070167ba1ae1a,gfx,gfuji@cpan.org,2009-07-26 10:42:39+09:00,gfx,gfuji@cpan.org,2009-07-26 01:42:39+00:00,False,cpan,cpan,* master,True,gfx_Perl-Module-Install-XSUtil.git,gfx/Perl-Module-Install-XSUtil.git,https://github.com/gfx/Perl-Module-Install-XSUtil.git -49da89effe275b736ad64497d4b31305d2d9f717,hakaishi,hakaishi@web.de,2021-09-09 22:34:04+09:00,hakaishi,hakaishi@web.de,2021-09-09 13:34:04+00:00,True,web,web,* master,True,hakaishi_shutdown-qapps,hakaishi/shutdown-qapps,https://github.com/hakaishi/shutdown-qapps -5ab8b7e8f5000e07c3c1524eb2c0c6f117f58975,TW,tw@waldmann-edv.de,2023-09-25 17:29:15+02:00,GitHub,noreply@github.com,2023-09-25 15:29:15+00:00,True,waldmann-edv,github,* master,True,python-llfuse_python-llfuse.git,python-llfuse/python-llfuse.git,https://github.com/python-llfuse/python-llfuse.git -697b27f0c00f26e3a9c4e482005c3a2518a74622,Venelin Stoykov,vkstoykov@gmail.com,2023-09-28 03:26:09+03:00,Venelin Stoykov,vkstoykov@gmail.com,2023-09-28 00:26:09+00:00,True,gmail,gmail,* develop,True,matthewwithanm_django-imagekit.git,matthewwithanm/django-imagekit.git,https://github.com/matthewwithanm/django-imagekit.git -1e58adda9397500d89b4521c90aa06e6a511cef6,Roy Hyunjin Han,rhh@crosscompute.com,2017-09-05 23:20:01+00:00,Roy Hyunjin Han,rhh@crosscompute.com,2017-09-05 23:20:01+00:00,False,crosscompute,crosscompute,* master,True,invisibleroads_socketIO-client,invisibleroads/socketIO-client,https://github.com/invisibleroads/socketIO-client -a93ad47f66c63beb00584fd2188867bd9e5931b5,Adrian Lopez,adrianlopezroche@gmail.com,2024-01-27 16:50:19-04:00,Adrian Lopez,adrianlopezroche@gmail.com,2024-01-27 20:57:52+00:00,False,gmail,gmail,* master,True,adrianlopezroche_fdupes.git,adrianlopezroche/fdupes.git,https://github.com/adrianlopezroche/fdupes.git -19a2d12fba85f8f2e7e62dd382f5cda639ac194a,Alexandr Ciornii,alexchorny@gmail.com,2013-02-21 11:26:03+02:00,Alexandr Ciornii,alexchorny@gmail.com,2013-02-21 09:26:03+00:00,False,gmail,gmail,* master,True,chorny_MLDBM.git,chorny/MLDBM.git,https://github.com/chorny/MLDBM.git +88e651ab66ac5b0afc6264c517c3d3684cea7421,Christian Metscher,hakaishi@web.de,2012-01-04 02:42:28+01:00,Christian Metscher,hakaishi@web.de,2012-01-04 01:42:28+00:00,False,web,web,* master,True,hakaishi_shutdown-qapps,hakaishi/shutdown-qapps,https://github.com/hakaishi/shutdown-qapps +b939d8083d1f18f9ca018a0b7a34b591aaf4a911,Nikolaus Rath,Nikolaus@rath.org,2010-10-09 17:34:31-04:00,Nikolaus Rath,Nikolaus@rath.org,2010-10-09 21:34:31+00:00,False,rath,rath,* master,True,python-llfuse_python-llfuse.git,python-llfuse/python-llfuse.git,https://github.com/python-llfuse/python-llfuse.git +24937acd35725de508dd04d0350850c9ae42532d,jdriscoll,justin@driscolldev.com,2011-02-10 16:24:14-05:00,jdriscoll,justin@driscolldev.com,2011-02-10 21:24:14+00:00,False,driscolldev,driscolldev,* develop,True,matthewwithanm_django-imagekit.git,matthewwithanm/django-imagekit.git,https://github.com/matthewwithanm/django-imagekit.git +6a73a57bc305c47bc7c827aba74a0d23a740a7e3,Roy Hyunjin Han,starsareblueandfaraway@gmail.com,2012-04-14 12:09:14-04:00,Roy Hyunjin Han,starsareblueandfaraway@gmail.com,2012-04-14 16:09:14+00:00,False,gmail,gmail,* master,True,invisibleroads_socketIO-client,invisibleroads/socketIO-client,https://github.com/invisibleroads/socketIO-client +b94308890e5c60b3bb496fccd37036b65188727d,Adrian Lopez,adrianlopezroche@gmail.com,1999-12-25 06:13:28+01:00,Johannes Obermayr,johannesobermayr@gmx.de,1999-12-25 05:13:28+00:00,False,gmail,gmx,* master,True,adrianlopezroche_fdupes.git,adrianlopezroche/fdupes.git,https://github.com/adrianlopezroche/fdupes.git +ec62a674c0e58afab9ea76b1dd625f850b7ae17b,Gurusamy Sarathy,gsar@cpan.org,1996-01-18 23:15:18-08:00,Michael G. Schwern,schwern@pobox.com,2009-12-12 09:23:20+00:00,False,cpan,pobox,* master,True,chorny_MLDBM.git,chorny/MLDBM.git,https://github.com/chorny/MLDBM.git b6e3c55497bd6234b19925f271e101207c081282,Hong Jen Yee (PCMan),pcman.tw@gmail.com,2009-12-25 01:05:56+08:00,Hong Jen Yee (PCMan),pcman.tw@gmail.com,2009-12-24 17:05:56+00:00,False,gmail,gmail,* master,True,lxde_pcmanfm,lxde/pcmanfm,https://github.com/lxde/pcmanfm a00ed265850772032c796edf06418ad9d28a0609,Fritz Reichwald,mail@fritzreichwald.de,2018-04-19 23:10:12+02:00,Fritz Reichwald,mail@fritzreichwald.de,2018-04-19 21:10:12+00:00,False,fritzreichwald,fritzreichwald,* upstream,True,fiete201_python-pypeg2-debian,fiete201/python-pypeg2-debian,https://github.com/fiete201/python-pypeg2-debian -78bf5b92a8bad45e9defbecc4f29b2688c8ae91b,Mike McKerns,mmckerns@caltech.edu,2023-08-20 21:03:06-04:00,GitHub,noreply@github.com,2023-08-21 01:03:06+00:00,False,caltech,github,* master,True,uqfoundation_dill,uqfoundation/dill,https://github.com/uqfoundation/dill -d153c0d06be68e129cb79d0db4329058e57cfe68,Daniel Faust,hessijames@gmail.com,2017-08-29 11:28:29+02:00,Daniel Faust,hessijames@gmail.com,2017-08-29 09:28:29+00:00,True,gmail,gmail,* master,True,dfaust_soundkonverter.git,dfaust/soundkonverter.git,https://github.com/dfaust/soundkonverter.git -b22d5c76edc351c53ea8c8bd68ed479503e252d3,Bert JW Regeer,xistence@0x58.com,2020-07-05 20:51:15-07:00,GitHub,noreply@github.com,2020-07-06 03:51:15+00:00,True,0x58,github,* master,True,Pylons_pyramid_chameleon,Pylons/pyramid/chameleon,https://github.com/Pylons/pyramid_chameleon -625d038610fc98c891148e324798aedfd98c8098,Max Tepkeev,tepkeev@gmail.com,2024-03-02 18:55:48+03:00,Max Tepkeev,tepkeev@gmail.com,2024-03-02 15:55:48+00:00,False,gmail,gmail,* master,True,maxtepkeev_python-redmine.git,maxtepkeev/python-redmine.git,https://github.com/maxtepkeev/python-redmine.git -915b79a35aa11501866d3134f244500644a20e1e,Jamie Strandboge,jamie@influxdata.com,2023-07-18 16:30:08-05:00,GitHub,noreply@github.com,2023-07-18 21:30:08+00:00,True,influxdata,github,* master,True,influxdata_influxdb-python,influxdata/influxdb-python,https://github.com/influxdata/influxdb-python -981ff9136270aa8b53304f702fa4a716def84f49,liumeiyan,meiyanliu@ubuntukylin.com,2020-07-10 17:22:01+08:00,GitHub,noreply@github.com,2020-07-10 09:22:01+00:00,True,ubuntukylin,github,* master,True,ukui_ukui-themes,ukui/ukui-themes,https://github.com/ukui/ukui-themes -f141a3382dd49f53e4e86f7fd0fbcc8b5c0447f4,Alexander Pushkov,iamale@opmbx.org,2017-09-11 08:07:23+03:00,Jeff Widman,jeff@jeffwidman.com,2017-09-11 05:07:23+00:00,False,opmbx,jeffwidman,* master,True,smurfix_flask-script,smurfix/flask-script,https://github.com/smurfix/flask-script -494cfa26c4acedde19caf8d625377f5be39a8496,Vadim Misbakh-Soloviov,msva@users.noreply.github.com,2024-02-29 02:25:14+07:00,GitHub,noreply@github.com,2024-02-28 19:25:14+00:00,False,users,github,* master,True,alphallc_ruby-fcgi-ng,alphallc/ruby-fcgi-ng,https://github.com/alphallc/ruby-fcgi-ng -52f6fba1d6654a6d4f340711ce9e10daf2f7eea7,Ian Stapleton Cordasco,graffatcolmingov@gmail.com,2022-01-16 12:56:15-06:00,GitHub,noreply@github.com,2022-01-16 18:56:15+00:00,True,gmail,github,* main,True,python-hyper_uritemplate.git,python-hyper/uritemplate.git,https://github.com/python-hyper/uritemplate.git -4c3d023d3258e1792378b9e23ec4127cbce181df,David Golden,xdg@xdg.me,2017-04-02 13:43:23-04:00,David Golden,xdg@xdg.me,2017-04-02 17:43:23+00:00,False,xdg,xdg,* master,True,dagolden_class-insideout.git,dagolden/class-insideout.git,https://github.com/dagolden/class-insideout.git -31ce3f134c90b8b2eb235f771744f103a0016453,Martin Owens,doctormo@gmail.com,2023-07-13 10:54:21-04:00,Martin Owens,doctormo@gmail.com,2023-07-13 14:54:21+00:00,False,gmail,gmail,* master,True,doctormo_python-crontab,doctormo/python-crontab,https://gitlab.com/doctormo/python-crontab -b89ad1de98bf8f32f4e554a95947a252e40f8c50,Jari Aalto,jari.aalto@cante.net,2024-02-01 20:34:30+02:00,Jari Aalto,jari.aalto@cante.net,2024-02-01 18:34:30+00:00,False,cante,cante,* master,True,jaalto_project--copyright-update,jaalto/project--copyright-update,https://github.com/jaalto/project--copyright-update -0f45fd7701f7bcda834be265a063b1901ea772dd,Tom Lee,github@tomlee.co,2017-07-09 16:54:41-07:00,Tom Lee,github@tomlee.co,2017-07-09 23:54:41+00:00,True,tomlee,tomlee,* debian/master,True,thomaslee_capnproto-debian,thomaslee/capnproto-debian,https://github.com/thomaslee/capnproto-debian -29cf0f3d7c4b44e8eeb088ebdc12b115326642fc,Oliver Gorwits,oliver@cpan.org,2016-09-05 13:10:27+01:00,Oliver Gorwits,oliver@cpan.org,2016-09-05 12:10:27+00:00,False,cpan,cpan,* master,True,ollyg_Net-LDAP-FilterBuilder.git,ollyg/Net-LDAP-FilterBuilder.git,https://github.com/ollyg/Net-LDAP-FilterBuilder.git -46df7629659beb80f4ef826a9bb20585c791627f,Anthony Fu,anthonyfu117@hotmail.com,2023-12-27 16:59:15+01:00,GitHub,noreply@github.com,2023-12-27 15:59:15+00:00,False,hotmail,github,* master,True,rollup_plugins,rollup/plugins,https://github.com/rollup/plugins -1693d7c35ffae6e3486ace53cea3ff6fc732e575,rncbc,rncbc@rncbc.org,2023-09-06 19:24:15+01:00,rncbc,rncbc@rncbc.org,2023-09-06 18:24:15+00:00,False,rncbc,rncbc,* main,True,rncbc_padthv1.git,rncbc/padthv1.git,https://github.com/rncbc/padthv1.git -1fab9b24a57d42d36bd804da1f6bfaa093f73673,Zachary Ware,zachary.ware@gmail.com,2024-01-06 21:35:14-06:00,Zachary Ware,zachary.ware@gmail.com,2024-02-17 17:28:16+00:00,False,gmail,gmail,* main,True,flyingcircusio_pycountry,flyingcircusio/pycountry,https://github.com/flyingcircusio/pycountry -2d4ea52da0fa00f05dd0579d950326d10e505c34,Robert Wikman,rbw@vault13.org,2018-06-13 11:31:59+02:00,Rafael Römhild,rroemhild@users.noreply.github.com,2018-06-13 09:31:59+00:00,False,vault13,users,* master,True,rroemhild_flask-ldapconn,rroemhild/flask-ldapconn,https://github.com/rroemhild/flask-ldapconn -60b54d075f388c110a308f903feaf42fef595fdc,ek.kato,ek.kato@ff9ab193-ed19-0410-b3e9-fd3dc8ba15a0,2011-09-13 00:40:00+00:00,ek.kato,ek.kato@ff9ab193-ed19-0410-b3e9-fd3dc8ba15a0,2011-09-13 00:40:00+00:00,False,ff9ab193-ed19-0410-b3e9-fd3dc8ba15a0,ff9ab193-ed19-0410-b3e9-fd3dc8ba15a0,* master,True,uim_uim-chewing,uim/uim-chewing,https://github.com/uim/uim-chewing -ed6fccb158fca8d5c7d8ef53ec9adf8356d5d476,Christopher Allan Webber,cwebber@dustycloud.org,2015-10-28 15:50:41-05:00,Christopher Allan Webber,cwebber@dustycloud.org,2015-10-28 20:50:41+00:00,False,dustycloud,dustycloud,* master,True,w3c-social_activipy,w3c-social/activipy,https://github.com/w3c-social/activipy -3e99c38227803e74c93c19619313a83028810f6b,Nathaniel J. Smith,njs@pobox.com,2016-11-09 18:48:12-08:00,Nathaniel J. Smith,njs@pobox.com,2016-11-10 02:48:12+00:00,False,pobox,pobox,* master,True,njsmith_colorspacious.git,njsmith/colorspacious.git,https://github.com/njsmith/colorspacious.git -278a840ea5a2bd2e1f3c50f84070be023ac4003e,Andy Mikhailenko,neithere@gmail.com,2024-01-19 17:59:04+01:00,GitHub,noreply@github.com,2024-01-19 16:59:04+00:00,True,gmail,github,* master,True,neithere_argh.git,neithere/argh.git,https://github.com/neithere/argh.git -e2c1c380909421cab2b8de51ff851c0ff1b98e10,Juan Rada-Vilela,jcrada@fuzzylite.com,2024-03-04 15:06:53+11:00,GitHub,noreply@github.com,2024-03-04 04:06:53+00:00,False,fuzzylite,github,* main,True,fuzzylite_fuzzylite,fuzzylite/fuzzylite,https://github.com/fuzzylite/fuzzylite -d1b807efab6606f119e100de5c922f3c7acec40d,jenisys,jenisys@users.noreply.github.com,2023-07-01 22:12:09+02:00,jenisys,jenisys@users.noreply.github.com,2023-07-01 20:12:09+00:00,False,users,users,* main,True,jenisys_parse_type,jenisys/parse/type,https://github.com/jenisys/parse_type -319a61b6eb8fb32d7505b8f405f840c39a780a43,Brigitta Sipőcz,bsipocz@gmail.com,2022-11-08 19:28:48-08:00,GitHub,noreply@github.com,2022-11-09 03:28:48+00:00,True,gmail,github,* main,True,astropy_pytest-remotedata,astropy/pytest-remotedata,https://github.com/astropy/pytest-remotedata -0a47bfd5115c0c5e0b65d902e32baf4d3d27f02f,edzer,edzer.pebesma@uni-muenster.de,2024-03-16 13:15:57+01:00,edzer,edzer.pebesma@uni-muenster.de,2024-03-16 12:15:57+00:00,True,uni-muenster,uni-muenster,* main,True,r-spatial_sf,r-spatial/sf,https://github.com/r-spatial/sf -692e8ab2ba80f52e2d391e50f394253c383c1df9,Andreas Strikos,astrikos@ripe.net,2017-04-21 10:10:04+02:00,Andreas Strikos,astrikos@ripe.net,2017-04-21 08:10:04+00:00,False,ripe,ripe,* master,True,RIPE-NCC_ripe.atlas.sagan,RIPE-NCC/ripe.atlas.sagan,https://github.com/RIPE-NCC/ripe.atlas.sagan -6f0ac325c74a81f133418d751a4f003db7b0f5f3,Yuri D'Elia,wavexx@thregr.org,2022-12-18 23:26:04+01:00,Yuri D'Elia,wavexx@thregr.org,2022-12-18 22:26:04+00:00,False,thregr,thregr,* master,True,wavexx_fgallery,wavexx/fgallery,https://gitlab.com/wavexx/fgallery -2bbba37a49c8500de0102109602223e15afef795,Jan Schneider,jan@horde.org,2017-10-17 20:43:32+02:00,Jan Schneider,jan@horde.org,2017-10-17 18:43:32+00:00,False,horde,horde,* master,True,horde_groupware.git,horde/groupware.git,https://github.com/horde/groupware.git -40576797a25ced78fcc898ea128d2b7e542f4ec6,Erik Welch,erik.n.welch@gmail.com,2024-01-23 20:03:13-06:00,GitHub,noreply@github.com,2024-01-24 02:03:13+00:00,True,gmail,github,* master,True,pytoolz_toolz.git,pytoolz/toolz.git,https://github.com/pytoolz/toolz.git -76d5e9502d27515bcbab0d130574f2e79777524a,DC*,des@riseup.net,2019-12-18 21:51:54-03:00,GitHub,noreply@github.com,2019-12-19 00:51:54+00:00,False,riseup,github,* develop,True,zsh-users_antigen,zsh-users/antigen,https://github.com/zsh-users/antigen -24f75462dcf0e264e7e229572c7f7fc9bc1b49c4,Joshua Ulrich,josh.m.ulrich@gmail.com,2023-11-27 17:55:38-06:00,Joshua Ulrich,josh.m.ulrich@gmail.com,2023-11-27 23:55:38+00:00,False,gmail,gmail,* main,True,joshuaulrich_xts.git,joshuaulrich/xts.git,https://github.com/joshuaulrich/xts.git -20f693cbbb232ebc27733d9f1721a2cf1e7b25e3,Justin Mayer,entroP@gmail.com,2021-03-18 12:29:29+01:00,Justin Mayer,entroP@gmail.com,2021-03-18 11:29:29+00:00,False,gmail,gmail,* master,True,mintchaos_typogrify,mintchaos/typogrify,https://github.com/mintchaos/typogrify -ed0e591eba9725856612b2367a98ce7d95d5737a,Charly C,changaco@changaco.oy.lc,2023-07-04 10:03:17+02:00,GitHub,noreply@github.com,2023-07-04 08:03:17+00:00,False,changaco,github,* master,True,Changaco_python-libarchive-c.git,Changaco/python-libarchive-c.git,https://github.com/Changaco/python-libarchive-c.git -30b1eebff7510460e938560454654f90d97e03cb,Kjetil Kjernsmo,kjetil@kjernsmo.net,2016-03-07 15:03:04+01:00,Kjetil Kjernsmo,kjetil@kjernsmo.net,2016-03-07 14:03:04+00:00,False,kjernsmo,kjernsmo,* main,True,kjetilk_p5-atteanx-store-sparql.git,kjetilk/p5-atteanx-store-sparql.git,https://github.com/kjetilk/p5-atteanx-store-sparql.git -97b0a4a05f993eec21948a408b9c06e8547dfa63,E. McConville,emcconville@emcconville.com,2021-09-07 08:03:05-05:00,E. McConville,emcconville@emcconville.com,2021-09-07 13:03:05+00:00,False,emcconville,emcconville,* master,True,emcconville_wand,emcconville/wand,https://github.com/emcconville/wand -b672a6e695bc28c322b3552f1a1af8698ccb7339,Arnaud Bonatti,arnaud.bonatti@gmail.com,2019-09-28 00:05:03+02:00,Arnaud Bonatti,arnaud.bonatti@gmail.com,2019-09-27 22:05:03+00:00,False,gmail,gmail,* master,True,GNOME_dconf-editor.git,GNOME/dconf-editor.git,https://gitlab.gnome.org/GNOME/dconf-editor.git +4ab148c2ea0ea66a669cc7c8b33b6077b388e87f,mmckerns,mmckerns@8bfda07e-5b16-0410-ab1d-fd04ec2748df,2010-06-19 21:21:03+00:00,mmckerns,mmckerns@8bfda07e-5b16-0410-ab1d-fd04ec2748df,2010-06-19 21:21:03+00:00,False,8bfda07e-5b16-0410-ab1d-fd04ec2748df,8bfda07e-5b16-0410-ab1d-fd04ec2748df,* master,True,uqfoundation_dill,uqfoundation/dill,https://github.com/uqfoundation/dill +c648cb832d8c8c0e41a493563c9f9c526daed77d,Daniel Faust,hessijames@gmail.com,2010-07-13 20:25:15+02:00,Daniel Faust,hessijames@gmail.com,2010-07-13 18:25:15+00:00,False,gmail,gmail,* master,True,dfaust_soundkonverter.git,dfaust/soundkonverter.git,https://github.com/dfaust/soundkonverter.git +1678a2f3d59ed77abf9383b51a8575c8c41da2ba,Reed O'Brien,reed@koansys.com,2012-03-12 21:18:14-07:00,Reed O'Brien,reed@koansys.com,2012-03-13 04:18:14+00:00,False,koansys,koansys,* master,True,Pylons_pyramid_chameleon,Pylons/pyramid/chameleon,https://github.com/Pylons/pyramid_chameleon +6a0c484f49f324962ce167b564b86b577d737480,maxtepkeev,tepkeev@gmail.com,2014-01-09 03:14:13-08:00,maxtepkeev,tepkeev@gmail.com,2014-01-09 11:14:13+00:00,False,gmail,gmail,* master,True,maxtepkeev_python-redmine.git,maxtepkeev/python-redmine.git,https://github.com/maxtepkeev/python-redmine.git +5ad1f0730acbe22b512834dc11af114c0fe3c455,Paul Dix,paul@pauldix.net,2013-11-05 11:27:16-08:00,Paul Dix,paul@pauldix.net,2013-11-05 19:27:16+00:00,False,pauldix,pauldix,* master,True,influxdata_influxdb-python,influxdata/influxdb-python,https://github.com/influxdata/influxdb-python +b28b8e62bf20a112a4f1f7ed0558e29f536ebaae,pishuilu,pishuilu@kylinos.cn,2017-02-09 16:11:41+08:00,pishuilu,pishuilu@kylinos.cn,2017-02-09 08:11:41+00:00,False,kylinos,kylinos,* master,True,ukui_ukui-themes,ukui/ukui-themes,https://github.com/ukui/ukui-themes +0389e97743d0f5d035e11a12f5ecf72e8a25796b,Dan Jacob,danjac354@gmail.com,2010-07-04 13:34:15+01:00,Dan Jacob,danjac354@gmail.com,2010-07-04 12:34:15+00:00,False,gmail,gmail,* master,True,smurfix_flask-script,smurfix/flask-script,https://github.com/smurfix/flask-script +36caf0d7ca07bf327bfb61b75ba67da956461ba5,Vadim A. Misbakh-Soloviov,mva@mva.name,2013-01-17 07:43:35+07:00,Vadim A. Misbakh-Soloviov,mva@mva.name,2013-01-17 00:43:35+00:00,False,mva,mva,* master,True,alphallc_ruby-fcgi-ng,alphallc/ruby-fcgi-ng,https://github.com/alphallc/ruby-fcgi-ng +f453d4148de12234ee1301e918dd49b7f00f8dae,Ian Cordasco,graffatcolmingov@gmail.com,2013-04-06 00:13:44-04:00,Ian Cordasco,graffatcolmingov@gmail.com,2013-04-06 04:13:44+00:00,False,gmail,gmail,* main,True,python-hyper_uritemplate.git,python-hyper/uritemplate.git,https://github.com/python-hyper/uritemplate.git +691381036b8dad94b9761ddb085b390e6478b6d8,David Golden,dagolden@cpan.org,2006-09-09 16:55:09+00:00,David Golden,dagolden@cpan.org,2006-09-09 16:55:09+00:00,False,cpan,cpan,* master,True,dagolden_class-insideout.git,dagolden/class-insideout.git,https://github.com/dagolden/class-insideout.git +ee9dfc6e5620198f50633e11c5f0d8c8b1214458,Martin Owens,doctormo@gmail.com,2012-08-22 16:00:38-04:00,Martin Owens,doctormo@gmail.com,2012-08-22 20:00:38+00:00,False,gmail,gmail,* master,True,doctormo_python-crontab,doctormo/python-crontab,https://gitlab.com/doctormo/python-crontab +70e99baef9d08d5479725ca1d50a93f3a4681632,Jari Aalto,jari.aalto@cante.net,2010-03-01 11:10:16+02:00,Jari Aalto,jari.aalto@cante.net,2010-03-01 09:10:16+00:00,False,cante,cante,* master,True,jaalto_project--copyright-update,jaalto/project--copyright-update,https://github.com/jaalto/project--copyright-update +c1a876201396e8d0a923a1e703374df570d93d87,Tom Lee,github@tomlee.co,2013-08-17 02:00:22-07:00,Tom Lee,github@tomlee.co,2013-08-17 09:00:22+00:00,False,tomlee,tomlee,* debian/master,True,thomaslee_capnproto-debian,thomaslee/capnproto-debian,https://github.com/thomaslee/capnproto-debian +a1fd8e6005c65744272c5afe4aff55b2b96b9ccb,Oliver Gorwits,cpan@gorwits.me.uk,2008-12-26 13:08:49+00:00,Oliver Gorwits,cpan@gorwits.me.uk,2008-12-26 13:08:49+00:00,False,gorwits,gorwits,* master,True,ollyg_Net-LDAP-FilterBuilder.git,ollyg/Net-LDAP-FilterBuilder.git,https://github.com/ollyg/Net-LDAP-FilterBuilder.git +b3e186b406a018d48685d89ffb2f1638b3b75dcf,Andrew Powell,shellscape@users.noreply.github.com,2019-08-21 11:02:50-04:00,GitHub,noreply@github.com,2019-08-21 15:02:50+00:00,False,users,github,* master,True,rollup_plugins,rollup/plugins,https://github.com/rollup/plugins +6c510afd893d312cee434c4e109bb3949caedd9f,rncbc,rncbc@rncbc.org,2017-07-20 18:14:36+01:00,rncbc,rncbc@rncbc.org,2017-07-20 17:14:36+00:00,False,rncbc,rncbc,* main,True,rncbc_padthv1.git,rncbc/padthv1.git,https://github.com/rncbc/padthv1.git +90696c0b609236daf4b7c0622c8dc865ce0c6dd2,Christian Theune,ct@flyingcircus.io,2008-05-19 18:25:33+00:00,Christian Theune,ct@flyingcircus.io,2008-05-19 18:25:33+00:00,False,flyingcircus,flyingcircus,* main,True,flyingcircusio_pycountry,flyingcircusio/pycountry,https://github.com/flyingcircusio/pycountry +21a43c7ecfaf8e44ac7a42af50db2c7e38f44447,Rafael Römhild,rafael@roemhild.de,2015-02-02 22:30:13+01:00,Rafael Römhild,rafael@roemhild.de,2015-02-02 21:30:13+00:00,False,roemhild,roemhild,* master,True,rroemhild_flask-ldapconn,rroemhild/flask-ldapconn,https://github.com/rroemhild/flask-ldapconn +0ab40605f26a63f7cb37ed68c517d061cdc8e5ef,ekato,ekato@ff9ab193-ed19-0410-b3e9-fd3dc8ba15a0,2006-12-10 05:21:47+00:00,ekato,ekato@ff9ab193-ed19-0410-b3e9-fd3dc8ba15a0,2006-12-10 05:21:47+00:00,False,ff9ab193-ed19-0410-b3e9-fd3dc8ba15a0,ff9ab193-ed19-0410-b3e9-fd3dc8ba15a0,* master,True,uim_uim-chewing,uim/uim-chewing,https://github.com/uim/uim-chewing +7bc06e166f9516f6d2551a1a8bdb32bb88b13bc4,Christopher Allan Webber,cwebber@dustycloud.org,2015-10-07 14:32:40-05:00,Christopher Allan Webber,cwebber@dustycloud.org,2015-10-07 19:32:40+00:00,False,dustycloud,dustycloud,* master,True,w3c-social_activipy,w3c-social/activipy,https://github.com/w3c-social/activipy +ac872f342056cb5176b9f018fd1470012ff9631a,Nathaniel J. Smith,njs@pobox.com,2014-06-09 23:48:02+01:00,Nathaniel J. Smith,njs@pobox.com,2014-06-09 22:48:02+00:00,False,pobox,pobox,* master,True,njsmith_colorspacious.git,njsmith/colorspacious.git,https://github.com/njsmith/colorspacious.git +3264435241b07af5476a5f79f19f33619c44094a,Andy Mikhailenko,andy@neithere.net,2010-11-09 23:44:37+01:00,Andy Mikhailenko,andy@neithere.net,2010-11-09 22:44:37+00:00,False,neithere,neithere,* master,True,neithere_argh.git,neithere/argh.git,https://github.com/neithere/argh.git +8a42c0f76c76820c9c1c5a29bb55f3a6330b3827,jcrada,jcrada@gmail.com,2013-01-12 23:53:13+13:00,jcrada,jcrada@gmail.com,2013-01-12 10:53:13+00:00,False,gmail,gmail,* main,True,fuzzylite_fuzzylite,fuzzylite/fuzzylite,https://github.com/fuzzylite/fuzzylite +a5dacdfe27f0a3bf43c0419b4bbd9fd68485bca8,jenisys,jens_engel@web.de,2013-10-19 22:08:09+02:00,jenisys,jens_engel@web.de,2013-10-19 20:08:09+00:00,False,web,web,* main,True,jenisys_parse_type,jenisys/parse/type,https://github.com/jenisys/parse_type +169c9750facc967c845ba74d834eae978e1674f6,Dan D'Avella,drdavella@gmail.com,2017-09-20 17:01:36-04:00,Dan D'Avella,drdavella@gmail.com,2017-09-20 21:05:06+00:00,False,gmail,gmail,* main,True,astropy_pytest-remotedata,astropy/pytest-remotedata,https://github.com/astropy/pytest-remotedata +dca3139fce479265eaa231a362033b1394a0df48,Edzer Pebesma,edzer.pebesma@uni-muenster.de,2015-11-06 22:50:37+01:00,Edzer Pebesma,edzer.pebesma@uni-muenster.de,2015-11-06 21:50:37+00:00,False,uni-muenster,uni-muenster,* main,True,r-spatial_sf,r-spatial/sf,https://github.com/r-spatial/sf +06c87a94db1c483caae559790e40a33e38d066d3,Daniel Quinn,dquinn@ripe.net,2014-04-02 18:02:34+01:00,Daniel Quinn,dquinn@ripe.net,2014-04-02 17:02:34+00:00,False,ripe,ripe,* master,True,RIPE-NCC_ripe.atlas.sagan,RIPE-NCC/ripe.atlas.sagan,https://github.com/RIPE-NCC/ripe.atlas.sagan +53332a460c1d4632db6cc1365c9bc9a049ea4fc9,Yuri D'Elia,wavexx@thregr.org,2011-09-21 23:06:13+02:00,Yuri D'Elia,wavexx@thregr.org,2011-09-21 21:06:13+00:00,False,thregr,thregr,* master,True,wavexx_fgallery,wavexx/fgallery,https://gitlab.com/wavexx/fgallery +6f6425ef5df07c05051d9f042578ffb1fb9200e1,Jan Schneider,jan@horde.org,2011-06-14 21:00:54+02:00,Jan Schneider,jan@horde.org,2011-06-14 19:00:54+00:00,False,horde,horde,* master,True,horde_groupware.git,horde/groupware.git,https://github.com/horde/groupware.git +393e95c8091bd13b0e8babbe8087368fb8d75571,Matthew Rocklin,mrocklin@gmail.com,2013-09-10 19:52:36-07:00,Matthew Rocklin,mrocklin@gmail.com,2013-09-11 02:52:36+00:00,False,gmail,gmail,* master,True,pytoolz_toolz.git,pytoolz/toolz.git,https://github.com/pytoolz/toolz.git +b84833b4c7e71bdfbead84f65b4cb345a10cd91c,Shrikant Sharat,shrikantsharat.k@gmail.com,2012-05-25 18:33:27+05:30,Shrikant Sharat,shrikantsharat.k@gmail.com,2012-05-25 13:03:27+00:00,False,gmail,gmail,* develop,True,zsh-users_antigen,zsh-users/antigen,https://github.com/zsh-users/antigen +59b5c489bcfa49266ef2f58c542b6eb6a017f284,Jeffrey A. Ryan,jeff.a.ryan@gmail.com,2008-12-01 04:15:41+00:00,Jeffrey A. Ryan,jeff.a.ryan@gmail.com,2008-12-01 04:15:41+00:00,False,gmail,gmail,* main,True,joshuaulrich_xts.git,joshuaulrich/xts.git,https://github.com/joshuaulrich/xts.git +d958e970d985f88dae5995ffd2454b979521ab7b,Lakshmi Vyasarajan,lakshmi.vyas@gmail.com,2011-01-03 15:48:18+05:30,Lakshmi Vyasarajan,lakshmi.vyas@gmail.com,2011-01-03 10:18:18+00:00,False,gmail,gmail,* master,True,mintchaos_typogrify,mintchaos/typogrify,https://github.com/mintchaos/typogrify +0c9d29d15ac6cdbfcf956455dfbf1b109cef9699,Changaco,changaco@changaco.oy.lc,2014-07-14 18:31:45+02:00,Changaco,changaco@changaco.oy.lc,2016-11-29 18:03:22+00:00,False,changaco,changaco,* master,True,Changaco_python-libarchive-c.git,Changaco/python-libarchive-c.git,https://github.com/Changaco/python-libarchive-c.git +d49c795021c91eb881e3fc51344d999d9fbd0940,Kjetil Kjernsmo,kjetil@kjernsmo.net,2015-06-29 13:43:45+02:00,Kjetil Kjernsmo,kjetil@kjernsmo.net,2015-06-29 11:43:45+00:00,False,kjernsmo,kjernsmo,* main,True,kjetilk_p5-atteanx-store-sparql.git,kjetilk/p5-atteanx-store-sparql.git,https://github.com/kjetilk/p5-atteanx-store-sparql.git +e0699e69dcbe547a7068ae1a3ef1411c49adfe6a,Hong Minhee,dahlia@stylesha.re,2011-09-25 23:11:58-04:00,Hong Minhee,dahlia@stylesha.re,2011-09-26 03:11:58+00:00,False,stylesha,stylesha,* master,True,emcconville_wand,emcconville/wand,https://github.com/emcconville/wand +5c41ab800f9db4e6839703afe1659bf9ec5f456c,Ryan Lortie,desrt@desrt.ca,2011-02-03 17:28:56-05:00,Ryan Lortie,desrt@desrt.ca,2011-02-03 22:30:11+00:00,False,desrt,desrt,* master,True,GNOME_dconf-editor.git,GNOME/dconf-editor.git,https://gitlab.gnome.org/GNOME/dconf-editor.git 18125d8356bb7ca6933f070b6e6c61491a4f6df1,Chrysostomos Nanakos,chris@include.gr,2014-09-11 13:56:58+03:00,Chrysostomos Nanakos,cnanakos@grnet.gr,2014-09-11 10:56:58+00:00,False,include,grnet,* master,True,cnanakos_kmodpy,cnanakos/kmodpy,https://github.com/cnanakos/kmodpy -91af44aa4de40adec609d28f065b0ed04e609c6a,Karen Etheridge,ether@cpan.org,2017-06-27 17:29:04-07:00,Karen Etheridge,ether@cpan.org,2017-06-28 00:29:04+00:00,False,cpan,cpan,* master,True,perl-catalyst_Catalyst-Authentication-Credential-HTTP,perl-catalyst/Catalyst-Authentication-Credential-HTTP,https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP +826670f99c7d83b218b7067d4a3d3ce3e32e49a9,Brian Cassidy,bricas@cpan.org,2007-04-26 19:56:25+00:00,Brian Cassidy,bricas@cpan.org,2007-04-26 19:56:25+00:00,False,cpan,cpan,* master,True,perl-catalyst_Catalyst-Authentication-Credential-HTTP,perl-catalyst/Catalyst-Authentication-Credential-HTTP,https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP 2d8b7a32e6e096b37ef7d7dc4c2f3ae843dbda83,Ron Savage,ron@savage.net.au,2021-04-27 18:44:23+10:00,Ron Savage,ron@savage.net.au,2021-04-27 08:44:23+00:00,False,savage,savage,* master,True,ronsavage_CGI-Session-ExpireSessions,ronsavage/CGI-Session-ExpireSessions,https://github.com/ronsavage/CGI-Session-ExpireSessions -9919482b3f7f125ae83f57b3cd02a1c242d728c3,Kjetil Kjernsmo,kjetil@kjernsmo.net,2016-02-08 23:26:26+01:00,Kjetil Kjernsmo,kjetil@kjernsmo.net,2016-02-08 22:26:26+00:00,False,kjernsmo,kjernsmo,* master,True,kjetilk_RDF-Generator-Void.git,kjetilk/RDF-Generator-Void.git,https://github.com/kjetilk/RDF-Generator-Void.git -f38583b79f05e196462861a9e8cadfad1c414c33,Andrew Ayer,andrew@sslmate.com,2023-10-24 09:13:37-04:00,Andrew Ayer,andrew@sslmate.com,2023-10-24 13:13:37+00:00,False,sslmate,sslmate,* master,True,sslmate_certspotter,sslmate/certspotter,https://github.com/sslmate/certspotter -d931e770ee8a04b6d0feda96cb64d7a6b5ced925,Yury Lapshinov,y.raagin@gmail.com,2023-11-02 18:56:38+03:00,GitHub,noreply@github.com,2023-11-02 15:56:38+00:00,True,gmail,github,* master,True,jazzband_django-sortedm2m.git,jazzband/django-sortedm2m.git,https://github.com/jazzband/django-sortedm2m.git +c9ec11ba2d00e97cc9f18ca63af9109b98692146,User,tope.omitola@googlemail.com,2011-05-26 12:06:40+01:00,User,tope.omitola@googlemail.com,2011-05-26 11:06:40+00:00,False,googlemail,googlemail,* master,True,kjetilk_RDF-Generator-Void.git,kjetilk/RDF-Generator-Void.git,https://github.com/kjetilk/RDF-Generator-Void.git +74f9ceb6a22cba49f19623549f1e416d8de04854,Andrew Ayer,andrew@sslmate.com,2016-06-22 10:30:16-07:00,Andrew Ayer,andrew@sslmate.com,2016-06-22 17:30:16+00:00,False,sslmate,sslmate,* master,True,sslmate_certspotter,sslmate/certspotter,https://github.com/sslmate/certspotter +4fcd1a1a60c799bc8b9c21699038e76088819b68,Gregor Müllegger,gregor@muellegger.de,2010-04-16 21:12:33+02:00,Gregor Müllegger,gregor@muellegger.de,2010-04-16 19:12:33+00:00,False,muellegger,muellegger,* master,True,jazzband_django-sortedm2m.git,jazzband/django-sortedm2m.git,https://github.com/jazzband/django-sortedm2m.git 1a868d10f0e372ce404f18f6536429bd8f9b8aa9,Graham Ashton,graham@effectif.com,2009-07-02 21:33:27+01:00,Graham Ashton,graham@effectif.com,2009-07-02 20:33:27+00:00,False,effectif,effectif,* master,True,dpocock_python-netsyslog,dpocock/python-netsyslog,https://github.com/dpocock/python-netsyslog -3746372c8a065ba5b074ca04860740225af72901,Sorokin Alexei,sor.alexei@meowr.ru,2016-03-10 16:20:02+03:00,Sorokin Alexei,sor.alexei@meowr.ru,2016-03-10 13:20:02+00:00,False,meowr,meowr,* master,True,compiz_ccsm.git,compiz/ccsm.git,https://gitlab.com/compiz/ccsm.git -6f5b062b51fae669ef708b4255febcc4c10b02a3,Dmitry Shachnev,mitya57@gmail.com,2023-06-04 20:24:21+03:00,Dmitry Shachnev,mitya57@gmail.com,2023-06-04 17:24:21+00:00,False,gmail,gmail,* master,True,mitya57_secretstorage,mitya57/secretstorage,https://github.com/mitya57/secretstorage -be05b4c8d57adbf1b8dabc04d9ad2bcf242866c9,Joachim Metz,joachim.metz@gmail.com,2023-02-04 09:46:57+01:00,Joachim Metz,joachim.metz@gmail.com,2023-02-04 08:46:57+00:00,False,gmail,gmail,* main,True,libyal_liblnk,libyal/liblnk,https://github.com/libyal/liblnk -a2b365fb6f562aaa1cadd62ae58afd0b767b8754,Jeremy Cook,JCook21@users.noreply.github.com,2017-08-28 12:55:50-04:00,GitHub,noreply@github.com,2017-08-28 16:55:50+00:00,True,users,github,* master,True,technicalpickles_homesick,technicalpickles/homesick,https://github.com/technicalpickles/homesick -802b766f6288012dd045fa66926db34aa9b8ba02,Sebastien Aperghis-Tramoni,sebastien@aperghis.net,2013-01-02 17:57:35+01:00,Sebastien Aperghis-Tramoni,sebastien@aperghis.net,2013-01-02 16:57:35+00:00,True,aperghis,aperghis,* master,True,maddingue_SNMP-Extension-PassPersist.git,maddingue/SNMP-Extension-PassPersist.git,https://github.com/maddingue/SNMP-Extension-PassPersist.git +a78bd02e33c20e48a7e70722cf343965389a4b63,Quinn Storm,quinn@darter.(none),2007-04-24 12:08:26-04:00,Quinn Storm,quinn@darter.(none),2007-04-24 16:08:26+00:00,False,darter,darter,* master,True,compiz_ccsm.git,compiz/ccsm.git,https://gitlab.com/compiz/ccsm.git +afedd4abccd3ec3533e1f076b9b3720f680df40e,Dmitry Shachnev,mitya57@gmail.com,2013-01-05 13:38:53+04:00,Dmitry Shachnev,mitya57@gmail.com,2013-01-05 09:38:53+00:00,False,gmail,gmail,* master,True,mitya57_secretstorage,mitya57/secretstorage,https://github.com/mitya57/secretstorage +8727ff5f00d74732faf9d68e4484ea9290d6879a,Joachim Metz,joachim.metz@gmail.com,2009-09-05 11:29:26+02:00,Joachim Metz,joachim.metz@gmail.com,2016-03-27 06:15:00+00:00,False,gmail,gmail,* main,True,libyal_liblnk,libyal/liblnk,https://github.com/libyal/liblnk +02779015611a171364d62df6c2b55476758f875e,Joshua Nichols,josh@technicalpickles.com,2010-03-04 00:19:35-05:00,Joshua Nichols,josh@technicalpickles.com,2010-03-04 05:19:35+00:00,False,technicalpickles,technicalpickles,* master,True,technicalpickles_homesick,technicalpickles/homesick,https://github.com/technicalpickles/homesick +9edb3b6a3905d1381b651c0a70997ec5e1e19475,Sebastien Aperghis-Tramoni,sebastien@aperghis.net,2008-11-02 23:13:10+01:00,Sebastien Aperghis-Tramoni,sebastien@aperghis.net,2008-11-02 22:13:10+00:00,False,aperghis,aperghis,* master,True,maddingue_SNMP-Extension-PassPersist.git,maddingue/SNMP-Extension-PassPersist.git,https://github.com/maddingue/SNMP-Extension-PassPersist.git b731ec31ddb98a49ca2c3fefdb5318dce8106605,Marko Toplak,marko.toplak@gmail.com,2018-11-23 11:48:13+01:00,Marko Toplak,marko.toplak@gmail.com,2018-11-23 10:48:13+00:00,False,gmail,gmail,* master,True,biolab_serverfiles,biolab/serverfiles,https://github.com/biolab/serverfiles -821a8390e511bb500566f2fb69026030737b345c,Michael Schout,mschout@cpan.org,2011-05-28 15:29:50-05:00,Michael Schout,mschout@cpan.org,2011-05-28 20:29:50+00:00,False,cpan,cpan,* build/releases,True,mschout_apache-singleton.git,mschout/apache-singleton.git,https://github.com/mschout/apache-singleton.git -0a742722bcac1ac57293d7fe0307363474028b98,Hugo van Kemenade,hugovk@users.noreply.github.com,2023-09-15 23:28:49+03:00,Phil Jones,philip.graham.jones@googlemail.com,2023-09-16 11:50:10+00:00,False,users,googlemail,* master,True,python-hyper_h11.git,python-hyper/h11.git,https://github.com/python-hyper/h11.git -e8c47b2a2ec38d06f20280d2e7c040a457d42117,David Wolever,david@wolever.net,2023-03-02 01:39:59-05:00,David Wolever,david@wolever.net,2023-03-02 06:39:59+00:00,True,wolever,wolever,* master,True,wolever_parameterized,wolever/parameterized,https://github.com/wolever/parameterized -d0e4de1bf8a8608144310fd1b45d90826f80dbf3,koenigsley,koenigsley@gmail.com,2023-10-18 23:17:13+03:00,koenigsley,koenigsley@gmail.com,2023-10-18 20:17:13+00:00,False,gmail,gmail,* main,True,danthedeckie_simpleeval.git,danthedeckie/simpleeval.git,https://github.com/danthedeckie/simpleeval.git -08ee9fb62edeb3c802663e3be10446e7dd4d881a,Steve Zesch,stevezesch2@gmail.com,2012-05-17 12:09:50-04:00,Steve Zesch,stevezesch2@gmail.com,2012-05-17 16:09:50+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-user-share.git,mate-desktop/mate-user-share.git,https://github.com/mate-desktop/mate-user-share.git -9828d6a9e0bf403fd0b8047cc8f4d341955a245c,William Jon McCann,jmccann@redhat.com,2009-09-14 15:21:15-04:00,William Jon McCann,jmccann@redhat.com,2009-09-14 19:21:15+00:00,False,redhat,redhat,* master,True,xdg_xdg-sound-theme,xdg/xdg-sound-theme,https://gitlab.freedesktop.org/xdg/xdg-sound-theme -538f002947983100539e782b011b1bf661cb6d97,YOKOTA Hiroshi,yokota.hgml@gmail.com,2021-10-08 20:55:25+09:00,YOKOTA Hiroshi,yokota.hgml@gmail.com,2021-10-08 11:55:25+00:00,True,gmail,gmail,* master,True,debian-calibre_html5-parser,debian-calibre/html5-parser,https://github.com/debian-calibre/html5-parser -82bd529a12df7982888ae5d81b697c5b2667421c,Audrey Tang,audreyt@audreyt.org,2020-06-25 20:17:21+08:00,Audrey Tang,audreyt@audreyt.org,2020-06-25 12:17:21+00:00,False,audreyt,audreyt,* master,True,audreyt_module-signature.git,audreyt/module-signature.git,https://github.com/audreyt/module-signature.git -37d77ea3ae83816b203a9ccb3147ef0f8896cbe0,Vincent Pelletier,plr.vincent@gmail.com,2023-10-29 06:07:01+00:00,Vincent Pelletier,plr.vincent@gmail.com,2023-10-29 06:07:11+00:00,False,gmail,gmail,* master,True,vpelletier_python-libusb1.git,vpelletier/python-libusb1.git,https://github.com/vpelletier/python-libusb1.git -89a8858dc6fdaf6c094d9038db79fbc61469ccef,Michael Jeanson,mjeanson@efficios.com,2023-07-06 14:40:01-04:00,Mathieu Desnoyers,mathieu.desnoyers@efficios.com,2024-01-10 17:20:23+00:00,False,efficios,efficios,* master,True,lttng-ust.git,lttng-ust.git,git://git.lttng.org/lttng-ust.git -2f6c9cd3ad5cf3e90ae2adc8372f1f175fb10129,Matthew Brett,matthew.brett@gmail.com,2018-07-31 01:22:52+01:00,Matthew Brett,matthew.brett@gmail.com,2018-07-31 00:22:52+00:00,False,gmail,gmail,* main,True,matthew-brett_sphinxtesters.git,matthew-brett/sphinxtesters.git,https://github.com/matthew-brett/sphinxtesters.git -1820f8143a58aeac9ca02d4177079a62972d6549,Michael Lustfield,michael@lustfield.net,2019-10-31 02:30:31-05:00,Michael Lustfield,michael@lustfield.net,2019-10-31 07:30:31+00:00,False,lustfield,lustfield,* master,True,MTecknology_tdc,MTecknology/tdc,https://github.com/MTecknology/tdc -6f1ba654efb421f11f0822e135fa9839f3171ca6,Friedrich W. H. Kossebau,kossebau@kde.org,2023-10-12 01:46:47+02:00,Friedrich W. H. Kossebau,kossebau@kde.org,2023-10-11 23:46:47+00:00,False,kde,kde,* master,True,kolf.git,kolf.git,https://anongit.kde.org/kolf.git -f94cc0bef3720012b0e35fd39b42a60c1ef53842,Matthijs van der Burgh,MatthijsBurgh@outlook.com,2022-08-30 20:21:19+02:00,GitHub,noreply@github.com,2022-08-30 18:21:19+00:00,False,outlook,github,* master,True,orocos_orocos_kinematics_dynamics.git,orocos/orocos/kinematics/dynamics.git,https://github.com/orocos/orocos_kinematics_dynamics.git -33e243631bcce9477a177b8ef0db322260f8de25,James E Keenan,jkeenan@cpan.org,2020-08-16 18:36:20-04:00,James E Keenan,jkeenan@cpan.org,2020-08-16 22:36:20+00:00,False,cpan,cpan,* master,True,jkeenan_list-compare.git,jkeenan/list-compare.git,https://github.com/jkeenan/list-compare.git -ab6522adb31b5b65545f07fa7ba441fbc9175918,cdi,cdi@ableton.com,2023-09-07 15:12:28+02:00,cdi,cdi@ableton.com,2023-09-11 08:34:51+00:00,False,ableton,ableton,* master,True,Ableton_link.git,Ableton/link.git,https://github.com/Ableton/link.git -6b9ca59e6969d421e5cc5f943a6a1d281fd05711,Dain Nilsson,dain@yubico.com,2024-01-15 14:28:43+01:00,Dain Nilsson,dain@yubico.com,2024-01-15 13:28:43+00:00,True,yubico,yubico,* main,True,Yubico_yubikey-manager.git,Yubico/yubikey-manager.git,https://github.com/Yubico/yubikey-manager.git +7ff6213c483bec02123a5be1d0f79e0acd35b0d0,Michael Schout,mschout@cpan.org,2009-11-22 20:43:56-06:00,Michael Schout,mschout@cpan.org,2009-11-23 02:46:36+00:00,False,cpan,cpan,* build/releases,True,mschout_apache-singleton.git,mschout/apache-singleton.git,https://github.com/mschout/apache-singleton.git +78347a2d11a132b5e7c27fb0855be70416298294,Nathaniel J. Smith,njs@pobox.com,2016-04-29 02:06:47-07:00,Nathaniel J. Smith,njs@pobox.com,2016-04-29 09:06:47+00:00,False,pobox,pobox,* master,True,python-hyper_h11.git,python-hyper/h11.git,https://github.com/python-hyper/h11.git +c1b1222beb7f85806e1b3ead776df5627aeee970,David Wolever,david@wolever.net,2012-03-09 21:21:50-08:00,David Wolever,david@wolever.net,2012-03-10 05:21:50+00:00,False,wolever,wolever,* master,True,wolever_parameterized,wolever/parameterized,https://github.com/wolever/parameterized +cd11623a3ded1ef02c8de360f6ebd2f47a43fa22,Daniel Fairhead,daniel.fairhead@om.org,2013-12-03 01:01:40+00:00,Daniel Fairhead,daniel.fairhead@om.org,2013-12-03 01:01:40+00:00,False,om,om,* main,True,danthedeckie_simpleeval.git,danthedeckie/simpleeval.git,https://github.com/danthedeckie/simpleeval.git +b42609046ef05f8d8be4b08ac50ea10a3c6dfe71,Steve Zesch,stevezesch2@gmail.com,2012-05-14 10:32:23-07:00,Steve Zesch,stevezesch2@gmail.com,2012-05-14 17:32:23+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-user-share.git,mate-desktop/mate-user-share.git,https://github.com/mate-desktop/mate-user-share.git +75e2d0febeb387beb6d58ee8a501447e0c55dd07,Jon McCann,jmccann@redhat.com,2008-10-03 16:57:38-04:00,Jon McCann,jmccann@redhat.com,2008-10-03 20:57:38+00:00,False,redhat,redhat,* master,True,xdg_xdg-sound-theme,xdg/xdg-sound-theme,https://gitlab.freedesktop.org/xdg/xdg-sound-theme +8939e4bc6a1517a123a3afcee95f15272ffc6b63,Norbert Preining,norbert@preining.info,2017-07-29 23:22:27+09:00,Norbert Preining,norbert@preining.info,2017-07-29 14:22:27+00:00,False,preining,preining,* master,True,debian-calibre_html5-parser,debian-calibre/html5-parser,https://github.com/debian-calibre/html5-parser +b2304d877b7c6859e95795de6ef3e0fd5d2add9f,A,audreyt@audreyt.org,2009-11-16 22:54:47+08:00,A,audreyt@audreyt.org,2009-11-16 14:54:47+00:00,False,audreyt,audreyt,* master,True,audreyt_module-signature.git,audreyt/module-signature.git,https://github.com/audreyt/module-signature.git +7af9a2c9fc7412b1ae50153a7d24c4f3002b85ce,Vincent Pelletier,plr.vincent@gmail.com,2010-01-27 23:43:22+01:00,Vincent Pelletier,plr.vincent@gmail.com,2010-01-27 22:43:22+00:00,False,gmail,gmail,* master,True,vpelletier_python-libusb1.git,vpelletier/python-libusb1.git,https://github.com/vpelletier/python-libusb1.git +94e959f0722ed4e6add1270f6c242bf29dd26f52,Pierre-Marc Fournier,pierre-marc.fournier@polymtl.ca,2009-05-05 16:37:22-04:00,Pierre-Marc Fournier,pierre-marc.fournier@polymtl.ca,2009-05-05 20:37:22+00:00,False,polymtl,polymtl,* master,True,lttng-ust.git,lttng-ust.git,git://git.lttng.org/lttng-ust.git +609c92c33e00c72474acad6dea3196e260b17498,Matthew Brett,matthew.brett@gmail.com,2017-08-07 12:16:31-07:00,Matthew Brett,matthew.brett@gmail.com,2017-08-07 19:31:20+00:00,False,gmail,gmail,* main,True,matthew-brett_sphinxtesters.git,matthew-brett/sphinxtesters.git,https://github.com/matthew-brett/sphinxtesters.git +c2db11d0c355bf771f8d57ecc9ecfabc571566c5,Michael Lustfield,michaellustfield@ubuntu.com,2014-02-17 03:00:45-06:00,Michael Lustfield,michaellustfield@ubuntu.com,2014-02-17 09:00:45+00:00,False,ubuntu,ubuntu,* master,True,MTecknology_tdc,MTecknology/tdc,https://github.com/MTecknology/tdc +3ab2a5a809a93826be1cd45f6d790a53f5e34010,Jason Katz-Brown,jason@katzbrown.com,2002-05-04 07:04:07+00:00,Jason Katz-Brown,jason@katzbrown.com,2002-05-04 07:04:07+00:00,False,katzbrown,katzbrown,* master,True,kolf.git,kolf.git,https://anongit.kde.org/kolf.git +593a296ed03ebe6c0e9b44952c4faaf470e2eafd,Ruben Smits,ruben.smits@mech.kuleuven.be,2007-02-13 12:55:36+00:00,Ruben Smits,ruben.smits@mech.kuleuven.be,2007-02-13 12:55:36+00:00,False,mech,mech,* master,True,orocos_orocos_kinematics_dynamics.git,orocos/orocos/kinematics/dynamics.git,https://github.com/orocos/orocos_kinematics_dynamics.git +c12acd912cc9f474d45d415f3cf1ab4f19bb580c,jimk,jimk@07862939-d7ef-0310-b512-86c215e7314a,2005-09-19 00:19:04+00:00,jimk,jimk@07862939-d7ef-0310-b512-86c215e7314a,2005-09-19 00:19:04+00:00,False,07862939-d7ef-0310-b512-86c215e7314a,07862939-d7ef-0310-b512-86c215e7314a,* master,True,jkeenan_list-compare.git,jkeenan/list-compare.git,https://github.com/jkeenan/list-compare.git +7bc2e4d04848d77f70b95b10da7f722bd7436b90,Brent Shields,brs-ableton@users.noreply.github.com,2016-02-03 17:19:24+01:00,Brent Shields,brs-ableton@users.noreply.github.com,2016-02-03 16:19:24+00:00,False,users,users,* master,True,Ableton_link.git,Ableton/link.git,https://github.com/Ableton/link.git +d64893c5cab0c39c183a8a5a430c0d3433ee8f45,Dain Nilsson,dain@yubico.com,2016-01-18 16:57:22+01:00,Dain Nilsson,dain@yubico.com,2016-01-18 15:57:22+00:00,False,yubico,yubico,* main,True,Yubico_yubikey-manager.git,Yubico/yubikey-manager.git,https://github.com/Yubico/yubikey-manager.git 00f069dfa53e36a56985f74621c91df5330113a7,Guang Yi,yiguang@kylinos.cn,2021-03-30 17:26:13+08:00,Guang Yi,yiguang@kylinos.cn,2021-03-30 09:26:13+00:00,False,kylinos,kylinos,* Debian,True,ukui_ukui-window-switch,ukui/ukui-window-switch,https://github.com/ukui/ukui-window-switch -7ff7c513941cf389c59ee4dd102cf93cf2ea2a4a,Philip Withnall,philip@tecnocode.co.uk,2019-01-31 13:47:17+00:00,Philip Withnall,philip@tecnocode.co.uk,2019-01-31 13:47:17+00:00,True,tecnocode,tecnocode,* main,True,GNOME_dconf.git,GNOME/dconf.git,https://gitlab.gnome.org/GNOME/dconf.git -7ab6b824c771df8298cbe1b512a80116d005ec33,guoguangwu,guoguangwug@gmail.com,2024-03-16 09:20:31+08:00,Michael Grunder,michael.grunder@gmail.com,2024-03-16 03:56:25+00:00,False,gmail,gmail,* master,True,redis_hiredis,redis/hiredis,https://github.com/redis/hiredis +5c41ab800f9db4e6839703afe1659bf9ec5f456c,Ryan Lortie,desrt@desrt.ca,2011-02-03 17:28:56-05:00,Ryan Lortie,desrt@desrt.ca,2011-02-03 22:30:11+00:00,False,desrt,desrt,* main,True,GNOME_dconf.git,GNOME/dconf.git,https://gitlab.gnome.org/GNOME/dconf.git +df0f2a3aedc4f20af9647acf1512a4401d4cec2e,antirez,antirez@gmail.com,2010-05-18 18:49:16+02:00,antirez,antirez@gmail.com,2010-05-18 16:49:16+00:00,False,gmail,gmail,* master,True,redis_hiredis,redis/hiredis,https://github.com/redis/hiredis 527377d1ae6ab8f7d345815d4507fdadb4e165cb,Romain Prévost,rprevost@inf.ethz.ch,2015-10-05 17:55:17+02:00,Romain Prévost,rprevost@inf.ethz.ch,2015-10-05 15:55:17+00:00,False,inf,inf,* master,True,libigl_triangle.git,libigl/triangle.git,https://github.com/libigl/triangle.git -02230270d9db1f45c641fa1b457a46c6046b0ac4,Leo Singer,leo.singer@nasa.gov,2022-06-14 07:38:19-07:00,GitHub,noreply@github.com,2022-06-14 14:38:19+00:00,True,nasa,github,* main,True,astropy_astropy-healpix,astropy/astropy-healpix,https://github.com/astropy/astropy-healpix -b1299f3a3706cd13cba13f8911801f41a917c644,Casey Duncan,casey.duncan@gmail.com,2018-11-09 16:07:55-07:00,GitHub,noreply@github.com,2018-11-09 23:07:55+00:00,False,gmail,github,* master,True,caseman_noise.git,caseman/noise.git,https://github.com/caseman/noise.git -f88c8fc8e29af7f41f723a79b169acd80b173030,Sonny Piers,sonny@fastmail.net,2016-03-30 18:15:43+02:00,Sonny Piers,sonny@fastmail.net,2016-03-30 16:15:43+00:00,False,fastmail,fastmail,* master,True,node-xmpp_node-stringprep,node-xmpp/node-stringprep,https://github.com/node-xmpp/node-stringprep -2f6e6bbe51a4fc69da6339fd15f852e6f7e84a1b,Ben Nuttall,ben@bennuttall.com,2023-12-21 23:08:16+00:00,GitHub,noreply@github.com,2023-12-21 23:08:16+00:00,True,bennuttall,github,* main,True,pyjokes_pyjokes,pyjokes/pyjokes,https://github.com/pyjokes/pyjokes -6a3074d73ce2307705175b5958279b858fb6ce71,Jiri Benc,jbenc@redhat.com,2021-09-14 11:50:31+02:00,Jiri Benc,jbenc@redhat.com,2021-09-14 09:50:31+00:00,False,redhat,redhat,* master,True,jbenc_plotnetcfg.git,jbenc/plotnetcfg.git,https://github.com/jbenc/plotnetcfg.git -7ccce79c46a6e9d1acaca989bc1a2b72d3806221,mishina,32959831+mishina2228@users.noreply.github.com,2022-12-26 20:58:08+09:00,GitHub,noreply@github.com,2022-12-26 11:58:08+00:00,False,users,github,* master,True,guard_guard.git,guard/guard.git,https://invent.kde.org/plasma/libksysguard.git -762457dc7c9698fb6ab84bc635b7388e1d45b38e,Raphaël Barrois,raphael.barrois@polytechnique.org,2020-10-10 15:13:24+02:00,Raphaël Barrois,raphael.barrois@polytechnique.org,2020-10-10 13:21:10+00:00,False,polytechnique,polytechnique,* master,True,django-ldapdb_django-ldapdb,django-ldapdb/django-ldapdb,https://github.com/django-ldapdb/django-ldapdb -f9518bc9be7fce8c760f2c130dd025028dbe72b8,Sherry Li,xsli@lbl.gov,2023-11-21 22:40:55-08:00,Sherry Li,xsli@lbl.gov,2023-11-22 06:40:55+00:00,True,lbl,lbl,* master,True,xiaoyeli_superlu.git,xiaoyeli/superlu.git,https://github.com/xiaoyeli/superlu.git +2d0703dbf5cb72faab883970a8345eb3b15cd23f,Christoph Deil,Deil.Christoph@gmail.com,2016-09-05 18:14:38+02:00,Christoph Deil,Deil.Christoph@gmail.com,2016-09-05 16:15:34+00:00,False,gmail,gmail,* main,True,astropy_astropy-healpix,astropy/astropy-healpix,https://github.com/astropy/astropy-healpix +963fb2dc4ad3ce764b7b540c118780b0e0341ad1,Casey Duncan,casey.duncan@gmail.com,2013-02-09 23:38:50-07:00,Casey Duncan,casey.duncan@gmail.com,2013-02-10 06:38:50+00:00,False,gmail,gmail,* master,True,caseman_noise.git,caseman/noise.git,https://github.com/caseman/noise.git +e905f2008a153c16773a2030961817b912a73da6,Astro,astro@spaceboyz.net,2010-08-05 20:59:28+02:00,Astro,astro@spaceboyz.net,2010-08-05 18:59:28+00:00,False,spaceboyz,spaceboyz,* master,True,node-xmpp_node-stringprep,node-xmpp/node-stringprep,https://github.com/node-xmpp/node-stringprep +f853243a19a1cc6d2880d22d77f5b9ddef04e172,Ben Nuttall,ben@bennuttall.com,2014-09-28 00:40:42+02:00,Ben Nuttall,ben@bennuttall.com,2014-09-27 22:40:42+00:00,False,bennuttall,bennuttall,* main,True,pyjokes_pyjokes,pyjokes/pyjokes,https://github.com/pyjokes/pyjokes +c4b868b11da95b891b8d93a3734b963c8fdff2c9,Jiri Benc,jbenc@redhat.com,2014-09-24 15:12:38+02:00,Jiri Benc,jbenc@redhat.com,2014-10-10 11:09:30+00:00,False,redhat,redhat,* master,True,jbenc_plotnetcfg.git,jbenc/plotnetcfg.git,https://github.com/jbenc/plotnetcfg.git +4d3744ff43430bdae9dc4b55264912320872fa9a,Thibaud Guillaume-Gentil,thibaud@thibaud.me,2010-10-03 23:00:33+02:00,Thibaud Guillaume-Gentil,thibaud@thibaud.me,2010-10-03 21:00:33+00:00,False,thibaud,thibaud,* master,True,guard_guard.git,guard/guard.git,https://invent.kde.org/plasma/libksysguard.git +e8acaa39be41e45d7f60482b0ca95f82f839f2f5,Jeremy Lainé,jeremy.laine@m4x.org,2013-06-04 11:31:46+02:00,Jeremy Lainé,jeremy.laine@m4x.org,2013-06-04 09:31:46+00:00,False,m4x,m4x,* master,True,django-ldapdb_django-ldapdb,django-ldapdb/django-ldapdb,https://github.com/django-ldapdb/django-ldapdb +851ee77dee007526d49ac91c01b0577812d7b86f,xiaoye,xiaoye@80d2f580-31aa-11e5-bf80-072c59723c4c,2015-07-24 02:28:27+00:00,xiaoye,xiaoye@80d2f580-31aa-11e5-bf80-072c59723c4c,2015-07-24 02:28:27+00:00,False,80d2f580-31aa-11e5-bf80-072c59723c4c,80d2f580-31aa-11e5-bf80-072c59723c4c,* master,True,xiaoyeli_superlu.git,xiaoyeli/superlu.git,https://github.com/xiaoyeli/superlu.git bea0bd1b405ac1bc0f6e47beca572d6efc55c33c,Daisuke Murase,typester@cpan.org,2010-12-15 10:38:16+09:00,Daisuke Murase,typester@cpan.org,2010-12-15 01:38:16+00:00,False,cpan,cpan,* master,True,typester_www-google-calculator-perl.git,typester/www-google-calculator-perl.git,https://github.com/typester/www-google-calculator-perl.git -d245cca8d121ea1d5bbad3b76e343540df313973,Brodie Rao,brodie@sf.io,2021-12-24 16:07:05-08:00,Brodie Rao,brodie@sf.io,2021-12-25 00:13:00+00:00,False,sf,sf,* master,True,brodie_cram,brodie/cram,https://github.com/brodie/cram -6fd9c2a3f36115d9403179d71d87a25843061b89,Michael Howitz,mh@gocept.com,2023-01-09 16:41:08+01:00,GitHub,noreply@github.com,2023-01-09 15:41:08+00:00,True,gocept,github,* master,True,zopefoundation_zope.deprecation.git,zopefoundation/zope.deprecation.git,https://github.com/zopefoundation/zope.deprecation.git -183a7007ad6aebb9f2012125745306f640772d30,Vince Mulhollon,vlm@debian.org,2011-03-04 20:37:37-06:00,Rolf Leggewie,foss@rolf.leggewie.biz,2014-11-12 12:58:59+00:00,False,debian,rolf,* master,True,leggewie-DM_wondershaper,leggewie-DM/wondershaper,https://github.com/leggewie-DM/wondershaper -6c57804b9a6e15179dbaa36c28127a8b28c05b6c,Andrew Gierth,andrew@tao146.riddles.org.uk,2023-07-29 18:50:47+01:00,Andrew Gierth,andrew@tao146.riddles.org.uk,2023-07-29 17:50:47+00:00,False,tao146,tao146,* master,True,RhodiumToad_ip4r.git,RhodiumToad/ip4r.git,https://github.com/RhodiumToad/ip4r.git +bba37221d4bcfee205f93fa3ff79c6ec94b22f4e,Brodie Rao,brodie@bitheap.org,2010-09-18 03:08:42-05:00,Brodie Rao,brodie@bitheap.org,2010-09-18 08:08:42+00:00,False,bitheap,bitheap,* master,True,brodie_cram,brodie/cram,https://github.com/brodie/cram +4bac3a76abcfc1297962324f3a45ae429dcb603a,Nathan Yergler,nathan@yergler.net,2006-02-28 00:39:50+00:00,Nathan Yergler,nathan@yergler.net,2006-02-28 00:39:50+00:00,False,yergler,yergler,* master,True,zopefoundation_zope.deprecation.git,zopefoundation/zope.deprecation.git,https://github.com/zopefoundation/zope.deprecation.git +03874aa95b0a0907004f12f660dc21fc337e1642,Rolf Leggewie,foss@rolf.leggewie.biz,2009-07-25 02:09:10+02:00,Rolf Leggewie,foss@rolf.leggewie.biz,2009-07-25 00:09:10+00:00,False,rolf,rolf,* master,True,leggewie-DM_wondershaper,leggewie-DM/wondershaper,https://github.com/leggewie-DM/wondershaper +604ede52cc399507cac49073fe940e3bfdde5db2,Andrew Gierth,andrew@tao146.riddles.org.uk,2013-10-01 09:32:52+01:00,Andrew Gierth,andrew@tao146.riddles.org.uk,2013-10-01 08:32:52+00:00,False,tao146,tao146,* master,True,RhodiumToad_ip4r.git,RhodiumToad/ip4r.git,https://github.com/RhodiumToad/ip4r.git 061dd6ac8bab6c41e72d0d3ab266be521af92bb2,Zearin,Zearin@users.noreply.github.com,2018-07-04 17:04:10-04:00,Timo Sand,timo.sand@iki.fi,2018-07-04 21:04:10+00:00,False,users,iki,* master,True,tj_node-growl,tj/node-growl,https://github.com/tj/node-growl -65782d433b770522dc5bd8c0b80da881ee79058f,Masahiro Nagano,kazeburo@gmail.com,2013-09-12 11:33:40+09:00,Masahiro Nagano,kazeburo@gmail.com,2013-09-12 02:33:40+00:00,False,gmail,gmail,* master,True,miyagawa_Plack-Middleware-Deflater.git,miyagawa/Plack-Middleware-Deflater.git,https://github.com/miyagawa/Plack-Middleware-Deflater.git -45b5ad0b4c13280edb8d4eeed0f4109a6eb0db0c,Vidar Tonaas Fauske,vidartf@gmail.com,2019-04-30 09:16:46+02:00,GitHub,noreply@github.com,2019-04-30 07:16:46+00:00,True,gmail,github,* master,True,eugeniy_pytest-tornado,eugeniy/pytest-tornado,https://github.com/eugeniy/pytest-tornado -289a77b179535d8137118e3b8591d9e727130d6d,Jason R. Coombs,jaraco@jaraco.com,2022-02-25 10:54:30-05:00,Jason R. Coombs,jaraco@jaraco.com,2022-02-25 15:54:30+00:00,True,jaraco,jaraco,* main,True,pytest-dev_pytest-runner.git,pytest-dev/pytest-runner.git,https://github.com/pytest-dev/pytest-runner.git -b2c92ac76eb1ed9d8286a25dbfe7d440fa5ab719,Takafumi Arakaki,aka.tkf@gmail.com,2014-03-08 18:09:27+01:00,Takafumi Arakaki,aka.tkf@gmail.com,2014-03-08 17:09:27+00:00,True,gmail,gmail,* master,True,tkf_python-epc,tkf/python-epc,https://github.com/tkf/python-epc -d57634bcf9769b3d6ec879e93198e3604313e344,Dima Kogan,dima@secretsauce.net,2024-02-19 21:38:00-08:00,Dima Kogan,dima@secretsauce.net,2024-02-20 05:38:53+00:00,False,secretsauce,secretsauce,* master,True,dkogan_feedgnuplot.git,dkogan/feedgnuplot.git,https://github.com/dkogan/feedgnuplot.git -ada255d978cd230e56a9ff008adddcb13cccc7db,Daniel Cloud,dcloud@sunlightfoundation.com,2013-09-18 11:43:05-04:00,Daniel Cloud,dcloud@sunlightfoundation.com,2013-09-18 15:43:05+00:00,False,sunlightfoundation,sunlightfoundation,* master,True,sunlightlabs_python-sunlight,sunlightlabs/python-sunlight,https://github.com/sunlightlabs/python-sunlight -1dfe7ad84a0b6e8b8bdc4e861a319bab6144c56f,Joachim Metz,joachim.metz@gmail.com,2021-12-23 07:09:06+01:00,Joachim Metz,joachim.metz@gmail.com,2021-12-23 06:09:06+00:00,False,gmail,gmail,* main,True,py4n6_pytsk.git,py4n6/pytsk.git,https://github.com/py4n6/pytsk.git -de99a36fd8dd8f5bebd888665e69142394d84c6c,Richard Hughes,richard@hughsie.com,2023-10-30 19:38:43+00:00,Richard Hughes,richard@hughsie.com,2023-10-30 19:38:43+00:00,False,hughsie,hughsie,* main,True,hughsie_colord-gtk.git,hughsie/colord-gtk.git,https://github.com/hughsie/colord-gtk.git -927fe675de149adf79b6e4c8f188a056e0b9c6f2,Christian Clauss,cclauss@me.com,2023-12-07 00:32:13+01:00,Claude Paroz,claude@2xlibre.net,2023-12-07 07:05:36+00:00,False,me,2xlibre,* master,True,django-haystack_django-haystack,django-haystack/django-haystack,https://github.com/django-haystack/django-haystack -bfa9ac508bfc4cb1fb09c6421c7a4af534bb9514,Chris Withers,chris@simplistix.co.uk,2023-11-22 09:15:27+00:00,Chris Withers,chris@simplistix.co.uk,2023-11-22 10:02:56+00:00,False,simplistix,simplistix,* master,True,Simplistix_testfixtures,Simplistix/testfixtures,https://github.com/Simplistix/testfixtures -30f75767059bd4e84b9cde477414dc24155008fe,Daniele Varrazzo,daniele.varrazzo@gmail.com,2021-08-31 01:53:29+02:00,Daniele Varrazzo,daniele.varrazzo@gmail.com,2021-08-30 23:53:29+00:00,False,gmail,gmail,* master,True,pgxn_pgxnclient.git,pgxn/pgxnclient.git,https://github.com/pgxn/pgxnclient.git -b07bf38ebe76831cb5dc577d5a43a396967d6480,eudoxos,eu@doxos.eu,2015-04-13 14:30:06+02:00,eudoxos,eu@doxos.eu,2015-04-13 12:30:06+00:00,False,doxos,doxos,* master,True,eudoxos_minieigen,eudoxos/minieigen,https://github.com/eudoxos/minieigen -c4dee7d93e068492d59c5f856cf2129cc11892bc,Georgi Valkov,gvalkov@users.noreply.github.com,2024-02-25 16:30:57+01:00,GitHub,noreply@github.com,2024-02-25 15:30:57+00:00,False,users,github,* main,True,gvalkov_python-evdev.git,gvalkov/python-evdev.git,https://github.com/gvalkov/python-evdev.git -60b66d3a283f277fece5cfdb507c7dc9a6309361,Uli Schlachter,psychon@users.noreply.github.com,2022-04-21 16:54:27+02:00,GitHub,noreply@github.com,2022-04-21 14:54:27+00:00,True,users,github,* master,True,lgi-devs_lgi,lgi-devs/lgi,https://github.com/lgi-devs/lgi -1428f71ad42e0b7dcc4d62d4cced9a72141e5845,Guillaume Ayoub,guillaume@courtbouillon.org,2023-11-10 15:04:56+01:00,Guillaume Ayoub,guillaume@courtbouillon.org,2023-11-10 14:04:56+00:00,True,courtbouillon,courtbouillon,* main,True,SimonSapin_Frozen-Flask,SimonSapin/Frozen-Flask,https://github.com/SimonSapin/Frozen-Flask -c2dd57a57ff7b3103da74e800744651e225495f7,Jason R. Coombs,jaraco@jaraco.com,2024-02-04 10:28:09-05:00,Jason R. Coombs,jaraco@jaraco.com,2024-02-04 15:28:09+00:00,True,jaraco,jaraco,* main,True,jaraco_path.py.git,jaraco/path.py.git,https://github.com/jaraco/path.py.git -e3d9020ea0ec12cc563eb8d5e40ca8974dc8450e,Alejandro Garrido Mota,garridomota@gmail.com,2009-12-22 02:50:46-04:30,Alejandro Garrido Mota,garridomota@gmail.com,2009-12-22 07:20:46+00:00,False,gmail,gmail,* master,True,mogaal_anypaper,mogaal/anypaper,https://github.com/mogaal/anypaper -0b7f63c78ebb0798c3674ce58facd58fa09c08e6,Lincoln Stein,lincoln.stein@gmail.com,2014-11-14 08:57:49-05:00,Lincoln Stein,lincoln.stein@gmail.com,2014-11-14 13:57:49+00:00,False,gmail,gmail,* master,True,lstein_Devel-Cycle.git,lstein/Devel-Cycle.git,https://github.com/lstein/Devel-Cycle.git -a4ecd42bf365433e039f1130a196129e81ad2f43,Stefan Weil,sw@weilnetz.de,2023-11-24 19:44:04+01:00,Ariadne Conill,ariadne@ariadne.space,2023-11-29 20:02:44+00:00,False,weilnetz,ariadne,* master,True,pkgconf_pkgconf,pkgconf/pkgconf,https://github.com/pkgconf/pkgconf -412eace074514ada824e7a102765e37e2cda8eaa,Tony Locke,tlocke@tlocke.org.uk,2018-12-26 19:46:17+00:00,Tony Locke,tlocke@tlocke.org.uk,2018-12-26 19:48:05+00:00,False,tlocke,tlocke,* master,True,mfenniak_pg8000,mfenniak/pg8000,https://github.com/mfenniak/pg8000 -5b56ce0bdda86969c67fbd58cc343a215f0d6ae7,Neil Bowers,neil@bowers.com,2015-10-25 10:29:03+00:00,Neil Bowers,neil@bowers.com,2015-10-25 10:29:03+00:00,True,bowers,bowers,* master,True,neilb_Test-Cmd.git,neilb/Test-Cmd.git,https://github.com/neilb/Test-Cmd.git -c68ed1b1950f696408738806aed0a81177f06416,Stefan,96178532+stefan6419846@users.noreply.github.com,2024-03-07 15:47:17+01:00,GitHub,noreply@github.com,2024-03-07 14:47:17+00:00,False,users,github,* main,True,PyCQA_pyflakes,PyCQA/pyflakes,https://github.com/PyCQA/pyflakes -b51382cc5a9b5bf180b2f9c7b7da7e2d796be325,Nicolai,69975577+NicolaiRidani@users.noreply.github.com,2021-10-27 23:06:56+02:00,GitHub,noreply@github.com,2021-10-27 21:06:56+00:00,False,users,github,* master,True,django-cms_django-sekizai.git,django-cms/django-sekizai.git,https://github.com/django-cms/django-sekizai.git -fae13af0b2733cdff6363181b658292f9aee4550,Sergei Lebedev,slebedev@google.com,2023-11-12 09:33:47+00:00,Sergei Lebedev,slebedev@google.com,2023-11-12 09:33:47+00:00,False,google,google,* master,True,selectel_pyte,selectel/pyte,https://github.com/selectel/pyte -923e7d7ebc5c1f009755bdeb789ac25658ccce03,Masashi Toyoda,mtoyoda@acm.org,2017-04-20 17:24:22+09:00,GitHub,noreply@github.com,2017-04-20 08:24:22+00:00,True,acm,github,* master,True,mtoyoda_sl,mtoyoda/sl,https://github.com/mtoyoda/sl -dfe42a121d146e3d48abb039a5bee26e35551c55,Neil Bowers,neil@bowers.com,2012-02-14 09:30:25+00:00,Neil Bowers,neil@bowers.com,2012-02-14 09:30:25+00:00,False,bowers,bowers,* master,True,neilb_Graph-ReadWrite.git,neilb/Graph-ReadWrite.git,https://github.com/neilb/Graph-ReadWrite.git -02afcab28ca56eb5259904fd414baa89e9f50266,Thomas Kriechbaumer,thomas@kriechbaumer.name,2021-06-06 15:33:48+02:00,Thomas Kriechbaumer,Kriechi@users.noreply.github.com,2021-06-06 14:53:59+00:00,False,kriechbaumer,users,* master,True,python-hyper_hpack,python-hyper/hpack,https://github.com/python-hyper/hpack -d42f3240156f057bb596f981b646f4e305d83394,Matthew Newville,newville@cars.uchicago.edu,2022-02-05 20:33:17-06:00,Matthew Newville,newville@cars.uchicago.edu,2022-02-06 02:33:17+00:00,False,cars,cars,* master,True,newville_asteval.git,newville/asteval.git,https://github.com/newville/asteval.git -1f9c23f82cf760e4d085561cce21c5a52155905b,Alex Grönholm,alex.gronholm@nextday.fi,2018-04-29 20:48:35+03:00,Alex Grönholm,alex.gronholm@nextday.fi,2018-04-29 17:48:50+00:00,False,nextday,nextday,* master,True,agronholm_pythonfutures.git,agronholm/pythonfutures.git,https://github.com/agronholm/pythonfutures.git -64cc29cbacdb24d6768b53dbf2e07c2477599bcd,أحمد المحمودي (Ahmed El-Mahmoudy),aelmahmoudy@sabily.org,2011-11-09 22:11:18+02:00,أحمد المحمودي (Ahmed El-Mahmoudy),aelmahmoudy@sabily.org,2011-11-09 20:12:42+00:00,False,sabily,sabily,* master,True,aelmahmoudy_libitl-gobject.git,aelmahmoudy/libitl-gobject.git,https://github.com/aelmahmoudy/libitl-gobject.git -4edea8eb8e879bf4d89a3ed418bf90bb8e09d93b,Chris Seymour,christopher.seymour@nanoporetech.com,2023-02-25 14:52:22+00:00,Qi Wang,interwq@gmail.com,2023-03-09 19:44:02+00:00,False,nanoporetech,gmail,* dev,True,jemalloc_jemalloc,jemalloc/jemalloc,https://github.com/jemalloc/jemalloc -2653097170b40468c10ac8f8c4d0efdce362f803,Stelian Ionescu,sionescu@cddr.org,2012-04-21 21:58:33+02:00,Stelian Ionescu,sionescu@cddr.org,2012-04-21 19:58:33+00:00,False,cddr,cddr,* master,True,sionescu_fiveam.git,sionescu/fiveam.git,https://github.com/sionescu/fiveam.git +1db6bf5155762dc1b2071f028022fec566e937b8,Tatsuhiko Miyagawa,miyagawa@bulknews.net,2009-11-29 13:36:10+09:00,Tatsuhiko Miyagawa,miyagawa@bulknews.net,2009-11-29 04:36:10+00:00,False,bulknews,bulknews,* master,True,miyagawa_Plack-Middleware-Deflater.git,miyagawa/Plack-Middleware-Deflater.git,https://github.com/miyagawa/Plack-Middleware-Deflater.git +9946d3a8585c9e990df7007750a88a9a2295fa28,Eugeniy Kalinin,burump@gmail.com,2014-11-09 14:24:51-08:00,Eugeniy Kalinin,burump@gmail.com,2014-11-09 22:24:51+00:00,False,gmail,gmail,* master,True,eugeniy_pytest-tornado,eugeniy/pytest-tornado,https://github.com/eugeniy/pytest-tornado +840ff4c2bf6c752d9770f0dd8d64a841060cf9bc,Jason R. Coombs,jaraco@jaraco.com,2012-05-23 16:25:17-04:00,Jason R. Coombs,jaraco@jaraco.com,2012-05-23 20:25:17+00:00,False,jaraco,jaraco,* main,True,pytest-dev_pytest-runner.git,pytest-dev/pytest-runner.git,https://github.com/pytest-dev/pytest-runner.git +2a7f6541fae2f3d3b484867db493b7d9b7b56abb,Takafumi Arakaki,aka.tkf@gmail.com,2012-10-16 20:07:51+02:00,Takafumi Arakaki,aka.tkf@gmail.com,2012-10-16 18:07:51+00:00,False,gmail,gmail,* master,True,tkf_python-epc,tkf/python-epc,https://github.com/tkf/python-epc +7c9c9b82be882a3c48dc0b1bff93150268ae3dd0,Dima Kogan,dkogan@cds.caltech.edu,2010-01-12 21:39:02-08:00,Dima,dkogan@t42.(none),2010-01-13 05:39:02+00:00,False,cds,t42,* master,True,dkogan_feedgnuplot.git,dkogan/feedgnuplot.git,https://github.com/dkogan/feedgnuplot.git +02d0dbf31e045f2e65a3c75b448ca80651ed9537,Paul Tagliamonte,paultag@sunlightfoundation.com,2012-01-24 18:23:50-05:00,Paul Tagliamonte,paultag@sunlightfoundation.com,2012-01-24 23:23:50+00:00,False,sunlightfoundation,sunlightfoundation,* master,True,sunlightlabs_python-sunlight,sunlightlabs/python-sunlight,https://github.com/sunlightlabs/python-sunlight +f674870830a40e43feec51af81917b70460e13e5,Michael,scudette@gmail.com,2010-10-24 22:16:45+02:00,Michael,scudette@gmail.com,2010-10-24 20:16:45+00:00,False,gmail,gmail,* main,True,py4n6_pytsk.git,py4n6/pytsk.git,https://github.com/py4n6/pytsk.git +8c5e0368590edf1ef442d1ec07bcb0acfb5b8000,Richard Hughes,richard@hughsie.com,2012-06-18 10:29:57+01:00,Richard Hughes,richard@hughsie.com,2012-06-18 09:35:17+00:00,False,hughsie,hughsie,* main,True,hughsie_colord-gtk.git,hughsie/colord-gtk.git,https://github.com/hughsie/colord-gtk.git +01f6f1f88a6068684d5b51a15410644f1771ad9c,Daniel Lindsley,daniel@toastdriven.com,2010-03-20 15:56:38-05:00,Daniel Lindsley,daniel@toastdriven.com,2010-03-20 20:56:38+00:00,False,toastdriven,toastdriven,* master,True,django-haystack_django-haystack,django-haystack/django-haystack,https://github.com/django-haystack/django-haystack +32839d19707b5f11fc25270895b5f7d56c1313ae,chris,chris@ac150577-6901-3246-a117-cd8547e6756f,2009-11-08 09:01:51+00:00,chris,chris@ac150577-6901-3246-a117-cd8547e6756f,2009-11-08 09:01:51+00:00,False,ac150577-6901-3246-a117-cd8547e6756f,ac150577-6901-3246-a117-cd8547e6756f,* master,True,Simplistix_testfixtures,Simplistix/testfixtures,https://github.com/Simplistix/testfixtures +88e58cb8d3748833b5c124f64b083f095357c3e8,Daniele Varrazzo,daniele.varrazzo@gmail.com,2011-04-25 18:48:18+01:00,Daniele Varrazzo,daniele.varrazzo@gmail.com,2011-04-25 17:54:19+00:00,False,gmail,gmail,* master,True,pgxn_pgxnclient.git,pgxn/pgxnclient.git,https://github.com/pgxn/pgxnclient.git +0a3b29b468bb74d5d5a8883173ec322d7bfcbdca,Václav Šmilauer,eu@doxos.eu,2012-02-10 12:41:39+01:00,Václav Šmilauer,eu@doxos.eu,2012-02-10 11:41:39+00:00,False,doxos,doxos,* master,True,eudoxos_minieigen,eudoxos/minieigen,https://github.com/eudoxos/minieigen +333981716c000ceee352bdaa7028693b892e48f4,Georgi Valkov,georgi.t.valkov@gmail.com,2012-05-13 14:53:13+03:00,Georgi Valkov,georgi.t.valkov@gmail.com,2012-05-17 14:46:42+00:00,False,gmail,gmail,* main,True,gvalkov_python-evdev.git,gvalkov/python-evdev.git,https://github.com/gvalkov/python-evdev.git +919d45fc0a27690465b463b023eb3f63141be0b9,Pavel Holejsovsky,pavel.holejsovsky@gmail.com,2011-07-19 08:05:04+02:00,Pavel Holejsovsky,pavel.holejsovsky@gmail.com,2011-07-19 06:05:04+00:00,False,gmail,gmail,* master,True,lgi-devs_lgi,lgi-devs/lgi,https://github.com/lgi-devs/lgi +16acd4accb0edcbc46e3a4773bc95ca5ccb817e3,Simon Sapin,simon.sapin@exyr.org,2010-12-25 10:21:42+09:00,Simon Sapin,simon.sapin@exyr.org,2010-12-25 01:23:42+00:00,False,exyr,exyr,* main,True,SimonSapin_Frozen-Flask,SimonSapin/Frozen-Flask,https://github.com/SimonSapin/Frozen-Flask +f72107b5b3d12fc8b148749be05c58940c259756,Jason R. Coombs,jaraco@jaraco.com,2013-01-15 09:16:36-05:00,Jason R. Coombs,jaraco@jaraco.com,2013-01-15 14:16:36+00:00,False,jaraco,jaraco,* main,True,jaraco_path.py.git,jaraco/path.py.git,https://github.com/jaraco/path.py.git +a5b37d75ab7e790a9826d23af95f626e7d8c58d6,Alejandro Garrido Mota,garridomota@gmail.com,2009-12-22 02:46:35-04:30,Alejandro Garrido Mota,garridomota@gmail.com,2009-12-22 07:16:35+00:00,False,gmail,gmail,* master,True,mogaal_anypaper,mogaal/anypaper,https://github.com/mogaal/anypaper +080f561aeb684dc44770feeb9bc7787d0dc908b2,Lincoln D. Stein,lincoln.stein@gmail.com,2003-12-13 16:50:23+00:00,Gitpan,schwern+gitpan@pobox.com,2014-10-21 03:24:58+00:00,False,gmail,pobox,* master,True,lstein_Devel-Cycle.git,lstein/Devel-Cycle.git,https://github.com/lstein/Devel-Cycle.git +a5759cce0169d1a892edb2594ac05baa64919230,William Pitcock,nenolod@dereferenced.org,2011-07-25 02:02:08-05:00,William Pitcock,nenolod@dereferenced.org,2011-07-25 07:02:08+00:00,False,dereferenced,dereferenced,* master,True,pkgconf_pkgconf,pkgconf/pkgconf,https://github.com/pkgconf/pkgconf +2af943f3eaeac6a22df1e1d2a36e78272186740f,Tony Locke,tlocke@tlocke.org.uk,2013-06-23 14:37:32+01:00,Tony Locke,tlocke@tlocke.org.uk,2013-06-23 13:37:32+00:00,False,tlocke,tlocke,* master,True,mfenniak_pg8000,mfenniak/pg8000,https://github.com/mfenniak/pg8000 +0c9547c6041027249571134548d3d9f01b684b9a,Steven Knight,knight@baldmt.com,2000-01-12 21:36:21-08:00,Michael G. Schwern,schwern@pobox.com,2009-12-13 13:42:10+00:00,False,baldmt,pobox,* master,True,neilb_Test-Cmd.git,neilb/Test-Cmd.git,https://github.com/neilb/Test-Cmd.git +5fd511edfb6b9d67c93519cb0772f8eaea138b0f,Florent Xicluna,florent.xicluna@gmail.com,2013-01-25 01:52:29+01:00,Florent Xicluna,florent.xicluna@gmail.com,2013-01-25 00:52:29+00:00,False,gmail,gmail,* main,True,PyCQA_pyflakes,PyCQA/pyflakes,https://github.com/PyCQA/pyflakes +c24cea83d6c694f2163fe3f985cf4022f54580ee,Jonas Obrist,jonas.obrist@divio.ch,2010-06-29 18:01:22+02:00,Jonas Obrist,jonas.obrist@divio.ch,2010-06-29 16:01:22+00:00,False,divio,divio,* master,True,django-cms_django-sekizai.git,django-cms/django-sekizai.git,https://github.com/django-cms/django-sekizai.git +bf7df79e521c9465f09aa02609afda5ea1d486c3,Sergei Lebedev,superbobry@gmail.com,2011-06-21 13:14:59+04:00,Sergei Lebedev,superbobry@gmail.com,2011-06-21 09:14:59+00:00,False,gmail,gmail,* master,True,selectel_pyte,selectel/pyte,https://github.com/selectel/pyte +da2ef71f6d1dc07a8f5baf27d13acebb41ed86dd,Masashi Toyoda,mtoyoda@acm.org,2013-05-05 04:06:48+09:00,Masashi Toyoda,mtoyoda@acm.org,2013-05-04 19:06:48+00:00,False,acm,acm,* master,True,mtoyoda_sl,mtoyoda/sl,https://github.com/mtoyoda/sl +4c7e0d8d3e92d895e7a782a1be564d949b2a46b3,Neil Bowers,neil@bowers.com,2001-02-08 10:55:57-08:00,Michael G. Schwern,schwern@pobox.com,2009-12-11 23:49:56+00:00,False,bowers,pobox,* master,True,neilb_Graph-ReadWrite.git,neilb/Graph-ReadWrite.git,https://github.com/neilb/Graph-ReadWrite.git +cf72cbc5d1c0cfadbfd000d11d91bb128dd8ec5f,Cory Benfield,lukasaoz@gmail.com,2015-04-13 10:27:06-04:00,Cory Benfield,lukasaoz@gmail.com,2015-04-13 14:27:06+00:00,False,gmail,gmail,* master,True,python-hyper_hpack,python-hyper/hpack,https://github.com/python-hyper/hpack +67fb537e5cda0bd97ec00358694c4902ec2be5e3,Matt Newville,newville@cars.uchicago.edu,2012-03-31 18:00:55-05:00,Matt Newville,newville@cars.uchicago.edu,2012-03-31 23:00:55+00:00,False,cars,cars,* master,True,newville_asteval.git,newville/asteval.git,https://github.com/newville/asteval.git +a4445f05f79e2e0090bf19d1d4d3c7e30a0bd7e1,Alex Grönholm,alex.gronholm@nextday.fi,2017-12-01 00:42:35+02:00,Alex Grönholm,alex.gronholm@nextday.fi,2017-11-30 22:42:35+00:00,False,nextday,nextday,* master,True,agronholm_pythonfutures.git,agronholm/pythonfutures.git,https://github.com/agronholm/pythonfutures.git +b79cab5eecc0e84bc860f8dd25973c44ea094ab0,أحمد المحمودي (Ahmed El-Mahmoudy),aelmahmoudy@sabily.org,2011-10-08 22:26:47+02:00,أحمد المحمودي (Ahmed El-Mahmoudy),aelmahmoudy@sabily.org,2011-10-08 20:26:47+00:00,False,sabily,sabily,* master,True,aelmahmoudy_libitl-gobject.git,aelmahmoudy/libitl-gobject.git,https://github.com/aelmahmoudy/libitl-gobject.git +cc00a157703d5da61b9ffc29a80077c4aafa0277,Jason Evans,jasone@canonware.com,2009-06-25 18:06:48-07:00,Jason Evans,jasone@canonware.com,2009-06-26 01:06:48+00:00,False,canonware,canonware,* dev,True,jemalloc_jemalloc,jemalloc/jemalloc,https://github.com/jemalloc/jemalloc +1454981ac5f4f7ea8fe741a8125efbf0b09497ea,Marco Baringer,mb@bese.it,2005-07-20 10:43:55+02:00,Marco Baringer,mb@bese.it,2005-07-20 08:43:55+00:00,False,bese,bese,* master,True,sionescu_fiveam.git,sionescu/fiveam.git,https://github.com/sionescu/fiveam.git f53ece6fd1c513db38a8d27d5f2d0ee4c522f9e3,Clement Lefebvre,clement.lefebvre@linuxmint.com,2017-04-20 18:11:24+02:00,Clement Lefebvre,clement.lefebvre@linuxmint.com,2017-04-20 16:11:24+00:00,False,linuxmint,linuxmint,* master,True,linuxmint_python3-xapp.git,linuxmint/python3-xapp.git,https://github.com/linuxmint/python3-xapp.git -c34ddaa9a4041bc4c38414d3d0aeb1eb588d92f8,Dan Hemberger,daniel.hemberger@gmail.com,2022-11-09 22:39:19-08:00,Dan Hemberger,daniel.hemberger@gmail.com,2022-11-10 06:41:16+00:00,False,gmail,gmail,* main,True,hickford_MechanicalSoup,hickford/MechanicalSoup,https://github.com/hickford/MechanicalSoup -7c4e91646de5ed1c980e0bedfb1fe1d28a4c3606,Axel Naumann,Axel.Naumann@cern.ch,2023-10-06 09:47:32+02:00,Axel Naumann,Axel.Naumann@cern.ch,2023-10-06 07:47:32+00:00,False,cern,cern,* 1.4,True,VcDevel_Vc,VcDevel/Vc,https://github.com/VcDevel/Vc -159e619cb2fd583162851090eb4cf87d890bcab1,Marius Gedminas,marius@gedmin.as,2021-06-15 16:25:09+03:00,Marius Gedminas,marius@gedmin.as,2021-06-15 13:25:09+00:00,False,gedmin,gedmin,* master,True,gtimelog_gtimelog,gtimelog/gtimelog,https://github.com/gtimelog/gtimelog -7852314b0bb591cdf5040b2d2466b959c222bb5a,Zuul,zuul@review.opendev.org,2020-06-03 17:03:30+00:00,Gerrit Code Review,review@openstack.org,2020-06-03 17:03:30+00:00,True,review,openstack,* master,True,openstack_python-swiftclient.git,openstack/python-swiftclient.git,https://github.com/openstack/python-swiftclient.git -52723101237fc1a35d76edd47836343e0f6d7a49,Matthieu Dartiailh,m.dartiailh@gmail.com,2022-12-22 15:18:04+01:00,GitHub,noreply@github.com,2022-12-22 14:18:04+00:00,True,gmail,github,* main,True,pyvisa_pyvisa-py.git,pyvisa/pyvisa-py.git,https://github.com/pyvisa/pyvisa-py.git -e74e44310ef0795588d2c5240d04cc92b5d6999f,Nicolas Fella,nicolas.fella@gmx.de,2022-11-11 17:14:59+01:00,Nicolas Fella,nicolas.fella@gmx.de,2022-11-15 16:14:55+00:00,False,gmx,gmx,* master,True,plasma_plasma-nm.git,plasma/plasma-nm.git,https://invent.kde.org/plasma/plasma-nm.git -ff4b29716cb3dd6879c7fd8c17e2ee8a38a4a896,Dan Williams,dcbw@redhat.com,2009-08-26 13:11:13-05:00,Dan Williams,dcbw@redhat.com,2009-08-26 18:11:13+00:00,True,redhat,redhat,* main,True,GNOME_network-manager-applet,GNOME/network-manager-applet,https://gitlab.gnome.org/GNOME/network-manager-applet -8a447f8266697a44f39efe1f937f64957eb0a1de,Dave Hall,dave@etianen.com,2022-07-12 18:14:05+01:00,GitHub,noreply@github.com,2022-07-12 17:14:05+00:00,True,etianen,github,* master,True,etianen_django-python3-ldap,etianen/django-python3-ldap,https://github.com/etianen/django-python3-ldap -cbe4cdfcec85224822b40e7c775a6557f0c1a31d,Guillaume Seren,guillaumeseren@gmail.com,2023-12-08 18:39:01+01:00,GitHub,noreply@github.com,2023-12-08 17:39:01+00:00,True,gmail,github,* master,True,afewmail_afew,afewmail/afew,https://github.com/afewmail/afew -a73f88088c3ce057aadbc061a34f33a029698c3f,Hadley Wickham,h.wickham@gmail.com,2023-12-04 08:49:59-06:00,Hadley Wickham,h.wickham@gmail.com,2023-12-04 14:49:59+00:00,False,gmail,gmail,* main,True,r-lib_xml2,r-lib/xml2,https://github.com/r-lib/xml2 -b77809ee4712e0d1a4449eaedcad4656a21b5843,Dusty Mabe,dusty@dustymabe.com,2022-06-20 14:54:29-04:00,Dusty Mabe,dusty@dustymabe.com,2022-06-20 19:25:18+00:00,False,dustymabe,dustymabe,* main,True,dustymabe_vagrant-sshfs,dustymabe/vagrant-sshfs,https://github.com/dustymabe/vagrant-sshfs +a6cbdbd02205e3d39b62262aa29bc2bd70be99ac,Matt Hickford,matt.hickford@gmail.com,2014-05-26 02:06:11-07:00,Matt Hickford,matt.hickford@gmail.com,2014-05-26 09:06:11+00:00,False,gmail,gmail,* main,True,hickford_MechanicalSoup,hickford/MechanicalSoup,https://github.com/hickford/MechanicalSoup +dff47d2f8b9bcea6fff530dc0cf88b72dc01ff52,Matthias Kretz,kretz@kde.org,2010-06-14 17:25:08+02:00,Matthias Kretz,kretz@kde.org,2010-06-14 15:41:41+00:00,False,kde,kde,* 1.4,True,VcDevel_Vc,VcDevel/Vc,https://github.com/VcDevel/Vc +27b10ae65d5d81e17aea3d8981e21f85033c9de8,Marius Gedminas,marius@gedmin.as,2004-09-08 17:38:39+00:00,Marius Gedminas,marius@gedmin.as,2004-09-08 17:38:39+00:00,False,gedmin,gedmin,* master,True,gtimelog_gtimelog,gtimelog/gtimelog,https://github.com/gtimelog/gtimelog +b55acc34f0df54a48665eb3fbc7d9eb024dd7cb2,Chmouel Boudjnah,chmouel@chmouel.com,2012-05-08 11:17:04+01:00,Chmouel Boudjnah,chmouel@chmouel.com,2012-05-08 12:09:17+00:00,False,chmouel,chmouel,* master,True,openstack_python-swiftclient.git,openstack/python-swiftclient.git,https://github.com/openstack/python-swiftclient.git +6d414fd30f755b5c31b5d4a4b1a5549974edecfd,Hernan Grecco,hernan.grecco@gmail.com,2014-09-03 11:48:42-03:00,Hernan Grecco,hernan.grecco@gmail.com,2014-09-03 14:48:42+00:00,False,gmail,gmail,* main,True,pyvisa_pyvisa-py.git,pyvisa/pyvisa-py.git,https://github.com/pyvisa/pyvisa-py.git +5cab9552630928d9ed8c3f5ec85cfa0fe894e323,Lukáš Tinkl,lukas@kde.org,2013-06-11 16:13:30+02:00,Lukáš Tinkl,lukas@kde.org,2013-06-11 14:13:30+00:00,False,kde,kde,* master,True,plasma_plasma-nm.git,plasma/plasma-nm.git,https://invent.kde.org/plasma/plasma-nm.git +e65c12da5f0b2d2c3531d790953b5d288c03b4a7,Dan Williams,dcbw@src.gnome.org,2007-02-02 15:37:33+00:00,Dan Williams,dcbw@src.gnome.org,2007-02-02 15:37:33+00:00,False,src,src,* main,True,GNOME_network-manager-applet,GNOME/network-manager-applet,https://gitlab.gnome.org/GNOME/network-manager-applet +be8f0becf150fa8e45b81cba0c51609ce2b2fb76,Dave Hall,dave@etianen.com,2015-01-14 18:16:50+00:00,Dave Hall,dave@etianen.com,2015-01-14 18:16:50+00:00,False,etianen,etianen,* master,True,etianen_django-python3-ldap,etianen/django-python3-ldap,https://github.com/etianen/django-python3-ldap +6fcdb2af5fd3f432dd9e17ab82dd9a184e5a8c60,Justus Winter,4winter@informatik.uni-hamburg.de,2011-10-08 06:08:08+02:00,Justus Winter,4winter@informatik.uni-hamburg.de,2011-10-08 04:08:08+00:00,False,informatik,informatik,* master,True,afewmail_afew,afewmail/afew,https://github.com/afewmail/afew +1cfb345ffb437f5c93af84f6c9e3ccecbab375eb,hadley,h.wickham@gmail.com,2015-02-17 16:31:54-06:00,hadley,h.wickham@gmail.com,2015-02-17 22:32:33+00:00,False,gmail,gmail,* main,True,r-lib_xml2,r-lib/xml2,https://github.com/r-lib/xml2 +7fb63e3aa61f1934d5df586d0e98b4981ee4eb33,Dusty Mabe,dusty@dustymabe.com,2016-02-27 15:09:48-05:00,Dusty Mabe,dusty@dustymabe.com,2016-02-27 20:09:48+00:00,False,dustymabe,dustymabe,* main,True,dustymabe_vagrant-sshfs,dustymabe/vagrant-sshfs,https://github.com/dustymabe/vagrant-sshfs a349916187b05b700e56d1a88feb5136ff7542ad,Neil Bowers,neil@bowers.com,2014-07-17 18:07:50+01:00,Neil Bowers,neil@bowers.com,2014-07-17 17:07:50+00:00,False,bowers,bowers,* master,True,neilbowers_Test-Pod-Coverage,neilbowers/Test-Pod-Coverage,https://github.com/neilbowers/Test-Pod-Coverage -b2a46065be6a5f54eac0946f48baef1acc3e8642,Andrea Bolognani,abologna@redhat.com,2024-02-26 16:41:50+01:00,Andrea Bolognani,abologna@redhat.com,2024-03-08 10:29:45+00:00,False,redhat,redhat,* master,True,libvirt_libvirt-ruby.git,libvirt/libvirt-ruby.git,https://gitlab.com/libvirt/libvirt-ruby.git -f03efeb77475cafd05fa9ac1aedd0e98f1968c09,Emil Velikov,emil.velikov@collabora.com,2022-09-13 10:25:05+01:00,Emil Velikov,emil.l.velikov@gmail.com,2022-09-13 10:25:07+00:00,False,collabora,gmail,* master,True,mesa_waffle.git,mesa/waffle.git,https://gitlab.freedesktop.org/mesa/waffle.git -92b4622350058dbd84e4f8e7416af5a10166fd48,Jari Aalto,jari.aalto@cante.net,2016-10-29 12:19:46+03:00,Jari Aalto,jari.aalto@cante.net,2016-10-29 09:19:46+00:00,False,cante,cante,* master,True,jaalto_project--perl-depends.git,jaalto/project--perl-depends.git,https://github.com/jaalto/project--perl-depends.git -20ce949bd8428eb416e85b45263dfd3f986865f7,Christoph Zwerschke,cito@online.de,2023-09-06 16:55:20+02:00,Christoph Zwerschke,cito@online.de,2023-09-06 15:09:04+00:00,False,online,online,* main,True,PyGreSQL_PyGreSQL,PyGreSQL/PyGreSQL,https://github.com/PyGreSQL/PyGreSQL -d37bf66897fd9a047555c32256e4ed29ddc299d2,patrick-g2,patrickg.github@free.fr,2022-06-11 11:30:24+02:00,patrick-g2,patrickg.github@free.fr,2022-06-11 09:30:24+00:00,False,free,free,* master,True,YJesus_Unhide.git,YJesus/Unhide.git,https://github.com/YJesus/Unhide.git -9981930694f06d3e796c4c5594158d6ecd29724b,edzer,edzer.pebesma@uni-muenster.de,2023-10-01 20:19:05+02:00,edzer,edzer.pebesma@uni-muenster.de,2023-10-01 18:19:05+00:00,True,uni-muenster,uni-muenster,* main,True,edzer_sp.git,edzer/sp.git,https://github.com/edzer/sp.git -61f1eb22718fcd9796b47a98702d161ff323a532,Damien Cassou,damien@cassou.me,2023-03-03 08:54:21+01:00,GitHub,noreply@github.com,2023-03-03 07:54:21+00:00,True,cassou,github,* master,True,DamienCassou_beginend.git,DamienCassou/beginend.git,https://github.com/DamienCassou/beginend.git -190c2b223ee5e71dbd311422355524a7125ec03b,Benji York,benji@benjiyork.com,2023-11-29 07:50:34-06:00,GitHub,noreply@github.com,2023-11-29 13:50:34+00:00,True,benjiyork,github,* master,True,benji-york_manuel,benji-york/manuel,https://github.com/benji-york/manuel -c984399002078d629b93183525c1b28b15ce183b,brian d foy,brian.d.foy@gmail.com,2022-01-07 19:15:49-05:00,brian d foy,brian.d.foy@gmail.com,2022-01-08 00:15:49+00:00,False,gmail,gmail,* master,True,briandfoy_test-prereq.git,briandfoy/test-prereq.git,https://github.com/briandfoy/test-prereq.git -01cdc97c3ae62834bce88b8bdb69e845f682785d,James Turk,dev@jamesturk.net,2020-12-10 16:53:31-05:00,James Turk,dev@jamesturk.net,2020-12-10 21:53:31+00:00,False,jamesturk,jamesturk,* main,True,jamesturk_django-markupfield,jamesturk/django-markupfield,https://github.com/jamesturk/django-markupfield -c6c09b251264472d47c5f025901d4d1958ce0238,James Dingwall,james.dingwall@ncr.com,2021-02-16 14:08:38+00:00,James Dingwall,james.dingwall@ncr.com,2021-02-16 14:08:38+00:00,False,ncr,ncr,* master,True,JKDingwall_autolog.git,JKDingwall/autolog.git,https://github.com/JKDingwall/autolog.git -01266f1ec2af398e351dfbce579b6629b02a7fa9,Barry Warsaw,barry@python.org,2023-06-10 05:38:36+00:00,Barry Warsaw,barry@python.org,2023-06-10 05:38:36+00:00,True,python,python,* main,True,warsaw_flufl.i18n,warsaw/flufl.i18n,https://gitlab.com/warsaw/flufl.i18n -fa002177d0c72a8c3ffb8d0f18f9472b3ee3bbbc,Richard Nelson,unixabg@gmail.com,2021-08-30 18:38:14-05:00,Richard Nelson,unixabg@gmail.com,2021-08-30 23:38:14+00:00,False,gmail,gmail,* master,True,unixabg_ifetch-tools,unixabg/ifetch-tools,https://github.com/unixabg/ifetch-tools -48a0b47ed57b9f5b735b89b2a6bfd0a8fd8423dc,Erik Welch,erik.n.welch@gmail.com,2024-01-23 22:18:47-06:00,GitHub,noreply@github.com,2024-01-24 04:18:47+00:00,True,gmail,github,* master,True,pytoolz_cytoolz,pytoolz/cytoolz,https://github.com/pytoolz/cytoolz -2d9c99f0590144d6102aa4e60d5861b69c499acd,weakish,weakish@gmail.com,2023-09-15 07:55:59+00:00,GitHub,noreply@github.com,2023-09-15 07:55:59+00:00,True,gmail,github,* master,True,frostming_legit,frostming/legit,https://github.com/frostming/legit -c564cc6953cefd3e2ccf70d1e86f255fe236d98b,Tanel Suurhans,tanel.suurhans@perfectline.ee,2012-02-28 16:53:47+02:00,Tanel Suurhans,tanel.suurhans@perfectline.ee,2012-02-28 14:53:47+00:00,False,perfectline,perfectline,* master,True,perfectline_validates_email.git,perfectline/validates/email.git,https://github.com/perfectline/validates_email.git -a5dab31158599626c78b5246e760dd5a38c4c3e6,Sean Gillies,sean.gillies@gmail.com,2024-03-11 11:30:13-06:00,GitHub,noreply@github.com,2024-03-11 17:30:13+00:00,False,gmail,github,* main,True,Toblerity_Fiona.git,Toblerity/Fiona.git,https://github.com/Toblerity/Fiona.git -e210fbae880a68e9b53189488be7fe926a38ef26,Michał Pasternak,michal.dtz@gmail.com,2022-06-14 12:53:35+02:00,GitHub,noreply@github.com,2022-06-14 10:53:35+00:00,True,gmail,github,* master,True,yourlabs_django-session-security,yourlabs/django-session-security,https://github.com/yourlabs/django-session-security -9736ebd6b9c6f43ba39c516eb90c961129d53d50,Alexander Wirt,alexander.wirt@credativ.de,2017-07-11 14:37:11+02:00,Alexander Wirt,alexander.wirt@credativ.de,2017-07-11 12:37:11+00:00,False,credativ,credativ,* master,True,formorer_pkg-ferm,formorer/pkg-ferm,https://github.com/formorer/pkg-ferm -0f59d595624361c429fd1bba9c5985cf968bdff1,Yannick Mauray (frenchguych),yannick@frenchguy.ch,2021-08-26 22:57:51+02:00,Luke from DC,lukefromdc@hushmail.com,2021-08-26 21:03:29+00:00,False,frenchguy,hushmail,* master,True,mate-desktop_mate-panel.git,mate-desktop/mate-panel.git,https://github.com/mate-desktop/mate-panel.git -22b52d4221da7284c2361d11aae225da18a29f00,Axel Beckert,abe@deuxchevaux.org,2021-08-28 19:41:37+02:00,Axel Beckert,abe@deuxchevaux.org,2021-08-28 17:41:37+00:00,True,deuxchevaux,deuxchevaux,* master,True,elmar_autocutsel-debian,elmar/autocutsel-debian,https://github.com/elmar/autocutsel-debian -a3be31154f2e4c928ae6dcba9fe7e89e7678c74b,Yann Collet,Cyan4973@users.noreply.github.com,2024-03-12 11:38:24-07:00,GitHub,noreply@github.com,2024-03-12 18:38:24+00:00,True,users,github,* dev,True,lz4_lz4,lz4/lz4,https://github.com/lz4/lz4 +96fede517c1349cc541e0628883274e73cdde3bb,David Lutterkort,dlutter@redhat.com,2007-11-12 12:08:24-08:00,David Lutterkort,dlutter@redhat.com,2007-11-12 20:08:24+00:00,False,redhat,redhat,* master,True,libvirt_libvirt-ruby.git,libvirt/libvirt-ruby.git,https://gitlab.com/libvirt/libvirt-ruby.git +58fc223acb28bcb5d87ea79e79a6ca80ea98258e,Chad Versace,chad.versace@linux.intel.com,2012-02-22 21:27:00-08:00,Chad Versace,chad.versace@linux.intel.com,2012-04-08 19:37:33+00:00,False,linux,linux,* master,True,mesa_waffle.git,mesa/waffle.git,https://gitlab.freedesktop.org/mesa/waffle.git +a13e1a64b71f97e84269c0eaf0063eed237f529e,Jari Aalto,jari.aalto@cante.net,2010-03-18 11:22:08+02:00,Jari Aalto,jari.aalto@cante.net,2010-03-18 09:22:08+00:00,False,cante,cante,* master,True,jaalto_project--perl-depends.git,jaalto/project--perl-depends.git,https://github.com/jaalto/project--perl-depends.git +ecfd5f0b2aacb0dd4d4c50676001915d661831a0,Marc G. Fournier,scrappy@postgresql.org,1998-01-25 06:09:34+00:00,Marc G. Fournier,scrappy@postgresql.org,1998-01-25 06:09:34+00:00,False,postgresql,postgresql,* main,True,PyGreSQL_PyGreSQL,PyGreSQL/PyGreSQL,https://github.com/PyGreSQL/PyGreSQL +ef9f99371757ae9a85b4d9b148c954d79988de90,patrick-g2,patrickg.github@free.fr,2021-01-23 17:06:11+01:00,patrick-g2,patrickg.github@free.fr,2021-01-23 16:06:11+00:00,False,free,free,* master,True,YJesus_Unhide.git,YJesus/Unhide.git,https://github.com/YJesus/Unhide.git +ed145eb9c5f99f2e02a65f4641c084c1b8b9ada9,Edzer Pebesma,edzer.pebesma@uni-muenster.de,2015-12-19 11:23:36+01:00,Edzer Pebesma,edzer.pebesma@uni-muenster.de,2015-12-19 10:23:36+00:00,False,uni-muenster,uni-muenster,* main,True,edzer_sp.git,edzer/sp.git,https://github.com/edzer/sp.git +1b53cb8802f4e7de35f5f3e794bfffdaa70a03bc,Damien Cassou,damien@cassou.me,2015-05-29 13:11:10+02:00,Damien Cassou,damien@cassou.me,2015-05-29 11:11:10+00:00,False,cassou,cassou,* master,True,DamienCassou_beginend.git,DamienCassou/beginend.git,https://github.com/DamienCassou/beginend.git +2a2f1a3d054a4ebf21bde00472dec441f2a7ac8a,Benji York,benji@benjiyork.com,2008-10-17 21:31:23+00:00,Benji York,benji@benjiyork.com,2008-10-17 21:31:23+00:00,False,benjiyork,benjiyork,* master,True,benji-york_manuel,benji-york/manuel,https://github.com/benji-york/manuel +2cb6b26725dfbe09b02c49052705bd26555f86f9,brian d foy,brian.d.foy@gmail.com,2004-09-08 00:41:17+00:00,brian d foy,brian.d.foy@gmail.com,2004-09-08 00:41:17+00:00,False,gmail,gmail,* master,True,briandfoy_test-prereq.git,briandfoy/test-prereq.git,https://github.com/briandfoy/test-prereq.git +eabe6eb4d71ce89affa33e3c80c206153abdc0aa,James Turk,james.p.turk@gmail.com,2009-06-16 16:18:00-04:00,James Turk,james.p.turk@gmail.com,2009-06-16 20:18:00+00:00,False,gmail,gmail,* main,True,jamesturk_django-markupfield,jamesturk/django-markupfield,https://github.com/jamesturk/django-markupfield +b70598403558feb4e726c43f3da69113bea49c78,Marcos Fouces,mfouces@yahoo.es,2016-12-08 13:23:20+01:00,Marcos Fouces,mfouces@yahoo.es,2016-12-08 12:23:20+00:00,False,yahoo,yahoo,* master,True,JKDingwall_autolog.git,JKDingwall/autolog.git,https://github.com/JKDingwall/autolog.git +857ecd713cb452ea4a2f5c65a42a070494e1fc38,Barry Warsaw,barry@python.org,2009-11-11 22:02:49-06:00,Barry Warsaw,barry@python.org,2009-11-12 04:02:49+00:00,False,python,python,* main,True,warsaw_flufl.i18n,warsaw/flufl.i18n,https://gitlab.com/warsaw/flufl.i18n +b15ac417c268ba7d18fca8679c5d851b9064895f,Richard Nelson,unixabg@gmail.com,2009-01-30 19:40:30-06:00,Richard Nelson,unixabg@gmail.com,2009-01-31 01:40:30+00:00,False,gmail,gmail,* master,True,unixabg_ifetch-tools,unixabg/ifetch-tools,https://github.com/unixabg/ifetch-tools +62dd5bfac0546ccd802d970d0b888b0cb9fd5e4b,Erik Welch,erik.n.welch@gmail.com,2014-04-03 12:20:59-04:00,Erik Welch,erik.n.welch@gmail.com,2014-04-03 16:20:59+00:00,False,gmail,gmail,* master,True,pytoolz_cytoolz,pytoolz/cytoolz,https://github.com/pytoolz/cytoolz +e38a99f12cc4c0e7db99f675b4540ee9575c03d6,Kenneth Reitz,me@kennethreitz.com,2011-06-25 01:58:29-04:00,Kenneth Reitz,me@kennethreitz.com,2011-06-25 05:58:29+00:00,False,kennethreitz,kennethreitz,* master,True,frostming_legit,frostming/legit,https://github.com/frostming/legit +f441e3cb3b815fe4b90221617181459a3cb66aef,Tanel Suurhans,tanel.suurhans@perfectline.ee,2010-09-07 14:58:42+03:00,Tanel Suurhans,tanel.suurhans@perfectline.ee,2010-09-07 11:58:42+00:00,False,perfectline,perfectline,* master,True,perfectline_validates_email.git,perfectline/validates/email.git,https://github.com/perfectline/validates_email.git +70f5a3e219bb4cbdbd802de423b07735c3fff879,seang,seang@b426a367-1105-0410-b9ff-cdf4ab011145,2007-11-16 20:18:52+00:00,seang,seang@b426a367-1105-0410-b9ff-cdf4ab011145,2007-11-16 20:18:52+00:00,False,b426a367-1105-0410-b9ff-cdf4ab011145,b426a367-1105-0410-b9ff-cdf4ab011145,* main,True,Toblerity_Fiona.git,Toblerity/Fiona.git,https://github.com/Toblerity/Fiona.git +316aa69711446fa1b4abcf7a8a665ad943436cb5,James Pic,jamespic@gmail.com,2012-05-17 03:40:37-07:00,James Pic,jamespic@gmail.com,2012-05-17 10:40:37+00:00,False,gmail,gmail,* master,True,yourlabs_django-session-security,yourlabs/django-session-security,https://github.com/yourlabs/django-session-security +d0391650b47bec86401fe03d1f658c7a5f8ec831,Alexander Wirt,formorer@debian.org,2012-09-09 10:15:40+02:00,Alexander Wirt,formorer@debian.org,2012-09-09 08:15:40+00:00,False,debian,debian,* master,True,formorer_pkg-ferm,formorer/pkg-ferm,https://github.com/formorer/pkg-ferm +c51ef797a707f4e2c6f9688d4378f2b0e9898a66,Perberos,perberos@gmail.com,2011-12-01 22:56:10-03:00,Perberos,perberos@gmail.com,2011-12-02 01:56:10+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-panel.git,mate-desktop/mate-panel.git,https://github.com/mate-desktop/mate-panel.git +e10beeb8fb88ead4749e73af9dba37808929236f,Michael Witrant,mike@lepton.fr,2004-09-08 19:33:36+00:00,Michael Witrant,mike@lepton.fr,2004-09-08 19:33:36+00:00,False,lepton,lepton,* master,True,elmar_autocutsel-debian,elmar/autocutsel-debian,https://github.com/elmar/autocutsel-debian +374d6ac35cf784481d60634e9b8e6ca8be7c9302,Yann Collet,yann.collet.73@gmail.com,2014-04-15 15:03:17+02:00,Yann Collet,yann.collet.73@gmail.com,2014-04-15 13:03:17+00:00,False,gmail,gmail,* dev,True,lz4_lz4,lz4/lz4,https://github.com/lz4/lz4 2e67f32eecffea8d02151dfd7ebfcc218fd58bb0,mtg,mateusz.golicz@sileman.pl,2015-03-27 09:35:48+01:00,mtg,mateusz.golicz@sileman.pl,2015-03-27 08:35:48+00:00,False,sileman,sileman,* master,True,mteg_braa,mteg/braa,https://github.com/mteg/braa -0c86430a710c0ea152e8cae317b74de9c68f5f1c,hatukanezumi,hatuka@nezumi.nu,2014-03-19 17:18:52+09:00,hatukanezumi,hatuka@nezumi.nu,2014-03-19 08:18:52+00:00,False,nezumi,nezumi,* master,True,hatukanezumi_sombok,hatukanezumi/sombok,https://github.com/hatukanezumi/sombok -194940e88a32906c6cc8d95d2aab740b5dfcc975,David Coppit,david@coppit.org,2015-04-18 13:07:13-04:00,David Coppit,david@coppit.org,2015-04-18 17:07:13+00:00,False,coppit,coppit,* master,True,coppit_filehandle-unget.git,coppit/filehandle-unget.git,https://github.com/coppit/filehandle-unget.git -9c3fc230ba4fa50c062a1a3d64e038c0d94f0b2c,Lenard Hess,lenard@rrhess.de,2024-02-28 08:31:34+01:00,GitHub,noreply@github.com,2024-02-28 07:31:34+00:00,True,rrhess,github,* main,True,ddclient_ddclient.git,ddclient/ddclient.git,https://github.com/ddclient/ddclient.git -058d5a56c284c771f1fb5fad67d4ef2eeb4d1916,John L. Villalovos,john@sodarock.com,2023-08-18 23:12:44-07:00,Nejc Habjan,hab.nejc@gmail.com,2023-08-19 06:25:46+00:00,False,sodarock,gmail,* main,True,python-gitlab_python-gitlab.git,python-gitlab/python-gitlab.git,https://github.com/python-gitlab/python-gitlab.git -8d69a05735df43e7f7a32e95a48da062b6dc86da,Bruno Pagani,bruno.n.pagani@gmail.com,2013-04-23 17:29:23+02:00,Bruno Pagani,bruno.n.pagani@gmail.com,2013-04-23 15:29:23+00:00,True,gmail,gmail,* master,True,Bumblebee-Project_Bumblebee,Bumblebee-Project/Bumblebee,https://github.com/Bumblebee-Project/bbswitch -8e3f7959686e382b6e29d600c9c856608364d3f9,Elmar S. Heeb,elmar@heebs.ch,2020-09-27 17:30:56+02:00,GitHub,noreply@github.com,2020-09-27 15:30:56+00:00,True,heebs,github,* master,True,elmar_aptitude-robot,elmar/aptitude-robot,https://github.com/elmar/aptitude-robot -7d17b180ab97a67787d445769254f2f2af5e2302,tamplan,tamplan@free.fr,2020-06-28 15:02:32+02:00,raveit65,mate@raveit.de,2020-06-28 15:04:19+00:00,False,free,raveit,* master,True,mate-desktop_mate-session-manager.git,mate-desktop/mate-session-manager.git,https://github.com/mate-desktop/mate-session-manager.git -0fb16bad9c851c11d171ff601bf8adae9ffc6fdb,Alan Coopersmith,alan.coopersmith@oracle.com,2022-07-17 13:39:34-07:00,Alan Coopersmith,alan.coopersmith@oracle.com,2022-07-17 20:39:39+00:00,False,oracle,oracle,* master,True,xorg_lib_libxi.git,xorg/lib/libxi.git,https://gitlab.freedesktop.org/xorg/lib/libxi.git -1aeb4ffd0e145d99781d586199107c860c177584,Eddie Cohen,eddie.cohen@primesense.com,2013-10-21 14:03:53+03:00,Eddie Cohen,eddie.cohen@primesense.com,2013-10-21 11:03:53+00:00,True,primesense,primesense,* master,True,PrimeSense_Sensor.git,PrimeSense/Sensor.git,https://github.com/PrimeSense/Sensor.git -fcf22c3767c07cdbaa5a996f05b0d2b8d1dfd303,tsujan,tsujan2000@gmail.com,2024-03-12 17:15:36+03:30,GitHub,noreply@github.com,2024-03-12 13:45:36+00:00,False,gmail,github,* master,True,lxqt_pcmanfm-qt.git,lxqt/pcmanfm-qt.git,https://github.com/lxqt/pcmanfm-qt.git -4d305e387a6131c94b87c20595429389a3c55c02,Jari Sundell,sundell.software@gmail.com,2016-10-11 06:43:47+09:00,GitHub,noreply@github.com,2016-10-10 21:43:47+00:00,True,gmail,github,* master,True,rakshasa_libtorrent.git,rakshasa/libtorrent.git,https://github.com/rakshasa/libtorrent.git -6633934923287f03734bc751493bc6d0f6065f0f,Nikita Bulai,nbulaj@users.noreply.github.com,2024-02-12 11:19:22+03:00,GitHub,noreply@github.com,2024-02-12 08:19:22+00:00,True,users,github,* main,True,doorkeeper-gem_doorkeeper,doorkeeper-gem/doorkeeper,https://github.com/doorkeeper-gem/doorkeeper -ccfcb9285d1d578e2cc6cf14ea6111ce3c98aa5b,Dimitri Papadopoulos,3234522+DimitriPapadopoulos@users.noreply.github.com,2021-08-09 13:38:16+02:00,Hans Johnson,hans.j.johnson@gmail.com,2021-09-08 21:47:33+00:00,False,users,gmail,* master,True,NIFTI-Imaging_nifti_clib.git,NIFTI-Imaging/nifti/clib.git,https://github.com/NIFTI-Imaging/nifti_clib.git -d77590614cc4da46a142207b5d9fc5cfdc937032,Miro Hrončok,miro@hroncok.cz,2022-11-21 13:33:06+01:00,Miro Hrončok,miro@hroncok.cz,2022-11-21 12:33:06+00:00,False,hroncok,hroncok,* master,True,admesh_admesh,admesh/admesh,https://github.com/admesh/admesh -14aefddd4952a29958f3110bd884bf90b9d5fa9a,gweis,g.weis@uq.edu.au,2022-03-13 10:00:51+10:00,GitHub,noreply@github.com,2022-03-13 00:00:51+00:00,True,uq,github,* master,True,gweis_isodate,gweis/isodate,https://github.com/gweis/isodate -070a4064f36cd3fed4078f3a3002616e0df1ef8b,Hugo Osvaldo Barrera,hugo@barrera.io,2021-06-12 10:29:41+02:00,GitHub,noreply@github.com,2021-06-12 08:29:41+00:00,False,barrera,github,* main,True,pimutils_todoman.git,pimutils/todoman.git,https://github.com/pimutils/todoman.git -eb97debe824a7d37d600acef849fa98c056553c1,Jeff Pollard,jeff.pollard@gmail.com,2015-02-16 09:14:17-08:00,Jeff Pollard,jeff.pollard@gmail.com,2015-02-16 17:14:17+00:00,True,gmail,gmail,* master,True,fluxx_exam,fluxx/exam,https://github.com/fluxx/exam -8474b2509fb4326dcf60de7d06dee3c356d32794,Ramiro Berrelleza,rberrelleza@gmail.com,2017-07-05 20:52:17-07:00,GitHub,noreply@github.com,2017-07-06 03:52:17+00:00,True,gmail,github,* master,True,hipchat_hipchat-rb,hipchat/hipchat-rb,https://github.com/hipchat/hipchat-rb -06e664b63cc404e50870e660ed547118c5527bb2,Arvin Schnell,aschnell@suse.com,2023-03-31 08:12:33+00:00,GitHub,noreply@github.com,2023-03-31 08:12:33+00:00,True,suse,github,* master,True,openSUSE_snapper.git,openSUSE/snapper.git,https://github.com/openSUSE/snapper.git -bfc4153a5610519d45bb18a57a815370f7093963,Sven Oliver Moll,svolli@svolli.de,2021-12-15 12:30:16+01:00,Sven Oliver Moll,svolli@svolli.de,2021-12-15 11:30:16+00:00,False,svolli,svolli,* master,True,svolli_pngphoon,svolli/pngphoon,https://git.h8u.de/svolli/pngphoon -eb20c53bc4d5c8ae42bc97d7b229aa10dd698827,Stefan Breunig,stefan-github@yrden.de,2015-09-04 16:35:11+02:00,Stefan Breunig,stefan-github@yrden.de,2015-09-04 14:35:11+00:00,True,yrden,yrden,* master,True,breunigs_python-librtmp-debian,breunigs/python-librtmp-debian,https://github.com/breunigs/python-librtmp-debian -a3a5b4ff436291831608b4fc658a5392f9855bf1,Eric S. Raymond,esr@thyrsus.com,2020-02-04 06:51:26-05:00,Eric S. Raymond,esr@thyrsus.com,2020-02-04 11:51:26+00:00,False,thyrsus,thyrsus,* master,True,esr_doclifter,esr/doclifter,https://gitlab.com/esr/doclifter -75ea320ed4584266b279f8c69059cfc8e1f6d35d,Ihor Sychevskyi,arhell333@gmail.com,2022-10-20 00:07:38+03:00,GitHub,noreply@github.com,2022-10-19 21:07:38+00:00,False,gmail,github,* master,True,carljm_django-model-utils.git,carljm/django-model-utils.git,https://github.com/carljm/django-model-utils.git -27aecba1598a539a1fe6bcda09ab1d8f7cf7f89c,Christian Hergert,chergert@redhat.com,2017-06-02 17:38:42-07:00,Christian Hergert,chergert@redhat.com,2017-06-03 00:38:42+00:00,False,redhat,redhat,* main,True,GNOME_template-glib.git,GNOME/template-glib.git,https://gitlab.gnome.org/GNOME/template-glib.git -281254bf3883ed17f4756243d78ac906342211d8,Michał Trojnara,Michal.Trojnara@stunnel.org,2023-04-26 10:00:23+02:00,Michał Trojnara,Michal.Trojnara@stunnel.org,2023-04-26 08:00:48+00:00,False,stunnel,stunnel,* master,True,OpenSC_libp11.git,OpenSC/libp11.git,https://github.com/OpenSC/libp11.git -1df7af0ceeaddda9bab4b749d944ab817b13b140,Howard Butler,hobu.inc@gmail.com,2022-02-22 15:54:45-06:00,GitHub,noreply@github.com,2022-02-22 21:54:45+00:00,False,gmail,github,* main,True,libspatialindex_libspatialindex.git,libspatialindex/libspatialindex.git,https://github.com/libspatialindex/libspatialindex.git -b8149cec77d16357d11b08f86de3b13e6fe02fa0,Steven Loria,sloria1@gmail.com,2024-03-06 10:47:09-05:00,Steven Loria,sloria1@gmail.com,2024-03-06 15:47:09+00:00,False,gmail,gmail,* dev,True,marshmallow-code_marshmallow.git,marshmallow-code/marshmallow.git,https://github.com/marshmallow-code/flask-marshmallow.git -2ba488803a65c7d695689da27b28f4e8ff8fdb43,Nightsuki,9131047+Nightsuki@users.noreply.github.com,2024-03-04 22:28:31+08:00,GitHub,noreply@github.com,2024-03-04 14:28:31+00:00,False,users,github,* master,True,sqlmapproject_sqlmap.git,sqlmapproject/sqlmap.git,https://github.com/sqlmapproject/sqlmap.git -b5f62979ed77e526877c9c67dbb8568a3511347c,GhostlyDark,31742919+GhostlyDark@users.noreply.github.com,2022-03-08 14:31:09+01:00,Dorian Fevrier,fevrier.dorian@yahoo.fr,2022-03-08 13:57:12+00:00,False,users,yahoo,* master,True,mupen64plus_mupen64plus-ui-console.git,mupen64plus/mupen64plus-ui-console.git,https://github.com/mupen64plus/mupen64plus-ui-console.git -0dc548f065a7a26adacc854343cc66020c19799d,Tobias Frost,tobi@debian.org,2023-06-09 18:41:34+02:00,Tobias Frost,tobi@debian.org,2023-06-09 16:41:34+00:00,False,debian,debian,* trunk,True,coldtobi_solarpowerlog,coldtobi/solarpowerlog,https://github.com/coldtobi/solarpowerlog -040f8fd4896334aa7d7ec5e7317367662fcc4691,Barry Warsaw,barry@python.org,2020-06-17 20:56:07+00:00,Barry Warsaw,barry@python.org,2020-06-17 20:56:07+00:00,True,python,python,* master,True,warsaw_flufl.testing.git,warsaw/flufl.testing.git,https://gitlab.com/warsaw/flufl.testing.git -4c030eb5db91fdf83bd1417bebf5423d21eade0c,Tony Narlock,tony@git-pull.com,2023-08-27 06:04:13-05:00,GitHub,noreply@github.com,2023-08-27 11:04:13+00:00,True,git-pull,github,* master,True,emre_kaptan.git,emre/kaptan.git,https://github.com/emre/kaptan.git -8e9f0b4341cac7b0d128c25a53872d47eab015dc,Tony Paulic,tony.paulic@gmail.com,2023-04-16 19:16:41-04:00,Tony Paulic,tony.paulic@gmail.com,2023-04-16 23:16:41+00:00,False,gmail,gmail,* master,True,panel-plugins_xfce4-genmon-plugin,panel-plugins/xfce4-genmon-plugin,https://gitlab.xfce.org/panel-plugins/xfce4-genmon-plugin -ef7425b26dd5cc60cd3684d2012e3f3c593c26ae,Daniel P. Berrangé,berrange@redhat.com,2021-09-06 11:42:42+01:00,Daniel P. Berrangé,berrange@redhat.com,2021-09-06 10:42:42+00:00,False,redhat,redhat,* master,True,libvirt_libvirt-glib.git,libvirt/libvirt-glib.git,https://gitlab.com/libvirt/libvirt-glib.git -6b6f13385096c0fc862b420560b520b6960f718f,Bruno Oliveira,nicoddemus@gmail.com,2022-11-05 14:36:30-03:00,GitHub,noreply@github.com,2022-11-05 17:36:30+00:00,True,gmail,github,* master,True,pytest-dev_pytest-xdist,pytest-dev/pytest-xdist,https://github.com/pytest-dev/pytest-xdist -2180f8104b2318a5dd2f6978182a04714533b838,Helio Cola,helio@tcard.io,2024-01-18 21:22:42-05:00,GitHub,noreply@github.com,2024-01-19 02:22:42+00:00,True,tcard,github,* master,True,jgarber_redcloth.git,jgarber/redcloth.git,https://github.com/jgarber/redcloth.git -ad90519e52ef7dfa1301388e17a4fa7b52ea68f7,Neil Bowers,neil@bowers.com,2016-02-07 22:30:28+00:00,Neil Bowers,neil@bowers.com,2016-02-07 22:30:28+00:00,False,bowers,bowers,* master,True,neilb_Lingua-PT-Stemmer.git,neilb/Lingua-PT-Stemmer.git,https://github.com/neilb/Lingua-PT-Stemmer.git -fb6face2ff8e56f9e7bdd26fb8c2a1cae948af54,Dave Cross,dave@dave.org.uk,2008-03-08 13:12:15+00:00,Dave Cross,dave@dave.org.uk,2008-03-08 13:12:15+00:00,False,dave,dave,* master,True,p5-number-fraction_number-fraction.git,p5-number-fraction/number-fraction.git,https://github.com/p5-number-fraction/number-fraction.git -aadf747af92e0085395987cfc67d91b0706d54d2,Tuomas Räsänen,tuomasjjrasanen@tjjr.fi,2016-08-22 21:40:08+03:00,Tuomas Räsänen,tuomasjjrasanen@tjjr.fi,2016-08-22 18:40:08+00:00,True,tjjr,tjjr,* master,True,tuomasjjrasanen_python-uinput,tuomasjjrasanen/python-uinput,https://github.com/tuomasjjrasanen/python-uinput -7a5cdbbc15b5c8a6ec7287e1cf738ab8655b200c,Mark Wong,markwkm@gmail.com,2023-05-21 12:58:43-07:00,Mark Wong,markwkm@gmail.com,2023-05-21 19:58:43+00:00,False,gmail,gmail,* main,True,pg_top_pg_top.git,pg/top/pg/top.git,https://gitlab.com/pg_top/pg_top.git -0a385bc8c5bffb472967cec3fa97ba530c05312b,hasier,hasier@users.noreply.github.com,2024-02-05 13:25:38+00:00,GitHub,noreply@github.com,2024-02-05 13:25:38+00:00,True,users,github,* master,True,alisaifee_limits.git,alisaifee/limits.git,https://github.com/alisaifee/limits.git -41e4ad6f7e9ba73eabe61bd97847cd284e3edbd2,Jon Banafato,jonathan.banafato@gmail.com,2015-09-01 02:01:04-04:00,Jon Banafato,jonathan.banafato@gmail.com,2015-09-01 06:01:04+00:00,True,gmail,gmail,* master,True,hyde_fswrap,hyde/fswrap,https://github.com/hyde/fswrap -15f38fa26e3d62bf9a5e9a6f9df75485b719185b,Joachim Metz,joachim.metz@gmail.com,2020-06-22 09:11:16+02:00,GitHub,noreply@github.com,2020-06-22 07:11:16+00:00,False,gmail,github,* main,True,log2timeline_dfdatetime.git,log2timeline/dfdatetime.git,https://github.com/log2timeline/dfdatetime.git -2d4f0faa54fe96991b4e59b86155562d9df187af,Gaetano Guerriero,gaetano.guerriero@gmx.com,2023-02-15 00:11:16+01:00,Gaetano Guerriero,gaetano.guerriero@gmx.com,2023-02-14 23:14:54+00:00,False,gmx,gmx,* master,True,gaetano-guerriero_eyeD3-debian,gaetano-guerriero/eyeD3-debian,https://github.com/gaetano-guerriero/eyeD3-debian -4647fe8a4a92251ba42acce7ea5b3bef743d7f05,Frank B. Brokken,f.b.brokken@rug.nl,2022-06-07 14:59:19+02:00,Frank B. Brokken,f.b.brokken@rug.nl,2022-06-07 12:59:19+00:00,False,rug,rug,* master,True,fbb-git_natlog.git,fbb-git/natlog.git,https://gitlab.com/fbb-git/natlog.git -f067c0cf33dac6882d1bb3a61fbdff520f457151,Michal Ratajsky,michal.ratajsky@gmail.com,2015-10-15 16:13:03+02:00,Michal Ratajsky,michal.ratajsky@gmail.com,2015-10-15 14:13:03+00:00,False,gmail,gmail,* master,True,mate-desktop_libmatemixer.git,mate-desktop/libmatemixer.git,https://github.com/mate-desktop/libmatemixer.git -b9879643a38f460450b94e1cfdba82548a8f2a73,Langston Barrett,langston.barrett@gmail.com,2021-02-09 11:12:07-08:00,Langston Barrett,langston.barrett@gmail.com,2021-02-09 20:01:36+00:00,False,gmail,gmail,* master,True,sphinx-contrib_autoprogram.git,sphinx-contrib/autoprogram.git,https://github.com/sphinx-contrib/autoprogram.git -fe9c8ffdc4244617c4ed850cf70c323e1b478cf7,Elmar S. Heeb,elmar@heebs.ch,2023-01-27 10:43:10+01:00,GitHub,noreply@github.com,2023-01-27 09:43:10+00:00,True,heebs,github,* master,True,elmar_ldap-git-backup,elmar/ldap-git-backup,https://github.com/elmar/ldap-git-backup -073213742045dbedba685b0c7ab3a2e093b2fc49,Łukasz Kostka,lukasz.kostka@netng.pl,2019-09-29 22:45:34+02:00,Łukasz Kostka,lukasz.kostka@netng.pl,2019-09-29 20:45:34+00:00,False,netng,netng,* main,True,luqasz_librouteros,luqasz/librouteros,https://github.com/luqasz/librouteros -22bc86b49bdc884847467d7ba7b1ec5e91195ca5,Mikhail Podgurskiy,kmmbvnr@gmail.com,2023-12-21 15:14:03+06:00,Mikhail Podgurskiy,kmmbvnr@gmail.com,2023-12-21 09:14:03+00:00,True,gmail,gmail,* master,True,viewflow_django-fsm,viewflow/django-fsm,https://github.com/viewflow/django-fsm -e993aa4326ee274dca195669120dc0ce480ba215,Kjetil Kjernsmo,kjetil@kjernsmo.net,2014-10-15 13:26:47+02:00,Kjetil Kjernsmo,kjetil@kjernsmo.net,2014-10-15 11:26:47+00:00,False,kjernsmo,kjernsmo,* main,True,kjetilk_Test-RDF.git,kjetilk/Test-RDF.git,https://github.com/kjetilk/Test-RDF.git -0ce02e6ce1fb1a4398b41ae4e22860a8fca45d9b,Oz,nahumoz@gmail.com,2015-11-09 09:32:28+01:00,Oz,nahumoz@gmail.com,2015-11-09 08:32:28+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-common.git,mate-desktop/mate-common.git,https://github.com/mate-desktop/mate-common.git -0632c1f8a2bd31e72528da25e5d5dd6c33dd28c0,JJ Merelo,jjmerelo@gmail.com,2018-10-28 09:54:53+01:00,JJ Merelo,jjmerelo@gmail.com,2018-10-28 08:54:53+00:00,False,gmail,gmail,* master,True,shlomif_perl-error.pm.git,shlomif/perl-error.pm.git,https://github.com/shlomif/perl-error.pm.git -8d0cdfc93e86e096bb5753f07dc5c7c373e63837,Sambhav Kothari,sambhavs.email@gmail.com,2023-11-03 22:28:45+00:00,GitHub,noreply@github.com,2023-11-03 22:28:45+00:00,False,gmail,github,* master,True,PyCQA_pydocstyle.git,PyCQA/pydocstyle.git,https://github.com/PyCQA/pydocstyle.git -b509830a2a0a6f78aeb2ec5c7836d3e67bac6912,Apurva Khatri,apurvakhatri2011@gmail.com,2023-08-28 16:05:48-04:00,GitHub,noreply@github.com,2023-08-28 20:05:48+00:00,False,gmail,github,* main,True,pypa_readme_renderer,pypa/readme/renderer,https://github.com/pypa/readme_renderer -aa46e846fa2eb7cb845a07e122f2984267551098,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-12-15 15:49:30+02:00,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-12-15 13:49:30+00:00,False,ionelmc,ionelmc,* master,True,ionelmc_python-lazy-object-proxy.git,ionelmc/python-lazy-object-proxy.git,https://github.com/ionelmc/python-lazy-object-proxy.git +be08a8883856176d75c6e387ac590106a3167a39,hatukanezumi,hatuka@nezumi.nu,2011-01-20 15:17:38+00:00,hatukanezumi,hatuka@nezumi.nu,2011-01-20 15:17:38+00:00,False,nezumi,nezumi,* master,True,hatukanezumi_sombok,hatukanezumi/sombok,https://github.com/hatukanezumi/sombok +0e56d90654f8352bf1a5642627f4b51b57211bb3,coppit,coppit@62e71daf-0e52-0410-93dc-73e745588b4c,2003-10-22 15:57:30+00:00,coppit,coppit@62e71daf-0e52-0410-93dc-73e745588b4c,2003-10-22 15:57:30+00:00,False,62e71daf-0e52-0410-93dc-73e745588b4c,62e71daf-0e52-0410-93dc-73e745588b4c,* master,True,coppit_filehandle-unget.git,coppit/filehandle-unget.git,https://github.com/coppit/filehandle-unget.git +74f33b719d7072c565ff05813d86d65310f0153f,wimpunk,wimpunk@users.sf.net,2006-05-22 19:37:19+00:00,wimpunk,wimpunk@users.sf.net,2006-05-22 19:37:19+00:00,False,users,users,* main,True,ddclient_ddclient.git,ddclient/ddclient.git,https://github.com/ddclient/ddclient.git +c10b01e84a9a262c00e46d7a4f315d66bea4fb94,Gauvain Pocentek,gauvain@pocentek.net,2013-02-16 09:55:22+01:00,Gauvain Pocentek,gauvain@pocentek.net,2013-02-16 08:55:22+00:00,False,pocentek,pocentek,* main,True,python-gitlab_python-gitlab.git,python-gitlab/python-gitlab.git,https://github.com/python-gitlab/python-gitlab.git +56bb86b830a4d524faa4f54d0677af0981259281,Justin Martin,frozenfire@thefrozenfire.com,2011-12-17 10:10:16-08:00,Justin Martin,frozenfire@thefrozenfire.com,2011-12-17 18:10:16+00:00,False,thefrozenfire,thefrozenfire,* master,True,Bumblebee-Project_Bumblebee,Bumblebee-Project/Bumblebee,https://github.com/Bumblebee-Project/bbswitch +b5798f7099a2aa6b621c656a4e1c7cfb34c66aa9,Elmar S. Heeb,elmar@heebs.ch,2012-09-12 09:10:47+02:00,Elmar S. Heeb,elmar@heebs.ch,2012-09-12 07:10:47+00:00,False,heebs,heebs,* master,True,elmar_aptitude-robot,elmar/aptitude-robot,https://github.com/elmar/aptitude-robot +52d7aadcc57f3fa09653d315fc1a7fef52ae6bca,Perberos,perberos@gmail.com,2011-12-01 23:03:59-03:00,Perberos,perberos@gmail.com,2011-12-02 02:03:59+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-session-manager.git,mate-desktop/mate-session-manager.git,https://github.com/mate-desktop/mate-session-manager.git +b50e6e06f22d3c653166e1817d75c3f4a98b2748,Alan Coopersmith,Alan.Coopersmith@sun.com,2005-05-22 19:37:27+00:00,Alan Coopersmith,Alan.Coopersmith@sun.com,2005-05-22 19:37:27+00:00,False,sun,sun,* master,True,xorg_lib_libxi.git,xorg/lib/libxi.git,https://gitlab.freedesktop.org/xorg/lib/libxi.git +c0e70ea18f1011fc0e7f892d1bd25a4cd653d6b9,ziv@openni.org,ziv@openni.org,2010-12-08 17:56:55+02:00,ziv@openni.org,ziv@openni.org,2010-12-08 15:56:55+00:00,False,openni,openni,* master,True,PrimeSense_Sensor.git,PrimeSense/Sensor.git,https://github.com/PrimeSense/Sensor.git +687fe662e07c2e0d5d49686b1786e656bd5de3fa,Hong Jen Yee (PCMan),pcman.tw@gmail.com,2013-02-24 16:36:10+08:00,Hong Jen Yee (PCMan),pcman.tw@gmail.com,2013-02-24 08:36:10+00:00,False,gmail,gmail,* master,True,lxqt_pcmanfm-qt.git,lxqt/pcmanfm-qt.git,https://github.com/lxqt/pcmanfm-qt.git +a06ca4059107d08fe4b45da2391d14edc4da0014,rakshasa,sundell.software@gmail.com,2004-07-15 08:38:34+00:00,rakshasa,sundell.software@gmail.com,2004-07-15 08:38:34+00:00,False,gmail,gmail,* master,True,rakshasa_libtorrent.git,rakshasa/libtorrent.git,https://github.com/rakshasa/libtorrent.git +e884a3c6831dba7b7ef2a970e8c33242933351f8,Piotr Jakubowski,piotrj@gmail.com,2011-11-15 16:42:04+01:00,Piotr Jakubowski,piotrj@gmail.com,2011-11-15 15:42:04+00:00,False,gmail,gmail,* main,True,doorkeeper-gem_doorkeeper,doorkeeper-gem/doorkeeper,https://github.com/doorkeeper-gem/doorkeeper +7ca550c0a8ec8379f19dbaf141a90f328698e9ba,Kate Fissell,fissell@pitt.edu,2005-01-06 02:37:00+00:00,Hans Johnson,hans.j.johnson@gmail.com,2018-12-06 21:25:55+00:00,False,pitt,gmail,* master,True,NIFTI-Imaging_nifti_clib.git,NIFTI-Imaging/nifti/clib.git,https://github.com/NIFTI-Imaging/nifti_clib.git +989046217f74e55072c96f8e50572aee592abb76,Anthony D. Martin,amartin@engr.csulb.edu,2013-10-20 11:02:25+02:00,Miro Hrončok,miro@hroncok.cz,2013-10-22 08:28:10+00:00,False,engr,hroncok,* master,True,admesh_admesh,admesh/admesh,https://github.com/admesh/admesh +b95749437bdb961a98b79a10114567eb31547e9d,Gerhard Weis,gweis@gmx.at,2009-01-05 05:32:56+10:00,Gerhard Weis,gweis@gmx.at,2009-01-04 19:32:56+00:00,False,gmx,gmx,* master,True,gweis_isodate,gweis/isodate,https://github.com/gweis/isodate +1fa1d330154e7afc476d09ffcdf9ac7af28621a2,Hugo Osvaldo Barrera,hugo@barrera.io,2015-03-30 05:54:12-03:00,Hugo Osvaldo Barrera,hugo@barrera.io,2015-03-30 08:54:12+00:00,False,barrera,barrera,* main,True,pimutils_todoman.git,pimutils/todoman.git,https://github.com/pimutils/todoman.git +136660c03bd7a4c659a5c117953cd65fafdb56ef,Jeff Pollard,jeff.pollard@gmail.com,2012-10-22 13:12:20-07:00,Jeff Pollard,jeff.pollard@gmail.com,2012-10-22 20:12:20+00:00,False,gmail,gmail,* master,True,fluxx_exam,fluxx/exam,https://github.com/fluxx/exam +59ae48e2a9cfd5b6fb2acadb609ffba12d7871a8,david,dgleal@gmail.com,2010-10-25 16:02:15+01:00,david,dgleal@gmail.com,2010-10-25 17:10:24+00:00,False,gmail,gmail,* master,True,hipchat_hipchat-rb,hipchat/hipchat-rb,https://github.com/hipchat/hipchat-rb +023009149c9b8830b3f732b7a59dd5c93c9f7774,Arvin Schnell,aschnell@suse.de,2011-04-08 12:31:34+02:00,Arvin Schnell,aschnell@suse.de,2011-04-08 10:31:34+00:00,False,suse,suse,* master,True,openSUSE_snapper.git,openSUSE/snapper.git,https://github.com/openSUSE/snapper.git +01fb1d3bc18b173893921813421ea45463351dfa,Sven Oliver Moll,svolli@svolli.de,2008-01-15 10:10:10+01:00,Sven Oliver Moll,svolli@svolli.de,2008-01-15 09:10:10+00:00,False,svolli,svolli,* master,True,svolli_pngphoon,svolli/pngphoon,https://git.h8u.de/svolli/pngphoon +72455878f6e8a7056448829ef227d31520b34839,Stefan Breunig,stefan-github@yrden.de,2014-12-27 21:46:11+01:00,Stefan Breunig,stefan-github@yrden.de,2014-12-27 20:46:11+00:00,False,yrden,yrden,* master,True,breunigs_python-librtmp-debian,breunigs/python-librtmp-debian,https://github.com/breunigs/python-librtmp-debian +653e175d19c1f0cd9f5e95dd75ea17cf43e030ea,Eric S. Raymond,esr@thyrsus.com,2006-12-20 04:59:34+00:00,Eric S. Raymond,esr@thyrsus.com,2006-12-20 04:59:34+00:00,False,thyrsus,thyrsus,* master,True,esr_doclifter,esr/doclifter,https://gitlab.com/esr/doclifter +3247ac5d4b82e42be0f2481747ec11366cd949b6,Carl Meyer,carl@dirtcircle.com,2009-07-02 14:03:02-04:00,Carl Meyer,carl@dirtcircle.com,2009-07-02 18:03:02+00:00,False,dirtcircle,dirtcircle,* master,True,carljm_django-model-utils.git,carljm/django-model-utils.git,https://github.com/carljm/django-model-utils.git +e514833a80a262377781325a56502d313091e40d,Christian Hergert,chergert@redhat.com,2016-01-11 04:08:34-08:00,Christian Hergert,chergert@redhat.com,2016-01-11 12:08:34+00:00,False,redhat,redhat,* main,True,GNOME_template-glib.git,GNOME/template-glib.git,https://gitlab.gnome.org/GNOME/template-glib.git +a0cbcae75de3ce644c344d1010ee2047a89d6ab0,Andreas Jellinghaus,andreas@ionisiert.de,2005-08-24 21:55:35+00:00,Andreas Jellinghaus,andreas@ionisiert.de,2005-08-24 21:55:35+00:00,False,ionisiert,ionisiert,* master,True,OpenSC_libp11.git,OpenSC/libp11.git,https://github.com/OpenSC/libp11.git +e2dbbb6e64ee5d665e89c8556d4212075b1cde23,Howard Butler,hobu.inc@gmail.com,2007-08-01 20:37:49+00:00,Howard Butler,hobu.inc@gmail.com,2007-08-01 20:37:49+00:00,False,gmail,gmail,* main,True,libspatialindex_libspatialindex.git,libspatialindex/libspatialindex.git,https://github.com/libspatialindex/libspatialindex.git +f1aa25bcf83eb77eb6476c678d4375039127679a,Steven Loria,sloria1@gmail.com,2013-11-08 13:36:15-06:00,Steven Loria,sloria1@gmail.com,2013-11-08 19:36:15+00:00,False,gmail,gmail,* dev,True,marshmallow-code_marshmallow.git,marshmallow-code/marshmallow.git,https://github.com/marshmallow-code/flask-marshmallow.git +8e3eb4551091373b631462caf66448dd71ec61ef,Bernardo Damele,bernardo.damele@gmail.com,2008-10-15 15:38:22+00:00,Bernardo Damele,bernardo.damele@gmail.com,2008-10-15 15:38:22+00:00,False,gmail,gmail,* master,True,sqlmapproject_sqlmap.git,sqlmapproject/sqlmap.git,https://github.com/sqlmapproject/sqlmap.git +d541e3eece5593bdbe2f028bb07892d69b85d1af,Richard Goedeken,Richard@fascinationsoftware.com,2009-12-13 00:00:15-05:00,Richard Goedeken,Richard@fascinationsoftware.com,2009-12-13 05:00:15+00:00,False,fascinationsoftware,fascinationsoftware,* master,True,mupen64plus_mupen64plus-ui-console.git,mupen64plus/mupen64plus-ui-console.git,https://github.com/mupen64plus/mupen64plus-ui-console.git +5fb93d0dd5b69c00a038820f26d9af4019ce3211,tobi,tobi@localhost,2009-05-17 14:36:55+02:00,tobi,tobi@localhost,2009-05-17 12:36:55+00:00,False,localhost,localhost,* trunk,True,coldtobi_solarpowerlog,coldtobi/solarpowerlog,https://github.com/coldtobi/solarpowerlog +cc594366f38827821008048a62532abcb2f9cc73,Barry Warsaw,barry@python.org,2016-10-18 18:35:57-04:00,Barry Warsaw,barry@python.org,2016-10-18 22:35:57+00:00,False,python,python,* master,True,warsaw_flufl.testing.git,warsaw/flufl.testing.git,https://gitlab.com/warsaw/flufl.testing.git +d24e2f3be0a329fa267ce235f848003a86462275,Emre Yılmaz,mail@emreyilmaz.me,2013-05-13 05:31:30-07:00,Emre Yılmaz,mail@emreyilmaz.me,2013-05-13 12:31:30+00:00,False,emreyilmaz,emreyilmaz,* master,True,emre_kaptan.git,emre/kaptan.git,https://github.com/emre/kaptan.git +03f684da7600ff67b2208c916506f92e335e1907,Roger Seguin,roger_seguin@msn.com,2004-09-09 13:34:44+00:00,Roger Seguin,roger_seguin@msn.com,2004-09-09 13:34:44+00:00,False,msn,msn,* master,True,panel-plugins_xfce4-genmon-plugin,panel-plugins/xfce4-genmon-plugin,https://gitlab.xfce.org/panel-plugins/xfce4-genmon-plugin +a78af02390c4fc91acc6c1605fb81d686168f880,Daniel P. Berrange,berrange@redhat.com,2008-10-19 14:27:20-04:00,Daniel P. Berrange,berrange@redhat.com,2008-10-19 18:27:20+00:00,False,redhat,redhat,* master,True,libvirt_libvirt-glib.git,libvirt/libvirt-glib.git,https://gitlab.com/libvirt/libvirt-glib.git +6eb8664012fda2fad96d347c9cc860754abc076b,holger krekel,holger@merlinux.eu,2010-01-18 14:53:09+01:00,holger krekel,holger@merlinux.eu,2010-01-18 13:53:09+00:00,False,merlinux,merlinux,* master,True,pytest-dev_pytest-xdist,pytest-dev/pytest-xdist,https://github.com/pytest-dev/pytest-xdist +7b1639cb7f01e51a85808a03e6991e0e895be6fa,why the lucky stiff,why@whytheluckystiff.net,2003-06-20 21:50:11+00:00,why the lucky stiff,why@whytheluckystiff.net,2003-06-20 21:50:11+00:00,False,whytheluckystiff,whytheluckystiff,* master,True,jgarber_redcloth.git,jgarber/redcloth.git,https://github.com/jgarber/redcloth.git +c9d1a13fd839ef1752cf4cc7cfe2b7fb83e4ead1,☼ 林永忠 ☼,xern@cpan.org,2003-01-28 07:13:57+00:00,Gitpan,schwern+gitpan@pobox.com,2014-10-23 05:21:48+00:00,False,cpan,pobox,* master,True,neilb_Lingua-PT-Stemmer.git,neilb/Lingua-PT-Stemmer.git,https://github.com/neilb/Lingua-PT-Stemmer.git +fe80e676aee714e6015e523e3ad07d3f45348be6,Dave Cross,dave@dave.org.uk,2003-02-19 19:40:47+00:00,Dave Cross,dave@dave.org.uk,2003-02-19 19:40:47+00:00,False,dave,dave,* master,True,p5-number-fraction_number-fraction.git,p5-number-fraction/number-fraction.git,https://github.com/p5-number-fraction/number-fraction.git +ceb64d488a1d0600337e8516c10a4a65ebeb3c96,Tuomas Räsänen,tuos@codegrove.org,2009-12-10 00:58:40+02:00,Tuomas Räsänen,tuos@codegrove.org,2009-12-09 22:58:40+00:00,False,codegrove,codegrove,* master,True,tuomasjjrasanen_python-uinput,tuomasjjrasanen/python-uinput,https://github.com/tuomasjjrasanen/python-uinput +bc66647b3bf3fc5a270dac14f491c1b4eafbb90f,William LeFebvre,bill@lefebvre.org,2007-04-20 06:31:10-07:00,William LeFebvre,bill@lefebvre.org,2007-04-20 13:31:10+00:00,False,lefebvre,lefebvre,* main,True,pg_top_pg_top.git,pg/top/pg/top.git,https://gitlab.com/pg_top/pg_top.git +ffbe3db5df5c3514cee4759fbb152f445612c68c,Ali-Akber Saifee,ali@indydevs.org,2014-02-10 20:24:08+08:00,Ali-Akber Saifee,ali@indydevs.org,2014-02-10 12:24:08+00:00,False,indydevs,indydevs,* master,True,alisaifee_limits.git,alisaifee/limits.git,https://github.com/alisaifee/limits.git +2feb1060545bf3f085b4fd58e74a68537f293a61,Lakshmi Vyasarajan,lakshmi.vyas@gmail.com,2012-03-08 09:48:29+05:30,Lakshmi Vyasarajan,lakshmi.vyas@gmail.com,2012-03-08 04:18:29+00:00,False,gmail,gmail,* master,True,hyde_fswrap,hyde/fswrap,https://github.com/hyde/fswrap +24e86364a9d765304780eeff852928b3803e65b0,Joachim Metz,joachim.metz@gmail.com,2016-03-10 07:44:07+01:00,Joachim Metz,joachim.metz@gmail.com,2016-03-10 06:44:07+00:00,False,gmail,gmail,* main,True,log2timeline_dfdatetime.git,log2timeline/dfdatetime.git,https://github.com/log2timeline/dfdatetime.git +b37e3978280e5673eacc65e64603aa279db532a2,Gaetano Guerriero,gaetano.guerriero@spacespa.it,2016-02-25 11:49:18+01:00,Gaetano Guerriero,gaetano.guerriero@spacespa.it,2016-02-25 10:49:18+00:00,False,spacespa,spacespa,* master,True,gaetano-guerriero_eyeD3-debian,gaetano-guerriero/eyeD3-debian,https://github.com/gaetano-guerriero/eyeD3-debian +5dc1cf503352209f62bb0d64f922ab3dbb8be6ce,Frank B. Brokken,f.b.brokken@rug.nl,2015-08-24 12:30:52+02:00,Frank B. Brokken,f.b.brokken@rug.nl,2015-08-24 10:30:52+00:00,False,rug,rug,* master,True,fbb-git_natlog.git,fbb-git/natlog.git,https://gitlab.com/fbb-git/natlog.git +caf4d9b8b8b0d26856d2d64f00ab23756867a923,Michal Ratajsky,michal.ratajsky@gmail.com,2014-05-24 00:15:24+02:00,Michal Ratajsky,michal.ratajsky@gmail.com,2014-05-23 22:15:24+00:00,False,gmail,gmail,* master,True,mate-desktop_libmatemixer.git,mate-desktop/libmatemixer.git,https://github.com/mate-desktop/libmatemixer.git +e5a88e405576be36887e94cd594e7c56e9795270,Hong Minhee,minhee@dahlia.kr,2014-03-02 06:18:28+09:00,Hong Minhee,minhee@dahlia.kr,2014-03-01 21:18:28+00:00,False,dahlia,dahlia,* master,True,sphinx-contrib_autoprogram.git,sphinx-contrib/autoprogram.git,https://github.com/sphinx-contrib/autoprogram.git +31f34979100d4dabc927b6173e8b1978cc49ad53,Elmar S. Heeb,elmar@heebs.ch,2012-05-23 03:59:05-07:00,Elmar S. Heeb,elmar@heebs.ch,2012-05-23 10:59:05+00:00,False,heebs,heebs,* master,True,elmar_ldap-git-backup,elmar/ldap-git-backup,https://github.com/elmar/ldap-git-backup +d9ace8cae8f12de4b5aea4690a21e926861ee36e,uqasz,ukasz83@gmail.com,2012-12-06 05:24:16-08:00,uqasz,ukasz83@gmail.com,2012-12-06 13:24:16+00:00,False,gmail,gmail,* main,True,luqasz_librouteros,luqasz/librouteros,https://github.com/luqasz/librouteros +9a6c527ef46f25976a53d00bed85ff3977c8e4db,Mikhail Podgurskiy,kmmbvnr@gmail.com,2010-05-25 13:42:28+07:00,Mikhail Podgurskiy,kmmbvnr@gmail.com,2010-05-25 06:42:28+00:00,False,gmail,gmail,* master,True,viewflow_django-fsm,viewflow/django-fsm,https://github.com/viewflow/django-fsm +5afe27bce79b59944d0dfd564f8a4dfa88bbcd51,Kjetil Kjernsmo,kjetil@kjernsmo.net,2012-06-11 00:27:25+02:00,Kjetil Kjernsmo,kjetil@kjernsmo.net,2012-06-10 22:27:25+00:00,False,kjernsmo,kjernsmo,* main,True,kjetilk_Test-RDF.git,kjetilk/Test-RDF.git,https://github.com/kjetilk/Test-RDF.git +9d1d71a22f9acf0c5c283064b805166ad612013b,Perberos,perberos@gmail.com,2011-12-01 21:46:33-03:00,Perberos,perberos@gmail.com,2011-12-02 00:46:33+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-common.git,mate-desktop/mate-common.git,https://github.com/mate-desktop/mate-common.git +37240ebede0e2e78cf1299d0b7ce43abbd878397,shlomif,shlomif@52c325ad-5fd0-0310-8a0f-c43feede02cc,2006-03-30 16:30:34+00:00,shlomif,shlomif@52c325ad-5fd0-0310-8a0f-c43feede02cc,2006-03-30 16:30:34+00:00,False,52c325ad-5fd0-0310-8a0f-c43feede02cc,52c325ad-5fd0-0310-8a0f-c43feede02cc,* master,True,shlomif_perl-error.pm.git,shlomif/perl-error.pm.git,https://github.com/shlomif/perl-error.pm.git +4caf178bd434219f53ebaf7b4f8053270f3e93e6,Vladimir Keleshev,halst@ya.ru,2012-01-31 18:17:52+01:00,Vladimir Keleshev,halst@ya.ru,2012-01-31 17:17:52+00:00,False,ya,ya,* master,True,PyCQA_pydocstyle.git,PyCQA/pydocstyle.git,https://github.com/PyCQA/pydocstyle.git +73ca88857a133fa2c074be646085350d8e99eae6,Donald Stufft,donald@stufft.io,2014-02-27 12:43:32-05:00,Donald Stufft,donald@stufft.io,2014-02-27 17:43:32+00:00,False,stufft,stufft,* main,True,pypa_readme_renderer,pypa/readme/renderer,https://github.com/pypa/readme_renderer +4b9cd87e2f52a3bb996f3044323fea46f18d2639,Graham Dumpleton,Graham.Dumpleton@gmail.com,2013-05-29 03:22:45-07:00,Graham Dumpleton,Graham.Dumpleton@gmail.com,2013-05-29 10:22:45+00:00,False,gmail,gmail,* master,True,ionelmc_python-lazy-object-proxy.git,ionelmc/python-lazy-object-proxy.git,https://github.com/ionelmc/python-lazy-object-proxy.git 3265af743307b63aae67026e22d07cb3f6606b33,Daniel Vrátil,dvratil@kde.org,2020-09-12 13:24:21+02:00,Daniel Vrátil,dvratil@kde.org,2020-09-12 11:24:21+00:00,False,kde,kde,* master,True,pim_kdepim-apps-libs,pim/kdepim-apps-libs,https://invent.kde.org/pim/kdepim-apps-libs 9d743c4305d742737d476d45d3710e4166305a39,JessThrysoee,jess@thrysoee.dk,2011-12-13 20:54:15+01:00,JessThrysoee,jess@thrysoee.dk,2011-12-13 19:54:15+00:00,False,thrysoee,thrysoee,* master,True,JessThrysoee_xtermcontrol.git,JessThrysoee/xtermcontrol.git,https://github.com/JessThrysoee/xtermcontrol.git -ea01d687b546108b6baf0bc27d16e085739b3b6d,Jessie Murray,jessie.murray@protonmail.com,2023-10-03 12:36:37-07:00,Nicolas Favre-Felix,n.favrefelix@gmail.com,2023-10-06 18:15:20+00:00,False,protonmail,gmail,* master,True,nicolasff_webdis,nicolasff/webdis,https://github.com/nicolasff/webdis -35bf797fded2f7d27430ac8aadae1038bae5a8f4,Michael Grosser,michael@grosser.it,2023-10-27 16:20:36-07:00,Michael Grosser,michael@grosser.it,2023-10-27 23:20:36+00:00,False,grosser,grosser,* master,True,grosser_maxitest,grosser/maxitest,https://github.com/grosser/maxitest -74f2313a46eef2bb9c7bf5bf9c49a52a3c9fcdcf,Aarni Koskela,akx@iki.fi,2016-04-08 12:10:20+03:00,Aarni Koskela,akx@iki.fi,2016-04-08 09:10:20+00:00,True,iki,iki,* master,True,python-babel_babel,python-babel/babel,https://github.com/python-babel/flask-babel -c811e3c6faba19bd96fec88f7f66f56aa8911c42,Alex Gaziev,alex.gaziev@gmail.com,2019-11-18 14:13:33-08:00,GitHub,noreply@github.com,2019-11-18 22:13:33+00:00,False,gmail,github,* master,True,gazay_gon,gazay/gon,https://github.com/gazay/gon -fc5d9eecdfe8c8549803e91c36871972a18b3b92,Igor Poboiko,igor.poboiko@gmail.com,2020-05-25 18:27:13+03:00,Igor Poboiko,igor.poboiko@gmail.com,2020-05-25 15:27:13+00:00,False,gmail,gmail,* master,True,pim_kjots,pim/kjots,https://invent.kde.org/pim/kjots -f802ec3a3afbb95de4ccdf0383f4cf70432cd91e,James Bennett,james@b-list.org,2020-12-12 01:40:53-08:00,James Bennett,james@b-list.org,2020-12-12 09:40:53+00:00,False,b-list,b-list,* trunk,True,ubernostrum_django-contact-form,ubernostrum/django-contact-form,https://github.com/ubernostrum/django-contact-form -6886f7418efe32db337e4efdc88d05fddc05fc7a,Paul-Emmanuel Raoul,skyper@skyplabs.net,2021-09-25 18:44:51+01:00,Maximilien Riehl,max@riehl.io,2021-09-25 19:28:46+00:00,False,skyplabs,riehl,* master,True,mriehl_fysom.git,mriehl/fysom.git,https://github.com/mriehl/fysom.git -2c9ff63204aac50fff6169e5f65a84e685b609bc,hedleyroos,hedleyroos@gmail.com,2013-05-23 09:31:47+02:00,hedleyroos,hedleyroos@gmail.com,2013-05-23 07:31:47+00:00,False,gmail,gmail,* develop,True,praekelt_django-setuptest.git,praekelt/django-setuptest.git,https://github.com/praekelt/django-setuptest.git -cebda22c842ec81dfa20d61c8836377241a93b14,Asif Saif Uddin,auvipy@gmail.com,2023-11-06 10:52:07+06:00,Asif Saif Uddin,auvipy@gmail.com,2023-11-06 04:52:07+00:00,False,gmail,gmail,* main,True,celery_py-amqp.git,celery/py-amqp.git,https://github.com/celery/py-amqp.git -813fdbaedf4d895c79bf68ce4954e1e160c83bf6,Berker Peksag,berker.peksag@gmail.com,2018-07-06 10:46:25+03:00,Berker Peksag,berker.peksag@gmail.com,2018-07-06 07:46:25+00:00,False,gmail,gmail,* master,True,berkerpeksag_astor,berkerpeksag/astor,https://github.com/berkerpeksag/astor -a694889bca59bea21ad853387fc868491047d806,Jean Khawand,22157081+jeankhawand@users.noreply.github.com,2024-03-01 09:15:02+01:00,GitHub,noreply@github.com,2024-03-01 08:15:02+00:00,False,users,github,* main,True,ankitects_anki.git,ankitects/anki.git,https://github.com/ankitects/anki.git -2578dc166c87ee0e82a76ec18a115bf612b6ce3c,Thomas Robitaille,thomas.robitaille@gmail.com,2022-03-10 16:20:30+00:00,GitHub,noreply@github.com,2022-03-10 16:20:30+00:00,False,gmail,github,* main,True,aplpy_aplpy.git,aplpy/aplpy.git,https://github.com/aplpy/aplpy.git -37f6bf3c450319fddfbd7ad2a853329c1695ca98,Dmitry Borodaenko,angdraug@gmail.com,2016-04-11 00:38:45-07:00,Dmitry Borodaenko,angdraug@gmail.com,2016-04-11 08:18:44+00:00,False,gmail,gmail,* main,True,angdraug_samizdat,angdraug/samizdat,https://github.com/angdraug/samizdat -ffcbe36632c47686187251cdc84f63e5b32cbca1,Matthew Brett,matthew.brett@gmail.com,2023-08-19 21:04:47+01:00,GitHub,noreply@github.com,2023-08-19 20:04:47+00:00,True,gmail,github,* main,True,matthew-brett_nb2plots.git,matthew-brett/nb2plots.git,https://github.com/matthew-brett/nb2plots.git -d32e4644fc0bec09ce4436a010a3233a9590abe5,Dave Vasilevsky,djvasi@gmail.com,2023-11-22 00:29:11-05:00,GitHub,noreply@github.com,2023-11-22 05:29:11+00:00,True,gmail,github,* master,True,vasi_squashfuse.git,vasi/squashfuse.git,https://github.com/vasi/squashfuse.git -04432f5b10eec31433482e1b191c0d71f19acff5,Floris Bruynooghe,flub@devork.be,2024-03-07 22:01:15+01:00,Floris Bruynooghe,flub@devork.be,2024-03-07 21:02:43+00:00,False,devork,devork,* main,True,pytest-dev_pytest-timeout.git,pytest-dev/pytest-timeout.git,https://github.com/pytest-dev/pytest-timeout.git -1331a91f6f3b93c71bdf6f275f7cfa32d21fff6f,rbasralian,rbasralian@deephaven.io,2024-01-24 16:43:35-05:00,GitHub,noreply@github.com,2024-01-24 21:43:35+00:00,False,deephaven,github,* master,True,jpy-consortium_jpy,jpy-consortium/jpy,https://github.com/jpy-consortium/jpy -39fdbde36584af7d850ebaf3420ae7da325a400e,Rob Wu,rob@robwu.nl,2024-03-12 23:57:35+01:00,Rob Wu,rob@robwu.nl,2024-03-12 23:02:08+00:00,False,robwu,robwu,* master,True,wolfcw_libfaketime.git,wolfcw/libfaketime.git,https://github.com/wolfcw/libfaketime.git +49a0a2e98887332d23930e67d9b64010ad19cf9f,Nicolas Favre-Felix,n.favrefelix@gmail.com,2010-12-20 16:36:44+01:00,Nicolas Favre-Felix,n.favrefelix@gmail.com,2010-12-20 15:36:44+00:00,False,gmail,gmail,* master,True,nicolasff_webdis,nicolasff/webdis,https://github.com/nicolasff/webdis +cf401da1ce352046a26ce643076bfb21623824a2,Abdelkader Boudih,seuros@commonshare.com,2023-05-08 20:33:51+01:00,Abdelkader Boudih,seuros@commonshare.com,2023-05-08 19:43:52+00:00,False,commonshare,commonshare,* master,True,grosser_maxitest,grosser/maxitest,https://github.com/grosser/maxitest +00f16f91a878676a55aa1e6e85b5e1092f7cf8e9,Christopher Lenz,cmlenz@gmail.com,2007-05-29 20:33:55+00:00,Christopher Lenz,cmlenz@gmail.com,2007-05-29 20:33:55+00:00,False,gmail,gmail,* master,True,python-babel_babel,python-babel/babel,https://github.com/python-babel/flask-babel +89df60be5ed267cd571cda20ea3dd3efa57c6d99,Alexey Gaziev,alex.gaziev@gmail.com,2011-05-09 19:05:59+04:00,Alexey Gaziev,alex.gaziev@gmail.com,2011-05-09 15:05:59+00:00,False,gmail,gmail,* master,True,gazay_gon,gazay/gon,https://github.com/gazay/gon +618b37a9a5164baf8bb885fd9d6c3f0f36c86b3c,Script Kiddy,scripty@kde.org,2005-12-21 07:04:26+00:00,Script Kiddy,scripty@kde.org,2005-12-21 07:04:26+00:00,False,kde,kde,* master,True,pim_kjots,pim/kjots,https://invent.kde.org/pim/kjots +3c67fdbc29275c92d4d953d21864ffee6e6751c6,ubernostrum,devnull@localhost,2007-05-21 10:21:14+00:00,ubernostrum,devnull@localhost,2007-05-21 10:21:14+00:00,False,localhost,localhost,* trunk,True,ubernostrum_django-contact-form,ubernostrum/django-contact-form,https://github.com/ubernostrum/django-contact-form +0a339699814b58014633908fbd0028c9ca6ec1ca,Mansour,mansour@oxplot.com,2011-11-07 00:01:00+11:00,Mansour,mansour@oxplot.com,2011-11-06 13:01:00+00:00,False,oxplot,oxplot,* master,True,mriehl_fysom.git,mriehl/fysom.git,https://github.com/mriehl/fysom.git +18617e0ed6e82f32d3bab9be6ddfe5f351bb21d0,Shaun Sephton,shaunsephton@gmail.com,2011-08-29 10:01:53+02:00,Shaun Sephton,shaunsephton@gmail.com,2011-08-29 08:01:53+00:00,False,gmail,gmail,* develop,True,praekelt_django-setuptest.git,praekelt/django-setuptest.git,https://github.com/praekelt/django-setuptest.git +13b1212e2c6727f48d01ec0f71539bc84b87b411,barryp@macbook.home,barryp@macbook.home,2007-11-14 12:18:05-06:00,barryp@macbook.home,barryp@macbook.home,2007-11-14 18:18:05+00:00,False,macbook,macbook,* main,True,celery_py-amqp.git,celery/py-amqp.git,https://github.com/celery/py-amqp.git +16c7d718e7de287bc179e0e6bc9fee9bfa0a1c5a,Patrick Maupin,pmaupin@gmail.com,2012-09-19 18:00:12-05:00,Patrick Maupin,pmaupin@gmail.com,2012-09-19 23:00:12+00:00,False,gmail,gmail,* master,True,berkerpeksag_astor,berkerpeksag/astor,https://github.com/berkerpeksag/astor +d477df8c28783c1d242b006473563f7cb2abc07d,Damien Elmes,git@ichi2.net,2012-12-21 16:51:59+09:00,Damien Elmes,git@ichi2.net,2012-12-21 07:51:59+00:00,False,ichi2,ichi2,* main,True,ankitects_anki.git,ankitects/anki.git,https://github.com/ankitects/anki.git +68c04f65ca84f4b32cf5172de9eff7563de496ad,astrofrog,thomas.robitaille@gmail.com,2009-02-24 20:51:31+00:00,astrofrog,thomas.robitaille@gmail.com,2009-02-24 20:51:31+00:00,False,gmail,gmail,* main,True,aplpy_aplpy.git,aplpy/aplpy.git,https://github.com/aplpy/aplpy.git +7e83d1e94cdf19a55dd4a6a9a8c4e5964abcb76d,Dmitry Borodaenko,angdraug@debian.org,2011-09-17 01:11:06+03:00,Dmitry Borodaenko,angdraug@debian.org,2011-09-16 22:11:06+00:00,False,debian,debian,* main,True,angdraug_samizdat,angdraug/samizdat,https://github.com/angdraug/samizdat +91f53c7713caa8f24c6d5d870c46d9e5bc194a55,Matthew Brett,matthew.brett@gmail.com,2015-10-22 19:07:10-04:00,Matthew Brett,matthew.brett@gmail.com,2015-10-22 23:09:25+00:00,False,gmail,gmail,* main,True,matthew-brett_nb2plots.git,matthew-brett/nb2plots.git,https://github.com/matthew-brett/nb2plots.git +f5edb7e3d227235feea5bbd52b9058416dc3a470,Dave Vasilevsky,dave@vasilevsky.ca,2012-04-16 10:39:39-04:00,Dave Vasilevsky,dave@vasilevsky.ca,2012-04-16 14:39:39+00:00,False,vasilevsky,vasilevsky,* master,True,vasi_squashfuse.git,vasi/squashfuse.git,https://github.com/vasi/squashfuse.git +db19b5793f27e25bd6f8cd3c3a72b76f7ca94501,Floris Bruynooghe,flub@devork.be,2012-02-24 01:06:15+00:00,Floris Bruynooghe,flub@devork.be,2012-02-24 01:06:15+00:00,False,devork,devork,* main,True,pytest-dev_pytest-timeout.git,pytest-dev/pytest-timeout.git,https://github.com/pytest-dev/pytest-timeout.git +b4b653122b32a5da6bea4707e8df75a2b997a32f,Brockmann Consult Development,dev@brockmann-consult.de,2013-12-09 09:03:21-08:00,Brockmann Consult Development,dev@brockmann-consult.de,2013-12-09 17:03:21+00:00,False,brockmann-consult,brockmann-consult,* master,True,jpy-consortium_jpy,jpy-consortium/jpy,https://github.com/jpy-consortium/jpy +a6ce767de90dae6aa9588699c3b40e408d6c86df,Wolfgang Hommel,wolf@code-wizards.com,2011-04-24 19:55:43+02:00,Wolfgang Hommel,wolf@code-wizards.com,2011-04-24 17:55:43+00:00,False,code-wizards,code-wizards,* master,True,wolfcw_libfaketime.git,wolfcw/libfaketime.git,https://github.com/wolfcw/libfaketime.git d9b3392870ae6dee0cb062f431155eb8db382f4d,Alexis Sukrieh,sukria@sukria.net,2010-04-03 15:22:20+02:00,Alexis Sukrieh,sukria@sukria.net,2010-04-03 13:22:20+00:00,False,sukria,sukria,* devel,True,perldancer_Dancer-Plugin-REST.git,perldancer/Dancer-Plugin-REST.git,https://github.com/perldancer/Dancer-Plugin-REST.git -7618193c12141e1f5f6a0d5d8d858adc24ab9c47,Gagan Deep,pandafy.dev@gmail.com,2023-06-20 02:16:32+05:30,GitHub,noreply@github.com,2023-06-19 20:46:32+00:00,False,gmail,github,* master,True,openwisp_django-x509,openwisp/django-x509,https://github.com/openwisp/django-x509 -77e46f0b0981af29f740e906b9a6c1c85b964627,Raphael Krupinski,rafalkrupinski@users.noreply.github.com,2024-01-02 15:49:26+01:00,GitHub,noreply@github.com,2024-01-02 14:49:26+00:00,False,users,github,* master,True,dbtsai_python-mimeparse.git,dbtsai/python-mimeparse.git,https://github.com/dbtsai/python-mimeparse.git +30167a535c7eac17888d50a08998bccf92469e19,Federico Capoano,nemesis@ninux.org,2016-07-08 17:35:25+02:00,Federico Capoano,nemesis@ninux.org,2016-07-08 15:35:25+00:00,False,ninux,ninux,* master,True,openwisp_django-x509,openwisp/django-x509,https://github.com/openwisp/django-x509 +032c52c6172856af88bbd5b7c59b3c1fb744421e,Ade Oshineye,adewale@gmail.com,2010-02-14 17:41:09-08:00,David Tsai,dbtsai@dbtsai.com,2012-08-22 21:32:30+00:00,False,gmail,dbtsai,* master,True,dbtsai_python-mimeparse.git,dbtsai/python-mimeparse.git,https://github.com/dbtsai/python-mimeparse.git 9a755e49330ab36384ffe991b31abb8f10f9ecc8,Tom Szilagyi,tomszilagyi@gmail.com,2016-01-01 17:56:31+01:00,Tom Szilagyi,tom.szilagyi@altmail.se,2024-01-10 10:18:37+00:00,False,gmail,altmail,* master,True,tomszilagyi_ir.lv2.git,tomszilagyi/ir.lv2.git,https://github.com/tomszilagyi/ir.lv2.git -89989ca51ed83e82f27d9998fb98996e291ed527,Marco Bonetti,marco@cruncher.ch,2023-09-19 12:51:31+02:00,GitHub,noreply@github.com,2023-09-19 10:51:31+00:00,False,cruncher,github,* master,True,mbi_django-simple-captcha.git,mbi/django-simple-captcha.git,https://github.com/mbi/django-simple-captcha.git -b53002a98fabbf8de6d438c683ab9dfe4d73b564,Lee Heung-sub,heung@sublee.kr,2010-09-02 22:12:44+09:00,Lee Heung-sub,heung@sublee.kr,2010-09-02 13:12:44+00:00,False,sublee,sublee,* master,True,sublee_flask-silk.git,sublee/flask-silk.git,https://github.com/sublee/flask-silk.git -4fd55b1bbdfb557fcae31a849acf537b27325fb7,Tom Hromatka,tom.hromatka@oracle.com,2023-02-16 09:45:08-07:00,Tom Hromatka,tom.hromatka@oracle.com,2023-02-16 16:45:08+00:00,False,oracle,oracle,* main,True,libcgroup_libcgroup,libcgroup/libcgroup,https://github.com/libcgroup/libcgroup -fcf3794f51051f8257b4e4a682fa3712c8319bf2,Brad King,brad.king@kitware.com,2024-03-06 11:06:12-05:00,Brad King,brad.king@kitware.com,2024-03-06 16:06:12+00:00,True,kitware,kitware,* master,True,CastXML_CastXML.git,CastXML/CastXML.git,https://github.com/CastXML/CastXML.git -8d8d19b86adc3c77bdf578aa921ff71724697918,Matthew Fernandez,matthew.fernandez@gmail.com,2023-04-19 17:57:09-07:00,Matthew Fernandez,matthew.fernandez@gmail.com,2023-04-20 00:57:09+00:00,False,gmail,gmail,* main,True,Smattr_rumur.git,Smattr/rumur.git,https://github.com/Smattr/rumur.git +f6148796acd81983703b1fa4cca1a89d088ba20c,Marco Bonetti,mbonetti@gmail.com,2012-04-04 16:34:32+02:00,Marco Bonetti,mbonetti@gmail.com,2012-04-04 14:34:32+00:00,False,gmail,gmail,* master,True,mbi_django-simple-captcha.git,mbi/django-simple-captcha.git,https://github.com/mbi/django-simple-captcha.git +a5a10938a480aaaa5426e524923d19ac1209658f,Lee Heung-sub,heung@sublee.kr,2010-09-02 01:18:20+09:00,Lee Heung-sub,heung@sublee.kr,2010-09-01 16:18:20+00:00,False,sublee,sublee,* master,True,sublee_flask-silk.git,sublee/flask-silk.git,https://github.com/sublee/flask-silk.git +852880eff7be980c5bd4c86e8451a4e120a054a7,Balbir Singh,balbir@linux.vnet.ibm.com,2008-04-14 21:11:40+00:00,Balbir Singh,balbir@linux.vnet.ibm.com,2008-04-14 21:11:40+00:00,False,linux,linux,* main,True,libcgroup_libcgroup,libcgroup/libcgroup,https://github.com/libcgroup/libcgroup +b9dafda1d67190612e049e4c8c86077bfbf29f27,KWSys Robot,kwrobot@kitware.com,2014-01-02 11:25:06-05:00,Brad King,brad.king@kitware.com,2014-01-06 21:01:55+00:00,False,kitware,kitware,* master,True,CastXML_CastXML.git,CastXML/CastXML.git,https://github.com/CastXML/CastXML.git +82b7e2c6fb0c26920de095d871c15e6493d8bbed,Matthew Fernandez,matthew.fernandez@gmail.com,2017-07-29 15:14:16-07:00,Matthew Fernandez,matthew.fernandez@gmail.com,2017-07-29 22:14:16+00:00,False,gmail,gmail,* main,True,Smattr_rumur.git,Smattr/rumur.git,https://github.com/Smattr/rumur.git 8129278527c8749b7b96dc6ef536b48543128130,Ian McLeod,imcleod@redhat.com,2011-05-24 18:05:55-05:00,Ian McLeod,imcleod@redhat.com,2011-05-24 23:05:55+00:00,False,redhat,redhat,* master,True,imcleod_VMDK-stream-converter.git,imcleod/VMDK-stream-converter.git,https://github.com/imcleod/VMDK-stream-converter.git -0f957f9e8375d664d7c523d5e28bf08f42799f7c,Andy McFadden,fadden@fadden.com,2022-10-08 09:13:24-07:00,Andy McFadden,fadden@fadden.com,2022-10-08 16:13:24+00:00,False,fadden,fadden,* master,True,fadden_nulib2.git,fadden/nulib2.git,https://github.com/fadden/nulib2.git -80a6b150febb5c0c91f2daa433cc089ff1278841,Christopher Browne,cbbrowne@acm.org,2020-09-21 11:36:47-04:00,GitHub,noreply@github.com,2020-09-21 15:36:47+00:00,True,acm,github,* master,True,cbbrowne_autodoc.git,cbbrowne/autodoc.git,https://github.com/cbbrowne/autodoc.git -7d167963f31074c11b176f1ec1e3fb6ca909acc1,Stian Soiland-Reyes,stain@apache.org,2020-02-12 11:35:21+00:00,Stian Soiland-Reyes,stain@apache.org,2020-02-12 11:35:41+00:00,False,apache,apache,* master,True,stain_arcp-py.git,stain/arcp-py.git,https://github.com/stain/arcp-py.git -929130a813226d42630e46fd75ae9743be9d774f,Katsumi Yamaoka,yamaoka@jpl.org,2009-05-14 22:58:03+00:00,Katsumi Yamaoka,yamaoka@jpl.org,2009-05-14 22:58:03+00:00,False,jpl,jpl,* master,True,cvs-m17n-org_MU-CITE,cvs-m17n-org/MU-CITE,https://github.com/cvs-m17n-org/MU-CITE -af28047cedec17968b2d9c22f5a259c88c8fecb9,Matt Hilton,matt.hilton@mykolab.com,2023-10-19 10:40:06+02:00,GitHub,noreply@github.com,2023-10-19 08:40:06+00:00,True,mykolab,github,* main,True,mattyowl_astLib.git,mattyowl/astLib.git,https://github.com/mattyowl/astLib.git +5615fa90d4b0f57744777fe0216cb1ba210eff24,cvs,,2000-05-23 01:55:31+00:00,cvs,,2000-05-23 01:55:31+00:00,False,,,* master,True,fadden_nulib2.git,fadden/nulib2.git,https://github.com/fadden/nulib2.git +bf5e5bef8e269cd8e7ddd9cf1180308bc1688c1f,Christopher Browne,cbbrowne@ca.afilias.info,2013-05-27 15:35:01-04:00,Christopher Browne,cbbrowne@ca.afilias.info,2013-05-27 19:35:01+00:00,False,ca,ca,* master,True,cbbrowne_autodoc.git,cbbrowne/autodoc.git,https://github.com/cbbrowne/autodoc.git +90a663d0b3e36675d19349d5d7ec7dfed1d4e81e,Stian Soiland-Reyes,stain@apache.org,2018-01-28 22:37:16+00:00,GitHub,noreply@github.com,2018-01-28 22:37:16+00:00,False,apache,github,* master,True,stain_arcp-py.git,stain/arcp-py.git,https://github.com/stain/arcp-py.git +19f0ae2a05044a1a3d9a2368073b228a4b5f70fb,MORIOKA Tomohiko,tomo@kanji.zinbun.kyoto-u.ac.jp,1997-06-01 23:16:31+00:00,MORIOKA Tomohiko,tomo@kanji.zinbun.kyoto-u.ac.jp,1997-06-01 23:16:31+00:00,False,kanji,kanji,* master,True,cvs-m17n-org_MU-CITE,cvs-m17n-org/MU-CITE,https://github.com/cvs-m17n-org/MU-CITE +4aafa00e95cc8e495ad7a8a34191dd9d2048e036,Matt Hilton,mattyowl@gmail.com,2016-07-01 17:06:29+02:00,Matt Hilton,mattyowl@gmail.com,2016-07-01 15:06:29+00:00,False,gmail,gmail,* main,True,mattyowl_astLib.git,mattyowl/astLib.git,https://github.com/mattyowl/astLib.git de675cd6543fd03250b0ff61e2d4138e520e073f,Kjetil Kjernsmo,kjetil@kjernsmo.net,2017-08-15 00:09:09+02:00,Kjetil Kjernsmo,kjetil@kjernsmo.net,2017-08-14 22:09:09+00:00,False,kjernsmo,kjernsmo,* main,True,kjetilk_p5-atteanx-compatibility-trine.git,kjetilk/p5-atteanx-compatibility-trine.git,https://github.com/kjetilk/p5-atteanx-compatibility-trine.git -7351928ce437d3e0e6ed1092c4677090d45da9ed,ronsavage,ron@savage.net.au,2013-12-20 11:40:24+11:00,ronsavage,ron@savage.net.au,2013-12-20 00:40:24+00:00,False,savage,savage,* master,True,ronsavage_GraphViz.git,ronsavage/GraphViz.git,https://github.com/ronsavage/GraphViz.git -3f42011c2763e84f65a9f60881fd8aaccea797f7,Chris Simpkins,chris@sourcefoundry.org,2020-06-22 10:09:15-04:00,GitHub,noreply@github.com,2020-06-22 14:09:15+00:00,True,sourcefoundry,github,* master,True,source-foundry_Hack,source-foundry/Hack,https://github.com/source-foundry/Hack -55d2ebe6ba55f3fc8468b19bd3fafe60d64b5641,François Freitag,mail@franek.fr,2022-08-16 13:41:18+02:00,François Freitag,mail@franek.fr,2022-08-16 11:45:41+00:00,False,franek,franek,* master,True,django-auth-ldap_django-auth-ldap.git,django-auth-ldap/django-auth-ldap.git,https://github.com/django-auth-ldap/django-auth-ldap.git -f63602c2155432b5eefb4ef49a8a5996ee8925a9,Wolfgang Rohdewald,wolfgang@rohdewald.de,2011-02-12 11:06:53+00:00,Wolfgang Rohdewald,wolfgang@rohdewald.de,2011-02-12 11:06:53+00:00,False,rohdewald,rohdewald,* master,True,libkmahjongg.git,libkmahjongg.git,https://anongit.kde.org/libkmahjongg.git -40f1574f0b5f713e44c73115553977900c9f933f,Florian Forster,ff@octo.it,2017-05-05 08:43:52+02:00,Florian Forster,ff@octo.it,2017-05-05 08:46:44+00:00,True,octo,octo,* master,True,octo_liboping,octo/liboping,https://github.com/octo/liboping -91d3932221a13756c6cead5f3e8ad734162639d3,Frank Yu,withyuxiaoy@gmail.com,2024-01-15 05:38:05+08:00,GitHub,noreply@github.com,2024-01-14 21:38:05+00:00,False,gmail,github,* main,True,pallets-eco_flask-sqlalchemy,pallets-eco/flask-sqlalchemy,https://github.com/pallets-eco/flask-sqlalchemy -964ae86917e94ff34c6c52286493ab01934859f9,Michel Machado,michel@digirati.com.br,2023-05-08 10:13:20-04:00,GitHub,noreply@github.com,2023-05-08 14:13:20+00:00,True,digirati,github,* master,True,AltraMayor_f3.git,AltraMayor/f3.git,https://github.com/AltraMayor/f3.git -abe6cc5b38def58dd1d265e3f51cd63cf0c39a70,Standreas,standreas@riseup.net,2022-02-16 18:34:05+01:00,GitHub,noreply@github.com,2022-02-16 17:34:05+00:00,False,riseup,github,* master,True,lxqt_pavucontrol-qt.git,lxqt/pavucontrol-qt.git,https://github.com/lxqt/pavucontrol-qt.git -62b189f79579b69b66386a6ba5bccd9ea2bf01d1,Paul Driver,frodwith@gmail.com,2013-06-08 21:19:53-05:00,Paul Driver,frodwith@gmail.com,2013-06-09 02:19:53+00:00,False,gmail,gmail,* master,True,frodwith_MooseX-MultiInitArg.git,frodwith/MooseX-MultiInitArg.git,https://github.com/frodwith/MooseX-MultiInitArg.git -2751ca930340ec58e9e630fbf89b03f801447be3,Spencer McIntyre,zeroSteiner@gmail.com,2020-09-11 20:29:07-04:00,Spencer McIntyre,zeroSteiner@gmail.com,2021-05-16 16:09:22+00:00,False,gmail,gmail,* master,True,mitsuhiko_pluginbase.git,mitsuhiko/pluginbase.git,https://github.com/mitsuhiko/pluginbase.git -b5c6f1d69897d553d62713afd20cb039accc336d,Alex Gaynor,alex.gaynor@gmail.com,2024-02-01 20:28:16-05:00,GitHub,noreply@github.com,2024-02-02 01:28:16+00:00,False,gmail,github,* main,True,pyca_bcrypt.git,pyca/bcrypt.git,https://github.com/pyca/bcrypt.git -82bc0e6fc9d4e616722f68ebff32081f2b452b28,Frank B. Brokken,f.b.brokken@rug.nl,2018-06-10 09:50:04+02:00,Frank B. Brokken,f.b.brokken@rug.nl,2018-06-10 07:50:04+00:00,False,rug,rug,* master,True,fbb-git_stealth,fbb-git/stealth,https://gitlab.com/fbb-git/stealth -672dff77633c027635ff12b86acef5e97d5ed728,Rémy HUBSCHER,hubscher.remy@gmail.com,2016-05-30 11:32:00+02:00,Rémy HUBSCHER,hubscher.remy@gmail.com,2016-05-30 09:32:00+00:00,True,gmail,gmail,* master,True,circus-tent_chaussette,circus-tent/chaussette,https://github.com/circus-tent/chaussette -b2a8a65c4a90f35fbe6b6d1717b794750d2223c7,Ryan Davis,ryand@zenspider.com,2013-05-09 13:59:37-08:00,Ryan Davis,ryand@zenspider.com,2013-05-09 21:59:37+00:00,False,zenspider,zenspider,* master,True,seattlerb_rubyinline.git,seattlerb/rubyinline.git,https://github.com/seattlerb/rubyinline.git -22c575e4ad1682907a9458dd4834c04fcdcf2cd1,Robert Jacobs,rnjacobs@mit.edu,2012-01-03 18:22:33-08:00,Robert Jacobs,rnjacobs@mit.edu,2012-01-04 02:22:33+00:00,False,mit,mit,* master,True,rnjacobs_wmbubble.git,rnjacobs/wmbubble.git,https://github.com/rnjacobs/wmbubble.git -8be840e0a93c9c90565c6f137834ecacba0f14bf,Al-phonsio,160236920+Al-phonsio@users.noreply.github.com,2024-03-16 15:24:36+01:00,GitHub,noreply@github.com,2024-03-16 14:24:36+00:00,False,users,github,* master,True,websockets_ws.git,websockets/ws.git,https://github.com/websockets/ws.git +49f397d74e8ea6bc57ec422afb15f0149f9c44e5,Ron Savage,ron@savage.net.au,2011-10-23 15:58:18+11:00,Ron Savage,ron@savage.net.au,2011-10-23 04:58:18+00:00,False,savage,savage,* master,True,ronsavage_GraphViz.git,ronsavage/GraphViz.git,https://github.com/ronsavage/GraphViz.git +72cd034ad5a0327471e97d445ea9479c875eb72f,Chris Simpkins,git.simpkins@gmail.com,2015-06-21 18:47:58-04:00,Chris Simpkins,git.simpkins@gmail.com,2015-06-21 22:47:58+00:00,False,gmail,gmail,* master,True,source-foundry_Hack,source-foundry/Hack,https://github.com/source-foundry/Hack +353fb3403e50a1cc5418a287d371eb59355c288a,Peter Sagerson,psagers.hg@ignorare.net,2012-03-05 12:17:23-08:00,Peter Sagerson,psagers.hg@ignorare.net,2012-03-05 20:17:23+00:00,False,ignorare,ignorare,* master,True,django-auth-ldap_django-auth-ldap.git,django-auth-ldap/django-auth-ldap.git,https://github.com/django-auth-ldap/django-auth-ldap.git +20b932fc5b15e9828d67e2399022df1959be1a2d,Mauricio Piacentini,piacentini@kde.org,2006-12-05 23:20:19+00:00,Mauricio Piacentini,piacentini@kde.org,2006-12-05 23:20:19+00:00,False,kde,kde,* master,True,libkmahjongg.git,libkmahjongg.git,https://anongit.kde.org/libkmahjongg.git +6995e2cfd517af456904db26b7781b4953feeacc,octo,octo,2006-05-08 14:16:34+00:00,octo,octo,2006-05-08 14:16:34+00:00,False,octo,octo,* master,True,octo_liboping,octo/liboping,https://github.com/octo/liboping +57c81ae5ae7b6d47d68bf3125b6c52c09ad27aec,Armin Ronacher,armin.ronacher@active-4.com,2010-06-01 17:02:15+02:00,Armin Ronacher,armin.ronacher@active-4.com,2010-06-01 15:02:15+00:00,False,active-4,active-4,* main,True,pallets-eco_flask-sqlalchemy,pallets-eco/flask-sqlalchemy,https://github.com/pallets-eco/flask-sqlalchemy +8bd4f358da6e1384126efd16c1070b70a213edbf,Michel Machado,michel@digirati.com.br,2011-12-14 15:48:15-05:00,Michel Machado,michel@digirati.com.br,2011-12-14 20:48:15+00:00,False,digirati,digirati,* master,True,AltraMayor_f3.git,AltraMayor/f3.git,https://github.com/AltraMayor/f3.git +134de95485b1b0e1dcd9c0a8fe8bcbe882fc8153,Lennart Poettering,lennart@poettering.net,2006-04-21 19:46:29+00:00,Lennart Poettering,lennart@poettering.net,2006-04-21 19:46:29+00:00,False,poettering,poettering,* master,True,lxqt_pavucontrol-qt.git,lxqt/pavucontrol-qt.git,https://github.com/lxqt/pavucontrol-qt.git +76f62a8db7f65eae38e64b22ab41feebad6d7155,Paul Driver,frodwith@gmail.com,2013-06-08 19:57:53-05:00,Paul Driver,frodwith@gmail.com,2013-06-09 00:57:53+00:00,False,gmail,gmail,* master,True,frodwith_MooseX-MultiInitArg.git,frodwith/MooseX-MultiInitArg.git,https://github.com/frodwith/MooseX-MultiInitArg.git +1e6456bf54bb37743d22fe564b475f10bc13281e,Armin Ronacher,armin.ronacher@active-4.com,2014-06-30 22:50:56+02:00,Armin Ronacher,armin.ronacher@active-4.com,2014-06-30 20:50:56+00:00,False,active-4,active-4,* master,True,mitsuhiko_pluginbase.git,mitsuhiko/pluginbase.git,https://github.com/mitsuhiko/pluginbase.git +ce1defde2647755480aff7d544dddb86b7b40efa,Donald Stufft,donald@stufft.io,2013-05-10 22:06:18-04:00,Donald Stufft,donald@stufft.io,2013-05-11 02:06:18+00:00,False,stufft,stufft,* main,True,pyca_bcrypt.git,pyca/bcrypt.git,https://github.com/pyca/bcrypt.git +a8fbb2172977d42002f15ad89d6a5d79ec764ae7,Frank B. Brokken,f.b.brokken@rug.nl,2003-06-20 18:38:27+00:00,Frank B. Brokken,f.b.brokken@rug.nl,2003-06-20 18:38:27+00:00,False,rug,rug,* master,True,fbb-git_stealth,fbb-git/stealth,https://gitlab.com/fbb-git/stealth +075003a24ffe92253da60aafc6f99062e0af267d,Tarek Ziade,tarek@ziade.org,2012-06-02 04:43:32+02:00,Tarek Ziade,tarek@ziade.org,2012-06-02 02:43:32+00:00,False,ziade,ziade,* master,True,circus-tent_chaussette,circus-tent/chaussette,https://github.com/circus-tent/chaussette +7959a06bfbe59b3b516fa73bfef21ba70f97a588,Ryan Davis,ryand@zenspider.com,2002-09-05 22:12:02-08:00,Ryan Davis,ryand@zenspider.com,2002-09-06 06:12:02+00:00,False,zenspider,zenspider,* master,True,seattlerb_rubyinline.git,seattlerb/rubyinline.git,https://github.com/seattlerb/rubyinline.git +8a500c12bcc27bb8da3e705fb93fa612b49f8b99,Robert Jacobs,rnjacobs@mit.edu,2011-08-29 19:00:41-07:00,Robert Jacobs,rnjacobs@mit.edu,2011-08-30 02:00:41+00:00,False,mit,mit,* master,True,rnjacobs_wmbubble.git,rnjacobs/wmbubble.git,https://github.com/rnjacobs/wmbubble.git +19093dc604fe52c498560d7fc19570074714e459,einaros,einaros@gmail.com,2011-11-07 22:30:11+01:00,einaros,einaros@gmail.com,2011-11-07 21:30:11+00:00,False,gmail,gmail,* master,True,websockets_ws.git,websockets/ws.git,https://github.com/websockets/ws.git 9132351ff9f7ef6907b1708f16c119dba5090d88,Matthijs van Duin,matthijsvanduin@gmail.com,2021-04-22 16:07:22+02:00,Matthijs van Duin,matthijsvanduin@gmail.com,2021-04-22 14:07:22+00:00,False,gmail,gmail,* master,True,mvduin_perl-Data-Alias,mvduin/perl-Data-Alias,https://github.com/mvduin/perl-Data-Alias -98fd42c2cdfc13c9ba7712d73d84d85b6307e27a,lima1,mriester@gmx.de,2011-05-29 14:57:47-04:00,lima1,mriester@gmx.de,2011-05-29 18:57:47+00:00,False,gmx,gmx,* master,True,lima1_p5-latex-table.git,lima1/p5-latex-table.git,https://github.com/lima1/p5-latex-table.git -1f65e4fecab9b97699d0b7aea82713aff7751d09,Venelin Stoykov,vkstoykov@gmail.com,2021-01-11 01:22:38+02:00,GitHub,noreply@github.com,2021-01-10 23:22:38+00:00,True,gmail,github,* master,True,matthewwithanm_pilkit,matthewwithanm/pilkit,https://github.com/matthewwithanm/pilkit -8439135309ecd0dd40563f19d4f2c80659e27e76,Philip Heron,phil@sanslogic.co.uk,2023-06-09 21:05:23+01:00,Philip Heron,phil@sanslogic.co.uk,2023-06-09 20:05:23+00:00,False,sanslogic,sanslogic,* master,True,fsphil_hacktv,fsphil/hacktv,https://github.com/fsphil/hacktv -21f0408cb3df40e5de3d3fa2698eb6626c57df02,Koen Holtman,koen.holtman@ieee.org,2020-05-02 22:35:53+02:00,Koen Holtman,koen.holtman@ieee.org,2020-05-02 20:35:53+00:00,False,ieee,ieee,* master,True,kholtman_afio,kholtman/afio,https://github.com/kholtman/afio -4b5edd1926d300c122eeb70fe5592c0d48d0acab,Bob Ippolito,bob@redivi.com,2023-11-19 16:48:14-07:00,GitHub,noreply@github.com,2023-11-19 23:48:14+00:00,True,redivi,github,* main,True,xattr_xattr.git,xattr/xattr.git,https://github.com/xattr/xattr.git -a6c6a7e8e545dc9e80d5d92b47724abca79dab72,Steve Piercy,web@stevepiercy.com,2018-11-26 04:26:16-08:00,Steve Piercy,web@stevepiercy.com,2018-11-27 11:37:54+00:00,False,stevepiercy,stevepiercy,* main,True,Pylons_pastedeploy,Pylons/pastedeploy,https://github.com/Pylons/pastedeploy -dedafc615f09a8367b2e0490bc358941ba166961,Jeremy Salwen,jeremysalwen@gmail.com,2022-02-21 10:47:10-05:00,Jeremy Salwen,jeremysalwen@gmail.com,2022-02-21 15:47:10+00:00,True,gmail,gmail,* master,True,jeremysalwen_lv2file.git,jeremysalwen/lv2file.git,https://github.com/jeremysalwen/lv2file.git -0f0d6512c46cb01ee0908952e0389fbe6a9e6e2e,Ian Cordasco,graffatcolmingov@gmail.com,2016-07-19 19:46:46-05:00,Ian Cordasco,graffatcolmingov@gmail.com,2016-07-20 00:46:46+00:00,False,gmail,gmail,* main,True,PyCQA_flake8-polyfill.git,PyCQA/flake8-polyfill.git,https://github.com/PyCQA/flake8-polyfill.git -593cbb1743fd444bdf4229a5aec5c3c02c804cae,Mark Hills,mark@xwax.org,2021-08-18 21:29:21+01:00,Mark Hills,mark@xwax.org,2021-08-18 20:33:07+00:00,False,xwax,xwax,* master,True,xwax_xwax.git,xwax/xwax.git,https://github.com/xwax/xwax.git -5470761a47cdd6db7c1224bec3a1ae38ebb1a38c,twojstaryzdomu,twojstaryzdomu@github.com,2022-06-30 13:25:22+02:00,twojstaryzdomu,twojstaryzdomu@github.com,2022-06-30 11:25:22+00:00,False,github,github,* master,True,twojstaryzdomu_bchunk,twojstaryzdomu/bchunk,https://github.com/twojstaryzdomu/bchunk -567012fc7596103194a6650abb579ba6723737d5,Nicholas Bamber,nicholas@periapt.co.uk,2009-10-05 12:35:46+01:00,Nicholas Bamber,nicholas@periapt.co.uk,2009-10-05 11:35:46+00:00,False,periapt,periapt,* master,True,periapt_geo-google-mapobject.git,periapt/geo-google-mapobject.git,https://github.com/periapt/geo-google-mapobject.git -d67aca654f34cd934ae2b194188e22b4815d06d9,Chris Beaven,smileychris@gmail.com,2023-01-19 10:34:34+13:00,Chris Beaven,smileychris@gmail.com,2023-01-18 21:34:34+00:00,False,gmail,gmail,* main,True,SmileyChris_django-countries,SmileyChris/django-countries,https://github.com/SmileyChris/django-countries -ef733e5380900105f28d82b10fd6510bd41b2bd1,Carl Crowder,carl@zerfeciz.com,2023-05-12 12:41:14+07:00,Carl Crowder,carl@zerfeciz.com,2023-05-20 04:49:53+00:00,False,zerfeciz,zerfeciz,* master,True,PyCQA_prospector,PyCQA/prospector,https://github.com/PyCQA/prospector -b1b329a6c4544f0feefeed959edca3dd1056cecd,Graham Percival,gperciva@tarsnap.com,2024-01-01 15:40:49-08:00,Colin Percival,cperciva@tarsnap.com,2024-01-12 21:34:21+00:00,False,tarsnap,tarsnap,* master,True,Tarsnap_scrypt.git,Tarsnap/scrypt.git,https://github.com/Tarsnap/scrypt.git -c47021eb0bf139a50676a62992a0bab437b30dfa,Lorenz Wildberg,lorenz@wild-fisch.de,2022-09-15 21:42:05+02:00,Rico Tzschichholz,ricotz@ubuntu.com,2023-10-09 11:28:20+00:00,False,wild-fisch,ubuntu,* main,True,GNOME_vala.git,GNOME/vala.git,https://gitlab.gnome.org/GNOME/vala.git +4b5972dfa1b36f7925ee227af5fddd8f317b8878,lima1,mriester@gmx.de,2010-08-14 14:32:53-04:00,lima1,mriester@gmx.de,2010-08-14 18:32:53+00:00,False,gmx,gmx,* master,True,lima1_p5-latex-table.git,lima1/p5-latex-table.git,https://github.com/lima1/p5-latex-table.git +b72dea2157ad7cb1eb3b1b7d85326f10f2ca6192,Matthew Tretter,m@tthewwithanm.com,2013-02-07 19:25:11-05:00,Matthew Tretter,m@tthewwithanm.com,2013-02-08 00:47:45+00:00,False,tthewwithanm,tthewwithanm,* master,True,matthewwithanm_pilkit,matthewwithanm/pilkit,https://github.com/matthewwithanm/pilkit +f6d29774fb7675577f73e9657dcabc25ff2b34d7,Philip Heron,phil@sanslogic.co.uk,2017-05-22 21:00:49+01:00,Philip Heron,phil@sanslogic.co.uk,2017-05-22 20:00:49+00:00,False,sanslogic,sanslogic,* master,True,fsphil_hacktv,fsphil/hacktv,https://github.com/fsphil/hacktv +97931845a4d9bca16fe566e820ad426df6018536,Koen Holtman,koen.holtman@ieee.org,2012-02-05 17:49:08+01:00,Koen Holtman,koen.holtman@ieee.org,2012-02-05 16:49:08+00:00,False,ieee,ieee,* master,True,kholtman_afio,kholtman/afio,https://github.com/kholtman/afio +6ef656a58b1ff1a7b539d6be46b88d6d5aa1eea0,Bob Ippolito,bob@redivi.com,2005-05-03 20:19:49+00:00,Bob Ippolito,bob@redivi.com,2005-05-03 20:19:49+00:00,False,redivi,redivi,* main,True,xattr_xattr.git,xattr/xattr.git,https://github.com/xattr/xattr.git +9e8069125c369594040b55f6152fb4fab23b9c9b,Alex Gr?nholm,alex.gronholm@nextday.fi,2011-08-15 15:06:50+03:00,Alex Gr?nholm,alex.gronholm@nextday.fi,2011-08-15 12:06:50+00:00,False,nextday,nextday,* main,True,Pylons_pastedeploy,Pylons/pastedeploy,https://github.com/Pylons/pastedeploy +8481ee3bd5e77e1e78fe393f9cf83b6f247ffd8e,Alessio Treglia,alessio@debian.org,2011-06-18 10:19:05+02:00,Alessio Treglia,alessio@debian.org,2011-06-18 08:19:05+00:00,False,debian,debian,* master,True,jeremysalwen_lv2file.git,jeremysalwen/lv2file.git,https://github.com/jeremysalwen/lv2file.git +a1b157f8fe1e12b8028190c81d43e478df7484e5,Ian Cordasco,graffatcolmingov@gmail.com,2016-07-19 12:32:21-05:00,Ian Cordasco,graffatcolmingov@gmail.com,2016-07-19 17:32:21+00:00,False,gmail,gmail,* main,True,PyCQA_flake8-polyfill.git,PyCQA/flake8-polyfill.git,https://github.com/PyCQA/flake8-polyfill.git +b379eed95004791c5b9d80ccee21f16a7eeb1f1f,Mark Hills,mark@pogo.org.uk,2007-06-10 19:20:13+01:00,Mark Hills,mark@pogo.org.uk,2007-06-10 18:20:13+00:00,False,pogo,pogo,* master,True,xwax_xwax.git,xwax/xwax.git,https://github.com/xwax/xwax.git +10a8cf5651aaf8ce6405ac4dafdc5054d29f540e,Heikki Hannikainen,hessu@hes.iki.fi,2017-11-14 00:04:24+02:00,Heikki Hannikainen,hessu@hes.iki.fi,2017-11-13 22:04:24+00:00,False,hes,hes,* master,True,twojstaryzdomu_bchunk,twojstaryzdomu/bchunk,https://github.com/twojstaryzdomu/bchunk +966e20bbca19f62a473dde9df14194c8dd0aab1d,Nicholas Bamber,nicholas@periapt.co.uk,2009-09-29 08:34:08+01:00,Nicholas Bamber,nicholas@periapt.co.uk,2009-09-29 07:34:08+00:00,False,periapt,periapt,* master,True,periapt_geo-google-mapobject.git,periapt/geo-google-mapobject.git,https://github.com/periapt/geo-google-mapobject.git +7275e9589e75b15a0277e65297698dab8558cd21,Chris Beaven,smileychris@gmail.com,2010-01-22 15:01:38+13:00,Chris Beaven,smileychris@gmail.com,2010-01-22 02:01:38+00:00,False,gmail,gmail,* main,True,SmileyChris_django-countries,SmileyChris/django-countries,https://github.com/SmileyChris/django-countries +32cd87d97d12cc26a790490243caa3274514ba6e,carlio,git@carlcrowder.com,2013-08-05 00:26:31-07:00,carlio,git@carlcrowder.com,2013-08-05 07:26:31+00:00,False,carlcrowder,carlcrowder,* master,True,PyCQA_prospector,PyCQA/prospector,https://github.com/PyCQA/prospector +ddc58f04db1306dea98bf3cf2d7772fa85a0a114,Colin Percival,cperciva@tarsnap.com,2012-08-18 10:33:25+00:00,Colin Percival,cperciva@tarsnap.com,2012-08-18 10:33:25+00:00,False,tarsnap,tarsnap,* master,True,Tarsnap_scrypt.git,Tarsnap/scrypt.git,https://github.com/Tarsnap/scrypt.git +68f95ffe3aef82aac0fb7bbc65d1faab19902e3c,Jürg Billeter,juergbi@src.gnome.org,2006-04-21 09:20:38+00:00,Jürg Billeter,juergbi@src.gnome.org,2006-04-21 09:20:38+00:00,False,src,src,* main,True,GNOME_vala.git,GNOME/vala.git,https://gitlab.gnome.org/GNOME/vala.git 0ac20a40c80352f1cb09308ec61308b35830a943,Jos Boumans,kane@cpan.org,2006-08-17 20:50:46+00:00,Jos Boumans,kane@cpan.org,2006-08-17 20:50:46+00:00,False,cpan,cpan,* master,True,jib_config-auto.git,jib/config-auto.git,https://github.com/jib/config-auto.git -ed46b6eb138edd111940f486e4d5cc53b30fc2e3,Hernan Grecco,hgrecco@gmail.com,2024-03-08 21:25:17-03:00,Hernan Grecco,hgrecco@gmail.com,2024-03-09 00:31:36+00:00,False,gmail,gmail,* master,True,hgrecco_pint.git,hgrecco/pint.git,https://github.com/hgrecco/pint.git -80f6a0e8ea3398aa368dfd7ce2ec1a406521457d,Saransh Rana,73984159+groovyBugify@users.noreply.github.com,2024-01-19 23:13:21+05:30,GitHub,noreply@github.com,2024-01-19 17:43:21+00:00,False,users,github,* develop,True,aws_aws-cli,aws/aws-cli,https://github.com/aws/aws-cli -c26ed7b7d0ead5ca7d831ca2c577d992d666a9e8,Kostya Esmukov,kostya@esmukov.net,2023-08-27 16:56:00+03:00,GitHub,noreply@github.com,2023-08-27 13:56:00+00:00,False,esmukov,github,* master,True,geopy_geopy,geopy/geopy,https://github.com/geopython/geolinks.git -45bb42766c0916f49e5cdc1835b465148e63febc,Bruce Merry,1963944+bmerry@users.noreply.github.com,2022-05-09 13:43:28+02:00,GitHub,noreply@github.com,2022-05-09 11:43:28+00:00,True,users,github,* master,True,jamesls_fakeredis.git,jamesls/fakeredis.git,https://github.com/jamesls/fakeredis.git -6ab7c4b76ccf9360af2c6c4faa31608d6ee0bada,Pali Rohár,pali.rohar@gmail.com,2018-01-17 21:09:20+01:00,Pali Rohár,pali.rohar@gmail.com,2018-01-17 20:09:20+00:00,True,gmail,gmail,* master,True,plasma_ksshaskpass.git,plasma/ksshaskpass.git,https://invent.kde.org/plasma/ksshaskpass.git -b6bf58abe8f02f9c0d30763fcb8ed346b5621e0b,Ran Benita,ran@unusedvar.com,2024-03-01 15:20:33+02:00,GitHub,noreply@github.com,2024-03-01 13:20:33+00:00,True,unusedvar,github,* main,True,pytest-dev_pytest.git,pytest-dev/pytest.git,https://github.com/pytest-dev/pytest.git -50aec6f231555f296b6a2d1cd11b596a562a2d21,George Talusan,gtalusan@kobo.com,2014-03-31 01:07:48-04:00,George Talusan,gtalusan@kobo.com,2014-03-31 05:07:48+00:00,False,kobo,kobo,* kobo,True,kobolabs_dhcpcd-dbus.git,kobolabs/dhcpcd-dbus.git,https://github.com/kobolabs/dhcpcd-dbus.git -1f06c351e9ea451875efe86f40c785ba730055ef,stefonarch,standreas@riseup.net,2023-04-29 22:10:35+02:00,Chih-Hsuan Yen,1937689+yan12125@users.noreply.github.com,2023-05-09 17:01:24+00:00,False,riseup,users,* master,True,lxqt_lxqt-config.git,lxqt/lxqt-config.git,https://github.com/lxqt/lxqt-config.git -ce635d8964ad42a997c56a0c34b412f1927c60c5,Michael Klishin,michaelklishin@me.com,2022-11-29 03:43:29+04:00,GitHub,noreply@github.com,2022-11-28 23:43:29+00:00,True,me,github,* main,True,pika_pika,pika/pika,https://github.com/pika/pika -7685aff79f7abde8927ec3272ed48e7265b2f079,John Stowers,john.stowers@gmail.com,2014-08-22 12:10:06+02:00,John Stowers,john.stowers@gmail.com,2014-08-22 10:10:06+00:00,True,gmail,gmail,* master,True,nzjrs_osm-gps-map,nzjrs/osm-gps-map,https://github.com/nzjrs/osm-gps-map -236474f25dae207dc45f0244289aca90813f68ae,Daniel Richter,danielrichter2007@web.de,2015-10-13 17:17:41+00:00,Daniel Richter,danielrichter2007@web.de,2015-10-13 17:17:41+00:00,False,web,web,* master,True,grub-customizer,grub-customizer,https://git.launchpad.net/grub-customizer -0000bfed70e447ccf6fa25ee0855bdfaf40d0c5f,Laurent Montel,montel@kde.org,2021-08-27 13:41:55+02:00,Laurent Montel,montel@kde.org,2021-08-27 11:41:55+00:00,False,kde,kde,* master,True,killbots.git,killbots.git,https://anongit.kde.org/killbots.git -1b7c619d6127ffa54cb4df782aa7356016b00861,joncrall,erotemic@gmail.com,2023-08-16 11:57:54-04:00,joncrall,erotemic@gmail.com,2023-08-16 15:57:54+00:00,False,gmail,gmail,* main,True,pyutils_line_profiler,pyutils/line/profiler,https://github.com/pyutils/line_profiler -572a28cfb0958c8641299322310882800b562ee2,Alex Hall,alex.mojaki@gmail.com,2023-10-28 12:27:46+02:00,GitHub,noreply@github.com,2023-10-28 10:27:46+00:00,True,gmail,github,* master,True,gristlabs_asttokens.git,gristlabs/asttokens.git,https://github.com/gristlabs/asttokens.git -9d76947e8249bec5f3ab21d79a2865391db04781,michihenning,michi@triodia.com,2017-04-16 11:22:43+10:00,GitHub,noreply@github.com,2017-04-16 01:22:43+00:00,True,triodia,github,* main,True,ubports_core_cmake-extras,ubports/core/cmake-extras,https://gitlab.com/ubports/core/cmake-extras -3ff4fff3875422c74c47c8f7475d8b9674ad264c,Chia-liang Kao,clkao@clkao.org,2015-01-18 13:12:53+08:00,Chia-liang Kao,clkao@clkao.org,2015-01-18 05:12:53+00:00,False,clkao,clkao,* master,True,clkao_IO-Digest.git,clkao/IO-Digest.git,https://github.com/clkao/IO-Digest.git -fb2fe3a82911c660f7870ce2cd3a3e716af256ef,Jason Simeone,jay@classless.net,2021-09-09 18:02:49-04:00,Jason Simeone,jay@classless.net,2021-09-09 22:02:49+00:00,False,classless,classless,* master,True,jayclassless_setoptconf.git,jayclassless/setoptconf.git,https://github.com/jayclassless/setoptconf.git -c6042c836270cdccbcb7b566425393c20af2b638,Alexandr Ciornii,alexchorny@gmail.com,2013-02-24 13:37:11+02:00,Alexandr Ciornii,alexchorny@gmail.com,2013-02-24 11:37:11+00:00,False,gmail,gmail,* master,True,chorny_Tie-IxHash.git,chorny/Tie-IxHash.git,https://github.com/chorny/Tie-IxHash.git -264f98a0be334c50d71b15ef8f354872f90e263d,Doug Bell,doug101@bellz.org,2023-11-19 12:14:09-05:00,Doug Bell,doug101@bellz.org,2023-11-19 17:14:09+00:00,False,bellz,bellz,* master,True,doug-101_ConvertAll.git,doug-101/ConvertAll.git,https://github.com/doug-101/ConvertAll.git -7c9a6c16d5c460f834800f9ec3d75ee1ff0416f5,Matei David,matei@cs.toronto.edu,2015-11-20 15:57:14-05:00,Matei David,matei@cs.toronto.edu,2015-11-20 20:57:14+00:00,False,cs,cs,* master,True,mateidavid_hpptools.git,mateidavid/hpptools.git,https://github.com/mateidavid/hpptools.git -71676cb9d9b6da4152cdac2af7c7174f3fe96883,Sandro Bonazzola,sbonazzo@redhat.com,2022-09-27 08:30:33+02:00,GitHub,noreply@github.com,2022-09-27 06:30:33+00:00,False,redhat,github,* master,True,oVirt_mom,oVirt/mom,https://github.com/oVirt/mom -f251d3239e92b3da033e20286886e1632b529332,Thomas Grainger,tagrain@gmail.com,2021-07-23 23:18:25+01:00,GitHub,noreply@github.com,2021-07-23 22:18:25+00:00,True,gmail,github,* trunk,True,twisted_incremental.git,twisted/incremental.git,https://github.com/twisted/incremental.git -7b93bf45ea72020bc8fba0cce6e9ebb9ceec6de5,Attila Lakatos,Cropi@users.noreply.github.com,2022-11-30 14:24:40+01:00,GitHub,noreply@github.com,2022-11-30 13:24:40+00:00,False,users,github,* main,True,dkopecek_usbguard,dkopecek/usbguard,https://github.com/dkopecek/usbguard -5d31cad41e7c5701db024f228255276a48cd65d1,Eli Bendersky,eliben@gmail.com,2023-10-30 05:38:51-07:00,Eli Bendersky,eliben@gmail.com,2023-10-30 12:38:51+00:00,False,gmail,gmail,* main,True,eliben_pyelftools.git,eliben/pyelftools.git,https://github.com/eliben/pyelftools.git -35bc7dd8288445289134c335aae8af859862ccd1,Aymeric Augustin,aymeric.augustin@fractalideas.com,2024-01-14 21:20:06+01:00,Aymeric Augustin,aymeric.augustin@fractalideas.com,2024-01-14 20:20:06+00:00,False,fractalideas,fractalideas,* main,True,aaugustin_websockets.git,aaugustin/websockets.git,https://github.com/aaugustin/websockets.git -c76004f5a53d72617936933eb8819b392628b01e,Nitin Madnani,nmadnani@gmail.com,2018-08-09 20:53:34-04:00,GitHub,noreply@github.com,2018-08-10 00:53:34+00:00,True,gmail,github,* master,True,pygridtools_drmaa-python,pygridtools/drmaa-python,https://github.com/pygridtools/drmaa-python -d4dcd5d44ff5b16c537eb53ea56bf9149816abac,Mohammad S Anwar,mohammad.anwar@yahoo.com,2022-06-13 22:33:45+01:00,Mohammad S Anwar,mohammad.anwar@yahoo.com,2022-06-13 21:33:45+00:00,False,yahoo,yahoo,* master,True,manwar_Test-XPath.git,manwar/Test-XPath.git,https://github.com/manwar/Test-XPath.git -b2b8f422a0838fff50143ec00c1bbb7974e92a83,Peter Fein,pete@wearpants.org,2013-09-03 09:46:04-05:00,Peter Fein,pete@wearpants.org,2013-09-03 14:46:04+00:00,False,wearpants,wearpants,* master,True,wearpants_fakesleep,wearpants/fakesleep,https://github.com/wearpants/fakesleep -93e31cae2247bd0694a1c3af4b0e88722eb20b6a,David Hoese,david.hoese@ssec.wisc.edu,2018-05-22 06:02:24-05:00,GitHub,noreply@github.com,2018-05-22 11:02:24+00:00,True,ssec,github,* main,True,pytroll_trollsift,pytroll/trollsift,https://github.com/pytroll/trollsift -65e3d97a0b8b9ad208d5b959aa2f488f8cd700c2,Carson Gee,x@carsongee.com,2023-10-05 22:23:33-06:00,GitHub,noreply@github.com,2023-10-06 04:23:33+00:00,True,carsongee,github,* main,True,carsongee_pytest-pylint,carsongee/pytest-pylint,https://github.com/carsongee/pytest-pylint +30f1130547f34983d445ce3668522d4f5a2a2a06,Hernan Grecco,hernan.grecco@gmail.com,2012-05-03 02:21:14+02:00,Hernan Grecco,hernan.grecco@gmail.com,2012-05-03 00:21:14+00:00,False,gmail,gmail,* master,True,hgrecco_pint.git,hgrecco/pint.git,https://github.com/hgrecco/pint.git +010871c8a4b89cd7fdabf924e634c361d77fe8da,Mitch Garnaat,mitch@garnaat.com,2012-11-20 19:40:32-08:00,Mitch Garnaat,mitch@garnaat.com,2012-11-21 03:40:32+00:00,False,garnaat,garnaat,* develop,True,aws_aws-cli,aws/aws-cli,https://github.com/aws/aws-cli +1548aa28d276ad1101f29a011ddf77c72bad91b2,Mike Tigas,mike@tig.as,2012-12-10 13:12:10-08:00,Mike Tigas,mike@tig.as,2012-12-10 21:12:10+00:00,False,tig,tig,* master,True,geopy_geopy,geopy/geopy,https://github.com/geopython/geolinks.git +e1008b4adcdc7ab54bcc7a090691a6514b892057,James Saryerwinnie,jls.npi@gmail.com,2011-07-21 20:41:19-07:00,James Saryerwinnie,jls.npi@gmail.com,2011-07-22 03:41:19+00:00,False,gmail,gmail,* master,True,jamesls_fakeredis.git,jamesls/fakeredis.git,https://github.com/jamesls/fakeredis.git +f8192f1a521235b765cb85a4459706256ec331ff,Jeremy Whiting,jpwhiting@kde.org,2014-11-01 14:42:02-06:00,Jeremy Whiting,jpwhiting@kde.org,2014-11-01 20:42:02+00:00,False,kde,kde,* master,True,plasma_ksshaskpass.git,plasma/ksshaskpass.git,https://invent.kde.org/plasma/ksshaskpass.git +5992a8ef21424d7571305a8d7e2a3431ee7e1e23,hpk,none@none,2007-01-24 15:24:01+01:00,hpk,none@none,2007-01-24 14:24:01+00:00,False,none,none,* main,True,pytest-dev_pytest.git,pytest-dev/pytest.git,https://github.com/pytest-dev/pytest.git +6ab06afdbcc2e7fe2839325ba00da551cd7e1678,Roy Marples,roy@marples.name,2009-01-19 17:22:02+00:00,Roy Marples,roy@marples.name,2009-01-19 17:22:02+00:00,False,marples,marples,* kobo,True,kobolabs_dhcpcd-dbus.git,kobolabs/dhcpcd-dbus.git,https://github.com/kobolabs/dhcpcd-dbus.git +a63f6d192dc714e23574c475f7b344168bcc3f38,Petr Vanek,petr@scribus.info,2011-08-21 18:51:58+02:00,Petr Vanek,petr@scribus.info,2011-08-21 16:51:58+00:00,False,scribus,scribus,* master,True,lxqt_lxqt-config.git,lxqt/lxqt-config.git,https://github.com/lxqt/lxqt-config.git +f594a955cbc4344a8d2443d5b6e276b2825dde45,Tony Garnock-Jones,tonyg@lshift.net,2010-01-04 15:32:23+00:00,Tony Garnock-Jones,tonyg@lshift.net,2010-01-04 15:32:23+00:00,False,lshift,lshift,* main,True,pika_pika,pika/pika,https://github.com/pika/pika +bec38677b3f2918c97a6a1edea795fc7191a0c11,John Stowers,john.stowers@gmail.com,2008-05-10 23:10:20+00:00,John Stowers,john.stowers@gmail.com,2008-05-10 23:10:20+00:00,False,gmail,gmail,* master,True,nzjrs_osm-gps-map,nzjrs/osm-gps-map,https://github.com/nzjrs/osm-gps-map +8f1038a188110260263a64eef83dae858107af3d,Daniel Richter,danielrichter2007@web.de,2012-07-22 22:00:48+00:00,Daniel Richter,danielrichter2007@web.de,2012-07-22 22:00:48+00:00,False,web,web,* master,True,grub-customizer,grub-customizer,https://git.launchpad.net/grub-customizer +17f92ad51bc5465115a67d995823046028c3c4f3,Eugene Trounev,eugene.trounev@gmail.com,2008-11-17 15:26:31+00:00,Eugene Trounev,eugene.trounev@gmail.com,2008-11-17 15:26:31+00:00,False,gmail,gmail,* master,True,killbots.git,killbots.git,https://anongit.kde.org/killbots.git +f3b0a1716563a2741b11ba07dc5e081ee1b9989e,Robert Kern,robert.kern@gmail.com,2008-10-25 16:39:26-05:00,Robert Kern,robert.kern@gmail.com,2008-10-25 21:39:26+00:00,False,gmail,gmail,* main,True,pyutils_line_profiler,pyutils/line/profiler,https://github.com/pyutils/line_profiler +881761561019ad29332d0d44efb889d08ed64b4b,dsagal,dsagal+git@gmail.com,2016-12-05 17:09:10-05:00,dsagal,dsagal+git@gmail.com,2016-12-05 22:09:10+00:00,False,gmail,gmail,* master,True,gristlabs_asttokens.git,gristlabs/asttokens.git,https://github.com/gristlabs/asttokens.git +d621974c7208ac2e6d2a96de3b5e6f33641fbf08,Stephen M. Webb,stephen.webb@canonical.com,2017-04-15 11:59:51-04:00,Stephen M. Webb,stephen.webb@canonical.com,2017-04-15 15:59:51+00:00,False,canonical,canonical,* main,True,ubports_core_cmake-extras,ubports/core/cmake-extras,https://gitlab.com/ubports/core/cmake-extras +0d106609e23836f72ad09d0efe50fddf6cac807c,Chia-liang Kao,clkao@clkao.org,2004-09-11 09:33:23-08:00,Michael G. Schwern,schwern@pobox.com,2009-12-12 02:49:18+00:00,False,clkao,pobox,* master,True,clkao_IO-Digest.git,clkao/IO-Digest.git,https://github.com/clkao/IO-Digest.git +cad2331b603eed49ebd113917431df7e34bbd53e,Jason Simeone,jay@classless.net,2014-01-21 19:20:31-05:00,Jason Simeone,jay@classless.net,2014-01-22 00:20:31+00:00,False,classless,classless,* master,True,jayclassless_setoptconf.git,jayclassless/setoptconf.git,https://github.com/jayclassless/setoptconf.git +9b7d678205f923ff44dcae5c452b78eb5c8cde96,Gurusamy Sarathy,gsar@cpan.org,1997-02-17 18:06:30-08:00,Michael G. Schwern,schwern@pobox.com,2009-12-13 16:36:13+00:00,False,cpan,pobox,* master,True,chorny_Tie-IxHash.git,chorny/Tie-IxHash.git,https://github.com/chorny/Tie-IxHash.git +2251b1d57d19d70124eadd605932925f2930b417,Doug Bell,doug101@bellz.org,2023-09-15 19:58:05-04:00,Doug Bell,doug101@bellz.org,2023-09-15 23:58:05+00:00,False,bellz,bellz,* master,True,doug-101_ConvertAll.git,doug-101/ConvertAll.git,https://github.com/doug-101/ConvertAll.git +256300e8455a6d429f489b39a607e9577acadcce,Matei David,matei@cs.toronto.edu,2015-11-18 18:01:57-05:00,Matei David,matei@cs.toronto.edu,2015-11-18 23:01:57+00:00,False,cs,cs,* master,True,mateidavid_hpptools.git,mateidavid/hpptools.git,https://github.com/mateidavid/hpptools.git +1fd30dca011413f486c5daf28d0ae2dc30dfa5e5,Adam Litke,agl@us.ibm.com,2010-04-13 17:06:11-05:00,Adam Litke,agl@us.ibm.com,2010-04-13 22:06:11+00:00,False,us,us,* master,True,oVirt_mom,oVirt/mom,https://github.com/oVirt/mom +d083e647893e17b360af5c2731c3e5588c18c99c,Amber Brown (HawkOwl),hawkowl@atleastfornow.net,2015-11-29 21:45:59+08:00,Amber Brown (HawkOwl),hawkowl@atleastfornow.net,2015-11-29 13:45:59+00:00,False,atleastfornow,atleastfornow,* trunk,True,twisted_incremental.git,twisted/incremental.git,https://github.com/twisted/incremental.git +433c9468e340c16db634defe5132b16480d057c7,Daniel Kopeček,dkopecek@redhat.com,2015-03-18 14:14:42+01:00,Daniel Kopeček,dkopecek@redhat.com,2015-03-18 13:14:42+00:00,False,redhat,redhat,* main,True,dkopecek_usbguard,dkopecek/usbguard,https://github.com/dkopecek/usbguard +198538a250dfd1f4057b06d5c982f56fa819f926,ebenders,devnull@localhost,2011-09-07 11:12:47+03:00,ebenders,devnull@localhost,2011-09-07 08:12:47+00:00,False,localhost,localhost,* main,True,eliben_pyelftools.git,eliben/pyelftools.git,https://github.com/eliben/pyelftools.git +392b5464e41fdef203c517cd387c997b685ddb5a,Aymeric Augustin,aymeric.augustin@m4x.org,2013-03-30 23:02:16+01:00,Aymeric Augustin,aymeric.augustin@m4x.org,2013-03-30 22:02:16+00:00,False,m4x,m4x,* main,True,aaugustin_websockets.git,aaugustin/websockets.git,https://github.com/aaugustin/websockets.git +cd2581535b094a675d730bed080353e532212d93,David Ressman,davidr@ressman.org,2013-03-20 21:55:31-05:00,David Ressman,davidr@ressman.org,2013-03-21 02:55:31+00:00,False,ressman,ressman,* master,True,pygridtools_drmaa-python,pygridtools/drmaa-python,https://github.com/pygridtools/drmaa-python +4dc331dccca9ebe12d9bfce3b976625a21ee55db,David E. Wheeler,david@justatheory.com,2009-08-26 17:02:50-07:00,David E. Wheeler,david@justatheory.com,2009-08-27 00:02:50+00:00,False,justatheory,justatheory,* master,True,manwar_Test-XPath.git,manwar/Test-XPath.git,https://github.com/manwar/Test-XPath.git +08ecb237ca63811c91eb650a8618e817d53fe905,Peter Fein,pete@wearpants.org,2013-09-03 09:25:12-05:00,Peter Fein,pete@wearpants.org,2013-09-03 14:25:12+00:00,False,wearpants,wearpants,* master,True,wearpants_fakesleep,wearpants/fakesleep,https://github.com/wearpants/fakesleep +c4c921ca4768b0d939aa554c52714249b9f5e56b,Panu Lahtinen,pnuu+git@iki.fi,2014-06-10 11:32:44+03:00,Panu Lahtinen,pnuu+git@iki.fi,2014-06-10 08:32:44+00:00,False,iki,iki,* main,True,pytroll_trollsift,pytroll/trollsift,https://github.com/pytroll/trollsift +487518195d6da8adf0d7b55dcdca16837f0ce234,Carson Gee,x@carsongee.com,2015-04-21 09:56:59-04:00,Carson Gee,x@carsongee.com,2015-04-21 13:56:59+00:00,False,carsongee,carsongee,* main,True,carsongee_pytest-pylint,carsongee/pytest-pylint,https://github.com/carsongee/pytest-pylint 6547f9a945ae5fad7fe55a024a9e03b156400b98,yappo,yappo@3efe9002-19ed-0310-8735-a98156148065,2009-02-05 07:35:55+00:00,yappo,yappo@3efe9002-19ed-0310-8735-a98156148065,2009-02-05 07:35:55+00:00,False,3efe9002-19ed-0310-8735-a98156148065,3efe9002-19ed-0310-8735-a98156148065,* master,True,yappo_p5-mousex-types.git,yappo/p5-mousex-types.git,https://github.com/yappo/p5-mousex-types.git -ce6dcb561998120fa217c613a19c598c1f24c228,Leon Brocard,acme@astray.com,2009-02-06 17:50:23+00:00,Leon Brocard,acme@astray.com,2009-02-06 17:50:23+00:00,False,astray,astray,* master,True,broquaint_git-pureperl.git,broquaint/git-pureperl.git,https://github.com/broquaint/git-pureperl.git -08cca6f45b002a9fa09960ce8c757ca09cfe1cc6,Joachim Metz,joachim.metz@gmail.com,2022-08-07 11:07:28+02:00,Joachim Metz,joachim.metz@gmail.com,2022-08-07 09:07:28+00:00,False,gmail,gmail,* main,True,libyal_libqcow.git,libyal/libqcow.git,https://github.com/libyal/libqcow.git -cb14fa9d083c982f0911e57a4170f999fa1a8fda,Luciano Prestes Cavalcanti,lucianopcbr@gmail.com,2016-05-13 12:03:26-03:00,Luciano Prestes Cavalcanti,lucianopcbr@gmail.com,2016-05-18 14:44:24+00:00,False,gmail,gmail,* master,True,LucianoPC_mkalias,LucianoPC/mkalias,https://github.com/LucianoPC/mkalias -7b3173f1652daa871b91abac99123bd16975824a,Christopher S. Corley,cscorley@gmail.com,2020-05-31 15:39:37-04:00,Christopher S. Corley,cscorley@gmail.com,2020-05-31 19:39:37+00:00,False,gmail,gmail,* main,True,cscorley_whatthepatch,cscorley/whatthepatch,https://github.com/cscorley/whatthepatch -999654155db14cd858b5c41a86ad32e24f4eba0c,Remi Rampin,remi@rampin.org,2021-09-20 15:15:34-07:00,GitHub,noreply@github.com,2021-09-20 22:15:34+00:00,True,rampin,github,* master,True,jbardin_scp.py,jbardin/scp.py,https://github.com/jbardin/scp.py +6e330506c365c0fc0ea0a54ed2df646f280edf97,Leon Brocard,acme@astray.com,2008-11-14 16:36:55+00:00,Leon Brocard,acme@astray.com,2008-11-14 16:36:55+00:00,False,astray,astray,* master,True,broquaint_git-pureperl.git,broquaint/git-pureperl.git,https://github.com/broquaint/git-pureperl.git +ea6f62dfdd1bbc9ebc421334dbf95d7fcc0c091b,Joachim Metz,joachim.metz@gmail.com,2013-09-22 14:47:07+02:00,Joachim Metz,joachim.metz@gmail.com,2013-09-22 12:47:07+00:00,False,gmail,gmail,* main,True,libyal_libqcow.git,libyal/libqcow.git,https://github.com/libyal/libqcow.git +129fd4605f7bd2424b28ef4fb780bbfd5855e13d,Luciano Prestes Cavalcanti,lucianopcbr@gmail.com,2016-05-11 13:09:28-03:00,Luciano Prestes Cavalcanti,lucianopcbr@gmail.com,2016-05-11 16:18:49+00:00,False,gmail,gmail,* master,True,LucianoPC_mkalias,LucianoPC/mkalias,https://github.com/LucianoPC/mkalias +6e4b5cb8dd4a9406f02e54f4956c009a54f10831,Christopher Corley,cscorley@ua.edu,2012-12-17 10:13:19-06:00,Christopher Corley,cscorley@ua.edu,2012-12-26 22:38:29+00:00,False,ua,ua,* main,True,cscorley_whatthepatch,cscorley/whatthepatch,https://github.com/cscorley/whatthepatch +ef0312628a662ea7ee8d3691bbb822ecfe753842,jbardin,jbardin@bu.edu,2011-03-01 11:13:50-05:00,jbardin,jbardin@bu.edu,2011-03-01 16:13:50+00:00,False,bu,bu,* master,True,jbardin_scp.py,jbardin/scp.py,https://github.com/jbardin/scp.py a436cebdefeae52535805caedd25f486396ca802,Lafricain,fr.cyrille@tiberiade.be,2021-11-08 10:05:25+00:00,Lafricain,fr.cyrille@tiberiade.be,2021-11-08 10:05:25+00:00,False,tiberiade,tiberiade,* main,True,crosswire-bible-society_tdavid.git,crosswire-bible-society/tdavid.git,https://gitlab.com/crosswire-bible-society/tdavid.git -de5eb8d5945569356bfb15c49ec5c5d3972f0421,Sebastian Pipping,sebastian@pipping.org,2024-03-08 19:12:33+01:00,GitHub,noreply@github.com,2024-03-08 18:12:33+00:00,True,pipping,github,* main,True,git-big-picture_git-big-picture.git,git-big-picture/git-big-picture.git,https://github.com/git-big-picture/git-big-picture.git -f225bfbb53aaed27bacd28d8f43aae30425d5212,Daniel Pope,mauve@mauveweb.co.uk,2018-02-25 14:06:58+00:00,Daniel Pope,mauve@mauveweb.co.uk,2018-02-25 14:06:58+00:00,False,mauveweb,mauveweb,* debian,True,RPi-Distro_pgzero,RPi-Distro/pgzero,https://github.com/RPi-Distro/pgzero -e43e413192caef00b9bf37b9a064437a2747f21c,Andy Li,andy@onthewings.net,2019-10-25 21:46:34+08:00,Andy Li,andy@onthewings.net,2019-10-25 13:46:34+00:00,True,onthewings,onthewings,* master,True,HaxeFoundation_neko-debian,HaxeFoundation/neko-debian,https://github.com/HaxeFoundation/neko-debian -011fb9040abebc49bac04f6e4afda24c605e8614,David Leonard,d+git@adaptive-enterprises.com,2006-01-27 12:11:18+00:00,David Leonard,d+git@adaptive-enterprises.com,2006-01-27 12:11:18+00:00,False,adaptive-enterprises,adaptive-enterprises,* master,True,dleonard0_pktstat,dleonard0/pktstat,https://github.com/dleonard0/pktstat -2aec93b712667009b0a7b74b3b0ae5a00b99968b,Bert JW Regeer,xistence@0x58.com,2022-02-06 22:53:50-07:00,GitHub,noreply@github.com,2022-02-07 05:53:50+00:00,True,0x58,github,* main,True,Pylons_venusian,Pylons/venusian,https://github.com/Pylons/venusian +b278c4cc357606f5b29bffb0b27b3856e38d409a,Julius Plenz,git-big-picture@plenz.com,2010-03-17 15:23:07+01:00,Sebastian Pipping,sebastian@pipping.org,2010-03-17 18:44:19+00:00,False,plenz,pipping,* main,True,git-big-picture_git-big-picture.git,git-big-picture/git-big-picture.git,https://github.com/git-big-picture/git-big-picture.git +a218979bc4ad5c53fc2cdf0a34fec392a104f927,Richard Jones,663366+r1chardj0n3s@users.noreply.github.com,2015-04-14 12:22:26-04:00,Richard Jones,663366+r1chardj0n3s@users.noreply.github.com,2015-04-14 16:22:26+00:00,False,users,users,* debian,True,RPi-Distro_pgzero,RPi-Distro/pgzero,https://github.com/RPi-Distro/pgzero +6aaffc0bae84daffb12e7fd0057207a888fe5137,Jens Peter Secher,jps@debian.org,2009-03-14 22:01:12+01:00,Bazaar Package Importer,james.westby@ubuntu.com,2009-03-14 21:01:12+00:00,True,debian,ubuntu,* master,True,HaxeFoundation_neko-debian,HaxeFoundation/neko-debian,https://github.com/HaxeFoundation/neko-debian +dfe0f8c893d69715bcbec7e259f2f78bb0ce8d7f,David Leonard,d+git@adaptive-enterprises.com,2002-07-25 02:40:03+00:00,David Leonard,d+git@adaptive-enterprises.com,2002-07-25 02:40:03+00:00,False,adaptive-enterprises,adaptive-enterprises,* master,True,dleonard0_pktstat,dleonard0/pktstat,https://github.com/dleonard0/pktstat +b45ebfb46fc2c8400fdb86d61c1e66d023716850,Chris McDonough,chrism@plope.com,2010-02-15 22:18:55+00:00,Chris McDonough,chrism@plope.com,2010-02-15 22:18:55+00:00,False,plope,plope,* main,True,Pylons_venusian,Pylons/venusian,https://github.com/Pylons/venusian ac9384804542dcc9938ace4ef01d23974ad0ac14,Chris 'BinGOs' Williams,chris@bingosnet.co.uk,2012-04-11 09:29:31+01:00,Chris 'BinGOs' Williams,chris@bingosnet.co.uk,2012-04-11 08:29:31+00:00,False,bingosnet,bingosnet,* master,True,bingos_sort-naturally.git,bingos/sort-naturally.git,https://github.com/bingos/sort-naturally.git -9abbafb30dd2b6cfa4333faacdcfc16db0c87c29,Fardin Allahverdinazhand,websploit@gmail.com,2022-04-22 14:29:14+04:30,GitHub,noreply@github.com,2022-04-22 09:59:14+00:00,False,gmail,github,* main,True,websploit_websploit,websploit/websploit,https://github.com/websploit/websploit -09019c8807f4b34160e9287a7725e783e2cf677c,Michael van Tellingen,m.vantellingen@labdigital.nl,2022-11-05 20:24:37+01:00,Michael van Tellingen,m.vantellingen@labdigital.nl,2022-11-05 19:24:37+00:00,False,labdigital,labdigital,* main,True,mvantellingen_python-zeep.git,mvantellingen/python-zeep.git,https://github.com/mvantellingen/python-zeep.git -d65499a8605c224b1f6f6cc53f7c3d1d44d60542,Arnaldo Carvalho de Melo,acme@redhat.com,2023-04-20 08:54:42-03:00,Arnaldo Carvalho de Melo,acme@redhat.com,2023-07-10 13:21:36+00:00,False,redhat,redhat,* master,True,pub_scm_devel_pahole_pahole.git,pub/scm/devel/pahole/pahole.git,git://git.kernel.org/pub/scm/devel/pahole/pahole.git -3f07969a422c6e3cc3f4fa71cbc2c72706117c2d,nvalimak,niko.valimaki@helsinki.fi,2015-10-28 17:02:56+00:00,nvalimak,niko.valimaki@helsinki.fi,2015-10-28 17:02:56+00:00,False,helsinki,helsinki,* master,True,nvalimak_fsm-lite.git,nvalimak/fsm-lite.git,https://github.com/nvalimak/fsm-lite.git -3f75dfa566785fcc38dce790e8c338ed00097da7,jake,jake@jakes-MacBook-Pro-2.local,2023-12-27 10:38:07-08:00,jake,jake@jakes-MacBook-Pro-2.local,2023-12-27 18:38:07+00:00,False,jakes-MacBook-Pro-2,jakes-MacBook-Pro-2,* master,True,jjjake_internetarchive.git,jjjake/internetarchive.git,https://github.com/jjjake/internetarchive.git +12bf173f19c12b4e8592eaa0e42279d6939465f7,Fardin Allahverdinazhand,websploit@gmail.com,2022-04-22 14:27:06+04:30,GitHub,noreply@github.com,2022-04-22 09:57:06+00:00,False,gmail,github,* main,True,websploit_websploit,websploit/websploit,https://github.com/websploit/websploit +382b534c1583eb6abae72ca4436dc6828040b22c,Michael van Tellingen,michael@mvantellingen.nl,2016-02-14 15:17:12+01:00,Michael van Tellingen,michael@mvantellingen.nl,2016-02-28 18:52:47+00:00,False,mvantellingen,mvantellingen,* main,True,mvantellingen_python-zeep.git,mvantellingen/python-zeep.git,https://github.com/mvantellingen/python-zeep.git +75a3425a9a0be2f40010c01ba67ab659cef1b833,Helio Chissini de Castro,helio@mandriva.com,2006-12-12 00:37:23-02:00,Arnaldo Carvalho de Melo,acme@mandriva.com,2006-12-12 02:37:23+00:00,False,mandriva,mandriva,* master,True,pub_scm_devel_pahole_pahole.git,pub/scm/devel/pahole/pahole.git,git://git.kernel.org/pub/scm/devel/pahole/pahole.git +7e7f6e2ba8f48ff67a0dd862f7938417ec63e43a,Niko V,nvalimak@localhost,2015-10-25 11:55:31+00:00,Niko V,nvalimak@localhost,2015-10-25 11:55:31+00:00,False,localhost,localhost,* master,True,nvalimak_fsm-lite.git,nvalimak/fsm-lite.git,https://github.com/nvalimak/fsm-lite.git +500fd82877f3c1699dab592b3a329329f6dd57d5,Jake Johnson,jake@archive.org,2012-08-15 22:02:58+00:00,Jake Johnson,jake@archive.org,2012-08-15 22:02:58+00:00,False,archive,archive,* master,True,jjjake_internetarchive.git,jjjake/internetarchive.git,https://github.com/jjjake/internetarchive.git b9af5f0611eb4fcd7a76021468a9f60ffde4dc01,Eugene Trounev,eugene.trounev@gmail.com,2008-11-17 15:26:31+00:00,Eugene Trounev,eugene.trounev@gmail.com,2008-11-17 15:26:31+00:00,False,gmail,gmail,* master,True,bovo.git,bovo.git,https://anongit.kde.org/bovo.git -99341ff3791b2e7e705d7373e71937e9018eb081,clavedeluna,danalitovsky+git@gmail.com,2022-09-05 11:33:02-03:00,Marcel Hellkamp,marc@gsites.de,2022-09-05 15:24:52+00:00,False,gmail,gsites,* master,True,bottlepy_bottle.git,bottlepy/bottle.git,https://github.com/bottlepy/bottle.git -54608a6e2da03a1b2b64cce8e047422d564188b7,tryhoehne,tryhoehne@gmail.com,2020-01-21 08:32:34-06:00,GitHub,noreply@github.com,2020-01-21 14:32:34+00:00,True,gmail,github,* master,True,rackerlabs_kthresher,rackerlabs/kthresher,https://github.com/rackerlabs/kthresher -439fb9a6de88dfa2b22a26d6974fb38e1e3b6bca,Rolf Leggewie,foss@rolf.leggewie.biz,2014-04-01 11:08:55+08:00,Rolf Leggewie,foss@rolf.leggewie.biz,2014-04-07 04:29:08+00:00,False,rolf,rolf,* master,True,leggewie-DM_libcapi20,leggewie-DM/libcapi20,https://github.com/leggewie-DM/libcapi20 -83dc377d76759ee8d3feababcb744dee3105ef04,Andrey Kurilin,andr.kurilin@gmail.com,2024-01-10 21:32:15+01:00,Andrey Kurilin,andr.kurilin@gmail.com,2024-01-10 20:32:35+00:00,False,gmail,gmail,* master,True,openstack_rally.git,openstack/rally.git,https://github.com/openstack/rally.git +c78437f04bd9631a9d9fc37f59a05b3448c7dacb,Marcel Hellkamp,marc@gsites.de,2009-06-30 20:36:00+02:00,Marcel Hellkamp,marc@gsites.de,2009-06-30 18:36:00+00:00,False,gsites,gsites,* master,True,bottlepy_bottle.git,bottlepy/bottle.git,https://github.com/bottlepy/bottle.git +214153960b19bc0921d6ce76d8b95f3ce5746a1f,Tony G,tonyskapunk@users.noreply.github.com,2015-10-09 15:41:44-05:00,Tony G,tonyskapunk@users.noreply.github.com,2015-10-09 20:41:44+00:00,False,users,users,* master,True,rackerlabs_kthresher,rackerlabs/kthresher,https://github.com/rackerlabs/kthresher +072018798067169aa85f2bd1e43a763625698832,Rolf Leggewie,foss@rolf.leggewie.biz,2014-04-07 12:29:05+08:00,Rolf Leggewie,foss@rolf.leggewie.biz,2014-04-07 04:29:05+00:00,False,rolf,rolf,* master,True,leggewie-DM_libcapi20,leggewie-DM/libcapi20,https://github.com/leggewie-DM/libcapi20 +1b37b4ef25a07f73848a28ede8f9bc7bdcff6993,Boris Pavlovic,boris@pavlovic.me,2013-08-03 09:17:25-07:00,Boris Pavlovic,boris@pavlovic.me,2013-08-03 16:17:25+00:00,False,pavlovic,pavlovic,* master,True,openstack_rally.git,openstack/rally.git,https://github.com/openstack/rally.git 3ebb53dbf9143fc714b24e51d401f0e7daa84b32,Asheesh Laroia,asheesh@sandstorm.io,2016-09-24 23:30:05-04:00,Asheesh Laroia,asheesh@sandstorm.io,2016-09-25 03:30:05+00:00,False,sandstorm,sandstorm,* master,True,paulproteus_ccd2iso-debian,paulproteus/ccd2iso-debian,https://github.com/paulproteus/ccd2iso-debian -920f78e7ede8912518620a5b1d92f6fdb32cfda2,Unknown,g.mulder-1@tudelft.nl,2017-07-20 11:39:33+02:00,Unknown,g.mulder-1@tudelft.nl,2017-07-20 09:39:33+00:00,False,tudelft,tudelft,* master,True,TUDelftGeodesy_Doris,TUDelftGeodesy/Doris,https://github.com/TUDelftGeodesy/Doris -e9b82f045f423452cfaeddc0b776905c05187e28,Will Shanks,wshaos@posteo.net,2024-03-15 13:51:02-04:00,GitHub,noreply@github.com,2024-03-15 17:51:02+00:00,False,posteo,github,* master,True,lebigot_uncertainties.git,lebigot/uncertainties.git,https://github.com/lebigot/uncertainties.git -031e023273affe7b3a1c61a253befb886a50eb39,Max Kellermann,max@musicpd.org,2022-07-14 12:30:02+02:00,Max Kellermann,max@musicpd.org,2022-07-14 10:30:03+00:00,False,musicpd,musicpd,* master,True,MusicPlayerDaemon_mpdscribble.git,MusicPlayerDaemon/mpdscribble.git,https://github.com/MusicPlayerDaemon/mpdscribble.git -ded940a4ba91f4467d18b48aa790b365a823287f,Marius Pa,nmariusp1@gmail.com,2024-03-15 18:06:50+00:00,Nate Graham,nate@kde.org,2024-03-15 18:06:50+00:00,False,gmail,kde,* master,True,plasma_breeze.git,plasma/breeze.git,https://invent.kde.org/plasma/breeze.git -72119d85a658baf450bd4f694d3d66b469cb0ca9,monsta,monsta@inbox.ru,2016-03-10 12:16:24+03:00,monsta,monsta@inbox.ru,2016-03-10 09:16:24+00:00,False,inbox,inbox,* master,True,mate-desktop_mozo.git,mate-desktop/mozo.git,https://github.com/mate-desktop/mozo.git -3caacd051c28aabb74c50e6ff9eb578bf8f5fa9b,derselbst,tom.mbrt@googlemail.com,2021-01-22 21:45:08+01:00,derselbst,tom.mbrt@googlemail.com,2021-01-22 20:50:51+00:00,False,googlemail,googlemail,* master,True,swami_libinstpatch,swami/libinstpatch,https://github.com/swami/libinstpatch -3b97df7830679f476e717fccb1f254ad308e6c95,Dima Kogan,dima@secretsauce.net,2019-08-12 15:47:52-07:00,Dima Kogan,dima@secretsauce.net,2019-08-12 22:47:52+00:00,False,secretsauce,secretsauce,* master,True,dkogan_libdogleg.git,dkogan/libdogleg.git,https://github.com/dkogan/libdogleg.git -79aebc5553adeb2beff924135ee3b7e4e6c7eb94,fujiwarat,takao.fujiwara1@gmail.com,2017-09-11 12:32:35+09:00,fujiwarat,takao.fujiwara1@gmail.com,2017-09-11 03:32:35+00:00,False,gmail,gmail,* main,True,ibus_ibus.git,ibus/ibus.git,https://github.com/ibus/ibus.git +53c12792332a29205e1c83bc5602acad865dc342,freek,f.j.vanleijen@tudelft.nl,2016-07-13 13:00:21+02:00,freek,f.j.vanleijen@tudelft.nl,2016-07-13 11:00:21+00:00,False,tudelft,tudelft,* master,True,TUDelftGeodesy_Doris,TUDelftGeodesy/Doris,https://github.com/TUDelftGeodesy/Doris +4a89afd24a347ef179d747dc578ec3b3db77f1d7,Eric LEBIGOT (EOL),eric.lebigot@normalesup.org,2010-06-14 15:36:13+02:00,Eric LEBIGOT (EOL),eric.lebigot@normalesup.org,2010-06-14 13:36:13+00:00,False,normalesup,normalesup,* master,True,lebigot_uncertainties.git,lebigot/uncertainties.git,https://github.com/lebigot/uncertainties.git +335f0633c7877210c2bb4e5069e2374ad383f0b3,Kuno Woudt,kuno@frob.nl,2006-11-30 11:43:42+00:00,Kuno Woudt,kuno@frob.nl,2006-11-30 11:43:42+00:00,False,frob,frob,* master,True,MusicPlayerDaemon_mpdscribble.git,MusicPlayerDaemon/mpdscribble.git,https://github.com/MusicPlayerDaemon/mpdscribble.git +9dc7fd6e9336d50b80238e371fd1e8c8c3f00823,Marco Martin,notmart@gmail.com,2014-04-29 11:20:20+02:00,Marco Martin,notmart@gmail.com,2014-04-29 09:20:20+00:00,False,gmail,gmail,* master,True,plasma_breeze.git,plasma/breeze.git,https://invent.kde.org/plasma/breeze.git +e87fbefcec0c44579495b1bcb22ac59814029566,Stefano Karapetsas,stefano@karapetsas.com,2012-01-12 18:28:35+01:00,Stefano Karapetsas,stefano@karapetsas.com,2012-01-12 17:28:35+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_mozo.git,mate-desktop/mozo.git,https://github.com/mate-desktop/mozo.git +d78d37aeba03a5b015310249935ac83391782fb9,Element Green,jgreen@users.sourceforge.net,2010-10-25 22:46:33+00:00,Element Green,jgreen@users.sourceforge.net,2010-10-25 22:46:33+00:00,False,users,users,* master,True,swami_libinstpatch,swami/libinstpatch,https://github.com/swami/libinstpatch +a54d973caf27c828dcab3222eca71e20c65481c7,Dima Kogan,dima@oblong.com,2011-08-22 13:25:00-07:00,Dima Kogan,dima@oblong.com,2011-08-22 20:25:00+00:00,False,oblong,oblong,* master,True,dkogan_libdogleg.git,dkogan/libdogleg.git,https://github.com/dkogan/libdogleg.git +c25a24ae2e40a39db61fcd6f80d76469daa49a28,Huang Peng,shawn.p.huang@gmail.com,2008-05-12 15:18:48+08:00,Huang Peng,shawn.p.huang@gmail.com,2008-05-12 07:18:48+00:00,False,gmail,gmail,* main,True,ibus_ibus.git,ibus/ibus.git,https://github.com/ibus/ibus.git e889ff95bb1aa5f2bf64186e93cb387f38796c0d,Aaron Trevena,aaron.trevena@gmail.com,2013-02-03 14:36:48+00:00,Aaron Trevena,aaron.trevena@gmail.com,2013-02-03 14:36:48+00:00,False,gmail,gmail,* master,True,hashbangperl_perl-pdf-report.git,hashbangperl/perl-pdf-report.git,https://github.com/hashbangperl/perl-pdf-report.git -fc06e5e7499f76d0fc63bce16168d5fc2e142cfc,Joachim Metz,joachim.metz@gmail.com,2020-06-21 08:00:39+02:00,Joachim Metz,joachim.metz@gmail.com,2020-06-21 06:10:12+00:00,False,gmail,gmail,* main,True,libyal_dtfabric.git,libyal/dtfabric.git,https://github.com/libyal/dtfabric.git -3f6053ad64be8401ecceff753b31f09ec7704d57,Vincent Delecroix,vincent.delecroix@labri.fr,2022-08-23 16:31:17+02:00,Vincent Delecroix,vincent.delecroix@labri.fr,2022-08-23 14:32:14+00:00,False,labri,labri,* master,True,videlec_pplpy,videlec/pplpy,https://gitlab.com/videlec/pplpy +9718d9062d14ff6709f4398f5f5e26102f1496fd,Joachim Metz,joachim.metz@gmail.com,2016-09-25 08:43:47+02:00,Joachim Metz,joachim.metz@gmail.com,2016-09-25 06:43:47+00:00,False,gmail,gmail,* main,True,libyal_dtfabric.git,libyal/dtfabric.git,https://github.com/libyal/dtfabric.git +d12676a0675fc648b79ff9ae5f7d5ec489a643d2,Vincent Delecroix,vincent.delecroix@labri.fr,2016-01-16 15:20:35-03:00,Vincent Delecroix,vincent.delecroix@labri.fr,2016-01-16 18:20:35+00:00,False,labri,labri,* master,True,videlec_pplpy,videlec/pplpy,https://gitlab.com/videlec/pplpy b0ac7bbd6adf15d9964f288d7bf25451e7beb374,David Edmundson,kde@davidedmundson.co.uk,2019-04-03 11:53:43+01:00,David Edmundson,kde@davidedmundson.co.uk,2019-04-03 10:53:43+00:00,False,davidedmundson,davidedmundson,* master,True,plasma_kwallet-pam.git,plasma/kwallet-pam.git,https://invent.kde.org/plasma/kwallet-pam.git -84d59ca61c913d7d8c41d01bc41aff3c9c486008,Oliver Kopp,kopp.dev@gmail.com,2024-01-24 10:39:14+01:00,GitHub,noreply@github.com,2024-01-24 09:39:14+00:00,False,gmail,github,* master,True,UbuntuBudgie_budgie-extras,UbuntuBudgie/budgie-extras,https://github.com/UbuntuBudgie/budgie-extras -dd782b95a6dffbc9a8eac4c4d7cd6faef01051f5,Andrei Borzenkov,arvidjaar@gmail.com,2016-11-14 20:02:50+03:00,Andrei Borzenkov,arvidjaar@gmail.com,2016-11-14 17:02:50+00:00,False,gmail,gmail,* master,True,arvidjaar_bootinfoscript,arvidjaar/bootinfoscript,https://github.com/arvidjaar/bootinfoscript -d46e5fac15efb10de30e1deb4a78403ae5a600f7,Daniel Kahn Gillmor,dkg@fifthhorseman.net,2023-01-26 11:42:50-05:00,Daniel Kahn Gillmor,dkg@fifthhorseman.net,2023-01-26 16:42:50+00:00,False,fifthhorseman,fifthhorseman,* main,True,dkg_dkg-handwriting,dkg/dkg-handwriting,https://gitlab.com/dkg/dkg-handwriting -a6ad75499ef040b5fa8aadab25be4fa24878c1a5,tsujan,tsujan2000@gmail.com,2022-09-16 00:19:32+04:30,GitHub,noreply@github.com,2022-09-15 19:49:32+00:00,False,gmail,github,* master,True,lxqt_screengrab.git,lxqt/screengrab.git,https://github.com/lxqt/screengrab.git -b83c170a178fe4e8dc08f78577a79e715418d935,Rob Hoelz,rob@hoelz.ro,2017-07-19 15:08:27-05:00,Rob Hoelz,rob@hoelz.ro,2017-07-19 20:08:27+00:00,False,hoelz,hoelz,* master,True,hoelzro_plack-test-anyevent.git,hoelzro/plack-test-anyevent.git,https://github.com/hoelzro/plack-test-anyevent.git -465618d9274d0b7a256205c75809b7f14764e203,Jakub Wilk,jwilk@jwilk.net,2024-01-31 22:15:30+01:00,Jakub Wilk,jwilk@jwilk.net,2024-01-31 21:15:30+00:00,False,jwilk,jwilk,* master,True,jwilk_dothost,jwilk/dothost,https://github.com/jwilk/dothost +69c7d9e20c6f1b50369a9650be9a5f65cf6dec86,Jacob-Vlijm,vlijm@planet.nl,2017-09-16 14:52:20+02:00,Jacob-Vlijm,vlijm@planet.nl,2017-09-16 12:52:20+00:00,False,planet,planet,* master,True,UbuntuBudgie_budgie-extras,UbuntuBudgie/budgie-extras,https://github.com/UbuntuBudgie/budgie-extras +bf89cc151311b78932a2bdd192deadd11e57d409,Gert Hulselmans,ghulselmans@users.sourceforge.net,2011-05-21 01:37:01+02:00,Gert Hulselmans,ghulselmans@users.sourceforge.net,2011-05-20 23:37:01+00:00,False,users,users,* master,True,arvidjaar_bootinfoscript,arvidjaar/bootinfoscript,https://github.com/arvidjaar/bootinfoscript +68bc65f75897cd2060a8e078b8d7e50d7cffec62,Daniel Kahn Gillmor,dkg@fifthhorseman.net,2010-01-07 01:11:10-05:00,Daniel Kahn Gillmor,dkg@fifthhorseman.net,2010-01-07 06:11:10+00:00,False,fifthhorseman,fifthhorseman,* main,True,dkg_dkg-handwriting,dkg/dkg-handwriting,https://gitlab.com/dkg/dkg-handwriting +b1f30798004f3d23648d674e47b5e45decf893ee,DOOMer,doomer@arch-x64.localdomain,2010-09-14 20:40:48+04:00,DOOMer,doomer@arch-x64.localdomain,2010-09-14 16:40:48+00:00,False,arch-x64,arch-x64,* master,True,lxqt_screengrab.git,lxqt/screengrab.git,https://github.com/lxqt/screengrab.git +64020b50cbc3a1a2104bbf32357417fb968ae066,Rob Hoelz,rob@hoelz.ro,2011-06-14 23:52:25-05:00,Rob Hoelz,rob@hoelz.ro,2011-06-15 04:52:25+00:00,False,hoelz,hoelz,* master,True,hoelzro_plack-test-anyevent.git,hoelzro/plack-test-anyevent.git,https://github.com/hoelzro/plack-test-anyevent.git +8d7ac4eac95ba5cf7d9fb09be4533f8574982eb5,Jakub Wilk,jwilk@jwilk.net,2015-07-02 12:05:06+02:00,Jakub Wilk,jwilk@jwilk.net,2015-07-02 10:05:06+00:00,False,jwilk,jwilk,* master,True,jwilk_dothost,jwilk/dothost,https://github.com/jwilk/dothost b1dbc309e0a6c9afdd6fbf4313a8390ae0c66104,Jean-Baptiste Alleaume,jbanety@gmail.com,2015-09-10 08:42:25+02:00,Jean-Baptiste Alleaume,jbanety@gmail.com,2015-09-10 06:42:25+00:00,False,gmail,gmail,* master,True,etd-framework_datatables-extensions,etd-framework/datatables-extensions,https://github.com/etd-framework/datatables-extensions -89872ea087c5b614b4b552790155dbcccc4be59d,Kirill Pavlov,k@p99.io,2019-11-17 22:48:02+08:00,Kirill Pavlov,k@p99.io,2019-11-17 14:48:02+00:00,True,p99,p99,* master,True,pavlov99_json-rpc,pavlov99/json-rpc,https://github.com/pavlov99/json-rpc -674c262dc8967dbc92dd43eba07db50b66cd3702,Florent Jaillet,florent.jaillet@lis-lab.fr,2018-02-07 15:09:58+01:00,Florent Jaillet,florent.jaillet@lis-lab.fr,2018-02-07 14:09:58+00:00,False,lis-lab,lis-lab,* master,True,dev_ltfatpy,dev/ltfatpy,https://gitlab.lis-lab.fr/dev/ltfatpy -a5670c7b0df65f36a3204d325194d70d8a19224e,Andre Klapper,a9016009@gmx.de,2023-11-26 14:44:10+01:00,Andre Klapper,a9016009@gmx.de,2023-11-26 13:44:10+00:00,False,gmx,gmx,* master,True,GNOME_gsettings-desktop-schemas.git,GNOME/gsettings-desktop-schemas.git,https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas.git -8c5286678f4a639d91c56894aad1dbc665c959d8,Jarrod Millman,jarrod.millman@gmail.com,2024-01-04 12:26:56-08:00,GitHub,noreply@github.com,2024-01-04 20:26:56+00:00,False,gmail,github,* main,True,pygraphviz_pygraphviz.git,pygraphviz/pygraphviz.git,https://github.com/pygraphviz/pygraphviz.git -0ddae3410471ed3a956325ea5822fa6b1d3b93a7,Karl Glazebrook,kgb@cpan.org,2007-05-16 07:48:58+00:00,Gitpan,schwern+gitpan@pobox.com,2014-10-26 13:44:21+00:00,False,cpan,pobox,* master,True,PDLPorters_perl5-PGPLOT.git,PDLPorters/perl5-PGPLOT.git,https://github.com/PDLPorters/perl5-PGPLOT.git -51580d93aad77b20825db2a316cc56e5280ea6ca,Theelx,43764914+Theelx@users.noreply.github.com,2024-03-09 19:49:58-05:00,GitHub,noreply@github.com,2024-03-10 00:49:58+00:00,False,users,github,* main,True,jsonpickle_jsonpickle,jsonpickle/jsonpickle,https://github.com/jsonpickle/jsonpickle -a136d067d39a2003bf5052cd9f83dec659cb51d9,Arne Welzel,arne.welzel@corelight.com,2023-08-04 13:06:20+02:00,Arne Welzel,arne.welzel@corelight.com,2023-08-04 11:06:20+00:00,False,corelight,corelight,* master,True,zeek_pysubnettree.git,zeek/pysubnettree.git,https://github.com/zeek/pysubnettree.git -9c44dbb77d03eea1f839f56cdabf4d7a34a5d9e6,Michael Hansen,mihansen@microsoft.com,2022-03-13 14:46:01-07:00,GitHub,noreply@github.com,2022-03-13 21:46:01+00:00,False,microsoft,github,* master,True,ismrmrd_ismrmrd.git,ismrmrd/ismrmrd.git,https://github.com/ismrmrd/ismrmrd.git -2cce94fc9e026598e4782ee0bf43d13644edbe55,Matthew Brett,matthew.brett@gmail.com,2020-04-12 18:44:13+01:00,Matthew Brett,matthew.brett@gmail.com,2020-04-12 17:44:13+00:00,False,gmail,gmail,* main,True,matthew-brett_texext.git,matthew-brett/texext.git,https://github.com/matthew-brett/texext.git -14ed5d4e5f0dc395e78c66c42d925f444e7c4b65,Bruno Oliveira,nicoddemus@gmail.com,2021-12-10 12:43:34-03:00,GitHub,noreply@github.com,2021-12-10 15:43:34+00:00,True,gmail,github,* master,True,pytest-dev_pytest-forked.git,pytest-dev/pytest-forked.git,https://github.com/pytest-dev/pytest-forked.git -8e12542488e5788e2363e102cbc7b74beeeb6845,Kevin Marsh,kevinmarsh@users.noreply.github.com,2022-09-27 02:19:19-07:00,GitHub,noreply@github.com,2022-09-27 09:19:19+00:00,False,users,github,* master,True,django-cms_django-classy-tags,django-cms/django-classy-tags,https://github.com/django-cms/django-classy-tags -37a3aeeec3d66d05e7db8063c68155f917c83de9,William Edwards,wedwards@cyberfusion.nl,2022-08-28 12:55:04+02:00,William Edwards,wedwards@cyberfusion.nl,2022-08-28 10:55:06+00:00,False,cyberfusion,cyberfusion,* master,True,astraw_stdeb.git,astraw/stdeb.git,https://github.com/astraw/stdeb.git -f069b1572b25d71404bca3e6ae195f44c8f6e8e9,Philipp Hagemeister,phihag@phihag.de,2019-10-18 03:26:17+02:00,Philipp Hagemeister,phihag@phihag.de,2019-10-18 01:26:17+00:00,False,phihag,phihag,* master,True,phihag_ipaddress,phihag/ipaddress,https://github.com/phihag/ipaddress -fa3cfc3f78be4d27d1366ae8c1b39d0a91be0dca,Mikhail Korobov,kmike84@gmail.com,2019-07-03 12:46:13+05:00,Mikhail Korobov,kmike84@gmail.com,2019-07-03 07:46:13+00:00,False,gmail,gmail,* master,True,kmike_datrie.git,kmike/datrie.git,https://github.com/kmike/datrie.git -a87c8c776c27b64eade210e388b805bf891d32fc,Stef Walter,stefw@gnome.org,2012-05-14 05:14:42+02:00,Stef Walter,stefw@gnome.org,2012-05-14 03:14:42+00:00,False,gnome,gnome,* master,True,realmd_adcli,realmd/adcli,https://gitlab.freedesktop.org/realmd/adcli -20012fc655b59531f9cb543c9b7d702fad081f40,Francesc Alted,faltet@gmail.com,2024-03-15 10:38:01+01:00,GitHub,noreply@github.com,2024-03-15 09:38:01+00:00,False,gmail,github,* master,True,pydata_numexpr,pydata/numexpr,https://github.com/pydata/numexpr -ddbf39cb3e9bbb5fd9ded0282338c00092f40d11,CrayzeeWulf,crayzeewulf@users.noreply.github.com,2020-04-04 13:43:29-07:00,GitHub,noreply@github.com,2020-04-04 20:43:29+00:00,False,users,github,* master,True,crayzeewulf_libserial.git,crayzeewulf/libserial.git,https://github.com/crayzeewulf/libserial.git -8e28ada5654693cf51f05ccd74fd3bfce2984e02,Michele Lacchia,michelelacchia@gmail.com,2020-03-16 15:45:23+01:00,Michele Lacchia,michelelacchia@gmail.com,2020-03-16 14:45:23+00:00,False,gmail,gmail,* master,True,rubik_mando.git,rubik/mando.git,https://github.com/rubik/mando.git -2add1e6c790d7f18187abf018287f3ee4da6c51d,Nelson Ferraz,nelson.ferraz@booking.com,2017-06-26 13:24:27+02:00,Nelson Ferraz,nelson.ferraz@booking.com,2017-06-26 11:24:27+00:00,False,booking,booking,* master,True,nferraz_st,nferraz/st,https://github.com/nferraz/st -18aa74b6928b18036734e241b8f0234f3dfe9e3c,Michka Popoff,michkapopoff@gmail.com,2023-08-21 07:07:44+02:00,GitHub,noreply@github.com,2023-08-21 05:07:44+00:00,True,gmail,github,* develop,True,gccxml_pygccxml,gccxml/pygccxml,https://github.com/gccxml/pygccxml -9e3f1d9ba4e4cfee82e2bef93fee4daaa7d22bf9,Bastien Gérard,bast.gerard@gmail.com,2024-03-10 12:56:26+01:00,GitHub,noreply@github.com,2024-03-10 11:56:26+00:00,True,gmail,github,* master,True,mongoengine_mongoengine,mongoengine/mongoengine,https://github.com/mongoengine/flask-mongoengine -fba846ded37a790225cb573e4dca8814d7bf3d85,Matthew Barnett,git@mrabarnett.plus.com,2023-10-03 16:51:13+01:00,Matthew Barnett,git@mrabarnett.plus.com,2023-10-03 15:51:13+00:00,False,mrabarnett,mrabarnett,* hg,True,mrabarnett_mrab-regex,mrabarnett/mrab-regex,https://github.com/mrabarnett/mrab-regex -8904c162578575fd060d51da466c4fb2f6700d58,Mathieu Leplatre,mathieu@leplat.re,2016-02-11 14:41:37+01:00,Mathieu Leplatre,mathieu@leplat.re,2016-02-11 13:41:37+00:00,True,leplat,leplat,* debian,True,douardda_pyramid_multiauth,douardda/pyramid/multiauth,https://github.com/douardda/pyramid_multiauth -37ffb602b5d8720e49c7fb979144480f87741402,Brandon Rhodes,brandon@rhodesmill.org,2021-04-08 22:52:35-04:00,Brandon Rhodes,brandon@rhodesmill.org,2021-04-09 03:03:23+00:00,False,rhodesmill,rhodesmill,* master,True,brandon-rhodes_pyephem.git,brandon-rhodes/pyephem.git,https://github.com/brandon-rhodes/pyephem.git -e81ee093e2f8126564d0ddb40b4cb6568af75a5b,Kim Nørgaard,jasen@jasen.dk,2016-05-31 14:43:46+02:00,Kim Nørgaard,jasen@jasen.dk,2016-05-31 12:43:46+00:00,True,jasen,jasen,* master,True,KimNorgaard_validates_hostname,KimNorgaard/validates/hostname,https://github.com/KimNorgaard/validates_hostname -0d41aa7b173abfb83a6bec3ad39a6a708bc49108,Penar Musaraj,pmusaraj@gmail.com,2019-03-25 09:39:43-04:00,Penar Musaraj,pmusaraj@gmail.com,2019-03-25 13:39:43+00:00,True,gmail,gmail,* master,True,ccampbell_mousetrap,ccampbell/mousetrap,https://github.com/ccampbell/mousetrap -e8b11e241a9e622f52ad759aff4ffa588b73071c,Jeremy McAnally,jeremymcanally@gmail.com,2021-12-01 10:37:32-05:00,GitHub,noreply@github.com,2021-12-01 15:37:32+00:00,True,gmail,github,* master,True,jm_toml,jm/toml,https://github.com/jm/toml -ad9dc17cd299a3c06bc4f990018c0911ed80a409,Stephane Glondu,steph@glondu.net,2014-09-05 17:16:28+02:00,Stephane Glondu,steph@glondu.net,2014-09-05 15:16:28+00:00,False,glondu,glondu,* master,True,glondu_nss-passwords,glondu/nss-passwords,https://github.com/glondu/nss-passwords -16cede7a3bd6722c4d389f2441f13847cded9637,Tres Seaver,tseaver@palladion.com,2016-06-03 14:41:57-04:00,Tres Seaver,tseaver@palladion.com,2016-06-03 18:41:57+00:00,False,palladion,palladion,* master,True,repoze_repoze.tm2.git,repoze/repoze.tm2.git,https://github.com/repoze/repoze.tm2.git -fe56b875b442a8c4aea9471c7973666fe8fbeb26,Tatsuhiro Tsujikawa,404610+tatsuhiro-t@users.noreply.github.com,2024-02-18 18:37:39+09:00,GitHub,noreply@github.com,2024-02-18 09:37:39+00:00,True,users,github,* master,True,nghttp2_nghttp2.git,nghttp2/nghttp2.git,https://github.com/nghttp2/nghttp2.git -ca8f4025f1c92fda8bea1c57f89302682126ba1f,Justine Tunney,jtunney@gmail.com,2016-07-04 19:02:02-04:00,Justine Tunney,jtunney@gmail.com,2016-07-04 23:02:02+00:00,False,gmail,gmail,* master,True,jart_fabulous.git,jart/fabulous.git,https://github.com/jart/fabulous.git -f70628be6df71417e42af382e6e27b443c4bfa6d,Christian Clauss,cclauss@me.com,2023-12-08 08:21:32+01:00,GitHub,noreply@github.com,2023-12-08 07:21:32+00:00,False,me,github,* main,True,django-mptt_django-mptt.git,django-mptt/django-mptt.git,https://github.com/django-mptt/django-mptt.git -594c8fa5f8e3fb38b0977f1ff8a87e9d709e7db1,Douglas Crockford,douglas@crockford.com,2019-08-26 15:15:55-07:00,Douglas Crockford,douglas@crockford.com,2019-08-26 22:15:55+00:00,False,crockford,crockford,* master,True,douglascrockford_JSON-js,douglascrockford/JSON-js,https://github.com/douglascrockford/JSON-js -8780f92d46a0f2a00307014f5b8f7350ca1bc500,Andre Klapper,a9016009@gmx.de,2023-11-26 14:40:56+01:00,Andre Klapper,a9016009@gmx.de,2023-11-26 13:40:56+00:00,False,gmx,gmx,* master,True,GNOME_libsoup,GNOME/libsoup,https://gitlab.gnome.org/GNOME/libsoup -d25e1f8cf010ff7f5dacc093313b104234458b4d,Jesse Vincent,jesse@bestpractical.com,2009-04-11 22:16:29-04:00,Jesse Vincent,jesse@bestpractical.com,2009-04-12 02:16:29+00:00,True,bestpractical,bestpractical,* master,True,bestpractical_http-server-simple,bestpractical/http-server-simple,https://github.com/bestpractical/http-server-simple -08d76df72883f18f651826d81dbf53b28fa78a33,Karen Etheridge,ether@cpan.org,2017-07-31 09:25:50-07:00,Karen Etheridge,ether@cpan.org,2017-07-31 16:25:50+00:00,False,cpan,cpan,* master,True,karenetheridge_B-Hooks-OP-Check,karenetheridge/B-Hooks-OP-Check,https://github.com/karenetheridge/B-Hooks-OP-Check -65d72d2dce96880c0b02100eae43979cd0349d4b,Scott Johnston,johnston@vectaport.com,2022-01-09 13:12:18-06:00,Scott Johnston,johnston@vectaport.com,2022-01-09 19:12:18+00:00,True,vectaport,vectaport,* master,True,vectaport_ivtools,vectaport/ivtools,https://github.com/vectaport/ivtools -8a26abaf796300147b17fb6c0cc61344173d0169,Harald Welte,laforge@gnumonks.org,2018-06-03 15:19:53+02:00,Harald Welte,laforge@gnumonks.org,2018-06-03 13:19:53+00:00,False,gnumonks,gnumonks,* master,True,sdr_rtl-sdr.git,sdr/rtl-sdr.git,https://gitea.osmocom.org/sdr/rtl-sdr.git -1a947f8437d10e52a66488c1eab45456d089a92d,Bret McGuire,absurdfarce@users.noreply.github.com,2023-12-20 10:47:23-06:00,GitHub,noreply@github.com,2023-12-20 16:47:23+00:00,False,users,github,* master,True,datastax_python-driver.git,datastax/python-driver.git,https://github.com/datastax/python-driver.git -69b34bf96976a71f431669a436cd89645062e5f5,Michael Merickel,michael@merickel.org,2022-12-29 15:42:23-05:00,Michael Merickel,michael@merickel.org,2022-12-29 20:42:23+00:00,False,merickel,merickel,* main,True,Pylons_plaster_pastedeploy.git,Pylons/plaster/pastedeploy.git,https://github.com/Pylons/plaster_pastedeploy.git -333d0533bbb8676d9acfaaa6a44d1322485a7716,wangyixue,wangyixue@deepin.org,2023-08-04 17:38:02+08:00,asterwyx,yixue.wang@outlook.com,2023-08-10 02:34:07+00:00,False,deepin,outlook,* master,True,linuxdeepin_qt5integration.git,linuxdeepin/qt5integration.git,https://github.com/linuxdeepin/qt5integration.git -3f46bbeb9b836dbde3a614a8b3f84228f49cea1b,irtazaakram,irtaza.akram@arbisoft.com,2023-08-07 11:42:10+05:00,irtazaakram,irtaza.akram@arbisoft.com,2023-08-07 06:42:10+00:00,False,arbisoft,arbisoft,* devel,True,lukaszb_django-guardian,lukaszb/django-guardian,https://github.com/lukaszb/django-guardian -89369ebe0f8e06c719c140dd5122347b61b4679b,Andreas Schwarz,a.schwarz_dev@dntw.de,2020-07-23 22:47:33+02:00,Andreas Schwarz,a.schwarz_dev@dntw.de,2020-07-23 20:47:33+00:00,False,dntw,dntw,* master,True,Llandon_lsmount,Llandon/lsmount,https://github.com/Llandon/lsmount -c7ba6ff0a3e7606878808ce47f4b84cf964757f8,Chris 'BinGOs' Williams,chris@bingosnet.co.uk,2013-01-23 07:58:30+00:00,Chris 'BinGOs' Williams,chris@bingosnet.co.uk,2013-01-23 08:17:04+00:00,False,bingosnet,bingosnet,* master,True,jib_log-message-simple.git,jib/log-message-simple.git,https://github.com/jib/log-message-simple.git -af15c0070a6d9fbc551a2cbf23364387233b18e3,Fredrik Johansson,fredrik.johansson@gmail.com,2023-11-15 21:57:38+01:00,GitHub,noreply@github.com,2023-11-15 20:57:38+00:00,False,gmail,github,* master,True,fredrik-johansson_arb,fredrik-johansson/arb,https://github.com/fredrik-johansson/arb -cb228d60d56acdf6edf5d437a8a88ca83e30c700,Chris Kuehl,ckuehl@ocf.berkeley.edu,2017-01-21 15:48:29-08:00,Chris Kuehl,ckuehl@ocf.berkeley.edu,2017-01-21 23:48:29+00:00,True,ocf,ocf,* debian,True,chriskuehl_nodeenv,chriskuehl/nodeenv,https://github.com/chriskuehl/nodeenv -7d0c8eee9db9695611da6269cd5252a35d348138,Marek Szuba,marek.szuba@ebi.ac.uk,2020-03-13 14:35:02+01:00,Jan Alexander Steffens,jan.steffens@gmail.com,2020-03-23 06:14:26+00:00,False,ebi,gmail,* master,True,heftig_rtkit,heftig/rtkit,https://github.com/heftig/rtkit -095a0849bb59a6b784e33da686e01e0edd09326e,Ted Ralphs,ted@lehigh.edu,2023-04-18 18:46:45-04:00,Ted Ralphs,ted@lehigh.edu,2023-04-18 22:51:08+00:00,False,lehigh,lehigh,* master,True,coin-or_cbc,coin-or/cbc,https://github.com/coin-or/cbc -eb2168bf151b52cf79cb96598fb0f23d723894a6,Robert Haschke,rhaschke@techfak.uni-bielefeld.de,2022-08-14 07:00:29+02:00,Robert Haschke,rhaschke@techfak.uni-bielefeld.de,2022-08-14 05:00:29+00:00,True,techfak,techfak,* noetic-devel,True,ros-visualization_rviz,ros-visualization/rviz,https://github.com/ros-visualization/rviz -b4a0e8d1d3bb17b4cd2069f5084f25918a3338bc,Rick van Hattem,Wolph@wol.ph,2023-09-16 12:55:33+02:00,Rick van Hattem,Wolph@wol.ph,2023-09-16 10:55:33+00:00,True,wol,wol,* develop,True,WoLpH_portalocker,WoLpH/portalocker,https://github.com/WoLpH/portalocker +12f729bbf64e1c30edeceaf419f23f6a7b560df9,Kirill Pavlov,k@p99.io,2013-09-30 02:36:07-07:00,Kirill Pavlov,kirill.pavlov@phystech.edu,2013-09-30 09:36:07+00:00,False,p99,phystech,* master,True,pavlov99_json-rpc,pavlov99/json-rpc,https://github.com/pavlov99/json-rpc +1f7d8cf0fb8f8f431858b39e8b1bad2dcf7fba74,Denis Arrivault,denis.arrivault@lif.univ-mrs.fr,2015-12-17 13:51:03+01:00,Denis Arrivault,denis.arrivault@lif.univ-mrs.fr,2015-12-17 12:51:03+00:00,False,lif,lif,* master,True,dev_ltfatpy,dev/ltfatpy,https://gitlab.lis-lab.fr/dev/ltfatpy +927fe6483c6813476ab16050dfedcfc3e2e0201f,Vincent Untz,vuntz@gnome.org,2010-07-02 01:08:01+02:00,Vincent Untz,vuntz@gnome.org,2010-07-02 08:54:24+00:00,False,gnome,gnome,* master,True,GNOME_gsettings-desktop-schemas.git,GNOME/gsettings-desktop-schemas.git,https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas.git +c5c90a74f884b645f0390e9000142f617b271290,aric,aric@3ed01bd8-26fb-0310-9e4c-ca1a4053419f,2005-08-30 03:30:28+00:00,aric,aric@3ed01bd8-26fb-0310-9e4c-ca1a4053419f,2005-08-30 03:30:28+00:00,False,3ed01bd8-26fb-0310-9e4c-ca1a4053419f,3ed01bd8-26fb-0310-9e4c-ca1a4053419f,* main,True,pygraphviz_pygraphviz.git,pygraphviz/pygraphviz.git,https://github.com/pygraphviz/pygraphviz.git +2b17feccc0d6406c6a5bfe1c99231edc0147eaf9,Karl Glazebrook,kgb@cpan.org,1996-02-23 06:30:00+00:00,Gitpan,schwern+gitpan@pobox.com,2014-10-26 13:44:17+00:00,False,cpan,pobox,* master,True,PDLPorters_perl5-PGPLOT.git,PDLPorters/perl5-PGPLOT.git,https://github.com/PDLPorters/perl5-PGPLOT.git +d494c8fe81ce0e4afac5433722a0c2c5bd4cf16d,john.paulett,john.paulett@ba5bf794-d048-0410-8f42-e1fdefefffeb,2008-07-22 01:44:37+00:00,john.paulett,john.paulett@ba5bf794-d048-0410-8f42-e1fdefefffeb,2008-07-22 01:44:37+00:00,False,ba5bf794-d048-0410-8f42-e1fdefefffeb,ba5bf794-d048-0410-8f42-e1fdefefffeb,* main,True,jsonpickle_jsonpickle,jsonpickle/jsonpickle,https://github.com/jsonpickle/jsonpickle +869c9ee6c8e22bb9f9efc17610b06872084c1615,Robin Sommer,robin@icir.org,2010-11-04 16:54:17-07:00,Robin Sommer,robin@icir.org,2010-11-04 23:54:17+00:00,False,icir,icir,* master,True,zeek_pysubnettree.git,zeek/pysubnettree.git,https://github.com/zeek/pysubnettree.git +8e37561afba3077c7381d38ed3382992f9a16c88,Michael S. Hansen,michael.hansen@nih.gov,2012-08-03 15:54:07-04:00,Michael S. Hansen,michael.hansen@nih.gov,2012-08-03 19:54:07+00:00,False,nih,nih,* master,True,ismrmrd_ismrmrd.git,ismrmrd/ismrmrd.git,https://github.com/ismrmrd/ismrmrd.git +67bdd68fd3918258b37c3ea75b5152d0435132ba,Matthew Brett,matthew.brett@gmail.com,2015-10-09 15:42:23-07:00,Matthew Brett,matthew.brett@gmail.com,2015-10-09 22:42:23+00:00,False,gmail,gmail,* main,True,matthew-brett_texext.git,matthew-brett/texext.git,https://github.com/matthew-brett/texext.git +93868035d8564ef16705c287cabc70f0cebd3c81,Ronny Pfannschmidt,ronny.pfannschmidt@redhat.com,2016-10-11 21:37:00+02:00,Ronny Pfannschmidt,ronny.pfannschmidt@redhat.com,2016-10-11 19:37:00+00:00,False,redhat,redhat,* master,True,pytest-dev_pytest-forked.git,pytest-dev/pytest-forked.git,https://github.com/pytest-dev/pytest-forked.git +e98b59eaf0e039da3ca3d38b65f71988a0fa7695,Jonas Obrist,jonas.obrist@divio.ch,2010-08-04 14:16:37+02:00,Jonas Obrist,jonas.obrist@divio.ch,2010-08-04 12:16:37+00:00,False,divio,divio,* master,True,django-cms_django-classy-tags,django-cms/django-classy-tags,https://github.com/django-cms/django-classy-tags +3c31b3091a10efefa29f93a5a9f67a94fbb49886,AndrewStraw,AndrewStraw@30fc0ef2-3a16-0410-b950-f670368b4cad,2006-06-15 05:15:46+00:00,AndrewStraw,AndrewStraw@30fc0ef2-3a16-0410-b950-f670368b4cad,2006-06-15 05:15:46+00:00,False,30fc0ef2-3a16-0410-b950-f670368b4cad,30fc0ef2-3a16-0410-b950-f670368b4cad,* master,True,astraw_stdeb.git,astraw/stdeb.git,https://github.com/astraw/stdeb.git +421d5595229bb847d3b1677b0f9315b4cb84584a,Philipp Hagemeister,phihag@phihag.de,2013-02-03 12:45:44-08:00,Philipp Hagemeister,phihag@phihag.de,2013-02-03 20:45:44+00:00,False,phihag,phihag,* master,True,phihag_ipaddress,phihag/ipaddress,https://github.com/phihag/ipaddress +7d35484e4edc4935dc178dc2b816db2937f90ff2,Mikhail Korobov,kmike84@gmail.com,2012-01-29 17:37:29+06:00,Mikhail Korobov,kmike84@gmail.com,2012-01-29 11:37:29+00:00,False,gmail,gmail,* master,True,kmike_datrie.git,kmike/datrie.git,https://github.com/kmike/datrie.git +64b1f6b692f9a69433c7458f8bc09bcae80c8821,Stef Walter,stefw@gnome.org,2012-05-09 21:15:50+02:00,Stef Walter,stefw@gnome.org,2012-05-09 19:30:21+00:00,False,gnome,gnome,* master,True,realmd_adcli,realmd/adcli,https://gitlab.freedesktop.org/realmd/adcli +f0073d47bab507e5b8269ad94e9fe344c2e34a3f,david.m.cooke,devnull@localhost,2007-12-24 14:00:24+00:00,david.m.cooke,devnull@localhost,2007-12-24 14:00:24+00:00,False,localhost,localhost,* master,True,pydata_numexpr,pydata/numexpr,https://github.com/pydata/numexpr +8d33290ffffeeef608c4ca6043ef4eac554ce894,pagey,pagey@9e52fe8d-9c4e-0410-a586-f93a03c41e08,2000-08-17 09:30:21+00:00,pagey,pagey@9e52fe8d-9c4e-0410-a586-f93a03c41e08,2000-08-17 09:30:21+00:00,False,9e52fe8d-9c4e-0410-a586-f93a03c41e08,9e52fe8d-9c4e-0410-a586-f93a03c41e08,* master,True,crayzeewulf_libserial.git,crayzeewulf/libserial.git,https://github.com/crayzeewulf/libserial.git +62e1bf027942634ee625d536aae947a2bd3b1384,Michele Lacchia,michelelacchia@gmail.com,2013-11-21 05:28:15-08:00,Michele Lacchia,michelelacchia@gmail.com,2013-11-21 13:28:15+00:00,False,gmail,gmail,* master,True,rubik_mando.git,rubik/mando.git,https://github.com/rubik/mando.git +03b58f23e09ebc80e3c99774a035eabca7f2b82f,Nelson Ferraz,nferraz@gmail.com,2013-09-02 11:29:52-07:00,Nelson Ferraz,nferraz@gmail.com,2013-09-02 18:29:52+00:00,False,gmail,gmail,* master,True,nferraz_st,nferraz/st,https://github.com/nferraz/st +3fc537528df717f0183cc99605ca04497ae45686,mbaas,devnull@localhost,2006-05-01 13:38:23+00:00,mbaas,devnull@localhost,2006-05-01 13:38:23+00:00,False,localhost,localhost,* develop,True,gccxml_pygccxml,gccxml/pygccxml,https://github.com/gccxml/pygccxml +20b259a3e4e4903dbe5ded25bd7b4b8884e397fc,Harry Marr,harry.marr@gmail.com,2009-11-22 23:40:06+00:00,Harry Marr,harry.marr@gmail.com,2009-11-22 23:40:06+00:00,False,gmail,gmail,* master,True,mongoengine_mongoengine,mongoengine/mongoengine,https://github.com/mongoengine/flask-mongoengine +faf1d454e83136fe3b8c1e8b1f9a717fe65e73c5,MRAB,regex@mrabarnett.plus.com,2011-03-15 17:36:34+00:00,MRAB,regex@mrabarnett.plus.com,2011-03-15 17:36:34+00:00,False,mrabarnett,mrabarnett,* hg,True,mrabarnett_mrab-regex,mrabarnett/mrab-regex,https://github.com/mrabarnett/mrab-regex +6f6e6b4ee67567574fa24126f395710a19cf9d5b,Ryan Kelly,ryan@rfk.id.au,2011-10-21 15:07:35+11:00,Ryan Kelly,ryan@rfk.id.au,2011-10-21 04:07:35+00:00,False,rfk,rfk,* debian,True,douardda_pyramid_multiauth,douardda/pyramid/multiauth,https://github.com/douardda/pyramid_multiauth +0482d465a93948104129460460ffad97a7cf690f,Brandon Craig Rhodes,brandon@rhodesmill.org,1998-07-26 01:47:57+00:00,Brandon Craig Rhodes,brandon@rhodesmill.org,1998-07-26 01:47:57+00:00,False,rhodesmill,rhodesmill,* master,True,brandon-rhodes_pyephem.git,brandon-rhodes/pyephem.git,https://github.com/brandon-rhodes/pyephem.git +cdc1c63501f2a37909f5aef0c3e3fc895c3e330a,Kim Nørgaard,jasen@jasen.dk,2009-06-19 12:10:53+02:00,Kim Nørgaard,jasen@jasen.dk,2009-06-19 10:10:53+00:00,False,jasen,jasen,* master,True,KimNorgaard_validates_hostname,KimNorgaard/validates/hostname,https://github.com/KimNorgaard/validates_hostname +dcfeb8bff3e75fc49a845722372c59e1edfc0eb5,Craig Campbell,iamcraigcampbell@gmail.com,2012-07-01 21:22:34-04:00,Craig Campbell,iamcraigcampbell@gmail.com,2012-07-02 01:22:34+00:00,False,gmail,gmail,* master,True,ccampbell_mousetrap,ccampbell/mousetrap,https://github.com/ccampbell/mousetrap +86ed3084e679f8e9eb5584f8d5189330586060c1,Jeremy McAnally,jmcanally@github.com,2013-02-23 23:09:41-05:00,Jeremy McAnally,jmcanally@github.com,2013-02-24 04:09:41+00:00,False,github,github,* master,True,jm_toml,jm/toml,https://github.com/jm/toml +73cfc2d7f385cd3802ff2723e1e87c530a8afc05,Stephane Glondu,steph@glondu.net,2010-08-31 18:06:24+02:00,Stephane Glondu,steph@glondu.net,2010-08-31 16:15:49+00:00,False,glondu,glondu,* master,True,glondu_nss-passwords,glondu/nss-passwords,https://github.com/glondu/nss-passwords +3932e1607926b20c1ab761a3fc849f788e287561,Chris McDonough,chrism@plope.com,2007-09-10 22:55:24+00:00,Chris McDonough,chrism@plope.com,2007-09-10 22:55:24+00:00,False,plope,plope,* master,True,repoze_repoze.tm2.git,repoze/repoze.tm2.git,https://github.com/repoze/repoze.tm2.git +1f5bc832f89cac71094b12f45d754715213b6a7f,Tatsuhiro Tsujikawa,tatsuhiro.t@gmail.com,2012-01-18 00:53:12+09:00,Tatsuhiro Tsujikawa,tatsuhiro.t@gmail.com,2012-01-17 15:53:12+00:00,False,gmail,gmail,* master,True,nghttp2_nghttp2.git,nghttp2/nghttp2.git,https://github.com/nghttp2/nghttp2.git +e6c2e44013cac14392f3fc2ee1253b3dae87baa1,J.A. Roberts Tunney,jtunney@lobstertech.com,2009-12-08 03:35:24-05:00,J.A. Roberts Tunney,jtunney@lobstertech.com,2009-12-08 08:35:24+00:00,False,lobstertech,lobstertech,* master,True,jart_fabulous.git,jart/fabulous.git,https://github.com/jart/fabulous.git +15958bfb9c357efefe6bef39288a1ff7c821936b,jonathan.buchanan,jonathan.buchanan@7eea2103-5a42-0410-ac78-6383eb04bdbf,2007-12-28 22:43:03+00:00,jonathan.buchanan,jonathan.buchanan@7eea2103-5a42-0410-ac78-6383eb04bdbf,2007-12-28 22:43:03+00:00,False,7eea2103-5a42-0410-ac78-6383eb04bdbf,7eea2103-5a42-0410-ac78-6383eb04bdbf,* main,True,django-mptt_django-mptt.git,django-mptt/django-mptt.git,https://github.com/django-mptt/django-mptt.git +11c7bdf47c3f21b014b1e984be52211142d8d8b7,Douglas Crockford,douglas@crockford.com,2010-11-18 10:45:22-08:00,Douglas Crockford,douglas@crockford.com,2010-11-18 18:45:22+00:00,False,crockford,crockford,* master,True,douglascrockford_JSON-js,douglascrockford/JSON-js,https://github.com/douglascrockford/JSON-js +ee40cef78df148f9f96978e0be9e591edfa5853d,alex,alex,2000-12-06 22:28:48+00:00,alex,alex,2000-12-06 22:28:48+00:00,False,alex,alex,* master,True,GNOME_libsoup,GNOME/libsoup,https://gitlab.gnome.org/GNOME/libsoup +85c54e88e95b1117b9b7f0641f4b5ea70fce6102,Jesse Vincent,jesse@bestpractical.com,2004-10-30 19:54:00+00:00,Jesse Vincent,jesse@bestpractical.com,2004-10-30 19:54:00+00:00,False,bestpractical,bestpractical,* master,True,bestpractical_http-server-simple,bestpractical/http-server-simple,https://github.com/bestpractical/http-server-simple +ddbefff7edcf47906373c9fa1175ba7a8927e446,Karen Etheridge,ether@cpan.org,2017-05-11 11:26:49+02:00,Karen Etheridge,ether@cpan.org,2017-05-11 09:26:49+00:00,False,cpan,cpan,* master,True,karenetheridge_B-Hooks-OP-Check,karenetheridge/B-Hooks-OP-Check,https://github.com/karenetheridge/B-Hooks-OP-Check +709075cdd7210459a4e0fa6755bbe677828d8eba,Scott Johnston,johnston@vectaport.com,2015-01-29 08:36:20-08:00,Scott Johnston,johnston@vectaport.com,2015-01-29 16:36:20+00:00,False,vectaport,vectaport,* master,True,vectaport_ivtools,vectaport/ivtools,https://github.com/vectaport/ivtools +167210cfaa79f98d2faad4235134f2510c181b86,Steve Markgraf,steve@steve-m.de,2012-03-18 20:53:37+01:00,Steve Markgraf,steve@steve-m.de,2012-03-18 19:53:37+00:00,False,steve-m,steve-m,* master,True,sdr_rtl-sdr.git,sdr/rtl-sdr.git,https://gitea.osmocom.org/sdr/rtl-sdr.git +9f6fcb11ebe2948167e982aa9ca9713b54a0e47d,Blake Eggleston,bdeggleston@gmail.com,2012-11-08 21:28:44-08:00,Blake Eggleston,bdeggleston@gmail.com,2012-11-09 05:28:44+00:00,False,gmail,gmail,* master,True,datastax_python-driver.git,datastax/python-driver.git,https://github.com/datastax/python-driver.git +fafacbff1595d5e94c7afb633ec84ff1e7229ebb,Hunter Senft-Grupp,huntcsg@gmail.com,2016-06-04 16:11:20-07:00,Hunter Senft-Grupp,huntcsg@gmail.com,2016-06-04 23:11:20+00:00,False,gmail,gmail,* main,True,Pylons_plaster_pastedeploy.git,Pylons/plaster/pastedeploy.git,https://github.com/Pylons/plaster_pastedeploy.git +e138393ae3d0243a967bdc0be2cb4d55e4050d06,zccrs,ccrr1314@live.com,2016-11-18 14:38:29+08:00,zccrs,ccrr1314@live.com,2016-11-18 06:50:52+00:00,False,live,live,* master,True,linuxdeepin_qt5integration.git,linuxdeepin/qt5integration.git,https://github.com/linuxdeepin/qt5integration.git +d96fd3c7a9db3b1557f3db2e0adf1662ee315eba,Lukasz Balcerzak,lukasz.balcerzak@python-center.pl,2010-06-05 01:20:07+02:00,Lukasz Balcerzak,lukasz.balcerzak@python-center.pl,2010-06-04 23:20:07+00:00,False,python-center,python-center,* devel,True,lukaszb_django-guardian,lukaszb/django-guardian,https://github.com/lukaszb/django-guardian +853c33b2d31c2702ee14544e6c615b3d3042d588,Andreas Schwarz,a.schwarz_dev@dntw.de,2014-10-12 22:02:08+02:00,Andreas Schwarz,a.schwarz_dev@dntw.de,2014-10-12 20:02:08+00:00,False,dntw,dntw,* master,True,Llandon_lsmount,Llandon/lsmount,https://github.com/Llandon/lsmount +db2c1edae81fa0e436f51eb3e050546310d75858,Jos Boumans,kane@cpan.org,2006-08-17 20:50:59+00:00,Jos Boumans,kane@cpan.org,2006-08-17 20:50:59+00:00,False,cpan,cpan,* master,True,jib_log-message-simple.git,jib/log-message-simple.git,https://github.com/jib/log-message-simple.git +019a921613f6cac9526678db6f1daa504698130e,Fredrik Johansson,fredrik.johansson@gmail.com,2012-04-05 15:57:19+02:00,Fredrik Johansson,fredrik.johansson@gmail.com,2012-04-05 13:57:19+00:00,False,gmail,gmail,* master,True,fredrik-johansson_arb,fredrik-johansson/arb,https://github.com/fredrik-johansson/arb +74ccd3fde19bd2a92f1f8aa65a23bc2baa325766,Eugene Kalinin,e.v.kalinin@gmail.com,2011-03-27 00:31:57+03:00,Eugene Kalinin,e.v.kalinin@gmail.com,2011-03-26 21:31:57+00:00,False,gmail,gmail,* debian,True,chriskuehl_nodeenv,chriskuehl/nodeenv,https://github.com/chriskuehl/nodeenv +c36b63ef166f72a100da157680ba22b6c6d9323f,Lennart Poettering,lennart@poettering.net,2009-06-16 22:15:14+02:00,Lennart Poettering,lennart@poettering.net,2009-06-16 20:15:14+00:00,False,poettering,poettering,* master,True,heftig_rtkit,heftig/rtkit,https://github.com/heftig/rtkit +eeaed1e60c0290724b761fbbf923fafc829f93f7,Laci Ladanyi,ladanyi@us.ibm.com,2004-10-29 00:34:29+00:00,Laci Ladanyi,ladanyi@us.ibm.com,2004-10-29 00:34:29+00:00,False,us,us,* master,True,coin-or_cbc,coin-or/cbc,https://github.com/coin-or/cbc +7a1fa3df4d01c8de78cc605a20ca2d0242380b44,Dave Hershberger,hersh@willowgarage.com,2012-03-01 19:30:55+00:00,Dave Hershberger,hersh@willowgarage.com,2012-03-01 19:30:55+00:00,False,willowgarage,willowgarage,* noetic-devel,True,ros-visualization_rviz,ros-visualization/rviz,https://github.com/ros-visualization/rviz +d6f76c8804f2e053e0e1070e8e5865c7545ee126,WoLpH,Rick@Fawo.nl,2011-02-23 16:12:46+01:00,WoLpH,Rick@Fawo.nl,2011-02-23 15:12:46+00:00,False,Fawo,Fawo,* develop,True,WoLpH_portalocker,WoLpH/portalocker,https://github.com/WoLpH/portalocker 32abf91472f7cf2c846da31e98853e9c8b884bf7,Lucas Almeida Rocha,lucasr@src.gnome.org,2007-08-06 19:49:09+00:00,Lucas Almeida Rocha,lucasr@src.gnome.org,2007-08-06 19:49:09+00:00,False,src,src,* master,True,GNOME_eog-plugins.git,GNOME/eog-plugins.git,https://gitlab.gnome.org/GNOME/eog-plugins.git -6ba93737366376131c92d2ff362b040f6e9d97cd,Boris Pek,tehnick-8@yandex.ru,2023-02-23 02:01:19+03:00,Boris Pek,tehnick-8@yandex.ru,2023-02-22 23:01:19+00:00,False,yandex,yandex,* master,True,psi-plus_psi-plus-l10n.git,psi-plus/psi-plus-l10n.git,https://github.com/psi-plus/psi-plus-l10n.git -4fd38407438adcc853faf8e800582aba259c39c7,Andi Kleen,github@halobates.de,2018-11-03 14:46:52-07:00,GitHub,noreply@github.com,2018-11-03 21:46:52+00:00,True,halobates,github,* master,True,kilobyte_lz4json,kilobyte/lz4json,https://github.com/kilobyte/lz4json -2a7c0c2170f0905c28462e531b463e38ebb0dda1,Friedrich W. H. Kossebau,kossebau@kde.org,2023-10-04 00:40:13+02:00,Friedrich W. H. Kossebau,kossebau@kde.org,2023-10-03 22:40:13+00:00,False,kde,kde,* master,True,klickety.git,klickety.git,https://anongit.kde.org/klickety.git -89bd3fc2f3b037d413ba505dd86f2978131e3089,Pouria Mousavizadeh Tehrani,p.mousavizadeh@protonmail.com,2024-01-26 11:48:23+03:30,Brian May,brian@linuxpenguins.xyz,2024-01-31 08:28:53+00:00,False,protonmail,linuxpenguins,* master,True,sshuttle_sshuttle.git,sshuttle/sshuttle.git,https://github.com/sshuttle/sshuttle.git -d7302135af8542d10ebbc597020c2e9b376ad16b,Joachim Metz,joachim.metz@gmail.com,2016-01-07 07:34:55+01:00,Joachim Metz,joachim.metz@gmail.com,2016-01-07 06:34:55+00:00,False,gmail,gmail,* main,True,libyal_libregf,libyal/libregf,https://github.com/libyal/libregf -714b5d65fbcf3b81be4191c602a3746ae7824cd9,Max Kellermann,max@musicpd.org,2023-12-22 14:28:25+01:00,Max Kellermann,max@musicpd.org,2023-12-22 13:28:32+00:00,False,musicpd,musicpd,* master,True,MusicPlayerDaemon_libmpdclient,MusicPlayerDaemon/libmpdclient,https://github.com/MusicPlayerDaemon/libmpdclient -00e3dc8ad041bfe576d5e6131d30f25e4364792c,Felix Zumstein,fzumstein@gmail.com,2023-06-21 15:36:49+02:00,GitHub,noreply@github.com,2023-06-21 13:36:49+00:00,True,gmail,github,* master,True,xlwings_jsondiff,xlwings/jsondiff,https://github.com/xlwings/jsondiff -de3b59bb18032aa75681dc4068b92b4023e9d56d,Ryan Hiebert,ryan@ryanhiebert.com,2015-10-05 07:08:37-05:00,Ryan Hiebert,ryan@ryanhiebert.com,2015-10-05 12:08:37+00:00,False,ryanhiebert,ryanhiebert,* master,True,jdunck_python-unicodecsv,jdunck/python-unicodecsv,https://github.com/jdunck/python-unicodecsv -408fe1036027bcad73f20b96c9212761d84f64a2,Simon Josefsson,simon@josefsson.org,2015-08-21 12:11:42+02:00,Simon Josefsson,simon@josefsson.org,2015-08-21 10:11:42+00:00,False,josefsson,josefsson,* master,True,Yubico_yubikey-val-dpkg,Yubico/yubikey-val-dpkg,https://github.com/Yubico/yubikey-val-dpkg -5262fc996672920f2e9b191fd7b9048549276a3b,girish946,girish946@gmail.com,2018-08-15 17:20:06+05:30,Patrick Uiterwijk,patrick@puiterwijk.org,2018-09-10 18:16:10+00:00,False,gmail,puiterwijk,* develop,True,fedora-infra_python-fedora,fedora-infra/python-fedora,https://github.com/fedora-infra/python-fedora -503bd3976623493a10b0f32c617feb51f9ba04c8,Rich Felker,dalias@aerifal.cx,2020-06-30 00:59:48-04:00,Rich Felker,dalias@aerifal.cx,2020-06-30 04:59:48+00:00,False,aerifal,aerifal,* master,True,musl,musl,git://git.musl-libc.org/musl +d8c99cc29f2ec0d496844d6d7dd7bf48d32ed337,Boris Pek,tehnick-8@yandex.ru,2012-03-24 13:31:54+02:00,Boris Pek,tehnick-8@yandex.ru,2012-03-24 11:43:31+00:00,False,yandex,yandex,* master,True,psi-plus_psi-plus-l10n.git,psi-plus/psi-plus-l10n.git,https://github.com/psi-plus/psi-plus-l10n.git +06cf153abf46812d2575fed4ed3270a125797e15,Andi Kleen,ak@linux.intel.com,2014-12-27 18:14:17-08:00,Andi Kleen,ak@linux.intel.com,2014-12-28 02:14:17+00:00,False,linux,linux,* master,True,kilobyte_lz4json,kilobyte/lz4json,https://github.com/kilobyte/lz4json +0d60db681907879a0da178ff3c6aa373f1fca1de,Nicolas Hadacek,hadacek@kde.org,2002-05-27 18:22:51+00:00,Nicolas Hadacek,hadacek@kde.org,2002-05-27 18:22:51+00:00,False,kde,kde,* master,True,klickety.git,klickety.git,https://anongit.kde.org/klickety.git +616d0680d17d7976913aa5ac6687e74908bc8bea,Avery Pennarun,apenwarr@gmail.com,2010-05-02 03:42:59-04:00,Avery Pennarun,apenwarr@gmail.com,2010-05-02 07:42:59+00:00,False,gmail,gmail,* master,True,sshuttle_sshuttle.git,sshuttle/sshuttle.git,https://github.com/sshuttle/sshuttle.git +6878fad523df2cd8bf3f2b6aa864c68ff3b727d5,Joachim Metz,joachim.metz@gmail.com,2014-09-29 20:19:42+02:00,Joachim Metz,joachim.metz@gmail.com,2014-09-29 18:19:42+00:00,False,gmail,gmail,* main,True,libyal_libregf,libyal/libregf,https://github.com/libyal/libregf +6f120693f341a67b45023ddae04dc73c5e8eeca5,Warren Dukes,warren.dukes@gmail.com,2004-02-24 00:51:43+00:00,Warren Dukes,warren.dukes@gmail.com,2004-02-24 00:51:43+00:00,False,gmail,gmail,* master,True,MusicPlayerDaemon_libmpdclient,MusicPlayerDaemon/libmpdclient,https://github.com/MusicPlayerDaemon/libmpdclient +cc627dc30ab0457bec176921a90e43abd2068a76,Eric Reynolds,eric.remo.reynolds@gmail.com,2015-10-19 11:19:01+02:00,Eric Reynolds,eric.remo.reynolds@gmail.com,2015-10-19 09:19:01+00:00,False,gmail,gmail,* master,True,xlwings_jsondiff,xlwings/jsondiff,https://github.com/xlwings/jsondiff +fd227046740f85cfdc9a332fb96ffc23f0108faa,Jeremy Dunck,jdunck@gmail.com,2010-11-11 15:45:50-06:00,Jeremy Dunck,jdunck@gmail.com,2010-11-11 21:45:50+00:00,False,gmail,gmail,* master,True,jdunck_python-unicodecsv,jdunck/python-unicodecsv,https://github.com/jdunck/python-unicodecsv +34ad0bf9189d2bce0136e6c51ae4cc04238eb722,Dain Nilsson,dain@yubico.com,2013-01-24 15:07:27+01:00,Dain Nilsson,dain@yubico.com,2013-01-24 14:31:46+00:00,False,yubico,yubico,* master,True,Yubico_yubikey-val-dpkg,Yubico/yubikey-val-dpkg,https://github.com/Yubico/yubikey-val-dpkg +3601b1b9893cb8afade9ef4d3f60255d0ab1150e,Toshio Kuratomi,toshio@tiki-lounge.com,2007-01-18 15:49:07-08:00,Toshio Kuratomi,toshio@tiki-lounge.com,2007-01-18 23:49:07+00:00,False,tiki-lounge,tiki-lounge,* develop,True,fedora-infra_python-fedora,fedora-infra/python-fedora,https://github.com/fedora-infra/python-fedora +0b44a0315b47dd8eced9f3b7f31580cf14bbfc01,Rich Felker,dalias@aerifal.cx,2011-02-12 00:22:29-05:00,Rich Felker,dalias@aerifal.cx,2011-02-12 05:22:29+00:00,False,aerifal,aerifal,* master,True,musl,musl,git://git.musl-libc.org/musl 2d78e915699bbe4208af869b82f3eafc352438cf,Grzegorz Rożniecki,xaerxess@gmail.com,2014-03-13 18:53:43+01:00,Grzegorz Rożniecki,xaerxess@gmail.com,2014-03-13 17:53:43+00:00,False,gmail,gmail,* master,True,Xaerxess_YAML-AppConfig,Xaerxess/YAML-AppConfig,https://github.com/Xaerxess/YAML-AppConfig -c28fb5f127eda256a409a22c6ca617fa26bbb69b,Ronny Pfannschmidt,opensource@ronnypfannschmidt.de,2023-07-17 11:44:15+02:00,GitHub,noreply@github.com,2023-07-17 09:44:15+00:00,True,ronnypfannschmidt,github,* master,True,pytest-dev_execnet,pytest-dev/execnet,https://github.com/pytest-dev/execnet -4ca0de9a7488087debe310a60b6bd4477ba04f6f,Olli Jarva,olli@jarva.fi,2021-01-24 12:47:28+02:00,GitHub,noreply@github.com,2021-01-24 10:47:28+00:00,True,jarva,github,* master,True,ojarva_python-sshpubkeys.git,ojarva/python-sshpubkeys.git,https://github.com/ojarva/python-sshpubkeys.git -c77fdfd128d7e8a9c9040dadd51dd98d36346608,Stein Magnus Jodal,stein.magnus@jodal.no,2023-06-21 23:01:08+02:00,GitHub,noreply@github.com,2023-06-21 21:01:08+00:00,True,jodal,github,* main,True,mopidy_mopidy-soundcloud,mopidy/mopidy-soundcloud,https://github.com/mopidy/mopidy-soundcloud -c2c733ae98113376c50c7515ab9df134790b46dd,Axel Beckert,abe@deuxchevaux.org,2022-04-03 15:43:09+02:00,Axel Beckert,abe@deuxchevaux.org,2022-04-03 13:43:09+00:00,True,deuxchevaux,deuxchevaux,* master,True,qutebrowser_qutebrowser-debian,qutebrowser/qutebrowser-debian,https://github.com/qutebrowser/qutebrowser-debian -b83290e00729e86e60a0cd35641632d2dee69894,Stan Hu,stanhu@gmail.com,2024-02-28 20:08:05+00:00,Stan Hu,stanhu@gmail.com,2024-02-28 20:08:05+00:00,True,gmail,gmail,* master,True,gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org/ruby/gems/gitlab-mail/room.git,https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git +c06042b345dce605aa4b2a08c1743cbd7bbc22a7,holger krekel,holger@merlinux.eu,2009-09-30 21:01:57+02:00,holger krekel,holger@merlinux.eu,2009-09-30 19:01:57+00:00,False,merlinux,merlinux,* master,True,pytest-dev_execnet,pytest-dev/execnet,https://github.com/pytest-dev/execnet +c5f59856cdc9410a5feb0605f0849b6a88c35202,Olli Jarva,olli@jarva.fi,2014-12-18 14:32:32+02:00,Olli Jarva,olli@jarva.fi,2014-12-18 12:32:32+00:00,False,jarva,jarva,* master,True,ojarva_python-sshpubkeys.git,ojarva/python-sshpubkeys.git,https://github.com/ojarva/python-sshpubkeys.git +6c3e78c01b7d4afcbb9bfdeece1ecb4aa35cbb4d,Janez Troha,janez.troha@gmail.com,2013-04-01 07:18:46-07:00,Janez Troha,janez.troha@gmail.com,2013-04-01 14:18:46+00:00,False,gmail,gmail,* main,True,mopidy_mopidy-soundcloud,mopidy/mopidy-soundcloud,https://github.com/mopidy/mopidy-soundcloud +b7e67890f693378035a395378040b92013014bb7,Fritz Reichwald,mail@fritzreichwald.de,2017-10-15 01:50:38+02:00,Fritz Reichwald,mail@fritzreichwald.de,2017-10-14 23:50:38+00:00,False,fritzreichwald,fritzreichwald,* master,True,qutebrowser_qutebrowser-debian,qutebrowser/qutebrowser-debian,https://github.com/qutebrowser/qutebrowser-debian +faf77b9d31411e5732f390ec87c20a327ff10988,Tony Pitale,tpitale@gmail.com,2013-01-21 21:09:29-05:00,Tony Pitale,tpitale@gmail.com,2013-01-22 02:46:04+00:00,False,gmail,gmail,* master,True,gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org/ruby/gems/gitlab-mail/room.git,https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git f6ec3e4903f7b12975fe6463606ed970dbbbb44f,Jan Schneider,jan.schneider@hdnet.de,2020-03-13 11:34:17+01:00,Jan Schneider,jan.schneider@hdnet.de,2020-03-13 10:34:17+00:00,False,hdnet,hdnet,* FRAMEWORK_6_0,True,horde_Data.git,horde/Data.git,https://github.com/horde/Data.git -b1732ebd448d6ea52e5dff1ad0856e8533db2e3b,Jonathan Stowe,jns@gellyfish.co.uk,2016-10-07 10:02:01+01:00,Jonathan Stowe,jns@gellyfish.co.uk,2016-10-07 09:02:01+00:00,False,gellyfish,gellyfish,* master,True,jonathanstowe_TermReadKey.git,jonathanstowe/TermReadKey.git,https://github.com/jonathanstowe/TermReadKey.git -269e052ba407c16ab32953276c776d543930b917,Kilian Valkhof,kilian@kilianvalkhof.com,2019-12-20 16:51:10+01:00,GitHub,noreply@github.com,2019-12-20 15:51:10+00:00,False,kilianvalkhof,github,* master,True,Kilian_Trimage,Kilian/Trimage,https://github.com/Kilian/Trimage -b957ee3daf0cec3d440471188bd5ce8f4821213b,Erik Skultety,eskultet@redhat.com,2023-06-20 12:21:27+02:00,Erik Skultety,eskultet@redhat.com,2023-06-22 08:52:40+00:00,False,redhat,redhat,* master,True,libvirt_libvirt-python.git,libvirt/libvirt-python.git,https://gitlab.com/libvirt/libvirt-python.git -260b867a08b06bd35764caa50ed9dae4cf5e6ea6,Aaron Gallagher,aaron@flowroute.com,2014-07-15 13:36:38-07:00,Aaron Gallagher,aaron@flowroute.com,2014-07-15 20:36:38+00:00,False,flowroute,flowroute,* master,True,habnabit_vcversioner,habnabit/vcversioner,https://github.com/habnabit/vcversioner -835d5f428069219c5c58a679da7f04fc67f1c4cf,Norbert Preining,preining@debian.org,2013-01-05 12:42:53+09:00,Norbert Preining,preining@debian.org,2013-01-05 03:42:53+00:00,True,debian,debian,* master,True,norbusan_debian-gwaei,norbusan/debian-gwaei,https://github.com/norbusan/debian-gwaei -ad14b00aeb08e72b92a5e46fc1058b9d4d016d18,David Rosca,nowrep@gmail.com,2015-04-10 18:35:23+02:00,David Rosca,nowrep@gmail.com,2015-04-10 16:35:23+00:00,True,gmail,gmail,* master,True,plasma_bluedevil.git,plasma/bluedevil.git,https://invent.kde.org/plasma/bluedevil.git +1791536f0bb9ad23ff57ecc74df1fc019f7f69ab,jonathan,jonathan@d4a3e428-c23c-0410-a93a-b1ce904c0fb3,2004-03-02 20:28:11+00:00,jonathan,jonathan@d4a3e428-c23c-0410-a93a-b1ce904c0fb3,2004-03-02 20:28:11+00:00,False,d4a3e428-c23c-0410-a93a-b1ce904c0fb3,d4a3e428-c23c-0410-a93a-b1ce904c0fb3,* master,True,jonathanstowe_TermReadKey.git,jonathanstowe/TermReadKey.git,https://github.com/jonathanstowe/TermReadKey.git +187f3e616e9f1010ee1d99fc2d84e29fcf0f3bbe,Kilian Valkhof,kilian@kilianvalkhof.com,2010-02-02 15:02:20+01:00,Kilian Valkhof,kilian@kilianvalkhof.com,2010-02-02 14:02:20+00:00,False,kilianvalkhof,kilianvalkhof,* master,True,Kilian_Trimage,Kilian/Trimage,https://github.com/Kilian/Trimage +a9ea906035bcf5cbe95db64f51ed2ff7cec2b503,Daniel P. Berrange,berrange@redhat.com,2009-09-16 14:03:53+01:00,Daniel P. Berrange,berrange@redhat.com,2009-09-21 13:41:46+00:00,False,redhat,redhat,* master,True,libvirt_libvirt-python.git,libvirt/libvirt-python.git,https://gitlab.com/libvirt/libvirt-python.git +bff039c0f4980f714964aa8efea07a720eec3fe0,Aaron Gallagher,habnabit@gmail.com,2013-07-06 18:51:26-07:00,Aaron Gallagher,habnabit@gmail.com,2013-07-07 01:51:26+00:00,False,gmail,gmail,* master,True,habnabit_vcversioner,habnabit/vcversioner,https://github.com/habnabit/vcversioner +1c62ec6cb8415dbc895e3ec6844682c8834b96ef,Norbert Preining,preining@debian.org,2009-10-26 09:58:02+09:00,Norbert Preining,preining@debian.org,2012-09-19 05:46:10+00:00,False,debian,debian,* master,True,norbusan_debian-gwaei,norbusan/debian-gwaei,https://github.com/norbusan/debian-gwaei +0340d291a7d09b9594aa04d380d3869319c89da6,Alex Fiestas,alex@eyeos.org,2011-01-20 16:57:21+01:00,Alex Fiestas,alex@eyeos.org,2011-01-20 15:57:21+00:00,False,eyeos,eyeos,* master,True,plasma_bluedevil.git,plasma/bluedevil.git,https://invent.kde.org/plasma/bluedevil.git 10f5140a96bb4e7f856477a4eb7119add97079ef,Hong Jen Yee (PCMan),pcman.tw@gmail.com,2009-12-06 05:32:05+00:00,Hong Jen Yee (PCMan),pcman.tw@gmail.com,2009-12-06 05:32:05+00:00,False,gmail,gmail,* master,True,lxde_lxde-icon-theme,lxde/lxde-icon-theme,https://github.com/lxde/lxde-icon-theme -cde442eb17e17fdf331de6cd3d336c1418f54f92,Thomas Habets,habets@google.com,2021-11-02 17:41:12+00:00,Thomas Habets,habets@google.com,2021-11-02 17:41:12+00:00,False,google,google,* arping-2.x,True,ThomasHabets_arping,ThomasHabets/arping,https://github.com/ThomasHabets/arping -0301e9ce383ff5c29aa0d8ca9318874f885c5119,Sam Bull,git@sambull.org,2024-03-04 16:50:22+00:00,GitHub,noreply@github.com,2024-03-04 16:50:22+00:00,False,sambull,github,* master,True,aio-libs_aiosmtpd,aio-libs/aiosmtpd,https://github.com/aio-libs/aiosmtpd -ecb5364ef9c02b5b800d77bc3f33bdee80e28e3b,mschilli,github@perlmeister.com,2011-04-27 06:58:43-07:00,mschilli,github@perlmeister.com,2011-04-27 13:59:30+00:00,False,perlmeister,perlmeister,* master,True,mschilli_cache-historical-perl.git,mschilli/cache-historical-perl.git,https://github.com/mschilli/cache-historical-perl.git -60a0457dfc8b1213658c2f673fe74760655f7b39,Frederik “Freso” S. Olesen,freso.dk@gmail.com,2022-12-08 00:34:57+01:00,Frederik “Freso” S. Olesen,freso.dk@gmail.com,2022-12-07 23:34:57+00:00,True,gmail,gmail,* main,True,JonnyJD_musicbrainz-isrcsubmit,JonnyJD/musicbrainz-isrcsubmit,https://github.com/JonnyJD/musicbrainz-isrcsubmit -8e1c50cae49b6fab0a672bc3f24bf810570b75d2,Gustavo Niemeyer,gustavo@niemeyer.net,2019-04-03 11:39:57+01:00,Gustavo Niemeyer,gustavo@niemeyer.net,2019-04-03 10:39:57+00:00,False,niemeyer,niemeyer,* v3,True,go-yaml_yaml.git,go-yaml/yaml.git,https://github.com/go-yaml/yaml.git -0b21ec1d3944609990a0047c8ec2840614e81556,Frank B. Brokken,f.b.brokken@rug.nl,2018-06-09 17:27:36+02:00,Frank B. Brokken,f.b.brokken@rug.nl,2018-06-09 15:27:36+00:00,False,rug,rug,* master,True,fbb-git_flexcpp.git,fbb-git/flexcpp.git,https://gitlab.com/fbb-git/flexcpp.git -8e9c44b353e7c999949e44f5311386b091c8502e,TW,tw@waldmann-edv.de,2023-10-10 21:01:42+02:00,GitHub,noreply@github.com,2023-10-10 19:01:42+00:00,True,waldmann-edv,github,* master,True,borgbackup_borg.git,borgbackup/borg.git,https://github.com/borgbackup/borg.git -92bbb8a41ec5458ba190a362078973bd074b9dcb,Kevin McCormack,harlemsquirrel@mccormack.tech,2020-12-31 12:49:46-05:00,GitHub,noreply@github.com,2020-12-31 17:49:46+00:00,False,mccormack,github,* master,True,ruby-ldap_ruby-net-ldap.git,ruby-ldap/ruby-net-ldap.git,https://github.com/ruby-ldap/ruby-net-ldap.git -aa6a218d8940308c5000c40382869f382cf65caf,Nikolaus Rath,Nikolaus@rath.org,2022-05-02 09:54:52+01:00,Nikolaus Rath,Nikolaus@rath.org,2022-05-02 08:54:52+00:00,False,rath,rath,* master,True,python-dugong_python-dugong.git,python-dugong/python-dugong.git,https://github.com/python-dugong/python-dugong.git -74acfc65f9b5e35c8b2436c3cb45b2224bff5c40,Sebastian Schmittner,sebastian.schmittner@eecc.de,2023-10-19 09:11:43+02:00,BigBlueHat,byoung@bigbluehat.com,2024-02-05 20:13:32+00:00,False,eecc,bigbluehat,* master,True,digitalbazaar_pyld,digitalbazaar/pyld,https://github.com/digitalbazaar/pyld -978b733462e41efd5db72bc9974cb3b0d1d5f6fa,meduketto@gmail.com,meduketto@gmail.com@6ddeccfd-2234-0410-8ab0-45b763562eda,2011-10-18 20:25:37+00:00,meduketto@gmail.com,meduketto@gmail.com@6ddeccfd-2234-0410-8ab0-45b763562eda,2011-10-18 20:25:37+00:00,False,6ddeccfd-2234-0410-8ab0-45b763562eda,6ddeccfd-2234-0410-8ab0-45b763562eda,* master,True,meduketto_iksemel,meduketto/iksemel,https://github.com/meduketto/iksemel -2611a08d60260c0a79cd3c3e56c60990b9613948,Marius P,nmariusp1@gmail.com,2023-11-28 02:57:01+02:00,Kevin Ottens,ervin@kde.org,2023-12-18 07:14:30+00:00,False,gmail,kde,* master,True,pim_zanshin.git,pim/zanshin.git,https://invent.kde.org/pim/zanshin.git -128abe5b7e5f4eea10563b393f0bc7b8a6b6661b,Ievgenii Meshcheriakov,eugen@debian.org,2021-07-09 22:10:27+02:00,Ievgenii Meshcheriakov,eugen@debian.org,2021-07-09 20:13:40+00:00,False,debian,debian,* master,True,eugmes_fntsample.git,eugmes/fntsample.git,https://github.com/eugmes/fntsample.git -ba790dfc3e09a9dd45a19e698dd4c244ed1e429e,Scott Draves,spot@draves.org,2015-06-12 02:44:16+00:00,Scott Draves,spot@draves.org,2015-06-12 02:44:16+00:00,False,draves,draves,* master,True,scottdraves_flam3,scottdraves/flam3,https://github.com/scottdraves/flam3 -fe75d3a2cc2fc98a54116d1fd6e108af2a0f72c9,Rasmus Andersson,rasmus@notion.se,2023-07-27 10:33:07-07:00,Rasmus Andersson,rasmus@notion.se,2023-07-27 17:33:07+00:00,False,notion,notion,* master,True,rsms_inter,rsms/inter,https://github.com/rsms/inter -5ca5962dfef6908efb01df474ed58bb4c61184ab,Joachim Metz,joachim.metz@gmail.com,2016-01-07 08:06:01+01:00,Joachim Metz,joachim.metz@gmail.com,2016-03-27 15:49:21+00:00,False,gmail,gmail,* main,True,libyal_libevtx,libyal/libevtx,https://github.com/libyal/libevtx -316afc4c936e7b70f6fc233e877aaeb23ba64b67,Glyph,glyph@twistedmatrix.com,2023-10-28 16:10:35-07:00,GitHub,noreply@github.com,2023-10-28 23:10:35+00:00,True,twistedmatrix,github,* trunk,True,twisted_constantly.git,twisted/constantly.git,https://github.com/twisted/constantly.git -4de50dd02daee02090c41b765bf60043233bfdb7,Jesse Becker,hawson@gmail.com,2016-05-18 00:59:40-04:00,Jesse Becker,hawson@gmail.com,2016-05-18 04:59:40+00:00,False,gmail,gmail,* master,True,ganglia_ganglia-modules-linux.git,ganglia/ganglia-modules-linux.git,https://github.com/ganglia/ganglia-modules-linux.git -1752638a9b71ce4fc4ac42ce9bcf955ac3c331c8,jrburke,jrburke@gmail.com,2018-02-11 16:26:19-08:00,jrburke,jrburke@gmail.com,2018-02-12 00:26:19+00:00,False,gmail,gmail,* master,True,requirejs_r.js.git,requirejs/r.js.git,https://github.com/requirejs/r.js.git -91e58ed96dc9993b6389af854a32a87f849fbc85,Matti Schneider,gh@mattischneider.fr,2024-03-13 23:49:01+05:30,GitHub,noreply@github.com,2024-03-13 18:19:01+00:00,False,mattischneider,github,* main,True,chaijs_chai,chaijs/chai,https://github.com/chaijs/chai -307ed8d59ae1c1e7af1a0bef6d4f8f8b5927f699,Björn Höhrmann,bjoern@hoehrmann.de,2018-12-26 03:41:57+01:00,GitHub,noreply@github.com,2018-12-26 02:41:57+00:00,True,hoehrmann,github,* master,True,hoehrmann_XML-SAX-Expat,hoehrmann/XML-SAX-Expat,https://github.com/hoehrmann/XML-SAX-Expat -ec5c85494ad89f5e60c727c0b5c8534a966be09d,Davide P. Cervone,dpvc@union.edu,2021-04-05 10:48:31-04:00,Davide P. Cervone,dpvc@union.edu,2021-04-05 14:48:31+00:00,True,union,union,* master,True,mathjax_MathJax,mathjax/MathJax,https://github.com/mathjax/MathJax -2de53a67589d8eeaea35927357c0a05dd0329ce4,Bruno Oliveira,nicoddemus@gmail.com,2020-12-11 18:24:53-03:00,GitHub,noreply@github.com,2020-12-11 21:24:53+00:00,True,gmail,github,* master,True,pytest-dev_py.git,pytest-dev/py.git,https://github.com/pytest-dev/py.git -ecadcd3b88e3107d1e7571d001519343491936c1,Phillip Marshall,wizpig64@users.noreply.github.com,2022-05-15 03:22:18-07:00,Phillip Marshall,wizpig64@users.noreply.github.com,2022-05-15 10:22:18+00:00,False,users,users,* master,True,niwinz_django-jinja,niwinz/django-jinja,https://github.com/niwinz/django-jinja -f74338c72b79af840d4755a821e421688a9743fb,Simon McVittie,smcv@collabora.com,2023-08-16 13:47:09+01:00,Simon McVittie,smcv@collabora.com,2023-08-16 12:48:06+00:00,False,collabora,collabora,* master,True,dbus_dbus-python,dbus/dbus-python,https://gitlab.freedesktop.org/dbus/dbus-python -3091aa88c763b2067e86f910c9a75fbdd6344e8e,Bryan Stansell,bryan@conserver.com,2020-10-19 00:23:28-07:00,GitHub,noreply@github.com,2020-10-19 07:23:28+00:00,True,conserver,github,* master,True,conserver_conserver.git,conserver/conserver.git,https://github.com/conserver/conserver.git -53118ec74784ef9350389a8c0297fbeb07ac94d9,Matthew Newville,newville@cars.uchicago.edu,2023-04-22 12:52:22-05:00,Matthew Newville,newville@cars.uchicago.edu,2023-04-22 17:52:22+00:00,False,cars,cars,* master,True,lmfit_lmfit-py,lmfit/lmfit-py,https://github.com/lmfit/lmfit-py -976a9f19f4f0c88d5f68f568a8766ebfbdefa178,Dennis Stosberg,dennis@stosberg.net,2013-11-29 20:57:25+01:00,Dennis Stosberg,dennis@stosberg.net,2013-11-29 20:57:40+00:00,False,stosberg,stosberg,* master,True,dstosberg_odt2txt,dstosberg/odt2txt,https://github.com/dstosberg/odt2txt -afc765930cc81508828b719e85bff58af7de3b88,Jonathan Como,jonathan.como@gmail.com,2017-07-10 20:40:03-07:00,GitHub,noreply@github.com,2017-07-11 03:40:03+00:00,False,gmail,github,* master,True,jarus_flask-testing,jarus/flask-testing,https://github.com/jarus/flask-testing -9f9bc4ca3fd21c66dfaa83378992fa7f24e452e9,Petr Viktorin,pviktori@redhat.com,2021-07-01 15:40:15+02:00,GitHub,noreply@github.com,2021-07-01 13:40:15+00:00,False,redhat,github,* main,True,python-ldap_python-ldap,python-ldap/python-ldap,https://github.com/python-ldap/python-ldap -ce60a46add76c299dfe8d72635f6a82696b475f6,Harald Sitter,sitter@kde.org,2018-07-20 14:26:48+02:00,Harald Sitter,sitter@kde.org,2018-07-20 12:26:48+00:00,True,kde,kde,* master,True,plasma_breeze-plymouth.git,plasma/breeze-plymouth.git,https://invent.kde.org/plasma/breeze-plymouth.git -309ddc3e14384f5fecf99afddb2c17ba6feb6bda,Roman Mohr,roman@fenkhuber.at,2016-05-10 13:39:29+02:00,Roman Mohr,roman@fenkhuber.at,2016-05-10 11:39:29+00:00,True,fenkhuber,fenkhuber,* master,True,rmohr_static3,rmohr/static3,https://github.com/rmohr/static3 -74eb275fd5fe16d97f12d19351c79779272a0e7a,Timo Freiberg,timo.freiberg@novatec-gmbh.de,2019-10-25 12:38:46+02:00,Timo Freiberg,timo.freiberg@novatec-gmbh.de,2019-10-25 10:38:46+00:00,False,novatec-gmbh,novatec-gmbh,* master,True,TimoFreiberg_bultitude.git,TimoFreiberg/bultitude.git,https://github.com/TimoFreiberg/bultitude.git -c48335416a09b881d2309b8f88c9b3d1441f4a9c,Bart Van Assche,bvanassche@acm.org,2022-04-21 15:18:10-07:00,Jaegeuk Kim,jaegeuk@kernel.org,2022-04-22 17:44:45+00:00,False,acm,kernel,* master,True,pub_scm_linux_kernel_git_jaegeuk_f2fs-tools.git,pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git,https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git -2b0a7cb023583682c83bedaf3148c2c347a7325c,Thomas Kemmer,tkemmer@computer.org,2024-02-26 21:04:21+01:00,Thomas Kemmer,tkemmer@computer.org,2024-02-26 20:04:21+00:00,False,computer,computer,* master,True,tkem_cachetools,tkem/cachetools,https://github.com/tkem/cachetools -b4ba5690783587c8ba53b14b49d9a432322f2e95,Matt S Trout,mst@shadowcat.co.uk,2020-04-28 16:11:27+00:00,Matt S Trout,mst@shadowcat.co.uk,2020-04-28 16:11:27+00:00,False,shadowcat,shadowcat,* master,True,suretec_Message-Passing.git,suretec/Message-Passing.git,https://github.com/suretec/Message-Passing.git -edcd2dc240f7f97ca5ef5b3c1f43c34234e2fee3,David Lord,davidism@gmail.com,2023-08-19 13:07:35-07:00,GitHub,noreply@github.com,2023-08-19 20:07:35+00:00,True,gmail,github,* main,True,pallets_click.git,pallets/click.git,https://github.com/pallets/click.git -82a918329b99792e26a47ef53ea2c8eea66f3e9a,Poul Sander,poul@unity3d.com,2021-09-26 15:15:06+02:00,Poul Sander,poul@unity3d.com,2021-09-26 13:15:06+00:00,False,unity3d,unity3d,* main,True,OpenArena_gamecode,OpenArena/gamecode,https://github.com/OpenArena/gamecode -9fa1f8da9d25d0e2d011ceb829360962e6671da9,Eldar Marcussen,wireghoul@justanotherhacker.com,2016-02-12 01:07:06-05:00,Eldar Marcussen,wireghoul@justanotherhacker.com,2016-02-12 06:07:06+00:00,False,justanotherhacker,justanotherhacker,* master,True,wireghoul_doona,wireghoul/doona,https://github.com/wireghoul/doona +fb7ca4cad1e714eeaffd505eedcb3df7656e1371,Thomas Habets,thomas@habets.pp.se,2000-05-19 16:19:14+00:00,Thomas Habets,thomas@habets.pp.se,2000-05-19 16:19:14+00:00,False,habets,habets,* arping-2.x,True,ThomasHabets_arping,ThomasHabets/arping,https://github.com/ThomasHabets/arping +5a8fc2472d80731a3d82073a61ea6715aa2ec316,Ben Bader,ben@getkeepsafe.com,2014-06-08 17:26:07-07:00,Ben Bader,ben@getkeepsafe.com,2014-06-09 00:29:08+00:00,False,getkeepsafe,getkeepsafe,* master,True,aio-libs_aiosmtpd,aio-libs/aiosmtpd,https://github.com/aio-libs/aiosmtpd +4492bd1d7312d3c1280d91a3db14ad7fe253b2c7,mschilli,github@perlmeister.com,2008-01-12 22:11:51+00:00,mschilli,github@perlmeister.com,2008-01-12 22:11:51+00:00,False,perlmeister,perlmeister,* master,True,mschilli_cache-historical-perl.git,mschilli/cache-historical-perl.git,https://github.com/mschilli/cache-historical-perl.git +fe5bb50f1add6664062aefad4bf7aeca9c0c33c0,Johannes Dewender,github@JonnyJD.net,2012-02-11 00:41:56+01:00,Johannes Dewender,github@JonnyJD.net,2012-02-10 23:41:56+00:00,False,JonnyJD,JonnyJD,* main,True,JonnyJD_musicbrainz-isrcsubmit,JonnyJD/musicbrainz-isrcsubmit,https://github.com/JonnyJD/musicbrainz-isrcsubmit +00efe9c47819ca58089c4bd5d1d8463248e23228,Gustavo Niemeyer,gustavo@niemeyer.net,2011-01-04 10:02:03-02:00,Gustavo Niemeyer,gustavo@niemeyer.net,2011-01-04 12:02:03+00:00,False,niemeyer,niemeyer,* v3,True,go-yaml_yaml.git,go-yaml/yaml.git,https://github.com/go-yaml/yaml.git +59f97063cf6acdad28127e766f9165333443c774,Frank B. Brokken,f.b.brokken@rug.nl,2010-04-13 10:25:17+02:00,Frank B. Brokken,f.b.brokken@rug.nl,2010-04-13 08:25:17+00:00,False,rug,rug,* master,True,fbb-git_flexcpp.git,fbb-git/flexcpp.git,https://gitlab.com/fbb-git/flexcpp.git +baa0224f552f0c8b192e5d0bc0cdebe6d249624d,Jonas Borgström,jonas@borgstrom.se,2010-10-27 20:40:48+02:00,Jonas Borgström,jonas@borgstrom.se,2010-10-27 19:01:43+00:00,False,borgstrom,borgstrom,* master,True,borgbackup_borg.git,borgbackup/borg.git,https://github.com/borgbackup/borg.git +eb3ab200f8d51f424286dab24efd10ae362fd8e5,blackhedd,blackhedd@005445c4-6811-0410-8301-cae4f0071d1d,2006-04-14 23:23:35+00:00,blackhedd,blackhedd@005445c4-6811-0410-8301-cae4f0071d1d,2006-04-14 23:23:35+00:00,False,005445c4-6811-0410-8301-cae4f0071d1d,005445c4-6811-0410-8301-cae4f0071d1d,* master,True,ruby-ldap_ruby-net-ldap.git,ruby-ldap/ruby-net-ldap.git,https://github.com/ruby-ldap/ruby-net-ldap.git +803ee2e99c012dd10aabc0173d5852fa9f562b16,Nikolaus Rath,Nikolaus@rath.org,2013-07-27 19:40:43-07:00,Nikolaus Rath,Nikolaus@rath.org,2013-07-28 02:40:43+00:00,False,rath,rath,* master,True,python-dugong_python-dugong.git,python-dugong/python-dugong.git,https://github.com/python-dugong/python-dugong.git +02e5b4d1d2348e09eeed8da8fe6357db9553245b,Mike Johnson,mjohnson@digitalbazaar.com,2011-07-11 11:54:51-04:00,Mike Johnson,mjohnson@digitalbazaar.com,2011-07-11 15:54:51+00:00,False,digitalbazaar,digitalbazaar,* master,True,digitalbazaar_pyld,digitalbazaar/pyld,https://github.com/digitalbazaar/pyld +f424f65ea2420a02cbdc47ff8995ba9e1c28de90,meduketto,meduketto@6ddeccfd-2234-0410-8ab0-45b763562eda,2009-03-31 19:07:56+00:00,meduketto,meduketto@6ddeccfd-2234-0410-8ab0-45b763562eda,2009-03-31 19:07:56+00:00,False,6ddeccfd-2234-0410-8ab0-45b763562eda,6ddeccfd-2234-0410-8ab0-45b763562eda,* master,True,meduketto_iksemel,meduketto/iksemel,https://github.com/meduketto/iksemel +74ce2bd5364dfe2e39d77724a725a38785d8a7de,Kevin Ottens,ervin@kde.org,2014-04-11 16:09:36+02:00,Kevin Ottens,ervin@kde.org,2014-04-11 14:09:36+00:00,False,kde,kde,* master,True,pim_zanshin.git,pim/zanshin.git,https://invent.kde.org/pim/zanshin.git +c022ac6dde31f72dd85e803a6c9c8c00ba78f0c0,Eugeniy Meshcheryakov,eugen@debian.org,2017-10-24 23:39:53+02:00,Eugeniy Meshcheryakov,eugen@debian.org,2017-10-24 21:39:53+00:00,False,debian,debian,* master,True,eugmes_fntsample.git,eugmes/fntsample.git,https://github.com/eugmes/fntsample.git +4d7ec7be97139aa04495af42f1739ed534fe57b1,Scott Draves,spot@draves.org,2015-02-15 11:56:03-05:00,Scott Draves,spot@draves.org,2015-02-15 16:56:03+00:00,False,draves,draves,* master,True,scottdraves_flam3,scottdraves/flam3,https://github.com/scottdraves/flam3 +3b1fffade1473f20f2558733fbd218f4580fc7c3,Rasmus Andersson,rasmus@notion.se,2017-08-22 00:05:20-07:00,Rasmus Andersson,rasmus@notion.se,2017-08-22 09:23:08+00:00,False,notion,notion,* master,True,rsms_inter,rsms/inter,https://github.com/rsms/inter +71c9c330f43c13c4da1974b2a130d7253d15f913,Joachim Metz,joachim.metz@gmail.com,2011-09-20 21:42:25+02:00,Joachim Metz,joachim.metz@gmail.com,2016-03-27 15:12:50+00:00,False,gmail,gmail,* main,True,libyal_libevtx,libyal/libevtx,https://github.com/libyal/libevtx +13d136b3f3b3cba8441d80bcd132084b2d525367,HawkOwl,hawkowl@atleastfornow.net,2014-05-15 21:16:45+08:00,HawkOwl,hawkowl@atleastfornow.net,2014-05-15 13:16:45+00:00,False,atleastfornow,atleastfornow,* trunk,True,twisted_constantly.git,twisted/constantly.git,https://github.com/twisted/constantly.git +a5b490c277098df54558f52e290a0c8484987db6,Daniel Pocock,daniel@pocock.com.au,2011-12-28 22:43:00+01:00,Daniel Pocock,daniel@pocock.com.au,2011-12-28 21:43:00+00:00,False,pocock,pocock,* master,True,ganglia_ganglia-modules-linux.git,ganglia/ganglia-modules-linux.git,https://github.com/ganglia/ganglia-modules-linux.git +997d6e546e3cd5b6977f5c23e047de06be7153f1,James Burke,devnull@localhost,2009-11-13 23:04:46-08:00,James Burke,devnull@localhost,2009-11-14 07:04:46+00:00,False,localhost,localhost,* master,True,requirejs_r.js.git,requirejs/r.js.git,https://github.com/requirejs/r.js.git +6d31c7ced96a93f2b0aaab3837adf0bebfd29e71,Jake Luer,jake.luer@gmail.com,2011-12-06 08:18:01-05:00,Jake Luer,jake.luer@gmail.com,2011-12-06 13:18:01+00:00,False,gmail,gmail,* main,True,chaijs_chai,chaijs/chai,https://github.com/chaijs/chai +30284822748302f8ba253df2b0d449029ee95385,U-netb\bjoern,bjoern@hoehrmann.de,2014-01-21 02:45:40+01:00,U-netb\bjoern,bjoern@hoehrmann.de,2014-01-21 01:45:40+00:00,False,hoehrmann,hoehrmann,* master,True,hoehrmann_XML-SAX-Expat,hoehrmann/XML-SAX-Expat,https://github.com/hoehrmann/XML-SAX-Expat +8fcffb010e3c4f9193e0e83782c38372d7a78526,dpvc,dpvc@b8fd5906-0fad-46e2-a0d3-10d94ff285d1,2010-07-29 20:11:31+00:00,dpvc,dpvc@b8fd5906-0fad-46e2-a0d3-10d94ff285d1,2010-07-29 20:11:31+00:00,False,b8fd5906-0fad-46e2-a0d3-10d94ff285d1,b8fd5906-0fad-46e2-a0d3-10d94ff285d1,* master,True,mathjax_MathJax,mathjax/MathJax,https://github.com/mathjax/MathJax +5992a8ef21424d7571305a8d7e2a3431ee7e1e23,hpk,none@none,2007-01-24 15:24:01+01:00,hpk,none@none,2007-01-24 14:24:01+00:00,False,none,none,* master,True,pytest-dev_py.git,pytest-dev/py.git,https://github.com/pytest-dev/py.git +f6286664ef4498c34791b1dfb85355025298e05a,Andrei Antoukh,niwi@niwi.be,2012-01-23 15:36:05+01:00,Andrei Antoukh,niwi@niwi.be,2012-01-23 14:36:05+00:00,False,niwi,niwi,* master,True,niwinz_django-jinja,niwinz/django-jinja,https://github.com/niwinz/django-jinja +b8b86555280694d85d64b68d0f9131868598161a,John (J5) Palmieri,quinticent@phuket.(none),2006-06-28 14:21:26-04:00,John (J5) Palmieri,quinticent@phuket.(none),2006-06-28 18:21:26+00:00,False,phuket,phuket,* master,True,dbus_dbus-python,dbus/dbus-python,https://gitlab.freedesktop.org/dbus/dbus-python +decc2f8c4f99eaf3401e462f9d6c1cfddb6035eb,Bryan Stansell,bryan@conserver.com,1998-12-18 15:12:55-08:00,Bryan Stansell,bryan@conserver.com,1998-12-18 23:12:55+00:00,False,conserver,conserver,* master,True,conserver_conserver.git,conserver/conserver.git,https://github.com/conserver/conserver.git +a0245ee329cc0e59b0d30cfee79c896258094f25,Matt Newville,newville@cars.uchicago.edu,2011-08-01 07:11:07-05:00,Matt Newville,newville@cars.uchicago.edu,2011-08-01 12:11:07+00:00,False,cars,cars,* master,True,lmfit_lmfit-py,lmfit/lmfit-py,https://github.com/lmfit/lmfit-py +aadfd070d3cdf7e01a0935bdf597541fc7b54c48,Dennis Stosberg,dennis@stosberg.net,2006-11-16 11:36:01+01:00,Dennis Stosberg,dennis@stosberg.net,2006-11-16 10:36:01+00:00,False,stosberg,stosberg,* master,True,dstosberg_odt2txt,dstosberg/odt2txt,https://github.com/dstosberg/odt2txt +93c6365ce23debbd31f7e361146cd172163393ee,Dan Jacob,danjac354@gmail.com,2010-06-23 08:38:56+01:00,Dan Jacob,danjac354@gmail.com,2010-06-23 07:38:56+00:00,False,gmail,gmail,* master,True,jarus_flask-testing,jarus/flask-testing,https://github.com/jarus/flask-testing +415696b54a9ada7d4fd2d398ebdd54d64f7130b6,stroeder,stroeder,2011-03-28 17:43:18+00:00,stroeder,stroeder,2011-03-28 17:43:18+00:00,False,stroeder,stroeder,* main,True,python-ldap_python-ldap,python-ldap/python-ldap,https://github.com/python-ldap/python-ldap +5615c406ac6c372cddb7f90b708b4979991515dc,Harald Sitter,sitter@kde.org,2016-02-19 09:28:33+01:00,Harald Sitter,sitter@kde.org,2016-02-19 08:28:33+00:00,False,kde,kde,* master,True,plasma_breeze-plymouth.git,plasma/breeze-plymouth.git,https://invent.kde.org/plasma/breeze-plymouth.git +ded84e1357b5f04cd1ba7205405668258c90dddd,Roman Mohr,roman@fenkhuber.at,2013-07-28 10:21:50+02:00,Roman Mohr,roman@fenkhuber.at,2013-07-28 08:21:50+00:00,False,fenkhuber,fenkhuber,* master,True,rmohr_static3,rmohr/static3,https://github.com/rmohr/static3 +b49f6ecc2f9b34ac7a580b3d1690bd0e0d83ffdf,Anthony Grimes,i@raynes.me,2012-02-11 22:15:41-06:00,Anthony Grimes,i@raynes.me,2012-02-12 04:15:41+00:00,False,raynes,raynes,* master,True,TimoFreiberg_bultitude.git,TimoFreiberg/bultitude.git,https://github.com/TimoFreiberg/bultitude.git +036d45e551ca5405c726f8ccb51f446620cd4af4,Jaegeuk Kim,jaegeuk.kim@gmail.com,2012-10-26 21:56:34+09:00,Jaegeuk Kim,jaegeuk.kim@samsung.com,2012-11-26 10:45:59+00:00,False,gmail,samsung,* master,True,pub_scm_linux_kernel_git_jaegeuk_f2fs-tools.git,pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git,https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git +fa0e60627c2f27f2dbd84f66c5739a9f3bf16d47,Thomas Kemmer,tkemmer@computer.org,2014-03-22 11:09:33+01:00,Thomas Kemmer,tkemmer@computer.org,2014-03-22 10:09:33+00:00,False,computer,computer,* master,True,tkem_cachetools,tkem/cachetools,https://github.com/tkem/cachetools +9b6b04a59f2dda46b3abc2dcbdfb4ceef0d7f945,Tomas Doran,bobtfish@bobtfish.net,2012-03-04 17:52:14+00:00,Tomas Doran,bobtfish@bobtfish.net,2012-03-04 17:52:40+00:00,False,bobtfish,bobtfish,* master,True,suretec_Message-Passing.git,suretec/Message-Passing.git,https://github.com/suretec/Message-Passing.git +4101de3daf91c6d35b92395a72bf84132ef48f7c,Armin Ronacher,armin.ronacher@active-4.com,2014-04-24 11:51:55+02:00,Armin Ronacher,armin.ronacher@active-4.com,2014-04-24 09:51:55+00:00,False,active-4,active-4,* main,True,pallets_click.git,pallets/click.git,https://github.com/pallets/click.git +c3e6fcc64e3d48bfd3d0c7db6ba30604d1d79332,sago007,sago007@48ef5666-4144-11de-b6cc-f32266f7ba4a,2009-05-15 14:44:23+00:00,sago007,sago007@48ef5666-4144-11de-b6cc-f32266f7ba4a,2009-05-15 14:44:23+00:00,False,48ef5666-4144-11de-b6cc-f32266f7ba4a,48ef5666-4144-11de-b6cc-f32266f7ba4a,* main,True,OpenArena_gamecode,OpenArena/gamecode,https://github.com/OpenArena/gamecode +8f3dbb6aa36e4fc63d5be07dd570b4ef5ef63e45,Eldar Marcussen,wireghoul@justanotherhacker.com,2012-05-01 00:11:00-04:00,Eldar Marcussen,wireghoul@justanotherhacker.com,2012-05-01 04:11:00+00:00,False,justanotherhacker,justanotherhacker,* master,True,wireghoul_doona,wireghoul/doona,https://github.com/wireghoul/doona 0e37fdca23aee664490bdb3674cbf81b9c64727e,Alejandro Garrido Mota,alejandro@debian.org,2014-03-05 10:34:20-04:30,Alejandro Garrido Mota,alejandro@debian.org,2014-03-05 15:04:20+00:00,False,debian,debian,* master,True,mogaal_libpod-webserver-perl,mogaal/libpod-webserver-perl,https://github.com/mogaal/libpod-webserver-perl -c2fa43cbe1091e799e248e8e4433978916791a8b,Anorov,phitapig@gmail.com,2019-09-19 22:47:40-04:00,GitHub,noreply@github.com,2019-09-20 02:47:40+00:00,False,gmail,github,* master,True,Anorov_PySocks,Anorov/PySocks,https://github.com/Anorov/PySocks -035c0b86690e2868bce970de1f140f4a75e6e28c,Joachim Metz,joachim.metz@gmail.com,2016-01-08 13:33:09+01:00,Joachim Metz,joachim.metz@gmail.com,2016-01-08 12:33:09+00:00,False,gmail,gmail,* main,True,libyal_libvmdk.git,libyal/libvmdk.git,https://github.com/libyal/libvmdk.git -195ab0de4d7742a529b4456afff5694fb7ad86c4,Kenneth Reitz,me@kennethreitz.org,2017-08-29 01:55:31-04:00,GitHub,noreply@github.com,2017-08-29 05:55:31+00:00,False,kennethreitz,github,* master,True,kennethreitz_clint,kennethreitz/clint,https://github.com/kennethreitz/clint -2dbd02ec1cb03e3cb87ea066db1b1784f2b49b3f,Jan Pazdziora,jpazdziora@redhat.com,2022-01-23 14:07:29+01:00,Jan Pazdziora,jpazdziora@redhat.com,2022-01-23 13:07:29+00:00,False,redhat,redhat,* master,True,adelton_mod_authnz_pam.git,adelton/mod/authnz/pam.git,https://github.com/adelton/mod_authnz_pam.git -8c4f67489088d127b15e63ffde91071a009a0e3a,Damon Chaplin,damon@gnome.org,2013-11-03 17:11:40+00:00,Damon Chaplin,damon@gnome.org,2013-11-03 17:11:40+00:00,False,gnome,gnome,* master,True,GNOME_goocanvas,GNOME/goocanvas,https://gitlab.gnome.org/GNOME/goocanvas -739709b8eeab60fa92aff841ae2ce8797e534ede,Takashi Sakamoto,o-takashi@sakamocchi.jp,2024-02-07 10:12:15+09:00,Takashi Sakamoto,o-takashi@sakamocchi.jp,2024-02-07 01:12:28+00:00,False,sakamocchi,sakamocchi,* main,True,pub_scm_libs_ieee1394_libhinawa.git,pub/scm/libs/ieee1394/libhinawa.git,https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git -60800dd5dd40b7c7d36ccf355908ec1fced034fc,Jonathan Dowland,jon@dow.land,2022-02-09 16:55:09+00:00,Jonathan Dowland,jon@dow.land,2022-09-22 22:12:13+00:00,False,dow,dow,* main,True,jmtd_wadc,jmtd/wadc,https://github.com/jmtd/wadc +8b4ec9df47e151279d6d01097acb9d6dd78e0538,Anorov,anorov.vorona@gmail.com,2013-03-08 17:31:24-05:00,Anorov,anorov.vorona@gmail.com,2013-03-08 22:31:24+00:00,False,gmail,gmail,* master,True,Anorov_PySocks,Anorov/PySocks,https://github.com/Anorov/PySocks +e08689cfe0cebd90e0c86aaa102166bdd26e9d51,Joachim Metz,joachim.metz@gmail.com,2009-09-12 21:02:38+02:00,Joachim Metz,joachim.metz@gmail.com,2015-11-08 08:51:53+00:00,False,gmail,gmail,* main,True,libyal_libvmdk.git,libyal/libvmdk.git,https://github.com/libyal/libvmdk.git +e87a581c57931bd5dc05cef5fdeb42a8669bf65a,Kenneth Reitz,me@kennethreitz.com,2010-10-11 22:40:42-04:00,Kenneth Reitz,me@kennethreitz.com,2010-10-12 02:40:42+00:00,False,kennethreitz,kennethreitz,* master,True,kennethreitz_clint,kennethreitz/clint,https://github.com/kennethreitz/clint +67060fba58bfe53f5e81447eb623c386549773d9,Jan Pazdziora,jpazdziora@redhat.com,2014-01-06 11:34:22+08:00,Jan Pazdziora,jpazdziora@redhat.com,2014-01-06 07:00:44+00:00,False,redhat,redhat,* master,True,adelton_mod_authnz_pam.git,adelton/mod/authnz/pam.git,https://github.com/adelton/mod_authnz_pam.git +aff2b660ece92332ae39237e25ea5323371a6c5e,Murray Cumming,murrayc@src.gnome.org,2008-05-18 12:55:29+00:00,Murray Cumming,murrayc@src.gnome.org,2008-05-18 12:55:29+00:00,False,src,src,* master,True,GNOME_goocanvas,GNOME/goocanvas,https://gitlab.gnome.org/GNOME/goocanvas +82c6db7cebc68aabd6f9c69a6a27d314930bd1c4,Takashi Sakamoto,o-takashi@sakamocchi.jp,2014-12-09 10:10:06+09:00,Takashi Sakamoto,o-takashi@sakamocchi.jp,2014-12-09 01:10:42+00:00,False,sakamocchi,sakamocchi,* main,True,pub_scm_libs_ieee1394_libhinawa.git,pub/scm/libs/ieee1394/libhinawa.git,https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git +b1c25735008d1a5bdcf48f9b5e0417430aed5971,Jonathan Dowland,jon+github@alcopop.org,2015-09-18 22:48:18+01:00,Jonathan Dowland,jon+github@alcopop.org,2015-09-18 21:48:18+00:00,False,alcopop,alcopop,* main,True,jmtd_wadc,jmtd/wadc,https://github.com/jmtd/wadc 58923bf5ad66b4e19cf6cb46a7f9e4f0942f16f7,Lafricain,fr.cyrille@tiberiade.be,2020-12-01 09:59:28+00:00,Lafricain,fr.cyrille@tiberiade.be,2020-12-01 09:59:28+00:00,False,tiberiade,tiberiade,* master,True,crosswire-bible-society_nave,crosswire-bible-society/nave,https://gitlab.com/crosswire-bible-society/nave -1f3769c016cb60871b06e71aceaec95873ebfddd,Osvaldo Santana Neto,osantana@osantana.me,2018-10-25 02:52:20-03:00,Osvaldo Santana Neto,osantana@osantana.me,2018-10-25 05:52:26+00:00,False,osantana,osantana,* master,True,osantana_dicteval.git,osantana/dicteval.git,https://github.com/osantana/dicteval.git -aa19702be6ff3d1ecc8ae2c6463b367a15d92e23,Free Ekanayaka,free@ekanayaka.io,2017-01-19 10:11:13+00:00,Free Ekanayaka,free@ekanayaka.io,2017-01-19 10:11:13+00:00,False,ekanayaka,ekanayaka,* master,True,testing-cabal_systemfixtures.git,testing-cabal/systemfixtures.git,https://github.com/testing-cabal/systemfixtures.git -8a0b3f0fae96da48101c91de8e1c2a34be4be17b,Matthew Grant,matt@mattgrant.net.nz,2014-09-13 22:15:36+12:00,Matthew Grant,matt@mattgrant.net.nz,2014-09-13 10:15:36+00:00,False,mattgrant,mattgrant,* master,True,grantma_dms,grantma/dms,https://github.com/grantma/dms -2bd51cabecfd4dcd20544fba7092cfd98dc7dac0,David Winterbottom,david.winterbottom@gmail.com,2021-05-15 17:36:29+01:00,David Winterbottom,david.winterbottom@gmail.com,2021-05-15 21:00:41+00:00,False,gmail,gmail,* master,True,codeinthehole_purl,codeinthehole/purl,https://github.com/codeinthehole/purl -4a4de23d8a8150ce2bf1857042b464720ea64cd1,Srivats P,pstavirs@users.noreply.github.com,2023-05-09 18:27:15+05:30,Srivats P,pstavirs@users.noreply.github.com,2023-05-09 12:57:15+00:00,False,users,users,* master,True,pstavirs_ostinato,pstavirs/ostinato,https://github.com/pstavirs/ostinato -7b7d7759094b155be63e976c30aba29d569a529b,Ricardo SIGNES,rjbs@cpan.org,2009-05-30 13:05:31-04:00,Ricardo SIGNES,rjbs@cpan.org,2009-05-30 17:05:31+00:00,False,cpan,cpan,* main,True,rjbs_IPC-Run3.git,rjbs/IPC-Run3.git,https://github.com/rjbs/IPC-Run3.git +45421d10de74155f687b37b796ce9ee69d0d7893,Osvaldo Santana Neto,osantana@osantana.me,2018-04-12 00:51:28-03:00,Osvaldo Santana Neto,osantana@osantana.me,2018-04-12 03:51:28+00:00,False,osantana,osantana,* master,True,osantana_dicteval.git,osantana/dicteval.git,https://github.com/osantana/dicteval.git +1b2836fb8a9d1eea8bcff27de4902456bc744ba0,Free Ekanayaka,free@ekanayaka.io,2016-10-06 12:51:34+02:00,Free Ekanayaka,free@ekanayaka.io,2016-10-28 16:07:36+00:00,False,ekanayaka,ekanayaka,* master,True,testing-cabal_systemfixtures.git,testing-cabal/systemfixtures.git,https://github.com/testing-cabal/systemfixtures.git +283a0b24ac7fb0c500386de648905cded21f8b20,Matthew Grant,matthew.grant@net24.co.nz,2013-07-14 21:11:52+12:00,Matthew Grant,matthew.grant@net24.co.nz,2013-07-14 09:11:52+00:00,False,net24,net24,* master,True,grantma_dms,grantma/dms,https://github.com/grantma/dms +70dfb0ff5009c7e7bfd415d9c3324b22d94093b2,David Winterbottom,david.winterbottom@gmail.com,2012-03-27 22:49:10+01:00,David Winterbottom,david.winterbottom@gmail.com,2012-03-27 21:49:10+00:00,False,gmail,gmail,* master,True,codeinthehole_purl,codeinthehole/purl,https://github.com/codeinthehole/purl +35472a6ac781ec4b0190672c1f67eeaad7590864,Srivats P.,pstavirs@gmail.com,2014-06-03 07:14:54+05:30,Srivats P.,pstavirs@gmail.com,2014-06-03 01:44:54+00:00,False,gmail,gmail,* master,True,pstavirs_ostinato,pstavirs/ostinato,https://github.com/pstavirs/ostinato +fb73ef4fb876313f43c55f07ec25c2cae37a568f,Ricardo SIGNES,rjbs@cpan.org,2005-09-28 07:22:48-05:00,Ricardo SIGNES,rjbs@cpan.org,2005-09-28 12:22:48+00:00,False,cpan,cpan,* main,True,rjbs_IPC-Run3.git,rjbs/IPC-Run3.git,https://github.com/rjbs/IPC-Run3.git 7699e660c678df45a7d0ce2edaec1611e210d583,Sergey V. Udaltsov,svu@src.gnome.org,2006-09-27 20:27:09+00:00,Sergey V. Udaltsov,svu@src.gnome.org,2006-09-27 20:27:09+00:00,False,src,src,* master,True,GNOME_libgnomekbd.git,GNOME/libgnomekbd.git,https://gitlab.gnome.org/GNOME/libgnomekbd.git -99fc6722db54f413d1ff5556eb243302ff6d0063,Antoine Beaupré,anarcat@koumbit.org,2015-06-16 09:07:30-04:00,Antoine Beaupré,anarcat@koumbit.org,2015-06-16 13:08:26+00:00,True,koumbit,koumbit,* debian,True,anarcat_tty-clock,anarcat/tty-clock,https://github.com/anarcat/tty-clock -10435496b4d88855e0e78949d3c7c14f01a366cc,Friedrich W. H. Kossebau,kossebau@kde.org,2022-09-20 12:25:27+00:00,Friedrich W. H. Kossebau,kossebau@kde.org,2022-09-20 12:25:27+00:00,False,kde,kde,* master,True,picmi.git,picmi.git,https://anongit.kde.org/picmi.git -97f05d1b27286f202e24a46203e77be40bb9f852,Pratik Yadav,pratik@mapbox.com,2021-09-16 16:38:47-07:00,GitHub,noreply@github.com,2021-09-16 23:38:47+00:00,False,mapbox,github,* master,True,mapbox_cligj.git,mapbox/cligj.git,https://github.com/mapbox/cligj.git -56d28abf383c385630989ed06728c0526d5e4e3f,Daniele Varrazzo,daniele.varrazzo@gmail.com,2022-08-11 00:55:19+02:00,Daniele Varrazzo,daniele.varrazzo@gmail.com,2022-08-10 22:55:19+00:00,False,gmail,gmail,* master,True,dvarrazzo_py-setproctitle,dvarrazzo/py-setproctitle,https://github.com/dvarrazzo/py-setproctitle -8734277956c1df3b85385e6b308e954910533884,Jeff Rouse,jr@its.to,2023-02-10 15:42:40-08:00,GitHub,noreply@github.com,2023-02-10 23:42:40+00:00,False,its,github,* master,True,ActiveState_appdirs.git,ActiveState/appdirs.git,https://github.com/ActiveState/appdirs.git -d072c5f20f272045b770799292367781018b57cb,Alexandre Detiste,alexandre.detiste@gmail.com,2016-01-26 07:57:17+01:00,Alexandre Detiste,alexandre.detiste@gmail.com,2016-01-26 06:57:17+00:00,False,gmail,gmail,* master,True,a-detiste_cruft,a-detiste/cruft,https://github.com/a-detiste/cruft -ca5f48220d3d66629ffc189d77c0a62c38175658,Frank B. Brokken,f.b.brokken@rug.nl,2018-06-13 10:33:01+02:00,Frank B. Brokken,f.b.brokken@rug.nl,2018-06-13 08:33:01+00:00,False,rug,rug,* master,True,fbb-git_gpg-remailer,fbb-git/gpg-remailer,https://gitlab.com/fbb-git/gpg-remailer -003bd4bc642e8432dba1293641649c88aad9419f,Berke Durak,berke.durak@gmail.com,2016-11-02 23:35:02-07:00,Berke Durak,berke.durak@gmail.com,2016-11-03 06:35:02+00:00,False,gmail,gmail,* master,True,berke_wipe,berke/wipe,https://github.com/berke/wipe -f897e041c61c5a4f9eed3487fc77acfc15847417,TicklishHoneyBee,lisamilne618@gmail.com,2022-08-03 17:54:10+10:00,GitHub,noreply@github.com,2022-08-03 07:54:10+00:00,True,gmail,github,* master,True,TicklishHoneyBee_nodau,TicklishHoneyBee/nodau,https://github.com/TicklishHoneyBee/nodau -93626db721bf688c1f9c9032ef47de57a3aa344a,YOKOTA Hiroshi,yokota.hgml@gmail.com,2021-10-07 12:54:02+09:00,YOKOTA Hiroshi,yokota.hgml@gmail.com,2021-10-07 03:54:02+00:00,True,gmail,gmail,* master,True,debian-calibre_unrardll,debian-calibre/unrardll,https://github.com/debian-calibre/unrardll -43f7cfb86f2f405e5cf3f78b4f883cd70fe451e3,Stephen Gallagher,sgallagh@redhat.com,2010-09-21 14:33:25-04:00,Stephen Gallagher,sgallagh@redhat.com,2010-09-22 18:48:28+00:00,False,redhat,redhat,* master,True,SSSD_ding-libs,SSSD/ding-libs,https://github.com/SSSD/ding-libs -36812dfb62ca38b26a0277c635efec85a539001d,Prabhu Ramachandran,prabhu@aero.iitb.ac.in,2022-02-25 23:33:53+05:30,GitHub,noreply@github.com,2022-02-25 18:03:53+00:00,True,aero,github,* master,True,pypr_pysph,pypr/pysph,https://github.com/pypr/pysph -d4ba34b3bd3a21812bcb4e0f0697c70fc424680a,Philip Rinn,rinni@inventati.org,2023-01-03 19:02:40+01:00,Philip Rinn,rinni@inventati.org,2023-01-03 18:02:40+00:00,False,inventati,inventati,* master,True,innir_gtranscribe,innir/gtranscribe,https://github.com/innir/gtranscribe -4d10c53f8ab718646be885b2a164668c43433de1,Robert Krause,Ruport@web.de,2013-11-17 07:22:22+01:00,Robert Krause,Ruport@web.de,2013-11-17 06:22:22+00:00,False,web,web,* master,True,Rup0rt_netmate,Rup0rt/netmate,https://github.com/Rup0rt/netmate -9c948c8861b7e0b01a2fe97b9f54c256d1ba458b,Wermeille Bastien,bastien.wermeille@gmail.com,2023-07-21 13:55:28+02:00,Andrew Leech,andrew@alelec.net,2023-07-22 05:46:49+00:00,False,gmail,alelec,* master,True,andrewleech_PyWebDAV3.git,andrewleech/PyWebDAV3.git,https://github.com/andrewleech/PyWebDAV3.git -acedb03149e3f87ff599174b033754c2f58f1c95,Mike Bayer,mike_mp@zzzcomputing.com,2022-01-02 14:31:58-05:00,Mike Bayer,mike_mp@zzzcomputing.com,2022-01-02 19:31:58+00:00,False,zzzcomputing,zzzcomputing,* main,True,sqlalchemyorg_sphinx-paramlinks,sqlalchemyorg/sphinx-paramlinks,https://github.com/sqlalchemyorg/sphinx-paramlinks -4bd0a47b222bd5fbfb820fba74d0a73307bff449,Sevan Janiyan,venture37@geeklan.co.uk,2019-09-30 00:39:24+01:00,Sevan Janiyan,venture37@geeklan.co.uk,2019-09-29 23:39:24+00:00,False,geeklan,geeklan,* master,True,pali_0xFFFF,pali/0xFFFF,https://github.com/pali/0xFFFF -e3c36bee06702c7c1f956656e50a2d2fce7b1d85,Christian Ledermann,christian.ledermann@gmail.com,2023-12-28 19:47:03+00:00,GitHub,noreply@github.com,2023-12-28 19:47:03+00:00,True,gmail,github,* develop,True,cleder_fastkml,cleder/fastkml,https://github.com/cleder/fastkml -400e37c56c9772fdc4c04ddb29d8a4a20568fb1a,Wes Turner,50891+westurner@users.noreply.github.com,2023-08-02 21:00:25-04:00,Godefroid Chapelle,gotcha@bubblenet.be,2023-08-03 14:30:43+00:00,False,users,bubblenet,* master,True,gotcha_ipdb,gotcha/ipdb,https://github.com/gotcha/ipdb -39fb4f7f7cdb1cb48171ea58ad18633a6f687106,kmx,kmx@cpan.org,2017-12-01 20:09:08+01:00,kmx,kmx@cpan.org,2017-12-01 19:09:08+00:00,False,cpan,cpan,* master,True,kmx_perl-Crypt-OpenSSL-Bignum.git,kmx/perl-Crypt-OpenSSL-Bignum.git,https://github.com/kmx/perl-Crypt-OpenSSL-Bignum.git -e0e02e259289cc9a58436450a57e740df464401b,Andrey Rakhmatullin,wrar@wrar.name,2023-08-03 14:32:45+04:00,GitHub,noreply@github.com,2023-08-03 10:32:45+00:00,True,wrar,github,* master,True,scrapy_w3lib.git,scrapy/w3lib.git,https://github.com/scrapy/w3lib.git -adfa754a4587790dd31ed2424b592f31c7f25ee0,Roger Wolff,R.E.Wolff@BitWizard.nl,2023-10-14 23:00:54+02:00,GitHub,noreply@github.com,2023-10-14 21:00:54+00:00,True,BitWizard,github,* master,True,traviscross_mtr,traviscross/mtr,https://github.com/traviscross/mtr -2bf58379fbc9f48a1687b5fcd16ba537028a1cf2,Eran Hammer,eran@hammer.io,2020-01-04 12:48:25-08:00,GitHub,noreply@github.com,2020-01-04 20:48:25+00:00,True,hammer,github,* master,True,hapijs_code.git,hapijs/code.git,https://github.com/hapijs/code.git -d680c4cff6e20128a17d81772bcc566daf97d854,Standreas,standreas@riseup.net,2022-02-18 08:41:54+01:00,GitHub,noreply@github.com,2022-02-18 07:41:54+00:00,True,riseup,github,* master,True,lxqt_libqtxdg.git,lxqt/libqtxdg.git,https://github.com/lxqt/libqtxdg.git -6e11bf997b137fdfdd1b5acb537b5d85dee2013c,John Szakmeister,john@szakmeister.net,2016-01-27 16:53:36-05:00,John Szakmeister,john@szakmeister.net,2016-01-27 21:53:36+00:00,True,szakmeister,szakmeister,* master,True,nose-devs_nose.git,nose-devs/nose.git,https://github.com/nose-devs/nose.git -9042521813a2c3b04999256f481d11600f8669da,Steven Loria,sloria1@gmail.com,2024-01-16 16:54:39-05:00,GitHub,noreply@github.com,2024-01-16 21:54:39+00:00,False,gmail,github,* dev,True,marshmallow-code_flask-marshmallow.git,marshmallow-code/flask-marshmallow.git,https://github.com/marshmallow-code/flask-marshmallow.git -5eee38102bc1ebf21f4546c2973509924d08d251,Jesse,jsmith@resonatingmedia.com,2022-04-13 18:56:47-03:00,Jesse,jsmith@resonatingmedia.com,2022-04-13 21:56:47+00:00,False,resonatingmedia,resonatingmedia,* main,True,slicer69_sysvinit,slicer69/sysvinit,https://github.com/slicer69/sysvinit -707f11214fee13d9d2a9e3b8c92f03c855c8925c,Andrew Svetlov,andrew.svetlov@gmail.com,2021-09-27 11:59:00+03:00,Andrew Svetlov,andrew.svetlov@gmail.com,2021-09-27 08:59:00+00:00,False,gmail,gmail,* master,True,aio-libs_aiohttp-jinja2,aio-libs/aiohttp-jinja2,https://github.com/aio-libs/aiohttp-jinja2 -d1dc4e13005245db2bf892a3a62ad031585cc670,Automeris naranja,automerisnaranja@tutanota.com,2023-06-11 21:06:23-03:00,Niels De Graef,nielsdegraef@gmail.com,2023-07-07 20:44:56+00:00,False,tutanota,gmail,* main,True,GNOME_geary.git,GNOME/geary.git,https://gitlab.gnome.org/GNOME/geary.git -de37569c926c5886768f892c019e3f0468615038,David Runge,dave@sleepmap.de,2019-09-24 00:34:12+02:00,GitHub,noreply@github.com,2019-09-23 22:34:12+00:00,False,sleepmap,github,* master,True,linuxaudio_a2jmidid.git,linuxaudio/a2jmidid.git,https://github.com/linuxaudio/a2jmidid.git -fc44891618fe3cb0fb7b86297e1ad3c831542632,Kenichi Ishigaki,ishigaki@cpan.org,2014-12-23 15:13:58+09:00,Kenichi Ishigaki,ishigaki@cpan.org,2014-12-23 06:13:58+00:00,False,cpan,cpan,* master,True,charsbar_App-CPANTS-Lint.git,charsbar/App-CPANTS-Lint.git,https://github.com/charsbar/App-CPANTS-Lint.git -e949f9a01e54e5e70e2e06fb94d36985d709bb22,Simon Cruanes,simon.cruanes.2007@m4x.org,2022-01-21 09:58:37-05:00,Simon Cruanes,simon.cruanes.2007@m4x.org,2022-01-21 14:58:37+00:00,False,m4x,m4x,* master,True,c-cube_gen.git,c-cube/gen.git,https://github.com/c-cube/gen.git +6a2c2ff2e1f262b8605fcb2a32da4cec1f13a0fe,martin,xorg62@gmail.com,2008-06-09 01:25:56+02:00,martin,xorg62@gmail.com,2008-06-08 23:25:56+00:00,False,gmail,gmail,* debian,True,anarcat_tty-clock,anarcat/tty-clock,https://github.com/anarcat/tty-clock +04deaa94e2d86dfb13a77da5ce5b53e63fc8afa0,Jakob Gruber,jakob.gruber@gmail.com,2012-02-06 17:57:06+01:00,Jakob Gruber,jakob.gruber@gmail.com,2012-02-12 23:45:41+00:00,False,gmail,gmail,* master,True,picmi.git,picmi.git,https://anongit.kde.org/picmi.git +cf6604ca86246915efbaa4fdf4aa1acc6df682b7,Sean Gillies,sean.gillies@gmail.com,2014-12-26 13:03:17-08:00,Sean Gillies,sean.gillies@gmail.com,2014-12-26 21:03:17+00:00,False,gmail,gmail,* master,True,mapbox_cligj.git,mapbox/cligj.git,https://github.com/mapbox/cligj.git +afa1ce572f6f3b3cf24f4aed62ec2cc04e3be560,Daniele Varrazzo,piro@develer.com,2009-12-01 00:54:51+00:00,Daniele Varrazzo,piro@develer.com,2009-12-01 00:54:51+00:00,False,develer,develer,* master,True,dvarrazzo_py-setproctitle,dvarrazzo/py-setproctitle,https://github.com/dvarrazzo/py-setproctitle +71eca9837f82857fe4f52598901923df05340cb1,Trent Mick,trentm@gmail.com,2010-07-27 21:34:54-07:00,Trent Mick,trentm@gmail.com,2010-07-28 04:34:54+00:00,False,gmail,gmail,* master,True,ActiveState_appdirs.git,ActiveState/appdirs.git,https://github.com/ActiveState/appdirs.git +1a5ec02998932c8016b9e031594a15e9fcaf6f33,Marcin Owsiany,porridge@debian.org,2005-07-28 12:43:46+00:00,Marcin Owsiany,porridge@debian.org,2005-07-28 12:43:46+00:00,False,debian,debian,* master,True,a-detiste_cruft,a-detiste/cruft,https://github.com/a-detiste/cruft +69f97b24d60e416021458d9530bd271991a44ed0,Frank B. Brokken,f.b.brokken@rug.nl,2009-03-07 13:53:44+00:00,Frank B. Brokken,f.b.brokken@rug.nl,2009-03-07 13:53:44+00:00,False,rug,rug,* master,True,fbb-git_gpg-remailer,fbb-git/gpg-remailer,https://gitlab.com/fbb-git/gpg-remailer +ebd4329f7ba6edff76425a63e037c19a8838496e,Berke Durak,berke@lunatic.(none),2009-01-16 22:06:43+01:00,Berke Durak,berke@lunatic.(none),2009-01-16 21:06:43+00:00,False,lunatic,lunatic,* master,True,berke_wipe,berke/wipe,https://github.com/berke/wipe +4c6fb3873e0254b4aa7ec62debcf2cf6c2ccfea4,darkrose,lisa@ltmnet.com,2012-04-22 19:58:40+10:00,darkrose,lisa@ltmnet.com,2012-04-22 09:58:40+00:00,False,ltmnet,ltmnet,* master,True,TicklishHoneyBee_nodau,TicklishHoneyBee/nodau,https://github.com/TicklishHoneyBee/nodau +bfa33be44a880ceea9669b7a40ebe93f5f6ba29d,Norbert Preining,norbert@preining.info,2018-10-30 10:48:31+09:00,Norbert Preining,norbert@preining.info,2018-10-30 01:48:31+00:00,False,preining,preining,* master,True,debian-calibre_unrardll,debian-calibre/unrardll,https://github.com/debian-calibre/unrardll +548fb76622cacbdf4416f07b718f1bdd93924a9f,Dmitri Pal,dpal@redhat.com,2009-04-06 09:30:01-04:00,Stephen Gallagher,sgallagh@redhat.com,2009-04-06 19:59:21+00:00,False,redhat,redhat,* master,True,SSSD_ding-libs,SSSD/ding-libs,https://github.com/SSSD/ding-libs +ce08aeb69cb20095f28ec155c750cca1fb5f587c,Prabhu Ramachandran,prabhu@aero.iitb.ac.in,2013-02-21 16:05:19+05:30,Prabhu Ramachandran,prabhu@aero.iitb.ac.in,2013-02-21 10:35:19+00:00,False,aero,aero,* master,True,pypr_pysph,pypr/pysph,https://github.com/pypr/pysph +aa252e01e978bae69ae1f19b978adbb38c63dee9,Philip Rinn,rinni@gmx.net,2013-07-09 17:41:56+02:00,Philip Rinn,rinni@gmx.net,2013-07-09 15:41:56+00:00,False,gmx,gmx,* master,True,innir_gtranscribe,innir/gtranscribe,https://github.com/innir/gtranscribe +7e6fff48cd04f5dde2db9f91fc967bb2162db06a,Robert Krause,Ruport@web.de,2013-09-21 07:41:24+02:00,Robert Krause,Ruport@web.de,2013-09-21 05:41:24+00:00,False,web,web,* master,True,Rup0rt_netmate,Rup0rt/netmate,https://github.com/Rup0rt/netmate +74472751951142fa170d35fbc9666d47a6b6d890,spamsch,unknown,2009-05-04 14:36:05+00:00,spamsch,unknown,2009-05-04 14:36:05+00:00,False,unknown,unknown,* master,True,andrewleech_PyWebDAV3.git,andrewleech/PyWebDAV3.git,https://github.com/andrewleech/PyWebDAV3.git +ce54a08371e5ab3b165781c9e2c0cad5a9bdd037,Mike Bayer,mike_mp@zzzcomputing.com,2013-12-29 20:18:18-05:00,Mike Bayer,mike_mp@zzzcomputing.com,2013-12-30 01:18:18+00:00,False,zzzcomputing,zzzcomputing,* main,True,sqlalchemyorg_sphinx-paramlinks,sqlalchemyorg/sphinx-paramlinks,https://github.com/sqlalchemyorg/sphinx-paramlinks +b1d0ce2848a79664374f802954b1e4390b11da6d,pancake,pancake@dazo,2007-04-20 18:20:22+02:00,pancake,pancake@dazo,2007-04-20 16:20:22+00:00,False,dazo,dazo,* master,True,pali_0xFFFF,pali/0xFFFF,https://github.com/pali/0xFFFF +c9ef8d55c1d57e504c58acfd589f4b7b7259d7ea,Christian Ledermann,christian.ledermann@gmail.com,2012-06-21 22:24:58+03:00,Christian Ledermann,christian.ledermann@gmail.com,2012-06-21 19:24:58+00:00,False,gmail,gmail,* develop,True,cleder_fastkml,cleder/fastkml,https://github.com/cleder/fastkml +d8cf97c342defa98e0e581bf626f9825aba4302f,gotcha,gotcha@a3887c4a-a2f1-0310-b564-db751d5de38d,2007-06-04 21:54:24+00:00,gotcha,gotcha@a3887c4a-a2f1-0310-b564-db751d5de38d,2007-06-04 21:54:24+00:00,False,a3887c4a-a2f1-0310-b564-db751d5de38d,a3887c4a-a2f1-0310-b564-db751d5de38d,* master,True,gotcha_ipdb,gotcha/ipdb,https://github.com/gotcha/ipdb +3f94f6ea5500f36e152e27cdb71eb2a8270b3f6b,kmx,kmx@cpan.org,2015-02-04 08:44:22+01:00,kmx,kmx@cpan.org,2015-02-04 07:44:22+00:00,False,cpan,cpan,* master,True,kmx_perl-Crypt-OpenSSL-Bignum.git,kmx/perl-Crypt-OpenSSL-Bignum.git,https://github.com/kmx/perl-Crypt-OpenSSL-Bignum.git +b831bc65fcc368b295a889a6c96b37bdf7744448,Pablo Hoffman,pablo@pablohoffman.com,2011-04-16 19:51:39-03:00,Pablo Hoffman,pablo@pablohoffman.com,2011-04-16 22:51:39+00:00,False,pablohoffman,pablohoffman,* master,True,scrapy_w3lib.git,scrapy/w3lib.git,https://github.com/scrapy/w3lib.git +090a9cfe7175ebc17bbcbab9e6cdbb904eaa7165,Matt Kimball,mkimball@xmission.com,1998-10-17 00:00:00+00:00,Travis Cross,tc@traviscross.com,2013-02-03 20:45:27+00:00,False,xmission,traviscross,* master,True,traviscross_mtr,traviscross/mtr,https://github.com/traviscross/mtr +77c98848a144b16aa8455b8935ceadfa52182fe3,Eran Hammer,eran@hueniverse.com,2014-10-12 23:26:32-07:00,Eran Hammer,eran@hueniverse.com,2014-10-13 06:26:32+00:00,False,hueniverse,hueniverse,* master,True,hapijs_code.git,hapijs/code.git,https://github.com/hapijs/code.git +c4f49da3fc2f45b05a9c60c6891203635130d478,Luís Pereira,luis.artur.pereira@gmail.com,2013-08-12 11:01:14-07:00,Luís Pereira,luis.artur.pereira@gmail.com,2013-08-12 18:01:14+00:00,False,gmail,gmail,* master,True,lxqt_libqtxdg.git,lxqt/libqtxdg.git,https://github.com/lxqt/libqtxdg.git +05bff2bd41a7d1930dbfc4eb87a19e1461f5b467,Jason Pellerin,jpellerin@gmail.com,2006-12-19 03:35:52+00:00,Jason Pellerin,jpellerin@gmail.com,2006-12-19 03:35:52+00:00,False,gmail,gmail,* master,True,nose-devs_nose.git,nose-devs/nose.git,https://github.com/nose-devs/nose.git +0f94697a79914f595b15493bd5b6b4be8006237a,Steven Loria,sloria1@gmail.com,2014-04-25 19:34:27-04:00,Steven Loria,sloria1@gmail.com,2014-04-25 23:34:27+00:00,False,gmail,gmail,* dev,True,marshmallow-code_flask-marshmallow.git,marshmallow-code/flask-marshmallow.git,https://github.com/marshmallow-code/flask-marshmallow.git +2fe47a3c9f786532e0b9a9dd5a354d079d417103,Petter Reinholdtsen,pere@hungry.com,2009-09-10 08:28:49+00:00,Petter Reinholdtsen,pere@hungry.com,2009-09-10 08:28:49+00:00,False,hungry,hungry,* main,True,slicer69_sysvinit,slicer69/sysvinit,https://github.com/slicer69/sysvinit +266f9d7e3790db6656e88b1a10655121b5c5ffae,Andrew Svetlov,andrew.svetlov@gmail.com,2014-12-21 14:17:21+02:00,Andrew Svetlov,andrew.svetlov@gmail.com,2014-12-21 12:17:21+00:00,False,gmail,gmail,* master,True,aio-libs_aiohttp-jinja2,aio-libs/aiohttp-jinja2,https://github.com/aio-libs/aiohttp-jinja2 +9e3bab47f01290d547f5babe57adac464089a231,Eric Gregory,eric@yorba.org,2012-04-23 18:54:26-07:00,Eric Gregory,eric@yorba.org,2012-04-24 01:54:26+00:00,False,yorba,yorba,* main,True,GNOME_geary.git,GNOME/geary.git,https://gitlab.gnome.org/GNOME/geary.git +c980ef2c31f015780e16e62f3f6e035b6cc89754,nedko,nedko@0750566f-71e2-4c01-8e24-c67b3e4acec4,2007-08-30 17:58:09+00:00,nedko,nedko@0750566f-71e2-4c01-8e24-c67b3e4acec4,2007-08-30 17:58:09+00:00,False,0750566f-71e2-4c01-8e24-c67b3e4acec4,0750566f-71e2-4c01-8e24-c67b3e4acec4,* master,True,linuxaudio_a2jmidid.git,linuxaudio/a2jmidid.git,https://github.com/linuxaudio/a2jmidid.git +1e6d141ea608640ccb9b3fcbe8cdbdf780e4d567,Kenichi Ishigaki,ishigaki@cpan.org,2014-06-29 03:09:06+09:00,Kenichi Ishigaki,ishigaki@cpan.org,2014-06-28 18:09:06+00:00,False,cpan,cpan,* master,True,charsbar_App-CPANTS-Lint.git,charsbar/App-CPANTS-Lint.git,https://github.com/charsbar/App-CPANTS-Lint.git +0d701ec9b72563682f1607787ec4bb87db27d866,Simon Cruanes,simon.cruanes.2007@m4x.org,2014-02-10 21:40:29+01:00,Simon Cruanes,simon.cruanes.2007@m4x.org,2014-02-10 20:40:29+00:00,False,m4x,m4x,* master,True,c-cube_gen.git,c-cube/gen.git,https://github.com/c-cube/gen.git c6cb4e89c85a1a3916ad6029acf233c953fad75b,Paul Miller,paul@voltar.org,2008-08-07 09:42:42-04:00,Paul Miller,paul@voltar.org,2008-08-07 13:42:42+00:00,False,voltar,voltar,* master,True,jettero_statistics--basic,jettero/statistics--basic,https://github.com/jettero/statistics--basic -e473a88700e5bef6f5e277f92d7a42ea41f1dbc4,Benoit Chesneau,bchesneau@gmail.com,2012-04-29 23:52:45-07:00,Benoit Chesneau,bchesneau@gmail.com,2012-04-30 06:52:45+00:00,True,gmail,gmail,* master,True,benoitc_socketpool,benoitc/socketpool,https://github.com/benoitc/socketpool -1b43d0c06bee663db306522ba7d7544a4b079d17,Vincent Danjean,Vincent.Danjean@ens-lyon.org,2012-06-20 13:19:50+02:00,Vincent Danjean,Vincent.Danjean@ens-lyon.org,2012-06-20 11:19:50+00:00,False,ens-lyon,ens-lyon,* master,True,OCL-DEV_ocl-icd.git,OCL-DEV/ocl-icd.git,https://github.com/OCL-DEV/ocl-icd.git -38e5504bd3dd405b00c9e50a2df84366bccbe05b,Scott Walters,scott@slowass.net,2020-01-20 10:53:44-05:00,Scott Walters,scott@slowass.net,2020-01-20 15:53:44+00:00,False,slowass,slowass,* master,True,scrottie_SOAP-WSDL,scrottie/SOAP-WSDL,https://github.com/scrottie/SOAP-WSDL +e06a72226aa9dd8d0106446817675d6db32eebd8,Tarek Ziadé,tarek@mozilla.com,2012-01-06 22:41:46+01:00,Tarek Ziadé,tarek@mozilla.com,2012-01-06 21:41:46+00:00,False,mozilla,mozilla,* master,True,benoitc_socketpool,benoitc/socketpool,https://github.com/benoitc/socketpool +6fd30d7dcc52c5c11b2d26f29c2d47437e2f0049,videau,videau@54081c91-f12c-4b0d-b4b4-172e8089a626,2012-05-25 13:55:42+00:00,videau,videau@54081c91-f12c-4b0d-b4b4-172e8089a626,2012-05-25 13:55:42+00:00,False,54081c91-f12c-4b0d-b4b4-172e8089a626,54081c91-f12c-4b0d-b4b4-172e8089a626,* master,True,OCL-DEV_ocl-icd.git,OCL-DEV/ocl-icd.git,https://github.com/OCL-DEV/ocl-icd.git +f528d729f6ce7f336325668ccc55e4db18f167e5,Martin Kutter,kutterma@users.sourceforge.net,2004-07-09 01:18:07-08:00,Michael G. Schwern,schwern@pobox.com,2009-12-13 03:47:36+00:00,False,users,pobox,* master,True,scrottie_SOAP-WSDL,scrottie/SOAP-WSDL,https://github.com/scrottie/SOAP-WSDL dcab81d0997bc5f283442ef9108ccb794296f0bb,Nick Johnson,arachnid@notdot.net,2016-08-09 09:19:03+01:00,Nick Johnson,arachnid@notdot.net,2016-08-09 08:19:03+00:00,False,notdot,notdot,* master,True,Arachnid_pyqrencode.git,Arachnid/pyqrencode.git,https://github.com/Arachnid/pyqrencode.git -1310dbbc32ce41adac4840e4e399da0f77836041,Jad Chaar,jadchaar@users.noreply.github.com,2021-04-18 13:29:43-04:00,GitHub,noreply@github.com,2021-04-18 17:29:43+00:00,False,users,github,* master,True,crsmithdev_arrow.git,crsmithdev/arrow.git,https://github.com/crsmithdev/arrow.git -bcfd94ede3e10bf383741bab309724e680f0e9b0,Andrey Rakhmatullin,wrar@wrar.name,2023-04-11 20:58:36+04:00,GitHub,noreply@github.com,2023-04-11 16:58:36+00:00,True,wrar,github,* master,True,scrapy_parsel,scrapy/parsel,https://github.com/scrapy/parsel -ddbcd95a3c3e83b7a10f0e4bf67896574a847ca4,Kazuho Oku,kazuhooku@gmail.com,2013-04-17 17:56:51+09:00,Kazuho Oku,kazuhooku@gmail.com,2013-04-17 08:56:51+00:00,False,gmail,gmail,* master,True,kazuho_p5-Net-DNS-Lite.git,kazuho/p5-Net-DNS-Lite.git,https://github.com/kazuho/p5-Net-DNS-Lite.git -95d2a0ecf315a0c77dd67df021c4f20e7f84881f,Petr Vanek,pvanek@lister.local,2013-05-15 21:30:40+02:00,Petr Vanek,pvanek@lister.local,2013-05-15 19:30:40+00:00,False,lister,lister,* master,True,pvanek_qlipper,pvanek/qlipper,https://github.com/pvanek/qlipper -2b5a5208008594976d4627bcf01355fc08837592,Christoph Gohlke,cgohlke@cgohlke.com,2024-02-12 19:03:45+00:00,Christoph Gohlke,cgohlke@cgohlke.com,2024-02-12 19:03:45+00:00,False,cgohlke,cgohlke,* master,True,cgohlke_tifffile.git,cgohlke/tifffile.git,https://github.com/cgohlke/tifffile.git -89e5e2f6332af2a8915f428967cd244a9a30505a,Lennart Poettering,lennart@poettering.net,2006-05-19 06:16:05-04:00,Jonathon Reinhart,Jonathon.Reinhart@gmail.com,2019-09-10 12:18:52+00:00,False,poettering,gmail,* master,True,JonathonReinhart_syrep,JonathonReinhart/syrep,https://github.com/JonathonReinhart/syrep -9055d518ec9ce5329cc82e8af9e8034bc6ff866b,Ricardo Mendes,rokusu@gmail.com,2016-11-08 11:30:59+00:00,GitHub,noreply@github.com,2016-11-08 11:30:59+00:00,True,gmail,github,* master,True,defunkt_mustache,defunkt/mustache,https://github.com/defunkt/mustache -32d607b84ce3e22dd3e66791ec924553ea795bd6,Sviatoslav Sydorenko,wk@sydorenko.org.ua,2024-02-02 03:54:40+01:00,Sviatoslav Sydorenko,wk@sydorenko.org.ua,2024-02-02 02:54:40+00:00,False,sydorenko,sydorenko,* master,True,aio-libs_multidict.git,aio-libs/multidict.git,https://github.com/aio-libs/multidict.git -34673bf6d4bdf9451722842638a16c221d2c4dc1,Ben Darnell,ben@bendarnell.com,2023-07-07 21:17:46-04:00,GitHub,noreply@github.com,2023-07-08 01:17:46+00:00,True,bendarnell,github,* master,True,tornadoweb_tornado,tornadoweb/tornado,https://github.com/tornadoweb/tornado -2d6e1772506f10e7bfd7b58af24c5d1cf9e2d683,Johan Walles,johan.walles@gmail.com,2023-11-04 09:59:05+01:00,Johan Walles,johan.walles@gmail.com,2023-11-04 08:59:05+00:00,False,gmail,gmail,* python,True,walles_px,walles/px,https://github.com/walles/px -2d4c5e5cdf51d952b242d6f87fc25401a11ab86e,tell-k,ffk2005@gmail.com,2018-06-03 16:59:44+09:00,tell-k,ffk2005@gmail.com,2018-06-03 07:59:44+00:00,False,gmail,gmail,* master,True,tell-k_vim-autopep8.git,tell-k/vim-autopep8.git,https://github.com/tell-k/vim-autopep8.git -1893d56e9119a3db73c5d9237f804a99bfea6d2a,Arkadiusz Bulski,arek.bulski@gmail.com,2020-01-30 20:58:24+01:00,Arkadiusz Bulski,arek.bulski@gmail.com,2020-01-30 19:58:24+00:00,False,gmail,gmail,* master,True,construct_construct.git,construct/construct.git,https://github.com/construct/construct.git -4277ad8483357ccfa95264f4084fff9cf7887097,Vigneshwaran Raveendran,vigneshwaran2007@gmail.com,2022-09-15 10:40:08+08:00,GitHub,noreply@github.com,2022-09-15 02:40:08+00:00,True,gmail,github,* master,True,vigneshwaranr_bd.git,vigneshwaranr/bd.git,https://github.com/vigneshwaranr/bd.git -8e25ec55a1e3124409f707ccf3792d2f85d2ae8b,Erik Huelsmann,ehuels@gmail.com,2019-07-08 22:40:38+02:00,Erik Huelsmann,ehuels@gmail.com,2019-07-08 20:40:38+00:00,False,gmail,gmail,* master,True,ledgersmb_PGObject-Util-DBAdmin.git,ledgersmb/PGObject-Util-DBAdmin.git,https://github.com/ledgersmb/PGObject-Util-DBAdmin.git -13c9a555ece2697cfec95d321cf2719f9c017621,Michael Schroeder,mls@suse.de,2020-01-21 14:51:10+01:00,GitHub,noreply@github.com,2020-01-21 13:51:10+00:00,True,suse,github,* master,True,openSUSE_libsolv,openSUSE/libsolv,https://github.com/openSUSE/libsolv -e7ec1370b4c4283c2b6876977a0462a7634f7935,John Mair,jrmair@gmail.com,2021-11-03 04:17:29+01:00,GitHub,noreply@github.com,2021-11-03 03:17:29+00:00,True,gmail,github,* master,True,banister_method_source,banister/method/source,https://github.com/banister/method_source -94ef45d4a8d2b0d050449219f279d58ed5617bff,Dennis Kaarsemaker,dennis@kaarsemaker.net,2023-01-27 21:38:06+01:00,Dennis Kaarsemaker,dennis@kaarsemaker.net,2023-01-27 20:38:06+00:00,False,kaarsemaker,kaarsemaker,* main,True,seveas_python-networkmanager,seveas/python-networkmanager,https://github.com/seveas/python-networkmanager -d2f29d0b97d29aff9082fb7f45333420b27ce2f4,ChenYuan,github@qiushi.ac.cn,2023-12-01 16:05:45+08:00,GitHub,noreply@github.com,2023-12-01 08:05:45+00:00,False,qiushi,github,* master,True,ICRAR_ijson.git,ICRAR/ijson.git,https://github.com/ICRAR/ijson.git -6bad1860740be2a6ab87414773fae8691a86d7d2,Christopher Gallo,cgallo@us.ibm.com,2024-03-05 12:43:06-06:00,Christopher Gallo,cgallo@us.ibm.com,2024-03-05 18:43:06+00:00,True,us,us,* master,True,softlayer_softlayer-python,softlayer/softlayer-python,https://github.com/softlayer/softlayer-python -3b61d5df252b9617b45c9e9e36a4619aa51d7262,Syohei YOSHIDA,syohex@gmail.com,2015-10-14 13:21:59+09:00,Syohei YOSHIDA,syohex@gmail.com,2015-10-14 04:21:59+00:00,True,gmail,gmail,* master,True,tkf_emacs-jedi.git,tkf/emacs-jedi.git,https://github.com/tkf/emacs-jedi.git -0f367e23a0578d606155963f80763eac0aa8a604,Erik Montnemery,erik@montnemery.com,2024-02-15 11:32:11+01:00,GitHub,noreply@github.com,2024-02-15 10:32:11+00:00,False,montnemery,github,* master,True,home-assistant-libs_pychromecast.git,home-assistant-libs/pychromecast.git,https://github.com/home-assistant-libs/pychromecast.git +aadf7f8e4d279adec3acf0eab68361c0b2e36845,Chris Smith,chris@cir.ca,2012-11-19 16:32:56-08:00,Chris Smith,chris@cir.ca,2012-11-20 00:32:56+00:00,False,cir,cir,* master,True,crsmithdev_arrow.git,crsmithdev/arrow.git,https://github.com/crsmithdev/arrow.git +19852e3d2b4f5fb715fac09d7fba98e8377b7c29,Elias Dorneles,eliasdorneles@gmail.com,2015-07-26 07:27:17-03:00,Elias Dorneles,eliasdorneles@gmail.com,2015-07-26 10:27:17+00:00,False,gmail,gmail,* master,True,scrapy_parsel,scrapy/parsel,https://github.com/scrapy/parsel +abfb5928d9a80c4c147e072d6cabadbc1a129393,Kazuho Oku,kazuhooku@gmail.com,2010-11-19 13:41:23+09:00,Kazuho Oku,kazuhooku@gmail.com,2010-11-19 04:41:23+00:00,False,gmail,gmail,* master,True,kazuho_p5-Net-DNS-Lite.git,kazuho/p5-Net-DNS-Lite.git,https://github.com/kazuho/p5-Net-DNS-Lite.git +6144ea6a394a56f0d919d1897a47c7d965bc535c,Petr Vanek,petr@scribus.info,2011-12-22 14:51:08+01:00,Petr Vanek,petr@scribus.info,2011-12-22 13:51:08+00:00,False,scribus,scribus,* master,True,pvanek_qlipper,pvanek/qlipper,https://github.com/pvanek/qlipper +e7fe8393154cbb161410a159174e8d18f13126e3,Christoph Gohlke,cgohlke@uci.edu,2018-10-19 23:29:25-07:00,Christoph Gohlke,cgohlke@uci.edu,2018-10-20 06:29:25+00:00,False,uci,uci,* master,True,cgohlke_tifffile.git,cgohlke/tifffile.git,https://github.com/cgohlke/tifffile.git +a575a41be7fd49ff05a17cf8934c808b0e2acf17,Lennart Poettering,lennart@poettering.net,2003-09-07 19:21:14-04:00,Jonathon Reinhart,Jonathon.Reinhart@gmail.com,2019-09-10 12:15:28+00:00,False,poettering,gmail,* master,True,JonathonReinhart_syrep,JonathonReinhart/syrep,https://github.com/JonathonReinhart/syrep +6ee6bcf21d3815545300b484c927d13a067fc7cc,Chris Wanstrath,chris@ozmm.org,2009-09-24 00:32:12-07:00,Chris Wanstrath,chris@ozmm.org,2009-09-24 07:32:12+00:00,False,ozmm,ozmm,* master,True,defunkt_mustache,defunkt/mustache,https://github.com/defunkt/mustache +86a073793213b80df48502f7385c40888330b36f,Andrew Svetlov,andrew.svetlov@gmail.com,2016-02-06 17:52:32+03:00,Andrew Svetlov,andrew.svetlov@gmail.com,2016-02-06 14:52:32+00:00,False,gmail,gmail,* master,True,aio-libs_multidict.git,aio-libs/multidict.git,https://github.com/aio-libs/multidict.git +11de50a83acb07ab3a4439b38f0153444a124381,Facebook,github@lists.facebook.com,2009-09-08 22:01:24-07:00,Facebook,github@lists.facebook.com,2009-09-09 05:01:24+00:00,False,lists,lists,* master,True,tornadoweb_tornado,tornadoweb/tornado,https://github.com/tornadoweb/tornado +578d3b0a5df3a274b09bea4ecae25ff9fb2defdd,Johan Walles,walles@spotify.com,2016-02-02 08:06:57+01:00,Johan Walles,walles@spotify.com,2016-02-02 07:06:57+00:00,False,spotify,spotify,* python,True,walles_px,walles/px,https://github.com/walles/px +0eb2b184abf841e0d24ed7ed0658a04b8f251979,tell-k,ffk2005@gmail.com,2013-06-07 23:23:12+09:00,tell-k,ffk2005@gmail.com,2013-06-07 14:23:12+00:00,False,gmail,gmail,* master,True,tell-k_vim-autopep8.git,tell-k/vim-autopep8.git,https://github.com/tell-k/vim-autopep8.git +781070c5036bc67da9cd9451a85907b98673a2cc,Corbin Simpson,MostAwesomeDude@gmail.com,2010-12-24 23:08:13-08:00,Corbin Simpson,MostAwesomeDude@gmail.com,2010-12-25 07:08:13+00:00,False,gmail,gmail,* master,True,construct_construct.git,construct/construct.git,https://github.com/construct/construct.git +427900e853ec828f155631f627ad7f9d1007f93b,Vigneshwaran Raveendran,vigneshwaran2007@gmail.com,2012-04-18 11:49:38+05:30,Vigneshwaran Raveendran,vigneshwaran2007@gmail.com,2012-04-18 06:19:38+00:00,False,gmail,gmail,* master,True,vigneshwaranr_bd.git,vigneshwaranr/bd.git,https://github.com/vigneshwaranr/bd.git +e00b2bcbf4e2e69bed8798e0fa2116e01fb424d9,Chris Travers,chris@efficito.com,2014-09-09 08:28:34-07:00,Chris Travers,chris@efficito.com,2014-09-09 15:28:34+00:00,False,efficito,efficito,* master,True,ledgersmb_PGObject-Util-DBAdmin.git,ledgersmb/PGObject-Util-DBAdmin.git,https://github.com/ledgersmb/PGObject-Util-DBAdmin.git +8f8a9ed5192a6737d63364029cb05d91f1d0e399,Klaus Kaempf,kkaempf@suse.de,2007-10-02 12:40:07+00:00,Klaus Kaempf,kkaempf@suse.de,2007-10-02 12:40:07+00:00,False,suse,suse,* master,True,openSUSE_libsolv,openSUSE/libsolv,https://github.com/openSUSE/libsolv +2895bb245fd216be96da6e4d6b9e361248934450,John Mair,jrmair@gmail.com,2010-12-17 02:58:01+13:00,John Mair,jrmair@gmail.com,2010-12-16 13:58:01+00:00,False,gmail,gmail,* master,True,banister_method_source,banister/method/source,https://github.com/banister/method_source +c04994ba91225245cc7b21400c1daf70933c2655,Dennis Kaarsemaker,dennis@kaarsemaker.net,2011-11-04 01:42:32+01:00,Dennis Kaarsemaker,dennis@kaarsemaker.net,2011-11-04 00:46:28+00:00,False,kaarsemaker,kaarsemaker,* main,True,seveas_python-networkmanager,seveas/python-networkmanager,https://github.com/seveas/python-networkmanager +89196ca6cbe3bfa7f6117b5b5eb825266ae1a701,Ivan Sagalaev,isagalaev@yandex-team.ru,2010-08-26 13:21:54+04:00,Ivan Sagalaev,isagalaev@yandex-team.ru,2010-08-26 09:21:54+00:00,False,yandex-team,yandex-team,* master,True,ICRAR_ijson.git,ICRAR/ijson.git,https://github.com/ICRAR/ijson.git +9c84bea5e798fb2f2fa1cab186e385814a9264a1,SoftLayer,sldn@softlayer.com,2010-04-20 18:09:25-05:00,SoftLayer,sldn@softlayer.com,2010-04-20 23:09:25+00:00,False,softlayer,softlayer,* master,True,softlayer_softlayer-python,softlayer/softlayer-python,https://github.com/softlayer/softlayer-python +6991ea3371f369a23291ae275c1832ce74ef9651,Takafumi Arakaki,aka.tkf@gmail.com,2012-10-16 22:22:24+02:00,Takafumi Arakaki,aka.tkf@gmail.com,2012-10-16 20:22:57+00:00,False,gmail,gmail,* master,True,tkf_emacs-jedi.git,tkf/emacs-jedi.git,https://github.com/tkf/emacs-jedi.git +355738a642294741bf5d0da7128d8fad9b9e97a9,Paulus Schoutsen,Paulus@PaulusSchoutsen.nl,2013-10-02 00:59:56-07:00,Paulus Schoutsen,Paulus@PaulusSchoutsen.nl,2013-10-02 07:59:56+00:00,False,PaulusSchoutsen,PaulusSchoutsen,* master,True,home-assistant-libs_pychromecast.git,home-assistant-libs/pychromecast.git,https://github.com/home-assistant-libs/pychromecast.git b65b09a0ee06950972233e8ea86ef87c4e63b3c9,Shun-ichi Goto,gotoh@taiyo.co.jp,2020-09-01 14:17:56+09:00,Shun-ichi Goto,gotoh@taiyo.co.jp,2020-09-01 05:17:56+00:00,False,taiyo,taiyo,* master,True,gotoh_ssh-connect,gotoh/ssh-connect,https://github.com/gotoh/ssh-connect -64d10a2c50d43d8686ffb3ef3e0e246ecb4265c4,Thomas Kriechbaumer,Kriechi@users.noreply.github.com,2021-06-06 17:03:16+02:00,GitHub,noreply@github.com,2021-06-06 15:03:16+00:00,True,users,github,* master,True,python-hyper_hyper-h2,python-hyper/hyper-h2,https://github.com/python-hyper/hyper-h2 -b932e60dc33601f71ba4eda2d8ab0a276a3706ed,Jonathan Marten,jjm@keelhaul.me.uk,2023-03-03 14:29:07+00:00,David Edmundson,kde@davidedmundson.co.uk,2023-03-03 14:29:07+00:00,False,keelhaul,davidedmundson,* master,True,plasma_kscreenlocker.git,plasma/kscreenlocker.git,https://invent.kde.org/plasma/kscreenlocker.git -6725c0d0cdd1a7a6a6829dc687b5b1a158febc9a,Alexey Chebotar,alexey.bearded@gmail.com,2016-01-22 18:10:47+02:00,Alexey Chebotar,alexey.bearded@gmail.com,2016-01-22 16:10:47+00:00,True,gmail,gmail,* master,True,bearded_ruby-ldap,bearded/ruby-ldap,https://github.com/bearded/ruby-ldap -2bef8d063ec7d88a8de6fd9f0513ea42ac0fa21f,Jed Wing,jed.wing@gmail.com,2009-07-02 23:34:54-07:00,Jed Wing,jed.wing@gmail.com,2009-07-03 06:34:54+00:00,False,gmail,gmail,* master,True,jedwing_CHMLib.git,jedwing/CHMLib.git,https://github.com/jedwing/CHMLib.git -7a0faaac8e68b51a1fb5d5448d1c1380e0737de1,Jeff Forcier,jeff@bitprophet.org,2022-03-25 21:50:46-04:00,Jeff Forcier,jeff@bitprophet.org,2022-03-26 01:50:46+00:00,False,bitprophet,bitprophet,* main,True,fabric_fabric.git,fabric/fabric.git,https://github.com/libyal/dtfabric.git -87acd1303fb82ed189d3717aa5715a41117f193b,Joachim Metz,joachim.metz@gmail.com,2020-06-22 09:11:24+02:00,GitHub,noreply@github.com,2020-06-22 07:11:24+00:00,False,gmail,github,* main,True,log2timeline_dfwinreg.git,log2timeline/dfwinreg.git,https://github.com/log2timeline/dfwinreg.git -6cb7bff779d08c688980d294eadb8768a840eefa,Lubomir Host,lubomir.host@gmail.com,2013-08-19 20:48:56+02:00,Lubomir Host,lubomir.host@gmail.com,2013-08-19 18:48:56+00:00,False,gmail,gmail,* master,True,lhost_sendxmpp.git,lhost/sendxmpp.git,https://github.com/lhost/sendxmpp.git -8fd9f3e185676e070aa267fac708cc5376e0cef8,Leah Neukirchen,leah@vuxu.org,2018-09-17 13:19:28+02:00,Leah Neukirchen,leah@vuxu.org,2018-09-17 11:19:28+00:00,False,vuxu,vuxu,* master,True,chneukirchen_extrace,chneukirchen/extrace,https://github.com/chneukirchen/extrace -c8ae75804a8eb93bbf773edcfa66c9091000798c,Francois Marier,francois@fmarier.org,2023-09-17 15:22:21-07:00,Francois Marier,francois@fmarier.org,2023-09-18 02:53:09+00:00,False,fmarier,fmarier,* master,True,email-reminder,email-reminder,https://git.launchpad.net/email-reminder -29458f57d314834d0d9bfbf27df284a22d890e0c,Joachim Metz,joachim.metz@gmail.com,2016-01-09 14:55:12+01:00,Joachim Metz,joachim.metz@gmail.com,2016-03-27 14:46:52+00:00,False,gmail,gmail,* main,True,libyal_libsmraw.git,libyal/libsmraw.git,https://github.com/libyal/libsmraw.git -02861fc7a932387eced1307d36e71223aba82ef4,Eugene Trounev,eugene.trounev@gmail.com,2008-11-17 15:26:31+00:00,Eugene Trounev,eugene.trounev@gmail.com,2008-11-17 15:26:31+00:00,False,gmail,gmail,* master,True,klines.git,klines.git,https://anongit.kde.org/klines.git -79632e20e03dc87c8ac01ebf0ca7eb83b3b99e31,rncbc,rncbc@rncbc.org,2022-08-12 12:04:53+01:00,rncbc,rncbc@rncbc.org,2022-08-12 11:04:53+00:00,False,rncbc,rncbc,* main,True,rncbc_qmidinet.git,rncbc/qmidinet.git,https://github.com/rncbc/qmidinet.git -90504178d0268d99816e91917afe70dfd2689cad,Alessio Bogon,778703+youtux@users.noreply.github.com,2022-12-01 20:22:45+01:00,GitHub,noreply@github.com,2022-12-01 19:22:45+00:00,True,users,github,* master,True,pytest-dev_pytest-bdd.git,pytest-dev/pytest-bdd.git,https://github.com/pytest-dev/pytest-bdd.git -ed42272b563b1ddfb6fbe5bb80b20e617834b99b,Thomas Gläßle,t_glaessle@gmx.de,2022-04-17 16:17:46+02:00,Thomas Gläßle,t_glaessle@gmx.de,2022-04-17 14:39:33+00:00,False,gmx,gmx,* master,True,coldfix_udiskie.git,coldfix/udiskie.git,https://github.com/coldfix/udiskie.git -01641bd80924731e6bad84025ed9a22dc480ef13,Rainer Gerhards,rgerhards@adiscon.com,2023-08-11 10:12:13+02:00,GitHub,noreply@github.com,2023-08-11 08:12:13+00:00,True,adiscon,github,* master,True,rsyslog_liblognorm.git,rsyslog/liblognorm.git,https://github.com/rsyslog/liblognorm.git -8741fc18cf9949d9c614c23275623b5ac001bdc4,Clinton Blackburn,clinton.blackburn@gmail.com,2021-01-24 20:03:33-08:00,Clinton Blackburn,clinton.blackburn@gmail.com,2021-01-25 04:03:33+00:00,False,gmail,gmail,* master,True,django-waffle_django-waffle,django-waffle/django-waffle,https://github.com/django-waffle/django-waffle -6cfa3b0ff34a19190c408e35150cae0cc393c9d6,Yaroslav Halchenko,debian@onerussian.com,2022-12-04 13:24:10-05:00,GitHub,noreply@github.com,2022-12-04 18:24:10+00:00,True,onerussian,github,* master,True,brechtm_citeproc-py,brechtm/citeproc-py,https://github.com/brechtm/citeproc-py -2606f5f155ab164dd26a53c24286a42b9c5e771e,Graham Inggs,ginggs@debian.org,2023-04-07 10:03:13+02:00,Graham Inggs,ginggs@debian.org,2023-04-07 08:03:13+00:00,False,debian,debian,* master,True,ginggs_gelemental,ginggs/gelemental,https://github.com/ginggs/gelemental -1b0c9da45ab02cef8a93bfa5b7fb66121c65f3bc,Zydrunas Gimbutas,zydrunas.gimbutas@gmail.com,2022-08-28 15:42:18+03:00,GitHub,noreply@github.com,2022-08-28 12:42:18+00:00,True,gmail,github,* master,True,zgimbutas_mwrap,zgimbutas/mwrap,https://github.com/zgimbutas/mwrap +4b46c2a278665cefeb78ef5a463c83f7ce8126ac,Cory Benfield,lukasaoz@gmail.com,2015-06-24 17:21:56+01:00,Cory Benfield,lukasaoz@gmail.com,2015-06-24 16:21:56+00:00,False,gmail,gmail,* master,True,python-hyper_hyper-h2,python-hyper/hyper-h2,https://github.com/python-hyper/hyper-h2 +77e319e8b79afac4fdd7b40ddbccdbeca5640bfb,Aleix Pol,aleixpol@kde.org,2014-03-31 01:31:46+02:00,Aleix Pol,aleixpol@kde.org,2014-03-30 23:31:46+00:00,False,kde,kde,* master,True,plasma_kscreenlocker.git,plasma/kscreenlocker.git,https://invent.kde.org/plasma/kscreenlocker.git +9a957eb4979208204b13041a6bb2559b6c1abbbc,Alexey Chebotar,alexey.chebotar@gmail.com,2009-03-17 23:17:47+00:00,Alexey Chebotar,alexey.chebotar@gmail.com,2009-03-17 23:17:47+00:00,False,gmail,gmail,* master,True,bearded_ruby-ldap,bearded/ruby-ldap,https://github.com/bearded/ruby-ldap +7dca0e67eb2cbe2223aeac3aad515a8f47c33fda,jedwin,jedwin@77938cd1-75fe-0310-9e35-92363d48005d,2006-06-16 19:51:59+00:00,jedwin,jedwin@77938cd1-75fe-0310-9e35-92363d48005d,2006-06-16 19:51:59+00:00,False,77938cd1-75fe-0310-9e35-92363d48005d,77938cd1-75fe-0310-9e35-92363d48005d,* master,True,jedwing_CHMLib.git,jedwing/CHMLib.git,https://github.com/jedwing/CHMLib.git +652d5d8c96c934d9dea5a31953d8b6049d2ad072,Jeff Forcier,jeff@bitprophet.org,2014-04-10 13:26:59-04:00,Jeff Forcier,jeff@bitprophet.org,2014-04-10 17:26:59+00:00,False,bitprophet,bitprophet,* main,True,fabric_fabric.git,fabric/fabric.git,https://github.com/libyal/dtfabric.git +5e6104cd795f31b02c3eb64aef59bf24b7250a57,Joachim Metz,joachim.metz@gmail.com,2015-10-25 08:59:48+01:00,Joachim Metz,joachim.metz@gmail.com,2015-10-25 08:04:55+00:00,False,gmail,gmail,* main,True,log2timeline_dfwinreg.git,log2timeline/dfwinreg.git,https://github.com/log2timeline/dfwinreg.git +6e98dee9354468e0b6a4fbe1b2d33ca63851fed5,rajo,rajo,2006-10-04 21:03:46+00:00,rajo,rajo,2006-10-04 21:03:46+00:00,False,rajo,rajo,* master,True,lhost_sendxmpp.git,lhost/sendxmpp.git,https://github.com/lhost/sendxmpp.git +94e8c979f57f022d27279feb53a19342f18e59c7,Christian Neukirchen,chneukirchen@gmail.com,2016-06-13 16:25:18+02:00,Christian Neukirchen,chneukirchen@gmail.com,2016-06-13 14:25:18+00:00,False,gmail,gmail,* master,True,chneukirchen_extrace,chneukirchen/extrace,https://github.com/chneukirchen/extrace +fac06ac0e72dd0bb3e46fd43d99b17c3aca6a5a3,fmarier,fmarier@52c45a13-843d-0410-a4cf-e722c5afd5a4,2004-09-08 04:19:09+00:00,fmarier,fmarier@52c45a13-843d-0410-a4cf-e722c5afd5a4,2004-09-08 04:19:09+00:00,False,52c45a13-843d-0410-a4cf-e722c5afd5a4,52c45a13-843d-0410-a4cf-e722c5afd5a4,* master,True,email-reminder,email-reminder,https://git.launchpad.net/email-reminder +c9eef919a0c361085d5bcd0b14a3dfcaf86d7a89,Joachim Metz,joachim.metz@gmail.com,2010-01-08 23:42:52+01:00,Joachim Metz,joachim.metz@gmail.com,2016-03-27 14:24:21+00:00,False,gmail,gmail,* main,True,libyal_libsmraw.git,libyal/libsmraw.git,https://github.com/libyal/libsmraw.git +5d103a58d1dcc14bb8c552a81ee6379096aaea77,Dmitry Suzdalev,dimsuz@gmail.com,2007-05-29 14:06:40+00:00,Dmitry Suzdalev,dimsuz@gmail.com,2007-05-29 14:06:40+00:00,False,gmail,gmail,* master,True,klines.git,klines.git,https://anongit.kde.org/klines.git +9fed4fd8bbc71e69f42b10468b1f05dd09fefa00,rncbc,rncbc@f9a00c7d-fcea-44c0-92a1-f75f9f8ef049,2010-03-05 21:51:48+00:00,rncbc,rncbc@f9a00c7d-fcea-44c0-92a1-f75f9f8ef049,2010-03-05 21:51:48+00:00,False,f9a00c7d-fcea-44c0-92a1-f75f9f8ef049,f9a00c7d-fcea-44c0-92a1-f75f9f8ef049,* main,True,rncbc_qmidinet.git,rncbc/qmidinet.git,https://github.com/rncbc/qmidinet.git +633674d34728a9f5e41423d97b50945f5ed50b7d,olegpidsadnyi,oleg.podsadny@gmail.com,2013-03-29 00:27:44-07:00,olegpidsadnyi,oleg.podsadny@gmail.com,2013-03-29 07:27:44+00:00,False,gmail,gmail,* master,True,pytest-dev_pytest-bdd.git,pytest-dev/pytest-bdd.git,https://github.com/pytest-dev/pytest-bdd.git +f73d60147594a85d93f65ea316df11511b6fffc7,Byron Clark,byron@theclarkfamily.name,2010-10-19 20:22:34-06:00,Byron Clark,byron@theclarkfamily.name,2010-10-20 02:22:34+00:00,False,theclarkfamily,theclarkfamily,* master,True,coldfix_udiskie.git,coldfix/udiskie.git,https://github.com/coldfix/udiskie.git +2bc7ba1e26fa7c9769adcd948a7d8b24f1375865,Rainer Gerhards,rgerhards@adiscon.com,2010-10-11 18:05:46+02:00,Rainer Gerhards,rgerhards@adiscon.com,2010-10-11 16:05:46+00:00,False,adiscon,adiscon,* master,True,rsyslog_liblognorm.git,rsyslog/liblognorm.git,https://github.com/rsyslog/liblognorm.git +487897424a4923aa2c9fbfa68fdf140c37d589f5,James Socol,james@mozilla.com,2011-01-23 12:41:20-05:00,James Socol,james@mozilla.com,2011-01-23 17:41:20+00:00,False,mozilla,mozilla,* master,True,django-waffle_django-waffle,django-waffle/django-waffle,https://github.com/django-waffle/django-waffle +8f444c760f6ab1d1080d03ca296441ef064abbcd,Brecht Machiels,brecht@mos6581.org,2012-01-07 00:57:05+01:00,Brecht Machiels,brecht@mos6581.org,2012-01-06 23:57:05+00:00,False,mos6581,mos6581,* master,True,brechtm_citeproc-py,brechtm/citeproc-py,https://github.com/brechtm/citeproc-py +b45bb12d20fce43f491bba2f2961788317cac8be,Kevin Daughtridge,kevin@kdau.com,2007-09-30 10:24:50+02:00,Graham Inggs,ginggs@debian.org,2018-12-28 19:05:04+00:00,False,kdau,debian,* master,True,ginggs_gelemental,ginggs/gelemental,https://github.com/ginggs/gelemental +516e4e7fd2c134872f58a220e098c27c5ad55b77,Zydrunas Gimbutas,zydrunas.gimbutas@gmail.com,2014-04-29 16:12:25-06:00,Zydrunas Gimbutas,zydrunas.gimbutas@gmail.com,2014-04-29 22:12:25+00:00,False,gmail,gmail,* master,True,zgimbutas_mwrap,zgimbutas/mwrap,https://github.com/zgimbutas/mwrap 2deb88232c11ce4c2d02cbf2d622330de2abd881,Konstantin Tretyakov,kt@ut.ee,2015-01-15 20:41:07+02:00,Konstantin Tretyakov,kt@ut.ee,2015-01-15 18:41:07+00:00,False,ut,ut,* master,True,konstantint_intervaltree-bio.git,konstantint/intervaltree-bio.git,https://github.com/konstantint/intervaltree-bio.git -ed4e7b30eeae9e03170f388f5c6fc31aac21bf7d,Mike Naberezny,mike@naberezny.com,2020-04-08 12:51:56-07:00,Mike Naberezny,mike@naberezny.com,2020-04-08 19:51:56+00:00,False,naberezny,naberezny,* main,True,supervisor_meld3.git,supervisor/meld3.git,https://github.com/supervisor/meld3.git -346d9b12ca6c7f9eff4ef4bf22e366a273b8c3ef,Misha Gusarov,dottedmag@dottedmag.net,2021-09-13 18:01:21+02:00,Mikhail Gusarov,dottedmag@dottedmag.net,2022-06-28 12:25:48+00:00,False,dottedmag,dottedmag,* master,True,dottedmag_pychm.git,dottedmag/pychm.git,https://github.com/dottedmag/pychm.git -32a0f671eb4baf1520b6b5069ca5c70066e26854,Paul Battley,pbattley@gmail.com,2014-03-10 14:11:00+00:00,Paul Battley,pbattley@gmail.com,2014-03-10 14:11:00+00:00,True,gmail,gmail,* master,True,threedaymonk_text,threedaymonk/text,https://github.com/threedaymonk/text -e96e4cca00b086d07c1a65e4b2665ae2d38e85b7,Arun Karunagath,the1.arun@gmail.com,2019-06-07 01:08:59+02:00,Arun Karunagath,the1.arun@gmail.com,2019-06-06 23:08:59+00:00,False,gmail,gmail,* main,True,tubaman_django-macaddress.git,tubaman/django-macaddress.git,https://github.com/tubaman/django-macaddress.git +42435f724284f28f142da627c69674eed48d99cd,Chris McDonough,chrism@plope.com,2005-12-18 12:35:16+00:00,Chris McDonough,chrism@plope.com,2005-12-18 12:35:16+00:00,False,plope,plope,* main,True,supervisor_meld3.git,supervisor/meld3.git,https://github.com/supervisor/meld3.git +933585c2e43cf2c6c0f6b400dd7e33cc9ae1979f,rubensr,rubensr,2003-12-02 12:37:52+00:00,rubensr,rubensr,2003-12-02 12:37:52+00:00,False,rubensr,rubensr,* master,True,dottedmag_pychm.git,dottedmag/pychm.git,https://github.com/dottedmag/pychm.git +43a1f802efe84855501ecdef17b24b71d506c426,Paul Battley,pbattley@gmail.com,2006-08-31 15:56:22+00:00,Paul Battley,pbattley@gmail.com,2006-08-31 15:56:22+00:00,False,gmail,gmail,* master,True,threedaymonk_text,threedaymonk/text,https://github.com/threedaymonk/text +6366addbf11788ecc16ae4b05963a4bbee2db7dc,Ryan Nowakowski,tubaman@fattuba.com,2011-12-13 16:16:45-06:00,Ryan Nowakowski,tubaman@fattuba.com,2011-12-13 22:16:45+00:00,False,fattuba,fattuba,* main,True,tubaman_django-macaddress.git,tubaman/django-macaddress.git,https://github.com/tubaman/django-macaddress.git 9a9789c49f74062c3d3dda45dfd888a5c9d65d89,John Bazik,jsb@ham,2014-05-15 01:11:20-04:00,John Bazik,me@johnbazik.com,2014-06-18 02:29:25+00:00,False,ham,johnbazik,* master,True,jbazik_Archive-Ar.git,jbazik/Archive-Ar.git,https://github.com/jbazik/Archive-Ar.git -3b4b2c5881fa0e681841e1dd72f60022400a236c,Milan Medlik,milan@morphoss.com,2013-07-15 16:43:44+12:00,Milan Medlik,milan@morphoss.com,2013-07-18 23:57:28+00:00,False,morphoss,morphoss,* master,True,davical-project_awl,davical-project/awl,https://gitlab.com/davical-project/awl +6c60133a8745e6099b9400a5f3c308dedb49efff,Andrew McMillan,debian@mcmillan.net.nz,2006-05-02 10:46:28+12:00,Andrew McMillan,debian@mcmillan.net.nz,2006-05-01 22:46:28+00:00,False,mcmillan,mcmillan,* master,True,davical-project_awl,davical-project/awl,https://gitlab.com/davical-project/awl 7cbe9ad2ec9936f311e80a7ff3266eb6006e8e5d,Jan Engelhardt,jengelh@inai.de,2022-11-17 23:47:37+01:00,Jan Engelhardt,jengelh@inai.de,2022-11-17 22:47:37+00:00,False,inai,inai,* master,True,p_posixovl_posixovl,p/posixovl/posixovl,https://git.code.sf.net/p/posixovl/posixovl -02435d54c6902c2f44fa80705b0cca0154b5a85a,brian d foy,briandfoy@pobox.com,2024-02-05 16:11:56-05:00,brian d foy,briandfoy@pobox.com,2024-02-05 21:11:56+00:00,False,pobox,pobox,* master,True,briandfoy_module-extract-use.git,briandfoy/module-extract-use.git,https://github.com/briandfoy/module-extract-use.git -57cd55e134d2e0735f480a0f76bd50a7166114e0,Wolfgang Rohdewald,wolfgang@rohdewald.de,2023-09-16 19:13:34+02:00,Wolfgang Rohdewald,wolfgang@rohdewald.de,2023-09-16 17:13:34+00:00,False,rohdewald,rohdewald,* master,True,kajongg.git,kajongg.git,https://anongit.kde.org/kajongg.git -620efc9d12889da2594a0e38840512afe0a58c17,David Lord,davidism@gmail.com,2023-06-01 13:37:42-07:00,David Lord,davidism@gmail.com,2023-06-01 20:39:00+00:00,True,gmail,gmail,* main,True,pallets_itsdangerous,pallets/itsdangerous,https://github.com/pallets/itsdangerous -d125801d0fc4edc264a7ed818fe2526a57bd5e62,邢家朋,1535253694@qq.com,2020-07-20 14:43:07+08:00,raveit65,mate@raveit.de,2020-07-31 11:22:25+00:00,False,qq,raveit,* master,True,mate-desktop_mate-user-guide.git,mate-desktop/mate-user-guide.git,https://github.com/mate-desktop/mate-user-guide.git -efc7d9d2e6e1a205cdf6f19c72e94fb6c86fb807,Timothy Legge,timlegge@gmail.com,2023-04-16 19:51:55-03:00,Timothy Legge,timlegge@gmail.com,2023-04-16 23:07:02+00:00,False,gmail,gmail,* main,True,timlegge_perl-XML-Generator,timlegge/perl-XML-Generator,https://github.com/timlegge/perl-XML-Generator +b7ba598b9402030d1cb5f2ba7b60c8ac93ca7f51,brian d foy,brian@stonehenge.com,2008-08-15 08:32:23+02:00,brian d foy,brian@stonehenge.com,2008-08-15 06:32:23+00:00,False,stonehenge,stonehenge,* master,True,briandfoy_module-extract-use.git,briandfoy/module-extract-use.git,https://github.com/briandfoy/module-extract-use.git +298952a1f958639d188b6037a7cb8bedc9bbe612,Wolfgang Rohdewald,wolfgang@rohdewald.de,2009-04-21 03:09:49+00:00,Wolfgang Rohdewald,wolfgang@rohdewald.de,2009-04-21 03:09:49+00:00,False,rohdewald,rohdewald,* master,True,kajongg.git,kajongg.git,https://anongit.kde.org/kajongg.git +b393ac71cb83e67b037b5766a765b9138fbd15e5,Armin Ronacher,armin.ronacher@active-4.com,2011-06-24 02:09:05+02:00,Armin Ronacher,armin.ronacher@active-4.com,2011-06-24 00:09:05+00:00,False,active-4,active-4,* main,True,pallets_itsdangerous,pallets/itsdangerous,https://github.com/pallets/itsdangerous +f63ecf7699e566fb3e445110b01e36d793b42b28,Clement Lefebvre,clement.lefebvre@linuxmint.com,2015-09-07 16:30:18+01:00,Clement Lefebvre,clement.lefebvre@linuxmint.com,2015-09-07 15:30:18+00:00,False,linuxmint,linuxmint,* master,True,mate-desktop_mate-user-guide.git,mate-desktop/mate-user-guide.git,https://github.com/mate-desktop/mate-user-guide.git +1ac27926e325ab00d4635598888c15911a8ccc88,Timothy Legge,timlegge@gmail.com,2022-02-11 19:47:15-04:00,Timothy Legge,timlegge@gmail.com,2022-02-11 23:47:15+00:00,False,gmail,gmail,* main,True,timlegge_perl-XML-Generator,timlegge/perl-XML-Generator,https://github.com/timlegge/perl-XML-Generator c28b84fd6be8db8cadfa6a8aee0fdd36db6e15e1,Simon Josefsson,simon@josefsson.org,2020-12-25 17:34:56+01:00,Simon Josefsson,simon@josefsson.org,2021-01-18 19:17:20+00:00,False,josefsson,josefsson,* master,True,pmccabe_pmccabe.git,pmccabe/pmccabe.git,https://gitlab.com/pmccabe/pmccabe.git -da333090aef3a346923d88886dbccd78db451997,Christophe Geuzaine,cgeuzaine@uliege.be,2020-09-07 15:58:36+02:00,Christophe Geuzaine,cgeuzaine@uliege.be,2020-09-07 13:58:36+00:00,False,uliege,uliege,* master,True,gl2ps_gl2ps.git,gl2ps/gl2ps.git,https://gitlab.onelab.info/gl2ps/gl2ps.git -9572bea606a6145dad153cd712653d6cf10ef18e,Antoine Bertin,ant.bertin@gmail.com,2015-03-15 17:54:40+01:00,Antoine Bertin,ant.bertin@gmail.com,2015-03-15 16:54:40+00:00,True,gmail,gmail,* main,True,Diaoul_enzyme,Diaoul/enzyme,https://github.com/Diaoul/enzyme -658b06f545031c4cc04069941b801a0739de7490,Mikolaj Izdebski,zurgunt@gmail.com,2015-09-13 14:22:07+02:00,Mikolaj Izdebski,zurgunt@gmail.com,2015-09-13 12:22:07+00:00,False,gmail,gmail,* master,True,kjn_lbzip2,kjn/lbzip2,https://github.com/kjn/lbzip2 +a07489cd64f4c9809769411f6c0b81ab86c8b564,Christophe Geuzaine,cgeuzaine@ulg.ac.be,2004-05-13 01:49:04+00:00,Christophe Geuzaine,cgeuzaine@ulg.ac.be,2004-05-13 01:49:04+00:00,False,ulg,ulg,* master,True,gl2ps_gl2ps.git,gl2ps/gl2ps.git,https://gitlab.onelab.info/gl2ps/gl2ps.git +6b78a4d46f0ece05b9c94d2afacb5a21864ecf9a,Antoine Bertin,diaoulael@gmail.com,2013-05-19 11:54:46+02:00,Antoine Bertin,diaoulael@gmail.com,2013-05-19 13:35:04+00:00,False,gmail,gmail,* main,True,Diaoul_enzyme,Diaoul/enzyme,https://github.com/Diaoul/enzyme +8e1efea2ea829e646bd33841e720244dc5dc4918,Laszlo Ersek,lacos@caesar.elte.hu,2011-07-26 22:14:49+02:00,Laszlo Ersek,lacos@caesar.elte.hu,2011-07-26 20:14:49+00:00,False,caesar,caesar,* master,True,kjn_lbzip2,kjn/lbzip2,https://github.com/kjn/lbzip2 71fe9c28a87fca5908b46bb25859fd674821b47a,Pierre Rudloff,contact@rudloff.pro,2016-04-22 14:44:59+02:00,Pierre Rudloff,contact@rudloff.pro,2016-04-22 12:53:25+00:00,False,rudloff,rudloff,* master,True,Rudloff_ufo2otf-debian,Rudloff/ufo2otf-debian,https://github.com/Rudloff/ufo2otf-debian -f4cda47081f5540fb7b452f24ba9610fe0cf6719,Geoffrey Thomas,geofft@ldpreload.com,2017-10-19 09:30:22-04:00,Geoffrey Thomas,geofft@ldpreload.com,2017-10-19 13:30:22+00:00,False,ldpreload,ldpreload,* master,True,sipb_config-package-dev,sipb/config-package-dev,https://github.com/sipb/config-package-dev -678522bcb2aea19a91534109369a6220ff60676d,Andrey Smirnov,Smirnov.Andrey@gmail.com,2021-09-15 16:45:04+03:00,GitHub,noreply@github.com,2021-09-15 13:45:04+00:00,True,gmail,github,* master,True,smira_txZMQ,smira/txZMQ,https://github.com/smira/txZMQ -72b6fed56cf593f74e88bbd0c1bf679eea232c9c,ShootingStarDragons,ShootingStarDragons@protonmail.com,2022-09-22 10:10:45+08:00,deepin-bot[bot],100105596+deepin-bot[bot]@users.noreply.github.com,2022-09-22 05:55:17+00:00,False,protonmail,users,* master,True,linuxdeepin_qt5dxcb-plugin.git,linuxdeepin/qt5dxcb-plugin.git,https://github.com/linuxdeepin/qt5dxcb-plugin.git -b56e56a7d9e4e2a6992388c53e69dcd5552f453c,Besnik Bleta,besnik@programeshqip.org,2023-03-25 15:03:35+02:00,GitHub,noreply@github.com,2023-03-25 13:03:35+00:00,True,programeshqip,github,* master,True,MaartenBaert_ssr,MaartenBaert/ssr,https://github.com/MaartenBaert/ssr -502dbc1e6e2c387229cce6a439ca3a6102797327,Nicola Soranzo,nicola.soranzo@earlham.ac.uk,2023-10-10 16:16:24+01:00,Nicola Soranzo,nicola.soranzo@earlham.ac.uk,2024-01-30 18:05:46+00:00,False,earlham,earlham,* main,True,galaxyproject_bioblend,galaxyproject/bioblend,https://github.com/galaxyproject/bioblend -dc513ea124565d77a7a5bde742ec0a8ffb877fd4,Thijs Triemstra,info@collab.nl,2017-11-17 15:28:57+01:00,Martijn Braam,martijn@brixit.nl,2017-11-17 14:28:57+00:00,False,collab,brixit,* master,True,MartijnBraam_python-isc-dhcp-leases,MartijnBraam/python-isc-dhcp-leases,https://github.com/MartijnBraam/python-isc-dhcp-leases -9a8009ba9df3be0c6986f55879f1ac176a9a6e97,Steve Piercy,web@stevepiercy.com,2017-08-29 00:48:49-07:00,GitHub,noreply@github.com,2017-08-29 07:48:49+00:00,False,stevepiercy,github,* master,True,Pylons_translationstring.git,Pylons/translationstring.git,https://github.com/Pylons/translationstring.git -8118883519530e6e450330b07eec23600093dea5,Gael Pasgrimaud,gael@gawel.org,2018-01-11 19:04:03+01:00,Gael Pasgrimaud,gael@gawel.org,2018-01-11 18:04:16+00:00,False,gawel,gawel,* master,True,gawel_panoramisk.git,gawel/panoramisk.git,https://github.com/gawel/panoramisk.git -49b579da4ee1e410c4323ecc629bf63c0b74dccb,Sergio Oliveira,seocam@seocam.com,2021-08-04 17:57:16-03:00,GitHub,noreply@github.com,2021-08-04 20:57:16+00:00,True,seocam,github,* master,True,toastdriven_restless,toastdriven/restless,https://github.com/toastdriven/restless -084e979310e7b75a389b50db8f9055e5efcc50ce,Abigail,abigail@abigail.be,2017-06-02 23:48:58+02:00,Abigail,abigail@abigail.be,2017-06-02 21:48:58+00:00,False,abigail,abigail,* master,True,Abigail_Regexp--Common.git,Abigail/Regexp--Common.git,https://github.com/Abigail/Regexp--Common.git -cc222ad97210f18a9c5e48867cf9b03cceb75d97,Simon Charette,simon.charette@zapier.com,2022-06-18 16:13:08-04:00,Simon Charette,simon.charette@zapier.com,2022-06-18 20:13:08+00:00,False,zapier,zapier,* master,True,gintas_django-picklefield.git,gintas/django-picklefield.git,https://github.com/gintas/django-picklefield.git -ca6a8673c4947e83ed0e15e7266ebc74e297e30c,simonflueckiger,simonflueckiger@users.noreply.github.com,2024-03-14 10:11:37+01:00,Fayez,iamfayez@gmail.com,2024-03-14 12:16:01+00:00,False,users,gmail,* master,True,sirfz_tesserocr.git,sirfz/tesserocr.git,https://github.com/sirfz/tesserocr.git -0cf56f41953129b75c8a823a89caf505e2db013f,soc,simon@ochsenreither.de,2020-09-09 19:41:46+02:00,GitHub,noreply@github.com,2020-09-09 17:41:46+00:00,False,ochsenreither,github,* main,True,postgis_postgis-java.git,postgis/postgis-java.git,https://github.com/postgis/postgis-java.git -e5ad95b8eeccc1b850d31129e89ec5e329b973da,Erik Moqvist,erik.moqvist@gmail.com,2021-11-20 10:04:41+01:00,Erik Moqvist,erik.moqvist@gmail.com,2021-11-20 09:04:41+00:00,False,gmail,gmail,* master,True,eerimoq_bitstruct,eerimoq/bitstruct,https://github.com/eerimoq/bitstruct -f4a71b13373436a2866c5d68f8f80ac6f0bc1ffe,Sean Barrett,seanb@radgametools.com,2023-12-14 10:59:23-08:00,Sean Barrett,seanb@radgametools.com,2023-12-14 18:59:23+00:00,False,radgametools,radgametools,* master,True,nothings_stb,nothings/stb,https://github.com/nothings/stb -7d34ad9c7c9d0de894fabe44c42a2627df8f6c6a,James Coglan,jcoglan@gmail.com,2019-06-11 19:49:52+01:00,James Coglan,jcoglan@gmail.com,2019-06-11 18:49:52+00:00,False,gmail,gmail,* master,True,faye_faye,faye/faye,https://github.com/faye/faye -cdfa9490bea32b33bde09dac83ff3b219fafd4d8,Kirill Mavreshko,kimavr@gmail.com,2022-08-31 12:56:49+05:00,Kirill Mavreshko,kimavr@gmail.com,2022-08-31 07:56:49+00:00,False,gmail,gmail,* master,True,textile_python-textile.git,textile/python-textile.git,https://github.com/textile/python-textile.git -5032b42b10548bda6d27dba81cfec2f95a67d91b,Wei LingFei,weilingfei@uniontech.com,2023-03-24 14:11:44+08:00,Han Guangyu,weilingfei@uniontech.com,2023-03-24 06:44:18+00:00,False,uniontech,uniontech,* master,True,openstack_swift.git,openstack/swift.git,https://github.com/openstack/swift.git -d8172d6776d2415eeb5aa17740ebfdc1a3f0f2a5,Michael Grosser,michael@grosser.it,2024-01-15 11:07:52-06:00,GitHub,noreply@github.com,2024-01-15 17:07:52+00:00,True,grosser,github,* master,True,ambethia_recaptcha,ambethia/recaptcha,https://github.com/ambethia/recaptcha -027a5e24abf399f4c1ebf199c0cd95d5888bebec,Brendan Gregg,bgregg@netflix.com,2014-06-15 12:30:11-07:00,Brendan Gregg,bgregg@netflix.com,2014-06-15 19:30:11+00:00,False,netflix,netflix,* master,True,brendangregg_Chaosreader,brendangregg/Chaosreader,https://github.com/brendangregg/Chaosreader -997df92ed54b3db6dcc26130f7d96be95a465280,Jens Vagelpohl,jens@plyp.com,2022-11-16 11:30:59+01:00,Jens Vagelpohl,jens@plyp.com,2022-11-16 10:30:59+00:00,False,plyp,plyp,* master,True,zopefoundation_zope.proxy,zopefoundation/zope.proxy,https://github.com/zopefoundation/zope.proxy -69ea3ab7a63a5c147d5c1941ac36d5e6cf553325,Dirk Thomas,dirk-thomas@users.noreply.github.com,2020-01-24 11:50:10-08:00,GitHub,noreply@github.com,2020-01-24 19:50:10+00:00,False,users,github,* noetic-devel,True,ros_catkin.git,ros/catkin.git,https://github.com/ros/catkin.git -eaba8774d1ec47d42b57cf5f788cbca87e9ab930,Assaf Arkin,assaf@labnotes.org,2013-02-18 11:08:14-08:00,Assaf Arkin,assaf@labnotes.org,2013-02-18 19:08:14+00:00,True,labnotes,labnotes,* master,True,assaf_uuid,assaf/uuid,https://github.com/assaf/uuid -dd0ed340b8db9f878e30eb54c715a765ff692490,emuse,emuse@users.sourceforge.net,2023-04-11 18:37:47+02:00,emuse,emuse@users.sourceforge.net,2023-04-11 16:37:47+00:00,False,users,users,* master,True,emuse_qmidiarp.git,emuse/qmidiarp.git,https://github.com/emuse/qmidiarp.git -804fcbd75bdd56b24a7344dea097b226c0cafc09,Clemens Wolff,clemens@justamouse.com,2023-04-06 21:43:39+02:00,James Oakley,jfunk@funktronics.ca,2023-04-08 13:25:44+00:00,False,justamouse,funktronics,* master,True,jimfunk_django-postgresql-netfields,jimfunk/django-postgresql-netfields,https://github.com/jimfunk/django-postgresql-netfields +896e93682b922be543332bbb9714065fcd81af24,Geoffrey Thomas,geofft@ldpreload.com,2017-10-18 10:46:22-04:00,Geoffrey Thomas,geofft@ldpreload.com,2017-10-18 15:22:02+00:00,False,ldpreload,ldpreload,* master,True,sipb_config-package-dev,sipb/config-package-dev,https://github.com/sipb/config-package-dev +a1bc9feadf4936ad70bcb202a9c3fcd0320d3d5a,Andrey Smirnov,smira@qik.com,2011-04-27 16:05:33+04:00,Andrey Smirnov,smira@qik.com,2011-04-27 12:05:33+00:00,False,qik,qik,* master,True,smira_txZMQ,smira/txZMQ,https://github.com/smira/txZMQ +e138393ae3d0243a967bdc0be2cb4d55e4050d06,zccrs,ccrr1314@live.com,2016-11-18 14:38:29+08:00,zccrs,ccrr1314@live.com,2016-11-18 06:50:52+00:00,False,live,live,* master,True,linuxdeepin_qt5dxcb-plugin.git,linuxdeepin/qt5dxcb-plugin.git,https://github.com/linuxdeepin/qt5dxcb-plugin.git +064aa04fe2e0f5de40caf4064c7b8c86adeb025e,MaartenBaert,maarten-baert@hotmail.com,2012-12-18 11:16:16-08:00,MaartenBaert,maarten-baert@hotmail.com,2012-12-18 19:16:16+00:00,False,hotmail,hotmail,* master,True,MaartenBaert_ssr,MaartenBaert/ssr,https://github.com/MaartenBaert/ssr +1c8c9ce01de59b6e17bddc4cd1b9804ba31681c1,Enis Afgan,afgane@gmail.com,2012-06-04 21:19:03-07:00,Enis Afgan,afgane@gmail.com,2012-06-05 04:19:03+00:00,False,gmail,gmail,* main,True,galaxyproject_bioblend,galaxyproject/bioblend,https://github.com/galaxyproject/bioblend +d2aa513ed6de856a756b276268d5e0cea1dd5584,Martijn Braam,martijn@brixit.nl,2014-06-29 22:07:10+02:00,Martijn Braam,martijn@brixit.nl,2014-06-29 20:07:10+00:00,False,brixit,brixit,* master,True,MartijnBraam_python-isc-dhcp-leases,MartijnBraam/python-isc-dhcp-leases,https://github.com/MartijnBraam/python-isc-dhcp-leases +77a66f4485d1a005770d24443f08b7fd2a5a0ee0,Chris McDonough,chrism@plope.com,2010-04-19 17:49:25+00:00,Chris McDonough,chrism@plope.com,2010-04-19 17:49:25+00:00,False,plope,plope,* master,True,Pylons_translationstring.git,Pylons/translationstring.git,https://github.com/Pylons/translationstring.git +fb682d7d08f1466c5bb184de1c8d39e5683a73c0,Gael Pasgrimaud,gael@gawel.org,2014-01-09 19:50:13+01:00,Gael Pasgrimaud,gael@gawel.org,2014-01-09 18:50:13+00:00,False,gawel,gawel,* master,True,gawel_panoramisk.git,gawel/panoramisk.git,https://github.com/gawel/panoramisk.git +2a8dbdc77c04bf13da06912de70d84e44c27f566,Daniel Lindsley,daniel@toastdriven.com,2014-01-11 01:11:19-08:00,Daniel Lindsley,daniel@toastdriven.com,2014-01-11 09:11:19+00:00,False,toastdriven,toastdriven,* master,True,toastdriven_restless,toastdriven/restless,https://github.com/toastdriven/restless +fc8a2a85c6b9c0b07fc985e3585d8b9b95c6d03e,Damian Conway,damian@conway.org,2009-12-29 18:27:27+01:00,Abigail,abigail@abigail.be,2009-12-29 17:27:27+00:00,False,conway,abigail,* master,True,Abigail_Regexp--Common.git,Abigail/Regexp--Common.git,https://github.com/Abigail/Regexp--Common.git +886bdeb8ffee4300cdccc52b9e73de89a382d7a2,Gintautas Miliauskas,gintautas@miliauskas.lt,2009-10-09 15:52:51+03:00,Gintautas Miliauskas,gintautas@miliauskas.lt,2009-10-09 12:52:51+00:00,False,miliauskas,miliauskas,* master,True,gintas_django-picklefield.git,gintas/django-picklefield.git,https://github.com/gintas/django-picklefield.git +b72c4977ebe9cd2c1a3cf1e4de232421f72a2c9a,Fayez,iamfayez@gmail.com,2015-12-18 01:47:36+02:00,Fayez,iamfayez@gmail.com,2015-12-17 23:47:36+00:00,False,gmail,gmail,* master,True,sirfz_tesserocr.git,sirfz/tesserocr.git,https://github.com/sirfz/tesserocr.git +a4cb6c5f55504a8df4e64073518d7a0bcf3c1998,Markus Schaber,markus@schabi.de,2006-09-05 15:16:57+00:00,Markus Schaber,markus@schabi.de,2006-09-05 15:16:57+00:00,False,schabi,schabi,* main,True,postgis_postgis-java.git,postgis/postgis-java.git,https://github.com/postgis/postgis-java.git +09cc0fb6d0e8e052574a4d92819b2c694e06a2e1,Erik,erik.moqvist@gmail.com,2015-04-26 09:36:16+02:00,Erik,erik.moqvist@gmail.com,2015-04-26 07:36:16+00:00,False,gmail,gmail,* master,True,eerimoq_bitstruct,eerimoq/bitstruct,https://github.com/eerimoq/bitstruct +70171b8d2a6319f9179679d38fb645fa03533d71,nothings,sean2@nothings.org,2014-05-25 09:51:23-07:00,nothings,sean2@nothings.org,2014-05-25 16:51:23+00:00,False,nothings,nothings,* master,True,nothings_stb,nothings/stb,https://github.com/nothings/stb +dceb35df332356daf942dc9825c15869eda94adc,James Coglan,jcoglan@googlemail.com,2009-06-06 11:36:13+01:00,James Coglan,jcoglan@googlemail.com,2009-06-06 10:36:13+00:00,False,googlemail,googlemail,* master,True,faye_faye,faye/faye,https://github.com/faye/faye +9ce2395dfb543e60dec0c329ec1c6c9fc00db161,Jason Samsa,jsamsa@gmail.com,2008-11-22 22:48:26-06:00,Jason Samsa,jsamsa@gmail.com,2008-11-23 04:48:26+00:00,False,gmail,gmail,* master,True,textile_python-textile.git,textile/python-textile.git,https://github.com/textile/python-textile.git +fe067413b1fb61cdfba97d543189c5a01230b45c,Michael Barton,michael.barton@rackspace.com,2010-07-08 01:37:44+00:00,Monty Taylor,mordred@inaugust.com,2010-07-08 01:37:44+00:00,False,rackspace,inaugust,* master,True,openstack_swift.git,openstack/swift.git,https://github.com/openstack/swift.git +613c843d66f95b82e152778483311843ab769f3a,Jason L Perry,jasper@ambethia.com,2007-05-26 09:35:19+00:00,Jason L Perry,jasper@ambethia.com,2007-05-26 09:35:19+00:00,False,ambethia,ambethia,* master,True,ambethia_recaptcha,ambethia/recaptcha,https://github.com/ambethia/recaptcha +8ac77293e96e194bbfa8557bcc5bea90a700bbcb,Brendan Gregg,brendan.d.gregg@gmail.com,2014-04-09 17:56:54-07:00,Brendan Gregg,brendan.d.gregg@gmail.com,2014-04-10 00:56:54+00:00,False,gmail,gmail,* master,True,brendangregg_Chaosreader,brendangregg/Chaosreader,https://github.com/brendangregg/Chaosreader +0cc7748c8603a93d26c3386c1b767801e98af9c3,Tres Seaver,tseaver@palladion.com,2006-04-04 14:50:06+00:00,Tres Seaver,tseaver@palladion.com,2006-04-04 14:50:06+00:00,False,palladion,palladion,* master,True,zopefoundation_zope.proxy,zopefoundation/zope.proxy,https://github.com/zopefoundation/zope.proxy +5b72c0cf9c4aea986ac84fd27f958b295266d2eb,Troy D. Straszheim,straszheim@willowgarage.com,2011-11-07 14:21:25-08:00,Troy D. Straszheim,straszheim@willowgarage.com,2011-11-07 22:21:25+00:00,False,willowgarage,willowgarage,* noetic-devel,True,ros_catkin.git,ros/catkin.git,https://github.com/ros/catkin.git +39aa3e96d2cb1807839ea3b2d510634e9f1543bf,Assaf Arkin,assaf@labnotes.org,2008-07-10 13:18:58-07:00,Assaf Arkin,assaf@labnotes.org,2008-07-10 20:18:58+00:00,False,labnotes,labnotes,* master,True,assaf_uuid,assaf/uuid,https://github.com/assaf/uuid +83506b78d8aee150a9bfbb357790544530c720c6,gscholz,gscholz,2009-08-02 16:44:32+00:00,gscholz,gscholz,2009-08-02 16:44:32+00:00,False,gscholz,gscholz,* master,True,emuse_qmidiarp.git,emuse/qmidiarp.git,https://github.com/emuse/qmidiarp.git +3f795d6d054bf1e4b6a92c398d5856c5c2b354b7,Thomas Adamcik,adamcik@samfundet.no,2010-04-21 21:27:36+02:00,Thomas Adamcik,adamcik@samfundet.no,2010-04-21 19:28:55+00:00,False,samfundet,samfundet,* master,True,jimfunk_django-postgresql-netfields,jimfunk/django-postgresql-netfields,https://github.com/jimfunk/django-postgresql-netfields 9ab117a4d9759fa98bae2d019acd42b730a02330,Toby Inkster,mail@tobyinkster.co.uk,2012-09-11 00:05:00+01:00,Toby Inkster,mail@tobyinkster.co.uk,2012-09-10 23:05:00+00:00,False,tobyinkster,tobyinkster,* master,True,tobyink_p5-io-callback.git,tobyink/p5-io-callback.git,https://github.com/tobyink/p5-io-callback.git -17896711479039c61ba0575d0f3844fa22feeac4,Bo YU,tsu.yubo@gmail.com,2023-04-16 22:23:15+08:00,Bo YU,tsu.yubo@gmail.com,2023-04-16 14:23:15+00:00,False,gmail,gmail,* master,True,kilobyte_arch-test,kilobyte/arch-test,https://github.com/kilobyte/arch-test -812a772de4e8ce9004bbcf951ffe73c4a1ad022a,Tomohiro IKEDA,rilakkuma.san.xjapan@gmail.com,2022-05-15 10:05:11+09:00,Jaroslav Kysela,perex@perex.cz,2022-05-19 10:47:24+00:00,False,gmail,perex,* master,True,alsa-lib.git,alsa-lib.git,git://git.alsa-project.org/alsa-lib.git -922c8a77d80bd19a6d7531ccb7d209dd85c1ff10,Jeremy T. Bouse,jbouse@debian.org,2021-06-13 14:35:35-04:00,Jeremy T. Bouse,jbouse@debian.org,2021-06-13 18:35:35+00:00,True,debian,debian,* master,True,jbouse-debian_alabaster,jbouse-debian/alabaster,https://github.com/jbouse-debian/alabaster +1ca87b7810e5a65dd1598e27cf063d8ee7b13523,Adam Borowski,kilobyte@angband.pl,2016-04-07 15:19:42+02:00,Adam Borowski,kilobyte@angband.pl,2016-04-07 13:19:42+00:00,False,angband,angband,* master,True,kilobyte_arch-test,kilobyte/arch-test,https://github.com/kilobyte/arch-test +a234679700c5565cbb2bd98e429cded1dc2587f4,Jaroslav Kysela,perex@perex.cz,1999-08-20 20:27:07+00:00,Jaroslav Kysela,perex@perex.cz,1999-08-20 20:27:07+00:00,False,perex,perex,* master,True,alsa-lib.git,alsa-lib.git,git://git.alsa-project.org/alsa-lib.git +317db8eec2f961c8d5da22af0b31dda62622bc72,Jeremy T. Bouse,jbouse@debian.org,2014-09-22 12:20:38-04:00,Jeremy T. Bouse,jbouse@debian.org,2014-09-22 16:20:38+00:00,False,debian,debian,* master,True,jbouse-debian_alabaster,jbouse-debian/alabaster,https://github.com/jbouse-debian/alabaster 8cf917795c410eb43716a41cfadc987ab83cc790,Graham Barr,gbarr@pobox.com,2003-11-02 20:44:00+00:00,Graham Barr,gbarr@pobox.com,2003-11-02 20:44:00+00:00,False,pobox,pobox,* master,True,gbarr_CPAN-DistnameInfo.git,gbarr/CPAN-DistnameInfo.git,https://github.com/gbarr/CPAN-DistnameInfo.git -ee5ad26a754984d867594809cb5c040be9cd7281,Fantix King,fantix.king@gmail.com,2023-10-23 03:04:03+09:00,GitHub,noreply@github.com,2023-10-22 18:04:03+00:00,False,gmail,github,* master,True,MagicStack_uvloop,MagicStack/uvloop,https://github.com/MagicStack/uvloop -0ade0f41a5b3ef7e84348c826c583062eb0b5115,Alastair Porter,alastair@porter.net.nz,2016-01-05 12:17:25+01:00,Alastair Porter,alastair@porter.net.nz,2016-01-05 11:17:25+00:00,False,porter,porter,* master,True,alastair_python-musicbrainz-ngs,alastair/python-musicbrainz-ngs,https://github.com/alastair/python-musicbrainz-ngs -d2f6036c90415de1acec5e1f9b69e40c6fc96e07,Gunnar Wolf,gwolf@gwolf.org,2011-06-27 22:45:38-05:00,Gunnar Wolf,gwolf@gwolf.org,2011-06-28 03:45:38+00:00,True,gwolf,gwolf,* master,True,gwolf_kindleclip,gwolf/kindleclip,https://github.com/gwolf/kindleclip -c961a67a9797b6865f5fb657a7f4b5064f668487,Christopher Amin,camin@ripe.net,2022-01-28 17:07:13+01:00,Christopher Amin,camin@ripe.net,2022-01-28 16:07:13+00:00,False,ripe,ripe,* master,True,RIPE-NCC_ripe-atlas-cousteau.git,RIPE-NCC/ripe-atlas-cousteau.git,https://github.com/RIPE-NCC/ripe-atlas-cousteau.git -3f9f62275d39679638aa2c9b3b9cc02665e9cdfb,Ran Benita,ran@unusedvar.com,2023-06-20 19:41:46+03:00,GitHub,noreply@github.com,2023-06-20 16:41:46+00:00,True,unusedvar,github,* main,True,pytest-dev_pluggy,pytest-dev/pluggy,https://github.com/pytest-dev/pluggy -5ef01b189b10bf814d9c0c0e3d98caaa791cb081,dirk.esser,dirk.esser@github.deterministic-arts.de,2013-07-15 14:09:38+02:00,dirk.esser,dirk.esser@github.deterministic-arts.de,2013-07-15 12:09:38+00:00,False,github,github,* master,True,deterministic-arts_DartsPyLRU.git,deterministic-arts/DartsPyLRU.git,https://github.com/deterministic-arts/DartsPyLRU.git -1cfac0377cd9486a9d8edf8c6fd9c17c22d0524a,Steve Hay,steve.m.hay@googlemail.com,2020-12-07 09:13:49+00:00,Steve Hay,steve.m.hay@googlemail.com,2020-12-07 09:13:49+00:00,False,googlemail,googlemail,* master,True,steve-m-hay_XML-Encoding.git,steve-m-hay/XML-Encoding.git,https://github.com/steve-m-hay/XML-Encoding.git -5b85ec1b1e921fefa5bdc09027c730ac6830f5c2,Dima Kogan,dima@secretsauce.net,2024-02-19 20:25:55-08:00,Dima Kogan,dima@secretsauce.net,2024-02-20 04:25:55+00:00,False,secretsauce,secretsauce,* master,True,dkogan_gnuplotlib,dkogan/gnuplotlib,https://github.com/dkogan/gnuplotlib -2f31502924060bcd766e25958e9dc67f161f908b,Ben Gruver,bgruv@google.com,2019-08-01 15:08:33-07:00,Ben Gruver,bgruv@google.com,2019-08-07 21:05:34+00:00,False,google,google,* master,True,JesusFreke_smali,JesusFreke/smali,https://github.com/JesusFreke/smali -42374db226da23da8071aa344f16a0fa56ed814c,mcw,mark@example.org,2018-03-03 16:03:56-05:00,mcw,mark@example.org,2018-03-03 21:07:02+00:00,False,example,example,* develop,True,MarkCWirt_MIDIUtil.git,MarkCWirt/MIDIUtil.git,https://github.com/MarkCWirt/MIDIUtil.git -8ec76f148752af53af817c5b6eb466c1a221b5d3,Mateusz Łukasik,mati75@linuxmint.pl,2022-11-14 21:53:47+01:00,Mateusz Łukasik,mati75@linuxmint.pl,2022-11-14 20:53:47+00:00,False,linuxmint,linuxmint,* master,True,mati75_evilwm.git,mati75/evilwm.git,https://github.com/mati75/evilwm.git -597180a1b5645c64d91169e105c61080abec69d3,Guilherme Leobas,guilhermeleobas@gmail.com,2024-03-15 13:08:40-03:00,Guilherme Leobas,guilhermeleobas@gmail.com,2024-03-15 16:08:40+00:00,True,gmail,gmail,* main,True,numba_numba.git,numba/numba.git,https://github.com/numba/numba.git -a592ca1b2c90417ec866636d70354ae302329848,Andreas Klöckner,inform@tiker.net,2021-04-17 14:42:18-05:00,GitHub,noreply@github.com,2021-04-17 19:42:18+00:00,True,tiker,github,* main,True,inducer_pudb.git,inducer/pudb.git,https://github.com/inducer/pudb.git -c3354c072ded7d4b6de5fcef507485dba7f2b067,Mateusz,m.leciejewski@mdbootstrap.com,2022-03-28 14:36:17+02:00,GitHub,noreply@github.com,2022-03-28 12:36:17+00:00,False,mdbootstrap,github,* main,True,mdbootstrap_perfect-scrollbar,mdbootstrap/perfect-scrollbar,https://github.com/mdbootstrap/perfect-scrollbar -06c6ed59a8825324db63dfc907c2456e2f875e44,Frank B. Brokken,f.b.brokken@rug.nl,2023-10-09 15:26:43+02:00,Frank B. Brokken,f.b.brokken@rug.nl,2023-10-09 13:26:43+00:00,False,rug,rug,* master,True,fbb-git_bisoncpp,fbb-git/bisoncpp,https://gitlab.com/fbb-git/bisoncpp -4df713d9037d814cc0c64197f69e5c78d55caaf1,Florian Franzen,Florian.Franzen@gmail.com,2024-02-29 00:45:46+01:00,David Rheinsberg,david@readahead.eu,2024-02-29 17:30:16+00:00,False,gmail,readahead,* master,True,dvdhrm_xwiimote,dvdhrm/xwiimote,https://github.com/dvdhrm/xwiimote -4eeb431f5ae72b42474cec42641fca1daa91c4b0,Pierre Fersing,pierre.fersing@bleemeo.com,2024-02-14 20:33:34+01:00,Pierre Fersing,pierre.fersing@bleemeo.com,2024-02-14 19:33:34+00:00,False,bleemeo,bleemeo,* master,True,eclipse_paho.mqtt.python.git,eclipse/paho.mqtt.python.git,https://github.com/eclipse/paho.mqtt.python.git -da5df3fa2b6e2c12432b69b0dca924b7533159a4,Aron Griffis,aron@arongriffis.com,2017-04-20 14:20:28-04:00,GitHub,noreply@github.com,2017-04-20 18:20:28+00:00,True,arongriffis,github,* master,True,zacharyvoase_urlobject,zacharyvoase/urlobject,https://github.com/zacharyvoase/urlobject -a119b9887d64aa88de660d8d860edc99166058d1,Ico Doornekamp,ico@pruts.nl,2020-12-09 10:11:19+01:00,GitHub,noreply@github.com,2020-12-09 09:11:19+00:00,True,pruts,github,* master,True,zevv_duc,zevv/duc,https://github.com/zevv/duc -510270ecf2e342a81d5dffbf38505bfe18d23dca,Assaf Gordon,assafgordon@gmail.com,2017-08-14 12:11:09-06:00,Assaf Gordon,assafgordon@gmail.com,2017-08-14 18:11:09+00:00,False,gmail,gmail,* master,True,agordon_libgtextutils.git,agordon/libgtextutils.git,https://github.com/agordon/libgtextutils.git -a5955924f08c46fda56465fa99cf2b1c07b7bfe8,JanKusanagi,jancoding@gmx.com,2024-01-02 15:55:25+01:00,JanKusanagi,jancoding@gmx.com,2024-01-02 14:55:25+00:00,False,gmx,gmx,* master,True,dianara_dianara-dev.git,dianara/dianara-dev.git,https://gitlab.com/dianara/dianara-dev.git -130273bc0989a99b98d261644d4ff3a22df842fd,Jakub Pastuszek,jpastuszek@gmail.com,2012-02-06 19:20:38+01:00,Jakub Pastuszek,jpastuszek@gmail.com,2012-02-06 18:20:38+00:00,False,gmail,gmail,* master,True,jpastuszek_capture-output,jpastuszek/capture-output,https://github.com/jpastuszek/capture-output +bbd98fcc5355a6245b291eaa24712a11f8616fbb,Yury Selivanov,yury@magic.io,2015-11-07 23:14:26-05:00,Yury Selivanov,yury@magic.io,2015-11-08 04:14:26+00:00,False,magic,magic,* master,True,MagicStack_uvloop,MagicStack/uvloop,https://github.com/MagicStack/uvloop +6f36d58855b26e32a5782fe9d576531a20597be9,Alastair Porter,alastair@porter.net.nz,2011-06-23 23:18:27-04:00,Alastair Porter,alastair@porter.net.nz,2011-06-24 03:18:27+00:00,False,porter,porter,* master,True,alastair_python-musicbrainz-ngs,alastair/python-musicbrainz-ngs,https://github.com/alastair/python-musicbrainz-ngs +b31e59238bba9ac6a54469ae99f18367332e2bd5,Gunnar Wolf,gwolf@gwolf.org,2011-06-14 12:44:54-05:00,Gunnar Wolf,gwolf@gwolf.org,2011-06-14 17:44:54+00:00,False,gwolf,gwolf,* master,True,gwolf_kindleclip,gwolf/kindleclip,https://github.com/gwolf/kindleclip +89b54a13a16f1180beef291ae1f00fa08c27b1bf,Andreas Strikos,astrikos@ripe.net,2014-05-14 17:23:29+02:00,Andreas Strikos,astrikos@ripe.net,2014-05-14 15:23:29+00:00,False,ripe,ripe,* master,True,RIPE-NCC_ripe-atlas-cousteau.git,RIPE-NCC/ripe-atlas-cousteau.git,https://github.com/RIPE-NCC/ripe-atlas-cousteau.git +d52233200b2c0aa40a42f7c45820be58db03c795,holger krekel,holger@merlinux.eu,2015-04-28 17:36:11+02:00,holger krekel,holger@merlinux.eu,2015-04-28 15:36:11+00:00,False,merlinux,merlinux,* main,True,pytest-dev_pluggy,pytest-dev/pluggy,https://github.com/pytest-dev/pluggy +3a24f74c301cc3246e298e3928394e9786fb50ac,Dirk Eßer,dirk.esser@deterministic-arts.de,2012-07-17 07:22:12-07:00,Dirk Eßer,dirk.esser@deterministic-arts.de,2012-07-17 14:22:12+00:00,False,deterministic-arts,deterministic-arts,* master,True,deterministic-arts_DartsPyLRU.git,deterministic-arts/DartsPyLRU.git,https://github.com/deterministic-arts/DartsPyLRU.git +c923ce9e174a892069a84db58b0c3d035acddad1,Clark Cooper,coopercc@netheaven.com,2014-04-15 13:50:09+01:00,Steve Hay,steve.m.hay@googlemail.com,2014-04-15 12:50:56+00:00,False,netheaven,googlemail,* master,True,steve-m-hay_XML-Encoding.git,steve-m-hay/XML-Encoding.git,https://github.com/steve-m-hay/XML-Encoding.git +d50c0b908beba420eeacfd973c97decba2ed0f3d,Dima Kogan,dima@secretsauce.net,2015-07-02 14:15:43-07:00,Dima Kogan,dima@secretsauce.net,2015-07-02 21:41:24+00:00,False,secretsauce,secretsauce,* master,True,dkogan_gnuplotlib,dkogan/gnuplotlib,https://github.com/dkogan/gnuplotlib +df2a55dee586bc7de69949cb0acd454ef4eb45ff,JesusFreke@JesusFreke.com,JesusFreke@JesusFreke.com@55b6fa8a-2a1e-11de-a435-ffa8d773f76a,2009-09-08 06:26:34+00:00,JesusFreke@JesusFreke.com,JesusFreke@JesusFreke.com@55b6fa8a-2a1e-11de-a435-ffa8d773f76a,2009-09-08 06:26:34+00:00,False,55b6fa8a-2a1e-11de-a435-ffa8d773f76a,55b6fa8a-2a1e-11de-a435-ffa8d773f76a,* master,True,JesusFreke_smali,JesusFreke/smali,https://github.com/JesusFreke/smali +cb0e32a617eb1d7510f7e900d712fd9a0009a441,mcw,mark@example.org,2016-09-18 08:49:03-04:00,mcw,mark@example.org,2016-09-18 12:49:03+00:00,False,example,example,* develop,True,MarkCWirt_MIDIUtil.git,MarkCWirt/MIDIUtil.git,https://github.com/MarkCWirt/MIDIUtil.git +932ed89f4132a1e70c896b684806937fe03c99a0,Mateusz Łukasik,mati75@linuxmint.pl,2013-02-20 22:53:04+01:00,Mateusz Łukasik,mati75@linuxmint.pl,2013-02-20 21:53:04+00:00,False,linuxmint,linuxmint,* master,True,mati75_evilwm.git,mati75/evilwm.git,https://github.com/mati75/evilwm.git +52370f5564fa90916ce6f38cf4e63b8fa1761643,Travis E. Oliphant,teoliphant@gmail.com,2012-03-08 05:15:08-06:00,Travis E. Oliphant,teoliphant@gmail.com,2012-03-08 11:15:08+00:00,False,gmail,gmail,* main,True,numba_numba.git,numba/numba.git,https://github.com/numba/numba.git +bb672b57a25146f7bfab5851995b509eb5420302,Aaron Meurer,asmeurer@gmail.com,2011-07-26 22:54:16-06:00,Aaron Meurer,asmeurer@gmail.com,2011-07-27 04:56:00+00:00,False,gmail,gmail,* main,True,inducer_pudb.git,inducer/pudb.git,https://github.com/inducer/pudb.git +1094a4c862d1b600a6a93d04f276809f5cd03701,Filip Kapusta,f.kapusta@mdbootstrap.com,2022-03-23 15:12:15+01:00,Filip Kapusta,f.kapusta@mdbootstrap.com,2022-03-23 14:12:15+00:00,False,mdbootstrap,mdbootstrap,* main,True,mdbootstrap_perfect-scrollbar,mdbootstrap/perfect-scrollbar,https://github.com/mdbootstrap/perfect-scrollbar +b52e98978ed19585c83f2f8c1da93bd7c436e36c,Frank B. Brokken,f.b.brokken@rug.nl,2005-05-22 14:02:14+00:00,Frank B. Brokken,f.b.brokken@rug.nl,2005-05-22 14:02:14+00:00,False,rug,rug,* master,True,fbb-git_bisoncpp,fbb-git/bisoncpp,https://gitlab.com/fbb-git/bisoncpp +7827900aeb12b196894ff9ac09d8fd90471d2596,David Herrmann,dh.herrmann@gmail.com,2011-02-17 20:29:39+01:00,David Herrmann,dh.herrmann@gmail.com,2011-02-17 19:29:39+00:00,False,gmail,gmail,* master,True,dvdhrm_xwiimote,dvdhrm/xwiimote,https://github.com/dvdhrm/xwiimote +8b10399731d3ef56f686985249984c845cfadd0c,Roger Light,roger@atchoo.org,2013-06-17 23:45:08+01:00,Roger Light,roger@atchoo.org,2014-02-03 21:16:19+00:00,False,atchoo,atchoo,* master,True,eclipse_paho.mqtt.python.git,eclipse/paho.mqtt.python.git,https://github.com/eclipse/paho.mqtt.python.git +74ebd59fc6b0e418ba6a2522fe253168a8ac425a,Zachary Voase,disturbyte@gmail.com,2009-04-27 01:07:33+02:00,Zachary Voase,disturbyte@gmail.com,2009-04-26 23:07:33+00:00,False,gmail,gmail,* master,True,zacharyvoase_urlobject,zacharyvoase/urlobject,https://github.com/zacharyvoase/urlobject +6ecf54639d2f08bdf062c7efd7f39a2a99eacd6d,Ico Doornekamp,ico@pruts.nl,2014-05-12 20:48:13+02:00,Ico Doornekamp,ico@pruts.nl,2014-05-12 18:48:13+00:00,False,pruts,pruts,* master,True,zevv_duc,zevv/duc,https://github.com/zevv/duc +4f566ba605384dd805e08913dd5d871bf89eb8de,Assaf Gordon,assafgordon@gmail.com,2013-11-03 22:58:23+02:00,Assaf Gordon,assafgordon@gmail.com,2013-11-03 20:58:23+00:00,False,gmail,gmail,* master,True,agordon_libgtextutils.git,agordon/libgtextutils.git,https://github.com/agordon/libgtextutils.git +1380c7253fc69fac746e40d3d2d794e1ce267ad3,Jan Kusanagi,janjabber@gmail.com,2012-01-05 18:33:19+01:00,Jan Kusanagi,janjabber@gmail.com,2012-01-05 17:33:19+00:00,False,gmail,gmail,* master,True,dianara_dianara-dev.git,dianara/dianara-dev.git,https://gitlab.com/dianara/dianara-dev.git +c85ae7780c3f5f473ab0b0a0916b22d9fb096cdc,Jakub Pastuszek,jpastuszek@gmail.com,2012-02-06 18:55:54+01:00,Jakub Pastuszek,jpastuszek@gmail.com,2012-02-06 17:55:54+00:00,False,gmail,gmail,* master,True,jpastuszek_capture-output,jpastuszek/capture-output,https://github.com/jpastuszek/capture-output 60f081a495664b1306b37e6e15cf5d49966984b6,Mark Haines,mjark@negativecurvature.net,2015-08-24 14:40:17+01:00,Mark Haines,mjark@negativecurvature.net,2015-08-24 13:40:17+00:00,False,negativecurvature,negativecurvature,* main,True,matrix-org_python-signedjson.git,matrix-org/python-signedjson.git,https://github.com/matrix-org/python-signedjson.git 91d7043850d2f6fce178672123c68f3776367e3a,Sebastian Ramacher,Sebastian.Ramacher@ait.ac.at,2021-01-22 16:07:41+01:00,Sebastian Ramacher,Sebastian.Ramacher@ait.ac.at,2021-01-22 15:07:41+00:00,False,ait,ait,* main,True,bpython_curtsies,bpython/curtsies,https://github.com/bpython/curtsies -4669e89c1a53536710c95dfe78b107069a4a9d85,Tarek Ziade,tarek@ziade.org,2023-07-18 08:15:55+02:00,GitHub,noreply@github.com,2023-07-18 06:15:55+00:00,False,ziade,github,* main,True,loads_molotov.git,loads/molotov.git,https://github.com/loads/molotov.git -40c47a3c9934bb86d751139b5a2f004e864a1e86,Michael Howitz,mh@gocept.com,2021-08-19 08:29:23+02:00,GitHub,noreply@github.com,2021-08-19 06:29:23+00:00,False,gocept,github,* master,True,zopefoundation_zope.testrunner,zopefoundation/zope.testrunner,https://github.com/zopefoundation/zope.testrunner -5de7171788524eb6521117652e5fa09b45f74023,David Warde-Farley,d.warde.farley@gmail.com,2015-05-31 14:14:45-04:00,David Warde-Farley,d.warde.farley@gmail.com,2015-05-31 18:14:45+00:00,True,gmail,gmail,* master,True,mila-iqia_picklable-itertools,mila-iqia/picklable-itertools,https://github.com/mila-iqia/picklable-itertools -380970f99cb033639849a81d6cdd652d3d2efd8a,Andre Klapper,a9016009@gmx.de,2020-05-24 19:47:52+02:00,Andre Klapper,a9016009@gmx.de,2020-05-24 17:47:52+00:00,False,gmx,gmx,* master,True,GNOME_ocrfeeder,GNOME/ocrfeeder,https://gitlab.gnome.org/GNOME/ocrfeeder -d42eb6cebe5d7841eacdf7bb636488eac693dbfd,Artyom V. Poptsov,poptsov.artyom@gmail.com,2024-01-27 10:55:08+03:00,Artyom V. Poptsov,poptsov.artyom@gmail.com,2024-01-27 07:55:08+00:00,False,gmail,gmail,* master,True,artyom-poptsov_guile-ssh.git,artyom-poptsov/guile-ssh.git,https://github.com/artyom-poptsov/guile-ssh.git -da5e350b26c41a021856d0725ba699c0cc2e5d91,Greg Horn,gregmainland@gmail.com,2014-08-30 17:23:04+02:00,Greg Horn,gregmainland@gmail.com,2014-08-30 15:23:04+00:00,False,gmail,gmail,* master,True,ghorn_debian-coinor-ipopt.git,ghorn/debian-coinor-ipopt.git,https://github.com/ghorn/debian-coinor-ipopt.git -6cc15e15ffa9e042c7add5e16ce128d1e0b08115,Hubert Boma Manilla,hmanilla@mozilla.com,2023-04-04 14:55:01+02:00,GitHub,noreply@github.com,2023-04-04 12:55:01+00:00,True,mozilla,github,* master,True,mozilla_source-map,mozilla/source-map,https://github.com/mozilla/source-map -edcd1b52471d2e7a273454ad954a13762c5d5e61,dbaile,dbaile@10be8a0b-0d30-0410-8b36-bd473e2d5c71,2008-04-01 23:37:30+00:00,dbaile,dbaile@10be8a0b-0d30-0410-8b36-bd473e2d5c71,2008-04-01 23:37:30+00:00,False,10be8a0b-0d30-0410-8b36-bd473e2d5c71,10be8a0b-0d30-0410-8b36-bd473e2d5c71,* master,True,jorgesca_garmintools.git,jorgesca/garmintools.git,https://github.com/jorgesca/garmintools.git -f658511e4a17e0eb860ba221691afc72dca27b65,Thomas Kluyver,thomas@kluyver.me.uk,2022-02-02 21:25:05+00:00,Thomas Kluyver,thomas@kluyver.me.uk,2022-02-02 21:25:05+00:00,False,kluyver,kluyver,* master,True,takluyver_entrypoints,takluyver/entrypoints,https://github.com/takluyver/entrypoints -b8c70fb03eb4d50fb119879f7571c0bbf3c59359,Daniel P. Berrangé,berrange@redhat.com,2021-09-03 15:22:01+01:00,Daniel P. Berrangé,berrange@redhat.com,2021-09-03 15:15:53+00:00,False,redhat,redhat,* main,True,libosinfo_osinfo-db-tools.git,libosinfo/osinfo-db-tools.git,https://gitlab.com/libosinfo/osinfo-db-tools.git -8cba7ea6a6bb2df551e545683da1ab11335e0af9,Alejandro Garrido Mota,garridomota@gmail.com,2011-12-12 14:36:34-04:30,Alejandro Garrido Mota,garridomota@gmail.com,2011-12-12 19:06:34+00:00,True,gmail,gmail,* master,True,mogaal_nomnom,mogaal/nomnom,https://github.com/mogaal/nomnom -58dda53aca9eb1ff92813ec56f0d8def49fe5872,Travis Tilley,ttilley@gmail.com,2016-11-02 07:51:28-04:00,GitHub,noreply@github.com,2016-11-02 11:51:28+00:00,True,gmail,github,* master,True,ttilley_fssm.git,ttilley/fssm.git,https://github.com/ttilley/fssm.git -2664d6a35f022f973ee225513ad11da01d373275,David Golden,dagolden@cpan.org,2013-06-09 15:05:19-04:00,David Golden,dagolden@cpan.org,2013-06-09 19:05:19+00:00,False,cpan,cpan,* master,True,dagolden_math-random-oo.git,dagolden/math-random-oo.git,https://github.com/dagolden/math-random-oo.git -178b9132f9da4ce70e6d63ca5242491fa28f15ef,Shawn M Moore,sartak@bestpractical.com,2010-12-08 15:14:17-05:00,Shawn M Moore,sartak@bestpractical.com,2010-12-08 20:14:17+00:00,False,bestpractical,bestpractical,* master,True,bestpractical_jifty-dbi.git,bestpractical/jifty-dbi.git,https://github.com/bestpractical/jifty-dbi.git +28221b08825e71d41643e63b91ac97bd78c708d5,Tarek Ziade,tarek@ziade.org,2015-05-04 09:17:25+00:00,Tarek Ziade,tarek@ziade.org,2015-05-04 09:17:25+00:00,False,ziade,ziade,* main,True,loads_molotov.git,loads/molotov.git,https://github.com/loads/molotov.git +d8e1857001506d6e338c11ef5b52b2915bd998c9,Lennart Regebro,regebro@gmail.com,2010-04-19 08:02:20+00:00,Lennart Regebro,regebro@gmail.com,2010-04-19 08:02:20+00:00,False,gmail,gmail,* master,True,zopefoundation_zope.testrunner,zopefoundation/zope.testrunner,https://github.com/zopefoundation/zope.testrunner +f613ee158ba882416f70abec238ab7fc77260f9b,David Warde-Farley,wardefar@iro.umontreal.ca,2015-02-10 18:12:47-05:00,David Warde-Farley,wardefar@iro.umontreal.ca,2015-02-10 23:15:45+00:00,False,iro,iro,* master,True,mila-iqia_picklable-itertools,mila-iqia/picklable-itertools,https://github.com/mila-iqia/picklable-itertools +0e334da79989f9e9e94edb4b9bdeff578063a3a1,joaquimrocha1,joaquimrocha1@bc369b68-a12e-11dd-8697-036594075916,2009-03-17 23:37:18+00:00,joaquimrocha1,joaquimrocha1@bc369b68-a12e-11dd-8697-036594075916,2009-03-17 23:37:18+00:00,False,bc369b68-a12e-11dd-8697-036594075916,bc369b68-a12e-11dd-8697-036594075916,* master,True,GNOME_ocrfeeder,GNOME/ocrfeeder,https://gitlab.gnome.org/GNOME/ocrfeeder +f702bd6e7a685a31694e83efceaf38433687a86f,Artyom Poptsov,poptsov.artyom@gmail.com,2013-05-12 01:53:22+04:00,Artyom Poptsov,poptsov.artyom@gmail.com,2013-05-11 21:53:22+00:00,False,gmail,gmail,* master,True,artyom-poptsov_guile-ssh.git,artyom-poptsov/guile-ssh.git,https://github.com/artyom-poptsov/guile-ssh.git +1755452e61de16b5eba5dc53ccf0cbebd49bf55d,Greg Horn,gregmainland@gmail.com,2014-08-30 17:11:59+02:00,Greg Horn,gregmainland@gmail.com,2014-08-30 15:11:59+00:00,False,gmail,gmail,* master,True,ghorn_debian-coinor-ipopt.git,ghorn/debian-coinor-ipopt.git,https://github.com/ghorn/debian-coinor-ipopt.git +741249b8a78c4da8d4482cabf7d72277643456bb,Nick Fitzgerald,fitzgen@gmail.com,2011-07-07 14:16:37-07:00,Nick Fitzgerald,fitzgen@gmail.com,2011-07-07 21:16:37+00:00,False,gmail,gmail,* master,True,mozilla_source-map,mozilla/source-map,https://github.com/mozilla/source-map +8f1d690558cbe9599f570219872072264919489d,dbaile,dbaile@10be8a0b-0d30-0410-8b36-bd473e2d5c71,2007-05-09 17:53:25+00:00,dbaile,dbaile@10be8a0b-0d30-0410-8b36-bd473e2d5c71,2007-05-09 17:53:25+00:00,False,10be8a0b-0d30-0410-8b36-bd473e2d5c71,10be8a0b-0d30-0410-8b36-bd473e2d5c71,* master,True,jorgesca_garmintools.git,jorgesca/garmintools.git,https://github.com/jorgesca/garmintools.git +88b81cc5abaa26f58287516df97ce82db9170caf,Thomas Kluyver,thomas@kluyver.me.uk,2019-01-07 18:02:38+00:00,Thomas Kluyver,thomas@kluyver.me.uk,2019-01-07 18:02:38+00:00,False,kluyver,kluyver,* master,True,takluyver_entrypoints,takluyver/entrypoints,https://github.com/takluyver/entrypoints +431b04500823a17d0265a38440a0b24d3979432e,Arjun Roy,arroy@redhat.com,2009-11-06 12:42:27-08:00,Arjun Roy,arroy@redhat.com,2009-11-06 20:42:27+00:00,False,redhat,redhat,* main,True,libosinfo_osinfo-db-tools.git,libosinfo/osinfo-db-tools.git,https://gitlab.com/libosinfo/osinfo-db-tools.git +4bb5534cd36b98c10db7dc12dd442314c8e08748,Alejandro Garrido Mota,garridomota@gmail.com,2011-04-10 23:37:35-04:30,Alejandro Garrido Mota,garridomota@gmail.com,2011-04-11 04:07:35+00:00,False,gmail,gmail,* master,True,mogaal_nomnom,mogaal/nomnom,https://github.com/mogaal/nomnom +3b180264ced15bf7ccfdbcd4d7c0f9d696267cec,Travis Tilley,ttilley@gmail.com,2009-08-09 09:43:47-04:00,Travis Tilley,ttilley@gmail.com,2009-08-09 13:43:47+00:00,False,gmail,gmail,* master,True,ttilley_fssm.git,ttilley/fssm.git,https://github.com/ttilley/fssm.git +54de22c123cb866ae7334ee9fb801b61b3dbdd25,David Golden,dagolden@cpan.org,2006-09-09 14:09:53+00:00,David Golden,dagolden@cpan.org,2006-09-09 14:09:53+00:00,False,cpan,cpan,* master,True,dagolden_math-random-oo.git,dagolden/math-random-oo.git,https://github.com/dagolden/math-random-oo.git +d7380cecc0965f9e8b47467a2a6e77941e25fcbb,David Glasser,glasser@bestpractical.com,2005-05-23 04:12:42+00:00,David Glasser,glasser@bestpractical.com,2005-05-23 04:12:42+00:00,False,bestpractical,bestpractical,* master,True,bestpractical_jifty-dbi.git,bestpractical/jifty-dbi.git,https://github.com/bestpractical/jifty-dbi.git 407f06318bb2224a518c33a104e6b8d7931a0406,Christian Hergert,chris@dronelabs.com,2011-02-04 23:12:29-08:00,Christian Hergert,chris@dronelabs.com,2011-02-05 07:12:29+00:00,False,dronelabs,dronelabs,* master,True,GNOME_gom.git,GNOME/gom.git,https://gitlab.gnome.org/GNOME/gom.git -0fedd1b44810c33fbcfe1fe7f976198bae247bf2,Jiri Pirko,jiri@resnulli.us,2015-04-02 12:31:28+02:00,Jiri Pirko,jiri@resnulli.us,2015-04-02 10:31:28+00:00,False,resnulli,resnulli,* master,True,jpirko_libndp.git,jpirko/libndp.git,https://github.com/jpirko/libndp.git -bd6870a643a32f2df684bd4c2186d897e9d90956,sylvain.le-gall,sylvain.le-gall@polytechnique.org,2012-06-13 02:22:25+02:00,sylvain.le-gall,sylvain.le-gall@polytechnique.org,2012-06-13 00:22:25+00:00,False,polytechnique,polytechnique,* master,True,gildor478_ocaml-expect.git,gildor478/ocaml-expect.git,https://github.com/gildor478/ocaml-expect.git -7147ea499581b17738a31207bc0e3af36f675574,Stefano Karapetsas,stefano@karapetsas.com,2012-03-07 22:25:48+01:00,Stefano Karapetsas,stefano@karapetsas.com,2012-03-07 21:25:48+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_mate-screensaver.git,mate-desktop/mate-screensaver.git,https://github.com/mate-desktop/mate-screensaver.git -f003ba40f29533ac684be95c5905ec0d214ecad6,Ryan Davis,ryand@zenspider.com,2017-07-17 15:44:40-08:00,Ryan Davis,ryand@zenspider.com,2017-07-17 23:44:40+00:00,False,zenspider,zenspider,* master,True,seattlerb_sexp_processor,seattlerb/sexp/processor,https://github.com/seattlerb/sexp_processor -3dec3acfaf458414dde56fe958f122d79aa68d11,Stefano Karapetsas,stefano@karapetsas.com,2012-04-24 11:02:25+02:00,Stefano Karapetsas,stefano@karapetsas.com,2012-04-24 09:02:25+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_caja-dropbox.git,mate-desktop/caja-dropbox.git,https://github.com/mate-desktop/caja-dropbox.git -fe53febbff0090941ea57791c56f8b62e8827aa1,Siu Kwan Lam,1929845+sklam@users.noreply.github.com,2023-12-07 12:56:30-06:00,Siu Kwan Lam,1929845+sklam@users.noreply.github.com,2023-12-07 18:56:30+00:00,True,users,users,* main,True,numba_llvmlite.git,numba/llvmlite.git,https://github.com/numba/llvmlite.git -03c25106ef436c024cca77bcb9260ab8aca6e96b,rbuj,robert.buj@gmail.com,2020-11-28 21:51:32+01:00,raveit65,mate@raveit.de,2020-12-06 17:40:51+00:00,False,gmail,raveit,* master,True,mate-desktop_libmateweather.git,mate-desktop/libmateweather.git,https://github.com/mate-desktop/libmateweather.git -ef1222475aca542edc04f728631be50ca2ac22ae,Jörg Thalheim,Mic92@users.noreply.github.com,2024-01-13 12:18:58+01:00,GitHub,noreply@github.com,2024-01-13 11:18:58+00:00,True,users,github,* master,True,Mic92_python-mpd2,Mic92/python-mpd2,https://github.com/Mic92/python-mpd2 -d6aafe3f608340e14d24202913c542a47fa97014,Denis Defreyne,git@denisdefreyne.com,2023-11-17 09:12:51+01:00,Denis Defreyne,git@denisdefreyne.com,2023-11-17 08:12:51+00:00,False,denisdefreyne,denisdefreyne,* main,True,ddfreyne_cri,ddfreyne/cri,https://github.com/ddfreyne/cri -27b76d56476b3626e44641e195b8ef573ee69042,Jason R. Coombs,jaraco@jaraco.com,2024-01-07 12:50:22-05:00,Jason R. Coombs,jaraco@jaraco.com,2024-01-07 17:50:22+00:00,True,jaraco,jaraco,* main,True,jaraco_keyring,jaraco/keyring,https://github.com/jaraco/keyrings.alt -0b2ad33aa9ca4c029b5d8d0788f80137ec85a8c1,Alejandro Garrido Mota,garridomota@gmail.com,2013-06-08 14:21:29-04:30,Alejandro Garrido Mota,garridomota@gmail.com,2013-06-08 18:51:29+00:00,True,gmail,gmail,* master,True,mogaal_cclive,mogaal/cclive,https://github.com/mogaal/cclive -767e055ff724b0a8bab1d4203a0e420da5a9c55a,Paul McEnery,pmcenery@gmail.com,2017-09-05 16:15:21+01:00,Paul McEnery,pmcenery@gmail.com,2017-09-05 15:15:21+00:00,False,gmail,gmail,* master,True,pmcenery_ipheth-debian,pmcenery/ipheth-debian,https://github.com/pmcenery/ipheth-debian -f8ade75e5e350d52ba39ea6cabc76763a00e6a3d,Luca Coelho,luciano.coelho@intel.com,2020-10-27 09:50:53+02:00,Johannes Berg,johannes.berg@intel.com,2020-10-27 07:53:11+00:00,False,intel,intel,* master,True,pub_scm_linux_kernel_git_jberg_iw.git,pub/scm/linux/kernel/git/jberg/iw.git,https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git -7b1c56b549514b575223d96e0d5691013f968ce1,Jon Parise,jon@indelible.org,2023-04-03 08:58:18-07:00,GitHub,noreply@github.com,2023-04-03 15:58:18+00:00,False,indelible,github,* main,True,PyCQA_pep8-naming,PyCQA/pep8-naming,https://github.com/PyCQA/pep8-naming -c5dbcb4f349046389828ccf645a2e9446f2bba72,John Sirois,john.sirois@gmail.com,2024-02-13 21:24:16-08:00,GitHub,noreply@github.com,2024-02-14 05:24:16+00:00,False,gmail,github,* main,True,pantsbuild_pex.git,pantsbuild/pex.git,https://github.com/pantsbuild/pex.git -f3f8b99311f690a959a9b3dd55d1e67d564d3506,Hervé Pagès,hpages.on.github@gmail.com,2021-04-22 22:13:22-07:00,Hervé Pagès,hpages.on.github@gmail.com,2021-04-23 05:13:22+00:00,False,gmail,gmail,* devel,True,Bioconductor_AnnotationDbi.git,Bioconductor/AnnotationDbi.git,https://github.com/Bioconductor/AnnotationDbi.git -9b7047d8e5ad6e5a8bc0c1d7ebd26e8959b3b20a,Rato,ratoaq2@users.noreply.github.com,2019-02-17 18:19:19+01:00,Rato,ratoaq2@users.noreply.github.com,2019-02-17 17:19:45+00:00,True,users,users,* main,True,Diaoul_subliminal.git,Diaoul/subliminal.git,https://github.com/Diaoul/subliminal.git -f5eb92898637454343b177734b258f588dc2ca20,Christian Clauss,cclauss@me.com,2024-03-03 17:42:45+01:00,GitHub,noreply@github.com,2024-03-03 16:42:45+00:00,False,me,github,* main,True,celery_django-celery-beat,celery/django-celery-beat,https://github.com/celery/django-celery-beat +04c2d9d32a7dad6a4830bca132fc4ca72b276ac6,Jiri Pirko,jiri@resnulli.us,2013-03-11 09:22:54+01:00,Jiri Pirko,jiri@resnulli.us,2013-03-15 14:32:12+00:00,False,resnulli,resnulli,* master,True,jpirko_libndp.git,jpirko/libndp.git,https://github.com/jpirko/libndp.git +7f279d545d215c1782153cd423614c5a52c66022,sylvain.le-gall,sylvain.le-gall@polytechnique.org,2010-09-07 18:03:42+02:00,sylvain.le-gall,sylvain.le-gall@polytechnique.org,2010-09-07 16:03:42+00:00,False,polytechnique,polytechnique,* master,True,gildor478_ocaml-expect.git,gildor478/ocaml-expect.git,https://github.com/gildor478/ocaml-expect.git +fff4ecc82f2bcfa7427596e7ad9c3769fcab040b,Perberos,perberos@gmail.com,2011-11-04 22:16:15-03:00,Perberos,perberos@gmail.com,2011-11-05 01:16:15+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-screensaver.git,mate-desktop/mate-screensaver.git,https://github.com/mate-desktop/mate-screensaver.git +98c9ec5879e825238ac671287e237497eef068e6,Ryan Davis,ryand@zenspider.com,2008-09-16 23:45:43-08:00,Ryan Davis,ryand@zenspider.com,2008-09-17 07:45:43+00:00,False,zenspider,zenspider,* master,True,seattlerb_sexp_processor,seattlerb/sexp/processor,https://github.com/seattlerb/sexp_processor +d367ab28270220c1378d2a7ca9bda4a9012c76cb,Stefano Karapetsas,stefano@karapetsas.com,2012-03-26 23:33:33+02:00,Stefano Karapetsas,stefano@karapetsas.com,2012-03-26 21:33:33+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_caja-dropbox.git,mate-desktop/caja-dropbox.git,https://github.com/mate-desktop/caja-dropbox.git +fdcef3372b44572596ddccbc663cdfcef72e4db4,Siu Kwan Lam,michael.lam.sk@gmail.com,2014-08-07 10:17:03-05:00,Siu Kwan Lam,michael.lam.sk@gmail.com,2014-08-07 15:17:03+00:00,False,gmail,gmail,* main,True,numba_llvmlite.git,numba/llvmlite.git,https://github.com/numba/llvmlite.git +fe8aea1c3b5348347633da18a02b0bffd3b266a1,Perberos,perberos@gmail.com,2011-12-01 21:42:39-03:00,Perberos,perberos@gmail.com,2011-12-02 00:42:39+00:00,False,gmail,gmail,* master,True,mate-desktop_libmateweather.git,mate-desktop/libmateweather.git,https://github.com/mate-desktop/libmateweather.git +31862f7b50f32589826f7c606e7962931e7fdd8e,J. Alexander Treuman,jat@spatialrift.net,2008-02-27 18:09:52-05:00,J. Alexander Treuman,jat@spatialrift.net,2008-02-27 23:09:52+00:00,False,spatialrift,spatialrift,* master,True,Mic92_python-mpd2,Mic92/python-mpd2,https://github.com/Mic92/python-mpd2 +4bf4c10f5409f3d6e7a2217faffcf7151cb37e28,Denis Defreyne,denis.defreyne@stoneship.org,2009-02-03 14:27:40+01:00,Denis Defreyne,denis.defreyne@stoneship.org,2009-02-03 13:27:40+00:00,False,stoneship,stoneship,* main,True,ddfreyne_cri,ddfreyne/cri,https://github.com/ddfreyne/cri +3f69436eb18d635f7573c01eb9a522b7b7dfe8ac,Kang,jobo.zh@gmail.com,2009-08-14 17:36:27+08:00,Kang,jobo.zh@gmail.com,2009-08-14 09:36:27+00:00,False,gmail,gmail,* main,True,jaraco_keyring,jaraco/keyring,https://github.com/jaraco/keyrings.alt +5d084bb99e8ed5ec6e3e68611ad1813be9c505bc,Alejandro Garrido Mota,garridomota@gmail.com,2009-11-20 19:08:30-04:30,Alejandro Garrido Mota,garridomota@gmail.com,2009-11-20 23:38:30+00:00,False,gmail,gmail,* master,True,mogaal_cclive,mogaal/cclive,https://github.com/mogaal/cclive +7603160756b362f83c0f520d15142b1b4d992fa3,Paul McEnery,pmcenery@gmail.com,2010-01-24 17:47:11+00:00,Paul McEnery,pmcenery@gmail.com,2010-01-24 17:47:11+00:00,False,gmail,gmail,* master,True,pmcenery_ipheth-debian,pmcenery/ipheth-debian,https://github.com/pmcenery/ipheth-debian +c6b01938dc01b94f349d171de431490f4ee863c2,Johannes Berg,johannes@sipsolutions.net,2008-09-16 19:50:22+02:00,Johannes Berg,johannes@sipsolutions.net,2008-09-16 17:50:22+00:00,False,sipsolutions,sipsolutions,* master,True,pub_scm_linux_kernel_git_jberg_iw.git,pub/scm/linux/kernel/git/jberg/iw.git,https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git +99b8b48a8090d31f558183f5a3b09df7bc6bcbd0,Florent Xicluna,florent.xicluna@gmail.com,2013-02-09 20:44:08+01:00,Florent Xicluna,florent.xicluna@gmail.com,2013-02-09 19:44:08+00:00,False,gmail,gmail,* main,True,PyCQA_pep8-naming,PyCQA/pep8-naming,https://github.com/PyCQA/pep8-naming +00f34542ec7b2701b57d6a73450a8dda485a441b,jsirois,jsirois@twitter.com,2013-05-06 11:39:36-06:00,jsirois,jsirois@twitter.com,2013-05-06 17:39:36+00:00,False,twitter,twitter,* main,True,pantsbuild_pex.git,pantsbuild/pex.git,https://github.com/pantsbuild/pex.git +3683f9f261e8a21b3638f3587dedc6d16c0068af,Herve Pages,hpages@fhcrc.org,2007-08-16 20:54:50+00:00,Herve Pages,hpages@fhcrc.org,2007-08-16 20:54:50+00:00,False,fhcrc,fhcrc,* devel,True,Bioconductor_AnnotationDbi.git,Bioconductor/AnnotationDbi.git,https://github.com/Bioconductor/AnnotationDbi.git +9f298366a92700cb658e26c16b34e5a8ee0c21bd,Antoine Bertin,diaoulael@gmail.com,2011-07-05 02:27:11+02:00,Antoine Bertin,diaoulael@gmail.com,2011-07-05 00:27:11+00:00,False,gmail,gmail,* main,True,Diaoul_subliminal.git,Diaoul/subliminal.git,https://github.com/Diaoul/subliminal.git +32e8bd52b2b3e78160f780ef099964913bfaf93e,Ask Solem,ask@celeryproject.org,2016-08-03 19:44:29-07:00,Ask Solem,ask@celeryproject.org,2016-08-04 02:44:29+00:00,False,celeryproject,celeryproject,* main,True,celery_django-celery-beat,celery/django-celery-beat,https://github.com/celery/django-celery-beat 7b353cd03c9a6c582d377e2f7414c3d67ccba980,Weng Xuetian,wengxt@gmail.com,2011-12-22 12:47:54+08:00,Weng Xuetian,wengxt@gmail.com,2011-12-22 04:47:54+00:00,False,gmail,gmail,* master,True,fcitx_fcitx-libpinyin,fcitx/fcitx-libpinyin,https://github.com/fcitx/fcitx-libpinyin -ebcd3df8a5becaaa01ca15d094eed2daa2ade583,Michael Catanzaro,mcatanzaro@redhat.com,2022-07-26 14:07:13-05:00,Michael Catanzaro,mcatanzaro@redhat.com,2022-07-29 20:32:24+00:00,False,redhat,redhat,* master,True,GNOME_glib-networking,GNOME/glib-networking,https://gitlab.gnome.org/GNOME/glib-networking -13252074df08e3a4badf4585ffeda6e475e206b5,Mike Taves,mwtoews@gmail.com,2023-04-20 23:18:55+12:00,GitHub,noreply@github.com,2023-04-20 11:18:55+00:00,False,gmail,github,* main,True,shapely_shapely.git,shapely/shapely.git,https://github.com/shapely/shapely.git -b063dbf7c0383d642bc16a61d4c70b9bfa05911f,Arseniy Alekseyev,aalekseyev@janestreet.com,2021-01-05 11:12:52+00:00,Arseniy Alekseyev,aalekseyev@janestreet.com,2021-01-05 11:12:52+00:00,False,janestreet,janestreet,* master,True,janestreet_sexplib.git,janestreet/sexplib.git,https://github.com/janestreet/sexplib.git -4f8065aa3f68a3fec31286030b220cb1042348b3,lord63,lord63.j@gmail.com,2020-06-02 23:09:50+08:00,lord63,lord63.j@gmail.com,2020-06-02 15:09:50+00:00,False,gmail,gmail,* master,True,lord63_tldr.py,lord63/tldr.py,https://github.com/lord63/tldr.py -5e5f6783777172c234d20ffa5fefe7319f7c3a99,Steven Myint,git@stevenmyint.com,2017-10-22 09:29:50-07:00,Steven Myint,git@stevenmyint.com,2017-10-22 16:29:50+00:00,False,stevenmyint,stevenmyint,* master,True,myint_perceptualdiff,myint/perceptualdiff,https://github.com/myint/perceptualdiff -282d385b6a56af388f7a97720bb9136cba608cb0,snare,snare@ho.ax,2016-05-15 15:53:52+10:00,snare,snare@ho.ax,2016-05-15 05:53:52+00:00,False,ho,ho,* master,True,snare_scruffy,snare/scruffy,https://github.com/snare/scruffy -0617be73eb3ac2308b5958b2f53c5ca96241ca7d,Dwight Aplevich,aplevich@uwaterloo.ca,2024-01-01 14:10:31-05:00,Dwight Aplevich,aplevich@uwaterloo.ca,2024-01-01 19:10:31+00:00,False,uwaterloo,uwaterloo,* master,True,aplevich_dpic,aplevich/dpic,https://gitlab.com/aplevich/dpic +1eb09dd740170597aaa241da5c1693ee013ce275,Dan Winship,danw@gnome.org,2010-08-30 20:48:10-04:00,Dan Winship,danw@gnome.org,2010-08-31 00:48:10+00:00,False,gnome,gnome,* master,True,GNOME_glib-networking,GNOME/glib-networking,https://gitlab.gnome.org/GNOME/glib-networking +1fda2de1df1cef55b6c24bf009c81030643dde68,seang,seang@b426a367-1105-0410-b9ff-cdf4ab011145,2007-04-20 17:25:00+00:00,seang,seang@b426a367-1105-0410-b9ff-cdf4ab011145,2007-04-20 17:25:00+00:00,False,b426a367-1105-0410-b9ff-cdf4ab011145,b426a367-1105-0410-b9ff-cdf4ab011145,* main,True,shapely_shapely.git,shapely/shapely.git,https://github.com/shapely/shapely.git +987abdc4bd72e00ec48243fa38f5089f787a3bf3,Jeremie Dimino,jdimino@janestreet.com,2013-01-28 15:02:22-05:00,Jeremie Dimino,jdimino@janestreet.com,2013-01-28 20:02:22+00:00,False,janestreet,janestreet,* master,True,janestreet_sexplib.git,janestreet/sexplib.git,https://github.com/janestreet/sexplib.git +e77b39fdbea2a86f5388611ba5f4bdef51c64c5a,lord63,lord63.j@gmail.com,2015-09-10 11:10:54+08:00,lord63,lord63.j@gmail.com,2015-09-10 03:10:54+00:00,False,gmail,gmail,* master,True,lord63_tldr.py,lord63/tldr.py,https://github.com/lord63/tldr.py +8c473ba1ed951381b6ba116634464d8d89345c30,yeehector,yeehector@771a4cb9-eb13-0410-b752-9f1360e2f071,2006-05-19 03:28:53+00:00,yeehector,yeehector@771a4cb9-eb13-0410-b752-9f1360e2f071,2006-05-19 03:28:53+00:00,False,771a4cb9-eb13-0410-b752-9f1360e2f071,771a4cb9-eb13-0410-b752-9f1360e2f071,* master,True,myint_perceptualdiff,myint/perceptualdiff,https://github.com/myint/perceptualdiff +b0ec3f560d63741ce00fedfd2aa2d9ab2a21410e,snare,snare@ho.ax,2013-11-27 01:07:10+11:00,snare,snare@ho.ax,2013-11-26 14:07:10+00:00,False,ho,ho,* master,True,snare_scruffy,snare/scruffy,https://github.com/snare/scruffy +d5ea202d675401bef2a8157fbce4ccbb109e297d,J.Dwight Aplevich,aplevich@uwaterloo.ca,2009-12-26 17:00:00+00:00,J.Dwight Aplevich,aplevich@uwaterloo.ca,2009-12-26 17:00:00+00:00,False,uwaterloo,uwaterloo,* master,True,aplevich_dpic,aplevich/dpic,https://gitlab.com/aplevich/dpic c0e1e2b4dc3760e058acd3a7bdb9dca6cfe0c3f0,Aaron Plattner,aplattner@nvidia.com,2013-05-02 08:07:42-07:00,Aaron Plattner,aplattner@nvidia.com,2013-05-02 15:44:21+00:00,False,nvidia,nvidia,* main,True,NVIDIA_nvidia-persistenced,NVIDIA/nvidia-persistenced,https://github.com/NVIDIA/nvidia-persistenced -cae016b06cd543222989c3fb9c33ed1d6af64d9d,rncbc,rncbc@rncbc.org,2023-09-06 19:24:15+01:00,rncbc,rncbc@rncbc.org,2023-09-06 18:24:15+00:00,False,rncbc,rncbc,* main,True,rncbc_drumkv1.git,rncbc/drumkv1.git,https://github.com/rncbc/drumkv1.git -395dd48da554425aca55d0f0a1148b09ebb632fd,Micha Lenk,micha@lenk.info,2013-11-05 09:30:57+01:00,Micha Lenk,micha@lenk.info,2013-11-05 08:30:57+00:00,False,lenk,lenk,* master,True,bombadil_mod_proxy_msrpc,bombadil/mod/proxy/msrpc,https://github.com/bombadil/mod_proxy_msrpc -5aed6e9cc186a06846c6d159ae5998bc32bba390,Ali-Akber Saifee,ali@indydevs.org,2024-02-11 10:08:54-08:00,Ali-Akber Saifee,ali@indydevs.org,2024-02-11 18:08:54+00:00,False,indydevs,indydevs,* master,True,alisaifee_flask-limiter.git,alisaifee/flask-limiter.git,https://github.com/alisaifee/flask-limiter.git -06084c7ccffb8118ddd9387fe1dcebde355f8db5,Paul Kehrer,paul.l.kehrer@gmail.com,2022-01-07 16:55:23-06:00,GitHub,noreply@github.com,2022-01-07 22:55:23+00:00,False,gmail,github,* main,True,pyca_pynacl,pyca/pynacl,https://github.com/pyca/pynacl -7df6b0a3771e97556d058dbe54636a27db9f6b12,William Storey,wstorey@maxmind.com,2023-11-03 08:41:02-07:00,GitHub,noreply@github.com,2023-11-03 15:41:02+00:00,True,maxmind,github,* main,True,maxmind_MaxMind-DB-Reader-python,maxmind/MaxMind-DB-Reader-python,https://github.com/maxmind/MaxMind-DB-Reader-python -251e9241225b643acefe125d5d7444f8ff19f77e,Patryk Szczepański,52240554+PSzczepanski996@users.noreply.github.com,2022-07-08 21:52:10+02:00,GitHub,noreply@github.com,2022-07-08 19:52:10+00:00,False,users,github,* master,True,notanumber_xapian-haystack,notanumber/xapian-haystack,https://github.com/notanumber/xapian-haystack -d5a13b0d5f156ac9076fbc244f49fb9d48af9bbc,Ewald de Wit,ewald.de.wit@gmail.com,2023-11-27 16:09:37+01:00,Ewald de Wit,ewald.de.wit@gmail.com,2023-11-27 15:09:37+00:00,False,gmail,gmail,* master,True,erdewit_nest_asyncio,erdewit/nest/asyncio,https://github.com/erdewit/nest_asyncio -3d95dbabf2b2e6c4d69f94e00eb5e7cfa3cb2180,Paul Tremberth,paul.tremberth@gmail.com,2016-05-04 18:38:27+02:00,Paul Tremberth,paul.tremberth@gmail.com,2016-05-04 16:41:03+00:00,False,gmail,gmail,* master,True,scrapy-plugins_scrapy-djangoitem,scrapy-plugins/scrapy-djangoitem,https://github.com/scrapy-plugins/scrapy-djangoitem -67f986aeff0b3687a84258ef03b4fbf0f8e71472,rncbc,rncbc@rncbc.org,2023-09-06 19:24:15+01:00,rncbc,rncbc@rncbc.org,2023-09-06 18:24:15+00:00,False,rncbc,rncbc,* main,True,rncbc_samplv1.git,rncbc/samplv1.git,https://github.com/rncbc/samplv1.git -9fd82c6c57cfbdc0f0cad9d1f7a206cdd5f0fb72,Sebastian Schmittner,Echsecutor@users.noreply.github.com,2019-03-13 14:15:44+01:00,GitHub,noreply@github.com,2019-03-13 13:15:44+00:00,True,users,github,* master,True,Echsecutor_coffee,Echsecutor/coffee,https://github.com/Echsecutor/coffee -83538a7b5b46cac4e6bb1a88c27457883ec77f2f,Thomas Kriechbaumer,thomas@kriechbaumer.name,2020-07-29 12:40:26+02:00,Phil Jones,philip.graham.jones@googlemail.com,2020-07-29 16:36:10+00:00,False,kriechbaumer,googlemail,* master,True,python-hyper_hyperframe.git,python-hyper/hyperframe.git,https://github.com/python-hyper/hyperframe.git -b0566667801d72f5f1857a21d057f921d5544d1d,Jordan Borean,jborean93@gmail.com,2022-11-04 09:13:07+10:00,Jordan Borean,jborean93@gmail.com,2022-11-03 23:30:55+00:00,False,gmail,gmail,* main,True,pythongssapi_python-gssapi,pythongssapi/python-gssapi,https://github.com/pythongssapi/python-gssapi -6483d9c370d24faec4d36c3d774cd7c00c8edb20,Eugene Pimenov,libc@mac.com,2010-11-23 12:17:43+03:00,Eugene Pimenov,libc@mac.com,2010-11-23 09:17:43+00:00,False,mac,mac,* master,True,libc_em-redis,libc/em-redis,https://github.com/libc/em-redis -48e47b7c4deb29d0ae4db18a714e2fbec9366fdf,pmqs,pmqs@cpan.org,2023-09-10 10:02:26+01:00,pmqs,pmqs@cpan.org,2023-09-10 09:02:26+00:00,False,cpan,cpan,* master,True,pmqs_BerkeleyDB.git,pmqs/BerkeleyDB.git,https://github.com/pmqs/BerkeleyDB.git +3f953ed9c895fe8ff4f0d3873ecef04de46606c3,rncbc,rncbc@be9cb035-7082-4f78-a559-74415fa64963,2012-10-03 19:39:12+00:00,rncbc,rncbc@be9cb035-7082-4f78-a559-74415fa64963,2012-10-03 19:39:12+00:00,False,be9cb035-7082-4f78-a559-74415fa64963,be9cb035-7082-4f78-a559-74415fa64963,* main,True,rncbc_drumkv1.git,rncbc/drumkv1.git,https://github.com/rncbc/drumkv1.git +082112a71fab8a24141d150bbfa0761e8aa3dfc8,Micha Lenk,micha@lenk.info,2013-09-22 14:09:59+02:00,Micha Lenk,micha@lenk.info,2013-09-22 12:09:59+00:00,False,lenk,lenk,* master,True,bombadil_mod_proxy_msrpc,bombadil/mod/proxy/msrpc,https://github.com/bombadil/mod_proxy_msrpc +ffbe3db5df5c3514cee4759fbb152f445612c68c,Ali-Akber Saifee,ali@indydevs.org,2014-02-10 20:24:08+08:00,Ali-Akber Saifee,ali@indydevs.org,2014-02-10 12:24:08+00:00,False,indydevs,indydevs,* master,True,alisaifee_flask-limiter.git,alisaifee/flask-limiter.git,https://github.com/alisaifee/flask-limiter.git +753617bb38632c22cadc02e58238bfb247f61a00,Donald Stufft,donald.stufft@gmail.com,2013-02-21 22:53:58-05:00,Donald Stufft,donald.stufft@gmail.com,2013-02-22 03:53:58+00:00,False,gmail,gmail,* main,True,pyca_pynacl,pyca/pynacl,https://github.com/pyca/pynacl +d1788f50e7785c9fa5a4f3504018d6e1ba62db8b,Gregory Oschwald,goschwald@maxmind.com,2013-09-25 15:50:08-07:00,Gregory Oschwald,goschwald@maxmind.com,2013-09-25 22:50:08+00:00,False,maxmind,maxmind,* main,True,maxmind_MaxMind-DB-Reader-python,maxmind/MaxMind-DB-Reader-python,https://github.com/maxmind/MaxMind-DB-Reader-python +39101febb74c76df92b570c17cb5611d7d5c4dd5,David Sauve,dnsauve@ubuntu.localdomain,2009-06-19 09:01:12-04:00,David Sauve,dnsauve@ubuntu.localdomain,2009-06-19 13:01:12+00:00,False,ubuntu,ubuntu,* master,True,notanumber_xapian-haystack,notanumber/xapian-haystack,https://github.com/notanumber/xapian-haystack +5eba4a7f90948a93f51daa8aa46b947e2bced2e7,erdewit,ewald.de.wit@gmail.com,2018-09-07 11:18:09+02:00,erdewit,ewald.de.wit@gmail.com,2018-09-07 09:18:09+00:00,False,gmail,gmail,* master,True,erdewit_nest_asyncio,erdewit/nest/asyncio,https://github.com/erdewit/nest_asyncio +c155bd5b9b98a2e8f94bfbe8f487aa22e38f27d5,Julia Medina,who.knows.shia@gmail.com,2015-04-17 17:17:12-03:00,Julia Medina,who.knows.shia@gmail.com,2015-04-18 18:00:08+00:00,False,gmail,gmail,* master,True,scrapy-plugins_scrapy-djangoitem,scrapy-plugins/scrapy-djangoitem,https://github.com/scrapy-plugins/scrapy-djangoitem +b4d3254d9bf6eb3aaa752725a4b0187a1f2d3742,rncbc,rncbc@b8ad5884-86ea-42fc-91ed-2b8b5c17ad06,2012-09-02 00:47:22+00:00,rncbc,rncbc@b8ad5884-86ea-42fc-91ed-2b8b5c17ad06,2012-09-02 00:47:22+00:00,False,b8ad5884-86ea-42fc-91ed-2b8b5c17ad06,b8ad5884-86ea-42fc-91ed-2b8b5c17ad06,* main,True,rncbc_samplv1.git,rncbc/samplv1.git,https://github.com/rncbc/samplv1.git +cfdb000e1338eca094973ed95ac39f7fdf200a15,Sebastian Schmittner,sebastian.schmittner@posteo.de,2014-12-10 12:21:52+01:00,Sebastian Schmittner,sebastian.schmittner@posteo.de,2014-12-10 11:21:52+00:00,False,posteo,posteo,* master,True,Echsecutor_coffee,Echsecutor/coffee,https://github.com/Echsecutor/coffee +e56cdee58fc331cb6bbcf861b907161b9929c209,Cory Benfield,lukasaoz@gmail.com,2015-04-12 21:42:52-04:00,Cory Benfield,lukasaoz@gmail.com,2015-04-13 01:42:52+00:00,False,gmail,gmail,* master,True,python-hyper_hyperframe.git,python-hyper/hyperframe.git,https://github.com/python-hyper/hyperframe.git +22242c9c59c1237399d7f31616e67220e5e03ee4,Solly Ross,sross@redhat.com,2014-10-01 18:03:36-04:00,Solly Ross,sross@redhat.com,2014-10-06 00:24:23+00:00,False,redhat,redhat,* main,True,pythongssapi_python-gssapi,pythongssapi/python-gssapi,https://github.com/pythongssapi/python-gssapi +e8bf95098dd7e670c747e159833268145fa434ea,Jonathan Broad,jonathan@relativepath.org,2009-04-28 23:07:12-05:00,Jonathan Broad,jonathan@relativepath.org,2009-04-29 04:07:12+00:00,False,relativepath,relativepath,* master,True,libc_em-redis,libc/em-redis,https://github.com/libc/em-redis +9f4d265a04c8962f4436f8c532047a47518e39b9,pmqs,pmqs@cpan.org,1997-10-23 12:12:38+01:00,pmqs,pmqs@cpan.org,1997-10-23 11:12:38+00:00,False,cpan,cpan,* master,True,pmqs_BerkeleyDB.git,pmqs/BerkeleyDB.git,https://github.com/pmqs/BerkeleyDB.git 75c73941df74ae0c7c7e229dde5e8707d4c9f0ea,Gabor Szabo,szabgab@gmail.com,2012-12-26 22:43:09+02:00,Gabor Szabo,szabgab@gmail.com,2012-12-26 20:43:09+00:00,False,gmail,gmail,* master,True,manwar_Test-Strict.git,manwar/Test-Strict.git,https://github.com/manwar/Test-Strict.git -a4f0c3e86a794fa510923352d1fdbc54e0f314e5,Jens Vagelpohl,jens@netz.ooo,2021-03-18 12:59:02+01:00,GitHub,noreply@github.com,2021-03-18 11:59:02+00:00,True,netz,github,* master,True,zopefoundation_zope.component,zopefoundation/zope.component,https://github.com/zopefoundation/zope.component -5cea882d0fe20effdba2054c49af827ab8e1af01,Michael Webster,miketwebster@gmail.com,2022-09-10 15:22:07-04:00,Michael Webster,miketwebster@gmail.com,2022-09-10 19:22:07+00:00,False,gmail,gmail,* master,True,linuxmint_nemo.git,linuxmint/nemo.git,https://github.com/linuxmint/nemo.git -6845ed50e13f456ecd115bcf9de666a58a1529dc,Mariano Vallés,zucaritas@gmail.com,2019-01-28 09:16:56-03:00,GitHub,noreply@github.com,2019-01-28 12:16:56+00:00,True,gmail,github,* master,True,wooga_eredis.git,wooga/eredis.git,https://github.com/wooga/eredis.git -0af269506fef936b5e2664c7a1b1fffb7daf42e8,Alexandre Viau,alexandre@alexandreviau.net,2019-11-25 11:14:03-05:00,GitHub,noreply@github.com,2019-11-25 16:14:03+00:00,True,alexandreviau,github,* master,True,ReAzem_python-pass.git,ReAzem/python-pass.git,https://github.com/ReAzem/python-pass.git -175a6532ff530a317b4253460640edba0e4211c6,Clement Lefebvre,clement.lefebvre@linuxmint.com,2018-05-07 15:20:48+01:00,Clement Lefebvre,clement.lefebvre@linuxmint.com,2018-05-07 14:20:48+00:00,False,linuxmint,linuxmint,* master,True,linuxmint_flags.git,linuxmint/flags.git,https://github.com/linuxmint/flags.git -14955b41b6b98a7a91439ebfb93124c45aaa3e6b,Graham Knapp,32717635+dancergraham@users.noreply.github.com,2023-10-06 11:54:31+02:00,GitHub,noreply@github.com,2023-10-06 09:54:31+00:00,False,users,github,* master,True,rubik_radon.git,rubik/radon.git,https://github.com/rubik/radon.git -7c73cf17150830d8743d033ca9d2e33d119ed4f9,Mario Lang,mlang@delysid.org,2013-09-06 14:29:31+02:00,Mario Lang,mlang@delysid.org,2013-09-06 12:29:31+00:00,False,delysid,delysid,* master,True,mlang_yatm.git,mlang/yatm.git,https://github.com/mlang/yatm.git -ce63e3f756ee14839d50f4995e87c7e37dcb7941,Thomas Kemmer,tkemmer@computer.org,2022-04-03 20:51:28+02:00,Thomas Kemmer,tkemmer@computer.org,2022-04-03 18:51:28+00:00,False,computer,computer,* master,True,tkem_mopidy-dleyna.git,tkem/mopidy-dleyna.git,https://github.com/tkem/mopidy-dleyna.git -2b7a461c8e3dd9afdf7db8d8fdde9c110b2373af,Oleg Smirnov,osmirnov@gmail.com,2018-03-06 09:26:39+02:00,GitHub,noreply@github.com,2018-03-06 07:26:39+00:00,True,gmail,github,* master,True,ratt-ru_cassbeam,ratt-ru/cassbeam,https://github.com/ratt-ru/cassbeam -c184167da0b6f03d75e9ba197ce80aa15bc72ad5,Stoney Jackson,dr.stoney@gmail.com,2015-06-23 09:56:44-04:00,Stoney Jackson,dr.stoney@gmail.com,2015-06-23 13:56:44+00:00,False,gmail,gmail,* master,True,Archive_mousetrap,Archive/mousetrap,https://gitlab.gnome.org/Archive/mousetrap -d95c5ec51a665c00706e7e70c5a7ae3d77a79932,Thomas Kluyver,takowl@gmail.com,2016-10-09 21:30:45+01:00,GitHub,noreply@github.com,2016-10-09 20:30:45+00:00,True,gmail,github,* master,True,jupyter_testpath.git,jupyter/testpath.git,https://github.com/jupyter/testpath.git -8285cabe5934d3539a6b3d0d9f7c9decde0ae6e6,Aliaksei Urbanski,aliaksei.urbanski@gmail.com,2024-01-17 05:25:02+03:00,GitHub,noreply@github.com,2024-01-17 02:25:02+00:00,False,gmail,github,* master,True,aio-libs_yarl.git,aio-libs/yarl.git,https://github.com/aio-libs/yarl.git -2aaa4d69341e2a51e5df36da106775f6ccffbc4f,Dmitry Shachnev,mitya57@gmail.com,2023-01-16 23:01:58+04:00,Dmitry Shachnev,mitya57@gmail.com,2023-01-16 19:01:58+00:00,False,gmail,gmail,* master,True,retext-project_pymarkups.git,retext-project/pymarkups.git,https://github.com/retext-project/pymarkups.git -d63ce8c839a80d2a6f5de9785ae50f494fa3de97,Stefano Karapetsas,stefano@karapetsas.com,2012-02-23 23:11:53+01:00,Stefano Karapetsas,stefano@karapetsas.com,2012-02-23 22:11:53+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_mate-menus.git,mate-desktop/mate-menus.git,https://github.com/mate-desktop/mate-menus.git -ece62c00c7a55b00bfdd395056090aa92cb68dc0,Brad Bowman,bsb@strategicdata.com.au,2013-09-23 10:29:02+10:00,Brad Bowman,bsb@strategicdata.com.au,2013-09-23 00:29:02+00:00,False,strategicdata,strategicdata,* master,True,bowman_CGI-Expand.git,bowman/CGI-Expand.git,https://github.com/bowman/CGI-Expand.git -0b20aef0073077cbb866f0a822c9008138b3f783,Kjetil Kjernsmo,kjetil@kjernsmo.net,2021-06-18 01:09:29+02:00,Kjetil Kjernsmo,kjetil@kjernsmo.net,2021-06-17 23:09:29+00:00,False,kjernsmo,kjernsmo,* master,True,kjetilk_RDF-LinkedData.git,kjetilk/RDF-LinkedData.git,https://github.com/kjetilk/RDF-LinkedData.git +dea3f4c9f01d4b608d377faf21bc6afa74b3fdf0,Tres Seaver,tseaver@palladion.com,2006-04-04 15:29:25+00:00,Tres Seaver,tseaver@palladion.com,2006-04-04 15:29:25+00:00,False,palladion,palladion,* master,True,zopefoundation_zope.component,zopefoundation/zope.component,https://github.com/zopefoundation/zope.component +00d406ee88d0706813d93a9686d00e3e5ecf4ac8,glebihan,gwendal.lebihan.dev@gmail.com,2012-07-18 08:40:23-07:00,glebihan,gwendal.lebihan.dev@gmail.com,2012-07-18 15:40:23+00:00,False,gmail,gmail,* master,True,linuxmint_nemo.git,linuxmint/nemo.git,https://github.com/linuxmint/nemo.git +ea44911c20a96565dba24de68dce2b1a2a363ca6,Knut Nesheim,knut.nesheim@wooga.com,2011-04-08 14:49:30+02:00,Knut Nesheim,knut.nesheim@wooga.com,2011-04-08 12:49:30+00:00,False,wooga,wooga,* master,True,wooga_eredis.git,wooga/eredis.git,https://github.com/wooga/eredis.git +07849788d6aaff61207f35c3d8df9f7e3e624481,Alexandre Viau,alexandre@alexandreviau.net,2014-11-03 20:16:14-05:00,Alexandre Viau,alexandre@alexandreviau.net,2014-11-04 01:16:14+00:00,False,alexandreviau,alexandreviau,* master,True,ReAzem_python-pass.git,ReAzem/python-pass.git,https://github.com/ReAzem/python-pass.git +62bc6ebc9bbf0cf45c9dd14b31fda3cfc1b4a80e,Clement Lefebvre,clement.lefebvre@linuxmint.com,2016-10-21 11:02:54+01:00,Clement Lefebvre,clement.lefebvre@linuxmint.com,2016-10-21 10:02:54+00:00,False,linuxmint,linuxmint,* master,True,linuxmint_flags.git,linuxmint/flags.git,https://github.com/linuxmint/flags.git +82c61a8bcb6552cc760c71477d026f1261d5f36c,Michele Lacchia,michelelacchia@gmail.com,2012-09-20 21:03:37+02:00,Michele Lacchia,michelelacchia@gmail.com,2012-09-20 19:03:37+00:00,False,gmail,gmail,* master,True,rubik_radon.git,rubik/radon.git,https://github.com/rubik/radon.git +4d4e7d97da337cfef1d198df5e436937c6fc3100,Mario Lang,mlang@delysid.org,2013-09-05 23:49:38+02:00,Mario Lang,mlang@delysid.org,2013-09-05 21:49:38+00:00,False,delysid,delysid,* master,True,mlang_yatm.git,mlang/yatm.git,https://github.com/mlang/yatm.git +245b94ae5825238a275b39dd592ff36e006da700,Thomas Kemmer,tkemmer@computer.org,2015-04-05 22:49:33+02:00,Thomas Kemmer,tkemmer@computer.org,2015-04-05 20:49:33+00:00,False,computer,computer,* master,True,tkem_mopidy-dleyna.git,tkem/mopidy-dleyna.git,https://github.com/tkem/mopidy-dleyna.git +65b4282b95363f2567661ed5bdba3b5fbb4d8c5f,Gijs Molenaar,gijs@pythonic.nl,2015-03-02 11:50:59+02:00,Gijs Molenaar,gijs@pythonic.nl,2015-03-02 09:50:59+00:00,False,pythonic,pythonic,* master,True,ratt-ru_cassbeam,ratt-ru/cassbeam,https://github.com/ratt-ru/cassbeam +1fd51aa930c56945865464509ea22f575e764a5b,Flavio Percoco,flaper@src.gnome.org,2008-08-29 17:51:06+00:00,Flavio Percoco,flaper@src.gnome.org,2008-08-29 17:51:06+00:00,False,src,src,* master,True,Archive_mousetrap,Archive/mousetrap,https://gitlab.gnome.org/Archive/mousetrap +ef8ed8698326635031f2996d4039d53b8daf330f,Thomas Kluyver,takowl@gmail.com,2015-02-01 18:15:08-08:00,Thomas Kluyver,takowl@gmail.com,2015-02-02 02:15:08+00:00,False,gmail,gmail,* master,True,jupyter_testpath.git,jupyter/testpath.git,https://github.com/jupyter/testpath.git +e51d50b45226094acd69b23f6f69d851b6848f5e,Andrew Svetlov,andrew.svetlov@gmail.com,2016-08-02 15:56:43+03:00,Andrew Svetlov,andrew.svetlov@gmail.com,2016-08-02 12:56:43+00:00,False,gmail,gmail,* master,True,aio-libs_yarl.git,aio-libs/yarl.git,https://github.com/aio-libs/yarl.git +f9be0e4e2dac28af0b4b77b65ccfd0c16fcea276,Dmitry Shachnev,mitya57@gmail.com,2012-09-08 19:23:17+04:00,Dmitry Shachnev,mitya57@gmail.com,2012-09-08 15:23:17+00:00,False,gmail,gmail,* master,True,retext-project_pymarkups.git,retext-project/pymarkups.git,https://github.com/retext-project/pymarkups.git +17e291fd05d66fe232e2f409d54331c495b2fbd0,Perberos,perberos@gmail.com,2011-12-01 22:29:22-03:00,Perberos,perberos@gmail.com,2011-12-02 01:29:22+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-menus.git,mate-desktop/mate-menus.git,https://github.com/mate-desktop/mate-menus.git +2c25214ae7be0f9f78e3adb759f254212ee67a1a,Brad Bowman,perl-cpan@bereft.net,2010-07-07 12:47:41+10:00,Brad Bowman,bsb@bereft.net,2010-07-07 02:47:41+00:00,False,bereft,bereft,* master,True,bowman_CGI-Expand.git,bowman/CGI-Expand.git,https://github.com/bowman/CGI-Expand.git +d2a4b2d0144ec60b247d32118bf17501b567d8e9,Kjetil Kjernsmo,kjetil@startsiden.no,2010-05-06 11:42:35+02:00,Kjetil Kjernsmo,kjetil@startsiden.no,2010-05-06 09:42:35+00:00,False,startsiden,startsiden,* master,True,kjetilk_RDF-LinkedData.git,kjetilk/RDF-LinkedData.git,https://github.com/kjetilk/RDF-LinkedData.git 0a179c4a7760d166346ca95b318087389857ce39,Alex Headley,aheadley@waysaboutstuff.com,2011-09-15 13:43:16-04:00,Alex Headley,aheadley@waysaboutstuff.com,2011-09-15 17:43:16+00:00,False,waysaboutstuff,waysaboutstuff,* master,True,tessus_apachetop.git,tessus/apachetop.git,https://github.com/tessus/apachetop.git -7d53256fdda56614c3fed4bd5998611860e6acfa,Peter Robinson,pbrobinson@gmail.com,2024-01-25 09:43:07+00:00,GitHub,noreply@github.com,2024-01-25 09:43:07+00:00,True,gmail,github,* master,True,clalancette_oz.git,clalancette/oz.git,https://github.com/clalancette/oz.git -c5a83ff36b0ad0394c3c9f711058a28692fc6de9,philpem,philpem@philpem.me.uk,2022-12-04 09:58:17+00:00,GitHub,noreply@github.com,2022-12-04 09:58:17+00:00,False,philpem,github,* master,True,philpem_printer-driver-ptouch.git,philpem/printer-driver-ptouch.git,https://github.com/philpem/printer-driver-ptouch.git -3252aede67af47b84f27056c1fc9f9eed96c1bba,Lazarus Long,lazarus.long@sapo.pt,2018-01-11 23:39:31+00:00,Lazarus Long,lazarus.long@sapo.pt,2018-01-11 23:39:31+00:00,False,sapo,sapo,* master,True,lazarusllong_sqldeveloper-package.git,lazarusllong/sqldeveloper-package.git,https://github.com/lazarusllong/sqldeveloper-package.git -ac4d92ec6d3545b113aba96dc444fd055219af9b,Anders Hovmöller,boxed@killingar.net,2022-08-01 21:18:21+02:00,GitHub,noreply@github.com,2022-08-01 19:18:21+00:00,True,killingar,github,* master,True,spulec_freezegun.git,spulec/freezegun.git,https://github.com/spulec/freezegun.git -90fd4f71f0ec5d615529382ec525c993f47c04bd,Stein Magnus Jodal,stein.magnus@jodal.no,2023-06-21 22:25:59+02:00,GitHub,noreply@github.com,2023-06-21 20:25:59+00:00,True,jodal,github,* main,True,mopidy_mopidy-scrobbler.git,mopidy/mopidy-scrobbler.git,https://github.com/mopidy/mopidy-scrobbler.git -c679471073ef4202b40db7f8e2caa364e2c51b0c,Standreas,standreas@riseup.net,2022-02-18 08:42:15+01:00,GitHub,noreply@github.com,2022-02-18 07:42:15+00:00,False,riseup,github,* master,True,lxqt_liblxqt.git,lxqt/liblxqt.git,https://github.com/lxqt/liblxqt.git -d97c2d4a11de68a1a8eecdf306001d9dcd0e7198,Jonathan Yu,jawnsy@cpan.org,2015-10-19 21:57:34-04:00,Jonathan Yu,jawnsy@cpan.org,2015-10-20 01:57:34+00:00,False,cpan,cpan,* master,True,jawnsy_Math-Random-ISAAC,jawnsy/Math-Random-ISAAC,https://github.com/jawnsy/Math-Random-ISAAC -fd6697d6d189a73a8bc02ec4a691d4d170be9dac,Mateusz Łukasik,mati75@linuxmint.pl,2015-05-04 17:03:52+02:00,Mateusz Łukasik,mati75@linuxmint.pl,2015-05-04 15:03:52+00:00,True,linuxmint,linuxmint,* master,True,mati75_udevil.git,mati75/udevil.git,https://github.com/mati75/udevil.git -5b5b66bc559bdf0d9c65979b784ab4d34f0662df,Thomas Kluyver,thomas@kluyver.me.uk,2022-11-18 14:08:02+00:00,GitHub,noreply@github.com,2022-11-18 14:08:02+00:00,True,kluyver,github,* main,True,pypa_pep517.git,pypa/pep517.git,https://github.com/pypa/pep517.git -2e2bc49a2b57c063435a92dc7839467d9be2b144,Justin Knowlden,gus@gusg.us,2012-03-20 23:40:36-05:00,Justin Knowlden,gus@gusg.us,2012-03-21 04:40:36+00:00,False,gusg,gusg,* master,True,thumblemonks_riot.git,thumblemonks/riot.git,https://github.com/thumblemonks/riot.git -9aa66f502dea501345267d1f0c0a56c49a639061,Thomas J. Fan,thomasjpfan@gmail.com,2020-11-12 09:35:14-05:00,GitHub,noreply@github.com,2020-11-12 14:35:14+00:00,False,gmail,github,* main,True,dask_partd.git,dask/partd.git,https://github.com/dask/partd.git -e6a485609a7d61c55d5d072b4b35e42dde0199ed,aws-sdk-python-automation,github-aws-sdk-python-automation@amazon.com,2024-01-23 01:10:44+00:00,aws-sdk-python-automation,github-aws-sdk-python-automation@amazon.com,2024-01-23 01:10:44+00:00,True,amazon,amazon,* develop,True,boto_botocore,boto/botocore,https://github.com/boto/botocore -5a0d53891b193170b3594cc70d88b4f68e3cd6b1,Martin Davis,mtnclimb@gmail.com,2023-10-29 07:39:29-07:00,GitHub,noreply@github.com,2023-10-29 14:39:29+00:00,False,gmail,github,* master,True,locationtech_jts.git,locationtech/jts.git,https://github.com/locationtech/jts.git -16d564879dbbc2e863ba0a0fa223969838ba1940,Nov Matake,nov@matake.jp,2022-09-14 10:27:26+09:00,GitHub,noreply@github.com,2022-09-14 01:27:26+00:00,False,matake,github,* main,True,nov_openid_connect,nov/openid/connect,https://github.com/nov/openid_connect -5ac0e9feaae235f2cf197eb3b5164bf2e0acfbf1,Kyle Sunden,git@ksunden.space,2023-09-18 16:08:17-05:00,GitHub,noreply@github.com,2023-09-18 21:08:17+00:00,True,ksunden,github,* main,True,matplotlib_cycler,matplotlib/cycler,https://github.com/matplotlib/cycler +f6a2ab48d42165ab4bea9125812a4e78b39393c3,Chris Lalancette,clalance@redhat.com,2010-11-03 08:52:58-04:00,Chris Lalancette,clalance@redhat.com,2010-11-03 14:05:05+00:00,False,redhat,redhat,* master,True,clalancette_oz.git,clalancette/oz.git,https://github.com/clalancette/oz.git +c1d991e5be905bc09e0a8f7a941112fe2f02ffc9,Bazaar Package Importer,james.westby@ubuntu.com,2009-11-11 19:14:44+02:00,Bazaar Package Importer,james.westby@ubuntu.com,2009-11-11 17:14:44+00:00,False,ubuntu,ubuntu,* master,True,philpem_printer-driver-ptouch.git,philpem/printer-driver-ptouch.git,https://github.com/philpem/printer-driver-ptouch.git +d7ac4d34ee77385632e80474afdd437003c3ed7e,Lazarus Long,lazarus.long@bigfoot.com,2012-03-13 16:26:10+00:00,Lazarus Long,lazarus.long@bigfoot.com,2012-03-13 16:26:10+00:00,False,bigfoot,bigfoot,* master,True,lazarusllong_sqldeveloper-package.git,lazarusllong/sqldeveloper-package.git,https://github.com/lazarusllong/sqldeveloper-package.git +ba9f5664c2b12afe129045742aa64b0434aace33,Steve Pulec,spulec@gmail.com,2012-12-11 00:11:19-05:00,Steve Pulec,spulec@gmail.com,2012-12-11 05:11:19+00:00,False,gmail,gmail,* master,True,spulec_freezegun.git,spulec/freezegun.git,https://github.com/spulec/freezegun.git +bd42274d9706ec8f230d1d462f669c3f7a933b90,Stein Magnus Jodal,stein.magnus@jodal.no,2013-10-05 12:54:18+02:00,Stein Magnus Jodal,stein.magnus@jodal.no,2013-10-05 10:54:18+00:00,False,jodal,jodal,* main,True,mopidy_mopidy-scrobbler.git,mopidy/mopidy-scrobbler.git,https://github.com/mopidy/mopidy-scrobbler.git +4ef6cee9f86c98e4d5f10e764dc2f853c071eec7,pvanek,petr@yarpen.cz,2011-12-04 16:50:14+00:00,pvanek,petr@yarpen.cz,2011-12-04 16:50:14+00:00,False,yarpen,yarpen,* master,True,lxqt_liblxqt.git,lxqt/liblxqt.git,https://github.com/lxqt/liblxqt.git +b282b4cc90d9706baa54da7823b446a1c6d43ab5,Jonathan Yu,jawnsy@cpan.org,2009-03-25 19:13:54+00:00,Jonathan Yu,jawnsy@cpan.org,2009-03-25 19:13:54+00:00,False,cpan,cpan,* master,True,jawnsy_Math-Random-ISAAC,jawnsy/Math-Random-ISAAC,https://github.com/jawnsy/Math-Random-ISAAC +8986cc0666e1cb966f46dd8a10524b3c289c2f39,Mateusz Łukasik,mati75@linuxmint.pl,2013-02-21 10:57:00+01:00,Mateusz Łukasik,mati75@linuxmint.pl,2013-02-21 09:57:00+00:00,False,linuxmint,linuxmint,* master,True,mati75_udevil.git,mati75/udevil.git,https://github.com/mati75/udevil.git +c0a866b6720f10e55e4862efff1cc77ee1c6515c,Thomas Kluyver,thomas@kluyver.me.uk,2017-06-15 16:02:10+01:00,Thomas Kluyver,thomas@kluyver.me.uk,2017-06-15 15:02:10+00:00,False,kluyver,kluyver,* main,True,pypa_pep517.git,pypa/pep517.git,https://github.com/pypa/pep517.git +79ea5ebf76d39c4820690ace7501656e9afb7de3,Justin Knowlden,gus@gusg.us,2009-06-27 21:13:55-05:00,Justin Knowlden,gus@gusg.us,2009-06-28 02:13:55+00:00,False,gusg,gusg,* master,True,thumblemonks_riot.git,thumblemonks/riot.git,https://github.com/thumblemonks/riot.git +f7acb0c8d1ebe9103e411c4cd50335513e9d4be6,Matthew Rocklin,mrocklin@gmail.com,2015-05-06 15:08:18-07:00,Matthew Rocklin,mrocklin@gmail.com,2015-05-06 22:08:18+00:00,False,gmail,gmail,* main,True,dask_partd.git,dask/partd.git,https://github.com/dask/partd.git +463d8b7836e4db1c62c6b3bbff1a5e25dffe6f78,Mitch Garnaat,mitch@garnaat.com,2012-11-13 05:25:37-08:00,Mitch Garnaat,mitch@garnaat.com,2012-11-13 13:25:37+00:00,False,garnaat,garnaat,* develop,True,boto_botocore,boto/botocore,https://github.com/boto/botocore +c2e8e1d0695f60ed79e848e80a0c152da0c1d7db,Martin Davis,mtnclimb@gmail.com,2016-11-03 18:35:42-04:00,Martin Davis,mtnclimb@gmail.com,2016-11-03 23:36:12+00:00,False,gmail,gmail,* master,True,locationtech_jts.git,locationtech/jts.git,https://github.com/locationtech/jts.git +99229b4251a7bc4568cd93576c2bfe698dd95994,nov matake,nov@matake.jp,2011-08-15 00:20:09+09:00,nov matake,nov@matake.jp,2011-08-14 15:20:09+00:00,False,matake,matake,* main,True,nov_openid_connect,nov/openid/connect,https://github.com/nov/openid_connect +c71094cd8da46507748ca39a213d8e03503ab427,Thomas A Caswell,tcaswell@gmail.com,2015-06-20 00:06:44-04:00,Thomas A Caswell,tcaswell@gmail.com,2015-06-20 04:06:44+00:00,False,gmail,gmail,* main,True,matplotlib_cycler,matplotlib/cycler,https://github.com/matplotlib/cycler 409ee1f414832d839058c16c1617c323e3f23ac5,Håkon Nessjøen,haakon.nessjoen@gmail.com,2011-12-27 11:22:22+00:00,Håkon Nessjøen,haakon.nessjoen@gmail.com,2011-12-27 11:22:22+00:00,False,gmail,gmail,* master,True,haakonnessjoen_Cavez-of-Phear-packaging,haakonnessjoen/Cavez-of-Phear-packaging,https://github.com/haakonnessjoen/Cavez-of-Phear-packaging -75512220d6fddef0ab69ce452a485513eb9b2a5a,Punit Agrawal,punitagrawal@gmail.com,2019-03-03 08:43:56+09:00,Punit Agrawal,punitagrawal@gmail.com,2019-03-02 23:43:56+00:00,False,gmail,gmail,* master,True,punitagrawal_libhugetlbfs.git,punitagrawal/libhugetlbfs.git,https://github.com/punitagrawal/libhugetlbfs.git -bc3c8d645001d96be23b2c2c5a7d922a6b9f74de,Erik Berlin,sferik@gmail.com,2023-09-19 14:45:36-07:00,Erik Berlin,sferik@gmail.com,2023-09-19 21:49:21+00:00,False,gmail,gmail,* master,True,sferik_twitter,sferik/twitter,https://github.com/sferik/twitter -9f73219735abff20751523b5250875a7839daa1e,bw2,bw2@users.noreply.github.com,2023-07-23 10:25:48-04:00,GitHub,noreply@github.com,2023-07-23 14:25:48+00:00,True,users,github,* master,True,bw2_ConfigArgParse,bw2/ConfigArgParse,https://github.com/bw2/ConfigArgParse -2f7a0d36c96dbef041bc06be0f1c40cd9dcf53f7,Eugene Uvin,nivus.ua@gmail.com,2021-09-28 13:40:08+03:00,GitHub,noreply@github.com,2021-09-28 10:40:08+00:00,False,gmail,github,* master,True,adrienverge_PhotoCollage,adrienverge/PhotoCollage,https://github.com/adrienverge/PhotoCollage -a6a4cfe34c08a3e73bd0b396d425626e7ffdab77,Rodolfo Granata,warlock.cc@gmail.com,2012-01-24 21:41:44-03:00,Rodolfo Granata,warlock.cc@gmail.com,2012-01-25 00:41:44+00:00,False,gmail,gmail,* dev-3.0,True,rodolf0_wbar,rodolf0/wbar,https://github.com/rodolf0/wbar -be65a8ec0195955c15fdb179c9158b187638e39a,Will Lewis,1543626+wrjlewis@users.noreply.github.com,2023-12-13 14:50:56+00:00,GitHub,noreply@github.com,2023-12-13 14:50:56+00:00,False,users,github,* develop,True,matrix-org_synapse.git,matrix-org/synapse.git,https://github.com/matrix-org/synapse.git -9cc013fffc4477b62c76134ae914b3b9bbef1393,Michael R. Crusoe,1330696+mr-c@users.noreply.github.com,2023-11-04 12:14:15+01:00,GitHub,noreply@github.com,2023-11-04 11:14:15+00:00,False,users,github,* main,True,common-workflow-language_schema_salad,common-workflow-language/schema/salad,https://github.com/common-workflow-language/schema_salad -84a2859dc62d112c0a48e1b404a89c3a5e82f998,Steven Shiau,steven@stevenshiau.org,2021-03-13 10:55:47+08:00,Steven Shiau,steven@stevenshiau.org,2021-03-13 02:55:47+00:00,False,stevenshiau,stevenshiau,* master,True,stevenshiau_clonezilla.git,stevenshiau/clonezilla.git,https://gitlab.com/stevenshiau/clonezilla.git -9da850d3d65987f55aed095c384a50844d6ad62d,Shubham Arora,shubhamarora@protonmail.com,2024-03-10 17:04:47+05:30,Shubham Arora,shubhamarora@protonmail.com,2024-03-10 11:34:47+00:00,False,protonmail,protonmail,* master,True,plasma_kdeplasma-addons.git,plasma/kdeplasma-addons.git,https://invent.kde.org/plasma/kdeplasma-addons.git -f5a975ab10c035596d65d854d21164266ffed284,Pavol Rusnak,pavol@rusnak.io,2023-06-29 16:23:49+02:00,Pavol Rusnak,pavol@rusnak.io,2023-06-29 14:23:49+00:00,False,rusnak,rusnak,* master,True,trezor_python-mnemonic,trezor/python-mnemonic,https://github.com/trezor/python-mnemonic +d801da9722aa00c20dfb517dfd5a2d773b872580,Punit Agrawal,punitagrawal@gmail.com,2017-02-18 08:14:09+00:00,Punit Agrawal,punitagrawal@gmail.com,2017-02-18 08:14:09+00:00,False,gmail,gmail,* master,True,punitagrawal_libhugetlbfs.git,punitagrawal/libhugetlbfs.git,https://github.com/punitagrawal/libhugetlbfs.git +cd7aecde450157ae2ec0c07a2171d7149bebb74a,jnunemaker,jnunemaker@fe7eae16-9a24-0410-a59d-9e59979e88be,2006-12-15 01:32:12+00:00,jnunemaker,jnunemaker@fe7eae16-9a24-0410-a59d-9e59979e88be,2006-12-15 01:32:12+00:00,False,fe7eae16-9a24-0410-a59d-9e59979e88be,fe7eae16-9a24-0410-a59d-9e59979e88be,* master,True,sferik_twitter,sferik/twitter,https://github.com/sferik/twitter +6ee1329a759dcf27f71d7c3db325d975e802cc1a,zorro3,zorro3.github@gmail.com,2014-06-24 20:31:57-04:00,zorro3,zorro3.github@gmail.com,2014-06-25 00:31:57+00:00,False,gmail,gmail,* master,True,bw2_ConfigArgParse,bw2/ConfigArgParse,https://github.com/bw2/ConfigArgParse +18a9ba83e3e178289c6de234aa0e9c0e825c9822,Adrien Vergé,adrienverge@users.noreply.github.com,2013-11-20 19:32:32-08:00,Adrien Vergé,adrienverge@users.noreply.github.com,2013-11-21 03:32:32+00:00,False,users,users,* master,True,adrienverge_PhotoCollage,adrienverge/PhotoCollage,https://github.com/adrienverge/PhotoCollage +4be3ba47a156655984cb7e45bddcb6d608dc98eb,warlock,warlock,2006-10-19 23:25:01+00:00,warlock,warlock,2006-10-19 23:25:01+00:00,False,warlock,warlock,* dev-3.0,True,rodolf0_wbar,rodolf0/wbar,https://github.com/rodolf0/wbar +4f475c7697722e946e39e42f38f3dd03a95d8765,matrix.org,matrix@matrix.org,2014-08-12 15:10:52+01:00,matrix.org,matrix@matrix.org,2014-08-12 14:10:52+00:00,False,matrix,matrix,* develop,True,matrix-org_synapse.git,matrix-org/synapse.git,https://github.com/matrix-org/synapse.git +b1f6b4a4fe756fa34fcd4664c081c120334f2d1f,Peter Amstutz,peter.amstutz@curoverse.com,2015-07-23 17:00:11-04:00,Peter Amstutz,peter.amstutz@curoverse.com,2015-07-23 21:00:11+00:00,False,curoverse,curoverse,* main,True,common-workflow-language_schema_salad,common-workflow-language/schema/salad,https://github.com/common-workflow-language/schema_salad +828a8bc85526e1d52ae0dca058cd2254537649b3,Steven Shiau,steven@nchc.org.tw,2012-08-06 22:00:09+08:00,Steven Shiau,steven@nchc.org.tw,2012-08-06 14:00:09+00:00,False,nchc,nchc,* master,True,stevenshiau_clonezilla.git,stevenshiau/clonezilla.git,https://gitlab.com/stevenshiau/clonezilla.git +27b248fc60699bbecced960cdd0a1cc21154e8a1,Aaron J. Seigo,aseigo@kde.org,2007-10-09 19:52:53+00:00,Aaron J. Seigo,aseigo@kde.org,2007-10-09 19:52:53+00:00,False,kde,kde,* master,True,plasma_kdeplasma-addons.git,plasma/kdeplasma-addons.git,https://invent.kde.org/plasma/kdeplasma-addons.git +217999150812f7d356169661e4ac0b2e09fecd1d,Pavol Rusnak,stick@gk2.sk,2013-02-18 13:36:14+01:00,Pavol Rusnak,stick@gk2.sk,2013-02-18 12:41:44+00:00,False,gk2,gk2,* master,True,trezor_python-mnemonic,trezor/python-mnemonic,https://github.com/trezor/python-mnemonic c4d8523ad3e7869c06958197b6a7045144399af9,Marko Kreen,markokr@gmail.com,2020-09-26 14:29:15+03:00,Marko Kreen,markokr@gmail.com,2020-09-26 16:33:53+00:00,False,gmail,gmail,* master,True,pgq_pgqd,pgq/pgqd,https://github.com/pgq/pgqd -9c2b995915c1c539e055f22396b92d1f4e3e9a30,Naveed Massjouni,naveedm9@gmail.com,2012-06-07 01:25:02-03:00,Naveed Massjouni,naveedm9@gmail.com,2012-06-07 04:25:02+00:00,False,gmail,gmail,* master,True,ironcamel_AtomBus.git,ironcamel/AtomBus.git,https://github.com/ironcamel/AtomBus.git -baa105ea32f3feabc6a44e69e9c9fe8d4d857850,William Hubbs,w.d.hubbs@gmail.com,2014-09-08 18:23:01-05:00,William Hubbs,w.d.hubbs@gmail.com,2014-09-29 22:14:35+00:00,False,gmail,gmail,* master,True,williamh_pybugz,williamh/pybugz,https://github.com/williamh/pybugz +1046a6eaafb35551ca00603bf47f8f91b391ef16,Naveed Massjouni,naveedm9@gmail.com,2010-11-10 12:22:14-05:00,Naveed Massjouni,naveedm9@gmail.com,2010-11-10 17:22:14+00:00,False,gmail,gmail,* master,True,ironcamel_AtomBus.git,ironcamel/AtomBus.git,https://github.com/ironcamel/AtomBus.git +31c3a4c37f783cfdb916a6adfd35bff4464047ea,Alastair Tse,alastair@liquidx.net,2007-12-15 23:35:42+00:00,Alastair Tse,alastair@liquidx.net,2007-12-15 23:35:42+00:00,False,liquidx,liquidx,* master,True,williamh_pybugz,williamh/pybugz,https://github.com/williamh/pybugz 9ca9518234241cafa32cc1bf62d9ac69e18392da,paniagua-gustavo,paniagua.gustavo@gmail.com,2014-05-20 09:28:02-07:00,paniagua-gustavo,paniagua.gustavo@gmail.com,2014-05-20 16:28:02+00:00,False,gmail,gmail,* master,True,paniagua-gustavo_debian-snetz,paniagua-gustavo/debian-snetz,https://github.com/paniagua-gustavo/debian-snetz -e8129a34cc7082974376ffb7610a9ec80078ccf5,growdu,1819770177@qq.com,2022-10-31 22:44:53+08:00,GitHub,noreply@github.com,2022-10-31 14:44:53+00:00,False,qq,github,* main,True,ClusterLabs_libqb,ClusterLabs/libqb,https://github.com/ClusterLabs/libqb -cdaaa57ee71444be48dafac756ec33f718181cbc,Sven Eckelmann,sven@narfation.org,2023-01-21 18:55:55+01:00,Sven Eckelmann,sven@narfation.org,2023-01-21 17:55:55+00:00,False,narfation,narfation,* main,True,alfred.git,alfred.git,https://git.open-mesh.org/alfred.git -d20ebd7b7712da567b43f64cc1095a29bbd0094c,Antoine Nguyen,tonio@ngyn.org,2019-02-25 11:54:22+01:00,GitHub,noreply@github.com,2019-02-25 10:54:22+00:00,True,ngyn,github,* master,True,tonioo_sievelib,tonioo/sievelib,https://github.com/tonioo/sievelib -c4bbcfc7e68d036564caa17c0199c28788f196fc,Martynov Maxim,martinov_m_s_@mail.ru,2022-01-06 21:55:20+03:00,GitHub,noreply@github.com,2022-01-06 18:55:20+00:00,False,mail,github,* main,True,sqlalchemyorg_changelog,sqlalchemyorg/changelog,https://github.com/sqlalchemyorg/changelog -054b503e89375e2c648c4379eb3b46d4245505c7,Aleksi Häkli,aleksi.hakli@iki.fi,2022-01-28 10:45:40+02:00,GitHub,noreply@github.com,2022-01-28 08:45:40+00:00,False,iki,github,* master,True,jazzband_django-recurrence,jazzband/django-recurrence,https://github.com/jazzband/django-recurrence -2583f723c3bffb827dc85ef982ebec1789d890b2,Vinay Sajip,vinay_sajip@yahoo.co.uk,2024-03-13 09:07:51+00:00,Vinay Sajip,vinay_sajip@yahoo.co.uk,2024-03-13 09:07:51+00:00,False,yahoo,yahoo,* master,True,vsajip_python-gnupg.git,vsajip/python-gnupg.git,https://github.com/vsajip/python-gnupg.git +69d77500dfc96f139f380d6b90b793bcb04b0619,Angus Salkeld,asalkeld@redhat.com,2010-03-11 14:19:39+11:00,Angus Salkeld,asalkeld@redhat.com,2010-03-11 03:19:39+00:00,False,redhat,redhat,* main,True,ClusterLabs_libqb,ClusterLabs/libqb,https://github.com/ClusterLabs/libqb +563cd38a53d2fe5666762fbde15cc89bf8cf3222,Simon Wunderlich,siwu@hrz.tu-chemnitz.de,2013-05-01 22:18:05+02:00,Simon Wunderlich,siwu@hrz.tu-chemnitz.de,2013-05-01 20:18:20+00:00,False,hrz,hrz,* main,True,alfred.git,alfred.git,https://git.open-mesh.org/alfred.git +3cdcae7e60a122e0e4baa8c6263276fc93c70cce,Antoine Nguyen,tonio@ngyn.org,2011-05-26 15:03:06+02:00,Antoine Nguyen,tonio@ngyn.org,2011-05-26 13:03:06+00:00,False,ngyn,ngyn,* master,True,tonioo_sievelib,tonioo/sievelib,https://github.com/tonioo/sievelib +065316c6133d05a9f57ca22dce7eb25ffdd77dab,Mike Bayer,mike_mp@zzzcomputing.com,2012-10-30 11:51:49-04:00,Mike Bayer,mike_mp@zzzcomputing.com,2012-10-30 15:51:49+00:00,False,zzzcomputing,zzzcomputing,* main,True,sqlalchemyorg_changelog,sqlalchemyorg/changelog,https://github.com/sqlalchemyorg/changelog +75f0119200806b6d406e506a451b30c8008af064,Adam 'Cezar' Jenkins,emperorcezar@gmail.com,2012-11-12 12:01:33-06:00,Adam 'Cezar' Jenkins,emperorcezar@gmail.com,2012-11-12 18:01:33+00:00,False,gmail,gmail,* master,True,jazzband_django-recurrence,jazzband/django-recurrence,https://github.com/jazzband/django-recurrence +4232f5b2bc01f6bc164e65f4898b7f4c01c6b13d,Vinay Sajip,vinay_sajip@yahoo.co.uk,2014-02-07 08:56:18+00:00,Vinay Sajip,vinay_sajip@yahoo.co.uk,2014-02-07 08:56:18+00:00,False,yahoo,yahoo,* master,True,vsajip_python-gnupg.git,vsajip/python-gnupg.git,https://github.com/vsajip/python-gnupg.git f74d0f3fbeb7c66eb9c127b9375fa29f2b4ec59a,Aldis Berjoza,aldis@bsdroot.lv,2011-09-02 17:35:38+03:00,Aldis Berjoza,aldis@bsdroot.lv,2011-09-02 14:35:38+00:00,False,bsdroot,bsdroot,* master,True,jgoerzen_zfSnap,jgoerzen/zfSnap,https://github.com/jgoerzen/zfSnap -0119855338a1c51e5bfecb60441a78e3fe62109b,boud,boud@cosmo.torun.pl,2017-09-10 21:28:47+02:00,boud,boud@cosmo.torun.pl,2017-09-10 19:28:47+00:00,True,cosmo,cosmo,* master,True,broukema_inhomog,broukema/inhomog,https://bitbucket.org/broukema/inhomog -e3939e4999affd18fd1bbe2704077e0503f5e5bb,Luigi Toscano,luigi.toscano@tiscali.it,2017-04-21 21:19:17+02:00,Luigi Toscano,luigi.toscano@tiscali.it,2017-04-21 19:19:17+00:00,True,tiscali,tiscali,* master,True,kigo.git,kigo.git,https://anongit.kde.org/kigo.git -10a4fae3e03f80db4d7fb4e2dcf5701522e68624,Fantomas42,fantomas42@gmail.com,2017-10-14 22:41:14+02:00,Fantomas42,fantomas42@gmail.com,2017-10-14 20:41:14+00:00,True,gmail,gmail,* develop,True,Fantomas42_django-xmlrpc,Fantomas42/django-xmlrpc,https://github.com/Fantomas42/django-xmlrpc -40cfc1e40ab78dbceed99d209a0f1da35da37115,Chris Prather,chris@prather.org,2013-03-28 17:24:38-07:00,Chris Prather,chris@prather.org,2013-03-29 00:24:38+00:00,True,prather,prather,* master,True,perigrin_xml-sax-machines.git,perigrin/xml-sax-machines.git,https://github.com/perigrin/xml-sax-machines.git -280d3ffddaef6dcebc60931542badb10f13fc73a,Petar Nikolovski,petarGitNik@users.noreply.github.com,2018-06-19 15:25:01+02:00,Ryan Hiebert,ryan@ryanhiebert.com,2018-06-19 13:25:01+00:00,False,users,ryanhiebert,* master,True,pylti_lti.git,pylti/lti.git,https://github.com/pylti/lti.git -fc688aad86d1d0ac9460f7f1084eb3f86ec4080c,Lutz Mader,lutz.mader@freenet.de,2023-09-18 18:48:37+02:00,Lutz Mader,lutz.mader@freenet.de,2023-09-18 16:48:37+00:00,True,freenet,freenet,* master,True,tildeslash_monit,tildeslash/monit,https://bitbucket.org/tildeslash/monit -aff724d311c2ad11a065b683b12bb51f246afd35,Zach Beane,xach@xach.com,2013-08-27 15:09:24-07:00,Zach Beane,xach@xach.com,2013-08-27 22:09:24+00:00,True,xach,xach,* master,True,xach_buildapp,xach/buildapp,https://github.com/xach/buildapp -d1afd562705bf5098a3bcc0e834268bc0e91d245,Takashi Sakamoto,o-takashi@sakamocchi.jp,2024-02-07 08:43:47+09:00,Takashi Sakamoto,o-takashi@sakamocchi.jp,2024-02-06 23:43:47+00:00,False,sakamocchi,sakamocchi,* master,True,takaswie_hinawa-utils.git,takaswie/hinawa-utils.git,https://github.com/takaswie/hinawa-utils.git -b85a7a8664a2050b5d10f5616d01cf26ac9b5e9a,Sebastian Bank,sebastian.bank@uni-leipzig.de,2023-10-25 09:50:30+02:00,Sebastian Bank,sebastian.bank@uni-leipzig.de,2023-10-25 07:50:30+00:00,False,uni-leipzig,uni-leipzig,* master,True,xflr6_graphviz,xflr6/graphviz,https://github.com/xflr6/graphviz -84b8c4bfd2e6729564504a070d8a67a1fd1e1ff5,Jason R. Coombs,jaraco@jaraco.com,2024-03-14 17:19:45-04:00,Jason R. Coombs,jaraco@jaraco.com,2024-03-14 21:19:45+00:00,False,jaraco,jaraco,* main,True,jaraco_zipp,jaraco/zipp,https://github.com/jaraco/zipp -325d5a7a86fecd2c0df7aeaa14a7b1baa7b24a60,Mathias Bynens,mathias@qiwi.be,2021-07-29 16:38:25+02:00,Mathias Bynens,mathias@qiwi.be,2021-07-29 14:38:25+00:00,False,qiwi,qiwi,* main,True,mathiasbynens_unicode-property-aliases,mathiasbynens/unicode-property-aliases,https://github.com/mathiasbynens/unicode-property-aliases -0b4b79ae25ddc02aa2f5e9bc9f62be16a9ab028a,Tobin Brown,tobinjbrown@gmail.com,2020-09-08 11:05:51-05:00,GitHub,noreply@github.com,2020-09-08 16:05:51+00:00,True,gmail,github,* master,True,brobin_drf-generators,brobin/drf-generators,https://github.com/brobin/drf-generators -6f1f4e34c0086b6113af244b6de6cd038f824c52,Joachim Metz,joachim.metz@gmail.com,2020-10-14 12:47:57+02:00,Joachim Metz,joachim.metz@gmail.com,2020-10-14 10:47:57+00:00,False,gmail,gmail,* main,True,libyal_libvhdi.git,libyal/libvhdi.git,https://github.com/libyal/libvhdi.git -0eef31939f7ea364173c9eb9550c85f2e089ee23,Armin Graefe,schengawegga@gmail.com,2023-10-23 06:52:13+02:00,schengawegga,schengawegga@gmail.com,2023-10-26 21:23:21+00:00,False,gmail,gmail,* master,True,pear_Net_SMTP.git,pear/Net/SMTP.git,https://github.com/pear/Net_SMTP.git -71106d9d47867d88feba3587d5d1ab8e09a374f9,Jeff Forcier,jeff@bitprophet.org,2022-06-17 16:25:14-04:00,Jeff Forcier,jeff@bitprophet.org,2022-06-17 20:30:11+00:00,False,bitprophet,bitprophet,* main,True,bitprophet_releases.git,bitprophet/releases.git,https://github.com/bitprophet/releases.git -c75730ba58763917185542e49e88c8dbba687041,Gael Pasgrimaud,gael@gawel.org,2022-12-31 14:55:53+01:00,GitHub,noreply@github.com,2022-12-31 13:55:53+00:00,True,gawel,github,* master,True,gawel_pyquery.git,gawel/pyquery.git,https://github.com/gawel/pyquery.git +7565ad2bdb6175968d15cfb2a5888f142dd9f0b5,boud,boud@astro.uni.torun.pl,2012-10-29 22:38:00+01:00,boud,boud@astro.uni.torun.pl,2012-10-29 21:38:00+00:00,False,astro,astro,* master,True,broukema_inhomog,broukema/inhomog,https://bitbucket.org/broukema/inhomog +d2c33c764608ac2a10dbce1406a20b907207fb72,Sascha Peilicke,saschpe@gmx.de,2008-11-26 22:41:16+00:00,Sascha Peilicke,saschpe@gmx.de,2008-11-26 22:41:16+00:00,False,gmx,gmx,* master,True,kigo.git,kigo.git,https://anongit.kde.org/kigo.git +2e3a47fc316f8084ab7f6e05f085d39a072a3284,Fantomas42,fantomas42@gmail.com,2010-07-31 15:16:55+02:00,Fantomas42,fantomas42@gmail.com,2010-07-31 13:16:55+00:00,False,gmail,gmail,* develop,True,Fantomas42_django-xmlrpc,Fantomas42/django-xmlrpc,https://github.com/Fantomas42/django-xmlrpc +f9bf001d25b86f8066697ec64b6710a0889e7f49,Barrie Slaymaker,barries@slaysys.com,2002-01-14 03:09:35-05:00,Chris Prather,cprather@hdpublishing.com,2009-06-11 17:30:12+00:00,False,slaysys,hdpublishing,* master,True,perigrin_xml-sax-machines.git,perigrin/xml-sax-machines.git,https://github.com/perigrin/xml-sax-machines.git +5c5ed88c9bda731ef77ab82570b734c70ea38aa1,Anson MacKeracher,anson@tophatmonocle.com,2012-05-02 10:57:44-07:00,Anson MacKeracher,anson@tophatmonocle.com,2012-05-02 17:57:44+00:00,False,tophatmonocle,tophatmonocle,* master,True,pylti_lti.git,pylti/lti.git,https://github.com/pylti/lti.git +7a496a294b734537f6d48f9e2590583171aeb6b7,Tildeslash,git@tildeslash.com,2014-01-23 17:26:34+01:00,Tildeslash,git@tildeslash.com,2014-01-23 16:26:34+00:00,False,tildeslash,tildeslash,* master,True,tildeslash_monit,tildeslash/monit,https://bitbucket.org/tildeslash/monit +50f6ac036cad29ba0c6b27ff67b4b93f7952f753,Zach Beane,xach@xach.com,2011-05-01 19:00:05-04:00,Zach Beane,xach@xach.com,2011-05-01 23:00:05+00:00,False,xach,xach,* master,True,xach_buildapp,xach/buildapp,https://github.com/xach/buildapp +6a72ac7a682ce2118c334bc319af9065265d86c8,Takashi Sakamoto,o-takashi@sakamocchi.jp,2016-01-29 01:07:29+09:00,Takashi Sakamoto,o-takashi@sakamocchi.jp,2016-01-28 16:11:07+00:00,False,sakamocchi,sakamocchi,* master,True,takaswie_hinawa-utils.git,takaswie/hinawa-utils.git,https://github.com/takaswie/hinawa-utils.git +0a79f65b7fab4455a4b174fd225f43ad18d60acc,Sebastian Bank,sebastian.bank@uni-leipzig.de,2014-01-12 18:55:40+01:00,Sebastian Bank,sebastian.bank@uni-leipzig.de,2014-01-12 17:55:40+00:00,False,uni-leipzig,uni-leipzig,* master,True,xflr6_graphviz,xflr6/graphviz,https://github.com/xflr6/graphviz +5ad18328e8f38abcc5a0fc4a549e7a3c40697d4e,Jason R. Coombs,jaraco@jaraco.com,2015-12-19 22:29:56-05:00,Jason R. Coombs,jaraco@jaraco.com,2015-12-20 03:29:56+00:00,False,jaraco,jaraco,* main,True,jaraco_zipp,jaraco/zipp,https://github.com/jaraco/zipp +7ded7ef265b536b15730be656f08c59f175bb942,Mathias Bynens,mathias@qiwi.be,2016-05-21 09:27:39+02:00,Mathias Bynens,mathias@qiwi.be,2016-05-21 07:27:39+00:00,False,qiwi,qiwi,* main,True,mathiasbynens_unicode-property-aliases,mathiasbynens/unicode-property-aliases,https://github.com/mathiasbynens/unicode-property-aliases +34f7a5bbd1f61bd7a571a02876582716ce14a19f,Tobin,tobinjbrown@gmail.com,2015-04-07 00:06:23-05:00,Tobin,tobinjbrown@gmail.com,2015-04-07 05:06:23+00:00,False,gmail,gmail,* master,True,brobin_drf-generators,brobin/drf-generators,https://github.com/brobin/drf-generators +f2f9517a3b3efb1a96333fc9257e487650705910,Joachim Metz,joachim.metz@gmail.com,2013-09-22 15:18:47+02:00,Joachim Metz,joachim.metz@gmail.com,2013-09-22 13:18:47+00:00,False,gmail,gmail,* main,True,libyal_libvhdi.git,libyal/libvhdi.git,https://github.com/libyal/libvhdi.git +d01bd0bf9d0f23e79a668c7cc5a9c1b2219832ad,Jon Parise,jon@php.net,2012-12-09 20:06:27-08:00,Jon Parise,jon@php.net,2012-12-10 04:06:27+00:00,False,php,php,* master,True,pear_Net_SMTP.git,pear/Net/SMTP.git,https://github.com/pear/Net_SMTP.git +0434429a5b204365077e6e153cee24efaf4861bb,Jeff Forcier,jeff@bitprophet.org,2013-09-15 23:55:29-07:00,Jeff Forcier,jeff@bitprophet.org,2013-09-16 06:55:29+00:00,False,bitprophet,bitprophet,* main,True,bitprophet_releases.git,bitprophet/releases.git,https://github.com/bitprophet/releases.git +edc9eb2501c6ecb5444bb2cd970868cbcdd71460,Gael Pasgrimaud,gael@gawel.org,2008-12-03 16:44:10+01:00,Gael Pasgrimaud,gael@gawel.org,2008-12-03 15:44:10+00:00,False,gawel,gawel,* master,True,gawel_pyquery.git,gawel/pyquery.git,https://github.com/gawel/pyquery.git 8c6d76d5b1853411d07c64aadf1c4495555e84f6,Brian Bidulock,bidulock@openss7.org,2015-05-24 18:19:53-06:00,Brian Bidulock,bidulock@openss7.org,2015-05-25 00:19:53+00:00,False,openss7,openss7,* master,True,bbidulock_wmpinboard.git,bbidulock/wmpinboard.git,https://github.com/bbidulock/wmpinboard.git -6cc104634ef64be3be88c1fccbe98208d95d8a1a,Benjamin Barenblat,bbaren@mit.edu,2020-05-31 18:29:03-04:00,Benjamin Barenblat,bbaren@mit.edu,2020-05-31 22:29:03+00:00,True,mit,mit,* master,True,urweb_debian-urweb,urweb/debian-urweb,https://github.com/urweb/debian-urweb +40e3a4a698ed666280de68373d3ed09f43985bef,Adam Chlipala,adamc@hcoop.net,2009-02-26 13:56:54-05:00,Adam Chlipala,adamc@hcoop.net,2009-02-26 18:56:54+00:00,False,hcoop,hcoop,* master,True,urweb_debian-urweb,urweb/debian-urweb,https://github.com/urweb/debian-urweb fefa29659d9a9a0d8531f813edaad4b6666b3b3e,Weng Xuetian,wengxt@gmail.com,2011-08-15 22:52:06+08:00,Weng Xuetian,wengxt@gmail.com,2011-08-15 14:52:06+00:00,False,gmail,gmail,* master,True,fcitx_fcitx5-configtool.git,fcitx/fcitx5-configtool.git,https://github.com/fcitx/fcitx5-configtool.git -b56fa78a2fe44ac2851bae5bf4f4693a0644da7b,cld2,riesa@google.com,2015-08-20 15:39:36-07:00,cld2,riesa@google.com,2015-08-20 22:39:36+00:00,True,google,google,* master,True,CLD2Owners_cld2,CLD2Owners/cld2,https://github.com/CLD2Owners/cld2 -92ff3b07a415383149b3d27faae412117c8e4f5f,Andrew Wooster,andrew@planetaryscale.com,2017-12-03 12:48:10-08:00,Andrew Wooster,andrew@planetaryscale.com,2017-12-03 20:48:10+00:00,False,planetaryscale,planetaryscale,* master,True,wooster_biplist_issues_new,wooster/biplist/issues/new,https://bitbucket.org/wooster/biplist/issues/new -5b392f468630242a0eb55d93a70bd4d14f919443,Bruno Oliveira,nicoddemus@gmail.com,2022-05-04 09:18:05-03:00,GitHub,noreply@github.com,2022-05-04 12:18:05+00:00,True,gmail,github,* main,True,pytest-dev_pytest-mock.git,pytest-dev/pytest-mock.git,https://github.com/pytest-dev/pytest-mock.git -34a8811fb8d0deca21f3eebb7caa633793a478a7,Michael Howitz,mh@gocept.com,2022-03-23 08:05:42+01:00,GitHub,noreply@github.com,2022-03-23 07:05:42+00:00,False,gocept,github,* master,True,zopefoundation_zope.event,zopefoundation/zope.event,https://github.com/zopefoundation/zope.event -b3975733e0ef459fc7d137acec9bf4aa2865d6c5,Josh Soref,2119212+jsoref@users.noreply.github.com,2022-01-11 13:22:51-05:00,GitHub,noreply@github.com,2022-01-11 18:22:51+00:00,False,users,github,* master,True,spacetelescope_imexam,spacetelescope/imexam,https://github.com/spacetelescope/imexam -7f51350a41a61375ec8526975790e8f86f6ad093,Andy Chosak,andy.chosak@cfpb.gov,2023-12-20 14:52:34-05:00,Matt Westcott,matthew@torchbox.com,2024-01-03 11:08:23+00:00,False,cfpb,torchbox,* main,True,wagtail_django-modelcluster.git,wagtail/django-modelcluster.git,https://github.com/wagtail/django-modelcluster.git +910f6b374de799b0f10053fe30186ff6dc8636e6,Jason Riesa,riesa@google.com,2015-06-12 17:46:04-07:00,Jason Riesa,riesa@google.com,2015-06-13 00:46:04+00:00,False,google,google,* master,True,CLD2Owners_cld2,CLD2Owners/cld2,https://github.com/CLD2Owners/cld2 +484604935b16d9f92504d8aa68833b0b2d300b54,Andrew Wooster,wooster_spam@nextthing.org,2010-08-19 10:22:56-07:00,Andrew Wooster,wooster_spam@nextthing.org,2010-08-19 17:22:56+00:00,False,nextthing,nextthing,* master,True,wooster_biplist_issues_new,wooster/biplist/issues/new,https://bitbucket.org/wooster/biplist/issues/new +eb7c4755d1d5269ccade0ee31afe9e4c7bef42f0,Bruno Oliveira,nicoddemus@gmail.com,2014-07-16 21:40:32-03:00,Bruno Oliveira,nicoddemus@gmail.com,2014-07-17 00:40:32+00:00,False,gmail,gmail,* main,True,pytest-dev_pytest-mock.git,pytest-dev/pytest-mock.git,https://github.com/pytest-dev/pytest-mock.git +c5ebf6b258d8df6de30632d0bcf9992f614e33d8,Tres Seaver,tseaver@palladion.com,2006-04-05 11:32:23+00:00,Tres Seaver,tseaver@palladion.com,2006-04-05 11:32:23+00:00,False,palladion,palladion,* master,True,zopefoundation_zope.event,zopefoundation/zope.event,https://github.com/zopefoundation/zope.event +6137c0c8c68efa4d4d0a03693dbb6bf00c512c83,Megan Sosey,sosey@stsci.edu,2014-04-03 11:12:04-07:00,Megan Sosey,sosey@stsci.edu,2014-04-03 18:12:04+00:00,False,stsci,stsci,* master,True,spacetelescope_imexam,spacetelescope/imexam,https://github.com/spacetelescope/imexam +2ae660ab6fc1e1b55861651a30b2ad6da4f2dae6,Matt Westcott,matt@west.co.tt,2014-01-31 19:10:41+00:00,Matt Westcott,matt@west.co.tt,2014-01-31 19:10:41+00:00,False,west,west,* main,True,wagtail_django-modelcluster.git,wagtail/django-modelcluster.git,https://github.com/wagtail/django-modelcluster.git 7776aa97fc1c69a8f28ba4bab7387fb96be9a6e4,Bent Bisballe Nyeng,deva@aasimon.org,2014-09-08 20:48:38+02:00,Bent Bisballe Nyeng,deva@aasimon.org,2014-09-08 18:48:38+00:00,False,aasimon,aasimon,* master,True,dgedit.git,dgedit.git,http://git.drumgizmo.org/dgedit.git -56f0cdf7de8c41c47b2cfa869dd3e64bc1c1c8ce,John Matherly,jmath@shodan.io,2020-09-07 19:37:04-05:00,John Matherly,jmath@shodan.io,2020-09-08 00:37:04+00:00,False,shodan,shodan,* master,True,achillean_shodan-python,achillean/shodan-python,https://github.com/achillean/shodan-python -9cbf61b1dbb83e71f3f6f7a7b399c10d43816ee2,Nathan Esquenazi,nesquena@gmail.com,2022-02-21 13:44:38-08:00,GitHub,noreply@github.com,2022-02-21 21:44:38+00:00,True,gmail,github,* master,True,nesquena_rabl,nesquena/rabl,https://github.com/nesquena/rabl -2c9f2170d8575b21bafb6402eb30ca7de31e20b9,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-05-24 21:28:10+03:00,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-05-24 18:28:10+00:00,False,ionelmc,ionelmc,* master,True,pytest-dev_pytest-cov.git,pytest-dev/pytest-cov.git,https://github.com/pytest-dev/pytest-cov.git -616bc5ee82d363e7d954cde10329a14d87e2222c,Alexandre Petitjean,alpetitjean@gmail.com,2019-12-04 10:14:07+01:00,GitHub,noreply@github.com,2019-12-04 09:14:07+00:00,True,gmail,github,* develop,True,AlexandrePTJ_mopidy-somafm,AlexandrePTJ/mopidy-somafm,https://github.com/AlexandrePTJ/mopidy-somafm -7bc056387e91e58b9c0d5593d88bc38f9ee4313e,Joachim Metz,joachim.metz@gmail.com,2016-08-19 07:07:39+02:00,Joachim Metz,joachim.metz@gmail.com,2016-08-19 05:07:39+00:00,False,gmail,gmail,* main,True,libyal_libesedb,libyal/libesedb,https://github.com/libyal/libesedb -45cad6c8b8bfc97678d741783bc8b8285cdff360,Julien Xfennec,xfennec@cqfd-corp.org,2023-06-26 15:59:10+02:00,Julien Xfennec,xfennec@cqfd-corp.org,2023-06-26 13:59:10+00:00,False,cqfd-corp,cqfd-corp,* master,True,Xfennec_progress,Xfennec/progress,https://github.com/Xfennec/progress +0c104cda0eeb8eb2b0e5699a8233e28ff28e0a94,John Matherly,jmath@surtri.com,2010-09-07 04:19:55-07:00,John Matherly,jmath@surtri.com,2010-09-07 11:19:55+00:00,False,surtri,surtri,* master,True,achillean_shodan-python,achillean/shodan-python,https://github.com/achillean/shodan-python +eec7acb1e289399563cdf17c145c2de427626647,Nathan Esquenazi,nesquena@gmail.com,2011-04-07 19:05:15-07:00,Nathan Esquenazi,nesquena@gmail.com,2011-04-08 02:05:15+00:00,False,gmail,gmail,* master,True,nesquena_rabl,nesquena/rabl,https://github.com/nesquena/rabl +5bacf2a65ce40f628f7802894fa309f24fccca04,Meme Dough,memedough@gmail.com,2010-04-24 23:00:57+10:00,Meme Dough,memedough@gmail.com,2010-04-24 13:00:57+00:00,False,gmail,gmail,* master,True,pytest-dev_pytest-cov.git,pytest-dev/pytest-cov.git,https://github.com/pytest-dev/pytest-cov.git +d67f6c01c2c90c516632be2e590b5981a97101c6,Alexandre Petitjean,alpetitjean@gmail.com,2013-09-06 06:37:23-07:00,Alexandre Petitjean,alpetitjean@gmail.com,2013-09-06 13:37:23+00:00,False,gmail,gmail,* develop,True,AlexandrePTJ_mopidy-somafm,AlexandrePTJ/mopidy-somafm,https://github.com/AlexandrePTJ/mopidy-somafm +496df172410fa2a76d803e0e5ac00cf7ef2880b4,Joachim Metz,joachim.metz@gmail.com,2009-09-13 12:42:02+02:00,Joachim Metz,joachim.metz@gmail.com,2016-03-27 07:28:29+00:00,False,gmail,gmail,* main,True,libyal_libesedb,libyal/libesedb,https://github.com/libyal/libesedb +af68fedec1603012667bb0c197d2f819333940a2,Xfennec,xfennec@cqfd-corp.org,2013-11-22 07:25:33-08:00,Xfennec,xfennec@cqfd-corp.org,2013-11-22 15:25:33+00:00,False,cqfd-corp,cqfd-corp,* master,True,Xfennec_progress,Xfennec/progress,https://github.com/Xfennec/progress bc28b6ea4aa7290c13f59642f953d59bfb7fdada,Vlad Irnov,vlad.irnov@gmail.com,2013-11-27 18:17:23-05:00,Vlad Irnov,vlad.irnov@gmail.com,2013-11-27 23:17:23+00:00,False,gmail,gmail,* master,True,vim-voom_VOoM.git,vim-voom/VOoM.git,https://github.com/vim-voom/VOoM.git -2e2f94dc39716ffb63543b36e1bbd675c2a00c8d,sakib,mabusakib@gmail.com,2019-02-25 22:16:20+06:00,raveit65,mate@raveit.de,2019-03-10 17:07:20+00:00,False,gmail,raveit,* master,True,mate-desktop_mate-control-center.git,mate-desktop/mate-control-center.git,https://github.com/mate-desktop/mate-control-center.git -4a964f6c741b44c752a8f2dd25ad66c3e077b79f,Kolen Cheung,christian.kolen@gmail.com,2021-07-07 20:37:01-07:00,Kolen Cheung,christian.kolen@gmail.com,2021-07-08 03:37:01+00:00,False,gmail,gmail,* master,True,jgm_pandocfilters,jgm/pandocfilters,https://github.com/jgm/pandocfilters -0e7f6e6191add9a28fb2abe1ecbc39873fb59d6b,Christian Baumann,33223146+chbauman@users.noreply.github.com,2022-06-03 14:48:10+02:00,GitHub,noreply@github.com,2022-06-03 12:48:10+00:00,True,users,github,* main,True,michaeljones_breathe.git,michaeljones/breathe.git,https://github.com/michaeljones/breathe.git -1c1609fec00888a2b2082abc8fb979ca76a6369c,Marek Küthe,m.k@mk16.de,2024-02-13 21:25:39+00:00,Marek Küthe,m.k@mk16.de,2024-02-13 21:47:32+00:00,False,mk16,mk16,* master,True,Rup0rt_pcapfix,Rup0rt/pcapfix,https://github.com/Rup0rt/pcapfix -ffa466ce5b933336a726780e01e26531e80b60eb,Colin Watson,cjwatson@debian.org,2023-09-21 23:55:38+01:00,Colin Watson,cjwatson@debian.org,2023-09-21 22:55:38+00:00,False,debian,debian,* main,True,cjwatson_binfmt-support.git,cjwatson/binfmt-support.git,https://gitlab.com/cjwatson/binfmt-support.git +0b0e6bc987da4fd88a7854ebb12bde705e92c428,Perberos,perberos@gmail.com,2011-12-01 21:51:44-03:00,Perberos,perberos@gmail.com,2011-12-02 00:51:44+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-control-center.git,mate-desktop/mate-control-center.git,https://github.com/mate-desktop/mate-control-center.git +4c7774f829a4385f1101d379173ec287f7ef233a,John MacFarlane,jgm@berkeley.edu,2013-09-11 19:35:35-07:00,John MacFarlane,jgm@berkeley.edu,2013-09-12 02:35:35+00:00,False,berkeley,berkeley,* master,True,jgm_pandocfilters,jgm/pandocfilters,https://github.com/jgm/pandocfilters +08ff5f6388bec1fa4a7e7e0a4542b13aa67093fd,mpj,mpj@dneg.com,2009-02-03 18:54:36+00:00,mpj,mpj@dneg.com,2009-02-03 18:54:36+00:00,False,dneg,dneg,* main,True,michaeljones_breathe.git,michaeljones/breathe.git,https://github.com/michaeljones/breathe.git +d2e9b230840955b1635e8d9afb7242ccb2dbb14e,Robert Krause,Ruport@web.de,2012-03-13 12:33:08+01:00,Robert Krause,Ruport@web.de,2012-03-13 11:33:08+00:00,False,web,web,* master,True,Rup0rt_pcapfix,Rup0rt/pcapfix,https://github.com/Rup0rt/pcapfix +087e9a06b2179f83f96b40fa465870a51b920359,Colin Watson,cjwatson@debian.org,2002-10-13 02:19:23+00:00,Colin Watson,cjwatson@debian.org,2002-10-13 02:19:23+00:00,False,debian,debian,* main,True,cjwatson_binfmt-support.git,cjwatson/binfmt-support.git,https://gitlab.com/cjwatson/binfmt-support.git 64b976e139ecfeafa83889a9c6d6615d30ba5635,Chmouel Boudjnah,chmouel@chmouel.com,2013-11-21 17:59:47+01:00,John Dickinson,me@not.mn,2013-11-21 22:09:47+00:00,False,chmouel,not,* master,True,openstack_swift-bench.git,openstack/swift-bench.git,https://github.com/openstack/swift-bench.git e48fc61bf4cf43a90b7ddf16e3cbb3b247333c89,Stefano Karapetsas,stefano@karapetsas.com,2012-07-04 18:01:12+02:00,Stefano Karapetsas,stefano@karapetsas.com,2012-07-04 16:01:12+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_mate-netbook.git,mate-desktop/mate-netbook.git,https://github.com/mate-desktop/mate-netbook.git -95777602dff8ae074b7a47a9db7fecda5d94281d,Roman Haefeli,reduzent@gmail.com,2021-03-18 11:06:55+01:00,Roman Haefeli,reduzent@gmail.com,2021-03-18 10:06:55+00:00,False,gmail,gmail,* master,True,pd-externals_ggee,pd-externals/ggee,https://github.com/pd-externals/ggee -13def66251b8ed06cef5ea5f80b00583d80adb2d,Gilles Lenfant,gilles.lenfant@gmail.com,2019-08-27 17:33:26+02:00,GitHub,noreply@github.com,2019-08-27 15:33:26+00:00,True,gmail,github,* master,True,glenfant_stopit,glenfant/stopit,https://github.com/glenfant/stopit -c6d7c2cfd4e4dfad964aa08118afd3d3c2ce6007,Alejandro Garrido Mota,garridomota@gmail.com,2012-10-08 19:16:33-04:30,Alejandro Garrido Mota,garridomota@gmail.com,2012-10-08 23:46:33+00:00,True,gmail,gmail,* master,True,mogaal_editra,mogaal/editra,https://github.com/mogaal/editra -66453a7679d0d7d2617256325be00b3db3fa7a11,Thomas Cokelaer,cokelaer@gmail.com,2024-02-13 14:33:10+01:00,Thomas Cokelaer,cokelaer@gmail.com,2024-02-13 13:33:10+00:00,False,gmail,gmail,* main,True,cokelaer_easydev.git,cokelaer/easydev.git,https://github.com/cokelaer/easydev.git -cd8d3cffe5d31ea7434db097c623c2b73e0d0da9,Ian Stapleton Cordasco,graffatcolmingov@gmail.com,2018-05-08 06:22:02-05:00,GitHub,noreply@github.com,2018-05-08 11:22:02+00:00,True,gmail,github,* main,True,sigmavirus24_betamax,sigmavirus24/betamax,https://github.com/sigmavirus24/betamax +fc3d3c0a4f110a23335398c327ac0a4fc949d5cb,Guenter Geiger,ggeiger@users.sourceforge.net,2002-06-17 10:13:57+00:00,Guenter Geiger,ggeiger@users.sourceforge.net,2002-06-17 10:13:57+00:00,False,users,users,* master,True,pd-externals_ggee,pd-externals/ggee,https://github.com/pd-externals/ggee +b0a473952b469d2e51a191d0a00cca440ec8e2de,Gilles Lenfant,gilles.lenfant@gmail.com,2014-02-09 16:29:43+01:00,Gilles Lenfant,gilles.lenfant@gmail.com,2014-02-09 15:29:43+00:00,False,gmail,gmail,* master,True,glenfant_stopit,glenfant/stopit,https://github.com/glenfant/stopit +5dc67358d6bf6fa996b0510ce6dea1a2a005660a,Alejandro Garrido Mota,garridomota@gmail.com,2009-11-01 22:43:33-04:30,Alejandro Garrido Mota,garridomota@gmail.com,2009-11-02 03:13:33+00:00,False,gmail,gmail,* master,True,mogaal_editra,mogaal/editra,https://github.com/mogaal/editra +7e9e69d1b2d1e4dc01b9be717d899c124f934e33,Thomas Cokelaer,cokelaer@gmail.com,2013-01-17 21:09:19+00:00,Thomas Cokelaer,cokelaer@gmail.com,2013-01-17 21:09:19+00:00,False,gmail,gmail,* main,True,cokelaer_easydev.git,cokelaer/easydev.git,https://github.com/cokelaer/easydev.git +035216f6bdce88c6bc49bd69043399f7d87a5ef3,Ian Cordasco,graffatcolmingov@gmail.com,2013-07-15 23:21:28-04:00,Ian Cordasco,graffatcolmingov@gmail.com,2013-07-16 03:21:28+00:00,False,gmail,gmail,* main,True,sigmavirus24_betamax,sigmavirus24/betamax,https://github.com/sigmavirus24/betamax f498bf5bd0004d95a674470dfc037821e7381e82,jon,jon@01d9642f-1d18-0410-bea3-844bd6f27a17,2006-07-09 02:56:13+00:00,jon,jon@01d9642f-1d18-0410-bea3-844bd6f27a17,2006-07-09 02:56:13+00:00,False,01d9642f-1d18-0410-bea3-844bd6f27a17,01d9642f-1d18-0410-bea3-844bd6f27a17,* master,True,bobtfish_directory-scratch.git,bobtfish/directory-scratch.git,https://github.com/bobtfish/directory-scratch.git -d7a414ddc55330eb5a436b42946dbecf6eee555c,Zach Carter,zack.carter@gmail.com,2020-10-27 14:45:33-07:00,GitHub,noreply@github.com,2020-10-27 21:45:33+00:00,True,gmail,github,* master,True,zaach_jison,zaach/jison,https://github.com/zaach/jison -b6e662bb875cb4f467aa7cc6f4869ccf285a05c9,Chris Dent,chris.dent@gmail.com,2018-11-26 13:24:43+00:00,Chris Dent,chris.dent@gmail.com,2018-11-26 13:24:43+00:00,False,gmail,gmail,* master,True,cdent_pastescript.git,cdent/pastescript.git,https://github.com/cdent/pastescript.git -4a686fc8d87d398045dc44c1b6a97a2940121800,Jason Madden,jamadden@gmail.com,2021-03-29 06:04:58-05:00,GitHub,noreply@github.com,2021-03-29 11:04:58+00:00,True,gmail,github,* master,True,zopefoundation_zope.interface.git,zopefoundation/zope.interface.git,https://github.com/zopefoundation/zope.interface.git -2a51c1ea3feb56e37483802f54e9981817db6502,Jens Georg,mail@jensge.org,2020-07-26 17:45:10+02:00,Jens Georg,mail@jensge.org,2020-07-26 15:45:13+00:00,False,jensge,jensge,* master,True,GNOME_rygel.git,GNOME/rygel.git,https://gitlab.gnome.org/GNOME/rygel.git -cc64ffd45dd8d994dc8b4d1d3d4609648a8d870b,Tomas Doran,bobtfish@bobtfish.net,2014-07-11 11:15:01-04:00,Tomas Doran,bobtfish@bobtfish.net,2014-07-11 15:15:01+00:00,True,bobtfish,bobtfish,* master,True,bobtfish_text-multimarkdown.git,bobtfish/text-multimarkdown.git,https://github.com/bobtfish/text-multimarkdown.git -cacbd0dabef064a49ce1c1aa0c41a7d145a6c655,Michael Merickel,michael@merickel.org,2022-12-28 13:31:29-06:00,GitHub,noreply@github.com,2022-12-28 19:31:29+00:00,True,merickel,github,* main,True,Pylons_hupper,Pylons/hupper,https://github.com/Pylons/hupper -5e951f28c698a75070889a50889720f18290dcc9,Jonas Haag,jonas@lophus.org,2020-03-29 10:26:20+02:00,GitHub,noreply@github.com,2020-03-29 08:26:20+00:00,False,lophus,github,* master,True,jonashaag_klaus,jonashaag/klaus,https://github.com/jonashaag/klaus -8a37658d68dae463479ee88e96ee3f1f53a16f54,Chris Beaven,smileychris@gmail.com,2022-11-29 08:43:54+13:00,GitHub,noreply@github.com,2022-11-28 19:43:54+00:00,True,gmail,github,* main,True,lincolnloop_python-qrcode.git,lincolnloop/python-qrcode.git,https://github.com/lincolnloop/python-qrcode.git -6d93223e1017e6459f7a7bb7d5f8debe6f3df3fb,Gabriel Augendre,gabriel@augendre.info,2023-06-05 18:08:02+02:00,GitHub,noreply@github.com,2023-06-05 16:08:02+00:00,False,augendre,github,* main,True,django-extensions_django-extensions,django-extensions/django-extensions,https://github.com/django-extensions/django-extensions -2358739712f64bd578e64f5791557af505afd311,Steve Harris,steve.harris@garlik.com,2009-12-15 12:38:24+00:00,Steve Harris,steve.harris@garlik.com,2009-12-15 12:38:45+00:00,False,garlik,garlik,* master,True,swh_lv2,swh/lv2,https://github.com/swh/lv2 -6191d7d153b530c25a862e4da2de09ebde3118df,Mateusz Łukasik,mati75@linuxmint.pl,2024-02-07 18:26:06+01:00,Mateusz Łukasik,mati75@linuxmint.pl,2024-02-07 17:26:06+00:00,True,linuxmint,linuxmint,* master,True,mati75_gxkb.git,mati75/gxkb.git,https://github.com/mati75/gxkb.git -d1328b94ba60c5bf992ca4ba2323e8635986e61d,Mathieu Schroeter,mathieu.schroeter@mycable.ch,2010-10-02 14:05:49+02:00,Mathieu Schroeter,mathieu.schroeter@mycable.ch,2010-10-02 12:05:49+00:00,False,mycable,mycable,* master,True,GeeXboX_libnfo,GeeXboX/libnfo,https://github.com/GeeXboX/libnfo -bb7842e024d7b6b02cd038b9d94bdc02c9ee1be0,Andre Klapper,a9016009@gmx.de,2023-11-26 12:45:42+01:00,Andre Klapper,a9016009@gmx.de,2023-11-26 11:45:42+00:00,False,gmx,gmx,* master,True,GNOME_grilo,GNOME/grilo,https://gitlab.gnome.org/GNOME/grilo -171a05f21b81a47700a903b74e44e82001a1c71b,Alex Gaynor,alex.gaynor@gmailcom,2019-09-28 12:31:22-04:00,Alex Gaynor,alex.gaynor@gmailcom,2019-09-28 16:31:22+00:00,False,gmailcom,gmailcom,* master,True,alex_rply,alex/rply,https://github.com/alex/rply -acb78299d1270a2fea0d11e5509777b7c5777f3f,Ilya Etingof,etingof@gmail.com,2020-03-08 19:12:07+01:00,Ilya Etingof,etingof@gmail.com,2020-03-08 18:21:47+00:00,False,gmail,gmail,* master,True,etingof_pyasn1,etingof/pyasn1,https://github.com/etingof/pyasn1 -4a35e3344e8e36f6cbf4bd5d0abd715679ec9eec,Kjetil Kjernsmo,kjetil@kjernsmo.net,2016-02-26 12:44:31+01:00,Kjetil Kjernsmo,kjetil@kjernsmo.net,2016-02-26 11:44:31+00:00,False,kjernsmo,kjernsmo,* main,True,kjetilk_p5-lwp-useragent-chicaching.git,kjetilk/p5-lwp-useragent-chicaching.git,https://github.com/kjetilk/p5-lwp-useragent-chicaching.git -96555056d5decd5ada66fc64a72acf48d51fae41,merni-ns,66267867+merni-ns@users.noreply.github.com,2023-12-09 15:41:50+05:30,GitHub,noreply@github.com,2023-12-09 10:11:50+00:00,False,users,github,* master,True,OpenTTD_OpenMSX.git,OpenTTD/OpenMSX.git,https://github.com/OpenTTD/OpenMSX.git -24c976af360222ca8f297ac7f3cb5f1930f793b8,Andriy Grytsenko,andrej@rep.kiev.ua,2014-09-17 14:11:57+03:00,Andriy Grytsenko,andrej@rep.kiev.ua,2014-09-17 11:11:57+00:00,False,rep,rep,* master,True,lxde_lxinput.git,lxde/lxinput.git,https://github.com/lxde/lxinput.git -723f6368bb9115971e08d9aeae5e3ac22d2494e3,Matthias C. M. Troffaes,matthias.troffaes@gmail.com,2022-02-03 07:19:27+00:00,GitHub,noreply@github.com,2022-02-03 07:19:27+00:00,False,gmail,github,* develop,True,mcmtroffaes_pathlib2.git,mcmtroffaes/pathlib2.git,https://github.com/mcmtroffaes/pathlib2.git -c6f4a11d8e9c9ae83dd1b62c3c63798ab67a6b2d,Tristan Waddington,tristan.waddington@gmail.com,2020-02-03 10:29:48-08:00,Tristan Waddington,tristan.waddington@gmail.com,2020-02-03 18:29:48+00:00,False,gmail,gmail,* master,True,twaddington_django-gravatar,twaddington/django-gravatar,https://github.com/twaddington/django-gravatar -fa68ad8b2302e893e2ce9d4b4cd3a87a00021f1c,Daniel Molkentin,daniel@molkentin.de,2022-05-12 11:41:13+02:00,Lukas Schauer,lukas@schauer.dev,2022-10-31 15:22:04+00:00,False,molkentin,schauer,* master,True,lukas2511_dehydrated,lukas2511/dehydrated,https://github.com/lukas2511/dehydrated -a2a9c53ea262ea0d39e76aa18430ce071fbe68d5,Dan Bader,mail@dbader.org,2023-12-05 09:57:21+01:00,Waylan Limberg,waylan.limberg@icloud.com,2023-12-05 18:44:05+00:00,False,dbader,icloud,* master,True,Python-Markdown_markdown,Python-Markdown/markdown,https://github.com/Python-Markdown/markdown -6f9ee40ca0a36c4cc90f892ae2e2ed4b5b08c199,Kirill Klenov,horneds@gmail.com,2022-08-08 14:05:35+03:00,GitHub,noreply@github.com,2022-08-08 11:05:35+00:00,True,gmail,github,* develop,True,klen_pylama,klen/pylama,https://github.com/klen/pylama -9364712de0de3ac8693151c510c0fbbd85c7a32d,Marten van Kerkwijk,mhvk@astro.utoronto.ca,2023-10-13 07:07:32-04:00,GitHub,noreply@github.com,2023-10-13 11:07:32+00:00,True,astro,github,* master,True,liberfa_erfa,liberfa/erfa,https://github.com/liberfa/erfa -a54d2d4acafa4cbfcc364333c16486382c76b3c4,William Roberts,william.c.roberts@intel.com,2020-11-25 12:48:56-06:00,GitHub,noreply@github.com,2020-11-25 18:48:56+00:00,False,intel,github,* master,True,tpm2-software_tpm2-pkcs11.git,tpm2-software/tpm2-pkcs11.git,https://github.com/tpm2-software/tpm2-pkcs11.git -ebd1347b77f455e191ca8d2d26260b4d3cb05f66,Alexandr Ciornii,alexchorny@gmail.com,2014-03-18 14:31:27+02:00,Alexandr Ciornii,alexchorny@gmail.com,2014-03-18 12:31:27+00:00,False,gmail,gmail,* master,True,chorny_Switch.git,chorny/Switch.git,https://github.com/chorny/Switch.git +54ec656a060aa9e8daa9bd4ff039719c830a90cc,Zachary Carter,zack.carter@gmail.com,2009-12-22 21:30:29-05:00,Zachary Carter,zack.carter@gmail.com,2009-12-23 02:30:29+00:00,False,gmail,gmail,* master,True,zaach_jison,zaach/jison,https://github.com/zaach/jison +33a726d29b3fd9536582b11f2bdeda40f375bbf8,Victor Stinner,victor.stinner@gmail.com,2015-05-01 00:32:12+02:00,Victor Stinner,victor.stinner@gmail.com,2015-04-30 22:32:12+00:00,False,gmail,gmail,* master,True,cdent_pastescript.git,cdent/pastescript.git,https://github.com/cdent/pastescript.git +16f036c6217eefff009c2135f36ea291910b1416,Nathan Yergler,nathan@yergler.net,2006-02-27 17:28:24+00:00,Nathan Yergler,nathan@yergler.net,2006-02-27 17:28:24+00:00,False,yergler,yergler,* master,True,zopefoundation_zope.interface.git,zopefoundation/zope.interface.git,https://github.com/zopefoundation/zope.interface.git +2cf99077034bd517a0892d4a3283ca238a5deac3,Zeeshan Ali (Khattak),zeeshanak@src.gnome.org,2008-04-23 12:48:18+00:00,Zeeshan Ali (Khattak),zeeshanak@src.gnome.org,2008-04-23 12:48:18+00:00,False,src,src,* master,True,GNOME_rygel.git,GNOME/rygel.git,https://gitlab.gnome.org/GNOME/rygel.git +899f2fdaed605b0d4c71308a7dd77c67ad03210b,kulp,kulp@4b3c33cd-4c29-0410-a07e-8d9eac594458,2006-08-29 20:22:05+00:00,kulp,kulp@4b3c33cd-4c29-0410-a07e-8d9eac594458,2006-08-29 20:22:05+00:00,False,4b3c33cd-4c29-0410-a07e-8d9eac594458,4b3c33cd-4c29-0410-a07e-8d9eac594458,* master,True,bobtfish_text-multimarkdown.git,bobtfish/text-multimarkdown.git,https://github.com/bobtfish/text-multimarkdown.git +f6ee96cf37bdb805ed35416b4370e3e407875bca,Michael Merickel,michael@merickel.org,2016-10-18 01:26:21-05:00,Michael Merickel,michael@merickel.org,2016-10-18 06:39:25+00:00,False,merickel,merickel,* main,True,Pylons_hupper,Pylons/hupper,https://github.com/Pylons/hupper +5282610e1529c58c29b00ca2f8b008e95868ad9a,Jonas Haag,jonas@lophus.org,2011-06-08 16:05:33+02:00,Jonas Haag,jonas@lophus.org,2011-06-08 14:05:33+00:00,False,lophus,lophus,* master,True,jonashaag_klaus,jonashaag/klaus,https://github.com/jonashaag/klaus +e0b386f3045903df618b7c4d6e9d60cdd556f057,Chris Beaven,smileychris@gmail.com,2011-11-10 20:59:04+13:00,Chris Beaven,smileychris@gmail.com,2011-11-10 07:59:04+00:00,False,gmail,gmail,* main,True,lincolnloop_python-qrcode.git,lincolnloop/python-qrcode.git,https://github.com/lincolnloop/python-qrcode.git +4723cdd043d055946bea1171283d5ce0bc5cfc4a,trbs,trbs@trbs.net,2010-12-12 00:29:46+01:00,trbs,trbs@trbs.net,2010-12-11 23:29:46+00:00,False,trbs,trbs,* main,True,django-extensions_django-extensions,django-extensions/django-extensions,https://github.com/django-extensions/django-extensions +0cca75af52eec6fca169099aa5979836f943c7aa,Steve Harris,steve.harris@garlik.com,2009-06-15 15:37:12+01:00,Steve Harris,steve.harris@garlik.com,2009-06-15 14:37:12+00:00,False,garlik,garlik,* master,True,swh_lv2,swh/lv2,https://github.com/swh/lv2 +0f48af1564b110c9945594037792f2dec2f99127,Mateusz Łukasik,mati75@linuxmint.pl,2013-11-23 17:30:08+01:00,Mateusz Łukasik,mati75@linuxmint.pl,2013-11-23 16:30:08+00:00,False,linuxmint,linuxmint,* master,True,mati75_gxkb.git,mati75/gxkb.git,https://github.com/mati75/gxkb.git +e8559c2ced9178b3e95c44cbfaf7cc9182f9dff7,Benjamin Zores,ben@geexbox.org,2009-07-16 20:54:38+02:00,Benjamin Zores,ben@geexbox.org,2009-07-16 18:54:38+00:00,False,geexbox,geexbox,* master,True,GeeXboX_libnfo,GeeXboX/libnfo,https://github.com/GeeXboX/libnfo +03baa2f94f496c5813dbe9012cbc51fb973fcc28,Iago Toral,itoral@igalia.com,2009-12-14 11:52:18+01:00,Iago Toral,itoral@igalia.com,2009-12-14 10:52:18+00:00,False,igalia,igalia,* master,True,GNOME_grilo,GNOME/grilo,https://gitlab.gnome.org/GNOME/grilo +7d0485494eaa8fe27a14526d890a5ff2030adc9d,Alex Gaynor,alex.gaynor@gmail.com,2012-08-05 17:57:54-07:00,Alex Gaynor,alex.gaynor@gmail.com,2012-08-06 00:57:54+00:00,False,gmail,gmail,* master,True,alex_rply,alex/rply,https://github.com/alex/rply +0df024a97fb6f19f6f16c7049bc69a100df82bcc,elie,elie,2005-06-14 06:59:38+00:00,elie,elie,2005-06-14 06:59:38+00:00,False,elie,elie,* master,True,etingof_pyasn1,etingof/pyasn1,https://github.com/etingof/pyasn1 +f58af7c344ea6a17258846e9b8cbfb46148176d0,Kjetil Kjernsmo,kjetil@kjernsmo.net,2014-10-05 23:41:53+02:00,Kjetil Kjernsmo,kjetil@kjernsmo.net,2014-10-05 21:41:53+00:00,False,kjernsmo,kjernsmo,* main,True,kjetilk_p5-lwp-useragent-chicaching.git,kjetilk/p5-lwp-useragent-chicaching.git,https://github.com/kjetilk/p5-lwp-useragent-chicaching.git +7fa460ceedffaf3d2aa21851d285ce92c1fde00e,Patric Stout,truebrain@openttd.org,2023-07-02 21:07:29+02:00,GitHub,noreply@github.com,2023-07-02 19:07:29+00:00,False,openttd,github,* master,True,OpenTTD_OpenMSX.git,OpenTTD/OpenMSX.git,https://github.com/OpenTTD/OpenMSX.git +14f5ccb1279038d156daa41fa1c8838f5a2f7396,Hong Jen Yee (PCMan),pcman.tw@gmail.com,2009-04-28 13:22:20+00:00,Hong Jen Yee (PCMan),pcman.tw@gmail.com,2009-04-28 13:22:20+00:00,False,gmail,gmail,* master,True,lxde_lxinput.git,lxde/lxinput.git,https://github.com/lxde/lxinput.git +a621faa31c4402d21ba3d408127d3541a7d1de75,Antoine Pitrou,solipsis@pitrou.net,2012-01-30 18:59:52+01:00,Antoine Pitrou,solipsis@pitrou.net,2012-01-30 17:59:52+00:00,False,pitrou,pitrou,* develop,True,mcmtroffaes_pathlib2.git,mcmtroffaes/pathlib2.git,https://github.com/mcmtroffaes/pathlib2.git +893d8b727c0c5067646a322f8d10a0d7102b1253,Tristan Waddington,tristan.waddington@gmail.com,2011-07-18 18:51:47-07:00,Tristan Waddington,tristan.waddington@gmail.com,2011-07-19 01:51:47+00:00,False,gmail,gmail,* master,True,twaddington_django-gravatar,twaddington/django-gravatar,https://github.com/twaddington/django-gravatar +61f0b7ed7a2e805e08aa1f2412fb9b869a04fdeb,Lukas Schauer,lukas@schauer.so,2015-12-05 02:31:06+01:00,Lukas Schauer,lukas@schauer.so,2015-12-05 01:31:06+00:00,False,schauer,schauer,* master,True,lukas2511_dehydrated,lukas2511/dehydrated,https://github.com/lukas2511/dehydrated +158b8ee673be7aea09e15c3830092bcab62dbfbe,Waylan Limberg,waylan@gmail.com,2007-12-13 03:47:22+00:00,Waylan Limberg,waylan@gmail.com,2007-12-13 03:47:22+00:00,False,gmail,gmail,* master,True,Python-Markdown_markdown,Python-Markdown/markdown,https://github.com/Python-Markdown/markdown +f6f4aab68710f6e838dcbdcfe48aa2d3ff7d007c,Kirill Klenov,horneds@gmail.com,2012-08-17 14:23:47+04:00,Kirill Klenov,horneds@gmail.com,2012-08-17 10:23:47+00:00,False,gmail,gmail,* develop,True,klen_pylama,klen/pylama,https://github.com/klen/pylama +b4f739d98208246cd60c5ddbc63b3511d3b909af,Erik Tollerud,erik.tollerud@gmail.com,2013-05-25 17:33:03-04:00,Erik Tollerud,erik.tollerud@gmail.com,2013-05-25 21:33:03+00:00,False,gmail,gmail,* master,True,liberfa_erfa,liberfa/erfa,https://github.com/liberfa/erfa +48c26c5e1522b68dfc47621a68ef5577c0737952,William Roberts,william.c.roberts@intel.com,2018-09-20 09:52:43-07:00,William Roberts,william.c.roberts@intel.com,2018-09-20 16:52:43+00:00,False,intel,intel,* master,True,tpm2-software_tpm2-pkcs11.git,tpm2-software/tpm2-pkcs11.git,https://github.com/tpm2-software/tpm2-pkcs11.git +49da1c60c0f6124ad60695440d103c69c817510c,Damian Conway,damian@conway.org,2000-08-06 20:36:59-08:00,Michael G. Schwern,schwern@pobox.com,2009-12-13 06:44:08+00:00,False,conway,pobox,* master,True,chorny_Switch.git,chorny/Switch.git,https://github.com/chorny/Switch.git 52f80d42d6c1aee0bf4846986c942d865ed26bfd,tszilagyi,tszilagyi,2004-01-31 20:53:38+00:00,Tom Szilagyi,tom.szilagyi@altmail.se,2024-01-10 10:36:26+00:00,False,tszilagyi,altmail,* master,True,tomszilagyi_tap-plugins.git,tomszilagyi/tap-plugins.git,https://github.com/tomszilagyi/tap-plugins.git -59da4c89eba0ed004c5f084dae403a1787ac8a5f,Antonin Kral,A.Kral@sh.cvut.cz,2009-12-23 08:49:00+01:00,Antonin Kral,a.kral@bobek.cz,2011-08-17 08:25:09+00:00,False,sh,bobek,* master,True,bobek_gtkguitune,bobek/gtkguitune,https://github.com/bobek/gtkguitune -953a864063930ae23ac8bba9cb735665c5fe9336,Mateusz Łukasik,mati75@linuxmint.pl,2018-02-01 18:01:09+01:00,Mateusz Łukasik,mati75@linuxmint.pl,2018-02-01 17:01:09+00:00,True,linuxmint,linuxmint,* master,True,mati75_spacefm.git,mati75/spacefm.git,https://github.com/mati75/spacefm.git -33d7e8d0678f56511a6dd3933b19c26452db3e54,Arthur Noel,arthur@0compute.net,2014-10-21 17:43:44+01:00,Arthur Noel,arthur@0compute.net,2014-10-21 16:43:44+00:00,False,0compute,0compute,* master,True,0compute_yanc,0compute/yanc,https://github.com/0compute/yanc +3689b880c39c4f48899adf1a0ca8556a9d3c7a6f,Antonin Kral,a.kral@bobek.cz,2011-08-17 10:25:08+02:00,Antonin Kral,a.kral@bobek.cz,2011-08-17 08:25:08+00:00,False,bobek,bobek,* master,True,bobek_gtkguitune,bobek/gtkguitune,https://github.com/bobek/gtkguitune +dfe29b03010ab9846b1afc4926ce93f9aa46011d,Mateusz Łukasik,mati75@linuxmint.pl,2013-02-21 11:12:47+01:00,Mateusz Łukasik,mati75@linuxmint.pl,2013-02-21 10:12:47+00:00,False,linuxmint,linuxmint,* master,True,mati75_spacefm.git,mati75/spacefm.git,https://github.com/mati75/spacefm.git +1e8c24b97ccc73851d642d84c525fbba02faa2c5,Arthur Noel,arthur@ischium.net,2011-06-27 13:54:52+01:00,Arthur Noel,arthur@ischium.net,2011-06-27 12:54:52+00:00,False,ischium,ischium,* master,True,0compute_yanc,0compute/yanc,https://github.com/0compute/yanc 93d3f8e9e810bf32f8cc58a61bd8891c53915ac4,Neale Pickett,neale@debian.org,2001-12-06 16:12:10+00:00,Ryan Finnie,ryan@finnie.org,2015-11-29 04:37:28+00:00,False,debian,finnie,* main,True,rfinnie_robotfindskitten-pkg-debian,rfinnie/robotfindskitten-pkg-debian,https://github.com/rfinnie/robotfindskitten-pkg-debian -49115a8cfd5dff54d4199ddcec848bb9c34e4574,Matthieu Dartiailh,m.dartiailh@gmail.com,2023-10-31 09:15:59+01:00,GitHub,noreply@github.com,2023-10-31 08:15:59+00:00,False,gmail,github,* main,True,nucleic_kiwi,nucleic/kiwi,https://github.com/nucleic/kiwi -727508dfb5851721201dd39036203d08547aff14,Jason R. Coombs,jaraco@jaraco.com,2024-02-07 18:36:39-05:00,Jason R. Coombs,jaraco@jaraco.com,2024-02-07 23:36:39+00:00,True,jaraco,jaraco,* main,True,jaraco_keyrings.alt,jaraco/keyrings.alt,https://github.com/jaraco/keyrings.alt -845a3b4874f1892a76f04c3cc520e80b5041c303,Philipp Hancke,fippo@goodadvice.pages.de,2021-05-30 07:43:18+02:00,GitHub,noreply@github.com,2021-05-30 05:43:18+00:00,True,goodadvice,github,* main,True,webrtchacks_adapter,webrtchacks/adapter,https://github.com/webrtchacks/adapter -ad8fe14cc7cdfca9201128c2d685c34387f4da3d,Joachim Metz,joachim.metz@gmail.com,2021-07-28 05:16:53+02:00,Joachim Metz,joachim.metz@gmail.com,2021-07-28 03:16:53+00:00,False,gmail,gmail,* main,True,libyal_libfsapfs,libyal/libfsapfs,https://github.com/libyal/libfsapfs -b999bf4bdee4eeaa689df428a6a519c25467baa5,Christoph Ender,Christoph.Ender@Spellbreaker.org,2019-02-10 12:00:37+01:00,Christoph Ender,Christoph.Ender@Spellbreaker.org,2019-02-16 22:53:07+00:00,False,Spellbreaker,Spellbreaker,* master,True,chrender_libfizmo,chrender/libfizmo,https://github.com/chrender/libfizmo -e80c05df3425554a2cae1db064fc07e445b61a79,Matthias Kestenholz,mk@feinheit.ch,2024-02-22 20:43:21+01:00,GitHub,noreply@github.com,2024-02-22 19:43:21+00:00,False,feinheit,github,* main,True,jazzband_django-debug-toolbar.git,jazzband/django-debug-toolbar.git,https://github.com/jazzband/django-debug-toolbar.git -304ba0256d25a2353c42f64aa45c9501df890227,Rowen Stipe,rowen@Alien-Laptop.(none),2012-06-22 12:55:49-04:00,Rowen Stipe,rowen@Alien-Laptop.(none),2012-06-22 16:55:49+00:00,True,Alien-Laptop,Alien-Laptop,* master,True,mate-desktop_mate-icon-theme-faenza.git,mate-desktop/mate-icon-theme-faenza.git,https://github.com/mate-desktop/mate-icon-theme-faenza.git -b301e21a02daccbe1b786e1bf6bf2adc3261c4d9,David Romano,unobe@cpan.org,2010-03-12 23:53:19-08:00,David Romano,unobe@cpan.org,2010-03-13 07:53:19+00:00,False,cpan,cpan,* master,True,unobe_perl-wfa.git,unobe/perl-wfa.git,https://github.com/unobe/perl-wfa.git -0ff945cebaf658146119941f5417e3913bd302c5,Gilles Darold,gilles@darold.net,2023-11-27 07:25:21+03:00,GitHub,noreply@github.com,2023-11-27 04:25:21+00:00,True,darold,github,* master,True,darold_pgFormatter.git,darold/pgFormatter.git,https://github.com/darold/pgFormatter.git -9d955a1350ad17715f9a5c6864e98de4c88f9787,Sean Gillies,sean.gillies@gmail.com,2024-01-08 14:17:19-07:00,GitHub,noreply@github.com,2024-01-08 21:17:19+00:00,False,gmail,github,* main,True,rasterio_rasterio.git,rasterio/rasterio.git,https://github.com/rasterio/rasterio.git -1ffdc2f5c4016a65aa1930d1164d00749f102850,Pixie,pix@kepibu.org,2015-05-15 11:50:22-05:00,Pixie,pix@kepibu.org,2015-06-01 05:09:08+00:00,False,kepibu,kepibu,* master,True,pinterface_cl-ftp,pinterface/cl-ftp,https://github.com/pinterface/cl-ftp -2e5d87ab81962f2e34f9106eadde6474b5826ff1,Software2,software2@candc3.com,2022-07-10 00:53:27-07:00,raveit65,mate@raveit.de,2022-07-10 09:04:47+00:00,False,candc3,raveit,* master,True,mate-desktop_eom.git,mate-desktop/eom.git,https://github.com/mate-desktop/eom.git -0e413db607968b5aba97a35fc483115dd9606e0e,Kirill Müller,kirill@cynkra.com,2024-01-20 11:24:24+01:00,Kirill Müller,kirill@cynkra.com,2024-01-20 10:24:24+00:00,True,cynkra,cynkra,* main,True,r-dbi_RSQLite.git,r-dbi/RSQLite.git,https://github.com/r-dbi/RSQLite.git -92e4f28b8c8e3cc9128cfba228c0aa10f4ec6e75,Joachim Metz,joachim.metz@gmail.com,2020-08-14 22:21:11+02:00,Joachim Metz,joachim.metz@gmail.com,2020-08-14 20:21:11+00:00,False,gmail,gmail,* main,True,libyal_libvslvm,libyal/libvslvm,https://github.com/libyal/libvslvm -561ba83254f8b08e37d83ce886c2becb5af7c2a7,Zygmunt Krynicki,me@zygoon.pl,2015-02-16 11:38:27+01:00,Zygmunt Krynicki,me@zygoon.pl,2015-02-16 10:38:27+00:00,True,zygoon,zygoon,* master,True,zyga_padme,zyga/padme,https://github.com/zyga/padme -d2d5565f1a07f1979a8544fb022d3e2aed355611,Stefano Karapetsas,stefano@karapetsas.com,2012-12-01 12:57:58+01:00,Stefano Karapetsas,stefano@karapetsas.com,2012-12-01 11:57:58+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_mate-backgrounds.git,mate-desktop/mate-backgrounds.git,https://github.com/mate-desktop/mate-backgrounds.git -4f85ffadc2140ea8d29efaedd7bdae048f6c91bc,Daniel Wagner,dwagner@suse.de,2021-07-07 13:44:57+02:00,Daniel Wagner,dwagner@suse.de,2021-07-07 11:44:57+00:00,False,suse,suse,* master,True,igaw_jitterdebugger.git,igaw/jitterdebugger.git,https://github.com/igaw/jitterdebugger.git -0ca17e95926068f1e5696f90ff2719fa45c8f1c1,Parag Nemade,pnemade@redhat.com,2016-06-27 18:38:37+05:30,Parag Nemade,pnemade@redhat.com,2016-06-27 13:08:37+00:00,False,redhat,redhat,* master,True,GNOME_caribou.git,GNOME/caribou.git,https://gitlab.gnome.org/GNOME/caribou.git -93025a8693cf7ed18169339486a61a28e95d9793,Vladimir,vlemp@vuksan.com,2015-10-01 10:26:46-04:00,Vladimir,vlemp@vuksan.com,2015-10-01 14:26:46+00:00,False,vuksan,vuksan,* master,True,ganglia_ganglia-web,ganglia/ganglia-web,https://github.com/ganglia/ganglia-web -c247048c844f872c0b2039b5d413425660b12c60,sunnavy,sunnavy@bestpractical.com,2023-12-12 17:21:30-05:00,sunnavy,sunnavy@bestpractical.com,2023-12-12 22:28:17+00:00,False,bestpractical,bestpractical,* master,True,bestpractical_gnupg-interface.git,bestpractical/gnupg-interface.git,https://github.com/bestpractical/gnupg-interface.git -a48b7fbb6ad35d3fa01baa3bca735b1a94ebf856,Nando Florestan,nandoflorestan@gmail.com,2020-01-21 20:28:23+01:00,Nando Florestan,nandoflorestan@gmail.com,2020-01-21 19:36:56+00:00,False,gmail,gmail,* master,True,nandoflorestan_nine,nandoflorestan/nine,https://github.com/nandoflorestan/nine -fe0782b4f276fa8a471cc205a25bf5abc8d16cd5,Timo Röhling,timo@gaussglocke.de,2023-08-17 17:53:15+02:00,Timo Röhling,timo@gaussglocke.de,2023-08-17 15:53:15+00:00,False,gaussglocke,gaussglocke,* main,True,roehling_postsrsd.git,roehling/postsrsd.git,https://github.com/roehling/postsrsd.git -ef994be749c1c175ca7d1f9f580304fc68a6f519,Brad Rogers,brad12rogers@gmail.com,2020-11-03 13:50:52-05:00,GitHub,noreply@github.com,2020-11-03 18:50:52+00:00,False,gmail,github,* main,True,dropbox_dropbox-sdk-python,dropbox/dropbox-sdk-python,https://github.com/dropbox/dropbox-sdk-python -a69da77cae394f006a0b67ab194524faeaea9b07,studioj,22102283+studioj@users.noreply.github.com,2023-05-17 15:08:09+02:00,GitHub,noreply@github.com,2023-05-17 13:08:09+00:00,False,users,github,* main,True,pycontribs_jira,pycontribs/jira,https://github.com/pycontribs/jira -c692144fe20c388657bca27fc81d581c7281100d,Pete Ratzlaff,pratzlaff@cfa.harvard.edu,2023-07-28 16:24:17-04:00,Pete Ratzlaff,pratzlaff@cfa.harvard.edu,2023-07-28 20:24:17+00:00,False,cfa,cfa,* main,True,pratzlaff_Astro-FITS-CFITSIO,pratzlaff/Astro-FITS-CFITSIO,https://github.com/pratzlaff/Astro-FITS-CFITSIO -9560ae79b815709e56b3bed8f674e4ce2183c9e9,Brandon Conway,brandoncc@gmail.com,2022-12-02 13:52:06-08:00,GitHub,noreply@github.com,2022-12-02 21:52:06+00:00,False,gmail,github,* master,True,state-machines_state_machines,state-machines/state/machines,https://github.com/state-machines/state_machines -30e2c7f24d035430b255b5990790e61afe81c0b5,Chris Wood,chris@wood.is,2024-01-24 16:47:49+00:00,GitHub,noreply@github.com,2024-01-24 16:47:49+00:00,False,wood,github,* master,True,scrapinghub_dateparser,scrapinghub/dateparser,https://github.com/scrapinghub/dateparser -ad259975beabfedc1be968d90026b90b3ba12013,Aliaksei Urbanski,aliaksei.urbanski@gmail.com,2024-02-16 19:35:44+03:00,GitHub,noreply@github.com,2024-02-16 16:35:44+00:00,False,gmail,github,* master,True,aio-libs_async_timeout.git,aio-libs/async/timeout.git,https://github.com/aio-libs/async_timeout.git -b6ad0981643ecc0fc95f27dae90a7d8da46992f6,John Paulett,john@paulett.org,2020-02-17 13:17:43-05:00,John Paulett,john@paulett.org,2020-02-17 18:17:43+00:00,True,paulett,paulett,* main,True,johnpaulett_python-hl7.git,johnpaulett/python-hl7.git,https://github.com/johnpaulett/python-hl7.git -f1fcf2b1bf75d6d0ad37efcdd13b1be09693b8b1,Mikhail Korobov,kmike84@gmail.com,2022-10-25 11:10:33+05:00,GitHub,noreply@github.com,2022-10-25 06:10:33+00:00,True,gmail,github,* master,True,scrapy_cssselect,scrapy/cssselect,https://github.com/scrapy/cssselect -9811027bdedbd811a482a1d23817905dbc94e417,Alexey Stepanov,penguinolog@users.noreply.github.com,2024-02-13 11:09:29+01:00,GitHub,noreply@github.com,2024-02-13 10:09:29+00:00,False,users,github,* master,True,urwid_urwid.git,urwid/urwid.git,https://github.com/urwid/urwid.git +100c4800acba1896ebd64e179ad5616e43d59eb5,Chris Colbert,sccolbert@gmail.com,2014-01-09 19:31:31-05:00,Chris Colbert,sccolbert@gmail.com,2014-01-10 00:31:31+00:00,False,gmail,gmail,* main,True,nucleic_kiwi,nucleic/kiwi,https://github.com/nucleic/kiwi +5ad18328e8f38abcc5a0fc4a549e7a3c40697d4e,Jason R. Coombs,jaraco@jaraco.com,2015-12-19 22:29:56-05:00,Jason R. Coombs,jaraco@jaraco.com,2015-12-20 03:29:56+00:00,False,jaraco,jaraco,* main,True,jaraco_keyrings.alt,jaraco/keyrings.alt,https://github.com/jaraco/keyrings.alt +0fc017e88bccfc2c4bd39084f1e140e16943ecf9,Sam Dutton,samdutton@gmail.com,2013-09-20 03:40:24-07:00,Sam Dutton,samdutton@gmail.com,2013-09-20 10:40:24+00:00,False,gmail,gmail,* main,True,webrtchacks_adapter,webrtchacks/adapter,https://github.com/webrtchacks/adapter +4d669f11b8c77ae29274f3cb969a14c1e3b4958d,Joachim Metz,joachim.metz@gmail.com,2018-09-07 07:18:00+02:00,Joachim Metz,joachim.metz@gmail.com,2018-09-07 05:18:00+00:00,False,gmail,gmail,* main,True,libyal_libfsapfs,libyal/libfsapfs,https://github.com/libyal/libfsapfs +48438cc5b35c665a398afe6cb748d0c2284acf40,chrender,chrender,2010-08-13 07:54:58+00:00,chrender,chrender,2010-08-13 07:54:58+00:00,False,chrender,chrender,* master,True,chrender_libfizmo,chrender/libfizmo,https://github.com/chrender/libfizmo +ab06fbe6bf60be18a740547db957b5c44ae6b786,Rob Hudson,rob@cogit8.org,2008-08-27 23:57:17-07:00,Rob Hudson,rob@cogit8.org,2008-08-28 06:57:17+00:00,False,cogit8,cogit8,* main,True,jazzband_django-debug-toolbar.git,jazzband/django-debug-toolbar.git,https://github.com/jazzband/django-debug-toolbar.git +ed07ab7b7a838c26372bdebe0edbe6ae5560127e,Stefano Karapetsas,stefano@karapetsas.com,2012-05-26 22:14:25+02:00,Stefano Karapetsas,stefano@karapetsas.com,2012-05-26 20:14:25+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_mate-icon-theme-faenza.git,mate-desktop/mate-icon-theme-faenza.git,https://github.com/mate-desktop/mate-icon-theme-faenza.git +774a6e47583e0d5a83366bc246e0529679528a23,dromano,dromano@a3c37c4d-c931-0410-83b8-a36781ac0157,2007-03-04 21:12:37+00:00,dromano,dromano@a3c37c4d-c931-0410-83b8-a36781ac0157,2007-03-04 21:12:37+00:00,False,a3c37c4d-c931-0410-83b8-a36781ac0157,a3c37c4d-c931-0410-83b8-a36781ac0157,* master,True,unobe_perl-wfa.git,unobe/perl-wfa.git,https://github.com/unobe/perl-wfa.git +a6094d54408aef92c2f3cae85a2b325d42c57792,Darold Gilles,gilles@darold.net,2012-12-22 22:21:53+01:00,Darold Gilles,gilles@darold.net,2012-12-22 21:21:53+00:00,False,darold,darold,* master,True,darold_pgFormatter.git,darold/pgFormatter.git,https://github.com/darold/pgFormatter.git +002c0fcd681fb138e9acfa8c6b0f70960a6a6469,Sean Gillies,sean.gillies@gmail.com,2013-11-04 12:00:19-07:00,Sean Gillies,sean.gillies@gmail.com,2013-11-04 19:00:19+00:00,False,gmail,gmail,* main,True,rasterio_rasterio.git,rasterio/rasterio.git,https://github.com/rasterio/rasterio.git +a2d50e0269ecdb880c39d6ad4438697330f415ae,Pixie,pix@kepibu.org,2015-05-13 08:22:45-05:00,Pixie,pix@kepibu.org,2015-06-01 05:08:40+00:00,False,kepibu,kepibu,* master,True,pinterface_cl-ftp,pinterface/cl-ftp,https://github.com/pinterface/cl-ftp +a8d28a6ce7e0c56dacba5d527d9134573a008902,Perberos,perberos@gmail.com,2011-11-06 19:30:49-03:00,Perberos,perberos@gmail.com,2011-11-06 22:30:49+00:00,False,gmail,gmail,* master,True,mate-desktop_eom.git,mate-desktop/eom.git,https://github.com/mate-desktop/eom.git +8a015991682b75caa4421eb404f0eecf16cd8bf9,sethf,sethf@dcde13d4-9b1b-0410-ac9e-ef07de68c835,2006-08-31 23:32:54+00:00,sethf,sethf@dcde13d4-9b1b-0410-ac9e-ef07de68c835,2006-08-31 23:32:54+00:00,False,dcde13d4-9b1b-0410-ac9e-ef07de68c835,dcde13d4-9b1b-0410-ac9e-ef07de68c835,* main,True,r-dbi_RSQLite.git,r-dbi/RSQLite.git,https://github.com/r-dbi/RSQLite.git +1758f216def8faa9bab994992d808866c4d0373c,Joachim Metz,joachim.metz@gmail.com,2014-10-01 08:26:47+02:00,Joachim Metz,joachim.metz@gmail.com,2014-10-01 06:26:47+00:00,False,gmail,gmail,* main,True,libyal_libvslvm,libyal/libvslvm,https://github.com/libyal/libvslvm +44be7c4582c077924d88a7a551cc31700f1014f3,Zygmunt Krynicki,zygmunt.krynicki@canonical.com,2015-02-11 19:39:51+01:00,Zygmunt Krynicki,zygmunt.krynicki@canonical.com,2015-02-11 19:42:49+00:00,False,canonical,canonical,* master,True,zyga_padme,zyga/padme,https://github.com/zyga/padme +e59145232c55785c2d5687d615016e6250140e79,Perberos,perberos@gmail.com,2011-11-30 18:59:39-03:00,Perberos,perberos@gmail.com,2011-11-30 21:59:39+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-backgrounds.git,mate-desktop/mate-backgrounds.git,https://github.com/mate-desktop/mate-backgrounds.git +a95c1a461def8f20df50c5e60ae74a3aaefb9f4b,Daniel Wagner,wagi@monom.org,2018-06-09 14:37:11+02:00,Daniel Wagner,daniel.wagner@siemens.com,2018-10-26 10:45:14+00:00,False,monom,siemens,* master,True,igaw_jitterdebugger.git,igaw/jitterdebugger.git,https://github.com/igaw/jitterdebugger.git +c56a984f7c45b1594cc2b6507678c4cab942f852,Ben Konrath,ben@bagu.org,2009-11-14 22:09:34-06:00,Ben Konrath,ben@bagu.org,2009-11-15 04:09:34+00:00,False,bagu,bagu,* master,True,GNOME_caribou.git,GNOME/caribou.git,https://gitlab.gnome.org/GNOME/caribou.git +5eeb4026025c9ed9d8bd76002908856ae50c8579,vvuksan,vlemp@vuksan.com,2010-10-22 13:34:07-04:00,vvuksan,vlemp@vuksan.com,2010-10-22 17:34:07+00:00,False,vuksan,vuksan,* master,True,ganglia_ganglia-web,ganglia/ganglia-web,https://github.com/ganglia/ganglia-web +2f3a7af653126f7bb6ce4ae7e8929b27f250eebe,Ruslan Zakirov,ruz@bestpractical.com,2006-12-14 01:37:14+00:00,Ruslan Zakirov,ruz@bestpractical.com,2006-12-14 01:37:14+00:00,False,bestpractical,bestpractical,* master,True,bestpractical_gnupg-interface.git,bestpractical/gnupg-interface.git,https://github.com/bestpractical/gnupg-interface.git +7fad3bf90af49ce15fee628a48eb3fd53ec7c772,Nando Florestan,nandoflorestan@gmail.com,2013-06-25 17:01:30-03:00,Nando Florestan,nandoflorestan@gmail.com,2013-06-25 20:01:30+00:00,False,gmail,gmail,* master,True,nandoflorestan_nine,nandoflorestan/nine,https://github.com/nandoflorestan/nine +a85d7d871f5e6dc38f67712261f264de90c29d4d,Timo Röhling,timo@gaussglocke.de,2022-08-23 01:17:04+02:00,Timo Röhling,timo@gaussglocke.de,2022-08-22 23:17:04+00:00,False,gaussglocke,gaussglocke,* main,True,roehling_postsrsd.git,roehling/postsrsd.git,https://github.com/roehling/postsrsd.git +f72f99d83dd85d43e3a241137ca4d1ac78d9e5b3,Ken Elkabany,kelkabany@dropbox.com,2015-06-15 11:00:05-07:00,Ken Elkabany,kelkabany@dropbox.com,2015-06-15 18:00:05+00:00,False,dropbox,dropbox,* main,True,dropbox_dropbox-sdk-python,dropbox/dropbox-sdk-python,https://github.com/dropbox/dropbox-sdk-python +557859d56cc8c1db5dde5fa53a151b7ea480e382,Ben Speakmon,bspeakmon@atlassian.com,2012-04-29 23:40:08-07:00,Ben Speakmon,bspeakmon@atlassian.com,2012-04-30 06:40:08+00:00,False,atlassian,atlassian,* main,True,pycontribs_jira,pycontribs/jira,https://github.com/pycontribs/jira +c1ef266036503114d3e999665b534089e667bfd7,Pete Ratzlaff,pratzlaff@cfa.harvard.edu,2023-06-16 22:53:39-04:00,Pete Ratzlaff,pratzlaff@cfa.harvard.edu,2023-06-17 02:53:39+00:00,False,cfa,cfa,* main,True,pratzlaff_Astro-FITS-CFITSIO,pratzlaff/Astro-FITS-CFITSIO,https://github.com/pratzlaff/Astro-FITS-CFITSIO +651d4ff1dd21ae1786358efc4f76d5c7164f1b7d,Abdelkader Boudih,terminale@gmail.com,2014-04-27 22:10:51+00:00,Abdelkader Boudih,terminale@gmail.com,2014-04-27 22:10:51+00:00,False,gmail,gmail,* master,True,state-machines_state_machines,state-machines/state/machines,https://github.com/state-machines/state_machines +73ccace4e4b487e5c31ebce304b31257aaa2ad8a,Elias Dorneles,eliasdorneles@gmail.com,2014-08-15 19:11:55-03:00,Elias Dorneles,eliasdorneles@gmail.com,2014-08-15 22:11:55+00:00,False,gmail,gmail,* master,True,scrapinghub_dateparser,scrapinghub/dateparser,https://github.com/scrapinghub/dateparser +3b295845d830357fbcf99b0acd55708e44a0e3ac,Andrew Svetlov,andrew.svetlov@gmail.com,2016-09-08 15:57:19+03:00,Andrew Svetlov,andrew.svetlov@gmail.com,2016-09-08 12:57:19+00:00,False,gmail,gmail,* master,True,aio-libs_async_timeout.git,aio-libs/async/timeout.git,https://github.com/aio-libs/async_timeout.git +d648a23e5ca9c593750fb78696b5f7e9d8b83aa7,John Paulett,john@paulett.org,2011-07-12 13:27:14-05:00,John Paulett,john@paulett.org,2011-07-12 18:31:08+00:00,False,paulett,paulett,* main,True,johnpaulett_python-hl7.git,johnpaulett/python-hl7.git,https://github.com/johnpaulett/python-hl7.git +67081105dddb4caaa15494a1208fec2c14ca93df,Simon Sapin,simon.sapin@exyr.org,2012-04-13 17:30:50+02:00,Simon Sapin,simon.sapin@exyr.org,2012-04-13 15:30:50+00:00,False,exyr,exyr,* master,True,scrapy_cssselect,scrapy/cssselect,https://github.com/scrapy/cssselect +8d3f41445e6717ca950887c98cb8060ae70335ce,Wendell,wackywendell@gmail.com,2010-08-04 16:58:26-04:00,Wendell,wackywendell@gmail.com,2010-08-04 20:58:26+00:00,False,gmail,gmail,* master,True,urwid_urwid.git,urwid/urwid.git,https://github.com/urwid/urwid.git b4495530a8a6ba0c15177a2bb59f9ffc830c6dbb,Lubomir Rintel,lubo.rintel@gooddata.com,2012-07-16 16:53:28+02:00,Lubomir Rintel,lubo.rintel@gooddata.com,2012-07-16 14:53:28+00:00,False,gooddata,gooddata,* master,True,lkundrak_perl-Authen-Captcha.git,lkundrak/perl-Authen-Captcha.git,https://github.com/lkundrak/perl-Authen-Captcha.git -28bd045adf8e0e050fc8dc1bb19c379188ca372a,dave mankoff,mankyd@gmail.com,2017-02-24 21:27:19-05:00,GitHub,noreply@github.com,2017-02-25 02:27:19+00:00,True,gmail,github,* master,True,mankyd_htmlmin,mankyd/htmlmin,https://github.com/mankyd/htmlmin -6ded18b5c3cb294584f0355d7f1443beefe84803,Grzegorz Nosek,root@localdomain.pl,2015-04-19 10:28:39+02:00,Grzegorz Nosek,root@localdomain.pl,2015-04-19 08:28:39+00:00,True,localdomain,localdomain,* master,True,gnosek_fcgiwrap,gnosek/fcgiwrap,https://github.com/gnosek/fcgiwrap -f1dadfc1d5bba767eac49c75d3437e3ac2002cad,Joe,josephj111111@gmail.com,2023-04-06 02:36:28-04:00,GitHub,noreply@github.com,2023-04-06 06:36:28+00:00,True,gmail,github,* master,True,autokey_autokey.git,autokey/autokey.git,https://github.com/autokey/autokey.git -136808718af8b9583cb2eed1756ed6972eda4975,Jonathan Hartley,tartley@tartley.com,2023-12-01 06:49:19-06:00,GitHub,noreply@github.com,2023-12-01 12:49:19+00:00,True,tartley,github,* master,True,tartley_colorama,tartley/colorama,https://github.com/tartley/colorama -0fd9b72eee44efe2b079cee0a806719358a60e6b,Daniel Pocock,daniel@pocock.pro,2015-02-28 12:51:31+01:00,Daniel Pocock,daniel@pocock.pro,2015-02-28 11:51:31+00:00,False,pocock,pocock,* master,True,ganglia_jmxetric,ganglia/jmxetric,https://github.com/ganglia/jmxetric -f9fe4d4b1a3fd20d909244367ccb303c6ce08366,Sunil Joshi,joshi.sunil@outlook.com,2022-10-20 14:08:09+05:30,GitHub,noreply@github.com,2022-10-20 08:38:09+00:00,False,outlook,github,* master,True,cmus_cmus,cmus/cmus,https://github.com/cmus/cmus -4065dcfe2f1eecdf1eac64fad802aaf137462a9a,Thomas Kemmer,tkemmer@computer.org,2022-04-03 22:50:11+02:00,Thomas Kemmer,tkemmer@computer.org,2022-04-03 20:50:11+00:00,False,computer,computer,* master,True,tkem_mopidy-podcast-itunes,tkem/mopidy-podcast-itunes,https://github.com/tkem/mopidy-podcast-itunes -e4737b1ea020fa6285710f28bc2faee0e208efce,Peter Pentchev,roam@ringlet.net,2020-05-03 19:15:02+03:00,Peter Pentchev,roam@ringlet.net,2020-05-03 16:15:02+00:00,False,ringlet,ringlet,* master,True,ppentchev_id3,ppentchev/id3,https://gitlab.com/ppentchev/id3 -1cdc85626d2310d1e5eb692c5f5fe3e043228612,intrigeri,intrigeri@boum.org,2020-05-24 13:48:04+00:00,intrigeri,intrigeri@boum.org,2020-05-24 13:48:04+00:00,False,boum,boum,* master,True,tails_onioncircuits,tails/onioncircuits,https://gitlab.tails.boum.org/tails/onioncircuits -8e89ed55b67e91c2c5f11cacee3ea94c0ad73e65,richardsheridan,richard.sheridan@gmail.com,2022-06-28 13:05:48-04:00,Charly C,changaco@changaco.oy.lc,2022-06-29 07:13:23+00:00,False,gmail,changaco,* master,True,Changaco_setuptools_scm_git_archive,Changaco/setuptools/scm/git/archive,https://github.com/Changaco/setuptools_scm_git_archive -80da3bf8ca12dd791fe69526e1466fb705918e13,Thomas Kemmer,tkemmer@computer.org,2022-04-03 21:11:45+02:00,Thomas Kemmer,tkemmer@computer.org,2022-04-03 19:56:02+00:00,False,computer,computer,* master,True,tkem_mopidy-internetarchive,tkem/mopidy-internetarchive,https://github.com/tkem/mopidy-internetarchive -75afe5c433cef60d8d2a708d4f0eb859ff9d4bdb,Grant Jenks,grant.jenks@gmail.com,2021-01-18 11:27:17-08:00,Grant Jenks,grant.jenks@gmail.com,2021-01-18 19:27:17+00:00,False,gmail,gmail,* master,True,grantjenks_python-sortedcollections,grantjenks/python-sortedcollections,https://github.com/grantjenks/python-sortedcollections -bb4a213acf8794431693204502a171ccdda82a3c,Sudip Mukherjee,sudipm.mukherjee@gmail.com,2022-10-16 19:29:10+01:00,Sudip Mukherjee,sudipm.mukherjee@gmail.com,2022-10-16 18:29:10+00:00,True,gmail,gmail,* debian/sid,True,sudipm-mukherjee_trace-cmd.git,sudipm-mukherjee/trace-cmd.git,https://github.com/sudipm-mukherjee/trace-cmd.git -cfa66b31abf9b359af9c1e82c3547dda88099700,Ed J,mohawk2@users.noreply.github.com,2021-05-08 14:46:09+01:00,Ed J,mohawk2@users.noreply.github.com,2021-05-08 13:46:09+00:00,False,users,users,* master,True,jlapeyre_PDL-IO-Matlab.git,jlapeyre/PDL-IO-Matlab.git,https://github.com/jlapeyre/PDL-IO-Matlab.git -e53b4dec09d0a983a4989814361839f24d0e593c,Jonas Stein,news@jonasstein.de,2023-02-11 14:05:50+01:00,davidpolverari,david.polverari@gmail.com,2023-04-26 18:04:53+00:00,False,jonasstein,gmail,* master,True,resurrecting-open-source-projects_dcfldd,resurrecting-open-source-projects/dcfldd,https://github.com/resurrecting-open-source-projects/dcfldd -4e5dee93ebbaf5bd7bd7da80ce34b2eef196cd08,Peter Klausler,pmklausler@gmail.com,2016-03-02 19:39:54-08:00,Peter Klausler,pmklausler@gmail.com,2016-03-03 03:39:54+00:00,False,gmail,gmail,* master,True,pklausler_aoeui.git,pklausler/aoeui.git,https://github.com/pklausler/aoeui.git -3d828d2f44e5429f79c98460bc5f04d098f7922b,Peyman Salehi,slh.peyman@gmail.com,2023-03-09 13:36:20+03:30,GitHub,noreply@github.com,2023-03-09 10:06:20+00:00,False,gmail,github,* master,True,jazzband_django-pipeline,jazzband/django-pipeline,https://github.com/jazzband/django-pipeline -b1cec3fadf3df2086ac2b70933871526bccd74ed,Linus Lewandowski,linus@lew21.net,2018-05-06 14:22:07+02:00,GitHub,noreply@github.com,2018-05-06 12:22:07+00:00,True,lew21,github,* master,True,LEW21_pydbus,LEW21/pydbus,https://github.com/LEW21/pydbus -83d8959a5996646ff2c3d1af707001cb38cfc1fe,Timothy Legge,timlegge@gmail.com,2023-08-06 11:34:22-03:00,GitHub,noreply@github.com,2023-08-06 14:34:22+00:00,True,gmail,github,* main,True,perl-openssl_perl-crypt-openssl-pkcs10.git,perl-openssl/perl-crypt-openssl-pkcs10.git,https://github.com/perl-openssl/perl-crypt-openssl-pkcs10.git -08877a2f94ec50a91d415aa864836c021c0f5a0e,Eugene Trounev,eugene.trounev@gmail.com,2008-11-17 15:26:31+00:00,Eugene Trounev,eugene.trounev@gmail.com,2008-11-17 15:26:31+00:00,False,gmail,gmail,* master,True,kubrick.git,kubrick.git,https://anongit.kde.org/kubrick.git -8a7393782cfc4dde72f4597f56c0211eb0c76550,Benjamin Rösner,benjamin.roesner@dwd.de,2023-11-28 10:44:30+01:00,Benjamin Rösner,benjamin.roesner@dwd.de,2023-11-28 09:44:30+00:00,True,dwd,dwd,* main,True,pytroll_satpy,pytroll/satpy,https://github.com/pytroll/satpy -647f21332d37c05e888eb9d01261310450704d53,Lubomir Rintel,lkundrak@v3.sk,2019-03-15 20:59:05+01:00,Lubomir Rintel,lkundrak@v3.sk,2019-04-10 17:02:46+00:00,False,v3,v3,* main,True,GNOME_mobile-broadband-provider-info,GNOME/mobile-broadband-provider-info,https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info -89d7f37ec887f8c327b706ebfd33887d4f5e28a5,Priyansh Agrawal,agrawal.priyansh@yahoo.in,2024-01-10 16:06:05+00:00,GitHub,noreply@github.com,2024-01-10 16:06:05+00:00,False,yahoo,github,* master,True,getsentry_responses,getsentry/responses,https://github.com/getsentry/responses -fd1dbd7ab3690f2813d8d0559bd8fa4c7adc09e3,Calle Laakkonen,laakkonenc@gmail.com,2014-10-04 10:59:22+03:00,Calle Laakkonen,laakkonenc@gmail.com,2014-10-04 07:59:22+00:00,False,gmail,gmail,* master,True,callaa_luola.git,callaa/luola.git,https://github.com/callaa/luola.git +195ae85fc6b88965b6492b202cdda98892c6a083,Dave Mankoff,mankyd@gmail.com,2013-02-12 18:14:20-05:00,Dave Mankoff,mankyd@gmail.com,2013-02-12 23:14:20+00:00,False,gmail,gmail,* master,True,mankyd_htmlmin,mankyd/htmlmin,https://github.com/mankyd/htmlmin +ac463e8597becbb9d1dfab1151955d4a77898829,W-Mark Kubacki,wmark@hurrikane.de,2010-03-18 14:06:08+01:00,W-Mark Kubacki,wmark@hurrikane.de,2010-03-18 13:06:08+00:00,False,hurrikane,hurrikane,* master,True,gnosek_fcgiwrap,gnosek/fcgiwrap,https://github.com/gnosek/fcgiwrap +e299168b3e07f6719f1c53d5f7135333391fe8d4,peabody17,peabody17@65b5f37c-86d1-11de-b610-71a7c637a048,2008-02-01 01:18:28+00:00,peabody17,peabody17@65b5f37c-86d1-11de-b610-71a7c637a048,2008-02-01 01:18:28+00:00,False,65b5f37c-86d1-11de-b610-71a7c637a048,65b5f37c-86d1-11de-b610-71a7c637a048,* master,True,autokey_autokey.git,autokey/autokey.git,https://github.com/autokey/autokey.git +b59e61ef59f782c63c170c14efa4ffbf7448cc74,Jonathan Hartley,tartley@tartley.com,2014-04-17 21:30:37+01:00,Jonathan Hartley,tartley@tartley.com,2014-04-17 20:30:37+00:00,False,tartley,tartley,* master,True,tartley_colorama,tartley/colorama,https://github.com/tartley/colorama +9c6710ace0bc062b365122f7d996c587d1dec970,Jasper Humphrey,jasper521@gmail.com,2008-04-20 14:50:02+00:00,Jasper Humphrey,jasper521@gmail.com,2008-04-20 14:50:02+00:00,False,gmail,gmail,* master,True,ganglia_jmxetric,ganglia/jmxetric,https://github.com/ganglia/jmxetric +3aab78f9f94393f4ac995e4f6ec939462b873bb4,Timo Hirvonen,tihirvon@ee.oulu.fi,2005-06-05 21:20:51+03:00,,timo@garlic.home.net,2005-06-05 18:20:51+00:00,False,ee,garlic,* master,True,cmus_cmus,cmus/cmus,https://github.com/cmus/cmus +80d7283c4e5dd05e236b9b1fba5b534f4181ae31,Thomas Kemmer,tkemmer@computer.org,2014-03-07 05:44:03+01:00,Thomas Kemmer,tkemmer@computer.org,2014-03-07 04:44:03+00:00,False,computer,computer,* master,True,tkem_mopidy-podcast-itunes,tkem/mopidy-podcast-itunes,https://github.com/tkem/mopidy-podcast-itunes +29ac35ee3b75468799b0e16f88fa9b1ea2fca14f,Peter Pentchev,roam@ringlet.net,2016-08-10 10:06:38+03:00,Peter Pentchev,roam@ringlet.net,2016-08-10 07:06:38+00:00,False,ringlet,ringlet,* master,True,ppentchev_id3,ppentchev/id3,https://gitlab.com/ppentchev/id3 +1a5d6a5dc9c8e64485547001a076e9aa8a3cdd99,Tails developers,tails@boum.org,2015-02-09 20:54:41+00:00,Tails developers,tails@boum.org,2015-02-12 14:10:13+00:00,False,boum,boum,* master,True,tails_onioncircuits,tails/onioncircuits,https://gitlab.tails.boum.org/tails/onioncircuits +3f7dc967d5d62832be0c67ce31975fc9289e45ed,Changaco,changaco@changaco.oy.lc,2015-11-29 11:21:03+01:00,Changaco,changaco@changaco.oy.lc,2015-11-29 13:12:14+00:00,False,changaco,changaco,* master,True,Changaco_setuptools_scm_git_archive,Changaco/setuptools/scm/git/archive,https://github.com/Changaco/setuptools_scm_git_archive +5978bafc3c68299e7d544cc78785ede184ed2caa,Thomas Kemmer,tkemmer@computer.org,2014-01-24 06:05:22+01:00,Thomas Kemmer,tkemmer@computer.org,2014-01-24 05:05:22+00:00,False,computer,computer,* master,True,tkem_mopidy-internetarchive,tkem/mopidy-internetarchive,https://github.com/tkem/mopidy-internetarchive +ada77ed9e7d97b7a0dbe4a8ebb42e11bfa505119,Grant Jenks,contact@grantjenks.com,2015-07-31 10:25:37-07:00,Grant Jenks,contact@grantjenks.com,2015-07-31 17:25:37+00:00,False,grantjenks,grantjenks,* master,True,grantjenks_python-sortedcollections,grantjenks/python-sortedcollections,https://github.com/grantjenks/python-sortedcollections +08526eca702089150c94ebf2769c32c95c8323a8,Steven Rostedt,srostedt@redhat.com,2010-02-15 12:56:24-05:00,Steven Rostedt,rostedt@goodmis.org,2010-02-15 18:06:20+00:00,False,redhat,goodmis,* debian/sid,True,sudipm-mukherjee_trace-cmd.git,sudipm-mukherjee/trace-cmd.git,https://github.com/sudipm-mukherjee/trace-cmd.git +ea92af8ec378f96a07013dda0e5780a8c1c11d02,John Lapeyre,jlapeyre@cpan.org,2012-08-04 10:45:48+02:00,John Lapeyre,jlapeyre@cpan.org,2012-08-04 08:45:48+00:00,False,cpan,cpan,* master,True,jlapeyre_PDL-IO-Matlab.git,jlapeyre/PDL-IO-Matlab.git,https://github.com/jlapeyre/PDL-IO-Matlab.git +f6b581459c089fac87a4b072ca734c2e73ccf768,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2019-06-11 22:35:52-03:00,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2019-06-12 01:35:52+00:00,False,eriberto,eriberto,* master,True,resurrecting-open-source-projects_dcfldd,resurrecting-open-source-projects/dcfldd,https://github.com/resurrecting-open-source-projects/dcfldd +4358bb746ff510a510e86814c0e9fb06553c88e5,pmklausler,pmklausler@3df00a30-923f-11dd-b748-d908233f8246,2008-10-04 18:27:46+00:00,pmklausler,pmklausler@3df00a30-923f-11dd-b748-d908233f8246,2008-10-04 18:27:46+00:00,False,3df00a30-923f-11dd-b748-d908233f8246,3df00a30-923f-11dd-b748-d908233f8246,* master,True,pklausler_aoeui.git,pklausler/aoeui.git,https://github.com/pklausler/aoeui.git +88749462a782e8d5288ede33543b0554cc3944ec,andreas.pelme,andreas.pelme@98d35234-f74b-0410-9e22-51d878bdf110,2008-05-01 13:41:01+00:00,andreas.pelme,andreas.pelme@98d35234-f74b-0410-9e22-51d878bdf110,2008-05-01 13:41:01+00:00,False,98d35234-f74b-0410-9e22-51d878bdf110,98d35234-f74b-0410-9e22-51d878bdf110,* master,True,jazzband_django-pipeline,jazzband/django-pipeline,https://github.com/jazzband/django-pipeline +28a314121af5c217231c8bf8001a7bb352a5b0bf,Janusz Lewandowski,lew21@xtreeme.org,2014-08-31 17:37:07+02:00,Janusz Lewandowski,lew21@xtreeme.org,2014-08-31 15:37:07+00:00,False,xtreeme,xtreeme,* master,True,LEW21_pydbus,LEW21/pydbus,https://github.com/LEW21/pydbus +27c549024f1149f5863b5ad3ea5a8335ed50b027,Timothy Legge,timlegge@cpan.org,2023-07-22 01:01:55-03:00,Timothy Legge,timlegge@gmail.com,2023-07-23 00:32:41+00:00,False,cpan,gmail,* main,True,perl-openssl_perl-crypt-openssl-pkcs10.git,perl-openssl/perl-crypt-openssl-pkcs10.git,https://github.com/perl-openssl/perl-crypt-openssl-pkcs10.git +c0027359ec2fc0f1b1b496535777854ade18770f,Ian Wadham,iandw.au@gmail.com,2008-02-18 06:30:42+00:00,Ian Wadham,iandw.au@gmail.com,2008-02-18 06:30:42+00:00,False,gmail,gmail,* master,True,kubrick.git,kubrick.git,https://anongit.kde.org/kubrick.git +9079e2586e75a901a415179f760247ad509f664f,Martin Raspaud,martin.raspaud@smhi.se,2010-06-17 00:26:15+02:00,Martin Raspaud,martin.raspaud@smhi.se,2010-06-16 22:26:15+00:00,False,smhi,smhi,* main,True,pytroll_satpy,pytroll/satpy,https://github.com/pytroll/satpy +0820e056871a0f6bcefcb3a86f7fb55f760c4b22,Antti Kaijanmäki,kaijanma@src.gnome.org,2008-07-21 09:07:10+00:00,Antti Kaijanmäki,kaijanma@src.gnome.org,2008-07-21 09:07:10+00:00,False,src,src,* main,True,GNOME_mobile-broadband-provider-info,GNOME/mobile-broadband-provider-info,https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info +56b8e58ab6fa3466df85708e7251648cecdc4881,David Cramer,dcramer@gmail.com,2013-11-15 14:28:19-08:00,David Cramer,dcramer@gmail.com,2013-11-15 22:47:18+00:00,False,gmail,gmail,* master,True,getsentry_responses,getsentry/responses,https://github.com/getsentry/responses +121a45e2b6dbd886d336464746a0d9e7fb9ff43a,Calle Laakkonen,laakkonenc@gmail.com,2014-10-04 10:54:14+03:00,Calle Laakkonen,laakkonenc@gmail.com,2014-10-04 07:54:14+00:00,False,gmail,gmail,* master,True,callaa_luola.git,callaa/luola.git,https://github.com/callaa/luola.git be9129e4826056908d6e76b4554c812ee4c42e7b,Curtis 'Ovid' Poe,ovid@cpan.org,2011-04-16 16:12:03+02:00,Curtis 'Ovid' Poe,ovid@cpan.org,2011-04-16 14:12:03+00:00,False,cpan,cpan,* master,True,neilb_Text-Diff,neilb/Text-Diff,https://github.com/neilb/Text-Diff -bc3513e5d9662ac38e20ac941185f5f63bac9d9c,Layla Marchant,diligentcircle@riseup.net,2020-12-26 17:34:53-05:00,Layla Marchant,diligentcircle@riseup.net,2020-12-26 22:34:53+00:00,False,riseup,riseup,* main,True,pr-starfighter_starfighter,pr-starfighter/starfighter,https://github.com/pr-starfighter/starfighter -89d06b5aaea5656b9e3122051363a85b4ce4443f,yuuki,yuuki0xff@gmail.com,2017-03-09 03:50:58+09:00,GitHub,noreply@github.com,2017-03-08 18:50:58+00:00,True,gmail,github,* master,True,stefanv_nvpy,stefanv/nvpy,https://github.com/stefanv/nvpy -61f3124cfd1eb1aef9b10f48221778fd1c281c89,Steve Jalim,stevejalim@mozilla.com,2024-01-25 21:54:15+00:00,GitHub,noreply@github.com,2024-01-25 21:54:15+00:00,False,mozilla,github,* main,True,mozilla_django-csp.git,mozilla/django-csp.git,https://github.com/mozilla/django-csp.git -bb2f6fa3d9769c7b21fd357f46e60712b20e1c2b,Andrew Davison,andrew.davison@unic.cnrs-gif.fr,2017-10-06 11:35:31+02:00,Andrew Davison,andrew.davison@unic.cnrs-gif.fr,2017-10-06 09:35:31+00:00,False,unic,unic,* master,True,NeuralEnsemble_lazyarray,NeuralEnsemble/lazyarray,https://github.com/NeuralEnsemble/lazyarray -6400c7ee5e66b810e95b79496e106c53b3a4654d,Thomas Stewart,thomas@stewarts.org.uk,2022-01-12 12:11:22+00:00,Thomas Stewart,thomas@stewarts.org.uk,2022-01-12 12:11:22+00:00,True,stewarts,stewarts,* main,True,thomasdstewart-guest_w1retap,thomasdstewart-guest/w1retap,https://salsa.debian.org/thomasdstewart-guest/w1retap -9eb1142900096b9115ba2db2a521c76c117cacd9,Trompettesib,alexandre.tissot@epitech.eu,2024-01-04 12:03:33+01:00,Jesse Beder,jbeder+github@gmail.com,2024-01-04 15:40:42+00:00,False,epitech,gmail,* master,True,jbeder_yaml-cpp,jbeder/yaml-cpp,https://github.com/jbeder/yaml-cpp -ccbef512fa69b91e19f7038aa975e77fd0dc5800,Michael Orlitzky,michael@orlitzky.com,2023-04-06 16:57:53-04:00,Michael Orlitzky,michael@orlitzky.com,2023-04-06 20:57:53+00:00,False,orlitzky,orlitzky,* master,True,sagemath_FlintQS,sagemath/FlintQS,https://github.com/sagemath/FlintQS -3cc94974c09c43462dfbfbe20396a414352dbb92,Jonas Bernoulli,jonas@bernoul.li,2024-02-06 19:44:28+01:00,Jonas Bernoulli,jonas@bernoul.li,2024-02-06 18:44:28+00:00,False,bernoul,bernoul,* main,True,magit_git-modes.git,magit/git-modes.git,https://github.com/magit/git-modes.git -edd60c96785ba7a0cadbcce9876160b669676d63,Casey Korver,casey@korver.dev,2023-05-12 09:41:11-05:00,Matt Westcott,matthew@torchbox.com,2023-05-12 14:50:49+00:00,False,korver,torchbox,* main,True,torchbox_django-libsass.git,torchbox/django-libsass.git,https://github.com/torchbox/django-libsass.git -4318da2e2a4cb1ae3928446e5e98e3eb958a80f9,Daniel Feldroy,pydanny@users.noreply.github.com,2021-05-17 16:56:25-07:00,GitHub,noreply@github.com,2021-05-17 23:56:25+00:00,False,users,github,* master,True,cookiecutter_whichcraft,cookiecutter/whichcraft,https://github.com/cookiecutter/whichcraft -b376384e7a0ff617bd61ef5340dfae60eadb0d3c,Christian Neukirchen,chneukirchen@gmail.com,2015-05-10 16:10:07+02:00,Christian Neukirchen,chneukirchen@gmail.com,2015-05-10 14:10:07+00:00,True,gmail,gmail,* master,True,leahneukirchen_bacon,leahneukirchen/bacon,https://github.com/leahneukirchen/bacon -05a6c2f56e1479c5d88ea1ca7e78eecbed5e7b01,Julien Rouhaud,julien.rouhaud@free.fr,2022-02-06 14:50:12+08:00,Julien Rouhaud,julien.rouhaud@free.fr,2022-02-06 06:50:12+00:00,False,free,free,* master,True,powa-team_pg_qualstats,powa-team/pg/qualstats,https://github.com/powa-team/pg_qualstats -d4016d8ec11e1783614142512de14eff0798b464,Rodrigo,matematica.a3k@gmail.com,2024-02-28 07:52:22-03:00,GitHub,noreply@github.com,2024-02-28 10:52:22+00:00,False,gmail,github,* master,True,encode_django-rest-framework,encode/django-rest-framework,https://github.com/encode/django-rest-framework -811bc18586d634042618d633727ac0281d4170b8,Pali Rohár,pali.rohar@gmail.com,2021-04-25 17:02:50+02:00,Pali Rohár,pali.rohar@gmail.com,2021-04-25 15:02:50+00:00,False,gmail,gmail,* master,True,pali_libopenaptx,pali/libopenaptx,https://github.com/pali/libopenaptx -1f4fe065aa814de9b477b565385bc8dbf76420ea,Joachim Metz,joachim.metz@gmail.com,2016-01-08 06:55:56+01:00,Joachim Metz,joachim.metz@gmail.com,2016-03-27 14:05:04+00:00,False,gmail,gmail,* main,True,libyal_libsmdev,libyal/libsmdev,https://github.com/libyal/libsmdev -89e5d828a97aea018ffed52e8547c90649f9e212,Lars Kruse,devel@sumpfralle.de,2024-01-17 12:54:50+01:00,Lars Kruse,devel@sumpfralle.de,2024-01-22 11:13:48+00:00,False,sumpfralle,sumpfralle,* main,True,mopidy_mopidy-beets,mopidy/mopidy-beets,https://github.com/mopidy/mopidy-beets -ea54683e8f3758bc98a23af395752e3708260f08,Wolfgang Spraul,wspraul@q-ag.de,2015-04-01 17:13:32-04:00,Wolfgang Spraul,wspraul@q-ag.de,2015-04-01 21:13:32+00:00,False,q-ag,q-ag,* master,True,Wolfgang-Spraul_fpgatools,Wolfgang-Spraul/fpgatools,https://github.com/Wolfgang-Spraul/fpgatools -0cacbf9ac050660f5d57f7eeeb5119ebf6fda8eb,Jarrod Millman,jarrod.millman@gmail.com,2023-06-08 19:36:55-07:00,GitHub,noreply@github.com,2023-06-09 02:36:55+00:00,False,gmail,github,* main,True,numpy_numpydoc,numpy/numpydoc,https://github.com/numpy/numpydoc -98618f3b2e4e33abb9a0069ccc464817d57c855e,Jerry Casiano,JerryCasiano@gmail.com,2024-02-18 20:23:32-05:00,Jerry Casiano,JerryCasiano@gmail.com,2024-02-19 01:23:32+00:00,False,gmail,gmail,* master,True,FontManager_master,FontManager/master,https://github.com/FontManager/master -1e9acc0ba63fbc297001bf334d63cb4326be80df,Adam Porter,adam@alphapapa.net,2024-02-13 11:59:04-06:00,Adam Porter,adam@alphapapa.net,2024-02-13 17:59:04+00:00,True,alphapapa,alphapapa,* master,True,alphapapa_magit-todos.git,alphapapa/magit-todos.git,https://github.com/alphapapa/magit-todos.git -97e791c5d55428faffc4869db00824cf21bf3f2b,Lubomir Rintel,lkundrak@v3.sk,2018-06-11 15:58:43+02:00,Lubomir Rintel,lkundrak@v3.sk,2018-06-11 13:58:43+00:00,True,v3,v3,* main,True,GNOME_NetworkManager-pptp,GNOME/NetworkManager-pptp,https://gitlab.gnome.org/GNOME/NetworkManager-pptp -37e310c8bbea2af062a69ecbbdbac79a7f73634e,Valentin Samir,valentin.samir@crans.org,2023-09-13 14:48:47+02:00,Valentin Samir,valentin.samir@crans.org,2023-09-13 12:48:47+00:00,False,crans,crans,* master,True,nitmir_django-cas-server.git,nitmir/django-cas-server.git,https://github.com/nitmir/django-cas-server.git -57eaa08a525585da5b34ec8120837fa230ac3045,Nicolas Hennion,nicolashennion@gmail.com,2024-03-04 09:57:02+01:00,GitHub,noreply@github.com,2024-03-04 08:57:02+00:00,True,gmail,github,* develop,True,nicolargo_glances,nicolargo/glances,https://github.com/nicolargo/glances -b24d73e8dcb0d1f0fab38205a8c4bbea10fc52c0,Phillip Berndt,phillip.berndt@googlemail.com,2024-03-11 21:11:20+01:00,Phillip Berndt,phillip.berndt@googlemail.com,2024-03-11 20:11:20+00:00,False,googlemail,googlemail,* master,True,phillipberndt_pqiv,phillipberndt/pqiv,https://github.com/phillipberndt/pqiv -e51fdc963e42a603e73036a24b2b94b7b403f778,Christoph Reiter,reiter.christoph@gmail.com,2024-03-09 15:01:43+01:00,Christoph Reiter,reiter.christoph@gmail.com,2024-03-10 10:39:25+00:00,False,gmail,gmail,* main,True,GNOME_pygobject,GNOME/pygobject,https://gitlab.gnome.org/GNOME/pygobject -52f0a367733e4e161622d4f205ce95ed8ec8c164,Scott K Logan,logans@cottsay.net,2021-11-05 16:28:43-07:00,GitHub,noreply@github.com,2021-11-05 23:28:43+00:00,False,cottsay,github,* master,True,ros-infrastructure_catkin_pkg.git,ros-infrastructure/catkin/pkg.git,https://github.com/ros-infrastructure/catkin_pkg.git -071d73c21da78c7088753aeb3e79dec8aded9013,Fernando Mercês,nandu88@gmail.com,2023-04-20 19:26:17-03:00,GitHub,noreply@github.com,2023-04-20 22:26:17+00:00,False,gmail,github,* main,True,merces_pev,merces/pev,https://github.com/merces/pev -36940d99728751eaa1903ff46a24b0300e9b2705,Christoph Berg,myon@debian.org,2016-09-24 19:21:57+02:00,Christoph Berg,myon@debian.org,2016-09-24 17:21:57+00:00,False,debian,debian,* master,True,dimitri_preprepare,dimitri/preprepare,https://github.com/dimitri/preprepare -939c5a7b8c5414d2b63aa141899c9059b8ce79ec,Adam Johnson,me@adamj.eu,2020-12-14 15:03:06+00:00,Adam Johnson,me@adamj.eu,2020-12-14 15:03:06+00:00,False,adamj,adamj,* master,True,adamchainz_django-jsonfield,adamchainz/django-jsonfield,https://github.com/adamchainz/django-jsonfield -1eef64f5b11ebaf1bb3e059f64d4265a441fee3e,Tatsuhiko Miyagawa,miyagawa@bulknews.net,2011-02-13 19:40:31-08:00,Tatsuhiko Miyagawa,miyagawa@bulknews.net,2011-02-14 03:40:31+00:00,False,bulknews,bulknews,* master,True,miyagawa_Plack-Middleware-File-Sass.git,miyagawa/Plack-Middleware-File-Sass.git,https://github.com/miyagawa/Plack-Middleware-File-Sass.git -98c1598fc2be36c5f9ef60f976562814dc7ace63,James E Keenan,jkeenan@cpan.org,2020-03-21 15:34:13-04:00,James E Keenan,jkeenan@cpan.org,2020-03-21 19:34:13+00:00,False,cpan,cpan,* master,True,pjf_ipc-system-simple.git,pjf/ipc-system-simple.git,https://github.com/pjf/ipc-system-simple.git -47f3f7436a46a317991b2c8ba298370ecf001379,idle sign,idlesign@yandex.ru,2021-08-01 10:52:12+07:00,idle sign,idlesign@yandex.ru,2021-08-01 03:52:12+00:00,False,yandex,yandex,* master,True,idlesign_django-sitetree,idlesign/django-sitetree,https://github.com/idlesign/django-sitetree -3665d9807fec89c92ff49519b4c8c4b2570b93e8,HassanKhadour,85118793+HassanKhadour@users.noreply.github.com,2023-12-25 16:20:33+02:00,GitHub,noreply@github.com,2023-12-25 14:20:33+00:00,True,users,github,* master,True,linux-rdma_perftest.git,linux-rdma/perftest.git,https://github.com/linux-rdma/perftest.git -8d76d7a4f52b446b05e5503771144e39f9008073,Simon McVittie,smcv@collabora.com,2018-10-03 16:31:05+01:00,Simon McVittie,smcv@collabora.com,2018-10-03 15:31:05+00:00,True,collabora,collabora,* master,True,dbus_dbus-glib.git,dbus/dbus-glib.git,https://gitlab.freedesktop.org/dbus/dbus-glib.git -4d0829bad97a89d87b157d35afd94c571dbf4bca,Michael Elsdörfer,michael@elsdoerfer.com,2016-06-19 11:07:03+02:00,Michael Elsdörfer,michael@elsdoerfer.com,2016-06-19 09:07:03+00:00,True,elsdoerfer,elsdoerfer,* master,True,miracle2k_django-assets.git,miracle2k/django-assets.git,https://github.com/miracle2k/django-assets.git -5c55463d7d3c6dd4c6f7b7946d10e9c0dba38ee9,Mark Dickinson,mdickinson@enthought.com,2023-03-23 14:59:04+00:00,GitHub,noreply@github.com,2023-03-23 14:59:04+00:00,False,enthought,github,* main,True,enthought_envisage,enthought/envisage,https://github.com/enthought/envisage -9bc2836e24b61642caa9e157488a696e98a876ba,Rajeev Kallur,kallur2014@gmail.com,2022-12-11 11:56:47+05:30,GitHub,noreply@github.com,2022-12-11 06:26:47+00:00,False,gmail,github,* master,True,HewlettPackard_python-ilorest-library.git,HewlettPackard/python-ilorest-library.git,https://github.com/HewlettPackard/python-ilorest-library.git -1f06769ed2a202b7edfa98e335553665a5a84b5b,Adrien Berchet,adrien.berchet@gmail.com,2024-03-12 14:07:57+01:00,GitHub,noreply@github.com,2024-03-12 13:07:57+00:00,False,gmail,github,* master,True,geoalchemy_geoalchemy2,geoalchemy/geoalchemy2,https://github.com/geoalchemy/geoalchemy2 -3b161bec8da7bbcc70e7749b8722891f8385db88,Seth Morton,seth.m.morton@gmail.com,2023-04-18 20:35:50-07:00,Seth Morton,seth.m.morton@gmail.com,2023-04-19 03:37:53+00:00,False,gmail,gmail,* main,True,SethMMorton_natsort.git,SethMMorton/natsort.git,https://github.com/SethMMorton/natsort.git -44c5c6993f67daf2a56d2310e67af6874c4bdc8f,István Zoltán Szabó,istvan.szabo@elastic.co,2024-02-23 11:13:59+01:00,GitHub,noreply@github.com,2024-02-23 10:13:59+00:00,False,elastic,github,* main,True,elastic_elasticsearch-py.git,elastic/elasticsearch-py.git,https://github.com/elastic/elasticsearch-py.git -45ebc0f4f808c6e703bcbfe7c149b7d4c011b8f6,Bert JW Regeer,bertjw@regeer.org,2022-12-29 13:22:41+01:00,Bert JW Regeer,bertjw@regeer.org,2022-12-29 12:22:41+00:00,False,regeer,regeer,* main,True,pylons_plaster,pylons/plaster,https://github.com/pylons/plaster -fa548f562a97a4662c5910bb98b75eb3e3334e2e,Zhangyuan Nie,yuan@znie.org,2022-08-05 03:27:32-04:00,Peng Wu,alexepico@gmail.com,2022-08-10 06:12:52+00:00,False,znie,gmail,* main,True,libpinyin_ibus-libpinyin,libpinyin/ibus-libpinyin,https://github.com/libpinyin/ibus-libpinyin -2b2761edc9474783a493c08243479d5366ce44b8,Alexander Monakov,amonakov@ispras.ru,2013-04-22 02:28:58+04:00,Alexander Monakov,amonakov@ispras.ru,2013-04-21 22:31:53+00:00,False,ispras,ispras,* master,True,amonakov_primus,amonakov/primus,https://github.com/amonakov/primus -6d50bf7c5cd69b9827981b53233995ded5db4ad9,Giampaolo Rodola,g.rodola@gmail.com,2023-10-25 23:11:25+02:00,Giampaolo Rodola,g.rodola@gmail.com,2023-10-25 21:11:25+00:00,False,gmail,gmail,* master,True,giampaolo_pyftpdlib,giampaolo/pyftpdlib,https://github.com/giampaolo/pyftpdlib -dceb5b92caea7889fd52830f23c1257b985cfb18,Xin Liang,XLiang@suse.com,2022-09-02 14:33:58+08:00,GitHub,noreply@github.com,2022-09-02 06:33:58+00:00,True,suse,github,* master,True,ClusterLabs_crmsh,ClusterLabs/crmsh,https://github.com/ClusterLabs/crmsh -e4d68f029434fa1c48a63fbc1a273b1b88e09b6c,Dima Kogan,dima@secretsauce.net,2023-09-27 19:51:05-07:00,Dima Kogan,dima@secretsauce.net,2023-09-28 02:51:05+00:00,False,secretsauce,secretsauce,* master,True,dkogan_numpysane,dkogan/numpysane,https://github.com/dkogan/numpysane -0aa8a9762a51289e753a6e311edcb40b65224c66,Harley Reeves-Martin,harleyreevesmartin@gmail.com,2024-01-02 20:17:45+00:00,Jonathan Slenders,jonathan@slenders.be,2024-01-02 21:50:32+00:00,False,gmail,slenders,* master,True,prompt-toolkit_python-prompt-toolkit,prompt-toolkit/python-prompt-toolkit,https://github.com/prompt-toolkit/python-prompt-toolkit -903d82f7bc00a97452527c6804054ee931cae03c,Honza Pokorny,me@honza.ca,2020-09-09 15:46:34-03:00,Honza Pokorny,me@honza.ca,2020-09-09 18:47:03+00:00,False,honza,honza,* master,True,honza_anosql,honza/anosql,https://github.com/honza/anosql -f1857f0cedf52d03d4db194a2ff722d4305f0dfd,Patrick Hunt,phunt1@gmail.com,2020-03-05 07:48:20-08:00,GitHub,noreply@github.com,2020-03-05 15:48:20+00:00,True,gmail,github,* master,True,phunt_zktop.git,phunt/zktop.git,https://github.com/phunt/zktop.git -c106882fb9be7607e3f57a3773b9bf81cc251a0f,Jaakko Luttinen,jaakko.luttinen@iki.fi,2019-10-02 14:56:07+03:00,Jaakko Luttinen,jaakko.luttinen@iki.fi,2019-10-02 11:56:07+00:00,True,iki,iki,* develop,True,bayespy_bayespy,bayespy/bayespy,https://github.com/bayespy/bayespy +46fd85829b8520eed395cf5cd85c635fb9c83099,Guus Sliepen,guus@debian.org,2012-03-02 21:20:06+01:00,Guus Sliepen,guus@debian.org,2012-03-02 20:20:06+00:00,False,debian,debian,* main,True,pr-starfighter_starfighter,pr-starfighter/starfighter,https://github.com/pr-starfighter/starfighter +07d3441ec3bd0147691f5c813c06382fe36acbc8,Charl Botha,c.p.botha@tudelft.nl,2012-05-21 10:21:54+02:00,Charl Botha,c.p.botha@tudelft.nl,2012-05-21 08:21:54+00:00,False,tudelft,tudelft,* master,True,stefanv_nvpy,stefanv/nvpy,https://github.com/stefanv/nvpy +971337063c04d61d9de544f24208980851dcbf03,James Socol,james@mozilla.com,2010-07-14 11:12:25-07:00,James Socol,james@mozilla.com,2010-07-14 18:53:49+00:00,False,mozilla,mozilla,* main,True,mozilla_django-csp.git,mozilla/django-csp.git,https://github.com/mozilla/django-csp.git +5ac1f89eda404fcd88484c984f624898b02e82c4,Andrew Davison,260552+apdavison@users.noreply.github.com,2012-01-13 14:37:40+01:00,Andrew Davison,260552+apdavison@users.noreply.github.com,2012-01-13 13:37:40+00:00,False,users,users,* master,True,NeuralEnsemble_lazyarray,NeuralEnsemble/lazyarray,https://github.com/NeuralEnsemble/lazyarray +fd213c7eb55be42170f6ed4431b96b3396701cdb,Thomas Stewart,thomas@stewarts.org.uk,2020-01-22 15:09:23+00:00,Thomas Stewart,thomas@stewarts.org.uk,2020-01-22 15:09:23+00:00,False,stewarts,stewarts,* main,True,thomasdstewart-guest_w1retap,thomasdstewart-guest/w1retap,https://salsa.debian.org/thomasdstewart-guest/w1retap +db82302ed06af1c100aa7b626845b4f6cbf955b4,Jesse Beder,jbeder+github@gmail.com,2014-03-22 19:06:46-05:00,Jesse Beder,jbeder+github@gmail.com,2014-03-23 00:06:46+00:00,False,gmail,gmail,* master,True,jbeder_yaml-cpp,jbeder/yaml-cpp,https://github.com/jbeder/yaml-cpp +7a292e4b972330aa59334a9749b4a98497c0b2ce,Volker Braun,vbraun.name@gmail.com,2015-12-13 14:05:16+01:00,Volker Braun,vbraun.name@gmail.com,2015-12-13 13:13:13+00:00,False,gmail,gmail,* master,True,sagemath_FlintQS,sagemath/FlintQS,https://github.com/sagemath/FlintQS +b08dcf857232bf6d1d9bc90c0917408bdf00da92,Sebastian Wiesner,lunaryorn@gmail.com,2012-10-03 11:50:57+02:00,Sebastian Wiesner,lunaryorn@gmail.com,2012-10-03 09:50:57+00:00,False,gmail,gmail,* main,True,magit_git-modes.git,magit/git-modes.git,https://github.com/magit/git-modes.git +bcc6c6b4119c6af96319394936470f94a2805918,Matt Westcott,matt@west.co.tt,2014-03-05 19:26:45+00:00,Matt Westcott,matt@west.co.tt,2014-03-05 19:27:21+00:00,False,west,west,* main,True,torchbox_django-libsass.git,torchbox/django-libsass.git,https://github.com/torchbox/django-libsass.git +e903b9c057a41ce5039c9d91ccbce549e5b71126,Daniel Roy Greenfeld,danny@eventbrite.com,2015-09-09 20:56:45-07:00,Daniel Roy Greenfeld,danny@eventbrite.com,2015-09-10 03:56:45+00:00,False,eventbrite,eventbrite,* master,True,cookiecutter_whichcraft,cookiecutter/whichcraft,https://github.com/cookiecutter/whichcraft +190bdcaf1b3ee1eb7704bd2f40754e9523d7dddb,Christian Neukirchen,chneukirchen@gmail.com,2007-12-05 14:41:53+01:00,Christian Neukirchen,chneukirchen@gmail.com,2007-12-05 13:41:53+00:00,False,gmail,gmail,* master,True,leahneukirchen_bacon,leahneukirchen/bacon,https://github.com/leahneukirchen/bacon +0c69a1b1d6812c0d245cc9ca166f78cbafde6a9a,Ronan Dunklau,ronan@dunklau.fr,2014-05-01 12:29:18+02:00,Ronan Dunklau,ronan@dunklau.fr,2014-05-01 10:29:18+00:00,False,dunklau,dunklau,* master,True,powa-team_pg_qualstats,powa-team/pg/qualstats,https://github.com/powa-team/pg_qualstats +8a12f89aaacfc0839d6ab1e62b4b5046930517ba,tom christie tom@tomchristie.com,none@none,2010-12-30 01:02:11+00:00,tom christie tom@tomchristie.com,none@none,2010-12-30 01:02:11+00:00,False,none,none,* master,True,encode_django-rest-framework,encode/django-rest-framework,https://github.com/encode/django-rest-framework +5eb6ce66036205e8d4126dbe7271e1da7bca0d4f,Pali Rohár,pali.rohar@gmail.com,2018-07-06 11:02:01+02:00,Pali Rohár,pali.rohar@gmail.com,2018-07-06 09:02:01+00:00,False,gmail,gmail,* master,True,pali_libopenaptx,pali/libopenaptx,https://github.com/pali/libopenaptx +7133f80c5a27b3228e4c5c31c9cde740e1213bb2,Joachim Metz,joachim.metz@gmail.com,2010-01-10 21:18:32+01:00,Joachim Metz,joachim.metz@gmail.com,2016-03-27 14:02:44+00:00,False,gmail,gmail,* main,True,libyal_libsmdev,libyal/libsmdev,https://github.com/libyal/libsmdev +e9717f2b49713d5da5d4ab306b4bd3e35c321193,Janez Troha,janez.troha@gmail.com,2013-04-21 00:16:22+02:00,Janez Troha,janez.troha@gmail.com,2013-04-20 22:16:22+00:00,False,gmail,gmail,* main,True,mopidy_mopidy-beets,mopidy/mopidy-beets,https://github.com/mopidy/mopidy-beets +be5d3f63747ea119d1f0b0288dc7c700e4c8490e,Wolfgang Spraul,wspraul@q-ag.de,2012-06-03 03:05:01+02:00,Wolfgang Spraul,wspraul@q-ag.de,2012-06-03 01:05:01+00:00,False,q-ag,q-ag,* master,True,Wolfgang-Spraul_fpgatools,Wolfgang-Spraul/fpgatools,https://github.com/Wolfgang-Spraul/fpgatools +1d26968e0f546854fb5da28464b087a5daa3c687,Pauli Virtanen,pav@iki.fi,2009-06-27 15:02:14+00:00,Pauli Virtanen,pav@iki.fi,2009-06-27 15:02:14+00:00,False,iki,iki,* main,True,numpy_numpydoc,numpy/numpydoc,https://github.com/numpy/numpydoc +a8de373487feea89f06a1d89aa1dedf7798ab947,Jerry Casiano,JerryCasiano@users.noreply.github.com,2014-04-25 04:45:30+00:00,Jerry Casiano,JerryCasiano@users.noreply.github.com,2014-04-25 04:45:30+00:00,False,users,users,* master,True,FontManager_master,FontManager/master,https://github.com/FontManager/master +a21fc9c5ee4abdad79b8c70c07fa968318892ac5,Adam Porter,adam@alphapapa.net,2018-06-12 22:10:13-05:00,Adam Porter,adam@alphapapa.net,2018-06-20 06:04:04+00:00,False,alphapapa,alphapapa,* master,True,alphapapa_magit-todos.git,alphapapa/magit-todos.git,https://github.com/alphapapa/magit-todos.git +03a8e52731d7a21ec0c91887a990dc38b8d0d49a,Dan Williams,dcbw@redhat.com,2008-12-11 19:53:06+00:00,Dan Williams,dcbw@src.gnome.org,2008-12-11 19:53:06+00:00,False,redhat,src,* main,True,GNOME_NetworkManager-pptp,GNOME/NetworkManager-pptp,https://gitlab.gnome.org/GNOME/NetworkManager-pptp +6981433bdf8a406992ba0c5e844a47d06ccc08fb,Valentin Samir,valentin.samir@crans.org,2015-05-22 21:14:33+02:00,Valentin Samir,valentin.samir@crans.org,2015-05-22 19:14:33+00:00,False,crans,crans,* master,True,nitmir_django-cas-server.git,nitmir/django-cas-server.git,https://github.com/nitmir/django-cas-server.git +f37c1a3fb0221be8bb1546b43d2baf0126d83fa5,nicolargo,nicolargo@nicolargo-fujitsu.(none),2011-12-04 09:52:09+01:00,nicolargo,nicolargo@nicolargo-fujitsu.(none),2011-12-04 08:52:09+00:00,False,nicolargo-fujitsu,nicolargo-fujitsu,* develop,True,nicolargo_glances,nicolargo/glances,https://github.com/nicolargo/glances +2062f62a776544a09e3170fad1a9c8e2797925b6,Phillip Berndt,phillip.berndt@gmail.com,2013-06-13 17:20:07+02:00,Phillip Berndt,phillip.berndt@gmail.com,2013-06-13 15:49:33+00:00,False,gmail,gmail,* master,True,phillipberndt_pqiv,phillipberndt/pqiv,https://github.com/phillipberndt/pqiv +551a38178f7e66f215980fb01200472c8e6d3cd4,Johan Dahlin,johan@src.gnome.org,2006-01-09 12:26:46+00:00,Johan Dahlin,johan@src.gnome.org,2006-01-09 12:26:46+00:00,False,src,src,* main,True,GNOME_pygobject,GNOME/pygobject,https://gitlab.gnome.org/GNOME/pygobject +f9227d883b5b823e84b7a1dfe4c674bb60384a92,Dirk Thomas,dthomas@willowgarage.com,2012-09-20 21:35:50-07:00,Dirk Thomas,dthomas@willowgarage.com,2012-09-21 04:35:50+00:00,False,willowgarage,willowgarage,* master,True,ros-infrastructure_catkin_pkg.git,ros-infrastructure/catkin/pkg.git,https://github.com/ros-infrastructure/catkin_pkg.git +fd2d9ba2e56c1497d7e6f9b39580bf6af0f5b430,Fernando Mercês,nandu88@gmail.com,2023-04-20 19:23:26-03:00,GitHub,noreply@github.com,2023-04-20 22:23:26+00:00,False,gmail,github,* main,True,merces_pev,merces/pev,https://github.com/merces/pev +17c4d85b89390af8ded360d6109def48c013d7de,dim,dim,2009-05-13 20:54:04+00:00,dim,dim,2009-05-13 20:54:04+00:00,False,dim,dim,* master,True,dimitri_preprepare,dimitri/preprepare,https://github.com/dimitri/preprepare +07d995984dca9068e1fb97ce0f77abb031f18665,Matthew Schinckel,matt@schinckel.net,2010-06-09 14:57:30+09:30,Matthew Schinckel,matt@schinckel.net,2010-06-09 05:27:30+00:00,False,schinckel,schinckel,* master,True,adamchainz_django-jsonfield,adamchainz/django-jsonfield,https://github.com/adamchainz/django-jsonfield +b473453bf2a60389bf492944078f52b5bc7e58bb,Tatsuhiko Miyagawa,miyagawa@bulknews.net,2010-02-06 02:09:00-08:00,Tatsuhiko Miyagawa,miyagawa@bulknews.net,2010-02-06 10:09:00+00:00,False,bulknews,bulknews,* master,True,miyagawa_Plack-Middleware-File-Sass.git,miyagawa/Plack-Middleware-File-Sass.git,https://github.com/miyagawa/Plack-Middleware-File-Sass.git +1d0958032b8344261437ada09becb0eb544b910a,Paul Fenwick,pjf@perltraining.com.au,2006-07-23 04:16:55+00:00,Paul Fenwick,pjf@perltraining.com.au,2006-07-23 04:16:55+00:00,False,perltraining,perltraining,* master,True,pjf_ipc-system-simple.git,pjf/ipc-system-simple.git,https://github.com/pjf/ipc-system-simple.git +46672dc206b5de47787c134ace6fb98cda544636,idle sign,idlesign@yandex.ru,2010-05-28 16:14:35+07:00,idle sign,idlesign@yandex.ru,2010-05-28 09:14:35+00:00,False,yandex,yandex,* master,True,idlesign_django-sitetree,idlesign/django-sitetree,https://github.com/idlesign/django-sitetree +a2e67df2fba21d986652259cbd483b8036079dc8,Grant Grundler,iod00d@hp.com,2005-05-19 07:06:09+00:00,Michael S. Tsirkin,mst@mellanox.co.il,2005-05-19 07:06:09+00:00,False,hp,mellanox,* master,True,linux-rdma_perftest.git,linux-rdma/perftest.git,https://github.com/linux-rdma/perftest.git +b8b86555280694d85d64b68d0f9131868598161a,John (J5) Palmieri,quinticent@phuket.(none),2006-06-28 14:21:26-04:00,John (J5) Palmieri,quinticent@phuket.(none),2006-06-28 18:21:26+00:00,False,phuket,phuket,* master,True,dbus_dbus-glib.git,dbus/dbus-glib.git,https://gitlab.freedesktop.org/dbus/dbus-glib.git +2545aa4f82169c9affd646e4d09a9e19af51c7c7,Michael Elsdörfer,michael@elsdoerfer.com,2012-07-08 15:36:50+02:00,Michael Elsdörfer,michael@elsdoerfer.com,2012-07-08 13:36:50+00:00,False,elsdoerfer,elsdoerfer,* master,True,miracle2k_django-assets.git,miracle2k/django-assets.git,https://github.com/miracle2k/django-assets.git +aa7bd0afdd940a5776e05cb800227a539c82dc39,martin,martin@651a555e-23ca-0310-84fe-ca9f7c59d2ea,2007-07-05 16:24:27+00:00,martin,martin@651a555e-23ca-0310-84fe-ca9f7c59d2ea,2007-07-05 16:24:27+00:00,False,651a555e-23ca-0310-84fe-ca9f7c59d2ea,651a555e-23ca-0310-84fe-ca9f7c59d2ea,* main,True,enthought_envisage,enthought/envisage,https://github.com/enthought/envisage +69f9a7c1bb4a64796c484f9b6b9f4bf079c58d4f,Jeff Autor,jeff.autor@hpe.com,2016-12-09 10:55:57-06:00,Jeff Autor,jeff.autor@hpe.com,2016-12-09 16:55:57+00:00,False,hpe,hpe,* master,True,HewlettPackard_python-ilorest-library.git,HewlettPackard/python-ilorest-library.git,https://github.com/HewlettPackard/python-ilorest-library.git +7bdb429cf73852d2e95665109fd2e0af241fb450,Éric Lemoine,eric.lemoine@gmail.com,2012-08-27 08:44:05+02:00,Éric Lemoine,eric.lemoine@gmail.com,2012-08-27 06:44:05+00:00,False,gmail,gmail,* master,True,geoalchemy_geoalchemy2,geoalchemy/geoalchemy2,https://github.com/geoalchemy/geoalchemy2 +4ee2ee54360fc4b25f20ee75f65791e206680e31,Seth Morton,seth.m.morton@gmail.com,2012-05-02 19:58:47-07:00,Seth Morton,seth.m.morton@gmail.com,2012-05-03 02:58:47+00:00,False,gmail,gmail,* main,True,SethMMorton_natsort.git,SethMMorton/natsort.git,https://github.com/SethMMorton/natsort.git +20fbba1230cabbc0f4644f917c6c2be52b8a63e8,Honza Kral,honza.kral@gmail.com,2013-05-01 16:37:32+02:00,Honza Kral,honza.kral@gmail.com,2013-05-01 14:39:30+00:00,False,gmail,gmail,* main,True,elastic_elasticsearch-py.git,elastic/elasticsearch-py.git,https://github.com/elastic/elasticsearch-py.git +5445c0a95352506da2677f3de09c07286d5140ea,Michael Merickel,michael@merickel.org,2016-06-01 21:27:09-07:00,Michael Merickel,michael@merickel.org,2016-06-02 04:48:54+00:00,False,merickel,merickel,* main,True,pylons_plaster,pylons/plaster,https://github.com/pylons/plaster +058ff8eec8aa8a7e5e8e7b404f2f47d87456bfaa,Huang Peng,shawn.p.huang@gmail.com,2008-06-29 15:57:07+08:00,Huang Peng,shawn.p.huang@gmail.com,2008-06-29 07:57:07+00:00,False,gmail,gmail,* main,True,libpinyin_ibus-libpinyin,libpinyin/ibus-libpinyin,https://github.com/libpinyin/ibus-libpinyin +9e8d9d6592d92b80c65a34e6044c6c3468405cc7,Alexander Monakov,amonakov@gmail.com,2012-09-01 14:51:22-07:00,Alexander Monakov,amonakov@gmail.com,2012-09-01 21:51:22+00:00,False,gmail,gmail,* master,True,amonakov_primus,amonakov/primus,https://github.com/amonakov/primus +c2a62f434a509e5a495a4316993d18711a8df254,Giampaolo Rodola,g.rodola@gmail.com,2007-07-17 20:30:09+00:00,Giampaolo Rodola,g.rodola@gmail.com,2007-07-17 20:30:09+00:00,False,gmail,gmail,* master,True,giampaolo_pyftpdlib,giampaolo/pyftpdlib,https://github.com/giampaolo/pyftpdlib +cd165c4a09cc9b96a5b4f0aecebdf08efaa4c372,Dejan Muhamedagic,dejan@hello-penguin.com,2010-02-03 12:38:24+01:00,Dejan Muhamedagic,dejan@hello-penguin.com,2010-02-03 11:38:24+00:00,False,hello-penguin,hello-penguin,* master,True,ClusterLabs_crmsh,ClusterLabs/crmsh,https://github.com/ClusterLabs/crmsh +d15fbd118ad7875c845249a51d53ac15b3e3dea7,Dima Kogan,dima@secretsauce.net,2016-05-14 13:37:35-07:00,Dima Kogan,dima@secretsauce.net,2016-05-14 20:51:48+00:00,False,secretsauce,secretsauce,* master,True,dkogan_numpysane,dkogan/numpysane,https://github.com/dkogan/numpysane +aeab7ecc3aa1aa60927858b04621ca8f933aae4a,Jonathan Slenders,jonathan@slenders.be,2014-08-30 12:03:25+02:00,Jonathan Slenders,jonathan@slenders.be,2014-08-30 10:03:25+00:00,False,slenders,slenders,* master,True,prompt-toolkit_python-prompt-toolkit,prompt-toolkit/python-prompt-toolkit,https://github.com/prompt-toolkit/python-prompt-toolkit +15c3e40fa8ef58bf22fef458253579f8bde5b5d3,Honza Pokorny,me@honza.ca,2014-08-24 20:56:46+02:00,Honza Pokorny,me@honza.ca,2014-08-24 18:56:46+00:00,False,honza,honza,* master,True,honza_anosql,honza/anosql,https://github.com/honza/anosql +80d7705cbff925a2d4758ff2caaf10368cdbd2c1,Patrick Hunt,phunt1@gmail.com,2009-11-04 23:23:52-08:00,Patrick Hunt,phunt1@gmail.com,2009-11-05 07:23:52+00:00,False,gmail,gmail,* master,True,phunt_zktop.git,phunt/zktop.git,https://github.com/phunt/zktop.git +0ee48235dfd2fbdcea7943511322b9f67dd43ac9,Jaakko Luttinen,jaakko.luttinen@iki.fi,2012-08-27 12:29:07+03:00,Jaakko Luttinen,jaakko.luttinen@iki.fi,2012-08-27 09:29:07+00:00,False,iki,iki,* develop,True,bayespy_bayespy,bayespy/bayespy,https://github.com/bayespy/bayespy 260139e288f3c441a3f06481cd475ceec05ac18d,Guus Sliepen,guus@sliepen.org,2018-08-25 21:23:03+02:00,Guus Sliepen,guus@sliepen.org,2018-08-25 19:23:03+00:00,False,sliepen,sliepen,* master,True,gsliepen_rsh-redone,gsliepen/rsh-redone,https://github.com/gsliepen/rsh-redone -82ecb94091dfe25f91124833719ed8269d2a1436,Laurent Napias,tamplan@free.fr,2019-06-09 22:00:38+02:00,ZenWalker,scow@riseup.net,2019-06-13 07:34:28+00:00,False,free,riseup,* master,True,mate-desktop_mate-indicator-applet.git,mate-desktop/mate-indicator-applet.git,https://github.com/mate-desktop/mate-indicator-applet.git -9b698b246635bfaa8223bef73e0709f6249280b8,Erik,fhaschott@gmail.com,2016-10-31 21:12:51+01:00,Kenneth Finnegan,kennethfinnegan2007@gmail.com,2016-11-02 02:19:39+00:00,False,gmail,gmail,* master,True,PhirePhly_aprx,PhirePhly/aprx,https://github.com/PhirePhly/aprx -409c9a01b35e09236d8e0ecdc7eddc358a46649c,Stefan Vigerske,svigerske@gams.com,2023-08-13 19:20:23+02:00,Stefan Vigerske,svigerske@gams.com,2023-08-13 17:22:25+00:00,False,gams,gams,* master,True,coin-or_Osi,coin-or/Osi,https://github.com/coin-or/Osi -5c9bde7d41c169a3c2ed565575d0c38b36cb8bee,Guillaume Le Vaillant,glv@posteo.net,2024-02-29 13:31:35+01:00,Guillaume Le Vaillant,glv@posteo.net,2024-02-29 12:31:35+00:00,False,posteo,posteo,* master,True,sharplispers_ironclad,sharplispers/ironclad,https://github.com/sharplispers/ironclad -e098290ae53fb96006043a1a6d4a94ae6a9c3636,Manuel Barkhau,mbarkhau@gmail.com,2022-10-26 17:47:52+00:00,Manuel Barkhau,mbarkhau@gmail.com,2022-10-26 17:47:52+00:00,False,gmail,gmail,* master,True,theacodes_cmarkgfm,theacodes/cmarkgfm,https://github.com/theacodes/cmarkgfm -3204dbe326fa55b35e61181405772edebfd8a536,Georg Sauthoff,mail@gms.tf,2023-03-26 19:31:53+02:00,Ron Frederick,ronf@timeheart.net,2023-03-27 23:29:44+00:00,False,gms,timeheart,* develop,True,ronf_asyncssh,ronf/asyncssh,https://github.com/ronf/asyncssh -5d239a653dc9d33a6498badffc784abb717e85c5,Steffen Allner,sa@gocept.com,2018-11-01 15:20:31+01:00,Steffen Allner,sa@gocept.com,2018-11-08 12:56:22+00:00,False,gocept,gocept,* master,True,zopefoundation_zc.lockfile,zopefoundation/zc.lockfile,https://github.com/zopefoundation/zc.lockfile -1ad88fdbcb8353923e8aff30f37a25475887bea3,Andres Riancho,andres.riancho@gmail.com,2019-09-05 09:42:13-03:00,Andres Riancho,andres.riancho@gmail.com,2019-09-05 12:42:13+00:00,False,gmail,gmail,* master,True,vulndb_python-sdk,vulndb/python-sdk,https://github.com/vulndb/python-sdk -28b4dd8fd30c8e54829056fb97acd91e9316d555,Jeremy Bicha,jbicha@ubuntu.com,2016-08-13 14:21:30-04:00,Sahil Sareen,sahil.sareen@hotmail.com,2016-08-15 18:55:59+00:00,False,ubuntu,hotmail,* master,True,GNOME_libgnome-games-support.git,GNOME/libgnome-games-support.git,https://gitlab.gnome.org/GNOME/libgnome-games-support.git -d8c980538798c567eb27ab9e5c446f56cced3b47,CyclingNinja,bennett.sm89@gmail.com,2024-02-15 12:27:27+00:00,CyclingNinja,bennett.sm89@gmail.com,2024-02-15 12:27:27+00:00,False,gmail,gmail,* main,True,sunpy_ndcube.git,sunpy/ndcube.git,https://github.com/sunpy/ndcube.git -1af2acd5a0804a40995aabc086437b5ca05c247b,P. L. Lim,2090236+pllim@users.noreply.github.com,2022-08-23 17:11:05-04:00,GitHub,noreply@github.com,2022-08-23 21:11:05+00:00,True,users,github,* main,True,astrofrog_pytest-arraydiff,astrofrog/pytest-arraydiff,https://github.com/astrofrog/pytest-arraydiff -13922230092a4191583e592e9c6d49f912a3fd03,Asif Saif Uddin,auvipy@gmail.com,2023-11-06 11:21:31+06:00,Asif Saif Uddin,auvipy@gmail.com,2023-11-06 05:21:31+00:00,False,gmail,gmail,* main,True,celery_billiard,celery/billiard,https://github.com/celery/billiard -669a6b62a9b476a480f81cb68f11d92358bb2387,Eugene Trounev,eugene.trounev@gmail.com,2008-11-17 15:26:31+00:00,Eugene Trounev,eugene.trounev@gmail.com,2008-11-17 15:26:31+00:00,False,gmail,gmail,* master,True,ksudoku.git,ksudoku.git,https://anongit.kde.org/ksudoku.git -66a0042d7f371ef5379c46e1b0dcdb5b85b2e6e1,Ilan Schnell,ilanschnell@gmail.com,2024-01-20 15:35:33-06:00,Ilan Schnell,ilanschnell@gmail.com,2024-01-20 21:35:33+00:00,False,gmail,gmail,* master,True,ilanschnell_bitarray.git,ilanschnell/bitarray.git,https://github.com/ilanschnell/bitarray.git -8bce6ff379ea12d88dacbf0194f81ba6932789fd,Ben Kurtovic,ben.kurtovic@gmail.com,2023-09-08 00:10:46-04:00,Ben Kurtovic,ben.kurtovic@gmail.com,2023-09-08 04:10:46+00:00,False,gmail,gmail,* main,True,earwig_mwparserfromhell.git,earwig/mwparserfromhell.git,https://github.com/earwig/mwparserfromhell.git -04efa3ffa4b385007a5c91f5fe93d18d4c2a9014,Ianaré Sévi,ianare@gmail.com,2023-05-03 02:23:36+02:00,Ianaré Sévi,ianare@gmail.com,2023-05-03 00:51:18+00:00,False,gmail,gmail,* develop,True,ianare_exif-py,ianare/exif-py,https://github.com/ianare/exif-py -1526c116ce4955b0b851a7b3658d890479486821,Lorenz Diener,lorenzd@gmail.com,2024-02-11 13:28:17+02:00,GitHub,noreply@github.com,2024-02-11 11:28:17+00:00,True,gmail,github,* master,True,halcy_Mastodon.py.git,halcy/Mastodon.py.git,https://github.com/halcy/Mastodon.py.git -e89afba97252959d5f03976806562a7f284dcc54,Stephen J. Fuhry,steve@tpastream.com,2021-02-04 21:28:53+00:00,Daniel Wolf,danwolf@fastmail.com,2021-02-04 22:13:18+00:00,False,tpastream,fastmail,* master,True,dwolfhub_zxcvbn-python.git,dwolfhub/zxcvbn-python.git,https://github.com/dwolfhub/zxcvbn-python.git -29acb10db16226081bbc49a1a21ebb512633b047,Jens Rehsack,sno@netbsd.org,2014-05-13 15:34:44+02:00,Jens Rehsack,sno@netbsd.org,2014-05-13 13:34:44+00:00,False,netbsd,netbsd,* master,True,rehsack_Sys-Filesystem,rehsack/Sys-Filesystem,https://github.com/rehsack/Sys-Filesystem -48e6798686fb06cbc5f788b997c23ae735ba2892,Laurent Mazuel,laurent.mazuel@gmail.com,2021-12-10 10:16:39-08:00,GitHub,noreply@github.com,2021-12-10 18:16:39+00:00,False,gmail,github,* master,True,Azure_azure-python-devtools,Azure/azure-python-devtools,https://github.com/Azure/azure-python-devtools -283d6ded4dae4ba3240ba4690396305c79efea15,Martin Wimpress,code@flexion.org,2015-03-15 21:05:05+00:00,Martin Wimpress,code@flexion.org,2015-03-15 21:05:05+00:00,False,flexion,flexion,* master,True,ubuntu-mate_mate-tweak.git,ubuntu-mate/mate-tweak.git,https://github.com/ubuntu-mate/mate-tweak.git -35793772803888461b13f8a43674a0d6004ced56,Thomas Kemmer,tkemmer@computer.org,2022-04-03 22:33:38+02:00,Thomas Kemmer,tkemmer@computer.org,2022-04-03 20:33:38+00:00,False,computer,computer,* master,True,tkem_mopidy-podcast.git,tkem/mopidy-podcast.git,https://github.com/tkem/mopidy-podcast.git -98dc2dc09ebd83304b3e1fd89aab4771f38b2a15,Nick Steel,nick@nsteel.co.uk,2021-01-12 00:16:57+00:00,GitHub,noreply@github.com,2021-01-12 00:16:57+00:00,True,nsteel,github,* master,True,kingosticks_mopidy-tunein,kingosticks/mopidy-tunein,https://github.com/kingosticks/mopidy-tunein -c46f12f0d6a5c2b56f9caef96b2b95c67c9e1e29,Maciej Gol,1kroolik1@gmail.com,2022-03-30 13:09:32+02:00,Benj Fassbind,randombenj@gmail.com,2022-03-30 12:25:04+00:00,False,gmail,gmail,* master,True,aptly-dev_aptly.git,aptly-dev/aptly.git,https://github.com/aptly-dev/aptly.git -4604072bad20d6506e9f2991dc7fc45e855d7f26,Serhii Tereshchenko,serg.partizan@gmail.com,2023-11-04 14:17:21+02:00,Serhii Tereshchenko,serg.partizan@gmail.com,2023-11-04 12:17:21+00:00,False,gmail,gmail,* master,True,deschler_django-modeltranslation.git,deschler/django-modeltranslation.git,https://github.com/deschler/django-modeltranslation.git -02092d023b9fb5c288cf357bd41304f1f0836381,Nathaniel McCallum,npmccallum@redhat.com,2011-09-30 20:53:34-04:00,Nathaniel McCallum,npmccallum@redhat.com,2011-10-01 00:53:34+00:00,False,redhat,redhat,* main,True,latchset_libverto,latchset/libverto,https://github.com/latchset/libverto -3da715479f5fa7f1f9699e1379114140f12e5352,Murad,Mraoul@users.noreply.github.com,2021-12-13 16:04:22-05:00,GitHub,noreply@github.com,2021-12-13 21:04:22+00:00,True,users,github,* master,True,MITRECND_libnids.git,MITRECND/libnids.git,https://github.com/MITRECND/libnids.git -a5d33a3fb767ad61c035e07410b52a3b12a99895,Adrian Sampson,adrian@radbox.org,2023-12-02 13:57:12-05:00,Adrian Sampson,adrian@radbox.org,2023-12-02 18:57:12+00:00,False,radbox,radbox,* main,True,sampsyo_audioread.git,sampsyo/audioread.git,https://github.com/sampsyo/audioread.git -20713078382aedd6c5d8935aed068282d980b75c,jan iversen,jancasacondor@gmail.com,2024-03-08 10:23:55+01:00,jan iversen,jancasacondor@gmail.com,2024-03-08 09:23:55+00:00,True,gmail,gmail,* dev,True,pymodbus-dev_pymodbus.git,pymodbus-dev/pymodbus.git,https://github.com/pymodbus-dev/pymodbus.git -5e5588cd1edfbab1889537b93ae13b159f76caff,Timo Weingärtner,timo@tiwe.de,2013-09-26 16:29:26+02:00,Timo Weingärtner,timo@tiwe.de,2013-09-26 14:29:48+00:00,False,tiwe,tiwe,* master,True,tiwe-de_libpam-pwdfile,tiwe-de/libpam-pwdfile,https://github.com/tiwe-de/libpam-pwdfile -d6687aa215d2daaa41bcbf9928b90de106eb1b36,James Saryerwinnie,js@jamesls.com,2022-01-19 17:52:30-05:00,James Saryerwinnie,js@jamesls.com,2022-01-19 22:52:30+00:00,True,jamesls,jamesls,* develop,True,jmespath_jmespath.py,jmespath/jmespath.py,https://github.com/jmespath/jmespath.py -85d9b50f1302e4bc85055a46ced8071f53e8318e,Michael Howitz,mh@gocept.com,2022-03-16 08:05:32+01:00,GitHub,noreply@github.com,2022-03-16 07:05:32+00:00,False,gocept,github,* master,True,zopefoundation_zope.i18nmessageid,zopefoundation/zope.i18nmessageid,https://github.com/zopefoundation/zope.i18nmessageid -0bb7cd0ce6b99611d6ae994464ded256b4761b7d,Peter Goldstein,peter.m.goldstein@gmail.com,2023-10-23 10:53:50-04:00,GitHub,noreply@github.com,2023-10-23 14:53:50+00:00,False,gmail,github,* main,True,DatabaseCleaner_database_cleaner,DatabaseCleaner/database/cleaner,https://github.com/DatabaseCleaner/database_cleaner -4fba917d80089916a4a689f298368e65d7fc18c2,Kevin Wurster,geowurster@users.noreply.github.com,2018-09-15 20:13:27-04:00,GitHub,noreply@github.com,2018-09-16 00:13:27+00:00,True,users,github,* main,True,click-contrib_click-plugins.git,click-contrib/click-plugins.git,https://github.com/click-contrib/click-plugins.git -5121d364174d165eb61187661906af642379b670,Nicolas Mora,github@babelouest.org,2022-03-09 16:23:46-05:00,Nicolas Mora,github@babelouest.org,2022-03-09 21:23:46+00:00,False,babelouest,babelouest,* master,True,babelouest_orcania,babelouest/orcania,https://github.com/babelouest/orcania +c3b4e76655aa6b675ba01f5af12ff375a8cd2a8c,Stefano Karapetsas,stefano@karapetsas.com,2011-12-23 22:59:38+01:00,Stefano Karapetsas,stefano@karapetsas.com,2011-12-23 21:59:38+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_mate-indicator-applet.git,mate-desktop/mate-indicator-applet.git,https://github.com/mate-desktop/mate-indicator-applet.git +1dba1ca313b6a06eb0b5ca291ec626410265810e,oh2mqk,oh2mqk@7f334e7d-9667-46a4-86d4-45028e631dbf,2007-11-04 20:39:31+00:00,oh2mqk,oh2mqk@7f334e7d-9667-46a4-86d4-45028e631dbf,2007-11-04 20:39:31+00:00,False,7f334e7d-9667-46a4-86d4-45028e631dbf,7f334e7d-9667-46a4-86d4-45028e631dbf,* master,True,PhirePhly_aprx,PhirePhly/aprx,https://github.com/PhirePhly/aprx +7328e9ca65676104f93fec4bb605c2b186563ad2,Andreas Waechter,andreas.waechter@northwestern.edu,2006-05-25 21:35:45+00:00,Andreas Waechter,andreas.waechter@northwestern.edu,2006-05-25 21:35:45+00:00,False,northwestern,northwestern,* master,True,coin-or_Osi,coin-or/Osi,https://github.com/coin-or/Osi +eaf2f0df04140e3a068c18d30b8b19906570f0d4,Nathan Froyd,froydnj@nightcrawler.(none),2009-11-11 09:03:15-05:00,Nathan Froyd,froydnj@nightcrawler.(none),2009-11-11 14:03:15+00:00,False,nightcrawler,nightcrawler,* master,True,sharplispers_ironclad,sharplispers/ironclad,https://github.com/sharplispers/ironclad +f90cfef6c4f93851771eb2abde372950e99c9c24,Jon Wayne Parrott,thea@thea.codes,2018-03-17 21:04:32-07:00,Jon Wayne Parrott,thea@thea.codes,2018-03-18 04:04:32+00:00,False,thea,thea,* master,True,theacodes_cmarkgfm,theacodes/cmarkgfm,https://github.com/theacodes/cmarkgfm +d0d291656bda1ef2e14f9973a299e754812ae0d6,Ron Frederick,ronf@timeheart.net,2013-09-21 21:02:44-07:00,Ron Frederick,ronf@timeheart.net,2013-09-22 04:02:44+00:00,False,timeheart,timeheart,* develop,True,ronf_asyncssh,ronf/asyncssh,https://github.com/ronf/asyncssh +56a2a52037280a7c35ac0cdaab9df2743e324a12,Jim Fulton,jim@zope.com,2007-07-18 11:24:02+00:00,Jim Fulton,jim@zope.com,2007-07-18 11:24:02+00:00,False,zope,zope,* master,True,zopefoundation_zc.lockfile,zopefoundation/zc.lockfile,https://github.com/zopefoundation/zc.lockfile +36b61750cf8b813f6138517da149402e173d6775,Andres Riancho,andres.riancho@gmail.com,2015-03-27 09:04:44-03:00,Andres Riancho,andres.riancho@gmail.com,2015-03-27 12:04:44+00:00,False,gmail,gmail,* master,True,vulndb_python-sdk,vulndb/python-sdk,https://github.com/vulndb/python-sdk +72dc7e53846cfeacb13a64da5fd610e72e0be69d,Michael Catanzaro,mcatanzaro@gnome.org,2014-04-05 22:25:39-05:00,Michael Catanzaro,mcatanzaro@gnome.org,2014-04-06 03:26:01+00:00,False,gnome,gnome,* master,True,GNOME_libgnome-games-support.git,GNOME/libgnome-games-support.git,https://gitlab.gnome.org/GNOME/libgnome-games-support.git +00b9147ad279a804c5e97fe4bf924e4365abf12e,Stuart Mumford,stuart@cadair.com,2017-08-15 17:03:22+01:00,Stuart Mumford,stuart@cadair.com,2017-08-15 16:03:22+00:00,False,cadair,cadair,* main,True,sunpy_ndcube.git,sunpy/ndcube.git,https://github.com/sunpy/ndcube.git +173be8b9d3fb6afbfdff5bb756da624f53e56dc8,Thomas Robitaille,thomas.robitaille@gmail.com,2016-07-06 09:56:49+01:00,Thomas Robitaille,thomas.robitaille@gmail.com,2016-07-06 08:56:49+00:00,False,gmail,gmail,* main,True,astrofrog_pytest-arraydiff,astrofrog/pytest-arraydiff,https://github.com/astrofrog/pytest-arraydiff +994ab91dfae9971dddbb1fbc90f753630da175a2,Ask Solem,askh@opera.com,2009-11-16 16:32:53+01:00,Ask Solem,askh@opera.com,2009-11-16 15:32:53+00:00,False,opera,opera,* main,True,celery_billiard,celery/billiard,https://github.com/celery/billiard +6130c6b69a0a2d987ddcceb4ecddd3cf75b769fd,Francesco Rossi,redsh@email.it,2007-03-03 18:48:21+00:00,Francesco Rossi,redsh@email.it,2007-03-03 18:48:21+00:00,False,email,email,* master,True,ksudoku.git,ksudoku.git,https://anongit.kde.org/ksudoku.git +40055cb2ff7800422f09935177d543723a3c7a70,ischnell,ischnell@0f75f672-aac9-0310-9aed-c1b1d04913f9,2008-11-30 07:13:57+00:00,ischnell,ischnell@0f75f672-aac9-0310-9aed-c1b1d04913f9,2008-11-30 07:13:57+00:00,False,0f75f672-aac9-0310-9aed-c1b1d04913f9,0f75f672-aac9-0310-9aed-c1b1d04913f9,* master,True,ilanschnell_bitarray.git,ilanschnell/bitarray.git,https://github.com/ilanschnell/bitarray.git +ce8adf4b2e1f197598ab8839f69913df3f30c87e,Ben Kurtovic,ben.kurtovic@verizon.net,2012-05-20 14:50:28-04:00,Ben Kurtovic,ben.kurtovic@verizon.net,2012-05-20 18:50:28+00:00,False,verizon,verizon,* main,True,earwig_mwparserfromhell.git,earwig/mwparserfromhell.git,https://github.com/earwig/mwparserfromhell.git +add1aa245090f83f0a132a706f0bb31c64b146b4,ianaré sévi,ianare@gmail.com,2012-05-31 17:45:09-07:00,ianaré sévi,ianare@gmail.com,2012-06-01 00:45:09+00:00,False,gmail,gmail,* develop,True,ianare_exif-py,ianare/exif-py,https://github.com/ianare/exif-py +44a51f62c61ea489c071ca7c6d1613a403f7919c,Lorenz Diener,lorenzd@gmail.com,2016-11-23 23:29:30+01:00,Lorenz Diener,lorenzd@gmail.com,2016-11-23 22:29:30+00:00,False,gmail,gmail,* master,True,halcy_Mastodon.py.git,halcy/Mastodon.py.git,https://github.com/halcy/Mastodon.py.git +5ea8b611a056292f4df7064853b02f240d1f0e5c,Daniel Wolf,danielrwolf5@gmail.com,2016-11-17 12:22:03-06:00,Daniel Wolf,danielrwolf5@gmail.com,2016-11-17 18:22:03+00:00,False,gmail,gmail,* master,True,dwolfhub_zxcvbn-python.git,dwolfhub/zxcvbn-python.git,https://github.com/dwolfhub/zxcvbn-python.git +19bf8b836b68e48c776480807d2b679ee907e478,Jens Rehsack,sno@NetBSD.org,2009-10-18 10:03:18+00:00,Jens Rehsack,sno@NetBSD.org,2009-10-18 10:03:18+00:00,False,NetBSD,NetBSD,* master,True,rehsack_Sys-Filesystem,rehsack/Sys-Filesystem,https://github.com/rehsack/Sys-Filesystem +c1c35c53182640b28087fedfb716110e4f6f1ebd,Microsoft Open Source,microsoftopensource@users.noreply.github.com,2017-04-26 15:16:06-07:00,Microsoft Open Source,microsoftopensource@users.noreply.github.com,2017-04-26 22:16:06+00:00,False,users,users,* master,True,Azure_azure-python-devtools,Azure/azure-python-devtools,https://github.com/Azure/azure-python-devtools +620e7df4c320ca86a1293bbb6b4277b62b0f87c5,Clement Lefebvre,root@linuxmint.com,2009-07-27 12:49:04+02:00,Clement Lefebvre,root@linuxmint.com,2009-07-27 10:49:04+00:00,False,linuxmint,linuxmint,* master,True,ubuntu-mate_mate-tweak.git,ubuntu-mate/mate-tweak.git,https://github.com/ubuntu-mate/mate-tweak.git +4269856fc912b05126b89ce8deafba0f91bc336a,Thomas Kemmer,tkemmer@computer.org,2014-02-01 13:02:40+01:00,Thomas Kemmer,tkemmer@computer.org,2014-02-01 12:02:40+00:00,False,computer,computer,* master,True,tkem_mopidy-podcast.git,tkem/mopidy-podcast.git,https://github.com/tkem/mopidy-podcast.git +8e2fd1b00315399b17eefab4294ec15cba19678c,kingosticks,kingosticks@gmail.com,2014-02-16 18:28:30+00:00,kingosticks,kingosticks@gmail.com,2014-02-16 18:28:30+00:00,False,gmail,gmail,* master,True,kingosticks_mopidy-tunein,kingosticks/mopidy-tunein,https://github.com/kingosticks/mopidy-tunein +29aec4a898fbea91611382dfca152b4506511656,Andrey Smirnov,Smirnov.Andrey@gmail.com,2013-12-13 23:15:42+04:00,Andrey Smirnov,Smirnov.Andrey@gmail.com,2013-12-13 19:15:42+00:00,False,gmail,gmail,* master,True,aptly-dev_aptly.git,aptly-dev/aptly.git,https://github.com/aptly-dev/aptly.git +38f65c340a0599002ac80eda4284f27544df286a,Dirk Eschler,eschler@gmail.com,2012-10-16 16:52:37+02:00,Dirk Eschler,eschler@gmail.com,2012-10-16 14:52:37+00:00,False,gmail,gmail,* master,True,deschler_django-modeltranslation.git,deschler/django-modeltranslation.git,https://github.com/deschler/django-modeltranslation.git +f2b58fc4f61f0aee15ef320681a0945c3da1d431,Nathaniel McCallum,npmccallum@redhat.com,2011-06-09 13:07:12-04:00,Nathaniel McCallum,npmccallum@redhat.com,2011-06-09 17:07:12+00:00,False,redhat,redhat,* main,True,latchset_libverto,latchset/libverto,https://github.com/latchset/libverto +8a5ab920679f64da18b1d2750e3b088b7472e6a6,Wesley Shields,wshields@mitre.org,2013-02-18 20:24:46-05:00,Wesley Shields,wshields@mitre.org,2013-02-19 01:24:46+00:00,False,mitre,mitre,* master,True,MITRECND_libnids.git,MITRECND/libnids.git,https://github.com/MITRECND/libnids.git +33003cd0719745bb1ed734c6a21700de99ad82bc,Adrian Sampson,adrian@radbox.org,2011-11-08 13:47:57-08:00,Adrian Sampson,adrian@radbox.org,2011-11-08 21:47:57+00:00,False,radbox,radbox,* main,True,sampsyo_audioread.git,sampsyo/audioread.git,https://github.com/sampsyo/audioread.git +0ec739ffe2a22c48785e5b9b35fb91c3ed343cca,Galen Collins,bashwork@gmail.com,2008-11-20 15:39:49+00:00,Galen Collins,bashwork@gmail.com,2008-11-20 15:39:49+00:00,False,gmail,gmail,* dev,True,pymodbus-dev_pymodbus.git,pymodbus-dev/pymodbus.git,https://github.com/pymodbus-dev/pymodbus.git +60d8c9e5a38161624cb7f620b012e85c3b7fb378,Charl Botha,cpbotha@cpbotha.net,1999-08-05 13:09:07+00:00,Charl Botha,cpbotha@cpbotha.net,1999-08-05 13:09:07+00:00,False,cpbotha,cpbotha,* master,True,tiwe-de_libpam-pwdfile,tiwe-de/libpam-pwdfile,https://github.com/tiwe-de/libpam-pwdfile +89a553518709b52cd763c963e953e864c29176e9,James Saryerwinnie,js@jamesls.com,2013-02-19 14:29:17-08:00,James Saryerwinnie,js@jamesls.com,2013-02-19 22:29:17+00:00,False,jamesls,jamesls,* develop,True,jmespath_jmespath.py,jmespath/jmespath.py,https://github.com/jmespath/jmespath.py +04ab4fa2e8b2e9f8b04e9927392087d3846c4033,Tres Seaver,tseaver@palladion.com,2006-04-04 18:44:12+00:00,Tres Seaver,tseaver@palladion.com,2006-04-04 18:44:12+00:00,False,palladion,palladion,* master,True,zopefoundation_zope.i18nmessageid,zopefoundation/zope.i18nmessageid,https://github.com/zopefoundation/zope.i18nmessageid +00299245c8a0107c9748d4b056b673d0ca076612,Ben Mabey,ben@benmabey.com,2009-02-26 21:42:20-07:00,Ben Mabey,ben@benmabey.com,2009-02-27 04:42:20+00:00,False,benmabey,benmabey,* main,True,DatabaseCleaner_database_cleaner,DatabaseCleaner/database/cleaner,https://github.com/DatabaseCleaner/database_cleaner +605e43091a044147f3717616d8c52f308b036aed,Kevin Wurster,wursterk@gmail.com,2015-07-14 17:24:28-04:00,Kevin Wurster,wursterk@gmail.com,2015-07-14 21:24:34+00:00,False,gmail,gmail,* main,True,click-contrib_click-plugins.git,click-contrib/click-plugins.git,https://github.com/click-contrib/click-plugins.git +57f02125dc30026212fe885e926d823cd4e14b81,Nicolas Mora,babelouest@users.noreply.github.com,2016-10-08 10:10:00-04:00,GitHub,noreply@github.com,2016-10-08 14:10:00+00:00,False,users,github,* master,True,babelouest_orcania,babelouest/orcania,https://github.com/babelouest/orcania 7db4cdd9a7d837b592d6c3d440459520612472e9,Eduardo Lima Mitev,elima@igalia.com,2011-04-09 14:06:16+02:00,Eduardo Lima Mitev,elima@igalia.com,2011-04-10 18:50:13+00:00,False,igalia,igalia,* master,True,elima_FileTea,elima/FileTea,https://github.com/elima/FileTea -1d5fa8c8d0cfff261f25b767756a36317289b7a9,Mateusz Czapliński,czapkofan@gmail.com,2016-08-30 22:50:47+02:00,Auke Kok,sofar+github@foo-projects.org,2016-08-30 20:50:47+00:00,False,gmail,foo-projects,* main,True,systemd_systemd-bootchart,systemd/systemd-bootchart,https://github.com/systemd/systemd-bootchart -0be2ba2a81e8ce1f10af6891035d1c7a5d21a586,monsta,monsta@inbox.ru,2016-06-21 14:33:05+03:00,monsta,monsta@inbox.ru,2016-06-21 11:33:05+00:00,False,inbox,inbox,* master,True,mate-desktop_mate-desktop.git,mate-desktop/mate-desktop.git,https://github.com/mate-desktop/mate-desktop.git -a55cffa2be5ed15f3db2ce3bd94d70e7b34c075d,Joachim Metz,joachim.metz@gmail.com,2016-08-19 06:44:07+02:00,Joachim Metz,joachim.metz@gmail.com,2016-08-19 04:44:07+00:00,False,gmail,gmail,* main,True,libyal_libvshadow.git,libyal/libvshadow.git,https://github.com/libyal/libvshadow.git -0a253fcb561a699b35467a2b11ae1aa15c36c173,Dmitry Borodaenko,angdraug@debian.org,2012-02-05 15:15:08+03:00,Dmitry Borodaenko,angdraug@debian.org,2012-02-05 12:15:08+00:00,False,debian,debian,* main,True,angdraug_graffiti,angdraug/graffiti,https://github.com/angdraug/graffiti -4fb56d4ac5bc234561b2e8143fe2ac799ab5fbfd,fliiiix,hi@l33t.name,2022-09-27 20:55:42+02:00,fliiiix,hi@l33t.name,2022-10-01 06:27:48+00:00,False,l33t,l33t,* master,True,rtomayko_rdiscount,rtomayko/rdiscount,https://github.com/rtomayko/rdiscount -dac0674b30e94ee3d6c9b5efdd5313371493f1cf,Andreas Bilke,andreas@bilke.org,2023-02-13 19:58:20+01:00,GitHub,noreply@github.com,2023-02-13 18:58:20+00:00,True,bilke,github,* master,True,pdfpc_pdfpc,pdfpc/pdfpc,https://github.com/pdfpc/pdfpc -b4576a943f4d125c966a09ac9a05243da27db155,Neil Bowers,neil@bowers.com,2014-03-31 22:24:38+01:00,Neil Bowers,neil@bowers.com,2014-03-31 21:24:38+00:00,False,bowers,bowers,* master,True,neilb_File-Modified,neilb/File-Modified,https://github.com/neilb/File-Modified -9db9a9cba80000f1647483730d1a0d83307773c9,Herbert J. Bernstein,yayahjb@gmail.com,2018-04-29 20:48:00-04:00,Herbert J. Bernstein,yayahjb@gmail.com,2018-04-30 00:48:00+00:00,False,gmail,gmail,* master,True,yayahjb_cqrlib.git,yayahjb/cqrlib.git,https://github.com/yayahjb/cqrlib.git -a2b282ce5bf33d952ab3ccc3d89a9f63cc93ecfc,bryango,bryango@users.noreply.github.com,2023-03-24 12:31:03+08:00,Andrea Francia,260852+andreafrancia@users.noreply.github.com,2023-03-27 11:22:37+00:00,False,users,users,* master,True,andreafrancia_trash-cli.git,andreafrancia/trash-cli.git,https://github.com/andreafrancia/trash-cli.git +e6c5e467c4b593114a4cefa17ed10afd6def1d6e,Daniel Mack,daniel@zonque.org,2015-07-14 16:29:14-04:00,Daniel Mack,daniel@zonque.org,2016-02-17 15:28:04+00:00,False,zonque,zonque,* main,True,systemd_systemd-bootchart,systemd/systemd-bootchart,https://github.com/systemd/systemd-bootchart +d00aab12b6ace2c3dda3efbc2aaa2646d78a9099,Perberos,perberos@gmail.com,2011-12-01 22:07:25-03:00,Perberos,perberos@gmail.com,2011-12-02 01:07:25+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-desktop.git,mate-desktop/mate-desktop.git,https://github.com/mate-desktop/mate-desktop.git +fab3bb77956c0a2bed9e703d6eb7fc303d3f070b,Joachim Metz,joachim.metz@gmail.com,2013-05-03 07:19:27+02:00,Joachim Metz,joachim.metz@gmail.com,2013-05-03 05:19:27+00:00,False,gmail,gmail,* main,True,libyal_libvshadow.git,libyal/libvshadow.git,https://github.com/libyal/libvshadow.git +3605566c2a3b251e592f2a78aee0048724f76174,Dmitry Borodaenko,angdraug@debian.org,2011-06-04 22:00:39+03:00,Dmitry Borodaenko,angdraug@debian.org,2011-06-04 19:00:39+00:00,False,debian,debian,* main,True,angdraug_graffiti,angdraug/graffiti,https://github.com/angdraug/graffiti +7c232af20fff48173dd1f2e9a93cd28e9984fd7b,Ryan Tomayko,rtomayko@gmail.com,2008-05-29 22:37:09-04:00,Ryan Tomayko,rtomayko@gmail.com,2008-05-30 02:51:11+00:00,False,gmail,gmail,* master,True,rtomayko_rdiscount,rtomayko/rdiscount,https://github.com/rtomayko/rdiscount +e4df26e87b785ed3774d1ce97c48e05d4aaba919,Jakob Westhoff,jakob@westhoffswelt.de,2009-11-22 17:48:32+00:00,Jakob Westhoff,jakob@westhoffswelt.de,2009-11-22 17:48:32+00:00,False,westhoffswelt,westhoffswelt,* master,True,pdfpc_pdfpc,pdfpc/pdfpc,https://github.com/pdfpc/pdfpc +9614efdc540ffbe4f5e81094821af8e054514e04,Max Maischein,corion@cpan.org,2002-04-22 06:04:16-08:00,Michael G. Schwern,schwern@pobox.com,2009-12-11 21:33:54+00:00,False,cpan,pobox,* master,True,neilb_File-Modified,neilb/File-Modified,https://github.com/neilb/File-Modified +3d29d1d283467340c86ed2c91f847b7a8afd04fe,Herbert J. Bernstein,yayahjb@gmail.com,2010-04-25 01:39:40+00:00,Herbert J. Bernstein,yayahjb@gmail.com,2010-04-25 01:39:40+00:00,False,gmail,gmail,* master,True,yayahjb_cqrlib.git,yayahjb/cqrlib.git,https://github.com/yayahjb/cqrlib.git +85b831e1b550191d0c03c3658536609b6832e1de,andreafrancia,andreafrancia@5f8113d0-aa50-0410-8ab7-a55b15e2ca8a,2007-07-24 11:46:14+00:00,andreafrancia,andreafrancia@5f8113d0-aa50-0410-8ab7-a55b15e2ca8a,2007-07-24 11:46:14+00:00,False,5f8113d0-aa50-0410-8ab7-a55b15e2ca8a,5f8113d0-aa50-0410-8ab7-a55b15e2ca8a,* master,True,andreafrancia_trash-cli.git,andreafrancia/trash-cli.git,https://github.com/andreafrancia/trash-cli.git a310aa4d2bc390e0b3d881ca9e09ef9562513f40,Chris Williams,chris@bingosnet.co.uk,2009-03-31 21:22:02+01:00,Chris Williams,chris@bingosnet.co.uk,2009-03-31 20:22:02+00:00,False,bingosnet,bingosnet,* master,True,bingos_poe-component-client-ident.git,bingos/poe-component-client-ident.git,https://github.com/bingos/poe-component-client-ident.git -0cccb7b4bceb890fe5b62c831c64778a18ff7b43,Philip Wellnitz,philipwellnitz@gmx.de,2020-10-12 18:07:37+09:00,GitHub,noreply@github.com,2020-10-12 09:07:37+00:00,False,gmx,github,* develop,True,powerline_powerline,powerline/powerline,https://github.com/powerline/powerline -c3c87341d610bfaa6f6b76e58e8426c15986dcf7,Andre Klapper,a9016009@gmx.de,2020-04-25 16:40:37+02:00,Andre Klapper,a9016009@gmx.de,2020-04-25 14:40:37+00:00,False,gmx,gmx,* master,True,GNOME_gnome-color-manager.git,GNOME/gnome-color-manager.git,https://gitlab.gnome.org/GNOME/gnome-color-manager.git -04dec5da65aea6a9b76603aafd98832e9686d059,Kai Sommerfeld,3226626+ksooo@users.noreply.github.com,2023-11-06 15:22:36+01:00,GitHub,noreply@github.com,2023-11-06 14:22:36+00:00,True,users,github,* Piers,True,kodi-pvr_pvr.vdr.vnsi.git,kodi-pvr/pvr.vdr.vnsi.git,https://github.com/kodi-pvr/pvr.vdr.vnsi.git -cf191e7558681fa0e5e639f3026bd6885b01adea,James William Pye,james.pye@gmail.com,2023-03-14 06:28:30-07:00,James William Pye,james.pye@gmail.com,2023-03-14 13:28:30+00:00,False,gmail,gmail,* master,True,python-postgres_fe,python-postgres/fe,https://github.com/python-postgres/fe +cf88b086c04feaa01424477c5f0d4829f3d2576f,Kim Silkebækken,kim.silkebaekken@gmail.com,2012-11-08 12:23:57+01:00,Kim Silkebækken,kim.silkebaekken@gmail.com,2012-11-08 11:23:57+00:00,False,gmail,gmail,* develop,True,powerline_powerline,powerline/powerline,https://github.com/powerline/powerline +40b7dc172740c49933139d950b72aab5549df92e,Richard Hughes,richard@hughsie.com,2009-10-24 18:15:33+01:00,Richard Hughes,richard@hughsie.com,2009-10-24 17:15:33+00:00,False,hughsie,hughsie,* master,True,GNOME_gnome-color-manager.git,GNOME/gnome-color-manager.git,https://gitlab.gnome.org/GNOME/gnome-color-manager.git +e608ab56a022d755753e690ff0de13e360a6f45c,xbmc,fernetmenta@online.de,2012-08-30 11:24:48+02:00,xbmc,fernetmenta@online.de,2012-08-30 09:24:48+00:00,False,online,online,* Piers,True,kodi-pvr_pvr.vdr.vnsi.git,kodi-pvr/pvr.vdr.vnsi.git,https://github.com/kodi-pvr/pvr.vdr.vnsi.git +25cd901a8e1de2da3e5626c61a807e58a6fafba5,James William Pye,x@jwp.name,2009-01-03 08:02:13-07:00,James William Pye,x@jwp.name,2009-01-03 15:02:13+00:00,False,jwp,jwp,* master,True,python-postgres_fe,python-postgres/fe,https://github.com/python-postgres/fe 987f20df501ab10178b64f075fcd08e9d03728f4,Dirk Thomas,dthomas@osrfoundation.org,2013-07-02 13:53:59-07:00,Dirk Thomas,dthomas@osrfoundation.org,2013-07-02 20:53:59+00:00,False,osrfoundation,osrfoundation,* master,True,ros-infrastructure_rosinstall_generator,ros-infrastructure/rosinstall/generator,https://github.com/ros-infrastructure/rosinstall_generator -f21b512d6d1867bcf7948f9c36a8ccfc20ebb353,Ali-Akber Saifee,ali@indydevs.org,2023-01-11 10:59:52-08:00,Ali-Akber Saifee,ali@indydevs.org,2023-01-11 18:59:52+00:00,False,indydevs,indydevs,* master,True,alisaifee_hiro,alisaifee/hiro,https://github.com/alisaifee/hiro -c76680d0b5667f8890f76b7e9931a6e17a22546e,C. E. Brasseur,cbrasseur@stsci.edu,2018-03-06 10:19:53-05:00,GitHub,noreply@github.com,2018-03-06 15:19:53+00:00,False,stsci,github,* master,True,spacetelescope_fitscut,spacetelescope/fitscut,https://github.com/spacetelescope/fitscut -a557ccc7a87ebe0ae1222bff9cb5eb82d54db726,Karen Etheridge,ether@cpan.org,2017-12-19 17:34:46-08:00,Karen Etheridge,ether@cpan.org,2017-12-20 01:34:46+00:00,False,cpan,cpan,* master,True,karenetheridge_Module-Manifest,karenetheridge/Module-Manifest,https://github.com/karenetheridge/Module-Manifest +cd587e86727a165b353b006c202fdf5e6fdff086,Ali-Akber Saifee,ali@indydevs.org,2013-11-29 16:55:10-08:00,Ali-Akber Saifee,ali@indydevs.org,2013-11-30 00:55:10+00:00,False,indydevs,indydevs,* master,True,alisaifee_hiro,alisaifee/hiro,https://github.com/alisaifee/hiro +4e4abaf4de7b57d07c6845ace1644380b38806c4,Clara Brasseur,cbrasseur@stsci.edu,2018-03-01 11:54:34-05:00,Clara Brasseur,cbrasseur@stsci.edu,2018-03-01 16:54:34+00:00,False,stsci,stsci,* master,True,spacetelescope_fitscut,spacetelescope/fitscut,https://github.com/spacetelescope/fitscut +453a069634dd6f1b26d1970197edb7d727269d6b,Jonathan Yu,jawnsy@cpan.org,2008-12-21 02:55:01+00:00,Jonathan Yu,jawnsy@cpan.org,2008-12-21 02:55:01+00:00,False,cpan,cpan,* master,True,karenetheridge_Module-Manifest,karenetheridge/Module-Manifest,https://github.com/karenetheridge/Module-Manifest cbf41538ffe6c79f5ace522157169b1d68d36027,Jens Rehsack,sno@netbsd.org,2020-09-30 15:01:10+02:00,Jens Rehsack,sno@netbsd.org,2020-09-30 13:01:10+00:00,False,netbsd,netbsd,* master,True,perl5-utils_Params-Util,perl5-utils/Params-Util,https://github.com/perl5-utils/Params-Util -c4dc430f6518e6ff4ac64e84a2ced0e7261684f9,V. Armando Solé,vasole@users.noreply.github.com,2023-04-11 12:51:40+02:00,GitHub,noreply@github.com,2023-04-11 10:51:40+00:00,True,users,github,* master,True,vasole_fisx,vasole/fisx,https://github.com/vasole/fisx -8c6dcdfa9d44038202194ef2c3e5ae088089d65a,Chris Withers,chris@simplistix.co.uk,2020-01-29 19:51:08+00:00,GitHub,noreply@github.com,2020-01-29 19:51:08+00:00,True,simplistix,github,* master,True,testing-cabal_mock,testing-cabal/mock,https://github.com/testing-cabal/mock -8db0e907c569c8628985b9ee4a3b394f392fef8d,Guillaume Ayoub,guillaume@courtbouillon.org,2023-06-12 15:37:24+02:00,Guillaume Ayoub,guillaume@courtbouillon.org,2023-06-12 13:37:24+00:00,False,courtbouillon,courtbouillon,* main,True,Kozea_cairocffi.git,Kozea/cairocffi.git,https://github.com/Kozea/cairocffi.git -f34052d78e0c84a6c5eed387247f3d65ca56001f,Christine Caulfield,ccaulfie@redhat.com,2022-10-13 12:42:31+01:00,Jan Friesse,jfriesse@redhat.com,2023-01-26 16:03:36+00:00,False,redhat,redhat,* main,True,corosync_corosync,corosync/corosync,https://github.com/corosync/corosync -51b82ac1b8e08053324fc896cea8abe36f70d5b1,Adam Johnson,me@adamj.eu,2023-11-05 22:15:37+00:00,GitHub,noreply@github.com,2023-11-05 22:15:37+00:00,False,adamj,github,* main,True,pytest-dev_pytest-django,pytest-dev/pytest-django,https://github.com/pytest-dev/pytest-django -5b0aa592fc48cb0f3c9c7639860355cb4b5a9df5,Terence Honles,terence@honles.com,2011-05-15 14:35:21-07:00,Terence Honles,terence@honles.com,2011-05-15 21:35:21+00:00,False,honles,honles,* master,True,niltonvolpato_python-progressbar,niltonvolpato/python-progressbar,https://github.com/niltonvolpato/python-progressbar -f2bb4eeece1e7771ca1fccc98b383b9b625032e3,auouymous,5005204+auouymous@users.noreply.github.com,2023-09-09 19:35:23-06:00,GitHub,noreply@github.com,2023-09-10 01:35:23+00:00,True,users,github,* master,True,rss2email_rss2email.git,rss2email/rss2email.git,https://github.com/rss2email/rss2email.git -a80b9796e26c8649af9761a692015978d0122f71,Stefano Karapetsas,stefano@karapetsas.com,2012-02-25 20:08:22+01:00,Stefano Karapetsas,stefano@karapetsas.com,2012-02-25 19:08:22+00:00,False,karapetsas,karapetsas,* master,True,mate-desktop_mate-polkit.git,mate-desktop/mate-polkit.git,https://github.com/mate-desktop/mate-polkit.git -1f3a42b67d94bbcedbc205846cdab47ce36c0148,Jack Rosenthal,jack@rosenth.al,2022-04-20 13:35:51-06:00,Jack Rosenthal,jack@rosenth.al,2022-04-20 19:35:51+00:00,False,rosenth,rosenth,* master,True,jackrosenthal_kajiki,jackrosenthal/kajiki,https://github.com/jackrosenthal/kajiki -e8b7a27ee67a5751b899215b4d35fd86ab552dae,Hiroshi SHIBATA,hsbt@ruby-lang.org,2023-12-25 12:49:41+09:00,GitHub,noreply@github.com,2023-12-25 03:49:41+00:00,True,ruby-lang,github,* master,True,rbenv_rbenv,rbenv/rbenv,https://github.com/rbenv/rbenv -b54d289b57ac375daf07eb104ca2178cbc03c2ed,Neil Bowers,neil@bowers.com,2016-03-09 20:26:09+00:00,Neil Bowers,neil@bowers.com,2016-03-09 20:26:09+00:00,False,bowers,bowers,* master,True,neilb_Memoize-ExpireLRU,neilb/Memoize-ExpireLRU,https://github.com/neilb/Memoize-ExpireLRU -2661fd4cba3457c51d9ae81f9740e3ee093bce53,Jari Aalto,jari.aalto@cante.net,2024-02-01 20:44:12+02:00,Jari Aalto,jari.aalto@cante.net,2024-02-01 18:44:12+00:00,False,cante,cante,* master,True,jaalto_project--perl-ddir.git,jaalto/project--perl-ddir.git,https://github.com/jaalto/project--perl-ddir.git -ee880ee249bc24af90eb18ef6a6a984e84fb0e6b,Jeroen Ooms,jeroenooms@gmail.com,2022-11-01 10:30:03+01:00,Jeroen Ooms,jeroenooms@gmail.com,2022-11-01 09:30:03+00:00,False,gmail,gmail,* master,True,jeroen_curl,jeroen/curl,https://github.com/jeroen/curl -8fa0b347fa3c5e878ed13e42c26436701f1d6082,Mikhail Terekhov,termim@gmail.com,2021-05-19 11:10:56-04:00,Mikhail Terekhov,termim@gmail.com,2021-05-19 15:10:56+00:00,False,gmail,gmail,* master,True,pymssql_pymssql.git,pymssql/pymssql.git,https://github.com/pymssql/pymssql.git -181ed40594562296d74cdb5bd91fb7b964eae25b,Jakub Wilk,jwilk@jwilk.net,2022-10-03 17:07:44+02:00,Jakub Wilk,jwilk@jwilk.net,2022-10-03 15:07:44+00:00,False,jwilk,jwilk,* master,True,jwilk_python-djvulibre,jwilk/python-djvulibre,https://github.com/jwilk/python-djvulibre -938393c9b934fd588115dc7697524c9c72eb6686,Jay Joshi,jay.goku1997@gmail.com,2020-05-10 19:20:27+05:30,GitHub,noreply@github.com,2020-05-10 13:50:27+00:00,False,gmail,github,* master,True,gsnedders_pytest-expect,gsnedders/pytest-expect,https://github.com/gsnedders/pytest-expect -2806843a292b6305c27e3488e254472e936d2768,Silvio Rhatto,rhatto@torproject.org,2023-10-10 20:03:28+00:00,Silvio Rhatto,rhatto@torproject.org,2023-10-10 20:03:28+00:00,True,torproject,torproject,* main,True,asn-d6_onionbalance.git,asn-d6/onionbalance.git,https://github.com/asn-d6/onionbalance.git -affbc4fc331c7d5518e3e69d50793f7f490fafc1,Thom May,thom@may.lt,2018-01-11 14:14:13-08:00,GitHub,noreply@github.com,2018-01-11 22:14:13+00:00,True,may,github,* main,True,berkshelf_solve,berkshelf/solve,https://github.com/berkshelf/solve -3c417a5fda9e136ced0217f275b5cd7dd298eeab,Graham Dumpleton,Graham.Dumpleton@gmail.com,2023-11-19 21:22:31+11:00,Graham Dumpleton,Graham.Dumpleton@gmail.com,2023-11-19 10:22:31+00:00,True,gmail,gmail,* develop,True,GrahamDumpleton_mod_wsgi,GrahamDumpleton/mod/wsgi,https://github.com/GrahamDumpleton/mod_wsgi -0a5d7ee8474c158758d9edc1dd48a0bdf79fd3e6,Ryan Biesemeyer,ryan@yaauie.com,2011-08-03 11:46:08-07:00,Ryan Biesemeyer,ryan@yaauie.com,2011-08-03 18:46:08+00:00,False,yaauie,yaauie,* master,True,yaauie_typed-array,yaauie/typed-array,https://github.com/yaauie/typed-array -47b8f643f2645c90f592a3fdc0706b2d8ed8264a,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-04-26 16:11:43-03:00,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-04-26 19:11:43+00:00,False,eriberto,eriberto,* master,True,resurrecting-open-source-projects_cbm,resurrecting-open-source-projects/cbm,https://github.com/resurrecting-open-source-projects/cbm -ea0ca83ba24dce80c20ca589b838a281fe5deb0c,Assaf Gordon,assafgordon@gmail.com,2017-08-14 12:08:32-06:00,Assaf Gordon,assafgordon@gmail.com,2017-08-14 18:08:32+00:00,False,gmail,gmail,* master,True,agordon_fastx_toolkit.git,agordon/fastx/toolkit.git,https://github.com/agordon/fastx_toolkit.git -a6d40ec713115a8e920c364e82ca371fd29e3a56,Christoph Hermann,schtoeffel@gmail.com,2016-02-24 08:44:14+01:00,Christoph Hermann,schtoeffel@gmail.com,2016-02-24 07:44:14+00:00,True,gmail,gmail,* master,True,epeli_underscore.string,epeli/underscore.string,https://github.com/epeli/underscore.string -f8f41cc31532902d62f38123ec581175413cec4c,Linostar,linostar@users.noreply.github.com,2017-10-31 22:26:09+02:00,GitHub,noreply@github.com,2017-10-31 20:26:09+00:00,True,users,github,* master,True,arabeyes-org_ITL,arabeyes-org/ITL,https://github.com/arabeyes-org/ITL -4942cabff3c8057930aba2b68eb6848774569cee,Brendan Moloney,moloney@ohsu.edu,2022-09-23 22:00:34-07:00,Brendan Moloney,moloney@ohsu.edu,2022-09-24 05:00:34+00:00,False,ohsu,ohsu,* master,True,moloney_dcmstack.git,moloney/dcmstack.git,https://github.com/moloney/dcmstack.git -b24965d39ded388094827e9abdf6842367d064ab,Eugene MechanisM,eugene.mechanism@gmail.com,2020-12-17 09:27:59+03:00,GitHub,noreply@github.com,2020-12-17 06:27:59+00:00,True,gmail,github,* master,True,unbit_django-uwsgi,unbit/django-uwsgi,https://github.com/unbit/django-uwsgi -d55a15ef1de4ffcf1fc833d091b5390adda35cc1,Ralph Meijer,ralphm@ik.nu,2018-12-04 11:27:44+01:00,Ralph Meijer,ralphm@ik.nu,2018-12-04 10:27:44+00:00,True,ik,ik,* master,True,ralphm_wokkel.git,ralphm/wokkel.git,https://github.com/ralphm/wokkel.git -fbad21a522747c025d1fb580826d4a2b384eefab,Jerome Kieffer,jerome.kieffer@esrf.fr,2024-03-07 08:25:14+01:00,Jerome Kieffer,jerome.kieffer@esrf.fr,2024-03-07 07:25:14+00:00,True,esrf,esrf,* main,True,silx-kit_pyFAI,silx-kit/pyFAI,https://github.com/silx-kit/pyFAI -0921c008017080767ada05b1f98555cab3850381,rakhimov,ol.rakhimov@gmail.com,2018-07-25 13:47:48-07:00,rakhimov,ol.rakhimov@gmail.com,2018-07-25 20:47:48+00:00,False,gmail,gmail,* develop,True,rakhimov_scram.git,rakhimov/scram.git,https://github.com/rakhimov/scram.git -3b9fa1484ecb93e333e83450d3fbaefe45c6c19b,Dave Hall,dave@etianen.com,2022-10-29 18:59:45+01:00,GitHub,noreply@github.com,2022-10-29 17:59:45+00:00,True,etianen,github,* master,True,etianen_django-reversion.git,etianen/django-reversion.git,https://github.com/etianen/django-reversion.git -be04b92932d90a28d52bf2977f4c5800a0930a77,Stephen McDowell,svenevs@users.noreply.github.com,2021-09-10 18:03:08-07:00,GitHub,noreply@github.com,2021-09-11 01:03:08+00:00,False,users,github,* master,True,ryan-roemer_sphinx-bootstrap-theme.git,ryan-roemer/sphinx-bootstrap-theme.git,https://github.com/ryan-roemer/sphinx-bootstrap-theme.git +638fc97c9900b6120791c211e2be2b2bb58ca5ca,V. Armando Solé,vasole@users.noreply.github.com,2014-02-08 05:50:09-08:00,V. Armando Solé,vasole@users.noreply.github.com,2014-02-08 13:50:09+00:00,False,users,users,* master,True,vasole_fisx,vasole/fisx,https://github.com/vasole/fisx +a1a6833610500ec4108507573523ed67ec46479a,fuzzyman,fuzzyman@localhost,2010-06-11 08:19:07+00:00,fuzzyman,fuzzyman@localhost,2010-06-11 08:19:07+00:00,False,localhost,localhost,* master,True,testing-cabal_mock,testing-cabal/mock,https://github.com/testing-cabal/mock +6be13d3db378c129290e71521f8e556f3f77f17c,Simon Sapin,simon.sapin@exyr.org,2012-12-27 12:08:25+01:00,Simon Sapin,simon.sapin@exyr.org,2012-12-27 11:12:12+00:00,False,exyr,exyr,* main,True,Kozea_cairocffi.git,Kozea/cairocffi.git,https://github.com/Kozea/cairocffi.git +7bede9c4bbe498ffcb68fe71fa300906005c3364,John Cherry,cherry@osdl.net,2004-06-15 22:18:03+00:00,John Cherry,cherry@osdl.net,2004-06-15 22:18:03+00:00,False,osdl,osdl,* main,True,corosync_corosync,corosync/corosync,https://github.com/corosync/corosync +b9f513f9327c412f148b023885895df953ce9262,Ben Firshman,ben@firshman.co.uk,2009-08-25 15:50:27+01:00,Ben Firshman,ben@firshman.co.uk,2009-08-25 14:50:27+00:00,False,firshman,firshman,* main,True,pytest-dev_pytest-django,pytest-dev/pytest-django,https://github.com/pytest-dev/pytest-django +aa59fe301dad543102cd4301dac34dce47ce3de0,nilton.volpato,nilton.volpato@localhost,2009-02-25 00:07:27+00:00,nilton.volpato,nilton.volpato@localhost,2009-02-25 00:07:27+00:00,False,localhost,localhost,* master,True,niltonvolpato_python-progressbar,niltonvolpato/python-progressbar,https://github.com/niltonvolpato/python-progressbar +bdb1819e6794a072d113c8bbdf08ab2998d584f0,W. Trevor King,wking@tremily.us,2012-10-05 07:13:54-04:00,W. Trevor King,wking@tremily.us,2012-10-05 11:13:59+00:00,False,tremily,tremily,* master,True,rss2email_rss2email.git,rss2email/rss2email.git,https://github.com/rss2email/rss2email.git +1c69f467452c8f34d099019d463980ad57811192,Perberos,perberos@gmail.com,2011-12-01 23:00:56-03:00,Perberos,perberos@gmail.com,2011-12-02 02:00:56+00:00,False,gmail,gmail,* master,True,mate-desktop_mate-polkit.git,mate-desktop/mate-polkit.git,https://github.com/mate-desktop/mate-polkit.git +25f96d4451cc258bedef72a2c69628d54451c951,Rick Copeland,rick446@usa.net,2010-09-27 11:42:05-04:00,Rick Copeland,rick446@usa.net,2010-09-27 15:42:05+00:00,False,usa,usa,* master,True,jackrosenthal_kajiki,jackrosenthal/kajiki,https://github.com/jackrosenthal/kajiki +a804b5eb21d6623b91a13ccf3281276d65ba45d6,Sam Stephenson,sam@37signals.com,2011-08-11 12:51:35-05:00,Sam Stephenson,sam@37signals.com,2011-08-11 17:51:35+00:00,False,37signals,37signals,* master,True,rbenv_rbenv,rbenv/rbenv,https://github.com/rbenv/rbenv +8b503ee4defc4e7f2a243a9309d682d5d294398f,Brent B. Powers,cpan@B2Pi.com,2000-03-14 05:22:43+00:00,Gitpan,schwern+gitpan@pobox.com,2014-10-21 07:41:06+00:00,False,B2Pi,pobox,* master,True,neilb_Memoize-ExpireLRU,neilb/Memoize-ExpireLRU,https://github.com/neilb/Memoize-ExpireLRU +7d43440327e8b36af8f457d1f3ca3d9655378bc5,Jari Aalto,jari.aalto@cante.net,2010-03-15 12:01:49+02:00,Jari Aalto,jari.aalto@cante.net,2010-03-15 10:01:49+00:00,False,cante,cante,* master,True,jaalto_project--perl-ddir.git,jaalto/project--perl-ddir.git,https://github.com/jaalto/project--perl-ddir.git +dd5092e39a78143928e52cadf185d7951ecf97e2,Jeroen,jeroenooms@gmail.com,2014-11-18 23:13:32-08:00,Jeroen,jeroenooms@gmail.com,2014-11-19 07:13:32+00:00,False,gmail,gmail,* master,True,jeroen_curl,jeroen/curl,https://github.com/jeroen/curl +14f5fa7ccfa3f7259180c13ac855dacc08f71acb,damoxc,damoxc@cef11e0c-2622-11df-baa9-c5a8049e1931,2010-03-03 11:32:23+00:00,damoxc,damoxc@cef11e0c-2622-11df-baa9-c5a8049e1931,2010-03-03 11:32:23+00:00,False,cef11e0c-2622-11df-baa9-c5a8049e1931,cef11e0c-2622-11df-baa9-c5a8049e1931,* master,True,pymssql_pymssql.git,pymssql/pymssql.git,https://github.com/pymssql/pymssql.git +adbc48c892cfe17b3ae53a43e4f34f4c2c35e85f,Jakub Wilk,jwilk@jwilk.net,2018-01-21 12:46:19+01:00,Jakub Wilk,jwilk@jwilk.net,2018-01-21 11:46:19+00:00,False,jwilk,jwilk,* master,True,jwilk_python-djvulibre,jwilk/python-djvulibre,https://github.com/jwilk/python-djvulibre +abb1d4d91dcd4314e68cf92e9346adea961cb524,Geoffrey Sneddon,geoffers@gmail.com,2015-07-20 10:56:37+01:00,Geoffrey Sneddon,gs@wja.no,2015-07-20 15:20:16+00:00,False,gmail,wja,* master,True,gsnedders_pytest-expect,gsnedders/pytest-expect,https://github.com/gsnedders/pytest-expect +a8b970c7799a106440facd0ab9f0b19220a16e57,Donncha O'Cearbhaill,donncha@donncha.is,2015-04-02 11:34:19+01:00,Donncha O'Cearbhaill,donncha@donncha.is,2015-04-02 10:34:19+00:00,False,donncha,donncha,* main,True,asn-d6_onionbalance.git,asn-d6/onionbalance.git,https://github.com/asn-d6/onionbalance.git +065d94f956850256a681221845398663c8a3d9ac,Jamie Winsor,jamie@vialstudios.com,2012-06-26 00:02:42-07:00,Jamie Winsor,jamie@vialstudios.com,2012-06-26 07:08:17+00:00,False,vialstudios,vialstudios,* main,True,berkshelf_solve,berkshelf/solve,https://github.com/berkshelf/solve +e285316aca8f732c6f122c8df0934b847b837ca1,Graham.Dumpleton,devnull@localhost,2007-06-23 03:48:29+00:00,Graham.Dumpleton,devnull@localhost,2007-06-23 03:48:29+00:00,False,localhost,localhost,* develop,True,GrahamDumpleton_mod_wsgi,GrahamDumpleton/mod/wsgi,https://github.com/GrahamDumpleton/mod_wsgi +c7c6feb28b2981afee42b2de22d3fd50d9332d69,Ryan Biesemeyer,ryan@yaauie.com,2011-08-03 00:35:21-07:00,Ryan Biesemeyer,ryan@yaauie.com,2011-08-03 07:35:21+00:00,False,yaauie,yaauie,* master,True,yaauie_typed-array,yaauie/typed-array,https://github.com/yaauie/typed-array +ec763f7e12dd1c98c53456385e7e9398168c2541,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2019-02-09 02:01:05-02:00,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2019-02-09 04:01:05+00:00,False,eriberto,eriberto,* master,True,resurrecting-open-source-projects_cbm,resurrecting-open-source-projects/cbm,https://github.com/resurrecting-open-source-projects/cbm +74eb81b6e6e4ecbdec47710ea8365bde3bcadfaa,A. Gordon,gordon@cshl.edu,2009-01-14 20:20:43-05:00,A. Gordon,gordon@cshl.edu,2009-01-15 01:20:43+00:00,False,cshl,cshl,* master,True,agordon_fastx_toolkit.git,agordon/fastx/toolkit.git,https://github.com/agordon/fastx_toolkit.git +9708c02c26b85fecbdaf45d73d4ba3ccbcdb27ff,Esa-Matti Suuronen,esa-matti@suuronen.org,2010-06-12 21:26:41+03:00,Esa-Matti Suuronen,esa-matti@suuronen.org,2010-06-12 18:26:41+00:00,False,suuronen,suuronen,* master,True,epeli_underscore.string,epeli/underscore.string,https://github.com/epeli/underscore.string +37489322d67df510d8de4345e9286816ea5e8465,linostar,linux.anas@gmail.com,2014-05-14 18:09:39+02:00,linostar,linux.anas@gmail.com,2014-05-14 16:09:39+00:00,False,gmail,gmail,* master,True,arabeyes-org_ITL,arabeyes-org/ITL,https://github.com/arabeyes-org/ITL +c46d010f686e522cedbea8ab53df99c33360ca32,Brendan Moloney,moloney.brendan@gmail.com,2012-01-25 12:23:05-08:00,Brendan Moloney,moloney.brendan@gmail.com,2012-01-25 20:23:05+00:00,False,gmail,gmail,* master,True,moloney_dcmstack.git,moloney/dcmstack.git,https://github.com/moloney/dcmstack.git +44688013cb25129dbe8477532841110a93df01bf,unbit,info@unbit.it,2012-12-07 02:38:44-08:00,unbit,info@unbit.it,2012-12-07 10:38:44+00:00,False,unbit,unbit,* master,True,unbit_django-uwsgi,unbit/django-uwsgi,https://github.com/unbit/django-uwsgi +2bb0ed428ed883f07f59ed7c8499ece973cb2e3f,Ralph Meijer,ralphm@ik.nu,2008-04-21 17:10:45+00:00,Ralph Meijer,ralphm@ik.nu,2008-04-21 17:10:45+00:00,False,ik,ik,* master,True,ralphm_wokkel.git,ralphm/wokkel.git,https://github.com/ralphm/wokkel.git +691be6f5872bc87fd16902420e435db8e505353e,Jerome Kieffer,jerome.kieffer@terre-adelie.org,2012-06-07 12:37:21-07:00,Jerome Kieffer,jerome.kieffer@terre-adelie.org,2012-06-07 19:37:21+00:00,False,terre-adelie,terre-adelie,* main,True,silx-kit_pyFAI,silx-kit/pyFAI,https://github.com/silx-kit/pyFAI +f91b733ad8392cf4ecc85015f484aa812629e475,Olzhas Rakhimov,olzhasrakhimov7@gmail.com,2014-03-20 18:19:49-07:00,Olzhas Rakhimov,olzhasrakhimov7@gmail.com,2014-03-21 01:19:49+00:00,False,gmail,gmail,* develop,True,rakhimov_scram.git,rakhimov/scram.git,https://github.com/rakhimov/scram.git +71db345ed3da0b30932d5cbd5d16bad396806641,dave@pod.me.uk,dave@pod.me.uk@ab604574-8a94-11dd-aa62-cdabd1f4ca1e,2009-09-29 10:14:27+00:00,dave@pod.me.uk,dave@pod.me.uk@ab604574-8a94-11dd-aa62-cdabd1f4ca1e,2009-09-29 10:14:27+00:00,False,ab604574-8a94-11dd-aa62-cdabd1f4ca1e,ab604574-8a94-11dd-aa62-cdabd1f4ca1e,* master,True,etianen_django-reversion.git,etianen/django-reversion.git,https://github.com/etianen/django-reversion.git +efc9408bcd84cc6156f824e89014f79221af1b2f,Ryan Roemer,ryan@loose-bits.com,2011-12-07 09:55:00-05:00,Ryan Roemer,ryan@loose-bits.com,2011-12-07 14:55:00+00:00,False,loose-bits,loose-bits,* master,True,ryan-roemer_sphinx-bootstrap-theme.git,ryan-roemer/sphinx-bootstrap-theme.git,https://github.com/ryan-roemer/sphinx-bootstrap-theme.git 3e6e08919616919399a3522a403a03c072c63e46,Walter Reiner,walter.reiner@wreiner.at,2013-10-29 15:00:06+01:00,Walter Reiner,walter.reiner@wreiner.at,2013-10-29 14:00:06+00:00,False,wreiner,wreiner,* master,True,wreiner_automx-debian.git,wreiner/automx-debian.git,https://github.com/wreiner/automx-debian.git -6fa6ff4022f2bd9cfb09692b342e08c3dc8d1179,Volker Krause,vkrause@kde.org,2024-03-14 17:30:19+01:00,Volker Krause,vkrause@kde.org,2024-03-14 16:30:19+00:00,False,kde,kde,* master,True,pim_kitinerary,pim/kitinerary,https://invent.kde.org/pim/kitinerary -b3c5a68f2319f3695ec4bd4ec8f12d644571d7d6,Joachim Metz,joachim.metz@gmail.com,2022-01-17 20:12:13+01:00,Joachim Metz,joachim.metz@gmail.com,2022-01-17 19:12:13+00:00,False,gmail,gmail,* main,True,libyal_libfvde.git,libyal/libfvde.git,https://github.com/libyal/libfvde.git -e4d432b89e0cd419f3fe474eab1f32a8125e1882,Jens Vagelpohl,jens@plyp.com,2022-11-16 12:05:49+01:00,Jens Vagelpohl,jens@plyp.com,2022-11-16 11:05:49+00:00,False,plyp,plyp,* master,True,zopefoundation_BTrees.git,zopefoundation/BTrees.git,https://github.com/zopefoundation/BTrees.git -0285621ee29dcbf29a45411de5394b6e9312dff4,Michael J. Schultz,mjschultz@gmail.com,2017-10-09 09:43:18-05:00,Michael J. Schultz,mjschultz@gmail.com,2017-10-09 14:43:43+00:00,False,gmail,gmail,* main,True,mjschultz_py-radix,mjschultz/py-radix,https://github.com/mjschultz/py-radix -57cb62523a5e5d9137aa26500d15893714fbb2fb,Peter Odding,peter@peterodding.com,2021-09-17 23:02:33+02:00,Peter Odding,peter@peterodding.com,2021-09-17 21:02:33+00:00,False,peterodding,peterodding,* master,True,xolox_python-humanfriendly,xolox/python-humanfriendly,https://github.com/xolox/python-humanfriendly -be5cae7410fbc7b2db5a7572dc6f1f0d7a70b49c,Olaf Alders,olaf@wundersolutions.com,2023-01-24 14:21:25-05:00,GitHub,noreply@github.com,2023-01-24 19:21:25+00:00,True,wundersolutions,github,* master,True,dnmfarrell_Data-FormValidator.git,dnmfarrell/Data-FormValidator.git,https://github.com/dnmfarrell/Data-FormValidator.git -89fc699b289f3bdc7cce3bebd8ee0aa8d87b8785,Valentin Samir,valentin.samir@crans.org,2023-08-27 11:03:15+02:00,Valentin Samir,valentin.samir@crans.org,2023-08-27 09:03:15+00:00,False,crans,crans,* master,True,nitmir_policyd-rate-limit.git,nitmir/policyd-rate-limit.git,https://github.com/nitmir/policyd-rate-limit.git -f26b8d25e858ed22fc563e29a93d4fc43bab615f,Gaston Ramos,ramos.gaston@gmail.com,2011-06-21 23:42:38-03:00,Gaston Ramos,ramos.gaston@gmail.com,2011-06-22 02:42:38+00:00,False,gmail,gmail,* master,True,gramos_imagetooth,gramos/imagetooth,https://github.com/gramos/imagetooth -7933d2fa33744ff7fd8d727f97777a502232ec1d,Steve Harris,swh@me.com,2014-05-15 10:48:01+01:00,Steve Harris,swh@me.com,2014-05-15 09:48:01+00:00,True,me,me,* master,True,swh_ladspa.git,swh/ladspa.git,https://github.com/swh/ladspa.git -0ab4601e806581340d11a0fb8d7c2bf96e3b37d1,Marcos Mello,marcosfrm@users.noreply.github.com,2018-01-01 12:53:19-02:00,Francois Dupoux,fdupoux@users.noreply.github.com,2018-01-01 14:53:19+00:00,False,users,users,* master,True,fdupoux_fsarchiver,fdupoux/fsarchiver,https://github.com/fdupoux/fsarchiver -e37271ec4c388dbaeb9ea6d89fce7448d0193eda,Louis Sautier,sautier.louis@gmail.com,2023-10-29 13:42:05+01:00,Louis Sautier,sautier.louis@gmail.com,2023-10-29 14:04:11+00:00,False,gmail,gmail,* master,True,sbraz_pymediainfo,sbraz/pymediainfo,https://github.com/sbraz/pymediainfo -4183999d9b7e81af85dee070d5311299bdf5164c,Markus Unterwaditzer,markus-honeypot@unterwaditzer.net,2022-07-08 23:39:56+02:00,Markus Unterwaditzer,markus-honeypot@unterwaditzer.net,2022-07-08 21:39:56+00:00,False,unterwaditzer,unterwaditzer,* master,True,untitaker_python-atomicwrites,untitaker/python-atomicwrites,https://github.com/untitaker/python-atomicwrites -e2f1efc5b94be5295ad2810c28e31cc956346022,Axel Beckert,abe@deuxchevaux.org,2021-02-03 02:48:28+01:00,Axel Beckert,abe@deuxchevaux.org,2021-02-03 02:46:17+00:00,False,deuxchevaux,deuxchevaux,* master,True,dpmb_dpmb,dpmb/dpmb,https://github.com/dpmb/dpmb -6fbaf9c04f0baefbf8c4d0d849c3a4338b7ecb21,John Paul Adrian Glaubitz,glaubitz@physik.fu-berlin.de,2017-09-18 18:31:08+02:00,John Paul Adrian Glaubitz,glaubitz@physik.fu-berlin.de,2017-09-18 16:31:08+00:00,True,physik,physik,* master,True,glaubitz_virtualjaguar-debian,glaubitz/virtualjaguar-debian,https://github.com/glaubitz/virtualjaguar-debian -1e57eed52fad929f36ae5e3a9e3aa45ad019ee93,Chunyang Xu,mail@xuchunyang.me,2017-03-11 14:17:45+08:00,Chunyang Xu,mail@xuchunyang.me,2017-03-11 06:17:58+00:00,False,xuchunyang,xuchunyang,* master,True,xuchunyang_eshell-git-prompt.git,xuchunyang/eshell-git-prompt.git,https://github.com/xuchunyang/eshell-git-prompt.git -f4286f583d6f91e896b73e450154af0fea3935a4,João Antunes,64033582+j-antunes@users.noreply.github.com,2024-03-01 09:05:51-07:00,GitHub,noreply@github.com,2024-03-01 16:05:51+00:00,True,users,github,* master,True,django-polymorphic_django-polymorphic,django-polymorphic/django-polymorphic,https://github.com/django-polymorphic/django-polymorphic -23386161b4240200911e1fbb1f743c75a3f703ba,Aristotle Pagaltzis,pagaltzis@gmx.de,2022-07-15 21:48:35+02:00,Aristotle Pagaltzis,pagaltzis@gmx.de,2022-08-31 21:37:30+00:00,False,gmx,gmx,* master,True,ap_HTML-Tiny.git,ap/HTML-Tiny.git,https://github.com/ap/HTML-Tiny.git -a2d601630bf405d29747a95a4b5038c706a46bf5,ryneeverett,ryneeverett@gmail.com,2023-12-31 14:21:16-05:00,ryneeverett,ryneeverett@gmail.com,2023-12-31 20:05:22+00:00,False,gmail,gmail,* develop,True,ralphbean_bugwarrior,ralphbean/bugwarrior,https://github.com/ralphbean/bugwarrior -0fc451b454fdedb29fcd5a421061a59399e69f94,Michael Williamson,mike@zwobble.org,2021-01-19 21:23:02+00:00,Michael Williamson,mike@zwobble.org,2021-01-19 21:23:02+00:00,False,zwobble,zwobble,* master,True,mwilliamson_spur.py.git,mwilliamson/spur.py.git,https://github.com/mwilliamson/spur.py.git -4bd08a272f059998cedf9b7779f944d49eba13a6,Brian Beyer,brian@redcanary.com,2020-02-22 13:43:21-07:00,Brian Beyer,brian@redcanary.com,2020-02-22 20:43:21+00:00,False,redcanary,redcanary,* master,True,kyrus_python-junit-xml.git,kyrus/python-junit-xml.git,https://github.com/kyrus/python-junit-xml.git -1b4286e3e1fe3300ed935f1745f2468c7aa5252b,Folkert van Heusden,folkert@vanheusden.com,2022-08-04 22:07:24+02:00,Folkert van Heusden,folkert@vanheusden.com,2022-08-04 20:07:24+00:00,False,vanheusden,vanheusden,* master,True,folkertvanheusden_nasty,folkertvanheusden/nasty,https://github.com/folkertvanheusden/nasty -7c2099a17249ea34d6bcd5bd3869b7682981f64c,Nicolas Mora,github@babelouest.org,2023-12-21 08:01:17-05:00,Nicolas Mora,github@babelouest.org,2023-12-21 13:01:17+00:00,False,babelouest,babelouest,* master,True,babelouest_hoel,babelouest/hoel,https://github.com/babelouest/hoel +a2ecf044340f956e37c08f3b0b263a4a16cf0542,Volker Krause,vkrause@kde.org,2017-12-09 21:29:55+01:00,Volker Krause,vkrause@kde.org,2017-12-10 12:25:25+00:00,False,kde,kde,* master,True,pim_kitinerary,pim/kitinerary,https://invent.kde.org/pim/kitinerary +bdca019278b7d5da90dd392567966575a2dcc876,Joachim Metz,joachim.metz@gmail.com,2014-10-18 12:49:11+02:00,Joachim Metz,joachim.metz@gmail.com,2014-10-18 10:49:11+00:00,False,gmail,gmail,* main,True,libyal_libfvde.git,libyal/libfvde.git,https://github.com/libyal/libfvde.git +e7881acfcff795d24835046267ed6bcc2a20a401,Tres Seaver,tseaver@palladion.com,2012-10-17 23:41:25+00:00,Tres Seaver,tseaver@palladion.com,2012-10-17 23:41:25+00:00,False,palladion,palladion,* master,True,zopefoundation_BTrees.git,zopefoundation/BTrees.git,https://github.com/zopefoundation/BTrees.git +f7e3add5c41a3f92d284c83656c54bd6e347995e,Michael J. Schultz,mjschultz@gmail.com,2014-01-03 20:56:26-06:00,Michael J. Schultz,mjschultz@gmail.com,2014-01-04 02:56:26+00:00,False,gmail,gmail,* main,True,mjschultz_py-radix,mjschultz/py-radix,https://github.com/mjschultz/py-radix +b587863a25032baa9b799c92c86904abb4fee133,Peter Odding,peter@peterodding.com,2013-06-17 00:46:04+02:00,Peter Odding,peter@peterodding.com,2013-06-16 22:46:04+00:00,False,peterodding,peterodding,* master,True,xolox_python-humanfriendly,xolox/python-humanfriendly,https://github.com/xolox/python-humanfriendly +8e8e018ca380428e9039669b3305330ab7771794,Mark Stosberg,mark@summersault.com,2004-03-23 02:23:45+00:00,Mark Stosberg,mark@summersault.com,2004-03-23 02:23:45+00:00,False,summersault,summersault,* master,True,dnmfarrell_Data-FormValidator.git,dnmfarrell/Data-FormValidator.git,https://github.com/dnmfarrell/Data-FormValidator.git +3e98266783163b8c386f20f840c44df420c61ef4,Valentin Samir,valentin.samir@crans.org,2015-12-20 18:37:48+01:00,Valentin Samir,valentin.samir@crans.org,2015-12-20 17:41:58+00:00,False,crans,crans,* master,True,nitmir_policyd-rate-limit.git,nitmir/policyd-rate-limit.git,https://github.com/nitmir/policyd-rate-limit.git +f7796ae5c998d3a18cb2f465556238847de31118,Gaston Ramos,ramos.gaston@gmail.com,2011-06-21 18:25:54-03:00,Gaston Ramos,ramos.gaston@gmail.com,2011-06-21 21:25:54+00:00,False,gmail,gmail,* master,True,gramos_imagetooth,gramos/imagetooth,https://github.com/gramos/imagetooth +7bf6f3799fdba70fda297c2d8fd9f526803d9680,swh,swh@49e5d26e-732a-0410-861f-917a80792faf,2007-02-27 11:45:14+00:00,swh,swh@49e5d26e-732a-0410-861f-917a80792faf,2007-02-27 11:45:14+00:00,False,49e5d26e-732a-0410-861f-917a80792faf,49e5d26e-732a-0410-861f-917a80792faf,* master,True,swh_ladspa.git,swh/ladspa.git,https://github.com/swh/ladspa.git +305dab41b5afb7c92257d523e42c5c05d3bb75db,fdupoux,fdupoux@0ed6bd54-fdb3-4705-a7a1-c7cff8c2153e,2009-11-29 11:00:51+00:00,fdupoux,fdupoux@0ed6bd54-fdb3-4705-a7a1-c7cff8c2153e,2009-11-29 11:00:51+00:00,False,0ed6bd54-fdb3-4705-a7a1-c7cff8c2153e,0ed6bd54-fdb3-4705-a7a1-c7cff8c2153e,* master,True,fdupoux_fsarchiver,fdupoux/fsarchiver,https://github.com/fdupoux/fsarchiver +8a5a35bbf50962edc1d57473697d244ef46aa76e,Patrick,paltman@gmail.com,2010-03-23 13:15:02-05:00,Patrick,paltman@gmail.com,2010-03-23 18:15:02+00:00,False,gmail,gmail,* master,True,sbraz_pymediainfo,sbraz/pymediainfo,https://github.com/sbraz/pymediainfo +618ee9e4c41bdd1ee20f51d7dab281730748d8a1,Markus Unterwaditzer,markus@unterwaditzer.net,2015-01-28 17:33:41+01:00,Markus Unterwaditzer,markus@unterwaditzer.net,2015-01-28 19:52:40+00:00,False,unterwaditzer,unterwaditzer,* master,True,untitaker_python-atomicwrites,untitaker/python-atomicwrites,https://github.com/untitaker/python-atomicwrites +94292ea1da848a0f6b653d30190cf961359cf565,Debian-Paketmanagement Buch,buch@debian-paketmanagement.de,2015-08-10 20:00:14+02:00,Axel Beckert,abe@deuxchevaux.org,2015-08-10 18:00:14+00:00,False,debian-paketmanagement,deuxchevaux,* master,True,dpmb_dpmb,dpmb/dpmb,https://github.com/dpmb/dpmb +e1831964e05c84cce2a1b9cc7fc381d7e149f7cf,John Paul Adrian Glaubitz,glaubitz@physik.fu-berlin.de,2014-06-01 00:12:29+02:00,John Paul Adrian Glaubitz,glaubitz@physik.fu-berlin.de,2014-05-31 22:12:29+00:00,False,physik,physik,* master,True,glaubitz_virtualjaguar-debian,glaubitz/virtualjaguar-debian,https://github.com/glaubitz/virtualjaguar-debian +84e8d57069f9bd6abd343a630288cdca79b67831,Chunyang Xu,xuchunyang56@gmail.com,2015-09-13 18:18:05+08:00,Chunyang Xu,xuchunyang56@gmail.com,2015-09-13 10:27:11+00:00,False,gmail,gmail,* master,True,xuchunyang_eshell-git-prompt.git,xuchunyang/eshell-git-prompt.git,https://github.com/xuchunyang/eshell-git-prompt.git +576a16f2ab1aca730d5f338f1fec7e9861e6f009,Bert Constantin,bert.constantin@gmx.de,2010-01-15 21:13:36+01:00,Bert Constantin,bert.constantin@gmx.de,2010-01-15 20:13:36+00:00,False,gmx,gmx,* master,True,django-polymorphic_django-polymorphic,django-polymorphic/django-polymorphic,https://github.com/django-polymorphic/django-polymorphic +8b107f63c519bd474c113c9b6c3363ccd3563fcd,Andy Armstrong,andy@hexten.net,2007-05-30 14:37:46+00:00,Andy Armstrong,andy@hexten.net,2007-05-30 14:37:46+00:00,False,hexten,hexten,* master,True,ap_HTML-Tiny.git,ap/HTML-Tiny.git,https://github.com/ap/HTML-Tiny.git +0da4db21106619d9cd47644dfdc269500bae375c,Ralph Bean,ralph.bean@gmail.com,2011-12-15 00:01:17-05:00,Ralph Bean,ralph.bean@gmail.com,2011-12-15 05:01:17+00:00,False,gmail,gmail,* develop,True,ralphbean_bugwarrior,ralphbean/bugwarrior,https://github.com/ralphbean/bugwarrior +f0ef749dd3b9e3476804a3961a9540801dba319e,Michael Williamson,mike@zwobble.org,2012-11-26 20:56:23+00:00,Michael Williamson,mike@zwobble.org,2012-11-26 20:56:23+00:00,False,zwobble,zwobble,* master,True,mwilliamson_spur.py.git,mwilliamson/spur.py.git,https://github.com/mwilliamson/spur.py.git +71b53d96f68faeed2329060ed15c32461dc196cd,Brian Beyer,brianebeyer@gmail.com,2013-01-14 13:00:29-07:00,Brian Beyer,brianebeyer@gmail.com,2013-01-14 20:00:29+00:00,False,gmail,gmail,* master,True,kyrus_python-junit-xml.git,kyrus/python-junit-xml.git,https://github.com/kyrus/python-junit-xml.git +00e58ebf537521c5470d19c9db475af44819ec8b,Folkert van Heusden,folkert@vanheusden.com,2022-08-04 20:53:20+02:00,Folkert van Heusden,folkert@vanheusden.com,2022-08-04 18:53:20+00:00,False,vanheusden,vanheusden,* master,True,folkertvanheusden_nasty,folkertvanheusden/nasty,https://github.com/folkertvanheusden/nasty +96e238825e40e6b0d380fee1807f353cadd05e6c,Nicolas Mora,mail@babelouest.org,2015-12-13 12:45:56-05:00,Nicolas Mora,mail@babelouest.org,2015-12-13 17:45:56+00:00,False,babelouest,babelouest,* master,True,babelouest_hoel,babelouest/hoel,https://github.com/babelouest/hoel diff --git a/12825_revision/spec_file/updated_get_spec_file.py b/12825_revision/spec_file/updated_get_spec_file.py index 50fee7e..1970d10 100644 --- a/12825_revision/spec_file/updated_get_spec_file.py +++ b/12825_revision/spec_file/updated_get_spec_file.py @@ -82,6 +82,7 @@ def get_file(vcs_link, commit_hash, is_readme): os.chdir(temp_repo_path) reset_command = f"git reset --hard {commit_hash}" + #print(reset_command) os.system(reset_command) doc_name = "CONTRIBUTING" @@ -89,7 +90,7 @@ def get_file(vcs_link, commit_hash, is_readme): doc_name = "README" und_repo_id = '_'.join(repo_id.split("/")) - + doc_found = False for root, dirs, files in os.walk(temp_repo_path): for file in files: if file.startswith(doc_name): @@ -108,10 +109,10 @@ def get_file(vcs_link, commit_hash, is_readme): und_repo_id = "" delete_clone(temp_dir) os.chdir(cwd) - return True, dest_path def for_all_files(csv_path, is_readme): + parsing_error = [] doc = "CONTRIBUTING" if is_readme: doc = "README" @@ -125,7 +126,7 @@ def for_all_files(csv_path, is_readme): index += 1 if index < 1: continue - time.sleep(4) + time.sleep(5) manifest_df = pd.DataFrame({ 'commit_hash': [row[0]], 'upstream_vcs_link': [row[14]], @@ -136,16 +137,20 @@ def for_all_files(csv_path, is_readme): _check, new_filepath = get_file(manifest_df['upstream_vcs_link'][0], manifest_df['commit_hash'][0], is_readme) manifest_df['new_filepath'] = new_filepath - if _check == False: - break - - new_manifest_list.append(manifest_df) + if _check == True: + new_manifest_list.append(manifest_df) + else: + parsing_error.append([manifest_df['upstream_vcs_link'][0], manifest_df['commit_hash'][0]]) except KeyboardInterrupt: print("KeyBoardInterrrupt") finally: + with open(f"s_{doc}-parsing-output.txt", "w") as txt_file: + for error in parsing_error: + txt_file.write(', '.join(error) + "\n") manifest_df = pd.concat(new_manifest_list, ignore_index=True) manifest_df.to_csv(f"013025_{doc}_manifest.csv", index=False) + if __name__ == "__main__": for_all_files("../misc_data_files/README_for_download.csv", True) #get_file("https://github.com/breakfastquay/rubberband", "a94f3f33577bf9d71166392febbfdf3cace6f1c8", True)