From e90fa6b36337ab16cfcae270f075f4ea3af59beb Mon Sep 17 00:00:00 2001 From: Matthew Gaughan Date: Fri, 31 Jan 2025 16:50:18 -0600 Subject: [PATCH] fix more file validation --- 12825_revision/list_existing_data.py | 37 +- .../all_013025_contributing_manifest.csv | 478 +++ .../all_013025_readme_manifest.csv | 2933 +++++++++++++++++ .../fvf_013025_CONTRIBUTING_manifest.csv | 198 ++ .../fvf_013025_README_manifest.csv | 1319 ++++++++ .../s_CONTRIBUTING-parsing-output.txt | 4 + .../s_README-parsing-output.txt | 4 + 12825_revision/misc_data_files/validation.py | 104 + .../spec_file/updated_get_spec_file.py | 2 +- 9 files changed, 5073 insertions(+), 6 deletions(-) create mode 100644 12825_revision/misc_data_files/all_013025_contributing_manifest.csv create mode 100644 12825_revision/misc_data_files/all_013025_readme_manifest.csv create mode 100644 12825_revision/misc_data_files/fvf_013025_CONTRIBUTING_manifest.csv create mode 100644 12825_revision/misc_data_files/fvf_013025_README_manifest.csv create mode 100644 12825_revision/misc_data_files/s_CONTRIBUTING-parsing-output.txt create mode 100644 12825_revision/misc_data_files/s_README-parsing-output.txt create mode 100644 12825_revision/misc_data_files/validation.py diff --git a/12825_revision/list_existing_data.py b/12825_revision/list_existing_data.py index 5a7153d..6d7c08d 100644 --- a/12825_revision/list_existing_data.py +++ b/12825_revision/list_existing_data.py @@ -147,6 +147,7 @@ def get_doc_publication(dirpath, file, doc_name): return first_instance def get_doc_pub_for_all(is_readme): + full_data = pd.read_csv('for_batching/deb_full_data.csv') if is_readme: dirpath = "/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/readme/" doc_name = "README" @@ -155,7 +156,9 @@ def get_doc_pub_for_all(is_readme): doc_name = "CONTRIBUTING" csv_files = [f for f in os.listdir(dirpath) if f.endswith('_commits.csv')] first_instances = [] + index = 0 for file in csv_files: + index += 1 first_instance = get_doc_publication(dirpath, file, doc_name) if file.startswith('_'): repo_id = file[1:-12] @@ -163,10 +166,33 @@ def get_doc_pub_for_all(is_readme): repo_id = file[:-12] first_instance['repo_id'] = repo_id # find the upstream vcs from the full_data list - if not first_instance.empty: + id_array = repo_id.split("_") + project_handle = ("/").join(id_array) + first_instance['project_handle'] = project_handle + full_data['upstream_vcs_link'] = full_data['upstream_vcs_link'].str.strip() + + #matching with vcs + mask = pd.Series([True] * len(full_data)) + for id_part in id_array: + mask &= full_data['upstream_vcs_link'].str.contains(id_part, case=False, na=False) + result = full_data[mask] + + #print(repo_id) + first_match = result['upstream_vcs_link'].values[0] + #print(first_match) + first_instance['upstream_vcs_link'] = first_match + #print(first_instance['upstream_vcs_link']) + first_instance.drop(['message', 'diff_info'], axis=1, inplace=True) + # https://invent.kde.org/plasma/powerdevil.git + if (not first_instance.empty and first_instance['upstream_vcs_link'] is not None): first_instances.append(first_instance) + else: + print(f"at index: {index}") + print(f"no first commit found for {repo_id}") + break #save the - #first_instances_df = pd.concat(first_instances, ignore_index=True) + first_instances_df = pd.concat(first_instances, ignore_index=True) + first_instances_df.to_csv(f'13125_test_{doc_name}_publication_commits.csv', index = False) def list_for_doc_collection(unmatched_files, is_readme): if is_readme: @@ -218,9 +244,10 @@ def list_for_doc_collection(unmatched_files, is_readme): 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(matched_repo_ids)) + #get_doc_pub_for_all(is_readme) + #unmatched_files, matched_repo_ids = check_collected_files("/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/contributing") + #print(len(matched_repo_ids)) #cp_existing_docs(matched_repo_ids, is_readme) - list_for_doc_collection(unmatched_files, 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/all_013025_contributing_manifest.csv b/12825_revision/misc_data_files/all_013025_contributing_manifest.csv new file mode 100644 index 0000000..c5a6bfb --- /dev/null +++ b/12825_revision/misc_data_files/all_013025_contributing_manifest.csv @@ -0,0 +1,478 @@ +repo_id,commits_filepath,fvf_filepath +aio-libs_aiomysql.git,_aio-libs_aiomysql.git_commits.csv,aio-libs_aiomysql.git_hullabaloo_CONTRIBUTING.rst +aio-libs_aiohttp.git,_aio-libs_aiohttp.git_commits.csv,aio-libs_aiohttp.git_hullabaloo_CONTRIBUTING.rst +jupyter_jupyter_console,_jupyter_jupyter_console_commits.csv,jupyter_jupyter_console_hullabaloo_CONTRIBUTING.md +ixion_ixion.git,ixion_ixion.git_commits.csv,ixion_ixion.git_hullabaloo_CONTRIBUTING.md +box_genty.git,_box_genty.git_commits.csv,box_genty.git_hullabaloo_CONTRIBUTING.rst +hackebrot_jinja2-time,_hackebrot_jinja2-time_commits.csv,hackebrot_jinja2-time_hullabaloo_CONTRIBUTING.rst +resurrecting-open-source-projects_nbtscan,_resurrecting-open-source-projects_nbtscan_commits.csv,resurrecting-open-source-projects_nbtscan_hullabaloo_CONTRIBUTING.md +DonyorM_weresync.git,_DonyorM_weresync.git_commits.csv,DonyorM_weresync.git_hullabaloo_CONTRIBUTING.rst +datalad_datalad,datalad_datalad_commits.csv,datalad_datalad_hullabaloo_CONTRIBUTING.md +korfuri_django-prometheus,_korfuri_django-prometheus_commits.csv,korfuri_django-prometheus_hullabaloo_CONTRIBUTING.md +iovisor_bpftrace,_iovisor_bpftrace_commits.csv,iovisor_bpftrace_hullabaloo_CONTRIBUTING-TOOLS.md +stachenov_quazip.git,_stachenov_quazip.git_commits.csv,stachenov_quazip.git_hullabaloo_CONTRIBUTING.md +netty_netty,_netty_netty_commits.csv,netty_netty_hullabaloo_CONTRIBUTING.md +twbs_bootstrap-sass,_twbs_bootstrap-sass_commits.csv,twbs_bootstrap-sass_hullabaloo_CONTRIBUTING.md +libosinfo_libosinfo.git,libosinfo_libosinfo.git_commits.csv,libosinfo_libosinfo.git_hullabaloo_CONTRIBUTING.md +zopefoundation_roman,_zopefoundation_roman_commits.csv,zopefoundation_roman_hullabaloo_CONTRIBUTING.md +googlei18n_fontmake.git,_googlei18n_fontmake.git_commits.csv,googlei18n_fontmake.git_hullabaloo_CONTRIBUTING.md +Graylog2_gelf-rb,_Graylog2_gelf-rb_commits.csv,Graylog2_gelf-rb_hullabaloo_CONTRIBUTING.md +mqttjs_mqtt-packet,_mqttjs_mqtt-packet_commits.csv,mqttjs_mqtt-packet_hullabaloo_CONTRIBUTING.md +tqdm_tqdm.git,_tqdm_tqdm.git_commits.csv,tqdm_tqdm.git_hullabaloo_CONTRIBUTING.md +ranger_ranger.git,_ranger_ranger.git_commits.csv,ranger_ranger.git_hullabaloo_CONTRIBUTING.md +intridea_oauth2,_intridea_oauth2_commits.csv,intridea_oauth2_hullabaloo_CONTRIBUTING.md +timothycrosley_hug.git,_timothycrosley_hug.git_commits.csv,timothycrosley_hug.git_hullabaloo_CONTRIBUTING.md +eavgerinos_pkg-pick,eavgerinos_pkg-pick_commits.csv,eavgerinos_pkg-pick_hullabaloo_CONTRIBUTING.md +bk138_gromit-mpx.git,_bk138_gromit-mpx.git_commits.csv,bk138_gromit-mpx.git_hullabaloo_CONTRIBUTING.md +watson-developer-cloud_python-sdk.git,_watson-developer-cloud_python-sdk.git_commits.csv,watson-developer-cloud_python-sdk.git_hullabaloo_CONTRIBUTING.md +vcr_vcr,_vcr_vcr_commits.csv,_vcr_vcr_CONTRIBUTING.md +scikit-learn-contrib_imbalanced-learn.git,_scikit-learn-contrib_imbalanced-learn.git_commits.csv,scikit-learn-contrib_imbalanced-learn.git_hullabaloo_CONTRIBUTING.rst +ninja-build_ninja.git,_ninja-build_ninja.git_commits.csv,ninja-build_ninja.git_hullabaloo_CONTRIBUTING.md +olive-editor_olive,_olive-editor_olive_commits.csv,olive-editor_olive_hullabaloo_CONTRIBUTING.md +lostisland_faraday_middleware,_lostisland_faraday_middleware_commits.csv,lostisland_faraday_middleware_hullabaloo_CONTRIBUTING.md +moose_MooseX-Runnable,_moose_MooseX-Runnable_commits.csv,moose_MooseX-Runnable_hullabaloo_CONTRIBUTING +tpope_vim-pathogen.git,_tpope_vim-pathogen.git_commits.csv,tpope_vim-pathogen.git_hullabaloo_CONTRIBUTING.markdown +ocaml_dune.git,_ocaml_dune.git_commits.csv,ocaml_dune.git_hullabaloo_CONTRIBUTING.md +pyqtgraph_pyqtgraph.git,_pyqtgraph_pyqtgraph.git_commits.csv,pyqtgraph_pyqtgraph.git_hullabaloo_CONTRIBUTING.txt +processone_eimp.git,_processone_eimp.git_commits.csv,processone_eimp.git_hullabaloo_CONTRIBUTING.md +processone_stun.git,_processone_stun.git_commits.csv,processone_stun.git_hullabaloo_CONTRIBUTING.md +jazzband_django-push-notifications,_jazzband_django-push-notifications_commits.csv,jazzband_django-push-notifications_hullabaloo_CONTRIBUTING.md +box_flaky.git,_box_flaky.git_commits.csv,box_flaky.git_hullabaloo_CONTRIBUTING.rst +amueller_word_cloud,_amueller_word_cloud_commits.csv,amueller_word_cloud_hullabaloo_CONTRIBUTING.md +bitletorg_weupnp.git,_bitletorg_weupnp.git_commits.csv,bitletorg_weupnp.git_hullabaloo_CONTRIBUTING.md +heynemann_pyvows.git,_heynemann_pyvows.git_commits.csv,heynemann_pyvows.git_hullabaloo_CONTRIBUTING.md +puppetlabs_marionette-collective,_puppetlabs_marionette-collective_commits.csv,puppetlabs_marionette-collective_hullabaloo_CONTRIBUTING.md +puppetlabs_puppetlabs-xinetd,_puppetlabs_puppetlabs-xinetd_commits.csv,puppetlabs_puppetlabs-xinetd_hullabaloo_CONTRIBUTING.md +docker_compose,_docker_compose_commits.csv,docker_compose_hullabaloo_CONTRIBUTING.md +plasma_kscreen.git,plasma_kscreen.git_commits.csv,plasma_kscreen.git_hullabaloo_CONTRIBUTING.md +nvbn_thefuck.git,_nvbn_thefuck.git_commits.csv,nvbn_thefuck.git_hullabaloo_CONTRIBUTING.md +eslint_eslint-scope.git,_eslint_eslint-scope.git_commits.csv,eslint_eslint-scope.git_hullabaloo_CONTRIBUTING.md +jupyter_notebook.git,_jupyter_notebook.git_commits.csv,jupyter_notebook.git_hullabaloo_CONTRIBUTING.md +mfontanini_libtins.git,_mfontanini_libtins.git_commits.csv,mfontanini_libtins.git_hullabaloo_CONTRIBUTING.md +pimutils_vdirsyncer,_pimutils_vdirsyncer_commits.csv,pimutils_vdirsyncer_hullabaloo_CONTRIBUTING.rst +openalpr_openalpr,openalpr_openalpr_commits.csv,openalpr_openalpr_hullabaloo_CONTRIBUTING.md +nikic_PHP-Parser,_nikic_PHP-Parser_commits.csv,nikic_PHP-Parser_hullabaloo_CONTRIBUTING.md +tmuxinator_tmuxinator,_tmuxinator_tmuxinator_commits.csv,tmuxinator_tmuxinator_hullabaloo_CONTRIBUTING.md +dahlia_libsass-python.git,_dahlia_libsass-python.git_commits.csv,dahlia_libsass-python.git_hullabaloo_CONTRIBUTING.rst +mkdocs_mkdocs,_mkdocs_mkdocs_commits.csv,mkdocs_mkdocs_hullabaloo_CONTRIBUTING.md +boto_boto3,_boto_boto3_commits.csv,boto_boto3_hullabaloo_CONTRIBUTING.rst +jquast_blessed,_jquast_blessed_commits.csv,jquast_blessed_hullabaloo_CONTRIBUTING.rst +Storyyeller_enjarify,_Storyyeller_enjarify_commits.csv,Storyyeller_enjarify_hullabaloo_CONTRIBUTING.txt +ignitionrobotics_ign-cmake.git,_ignitionrobotics_ign-cmake.git_commits.csv,ignitionrobotics_ign-cmake.git_hullabaloo_CONTRIBUTING.md +boto_s3transfer,_boto_s3transfer_commits.csv,boto_s3transfer_hullabaloo_CONTRIBUTING.rst +derek73_python-nameparser,_derek73_python-nameparser_commits.csv,derek73_python-nameparser_hullabaloo_CONTRIBUTING.md +kaminari_kaminari,_kaminari_kaminari_commits.csv,kaminari_kaminari_hullabaloo_CONTRIBUTING.md +coddingtonbear_python-measurement,_coddingtonbear_python-measurement_commits.csv,coddingtonbear_python-measurement_hullabaloo_CONTRIBUTING.md +editorconfig_editorconfig-core-c.git,_editorconfig_editorconfig-core-c.git_commits.csv,editorconfig_editorconfig-core-c.git_hullabaloo_CONTRIBUTING +libosinfo_osinfo-db.git,libosinfo_osinfo-db.git_commits.csv,libosinfo_osinfo-db.git_hullabaloo_CONTRIBUTING.md +joke2k_faker,_joke2k_faker_commits.csv,joke2k_faker_hullabaloo_CONTRIBUTING.rst +zopefoundation_zope.testing,_zopefoundation_zope.testing_commits.csv,zopefoundation_zope.testing_hullabaloo_CONTRIBUTING.md +npm_nopt,_npm_nopt_commits.csv,npm_nopt_hullabaloo_CONTRIBUTING.md +google_gemmlowp,_google_gemmlowp_commits.csv,google_gemmlowp_hullabaloo_CONTRIBUTING.txt +iustin_pylibacl,_iustin_pylibacl_commits.csv,iustin_pylibacl_hullabaloo_CONTRIBUTING.md +PyFilesystem_pyfilesystem2,_PyFilesystem_pyfilesystem2_commits.csv,PyFilesystem_pyfilesystem2_hullabaloo_CONTRIBUTING.md +pallets_werkzeug,_pallets_werkzeug_commits.csv,pallets_werkzeug_hullabaloo_CONTRIBUTING.rst +include-what-you-use_include-what-you-use,_include-what-you-use_include-what-you-use_commits.csv,include-what-you-use_include-what-you-use_hullabaloo_CONTRIBUTING.md +GNOME_gjs.git,GNOME_gjs.git_commits.csv,GNOME_gjs.git_hullabaloo_CONTRIBUTING.md +zeromq_pyzmq.git,_zeromq_pyzmq.git_commits.csv,zeromq_pyzmq.git_hullabaloo_CONTRIBUTING.md +hamcrest_hamcrest-php.git,_hamcrest_hamcrest-php.git_commits.csv,hamcrest_hamcrest-php.git_hullabaloo_CONTRIBUTING.md +swaywm_wlroots,_swaywm_wlroots_commits.csv,swaywm_wlroots_hullabaloo_CONTRIBUTING.md +WoLpH_numpy-stl,_WoLpH_numpy-stl_commits.csv,WoLpH_numpy-stl_hullabaloo_CONTRIBUTING.rst +prometheus_client_python.git,_prometheus_client_python.git_commits.csv,prometheus_client_python.git_hullabaloo_CONTRIBUTING.md +heynemann_preggy,_heynemann_preggy_commits.csv,heynemann_preggy_hullabaloo_CONTRIBUTING.md +zeromq_czmq.git,_zeromq_czmq.git_commits.csv,zeromq_czmq.git_hullabaloo_CONTRIBUTING.md +python-trio_trio,_python-trio_trio_commits.csv,python-trio_trio_hullabaloo_CONTRIBUTING.md +mongoengine_flask-mongoengine,_mongoengine_flask-mongoengine_commits.csv,mongoengine_flask-mongoengine_hullabaloo_CONTRIBUTING.md +ionelmc_python-tblib,_ionelmc_python-tblib_commits.csv,ionelmc_python-tblib_hullabaloo_CONTRIBUTING.rst +brunonova_drmips,brunonova_drmips_commits.csv,brunonova_drmips_hullabaloo_CONTRIBUTING.md +analogdevicesinc_libiio.git,_analogdevicesinc_libiio.git_commits.csv,analogdevicesinc_libiio.git_hullabaloo_CONTRIBUTING.md +rails_sprockets.git,_rails_sprockets.git_commits.csv,rails_sprockets.git_hullabaloo_CONTRIBUTING.md +ocaml_ocamlbuild.git,_ocaml_ocamlbuild.git_commits.csv,ocaml_ocamlbuild.git_hullabaloo_CONTRIBUTING.adoc +karenetheridge_B-Hooks-Parser.git,_karenetheridge_B-Hooks-Parser.git_commits.csv,karenetheridge_B-Hooks-Parser.git_hullabaloo_CONTRIBUTING +ceres-solver_ceres-solver.git,_ceres-solver_ceres-solver.git_commits.csv,ceres-solver_ceres-solver.git_hullabaloo_CONTRIBUTING.md +jupyter_nbconvert,_jupyter_nbconvert_commits.csv,jupyter_nbconvert_hullabaloo_CONTRIBUTING.md +ComplianceAsCode_content,_ComplianceAsCode_content_commits.csv,ComplianceAsCode_content_hullabaloo_CONTRIBUTING.md +mu-editor_mu,_mu-editor_mu_commits.csv,mu-editor_mu_hullabaloo_CONTRIBUTING.rst +dask_dask,_dask_dask_commits.csv,dask_dask_hullabaloo_CONTRIBUTING.md +jashkenas_underscore.git,_jashkenas_underscore.git_commits.csv,jashkenas_underscore.git_hullabaloo_CONTRIBUTING.md +npm_abbrev-js,_npm_abbrev-js_commits.csv,npm_abbrev-js_hullabaloo_CONTRIBUTING.md +jupyter_jupyter_core,_jupyter_jupyter_core_commits.csv,jupyter_jupyter_core_hullabaloo_CONTRIBUTING.md +tpm2-software_tpm2-abrmd.git,_tpm2-software_tpm2-abrmd.git_commits.csv,tpm2-software_tpm2-abrmd.git_hullabaloo_CONTRIBUTING.md +matthewwithanm_django-imagekit.git,_matthewwithanm_django-imagekit.git_commits.csv,matthewwithanm_django-imagekit.git_hullabaloo_CONTRIBUTING.rst +fog_fog-rackspace,_fog_fog-rackspace_commits.csv,fog_fog-rackspace_hullabaloo_CONTRIBUTING.md +tinfoil_devise-two-factor.git,_tinfoil_devise-two-factor.git_commits.csv,tinfoil_devise-two-factor.git_hullabaloo_CONTRIBUTING.md +isaacs_node-glob.git,_isaacs_node-glob.git_commits.csv,isaacs_node-glob.git_hullabaloo_CONTRIBUTING.md +dagolden_class-insideout.git,_dagolden_class-insideout.git_commits.csv,dagolden_class-insideout.git_hullabaloo_CONTRIBUTING +lastpass_lastpass-cli,_lastpass_lastpass-cli_commits.csv,lastpass_lastpass-cli_hullabaloo_CONTRIBUTING +mlpack_ensmallen,_mlpack_ensmallen_commits.csv,mlpack_ensmallen_hullabaloo_CONTRIBUTING.md +RIPE-NCC_ripe.atlas.sagan,_RIPE-NCC_ripe.atlas.sagan_commits.csv,RIPE-NCC_ripe.atlas.sagan_hullabaloo_CONTRIBUTING.rst +intridea_multi_json,_intridea_multi_json_commits.csv,intridea_multi_json_hullabaloo_CONTRIBUTING.md +zsh-users_antigen,_zsh-users_antigen_commits.csv,zsh-users_antigen_hullabaloo_CONTRIBUTING.md +emcconville_wand,_emcconville_wand_commits.csv,emcconville_wand_hullabaloo_CONTRIBUTING.rst +perl-catalyst_Catalyst-Authentication-Credential-HTTP,_perl-catalyst_Catalyst-Authentication-Credential-HTTP_commits.csv,perl-catalyst_Catalyst-Authentication-Credential-HTTP_hullabaloo_CONTRIBUTING +sslmate_certspotter,_sslmate_certspotter_commits.csv,sslmate_certspotter_hullabaloo_CONTRIBUTING +jazzband_django-sortedm2m.git,_jazzband_django-sortedm2m.git_commits.csv,jazzband_django-sortedm2m.git_hullabaloo_CONTRIBUTING.md +python-hyper_h11.git,_python-hyper_h11.git_commits.csv,python-hyper_h11.git_hullabaloo_CONTRIBUTING.md +felixge_node-dateformat,_felixge_node-dateformat_commits.csv,felixge_node-dateformat_hullabaloo_CONTRIBUTING.md +Grokzen_redis-py-cluster,_Grokzen_redis-py-cluster_commits.csv,Grokzen_redis-py-cluster_hullabaloo_CONTRIBUTING.md +lttng-ust.git,lttng-ust.git_commits.csv,lttng-ust.git_hullabaloo_CONTRIBUTING.md +mongodb_motor,_mongodb_motor_commits.csv,mongodb_motor_hullabaloo_CONTRIBUTING.rst +libevent_libevent,_libevent_libevent_commits.csv,libevent_libevent_hullabaloo_CONTRIBUTING.md +bbatsov_powerpack.git,_bbatsov_powerpack.git_commits.csv,bbatsov_powerpack.git_hullabaloo_CONTRIBUTING.md +rthalley_dnspython.git,_rthalley_dnspython.git_commits.csv,rthalley_dnspython.git_hullabaloo_CONTRIBUTING.md +Ableton_link.git,_Ableton_link.git_commits.csv,Ableton_link.git_hullabaloo_CONTRIBUTING.md +Ranks_emojione,_Ranks_emojione_commits.csv,Ranks_emojione_hullabaloo_CONTRIBUTING.md +kelektiv_node-uuid,_kelektiv_node-uuid_commits.csv,kelektiv_node-uuid_hullabaloo_CONTRIBUTING.md +prometheus_pushgateway,_prometheus_pushgateway_commits.csv,prometheus_pushgateway_hullabaloo_CONTRIBUTING.md +pyjokes_pyjokes,_pyjokes_pyjokes_commits.csv,pyjokes_pyjokes_hullabaloo_CONTRIBUTING.md +resurrecting-open-source-projects_openrdate,_resurrecting-open-source-projects_openrdate_commits.csv,resurrecting-open-source-projects_openrdate_hullabaloo_CONTRIBUTING.md +ARMmbed_yotta.git,_ARMmbed_yotta.git_commits.csv,ARMmbed_yotta.git_hullabaloo_CONTRIBUTING.md +django-ldapdb_django-ldapdb,_django-ldapdb_django-ldapdb_commits.csv,django-ldapdb_django-ldapdb_hullabaloo_CONTRIBUTING.rst +voxpupuli_beaker,_voxpupuli_beaker_commits.csv,voxpupuli_beaker_hullabaloo_CONTRIBUTING.md +zopefoundation_zope.deprecation.git,_zopefoundation_zope.deprecation.git_commits.csv,zopefoundation_zope.deprecation.git_hullabaloo_CONTRIBUTING.md +PracticallyGreen_omniauth-saml.git,_PracticallyGreen_omniauth-saml.git_commits.csv,PracticallyGreen_omniauth-saml.git_hullabaloo_CONTRIBUTING.md +django-haystack_django-haystack,_django-haystack_django-haystack_commits.csv,django-haystack_django-haystack_hullabaloo_CONTRIBUTING.md +google_fscrypt,_google_fscrypt_commits.csv,google_fscrypt_hullabaloo_CONTRIBUTING.md +puppetlabs_clj-kitchensink.git,_puppetlabs_clj-kitchensink.git_commits.csv,puppetlabs_clj-kitchensink.git_hullabaloo_CONTRIBUTING.md +porridge_bambam,porridge_bambam_commits.csv,porridge_bambam_hullabaloo_CONTRIBUTING.md +joewing_jwm,_joewing_jwm_commits.csv,joewing_jwm_hullabaloo_CONTRIBUTING.md +hickford_MechanicalSoup,_hickford_MechanicalSoup_commits.csv,hickford_MechanicalSoup_hullabaloo_CONTRIBUTING.md +cubiq_iscroll,_cubiq_iscroll_commits.csv,cubiq_iscroll_hullabaloo_CONTRIBUTING.md +gtimelog_gtimelog,_gtimelog_gtimelog_commits.csv,gtimelog_gtimelog_hullabaloo_CONTRIBUTING.rst +openstack_python-swiftclient.git,_openstack_python-swiftclient.git_commits.csv,openstack_python-swiftclient.git_hullabaloo_CONTRIBUTING.md +prehor_amavisd-milter,_prehor_amavisd-milter_commits.csv,prehor_amavisd-milter_hullabaloo_CONTRIBUTING.md +GNOME_network-manager-applet,GNOME_network-manager-applet_commits.csv,GNOME_network-manager-applet_hullabaloo_CONTRIBUTING +resurrecting-open-source-projects_scrot,_resurrecting-open-source-projects_scrot_commits.csv,resurrecting-open-source-projects_scrot_hullabaloo_CONTRIBUTING.md +mypaint_libmypaint,_mypaint_libmypaint_commits.csv,mypaint_libmypaint_hullabaloo_CONTRIBUTING.md +virt-manager_virt-manager,_virt-manager_virt-manager_commits.csv,virt-manager_virt-manager_hullabaloo_CONTRIBUTING.md +rails_jbuilder,_rails_jbuilder_commits.csv,rails_jbuilder_hullabaloo_CONTRIBUTING.md +libvirt_libvirt-ruby.git,libvirt_libvirt-ruby.git_commits.csv,libvirt_libvirt-ruby.git_hullabaloo_CONTRIBUTING.rst +DamienCassou_beginend.git,_DamienCassou_beginend.git_commits.csv,DamienCassou_beginend.git_hullabaloo_CONTRIBUTING.md +FirefighterBlu3_python-pam,_FirefighterBlu3_python-pam_commits.csv,FirefighterBlu3_python-pam_hullabaloo_CONTRIBUTING.md +MatMoul_g810-led.git,_MatMoul_g810-led.git_commits.csv,MatMoul_g810-led.git_hullabaloo_CONTRIBUTING.md +GoogleCloudPlatform_cloudsql-proxy.git,_GoogleCloudPlatform_cloudsql-proxy.git_commits.csv,GoogleCloudPlatform_cloudsql-proxy.git_hullabaloo_CONTRIBUTING.md +awslabs_amazon-ecr-credential-helper,awslabs_amazon-ecr-credential-helper_commits.csv,awslabs_amazon-ecr-credential-helper_hullabaloo_CONTRIBUTING.md +Exa-Networks_exabgp,Exa-Networks_exabgp_commits.csv,Exa-Networks_exabgp_hullabaloo_CONTRIBUTING.md +lxqt_qterminal.git,_lxqt_qterminal.git_commits.csv,lxqt_qterminal.git_hullabaloo_CONTRIBUTING.md +ddclient_ddclient.git,_ddclient_ddclient.git_commits.csv,ddclient_ddclient.git_hullabaloo_CONTRIBUTING.md +python-gitlab_python-gitlab.git,_python-gitlab_python-gitlab.git_commits.csv,python-gitlab_python-gitlab.git_hullabaloo_CONTRIBUTING.rst +resurrecting-open-source-projects_packit,_resurrecting-open-source-projects_packit_commits.csv,resurrecting-open-source-projects_packit_hullabaloo_CONTRIBUTING.md +elmar_aptitude-robot,elmar_aptitude-robot_commits.csv,elmar_aptitude-robot_hullabaloo_CONTRIBUTING.mdown +doorkeeper-gem_doorkeeper,_doorkeeper-gem_doorkeeper_commits.csv,doorkeeper-gem_doorkeeper_hullabaloo_CONTRIBUTING.md +rsyslog_rsyslog-doc,_rsyslog_rsyslog-doc_commits.csv,rsyslog_rsyslog-doc_hullabaloo_CONTRIBUTING.md +breunigs_python-librtmp-debian,breunigs_python-librtmp-debian_commits.csv,breunigs_python-librtmp-debian_hullabaloo_CONTRIBUTING.rst +google_python_portpicker,_google_python_portpicker_commits.csv,google_python_portpicker_hullabaloo_CONTRIBUTING.md +carljm_django-model-utils.git,_carljm_django-model-utils.git_commits.csv,carljm_django-model-utils.git_hullabaloo_CONTRIBUTING.rst +GNOME_template-glib.git,GNOME_template-glib.git_commits.csv,GNOME_template-glib.git_hullabaloo_CONTRIBUTING.md +alanxz_rabbitmq-c.git,_alanxz_rabbitmq-c.git_commits.csv,alanxz_rabbitmq-c.git_hullabaloo_CONTRIBUTING.md +davesteele_comitup,davesteele_comitup_commits.csv,davesteele_comitup_hullabaloo_CONTRIBUTING.md +un33k_django-ipware,_un33k_django-ipware_commits.csv,un33k_django-ipware_hullabaloo_CONTRIBUTING.md +luakit_luakit,_luakit_luakit_commits.csv,luakit_luakit_hullabaloo_CONTRIBUTING.md +trezor_trezor-firmware.git,_trezor_trezor-firmware.git_commits.csv,trezor_trezor-firmware.git_hullabaloo_CONTRIBUTING.md +kasei_attean.git,_kasei_attean.git_commits.csv,kasei_attean.git_hullabaloo_CONTRIBUTING +gaetano-guerriero_eyeD3-debian,gaetano-guerriero_eyeD3-debian_commits.csv,gaetano-guerriero_eyeD3-debian_hullabaloo_CONTRIBUTING.rst +ionelmc_python-lazy-object-proxy.git,_ionelmc_python-lazy-object-proxy.git_commits.csv,ionelmc_python-lazy-object-proxy.git_hullabaloo_CONTRIBUTING.rst +resurrecting-open-source-projects_stress,_resurrecting-open-source-projects_stress_commits.csv,resurrecting-open-source-projects_stress_hullabaloo_CONTRIBUTING.md +google_stenographer,_google_stenographer_commits.csv,google_stenographer_hullabaloo_CONTRIBUTING +jpy-consortium_jpy,_jpy-consortium_jpy_commits.csv,jpy-consortium_jpy_hullabaloo_CONTRIBUTING.md +xtaran_unburden-home-dir,xtaran_unburden-home-dir_commits.csv,xtaran_unburden-home-dir_hullabaloo_CONTRIBUTING.md +mongoengine_mongoengine,mongoengine_mongoengine_commits.csv,mongoengine_mongoengine_hullabaloo_CONTRIBUTING.rst +openwisp_django-x509,_openwisp_django-x509_commits.csv,openwisp_django-x509_hullabaloo_CONTRIBUTING.rst +tox-dev_py-filelock,_tox-dev_py-filelock_commits.csv,tox-dev_py-filelock_hullabaloo_CONTRIBUTING.md +survivejs_webpack-merge.git,_survivejs_webpack-merge.git_commits.csv,survivejs_webpack-merge.git_hullabaloo_CONTRIBUTING.md +libcgroup_libcgroup,_libcgroup_libcgroup_commits.csv,libcgroup_libcgroup_hullabaloo_CONTRIBUTING.md +Smattr_rumur.git,Smattr_rumur.git_commits.csv,Smattr_rumur.git_hullabaloo_CONTRIBUTING.rst +lucc_khard,_lucc_khard_commits.csv,lucc_khard_hullabaloo_CONTRIBUTING.rst +Xaviju_inkscape-open-symbols,_Xaviju_inkscape-open-symbols_commits.csv,Xaviju_inkscape-open-symbols_hullabaloo_CONTRIBUTING.md +htop-dev_htop,_htop-dev_htop_commits.csv,htop-dev_htop_hullabaloo_CONTRIBUTING.md +doorkeeper-gem_doorkeeper-openid_connect.git,_doorkeeper-gem_doorkeeper-openid_connect.git_commits.csv,doorkeeper-gem_doorkeeper-openid_connect.git_hullabaloo_CONTRIBUTING.md +libinput_libinput,libinput_libinput_commits.csv,libinput_libinput_hullabaloo_CONTRIBUTING.md +o9000_tint2,o9000_tint2_commits.csv,o9000_tint2_hullabaloo_CONTRIBUTING.md +source-foundry_Hack,_source-foundry_Hack_commits.csv,source-foundry_Hack_hullabaloo_CONTRIBUTING.md +pallets-eco_flask-sqlalchemy,_pallets-eco_flask-sqlalchemy_commits.csv,pallets-eco_flask-sqlalchemy_hullabaloo_CONTRIBUTING.rst +jashkenas_backbone,_jashkenas_backbone_commits.csv,jashkenas_backbone_hullabaloo_CONTRIBUTING.md +rails_rails-html-sanitizer,_rails_rails-html-sanitizer_commits.csv,rails_rails-html-sanitizer_hullabaloo_CONTRIBUTING.md +ipython_traitlets.git,_ipython_traitlets.git_commits.csv,ipython_traitlets.git_hullabaloo_CONTRIBUTING.md +isaacs_inherits,_isaacs_inherits_commits.csv,isaacs_inherits_hullabaloo_CONTRIBUTING.md +erlware_erlware_commons.git,_erlware_erlware_commons.git_commits.csv,erlware_erlware_commons.git_hullabaloo_CONTRIBUTING.md +openstreetmap_osm2pgsql.git,_openstreetmap_osm2pgsql.git_commits.csv,openstreetmap_osm2pgsql.git_hullabaloo_CONTRIBUTING.md +google_gopacket.git,_google_gopacket.git_commits.csv,google_gopacket.git_hullabaloo_CONTRIBUTING.md +janestreet_variantslib.git,_janestreet_variantslib.git_commits.csv,janestreet_variantslib.git_hullabaloo_CONTRIBUTING.md +ipython_ipython_genutils,_ipython_ipython_genutils_commits.csv,ipython_ipython_genutils_hullabaloo_CONTRIBUTING.md +matthewwithanm_pilkit,_matthewwithanm_pilkit_commits.csv,matthewwithanm_pilkit_hullabaloo_CONTRIBUTING.rst +puppetlabs_puppetlabs-mysql,_puppetlabs_puppetlabs-mysql_commits.csv,puppetlabs_puppetlabs-mysql_hullabaloo_CONTRIBUTING.md +sinatra_sinatra.git,_sinatra_sinatra.git_commits.csv,sinatra_sinatra.git_hullabaloo_CONTRIBUTING.md +PyCQA_flake8-polyfill.git,_PyCQA_flake8-polyfill.git_commits.csv,PyCQA_flake8-polyfill.git_hullabaloo_CONTRIBUTING.rst +google_pybadges.git,_google_pybadges.git_commits.csv,google_pybadges.git_hullabaloo_CONTRIBUTING.md +infirit_caja-admin,_infirit_caja-admin_commits.csv,infirit_caja-admin_hullabaloo_CONTRIBUTING.md +terser_terser,_terser_terser_commits.csv,terser_terser_hullabaloo_CONTRIBUTING.md +PyCQA_prospector,_PyCQA_prospector_commits.csv,PyCQA_prospector_hullabaloo_CONTRIBUTING.rst +GNOME_vala.git,GNOME_vala.git_commits.csv,GNOME_vala.git_hullabaloo_CONTRIBUTING.md +aws_aws-cli,_aws_aws-cli_commits.csv,aws_aws-cli_hullabaloo_CONTRIBUTING.md +google_yapf.git,_google_yapf.git_commits.csv,google_yapf.git_hullabaloo_CONTRIBUTING +pytest-dev_pytest.git,_pytest-dev_pytest.git_commits.csv,pytest-dev_pytest.git_hullabaloo_CONTRIBUTING.txt +pika_pika,_pika_pika_commits.csv,pika_pika_hullabaloo_CONTRIBUTING.md +Backblaze_b2-sdk-python.git,_Backblaze_b2-sdk-python.git_commits.csv,Backblaze_b2-sdk-python.git_hullabaloo_CONTRIBUTING.md +puppetlabs_puppetlabs-ntp.git,_puppetlabs_puppetlabs-ntp.git_commits.csv,puppetlabs_puppetlabs-ntp.git_hullabaloo_CONTRIBUTING.md +geopandas_geopandas.git,_geopandas_geopandas.git_commits.csv,geopandas_geopandas.git_hullabaloo_CONTRIBUTING.md +jupyter_jupyter-sphinx.git,_jupyter_jupyter-sphinx.git_commits.csv,jupyter_jupyter-sphinx.git_hullabaloo_CONTRIBUTING.md +Pylons_venusian,_Pylons_venusian_commits.csv,Pylons_venusian_hullabaloo_CONTRIBUTING.rst +jjjake_internetarchive.git,_jjjake_internetarchive.git_commits.csv,jjjake_internetarchive.git_hullabaloo_CONTRIBUTING.rst +cucumber_aruba.git,_cucumber_aruba.git_commits.csv,cucumber_aruba.git_hullabaloo_CONTRIBUTING.md +rackerlabs_kthresher,_rackerlabs_kthresher_commits.csv,rackerlabs_kthresher_hullabaloo_CONTRIBUTING.md +google_jimfs.git,_google_jimfs.git_commits.csv,google_jimfs.git_hullabaloo_CONTRIBUTING.md +openstack_rally.git,_openstack_rally.git_commits.csv,openstack_rally.git_hullabaloo_CONTRIBUTING.rst +jupyter_jupyter_client,_jupyter_jupyter_client_commits.csv,jupyter_jupyter_client_hullabaloo_CONTRIBUTING.md +KDAB_hotspot.git,_KDAB_hotspot.git_commits.csv,KDAB_hotspot.git_hullabaloo_CONTRIBUTING.md +lunarmodules_say.git,_lunarmodules_say.git_commits.csv,lunarmodules_say.git_hullabaloo_CONTRIBUTING.md +coturn_coturn,coturn_coturn_commits.csv,coturn_coturn_hullabaloo_CONTRIBUTING.md +cleishm_libneo4j-client,cleishm_libneo4j-client_commits.csv,cleishm_libneo4j-client_hullabaloo_CONTRIBUTING.md +python_typed_ast.git,_python_typed_ast.git_commits.csv,python_typed_ast.git_hullabaloo_CONTRIBUTING.md +pyutilib_pyutilib,_pyutilib_pyutilib_commits.csv,pyutilib_pyutilib_hullabaloo_CONTRIBUTING.md +prometheus_haproxy_exporter,_prometheus_haproxy_exporter_commits.csv,prometheus_haproxy_exporter_hullabaloo_CONTRIBUTING.md +ahmetb_kubectx,_ahmetb_kubectx_commits.csv,ahmetb_kubectx_hullabaloo_CONTRIBUTING.md +guillaumechereau_goxel.git,_guillaumechereau_goxel.git_commits.csv,guillaumechereau_goxel.git_hullabaloo_CONTRIBUTING.md +pavlov99_json-rpc,_pavlov99_json-rpc_commits.csv,pavlov99_json-rpc_hullabaloo_CONTRIBUTING.md +pygraphviz_pygraphviz.git,_pygraphviz_pygraphviz.git_commits.csv,pygraphviz_pygraphviz.git_hullabaloo_CONTRIBUTING.rst +google_xsecurelock,google_xsecurelock_commits.csv,google_xsecurelock_hullabaloo_CONTRIBUTING +solnic_virtus.git,_solnic_virtus.git_commits.csv,solnic_virtus.git_hullabaloo_CONTRIBUTING.md +karenetheridge_B-Hooks-OP-Check,_karenetheridge_B-Hooks-OP-Check_commits.csv,karenetheridge_B-Hooks-OP-Check_hullabaloo_CONTRIBUTING +robert7_nixnote2,_robert7_nixnote2_commits.csv,robert7_nixnote2_hullabaloo_CONTRIBUTING.md +datastax_python-driver.git,_datastax_python-driver.git_commits.csv,datastax_python-driver.git_hullabaloo_CONTRIBUTING.md +petkaantonov_bluebird.git,_petkaantonov_bluebird.git_commits.csv,petkaantonov_bluebird.git_hullabaloo_CONTRIBUTING.md +Pylons_plaster_pastedeploy.git,_Pylons_plaster_pastedeploy.git_commits.csv,Pylons_plaster_pastedeploy.git_hullabaloo_CONTRIBUTING.rst +zkat_ssri.git,_zkat_ssri.git_commits.csv,zkat_ssri.git_hullabaloo_CONTRIBUTING.md +jtauber_pyuca,_jtauber_pyuca_commits.csv,jtauber_pyuca_hullabaloo_CONTRIBUTING.md +fog_fog-local,_fog_fog-local_commits.csv,fog_fog-local_hullabaloo_CONTRIBUTING.md +cespare_reflex.git,_cespare_reflex.git_commits.csv,cespare_reflex.git_hullabaloo_CONTRIBUTING.md +darold_pgbadger.git,_darold_pgbadger.git_commits.csv,darold_pgbadger.git_hullabaloo_CONTRIBUTING.md +gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org_ruby_gems_gitlab-mail_room.git_commits.csv,gitlab-org_ruby_gems_gitlab-mail_room.git_hullabaloo_CONTRIBUTING.md +google_highwayhash,_google_highwayhash_commits.csv,google_highwayhash_hullabaloo_CONTRIBUTING +libvirt_libvirt-python.git,libvirt_libvirt-python.git_commits.csv,libvirt_libvirt-python.git_hullabaloo_CONTRIBUTING.rst +seccomp_libseccomp,_seccomp_libseccomp_commits.csv,seccomp_libseccomp_hullabaloo_CONTRIBUTING.md +cesbit_libcleri.git,_cesbit_libcleri.git_commits.csv,cesbit_libcleri.git_hullabaloo_CONTRIBUTING.md +ruby-ldap_ruby-net-ldap.git,_ruby-ldap_ruby-net-ldap.git_commits.csv,ruby-ldap_ruby-net-ldap.git_hullabaloo_CONTRIBUTING.md +vim-airline_vim-airline.git,_vim-airline_vim-airline.git_commits.csv,vim-airline_vim-airline.git_hullabaloo_CONTRIBUTING.md +jackfranklin_gulp-load-plugins,_jackfranklin_gulp-load-plugins_commits.csv,jackfranklin_gulp-load-plugins_hullabaloo_CONTRIBUTING.md +digitalbazaar_pyld,_digitalbazaar_pyld_commits.csv,digitalbazaar_pyld_hullabaloo_CONTRIBUTING.rst +rsms_inter,_rsms_inter_commits.csv,rsms_inter_hullabaloo_CONTRIBUTING.md +chaijs_chai,_chaijs_chai_commits.csv,chaijs_chai_hullabaloo_CONTRIBUTING.md +mathjax_MathJax,_mathjax_MathJax_commits.csv,mathjax_MathJax_hullabaloo_CONTRIBUTING.md +dbus_dbus-python,dbus_dbus-python_commits.csv,dbus_dbus-python_hullabaloo_CONTRIBUTING +python-ldap_python-ldap,_python-ldap_python-ldap_commits.csv,python-ldap_python-ldap_hullabaloo_CONTRIBUTING.rst +pallets_click.git,_pallets_click.git_commits.csv,pallets_click.git_hullabaloo_CONTRIBUTING.rst +ktbyers_netmiko,_ktbyers_netmiko_commits.csv,ktbyers_netmiko_hullabaloo_CONTRIBUTING.md +ipython_ipykernel.git,_ipython_ipykernel.git_commits.csv,ipython_ipykernel.git_hullabaloo_CONTRIBUTING.md +calamares_calamares.git,_calamares_calamares.git_commits.csv,calamares_calamares.git_hullabaloo_CONTRIBUTING.md +osantana_dicteval.git,_osantana_dicteval.git_commits.csv,osantana_dicteval.git_hullabaloo_CONTRIBUTING.md +doctrine_instantiator,_doctrine_instantiator_commits.csv,doctrine_instantiator_hullabaloo_CONTRIBUTING.md +nojhan_liquidprompt.git,_nojhan_liquidprompt.git_commits.csv,nojhan_liquidprompt.git_hullabaloo_CONTRIBUTING.md +marshmallow-code_marshmallow.git,marshmallow-code_marshmallow.git_commits.csv,marshmallow-code_marshmallow.git_CONTRIBUTING.rst +aws_aws-xray-sdk-python,_aws_aws-xray-sdk-python_commits.csv,aws_aws-xray-sdk-python_hullabaloo_CONTRIBUTING.md +JDimproved_JDim.git,_JDimproved_JDim.git_commits.csv,JDimproved_JDim.git_hullabaloo_CONTRIBUTING.md +spyder-ide_qtawesome,_spyder-ide_qtawesome_commits.csv,spyder-ide_qtawesome_hullabaloo_CONTRIBUTING.md +puppetlabs_facter.git,_puppetlabs_facter.git_commits.csv,puppetlabs_facter.git_hullabaloo_CONTRIBUTING.md +elasticsearch_curator.git,_elasticsearch_curator.git_commits.csv,elasticsearch_curator.git_hullabaloo_CONTRIBUTING.md +marshmallow-code_flask-marshmallow.git,_marshmallow-code_flask-marshmallow.git_commits.csv,marshmallow-code_flask-marshmallow.git_hullabaloo_CONTRIBUTING.rst +resurrecting-open-source-projects_outguess,_resurrecting-open-source-projects_outguess_commits.csv,resurrecting-open-source-projects_outguess_hullabaloo_CONTRIBUTING.md +GNOME_geary.git,GNOME_geary.git_commits.csv,GNOME_geary.git_hullabaloo_CONTRIBUTING.md +jashkenas_coffeescript,_jashkenas_coffeescript_commits.csv,jashkenas_coffeescript_hullabaloo_CONTRIBUTING.md +spyder-ide_qtpy,_spyder-ide_qtpy_commits.csv,spyder-ide_qtpy_hullabaloo_CONTRIBUTING.rst +thoughtbot_shoulda-matchers,_thoughtbot_shoulda-matchers_commits.csv,thoughtbot_shoulda-matchers_hullabaloo_CONTRIBUTING.md +defunkt_mustache,_defunkt_mustache_commits.csv,defunkt_mustache_hullabaloo_CONTRIBUTING.md +thoughtbot_factory_girl.git,_thoughtbot_factory_girl.git_commits.csv,thoughtbot_factory_girl.git_hullabaloo_CONTRIBUTING.md +oauth-xx_oauth-ruby,_oauth-xx_oauth-ruby_commits.csv,oauth-xx_oauth-ruby_hullabaloo_CONTRIBUTING.md +psf_black.git,_psf_black.git_commits.csv,psf_black.git_hullabaloo_CONTRIBUTING.md +GNOME_gnome-builder.git,GNOME_gnome-builder.git_commits.csv,GNOME_gnome-builder.git_hullabaloo_CONTRIBUTING.md +softlayer_softlayer-python,_softlayer_softlayer-python_commits.csv,softlayer_softlayer-python_hullabaloo_CONTRIBUTING.md +tkf_emacs-jedi.git,_tkf_emacs-jedi.git_commits.csv,tkf_emacs-jedi.git_hullabaloo_CONTRIBUTING.md +pgbackrest_pgbackrest,_pgbackrest_pgbackrest_commits.csv,pgbackrest_pgbackrest_hullabaloo_CONTRIBUTING.md +shouldjs_should.js.git,_shouldjs_should.js.git_commits.csv,shouldjs_should.js.git_hullabaloo_CONTRIBUTING.md +pytest-dev_pytest-bdd.git,_pytest-dev_pytest-bdd.git_commits.csv,pytest-dev_pytest-bdd.git_hullabaloo_CONTRIBUTING.md +jupyter_terminado,_jupyter_terminado_commits.csv,jupyter_terminado_hullabaloo_CONTRIBUTING.rst +django-waffle_django-waffle,_django-waffle_django-waffle_commits.csv,django-waffle_django-waffle_hullabaloo_CONTRIBUTING.rst +processone_fast_tls.git,_processone_fast_tls.git_commits.csv,processone_fast_tls.git_hullabaloo_CONTRIBUTING.md +metaodi_osmapi.git,_metaodi_osmapi.git_commits.csv,metaodi_osmapi.git_hullabaloo_CONTRIBUTING.md +kilobyte_ndctl,kilobyte_ndctl_commits.csv,kilobyte_ndctl_hullabaloo_CONTRIBUTING.md +kilobyte_memkind,kilobyte_memkind_commits.csv,kilobyte_memkind_hullabaloo_CONTRIBUTING +pallets_itsdangerous,_pallets_itsdangerous_commits.csv,pallets_itsdangerous_hullabaloo_CONTRIBUTING.rst +office_ghostwriter,office_ghostwriter_commits.csv,office_ghostwriter_hullabaloo_CONTRIBUTING.md +prometheus_mysqld_exporter,_prometheus_mysqld_exporter_commits.csv,prometheus_mysqld_exporter_hullabaloo_CONTRIBUTING.md +twilio_twilio-python,_twilio_twilio-python_commits.csv,twilio_twilio-python_hullabaloo_CONTRIBUTING.md +c4urself_bump2version,_c4urself_bump2version_commits.csv,c4urself_bump2version_hullabaloo_CONTRIBUTING.md +google_benchmark,_google_benchmark_commits.csv,google_benchmark_hullabaloo_CONTRIBUTING.md +pgRouting_pgrouting.git,_pgRouting_pgrouting.git_commits.csv,pgRouting_pgrouting.git_hullabaloo_CONTRIBUTING +galaxyproject_bioblend,_galaxyproject_bioblend_commits.csv,galaxyproject_bioblend_hullabaloo_CONTRIBUTING.md +gawel_panoramisk.git,_gawel_panoramisk.git_commits.csv,gawel_panoramisk.git_hullabaloo_CONTRIBUTING.rst +rails_jquery-rails.git,_rails_jquery-rails.git_commits.csv,rails_jquery-rails.git_hullabaloo_CONTRIBUTING.md +kilobyte_pmemkv,kilobyte_pmemkv_commits.csv,kilobyte_pmemkv_hullabaloo_CONTRIBUTING.md +processone_pkix.git,_processone_pkix.git_commits.csv,processone_pkix.git_hullabaloo_CONTRIBUTING.md +faye_faye,_faye_faye_commits.csv,faye_faye_hullabaloo_CONTRIBUTING.md +openstack_swift.git,_openstack_swift.git_commits.csv,openstack_swift.git_hullabaloo_CONTRIBUTING.md +zopefoundation_zope.proxy,_zopefoundation_zope.proxy_commits.csv,zopefoundation_zope.proxy_hullabaloo_CONTRIBUTING.md +alastair_python-musicbrainz-ngs,_alastair_python-musicbrainz-ngs_commits.csv,alastair_python-musicbrainz-ngs_hullabaloo_CONTRIBUTING.md +RIPE-NCC_ripe-atlas-cousteau.git,_RIPE-NCC_ripe-atlas-cousteau.git_commits.csv,RIPE-NCC_ripe-atlas-cousteau.git_hullabaloo_CONTRIBUTING.rst +google_python-gflags.git,_google_python-gflags.git_commits.csv,google_python-gflags.git_hullabaloo_CONTRIBUTING.md +numba_numba.git,_numba_numba.git_commits.csv,numba_numba.git_hullabaloo_CONTRIBUTING.md +composer_semver,_composer_semver_commits.csv,composer_semver_hullabaloo_CONTRIBUTING.md +mdbootstrap_perfect-scrollbar,_mdbootstrap_perfect-scrollbar_commits.csv,mdbootstrap_perfect-scrollbar_hullabaloo_CONTRIBUTING.md +heroku_netrc,_heroku_netrc_commits.csv,heroku_netrc_hullabaloo_CONTRIBUTING.md +eclipse_paho.mqtt.python.git,_eclipse_paho.mqtt.python.git_commits.csv,eclipse_paho.mqtt.python.git_hullabaloo_CONTRIBUTING.md +GNOME_folks,GNOME_folks_commits.csv,GNOME_folks_hullabaloo_CONTRIBUTING.md +sshguard_sshguard.git,sshguard_sshguard.git_commits.csv,sshguard_sshguard.git_hullabaloo_CONTRIBUTING.rst +requests-cache_requests-cache,_requests-cache_requests-cache_commits.csv,requests-cache_requests-cache_hullabaloo_CONTRIBUTING.md +zopefoundation_zope.testrunner,_zopefoundation_zope.testrunner_commits.csv,zopefoundation_zope.testrunner_hullabaloo_CONTRIBUTING.md +ua-parser_uap-core.git,_ua-parser_uap-core.git_commits.csv,ua-parser_uap-core.git_hullabaloo_CONTRIBUTING.md +voxpupuli_pypuppetdb,_voxpupuli_pypuppetdb_commits.csv,voxpupuli_pypuppetdb_hullabaloo_CONTRIBUTING.md +mozilla_source-map,_mozilla_source-map_commits.csv,mozilla_source-map_hullabaloo_CONTRIBUTING.md +libosinfo_osinfo-db-tools.git,libosinfo_osinfo-db-tools.git_commits.csv,libosinfo_osinfo-db-tools.git_hullabaloo_CONTRIBUTING.md +dagolden_math-random-oo.git,_dagolden_math-random-oo.git_commits.csv,dagolden_math-random-oo.git_hullabaloo_CONTRIBUTING +clojure_core.cache,_clojure_core.cache_commits.csv,clojure_core.cache_hullabaloo_CONTRIBUTING.md +pub_scm_linux_kernel_git_jberg_iw.git,pub_scm_linux_kernel_git_jberg_iw.git_commits.csv,pub_scm_linux_kernel_git_jberg_iw.git_hullabaloo_CONTRIBUTING +pydata_xarray,_pydata_xarray_commits.csv,pydata_xarray_hullabaloo_CONTRIBUTING.md +pantsbuild_pex.git,_pantsbuild_pex.git_commits.csv,pantsbuild_pex.git_hullabaloo_CONTRIBUTING.md +Diaoul_subliminal.git,_Diaoul_subliminal.git_commits.csv,Diaoul_subliminal.git_hullabaloo_CONTRIBUTING.md +janestreet_sexplib.git,_janestreet_sexplib.git_commits.csv,janestreet_sexplib.git_hullabaloo_CONTRIBUTING.md +google_googletest.git,_google_googletest.git_commits.csv,google_googletest.git_hullabaloo_CONTRIBUTING.md +nginxinc_nginx-prometheus-exporter,_nginxinc_nginx-prometheus-exporter_commits.csv,nginxinc_nginx-prometheus-exporter_hullabaloo_CONTRIBUTING.md +simd-everywhere_simde,_simd-everywhere_simde_commits.csv,simd-everywhere_simde_hullabaloo_CONTRIBUTING.md +EnterpriseDB_mysql_fdw.git,_EnterpriseDB_mysql_fdw.git_commits.csv,EnterpriseDB_mysql_fdw.git_hullabaloo_CONTRIBUTING.md +sphinx-contrib_restbuilder.git,_sphinx-contrib_restbuilder.git_commits.csv,sphinx-contrib_restbuilder.git_hullabaloo_CONTRIBUTING.rst +davidcelis_api-pagination.git,_davidcelis_api-pagination.git_commits.csv,davidcelis_api-pagination.git_hullabaloo_CONTRIBUTING.md +zopefoundation_zope.component,_zopefoundation_zope.component_commits.csv,zopefoundation_zope.component_hullabaloo_CONTRIBUTING.md +iovisor_bcc.git,_iovisor_bcc.git_commits.csv,iovisor_bcc.git_hullabaloo_CONTRIBUTING-SCRIPTS.md +puppetlabs_puppetlabs-firewall,_puppetlabs_puppetlabs-firewall_commits.csv,puppetlabs_puppetlabs-firewall_hullabaloo_CONTRIBUTING.md +puppetlabs_puppetlabs-concat,_puppetlabs_puppetlabs-concat_commits.csv,puppetlabs_puppetlabs-concat_hullabaloo_CONTRIBUTING.md +philpem_printer-driver-ptouch.git,_philpem_printer-driver-ptouch.git_commits.csv,philpem_printer-driver-ptouch.git_hullabaloo_CONTRIBUTING.md +diff-match-patch-python_diff-match-patch,_diff-match-patch-python_diff-match-patch_commits.csv,diff-match-patch-python_diff-match-patch_hullabaloo_CONTRIBUTING.md +dask_partd.git,_dask_partd.git_commits.csv,dask_partd.git_hullabaloo_CONTRIBUTING.md +boto_botocore,_boto_botocore_commits.csv,boto_botocore_hullabaloo_CONTRIBUTING.md +locationtech_jts.git,_locationtech_jts.git_commits.csv,locationtech_jts.git_hullabaloo_CONTRIBUTING.md +osmcode_osmium-tool.git,_osmcode_osmium-tool.git_commits.csv,osmcode_osmium-tool.git_hullabaloo_CONTRIBUTING.md +sferik_twitter,_sferik_twitter_commits.csv,sferik_twitter_hullabaloo_CONTRIBUTING.md +developit_preact.git,_developit_preact.git_commits.csv,developit_preact.git_hullabaloo_CONTRIBUTING.md +matrix-org_synapse.git,_matrix-org_synapse.git_commits.csv,matrix-org_synapse.git_hullabaloo_CONTRIBUTING.rst +common-workflow-language_schema_salad,_common-workflow-language_schema_salad_commits.csv,common-workflow-language_schema_salad_hullabaloo_CONTRIBUTING.md +eproxus_meck.git,_eproxus_meck.git_commits.csv,eproxus_meck.git_hullabaloo_CONTRIBUTING.md +puppetlabs_puppetlabs-apache,_puppetlabs_puppetlabs-apache_commits.csv,puppetlabs_puppetlabs-apache_hullabaloo_CONTRIBUTING.md +jazzband_django-recurrence,_jazzband_django-recurrence_commits.csv,jazzband_django-recurrence_hullabaloo_CONTRIBUTING.rst +Backblaze_B2_Command_Line_Tool,_Backblaze_B2_Command_Line_Tool_commits.csv,Backblaze_B2_Command_Line_Tool_hullabaloo_CONTRIBUTING.md +mvz_ruby-gir-ffi,_mvz_ruby-gir-ffi_commits.csv,mvz_ruby-gir-ffi_hullabaloo_CONTRIBUTING.md +zopefoundation_zope.event,_zopefoundation_zope.event_commits.csv,zopefoundation_zope.event_hullabaloo_CONTRIBUTING.md +nesquena_rabl,_nesquena_rabl_commits.csv,nesquena_rabl_hullabaloo_CONTRIBUTING.md +pytest-dev_pytest-cov.git,_pytest-dev_pytest-cov.git_commits.csv,pytest-dev_pytest-cov.git_hullabaloo_CONTRIBUTING.md +linuxmint_cjs.git,_linuxmint_cjs.git_commits.csv,linuxmint_cjs.git_hullabaloo_CONTRIBUTING.md +michaeljones_breathe.git,_michaeljones_breathe.git_commits.csv,michaeljones_breathe.git_hullabaloo_CONTRIBUTING.rst +GoalSmashers_clean-css.git,_GoalSmashers_clean-css.git_commits.csv,GoalSmashers_clean-css.git_hullabaloo_CONTRIBUTING.md +mapbox_leaflet-image,_mapbox_leaflet-image_commits.csv,mapbox_leaflet-image_hullabaloo_CONTRIBUTING.md +httpie_httpie,_httpie_httpie_commits.csv,httpie_httpie_hullabaloo_CONTRIBUTING.rst +bit-team_backintime,_bit-team_backintime_commits.csv,bit-team_backintime_hullabaloo_CONTRIBUTING.md +howardabrams_node-mocks-http,_howardabrams_node-mocks-http_commits.csv,howardabrams_node-mocks-http_hullabaloo_CONTRIBUTING.md +yrro_command-t,yrro_command-t_commits.csv,yrro_command-t_hullabaloo_CONTRIBUTING.md +zaach_jison,_zaach_jison_commits.csv,zaach_jison_hullabaloo_CONTRIBUTING.md +zopefoundation_zope.interface.git,_zopefoundation_zope.interface.git_commits.csv,zopefoundation_zope.interface.git_hullabaloo_CONTRIBUTING.md +rbenv_ruby-build.git,_rbenv_ruby-build.git_commits.csv,rbenv_ruby-build.git_hullabaloo_CONTRIBUTING.md +mishoo_UglifyJS2,_mishoo_UglifyJS2_commits.csv,mishoo_UglifyJS2_hullabaloo_CONTRIBUTING.md +Pylons_hupper,_Pylons_hupper_commits.csv,Pylons_hupper_hullabaloo_CONTRIBUTING.rst +abishekvashok_cmatrix.git,_abishekvashok_cmatrix.git_commits.csv,abishekvashok_cmatrix.git_hullabaloo_CONTRIBUTING.md +django-extensions_django-extensions,_django-extensions_django-extensions_commits.csv,django-extensions_django-extensions_hullabaloo_CONTRIBUTING.md +P403n1x87_austin,P403n1x87_austin_commits.csv,P403n1x87_austin_hullabaloo_CONTRIBUTING.md +mcmtroffaes_pathlib2.git,_mcmtroffaes_pathlib2.git_commits.csv,mcmtroffaes_pathlib2.git_hullabaloo_CONTRIBUTING.rst +zmartzone_cjose.git,_zmartzone_cjose.git_commits.csv,zmartzone_cjose.git_hullabaloo_CONTRIBUTING.md +webrtchacks_adapter,_webrtchacks_adapter_commits.csv,webrtchacks_adapter_hullabaloo_CONTRIBUTING +python-bugzilla_python-bugzilla,_python-bugzilla_python-bugzilla_commits.csv,python-bugzilla_python-bugzilla_hullabaloo_CONTRIBUTING.md +markdown-it_markdown-it,_markdown-it_markdown-it_commits.csv,markdown-it_markdown-it_hullabaloo_CONTRIBUTING.md +jazzband_django-debug-toolbar.git,_jazzband_django-debug-toolbar.git_commits.csv,jazzband_django-debug-toolbar.git_hullabaloo_CONTRIBUTING.md +rasterio_rasterio.git,_rasterio_rasterio.git_commits.csv,rasterio_rasterio.git_hullabaloo_CONTRIBUTING.rst +zyga_padme,_zyga_padme_commits.csv,zyga_padme_hullabaloo_CONTRIBUTING.rst +zloirock_core-js.git,_zloirock_core-js.git_commits.csv,zloirock_core-js.git_hullabaloo_CONTRIBUTING.md +dropbox_dropbox-sdk-python,_dropbox_dropbox-sdk-python_commits.csv,dropbox_dropbox-sdk-python_hullabaloo_CONTRIBUTING.rst +scrapinghub_dateparser,_scrapinghub_dateparser_commits.csv,scrapinghub_dateparser_hullabaloo_CONTRIBUTING.rst +gstreamer_orc,gstreamer_orc_commits.csv,gstreamer_orc_hullabaloo_CONTRIBUTING.md +nodejs_node-gyp.git,_nodejs_node-gyp.git_commits.csv,nodejs_node-gyp.git_hullabaloo_CONTRIBUTING.md +kornelski_pngquant.git,_kornelski_pngquant.git_commits.csv,kornelski_pngquant.git_hullabaloo_CONTRIBUTING.md +Iotic-Labs_py-ubjson,_Iotic-Labs_py-ubjson_commits.csv,Iotic-Labs_py-ubjson_hullabaloo_CONTRIBUTING.md +puppetlabs_puppetlabs-postgresql.git,_puppetlabs_puppetlabs-postgresql.git_commits.csv,puppetlabs_puppetlabs-postgresql.git_hullabaloo_CONTRIBUTING.md +GNOME_json-glib.git,GNOME_json-glib.git_commits.csv,GNOME_json-glib.git_hullabaloo_CONTRIBUTING.md +GNOME_gnome-clocks.git,GNOME_gnome-clocks.git_commits.csv,GNOME_gnome-clocks.git_hullabaloo_CONTRIBUTING.md +Leaflet_Leaflet.markercluster,_Leaflet_Leaflet.markercluster_commits.csv,Leaflet_Leaflet.markercluster_hullabaloo_CONTRIBUTING.md +osmcode_libosmium.git,_osmcode_libosmium.git_commits.csv,osmcode_libosmium.git_hullabaloo_CONTRIBUTING.md +resurrecting-open-source-projects_dcfldd,_resurrecting-open-source-projects_dcfldd_commits.csv,resurrecting-open-source-projects_dcfldd_hullabaloo_CONTRIBUTING.md +jazzband_django-pipeline,_jazzband_django-pipeline_commits.csv,jazzband_django-pipeline_hullabaloo_CONTRIBUTING.rst +jquery_qunit.git,_jquery_qunit.git_commits.csv,jquery_qunit.git_hullabaloo_CONTRIBUTING.md +gpodder_mygpoclient,_gpodder_mygpoclient_commits.csv,gpodder_mygpoclient_hullabaloo_CONTRIBUTING.md +pytroll_satpy,_pytroll_satpy_commits.csv,pytroll_satpy_hullabaloo_CONTRIBUTING.rst +GNOME_mobile-broadband-provider-info,GNOME_mobile-broadband-provider-info_commits.csv,GNOME_mobile-broadband-provider-info_hullabaloo_CONTRIBUTING +01org_isa-l.git,_01org_isa-l.git_commits.csv,01org_isa-l.git_hullabaloo_CONTRIBUTING.md +jbeder_yaml-cpp,_jbeder_yaml-cpp_commits.csv,jbeder_yaml-cpp_hullabaloo_CONTRIBUTING.md +cookiecutter_whichcraft,_cookiecutter_whichcraft_commits.csv,cookiecutter_whichcraft_hullabaloo_CONTRIBUTING.rst +clojure_tools.logging.git,_clojure_tools.logging.git_commits.csv,clojure_tools.logging.git_hullabaloo_CONTRIBUTING.md +encode_django-rest-framework,_encode_django-rest-framework_commits.csv,encode_django-rest-framework_hullabaloo_CONTRIBUTING.md +matthewdeanmartin_terminaltables,_matthewdeanmartin_terminaltables_commits.csv,matthewdeanmartin_terminaltables_hullabaloo_CONTRIBUTING.md +namhyung_uftrace,_namhyung_uftrace_commits.csv,namhyung_uftrace_hullabaloo_CONTRIBUTING.md +resurrecting-open-source-projects_sniffit,_resurrecting-open-source-projects_sniffit_commits.csv,resurrecting-open-source-projects_sniffit_hullabaloo_CONTRIBUTING.md +nicolargo_glances,_nicolargo_glances_commits.csv,nicolargo_glances_hullabaloo_CONTRIBUTING.md +elastic_elasticsearch-ruby,_elastic_elasticsearch-ruby_commits.csv,elastic_elasticsearch-ruby_hullabaloo_CONTRIBUTING.md +idlesign_django-sitetree,_idlesign_django-sitetree_commits.csv,idlesign_django-sitetree_hullabaloo_CONTRIBUTING +intridea_grape-entity,_intridea_grape-entity_commits.csv,intridea_grape-entity_hullabaloo_CONTRIBUTING.md +dbus_dbus-glib.git,dbus_dbus-glib.git_commits.csv,dbus_dbus-glib.git_hullabaloo_CONTRIBUTING +SethMMorton_natsort.git,_SethMMorton_natsort.git_commits.csv,SethMMorton_natsort.git_hullabaloo_CONTRIBUTING.md +guessit-io_guessit.git,_guessit-io_guessit.git_commits.csv,guessit-io_guessit.git_hullabaloo_CONTRIBUTING.rst +elastic_elasticsearch-py.git,_elastic_elasticsearch-py.git_commits.csv,elastic_elasticsearch-py.git_hullabaloo_CONTRIBUTING.md +NagiosEnterprises_nrpe.git,_NagiosEnterprises_nrpe.git_commits.csv,NagiosEnterprises_nrpe.git_hullabaloo_CONTRIBUTING.md +pylons_plaster,_pylons_plaster_commits.csv,pylons_plaster_hullabaloo_CONTRIBUTING.rst +oath-toolkit_oath-toolkit,oath-toolkit_oath-toolkit_commits.csv,oath-toolkit_oath-toolkit_hullabaloo_CONTRIBUTING.md +rytilahti_python-miio.git,_rytilahti_python-miio.git_commits.csv,rytilahti_python-miio.git_hullabaloo_CONTRIBUTING.md +RiotGames_buff-extensions,_RiotGames_buff-extensions_commits.csv,RiotGames_buff-extensions_hullabaloo_CONTRIBUTING.md +ronf_asyncssh,_ronf_asyncssh_commits.csv,ronf_asyncssh_hullabaloo_CONTRIBUTING.rst +zopefoundation_zc.lockfile,_zopefoundation_zc.lockfile_commits.csv,zopefoundation_zc.lockfile_hullabaloo_CONTRIBUTING.md +ImageOptim_libimagequant.git,_ImageOptim_libimagequant.git_commits.csv,ImageOptim_libimagequant.git_hullabaloo_CONTRIBUTING.md +ianare_exif-py,_ianare_exif-py_commits.csv,ianare_exif-py_hullabaloo_CONTRIBUTING.rst +websocket-client_websocket-client,_websocket-client_websocket-client_commits.csv,websocket-client_websocket-client_hullabaloo_CONTRIBUTING.md +i18next_i18next,_i18next_i18next_commits.csv,i18next_i18next_hullabaloo_CONTRIBUTING.md +aptly-dev_aptly.git,_aptly-dev_aptly.git_commits.csv,aptly-dev_aptly.git_hullabaloo_CONTRIBUTING.md +pymodbus-dev_pymodbus.git,_pymodbus-dev_pymodbus.git_commits.csv,pymodbus-dev_pymodbus.git_hullabaloo_CONTRIBUTING.md +zopefoundation_zope.i18nmessageid,_zopefoundation_zope.i18nmessageid_commits.csv,zopefoundation_zope.i18nmessageid_hullabaloo_CONTRIBUTING.md +theskumar_python-dotenv.git,_theskumar_python-dotenv.git_commits.csv,theskumar_python-dotenv.git_hullabaloo_CONTRIBUTING.md +sobolevn_django-split-settings,_sobolevn_django-split-settings_commits.csv,sobolevn_django-split-settings_hullabaloo_CONTRIBUTING.rst +powerline_powerline,_powerline_powerline_commits.csv,powerline_powerline_hullabaloo_CONTRIBUTING.rst +varvet_pundit,_varvet_pundit_commits.csv,varvet_pundit_hullabaloo_CONTRIBUTING.md +karenetheridge_Module-Manifest,_karenetheridge_Module-Manifest_commits.csv,karenetheridge_Module-Manifest_hullabaloo_CONTRIBUTING +lxc_lxcfs.git,_lxc_lxcfs.git_commits.csv,lxc_lxcfs.git_hullabaloo_CONTRIBUTING.md +colmap_colmap,_colmap_colmap_commits.csv,colmap_colmap_hullabaloo_CONTRIBUTING.md +tantale_deprecated.git,_tantale_deprecated.git_commits.csv,tantale_deprecated.git_hullabaloo_CONTRIBUTING.rst +voxpupuli_librarian-puppet.git,_voxpupuli_librarian-puppet.git_commits.csv,voxpupuli_librarian-puppet.git_hullabaloo_CONTRIBUTING.md +jmaslak_Net-Netmask.git,_jmaslak_Net-Netmask.git_commits.csv,jmaslak_Net-Netmask.git_hullabaloo_CONTRIBUTING +jobovy_galpy.git,_jobovy_galpy.git_commits.csv,jobovy_galpy.git_hullabaloo_CONTRIBUTING.md +pydanny_cached-property.git,_pydanny_cached-property.git_commits.csv,pydanny_cached-property.git_hullabaloo_CONTRIBUTING.rst +ros_robot_state_publisher,_ros_robot_state_publisher_commits.csv,ros_robot_state_publisher_hullabaloo_CONTRIBUTING.md +pazz_alot,_pazz_alot_commits.csv,pazz_alot_hullabaloo_CONTRIBUTING.rst +resurrecting-open-source-projects_cbm,_resurrecting-open-source-projects_cbm_commits.csv,resurrecting-open-source-projects_cbm_hullabaloo_CONTRIBUTING.md +thumbor_libthumbor,_thumbor_libthumbor_commits.csv,thumbor_libthumbor_hullabaloo_CONTRIBUTING +epeli_underscore.string,_epeli_underscore.string_commits.csv,epeli_underscore.string_hullabaloo_CONTRIBUTING.md +geopython_geolinks.git,_geopython_geolinks.git_commits.csv,geopython_geolinks.git_hullabaloo_CONTRIBUTING.md +zeroc-ice_ice-builder-gradle-debian-packaging.git,zeroc-ice_ice-builder-gradle-debian-packaging.git_commits.csv,zeroc-ice_ice-builder-gradle-debian-packaging.git_hullabaloo_CONTRIBUTING.md +maxmind_geoip-api-perl.git,_maxmind_geoip-api-perl.git_commits.csv,maxmind_geoip-api-perl.git_hullabaloo_CONTRIBUTING.md +httprb_http.rb,_httprb_http.rb_commits.csv,httprb_http.rb_hullabaloo_CONTRIBUTING.md +rails_rails-dom-testing,_rails_rails-dom-testing_commits.csv,rails_rails-dom-testing_hullabaloo_CONTRIBUTING.md +jas_libntlm,jas_libntlm_commits.csv,jas_libntlm_hullabaloo_CONTRIBUTING.md +silx-kit_pyFAI,_silx-kit_pyFAI_commits.csv,silx-kit_pyFAI_hullabaloo_CONTRIBUTING.md +rakhimov_scram.git,_rakhimov_scram.git_commits.csv,rakhimov_scram.git_hullabaloo_CONTRIBUTING.md +capistrano_sshkit.git,_capistrano_sshkit.git_commits.csv,capistrano_sshkit.git_hullabaloo_CONTRIBUTING.md +X0rg_CPU-X.git,_X0rg_CPU-X.git_commits.csv,X0rg_CPU-X.git_hullabaloo_CONTRIBUTING.md +florimondmanca_djangorestframework-api-key,_florimondmanca_djangorestframework-api-key_commits.csv,florimondmanca_djangorestframework-api-key_hullabaloo_CONTRIBUTING.md +zopefoundation_BTrees.git,_zopefoundation_BTrees.git_commits.csv,zopefoundation_BTrees.git_hullabaloo_CONTRIBUTING.md +selectize_selectize.js,_selectize_selectize.js_commits.csv,selectize_selectize.js_hullabaloo_CONTRIBUTING.md +jupyter_nbformat,_jupyter_nbformat_commits.csv,jupyter_nbformat_hullabaloo_CONTRIBUTING.md +checkpoint-restore_criu.git,_checkpoint-restore_criu.git_commits.csv,checkpoint-restore_criu.git_hullabaloo_CONTRIBUTING.md +untitaker_python-atomicwrites,_untitaker_python-atomicwrites_commits.csv,untitaker_python-atomicwrites_hullabaloo_CONTRIBUTING.rst +dpmb_dpmb,dpmb_dpmb_commits.csv,dpmb_dpmb_hullabaloo_CONTRIBUTING.md +emcrisostomo_fswatch.git,_emcrisostomo_fswatch.git_commits.csv,emcrisostomo_fswatch.git_hullabaloo_CONTRIBUTING.md +flask-restful_flask-restful,_flask-restful_flask-restful_commits.csv,flask-restful_flask-restful_hullabaloo_CONTRIBUTING.md +geopython_stetl.git,_geopython_stetl.git_commits.csv,geopython_stetl.git_hullabaloo_CONTRIBUTING.md +django-polymorphic_django-polymorphic,_django-polymorphic_django-polymorphic_commits.csv,django-polymorphic_django-polymorphic_hullabaloo_CONTRIBUTING.rst +jendrikseipp_vulture.git,_jendrikseipp_vulture.git_commits.csv,jendrikseipp_vulture.git_hullabaloo_CONTRIBUTING.rst +GNOME_gnome-calendar.git,GNOME_gnome-calendar.git_commits.csv,GNOME_gnome-calendar.git_hullabaloo_CONTRIBUTING.md +capistrano_capistrano.git,_capistrano_capistrano.git_commits.csv,capistrano_capistrano.git_hullabaloo_CONTRIBUTING +mwilliamson_spur.py.git,_mwilliamson_spur.py.git_commits.csv,mwilliamson_spur.py.git_hullabaloo_CONTRIBUTING.rst +troglobit_inadyn,_troglobit_inadyn_commits.csv,troglobit_inadyn_hullabaloo_CONTRIBUTING.md diff --git a/12825_revision/misc_data_files/all_013025_readme_manifest.csv b/12825_revision/misc_data_files/all_013025_readme_manifest.csv new file mode 100644 index 0000000..fe4fcb1 --- /dev/null +++ b/12825_revision/misc_data_files/all_013025_readme_manifest.csv @@ -0,0 +1,2933 @@ +repo_id,commits_filepath,fvf_filepath +swipely_docker-api,_swipely_docker-api_commits.csv,swipely_docker-api_hullabaloo_README.md +aio-libs_aiomysql.git,_aio-libs_aiomysql.git_commits.csv,aio-libs_aiomysql.git_hullabaloo_README +shekyan_slowhttptest,_shekyan_slowhttptest_commits.csv,shekyan_slowhttptest_hullabaloo_README.md +CoderPuppy_os-browserify,_CoderPuppy_os-browserify_commits.csv,CoderPuppy_os-browserify_hullabaloo_README.md +palapeli.git,palapeli.git_commits.csv,palapeli.git_hullabaloo_README +seatgeek_fuzzywuzzy,_seatgeek_fuzzywuzzy_commits.csv,seatgeek_fuzzywuzzy_hullabaloo_README.txt +pdewacht_brlaser,_pdewacht_brlaser_commits.csv,pdewacht_brlaser_hullabaloo_README.md +Washington-University_CiftiLib,_Washington-University_CiftiLib_commits.csv,Washington-University_CiftiLib_hullabaloo_README +anymail_django-anymail,_anymail_django-anymail_commits.csv,anymail_django-anymail_hullabaloo_README.rst +virgl_virglrenderer.git,virgl_virglrenderer.git_commits.csv,virgl_virglrenderer.git_hullabaloo_README.md +aio-libs_aiohttp.git,_aio-libs_aiohttp.git_commits.csv,aio-libs_aiohttp.git_hullabaloo_README.rst +rhboot_dumpet.git,_rhboot_dumpet.git_commits.csv,rhboot_dumpet.git_hullabaloo_README +worldforge_wfmath,_worldforge_wfmath_commits.csv,worldforge_wfmath_hullabaloo_README +jupyter_jupyter_console,_jupyter_jupyter_console_commits.csv,jupyter_jupyter_console_hullabaloo_README.md +python-rope_rope,_python-rope_rope_commits.csv,python-rope_rope_hullabaloo_README.txt +valr_cbatticon.git,_valr_cbatticon.git_commits.csv,valr_cbatticon.git_hullabaloo_README +ygrek_ocaml-extlib.git,_ygrek_ocaml-extlib.git_commits.csv,ygrek_ocaml-extlib.git_hullabaloo_README.txt +pure-data_libdir,_pure-data_libdir_commits.csv,pure-data_libdir_hullabaloo_README.txt +Lawouach_WebSocket-for-Python.git,_Lawouach_WebSocket-for-Python.git_commits.csv,Lawouach_WebSocket-for-Python.git_hullabaloo_README +csete_qthid,_csete_qthid_commits.csv,csete_qthid_hullabaloo_README.txt +x42_jack_midi_clock,_x42_jack_midi_clock_commits.csv,x42_jack_midi_clock_hullabaloo_README +TomKellyGenetics_vioplot,_TomKellyGenetics_vioplot_commits.csv,TomKellyGenetics_vioplot_hullabaloo_README.md +ixion_ixion.git,ixion_ixion.git_commits.csv,ixion_ixion.git_hullabaloo_README +rootless-containers_slirp4netns.git,_rootless-containers_slirp4netns.git_commits.csv,rootless-containers_slirp4netns.git_hullabaloo_README.md +shellinabox_shellinabox,shellinabox_shellinabox_commits.csv,shellinabox_shellinabox_hullabaloo_README +box_genty.git,_box_genty.git_commits.csv,box_genty.git_hullabaloo_README.rst +linuxmint_cinnamon-session.git,_linuxmint_cinnamon-session.git_commits.csv,linuxmint_cinnamon-session.git_hullabaloo_README +GNOME_libgit2-glib.git,GNOME_libgit2-glib.git_commits.csv,GNOME_libgit2-glib.git_hullabaloo_README +dimitri_prefix,dimitri_prefix_commits.csv,dimitri_prefix_hullabaloo_README.txt +prawnpdf_pdf-core,_prawnpdf_pdf-core_commits.csv,prawnpdf_pdf-core_hullabaloo_README.md +ocrmypdf_OCRmyPDF.git,_ocrmypdf_OCRmyPDF.git_commits.csv,ocrmypdf_OCRmyPDF.git_hullabaloo_README.md +CDrummond_cantata,_CDrummond_cantata_commits.csv,CDrummond_cantata_hullabaloo_README +anvilresearch_json-document.git,_anvilresearch_json-document.git_commits.csv,anvilresearch_json-document.git_hullabaloo_README.md +compiz_compiz-plugins-extra.git,compiz_compiz-plugins-extra.git_commits.csv,compiz_compiz-plugins-extra.git_hullabaloo_README +Bioconductor_BiocParallel,_Bioconductor_BiocParallel_commits.csv,Bioconductor_BiocParallel_hullabaloo_README.md +AlisterH_gwc.git,_AlisterH_gwc.git_commits.csv,AlisterH_gwc.git_hullabaloo_README +hackebrot_jinja2-time,_hackebrot_jinja2-time_commits.csv,hackebrot_jinja2-time_hullabaloo_README.rst +caml-pkcs11_caml-crush,caml-pkcs11_caml-crush_commits.csv,caml-pkcs11_caml-crush_hullabaloo_README.md +resurrecting-open-source-projects_nbtscan,_resurrecting-open-source-projects_nbtscan_commits.csv,resurrecting-open-source-projects_nbtscan_hullabaloo_README +tych0_xcffib.git,_tych0_xcffib.git_commits.csv,tych0_xcffib.git_hullabaloo_README.md +DonyorM_weresync.git,_DonyorM_weresync.git_commits.csv,DonyorM_weresync.git_hullabaloo_README.rst +libyal_libolecf.git,_libyal_libolecf.git_commits.csv,libyal_libolecf.git_hullabaloo_README +gitpython-developers_gitdb,_gitpython-developers_gitdb_commits.csv,gitpython-developers_gitdb_hullabaloo_README +kblocks.git,kblocks.git_commits.csv,kblocks.git_hullabaloo_README.PACKAGERS +datalad_datalad,datalad_datalad_commits.csv,datalad_datalad_hullabaloo_README.md +accounts-sso_libaccounts-qt.git,accounts-sso_libaccounts-qt.git_commits.csv,accounts-sso_libaccounts-qt.git_hullabaloo_README +mozman_svgwrite.git,_mozman_svgwrite.git_commits.csv,mozman_svgwrite.git_hullabaloo_README.TXT +otsaloma_nfoview,_otsaloma_nfoview_commits.csv,otsaloma_nfoview_hullabaloo_README.translators +korfuri_django-prometheus,_korfuri_django-prometheus_commits.csv,korfuri_django-prometheus_hullabaloo_README.md +iovisor_bpftrace,_iovisor_bpftrace_commits.csv,iovisor_bpftrace_hullabaloo_README.md +avalentino_pyepr.git,_avalentino_pyepr.git_commits.csv,avalentino_pyepr.git_hullabaloo_README.txt +rstudio_crosstalk.git,_rstudio_crosstalk.git_commits.csv,rstudio_crosstalk.git_hullabaloo_README.md +Koed00_django-q,_Koed00_django-q_commits.csv,Koed00_django-q_hullabaloo_README.md +babel_grunt-babel.git,_babel_grunt-babel.git_commits.csv,babel_grunt-babel.git_hullabaloo_README.md +xaicron_p5-JSON-WebToken.git,_xaicron_p5-JSON-WebToken.git_commits.csv,xaicron_p5-JSON-WebToken.git_hullabaloo_README +ericvsmith_toposort,ericvsmith_toposort_commits.csv,ericvsmith_toposort_hullabaloo_README.txt +userspace-rcu.git,userspace-rcu.git_commits.csv,userspace-rcu.git_hullabaloo_README +sumoheavy_jira-ruby,_sumoheavy_jira-ruby_commits.csv,sumoheavy_jira-ruby_hullabaloo_README.markdown +mpounsett_nagiosplugin.git,_mpounsett_nagiosplugin.git_commits.csv,mpounsett_nagiosplugin.git_hullabaloo_README.txt +reduz_zytrax,_reduz_zytrax_commits.csv,reduz_zytrax_hullabaloo_README.md +skymizer_SkyPat,_skymizer_SkyPat_commits.csv,skymizer_SkyPat_hullabaloo_README +warner_python-ecdsa.git,_warner_python-ecdsa.git_commits.csv,warner_python-ecdsa.git_hullabaloo_README +stachenov_quazip.git,_stachenov_quazip.git_commits.csv,stachenov_quazip.git_hullabaloo_README +GNOME_phodav.git,GNOME_phodav.git_commits.csv,GNOME_phodav.git_hullabaloo_README +kilobyte_tran,kilobyte_tran_commits.csv,kilobyte_tran_hullabaloo_README +netty_netty,_netty_netty_commits.csv,netty_netty_hullabaloo_README.md +twbs_bootstrap-sass,_twbs_bootstrap-sass_commits.csv,twbs_bootstrap-sass_hullabaloo_README.md +libosinfo_libosinfo.git,libosinfo_libosinfo.git_commits.csv,libosinfo_libosinfo.git_hullabaloo_README +phpDocumentor_ReflectionDocBlock,_phpDocumentor_ReflectionDocBlock_commits.csv,phpDocumentor_ReflectionDocBlock_hullabaloo_README.md +tbird20d_grabserial,_tbird20d_grabserial_commits.csv,tbird20d_grabserial_hullabaloo_README.md +pympler_pympler.git,_pympler_pympler.git_commits.csv,pympler_pympler.git_hullabaloo_README +kilobyte_compsize,kilobyte_compsize_commits.csv,kilobyte_compsize_hullabaloo_README.md +tlby_netmask,_tlby_netmask_commits.csv,tlby_netmask_hullabaloo_README +isaacs_once.git,_isaacs_once.git_commits.csv,isaacs_once.git_hullabaloo_README.md +merge_tslib-debian,merge_tslib-debian_commits.csv,merge_tslib-debian_hullabaloo_README.md +tox-dev_tox.git,_tox-dev_tox.git_commits.csv,tox-dev_tox.git_hullabaloo_README.txt +mcmtroffaes_latexcodec,_mcmtroffaes_latexcodec_commits.csv,mcmtroffaes_latexcodec_hullabaloo_README.rst +linux-thinkpad_tp_smapi,_linux-thinkpad_tp_smapi_commits.csv,linux-thinkpad_tp_smapi_hullabaloo_README +pytest-dev_apipkg,_pytest-dev_apipkg_commits.csv,pytest-dev_apipkg_hullabaloo_README.txt +exhuma_python-cluster.git,_exhuma_python-cluster.git_commits.csv,exhuma_python-cluster.git_hullabaloo_README +ahoward_open4,_ahoward_open4_commits.csv,ahoward_open4_hullabaloo_README +r0x0r_pywebview,_r0x0r_pywebview_commits.csv,r0x0r_pywebview_hullabaloo_README.md +opencollab_arpack-ng.git,_opencollab_arpack-ng.git_commits.csv,opencollab_arpack-ng.git_hullabaloo_README +zopefoundation_roman,_zopefoundation_roman_commits.csv,zopefoundation_roman_hullabaloo_README.rst +googlei18n_fontmake.git,_googlei18n_fontmake.git_commits.csv,googlei18n_fontmake.git_hullabaloo_README.md +fbb-git_ssh-cron.git,fbb-git_ssh-cron.git_commits.csv,fbb-git_ssh-cron.git_hullabaloo_README +moxie0_sslsniff.git,_moxie0_sslsniff.git_commits.csv,moxie0_sslsniff.git_hullabaloo_README +brummer10_gxtuner,_brummer10_gxtuner_commits.csv,brummer10_gxtuner_hullabaloo_README.md +DarwinAwardWinner_ido-completing-read-plus.git,_DarwinAwardWinner_ido-completing-read-plus.git_commits.csv,DarwinAwardWinner_ido-completing-read-plus.git_hullabaloo_README.md +lxc_python3-lxc.git,_lxc_python3-lxc.git_commits.csv,lxc_python3-lxc.git_hullabaloo_README.md +lwe_entypo-rails,_lwe_entypo-rails_commits.csv,lwe_entypo-rails_hullabaloo_README.md +seattlerb_ruby_parser.git,_seattlerb_ruby_parser.git_commits.csv,seattlerb_ruby_parser.git_hullabaloo_README.txt +Graylog2_gelf-rb,_Graylog2_gelf-rb_commits.csv,Graylog2_gelf-rb_hullabaloo_README.rdoc +ropensci_webmockr.git,_ropensci_webmockr.git_commits.csv,ropensci_webmockr.git_hullabaloo_README.md +GNOME_geocode-glib.git,GNOME_geocode-glib.git_commits.csv,GNOME_geocode-glib.git_hullabaloo_README +supermihi_pytaglib,_supermihi_pytaglib_commits.csv,supermihi_pytaglib_hullabaloo_README +mqttjs_mqtt-packet,_mqttjs_mqtt-packet_commits.csv,mqttjs_mqtt-packet_hullabaloo_README.md +keltia_dmarc-cat.git,_keltia_dmarc-cat.git_commits.csv,keltia_dmarc-cat.git_hullabaloo_README.md +coin-or_Clp,_coin-or_Clp_commits.csv,coin-or_Clp_hullabaloo_README +plasma_kdecoration.git,plasma_kdecoration.git_commits.csv,plasma_kdecoration.git_hullabaloo_README.md +tqdm_tqdm.git,_tqdm_tqdm.git_commits.csv,tqdm_tqdm.git_hullabaloo_README.md +ranger_ranger.git,_ranger_ranger.git_commits.csv,ranger_ranger.git_hullabaloo_README +hiracy_serverspec-runner,_hiracy_serverspec-runner_commits.csv,hiracy_serverspec-runner_hullabaloo_README.md +holylobster_nuntius-linux.git,_holylobster_nuntius-linux.git_commits.csv,holylobster_nuntius-linux.git_hullabaloo_README +alecthomas_devtodo,_alecthomas_devtodo_commits.csv,alecthomas_devtodo_hullabaloo_README +silnrsi_font-andika,_silnrsi_font-andika_commits.csv,silnrsi_font-andika_hullabaloo_README.md +linux-man_caja-mediainfo-tab,_linux-man_caja-mediainfo-tab_commits.csv,linux-man_caja-mediainfo-tab_hullabaloo_README.md +sebastianbergmann_comparator,_sebastianbergmann_comparator_commits.csv,sebastianbergmann_comparator_hullabaloo_README.md +intridea_oauth2,_intridea_oauth2_commits.csv,intridea_oauth2_hullabaloo_README.rdoc +azaghal_pydenticon,_azaghal_pydenticon_commits.csv,azaghal_pydenticon_hullabaloo_README.rst +jeremyevans_sequel_pg.git,_jeremyevans_sequel_pg.git_commits.csv,jeremyevans_sequel_pg.git_hullabaloo_README.rdoc +residuum_PuRestJson.git,_residuum_PuRestJson.git_commits.csv,residuum_PuRestJson.git_hullabaloo_README +Bioconductor_XVector.git,_Bioconductor_XVector.git_commits.csv,Bioconductor_XVector.git_hullabaloo_README.md +chef_ffi-yajl.git,_chef_ffi-yajl.git_commits.csv,chef_ffi-yajl.git_hullabaloo_README.md +KittyKatt_screenFetch.git,_KittyKatt_screenFetch.git_commits.csv,KittyKatt_screenFetch.git_hullabaloo_README +Seldaek_jsonlint,_Seldaek_jsonlint_commits.csv,Seldaek_jsonlint_hullabaloo_README.mdown +python-zeroconf_python-zeroconf.git,_python-zeroconf_python-zeroconf.git_commits.csv,python-zeroconf_python-zeroconf.git_hullabaloo_README +timothycrosley_hug.git,_timothycrosley_hug.git_commits.csv,timothycrosley_hug.git_hullabaloo_README.md +js-cli_fined,_js-cli_fined_commits.csv,js-cli_fined_hullabaloo_README.md +risujin_cellwriter,_risujin_cellwriter_commits.csv,risujin_cellwriter_hullabaloo_README.md +muir_File-Flock.git,_muir_File-Flock.git_commits.csv,muir_File-Flock.git_hullabaloo_README +eavgerinos_pkg-pick,eavgerinos_pkg-pick_commits.csv,eavgerinos_pkg-pick_hullabaloo_README.md +atig_atig,_atig_atig_commits.csv,atig_atig_hullabaloo_README +arcmenu_ArcMenu.git,arcmenu_ArcMenu.git_commits.csv,arcmenu_ArcMenu.git_hullabaloo_README.md +bk138_gromit-mpx.git,_bk138_gromit-mpx.git_commits.csv,bk138_gromit-mpx.git_hullabaloo_README +alsa-ucm-conf.git,alsa-ucm-conf.git_commits.csv,alsa-ucm-conf.git_hullabaloo_README.md +bruce_node-temp,_bruce_node-temp_commits.csv,bruce_node-temp_hullabaloo_README.md +datamapper_do,_datamapper_do_commits.csv,datamapper_do_hullabaloo_README +redis_hiredis-py.git,_redis_hiredis-py.git_commits.csv,redis_hiredis-py.git_hullabaloo_README.md +kanedo_gzstream.git,_kanedo_gzstream.git_commits.csv,kanedo_gzstream.git_hullabaloo_README.md +coringao_runescape,coringao_runescape_commits.csv,coringao_runescape_hullabaloo_README.md +jpadilla_pyjwt.git,_jpadilla_pyjwt.git_commits.csv,jpadilla_pyjwt.git_hullabaloo_README.md +watson-developer-cloud_python-sdk.git,_watson-developer-cloud_python-sdk.git_commits.csv,watson-developer-cloud_python-sdk.git_hullabaloo_README.md +opentyrian_opentyrian.git,_opentyrian_opentyrian.git_commits.csv,opentyrian_opentyrian.git_hullabaloo_README +NielsMayer_mudita24,_NielsMayer_mudita24_commits.csv,NielsMayer_mudita24_hullabaloo_README +Azure_msrestazure-for-python,_Azure_msrestazure-for-python_commits.csv,Azure_msrestazure-for-python_hullabaloo_README.rst +jaldhar_Module-Starter-Plugin-CGIApp,jaldhar_Module-Starter-Plugin-CGIApp_commits.csv,jaldhar_Module-Starter-Plugin-CGIApp_hullabaloo_README +ap_Test-File-Contents.git,_ap_Test-File-Contents.git_commits.csv,ap_Test-File-Contents.git_hullabaloo_README +mdub_sham_rack,_mdub_sham_rack_commits.csv,mdub_sham_rack_hullabaloo_README.markdown +systemd_casync,_systemd_casync_commits.csv,systemd_casync_hullabaloo_README.md +cokelaer_colormap,_cokelaer_colormap_commits.csv,cokelaer_colormap_hullabaloo_README.md +vcr_vcr,_vcr_vcr_commits.csv,_vcr_vcr_README.md +ksquares.git,ksquares.git_commits.csv,ksquares.git_hullabaloo_README +nima_python-dmidecode,_nima_python-dmidecode_commits.csv,nima_python-dmidecode_hullabaloo_README +scikit-learn-contrib_imbalanced-learn.git,_scikit-learn-contrib_imbalanced-learn.git_commits.csv,scikit-learn-contrib_imbalanced-learn.git_hullabaloo_README.md +ninja-build_ninja.git,_ninja-build_ninja.git_commits.csv,ninja-build_ninja.git_hullabaloo_README.markdown +Archive_regexxer,Archive_regexxer_commits.csv,Archive_regexxer_hullabaloo_README +olive-editor_olive,_olive-editor_olive_commits.csv,olive-editor_olive_hullabaloo_README.md +linux-can_can-utils.git,_linux-can_can-utils.git_commits.csv,linux-can_can-utils.git_hullabaloo_README.md +cbm755_octsympy.git,_cbm755_octsympy.git_commits.csv,cbm755_octsympy.git_hullabaloo_README.md +lostisland_faraday_middleware,_lostisland_faraday_middleware_commits.csv,lostisland_faraday_middleware_hullabaloo_README.md +schollii_pypubsub,_schollii_pypubsub_commits.csv,schollii_pypubsub_hullabaloo_README.md +shsorbom_kcmsystemd-debian.git,shsorbom_kcmsystemd-debian.git_commits.csv,shsorbom_kcmsystemd-debian.git_hullabaloo_README.md +thomaslee_spin-debian,thomaslee_spin-debian_commits.csv,thomaslee_spin-debian_hullabaloo_README.html +pristine-lfs-team_pristine-lfs.git,pristine-lfs-team_pristine-lfs.git_commits.csv,pristine-lfs-team_pristine-lfs.git_hullabaloo_README.rst +open-iscsi_open-iscsi.git,_open-iscsi_open-iscsi.git_commits.csv,open-iscsi_open-iscsi.git_hullabaloo_README +jpirko_libteam,_jpirko_libteam_commits.csv,jpirko_libteam_hullabaloo_README +nm-l2tp_debian.git,nm-l2tp_debian.git_commits.csv,nm-l2tp_debian.git_hullabaloo_README.md +wchristian_parse-cpan-packages,_wchristian_parse-cpan-packages_commits.csv,wchristian_parse-cpan-packages_hullabaloo_README +topepo_caret.git,_topepo_caret.git_commits.csv,topepo_caret.git_hullabaloo_README.md +github_version_sorter,_github_version_sorter_commits.csv,github_version_sorter_hullabaloo_README +roland-bless_ps2eps.git,_roland-bless_ps2eps.git_commits.csv,roland-bless_ps2eps.git_hullabaloo_README.md +moose_MooseX-Runnable,_moose_MooseX-Runnable_commits.csv,moose_MooseX-Runnable_hullabaloo_README +horde_webmail.git,_horde_webmail.git_commits.csv,horde_webmail.git_hullabaloo_README +OSGeo_gdal-grass.git,_OSGeo_gdal-grass.git_commits.csv,OSGeo_gdal-grass.git_hullabaloo_README +libvc_rolo,_libvc_rolo_commits.csv,libvc_rolo_hullabaloo_README +hroptatyr_dateutils,_hroptatyr_dateutils_commits.csv,hroptatyr_dateutils_hullabaloo_README.md +pyudev_pyudev,_pyudev_pyudev_commits.csv,pyudev_pyudev_hullabaloo_README.rst +visionmedia_node-fresh.git,_visionmedia_node-fresh.git_commits.csv,visionmedia_node-fresh.git_hullabaloo_README.md +sdg-mit_gitless.git,_sdg-mit_gitless.git_commits.csv,sdg-mit_gitless.git_hullabaloo_README.md +plasma_plasma-workspace-wallpapers.git,plasma_plasma-workspace-wallpapers.git_commits.csv,plasma_plasma-workspace-wallpapers.git_hullabaloo_README.md +siracusa_rose.git,_siracusa_rose.git_commits.csv,siracusa_rose.git_hullabaloo_README.md +tdiary_tdiary-style-gfm,_tdiary_tdiary-style-gfm_commits.csv,tdiary_tdiary-style-gfm_hullabaloo_README.md +fbb-git_oxref,fbb-git_oxref_commits.csv,fbb-git_oxref_hullabaloo_README +astropy_pytest-openfiles,_astropy_pytest-openfiles_commits.csv,astropy_pytest-openfiles_hullabaloo_README.rst +gfx_p5-MouseX-NativeTraits.git,_gfx_p5-MouseX-NativeTraits.git_commits.csv,gfx_p5-MouseX-NativeTraits.git_hullabaloo_README +tpope_vim-pathogen.git,_tpope_vim-pathogen.git_commits.csv,tpope_vim-pathogen.git_hullabaloo_README.markdown +ocaml_dune.git,_ocaml_dune.git_commits.csv,ocaml_dune.git_hullabaloo_README.org +costales_gufw.git,_costales_gufw.git_commits.csv,costales_gufw.git_hullabaloo_README +enferex_pdfresurrect.git,_enferex_pdfresurrect.git_commits.csv,enferex_pdfresurrect.git_hullabaloo_README +GNOME_perl-pango,GNOME_perl-pango_commits.csv,GNOME_perl-pango_hullabaloo_README +alexdantas_nsnake.debian,alexdantas_nsnake.debian_commits.csv,alexdantas_nsnake.debian_hullabaloo_README +pyqtgraph_pyqtgraph.git,_pyqtgraph_pyqtgraph.git_commits.csv,pyqtgraph_pyqtgraph.git_hullabaloo_README +mpruett_audiofile,_mpruett_audiofile_commits.csv,mpruett_audiofile_hullabaloo_README +libyal_libewf-legacy.git,_libyal_libewf-legacy.git_commits.csv,libyal_libewf-legacy.git_hullabaloo_README +Bioconductor_GenomicRanges.git,_Bioconductor_GenomicRanges.git_commits.csv,Bioconductor_GenomicRanges.git_hullabaloo_README.md +LeoIannacone_apt-venv,_LeoIannacone_apt-venv_commits.csv,LeoIannacone_apt-venv_hullabaloo_README.md +digitalbazaar_rdf-canonize.git,_digitalbazaar_rdf-canonize.git_commits.csv,digitalbazaar_rdf-canonize.git_hullabaloo_README.md +processone_eimp.git,_processone_eimp.git_commits.csv,processone_eimp.git_hullabaloo_README.md +mopidy_mopidy-mpris.git,_mopidy_mopidy-mpris.git_commits.csv,mopidy_mopidy-mpris.git_hullabaloo_README.rst +mapbox_snuggs.git,_mapbox_snuggs.git_commits.csv,mapbox_snuggs.git_hullabaloo_README.rst +trivial-features_trivial-features,_trivial-features_trivial-features_commits.csv,trivial-features_trivial-features_hullabaloo_README +ocaml_caml-mode.git,_ocaml_caml-mode.git_commits.csv,ocaml_caml-mode.git_hullabaloo_README.itz +celery_sphinx_celery,_celery_sphinx_celery_commits.csv,celery_sphinx_celery_hullabaloo_README.rst +GNOME_gnome-music,GNOME_gnome-music_commits.csv,GNOME_gnome-music_hullabaloo_README.md +processone_stun.git,_processone_stun.git_commits.csv,processone_stun.git_hullabaloo_README.md +rspivak_httpcode,_rspivak_httpcode_commits.csv,rspivak_httpcode_hullabaloo_README.rst +mate-desktop_mate-sensors-applet.git,_mate-desktop_mate-sensors-applet.git_commits.csv,mate-desktop_mate-sensors-applet.git_hullabaloo_README +csound_csound_pd,_csound_csound_pd_commits.csv,csound_csound_pd_hullabaloo_README.md +ueno_ruby-gpgme,_ueno_ruby-gpgme_commits.csv,ueno_ruby-gpgme_hullabaloo_README +definite_ibus-chewing,_definite_ibus-chewing_commits.csv,definite_ibus-chewing_hullabaloo_README +dbcli_pgspecial,_dbcli_pgspecial_commits.csv,dbcli_pgspecial_hullabaloo_README.rst +gregkh_bti.git,_gregkh_bti.git_commits.csv,gregkh_bti.git_hullabaloo_README +agraef_pd-lua.git,_agraef_pd-lua.git_commits.csv,agraef_pd-lua.git_hullabaloo_README +lxqt_lxqt-sudo.git,_lxqt_lxqt-sudo.git_commits.csv,lxqt_lxqt-sudo.git_hullabaloo_README.md +cablehead_python-consul,_cablehead_python-consul_commits.csv,cablehead_python-consul_hullabaloo_README.md +pauldmccarthy_indexed_gzip.git,_pauldmccarthy_indexed_gzip.git_commits.csv,pauldmccarthy_indexed_gzip.git_hullabaloo_README.md +staging_dune-typetree,staging_dune-typetree_commits.csv,staging_dune-typetree_hullabaloo_README.GIT +altdesktop_playerctl,_altdesktop_playerctl_commits.csv,altdesktop_playerctl_hullabaloo_README.md +jazzband_django-push-notifications,_jazzband_django-push-notifications_commits.csv,jazzband_django-push-notifications_hullabaloo_README.rst +benjaminp_six,_benjaminp_six_commits.csv,benjaminp_six_hullabaloo_README +webpack-contrib_worker-loader.git,_webpack-contrib_worker-loader.git_commits.csv,webpack-contrib_worker-loader.git_hullabaloo_README.md +itamae-kitchen_itamae,_itamae-kitchen_itamae_commits.csv,itamae-kitchen_itamae_hullabaloo_README.md +box_flaky.git,_box_flaky.git_commits.csv,box_flaky.git_hullabaloo_README.rst +dvehrs_podget.git,_dvehrs_podget.git_commits.csv,dvehrs_podget.git_hullabaloo_README +guzzle_guzzle_sphinx_theme.git,_guzzle_guzzle_sphinx_theme.git_commits.csv,guzzle_guzzle_sphinx_theme.git_hullabaloo_README +nrk_redis-lua,_nrk_redis-lua_commits.csv,nrk_redis-lua_hullabaloo_README +libyal_libevt,_libyal_libevt_commits.csv,libyal_libevtx_hullabaloo_README +ardentryst_ardentryst,_ardentryst_ardentryst_commits.csv,ardentryst_ardentryst_hullabaloo_README.txt +inducer_pycuda,_inducer_pycuda_commits.csv,inducer_pycuda_hullabaloo_README_SETUP.txt +amueller_word_cloud,_amueller_word_cloud_commits.csv,amueller_word_cloud_hullabaloo_README.md +tinti_pam-encfs,_tinti_pam-encfs_commits.csv,tinti_pam-encfs_hullabaloo_README +beetbox_pyacoustid.git,_beetbox_pyacoustid.git_commits.csv,beetbox_pyacoustid.git_hullabaloo_README.rst +mathiasbynens_jsesc,_mathiasbynens_jsesc_commits.csv,mathiasbynens_jsesc_hullabaloo_README.md +matthiasbock_dymo-cups-drivers,_matthiasbock_dymo-cups-drivers_commits.csv,matthiasbock_dymo-cups-drivers_hullabaloo_README +lxqt_lxqt-globalkeys.git,_lxqt_lxqt-globalkeys.git_commits.csv,lxqt_lxqt-globalkeys.git_hullabaloo_README.md +somiaj_fvwm2-debian,somiaj_fvwm2-debian_commits.csv,somiaj_fvwm2-debian_hullabaloo_README.md +qiime2_q2templates.git,_qiime2_q2templates.git_commits.csv,qiime2_q2templates.git_hullabaloo_README.md +bitletorg_weupnp.git,_bitletorg_weupnp.git_commits.csv,bitletorg_weupnp.git_hullabaloo_README.md +hanshuebner_cl-github-v3,hanshuebner_cl-github-v3_commits.csv,hanshuebner_cl-github-v3_hullabaloo_README.md +niallo_Unworkable.git,_niallo_Unworkable.git_commits.csv,niallo_Unworkable.git_hullabaloo_README +viraptor_arpy.git,_viraptor_arpy.git_commits.csv,viraptor_arpy.git_hullabaloo_README.md +systemd_python-systemd,_systemd_python-systemd_commits.csv,systemd_python-systemd_hullabaloo_README.md +sciurus_vagrant-mutate,_sciurus_vagrant-mutate_commits.csv,sciurus_vagrant-mutate_hullabaloo_README.md +casacore_python-casacore,_casacore_python-casacore_commits.csv,casacore_python-casacore_hullabaloo_README.txt +mate-desktop_mate-icon-theme.git,_mate-desktop_mate-icon-theme.git_commits.csv,mate-desktop_mate-icon-theme.git_hullabaloo_README +iarna_DBIx-Abstract.git,_iarna_DBIx-Abstract.git_commits.csv,iarna_DBIx-Abstract.git_hullabaloo_README +choehwanjin_repairer,_choehwanjin_repairer_commits.csv,choehwanjin_repairer_hullabaloo_README +sddm_sddm.git,_sddm_sddm.git_commits.csv,sddm_sddm.git_hullabaloo_README +Pylons_waitress.git,_Pylons_waitress.git_commits.csv,Pylons_waitress.git_hullabaloo_README.txt +haakonnessjoen_MACTelnet-Debian-Packaging,haakonnessjoen_MACTelnet-Debian-Packaging_commits.csv,haakonnessjoen_MACTelnet-Debian-Packaging_hullabaloo_README.markdown +muflone_gwakeonlan.git,_muflone_gwakeonlan.git_commits.csv,muflone_gwakeonlan.git_hullabaloo_README +martanne_vis,_martanne_vis_commits.csv,martanne_vis_hullabaloo_README +jarun_bcal.git,_jarun_bcal.git_commits.csv,jarun_bcal.git_hullabaloo_README.md +heynemann_pyvows.git,_heynemann_pyvows.git_commits.csv,heynemann_pyvows.git_hullabaloo_README +mate-desktop_marco.git,_mate-desktop_marco.git_commits.csv,mate-desktop_marco.git_hullabaloo_README +firehol_firehol,_firehol_firehol_commits.csv,firehol_firehol_hullabaloo_README +okbob_pspg,_okbob_pspg_commits.csv,okbob_pspg_hullabaloo_README.md +tax_python-requests-aws,_tax_python-requests-aws_commits.csv,tax_python-requests-aws_hullabaloo_README.md +ubuntubudgie_faba-icon-theme,ubuntubudgie_faba-icon-theme_commits.csv,ubuntubudgie_faba-icon-theme_hullabaloo_README.md +mpld3_mplexporter,_mpld3_mplexporter_commits.csv,mpld3_mplexporter_hullabaloo_README.md +jmdana_memprof,_jmdana_memprof_commits.csv,jmdana_memprof_hullabaloo_README.md +snapcore_snapd-glib,_snapcore_snapd-glib_commits.csv,snapcore_snapd-glib_hullabaloo_README.md +rspivak_slimit.git,_rspivak_slimit.git_commits.csv,rspivak_slimit.git_hullabaloo_README.org +d3_d3-color,_d3_d3-color_commits.csv,d3_d3-color_hullabaloo_README.md +fbb-git_icmake.git,fbb-git_icmake.git_commits.csv,fbb-git_icmake.git_hullabaloo_README +puppetlabs_marionette-collective,_puppetlabs_marionette-collective_commits.csv,puppetlabs_marionette-collective_hullabaloo_README +rentrak_chi-driver-redis,_rentrak_chi-driver-redis_commits.csv,rentrak_chi-driver-redis_hullabaloo_README +python-tap_tappy,_python-tap_tappy_commits.csv,python-tap_tappy_hullabaloo_README.md +wtforms_wtforms.git,_wtforms_wtforms.git_commits.csv,wtforms_wtforms.git_hullabaloo_README.txt +PyAr_fades.git,_PyAr_fades.git_commits.csv,PyAr_fades.git_hullabaloo_README.md +porridge_autorenamer,porridge_autorenamer_commits.csv,porridge_autorenamer_hullabaloo_README +phw_peek.git,_phw_peek.git_commits.csv,phw_peek.git_hullabaloo_README.md +libsigcplusplus_libsigcplusplus.git,_libsigcplusplus_libsigcplusplus.git_commits.csv,libsigcplusplus_libsigcplusplus.git_hullabaloo_README +tkf_emacs-python-environment.git,_tkf_emacs-python-environment.git_commits.csv,tkf_emacs-python-environment.git_hullabaloo_README.rst +xdg_xdg-utils,xdg_xdg-utils_commits.csv,xdg_xdg-utils_hullabaloo_README +puppetlabs_puppetlabs-xinetd,_puppetlabs_puppetlabs-xinetd_commits.csv,puppetlabs_puppetlabs-xinetd_hullabaloo_README +mupen64plus_mupen64plus-core.git,_mupen64plus_mupen64plus-core.git_commits.csv,mupen64plus_mupen64plus-core.git_hullabaloo_README +wavexx_trend,wavexx_trend_commits.csv,wavexx_trend_hullabaloo_README +kohler_gifsicle,_kohler_gifsicle_commits.csv,kohler_gifsicle_hullabaloo_README +chewing_scim-chewing.git,_chewing_scim-chewing.git_commits.csv,chewing_scim-chewing.git_hullabaloo_README +quodlibet_mutagen.git,_quodlibet_mutagen.git_commits.csv,quodlibet_mutagen.git_hullabaloo_README +skeeto_elfeed.git,_skeeto_elfeed.git_commits.csv,skeeto_elfeed.git_hullabaloo_README.md +docker_compose,_docker_compose_commits.csv,docker_compose_hullabaloo_README.md +mde_utilities.git,_mde_utilities.git_commits.csv,mde_utilities.git_hullabaloo_README.md +Unidata_netcdf-cxx4.git,_Unidata_netcdf-cxx4.git_commits.csv,Unidata_netcdf-cxx4.git_hullabaloo_README.md +pim_akonadi-contacts,pim_akonadi-contacts_commits.csv,pim_akonadi-contacts_hullabaloo_README.md +plasma_kscreen.git,plasma_kscreen.git_commits.csv,plasma_kscreen.git_hullabaloo_README +GNOME_xdg-user-dirs-gtk,GNOME_xdg-user-dirs-gtk_commits.csv,GNOME_xdg-user-dirs-gtk_hullabaloo_README +astropy_astroplan.git,_astropy_astroplan.git_commits.csv,astropy_astroplan.git_hullabaloo_README.rst +jfhbrook_pyee,_jfhbrook_pyee_commits.csv,jfhbrook_pyee_hullabaloo_README.rst +plasma_drkonqi.git,plasma_drkonqi.git_commits.csv,plasma_drkonqi.git_hullabaloo_README.pam +GothenburgBitFactory_tasklib.git,_GothenburgBitFactory_tasklib.git_commits.csv,GothenburgBitFactory_tasklib.git_hullabaloo_README.rst +TheLocehiliosan_yadm,_TheLocehiliosan_yadm_commits.csv,TheLocehiliosan_yadm_hullabaloo_README.md +nichtich_Catmandu-Importer-getJSON.git,_nichtich_Catmandu-Importer-getJSON.git_commits.csv,nichtich_Catmandu-Importer-getJSON.git_hullabaloo_README.md +nvbn_thefuck.git,_nvbn_thefuck.git_commits.csv,nvbn_thefuck.git_hullabaloo_README.md +google_double-conversion.git,_google_double-conversion.git_commits.csv,google_double-conversion.git_hullabaloo_README +kpn-digital_django-etcd-settings,_kpn-digital_django-etcd-settings_commits.csv,kpn-digital_django-etcd-settings_hullabaloo_README.md +libyal_libscca,_libyal_libscca_commits.csv,libyal_libscca_hullabaloo_README +palortoff_pass-extension-tail,_palortoff_pass-extension-tail_commits.csv,palortoff_pass-extension-tail_hullabaloo_README.md +pydata_patsy,_pydata_patsy_commits.csv,pydata_patsy_hullabaloo_README +erikrose_more-itertools,_erikrose_more-itertools_commits.csv,erikrose_more-itertools_hullabaloo_README.rst +eslint_eslint-scope.git,_eslint_eslint-scope.git_commits.csv,eslint_eslint-scope.git_hullabaloo_README.md +cosmos72_detachtty.git,_cosmos72_detachtty.git_commits.csv,cosmos72_detachtty.git_hullabaloo_README +jupyter_notebook.git,_jupyter_notebook.git_commits.csv,jupyter_notebook.git_hullabaloo_README.md +rcairo_rcairo,_rcairo_rcairo_commits.csv,rcairo_rcairo_hullabaloo_README +amoffat_sh,_amoffat_sh_commits.csv,amoffat_sh_hullabaloo_README.md +shibukawa_imagesize_py,_shibukawa_imagesize_py_commits.csv,shibukawa_imagesize_py_hullabaloo_README.rst +craneworks_python-ipcalc,craneworks_python-ipcalc_commits.csv,craneworks_python-ipcalc_hullabaloo_README.source +mfontanini_libtins.git,_mfontanini_libtins.git_commits.csv,mfontanini_libtins.git_hullabaloo_README +sebastianbergmann_phpcpd,_sebastianbergmann_phpcpd_commits.csv,sebastianbergmann_phpcpd_hullabaloo_README.markdown +davebarr_dnswalk.git,_davebarr_dnswalk.git_commits.csv,davebarr_dnswalk.git_hullabaloo_README +Ultimaker_libSavitar.git,_Ultimaker_libSavitar.git_commits.csv,Ultimaker_libSavitar.git_hullabaloo_README.txt +rakitzis_rc,_rakitzis_rc_commits.csv,rakitzis_rc_hullabaloo_README +pimutils_vdirsyncer,_pimutils_vdirsyncer_commits.csv,pimutils_vdirsyncer_hullabaloo_README.md +disco-stu_pg-rage-terminator-pkg,disco-stu_pg-rage-terminator-pkg_commits.csv,disco-stu_pg-rage-terminator-pkg_hullabaloo_README +mate-desktop_mate-system-monitor.git,_mate-desktop_mate-system-monitor.git_commits.csv,mate-desktop_mate-system-monitor.git_hullabaloo_README +openalpr_openalpr,openalpr_openalpr_commits.csv,openalpr_openalpr_hullabaloo_README.md +smuellerDD_jitterentropy-rngd,_smuellerDD_jitterentropy-rngd_commits.csv,smuellerDD_jitterentropy-rngd_hullabaloo_README.md +ShawnDEvans_smbmap.git,_ShawnDEvans_smbmap.git_commits.csv,ShawnDEvans_smbmap.git_hullabaloo_README.md +Perl-Critic_Test-Perl-Critic.git,_Perl-Critic_Test-Perl-Critic.git_commits.csv,Perl-Critic_Test-Perl-Critic.git_hullabaloo_README +grantma_py-magcode-core,grantma_py-magcode-core_commits.csv,grantma_py-magcode-core_hullabaloo_README +ricmoo_pyaes.git,_ricmoo_pyaes.git_commits.csv,ricmoo_pyaes.git_hullabaloo_README.md +matrix-org_matrix-synapse-ldap3,_matrix-org_matrix-synapse-ldap3_commits.csv,matrix-org_matrix-synapse-ldap3_hullabaloo_README.rst +edmonds_ifupdown-multi,edmonds_ifupdown-multi_commits.csv,edmonds_ifupdown-multi_hullabaloo_README.md +git_aldo.git,git_aldo.git_commits.csv,git_aldo.git_hullabaloo_README +chrisk_fakeweb.git,_chrisk_fakeweb.git_commits.csv,chrisk_fakeweb.git_hullabaloo_README +jschaf_pylint-flask,_jschaf_pylint-flask_commits.csv,jschaf_pylint-flask_hullabaloo_README.md +Abigail_end.git,_Abigail_end.git_commits.csv,Abigail_end.git_hullabaloo_README +lessthanoptimal_ejml,_lessthanoptimal_ejml_commits.csv,lessthanoptimal_ejml_hullabaloo_README.TXT +JulienPalard_logtop,JulienPalard_logtop_commits.csv,JulienPalard_logtop_hullabaloo_README +saghul_aiodns.git,_saghul_aiodns.git_commits.csv,saghul_aiodns.git_hullabaloo_README.rst +mate-desktop_mate-power-manager.git,_mate-desktop_mate-power-manager.git_commits.csv,mate-desktop_mate-power-manager.git_hullabaloo_README +libpwquality_libpwquality.git,_libpwquality_libpwquality.git_commits.csv,libpwquality_libpwquality.git_hullabaloo_README +flori_tins.git,_flori_tins.git_commits.csv,flori_tins.git_hullabaloo_README +silx-kit_fabio.git,_silx-kit_fabio.git_commits.csv,silx-kit_fabio.git_hullabaloo_README +datawraith_ascii85gem,_datawraith_ascii85gem_commits.csv,datawraith_ascii85gem_hullabaloo_README.txt +micromatch_parse-glob,_micromatch_parse-glob_commits.csv,micromatch_parse-glob_hullabaloo_README.md +bolt_bolt,bolt_bolt_commits.csv,bolt_bolt_hullabaloo_README.md +kmatheussen_radium_compressor.git,_kmatheussen_radium_compressor.git_commits.csv,kmatheussen_radium_compressor.git_hullabaloo_README +ganglia_gmetric4j,ganglia_gmetric4j_commits.csv,ganglia_gmetric4j_hullabaloo_README +batctl.git,batctl.git_commits.csv,batctl.git_hullabaloo_README +regebro_tzlocal,_regebro_tzlocal_commits.csv,regebro_tzlocal_hullabaloo_README.rst +rastersoft_terminus,rastersoft_terminus_commits.csv,rastersoft_terminus_hullabaloo_README +nikic_PHP-Parser,_nikic_PHP-Parser_commits.csv,nikic_PHP-Parser_hullabaloo_README +bjking1_iprutils,_bjking1_iprutils_commits.csv,bjking1_iprutils_hullabaloo_README +tmuxinator_tmuxinator,_tmuxinator_tmuxinator_commits.csv,tmuxinator_tmuxinator_hullabaloo_README.rdoc +kurtraschke_pyRFC3339,_kurtraschke_pyRFC3339_commits.csv,kurtraschke_pyRFC3339_hullabaloo_README.rst +GNOME_policykit-gnome,GNOME_policykit-gnome_commits.csv,GNOME_policykit-gnome_hullabaloo_README +RazerM_ratelimiter,_RazerM_ratelimiter_commits.csv,RazerM_ratelimiter_hullabaloo_README.md +dahlia_libsass-python.git,_dahlia_libsass-python.git_commits.csv,dahlia_libsass-python.git_hullabaloo_README +lxqt_lxqt-powermanagement.git,_lxqt_lxqt-powermanagement.git_commits.csv,lxqt_lxqt-powermanagement.git_hullabaloo_README.md +requirejs_text,_requirejs_text_commits.csv,requirejs_text_hullabaloo_README.md +chad3814_CSSStyleDeclaration.git,_chad3814_CSSStyleDeclaration.git_commits.csv,chad3814_CSSStyleDeclaration.git_hullabaloo_README.md +anse1_sqlsmith,anse1_sqlsmith_commits.csv,anse1_sqlsmith_hullabaloo_README.org +mkdocs_mkdocs,_mkdocs_mkdocs_commits.csv,mkdocs_mkdocs_hullabaloo_README.md +jib_term-ui.git,_jib_term-ui.git_commits.csv,jib_term-ui.git_hullabaloo_README +strengejacke_ggeffects.git,_strengejacke_ggeffects.git_commits.csv,strengejacke_ggeffects.git_hullabaloo_README.md +mmottl_ocaml-makefile.git,_mmottl_ocaml-makefile.git_commits.csv,mmottl_ocaml-makefile.git_hullabaloo_README +gmantele_taplib.git,_gmantele_taplib.git_commits.csv,gmantele_taplib.git_hullabaloo_README +babel_gulp-babel.git,_babel_gulp-babel.git_commits.csv,babel_gulp-babel.git_hullabaloo_README.md +rsyslog_librelp,_rsyslog_librelp_commits.csv,rsyslog_librelp_hullabaloo_README +drmuey_p5-Locales.git,_drmuey_p5-Locales.git_commits.csv,drmuey_p5-Locales.git_hullabaloo_README +boto_boto3,_boto_boto3_commits.csv,boto_boto3_hullabaloo_README.rst +Tom-McDermott_gr-hpsdr,_Tom-McDermott_gr-hpsdr_commits.csv,Tom-McDermott_gr-hpsdr_hullabaloo_README.md +rsyslog_libestr.git,_rsyslog_libestr.git_commits.csv,rsyslog_libestr.git_hullabaloo_README +jquast_blessed,_jquast_blessed_commits.csv,jquast_blessed_hullabaloo_README.rst +argonaut_libpoe-component-server-jsonrpc,argonaut_libpoe-component-server-jsonrpc_commits.csv,argonaut_libpoe-component-server-jsonrpc_hullabaloo_README +Storyyeller_enjarify,_Storyyeller_enjarify_commits.csv,Storyyeller_enjarify_hullabaloo_README.md +msktutil_msktutil,_msktutil_msktutil_commits.csv,msktutil_msktutil_hullabaloo_README +pub_scm_network_connman_connman.git,pub_scm_network_connman_connman.git_commits.csv,pub_scm_network_connman_connman.git_hullabaloo_README +etingof_pyasn1-modules.git,_etingof_pyasn1-modules.git_commits.csv,etingof_pyasn1-modules.git_hullabaloo_README.txt +bestpractical_rt-extension-repeatticket,_bestpractical_rt-extension-repeatticket_commits.csv,bestpractical_rt-extension-repeatticket_hullabaloo_README.pod +celery_vine,_celery_vine_commits.csv,celery_vine_hullabaloo_README.rst +processone_erlang-sqlite3.git,_processone_erlang-sqlite3.git_commits.csv,processone_erlang-sqlite3.git_hullabaloo_README.rst +ekg_tabixpp.git,_ekg_tabixpp.git_commits.csv,ekg_tabixpp.git_hullabaloo_README +csmith-project_csmith.git,_csmith-project_csmith.git_commits.csv,csmith-project_csmith.git_hullabaloo_README +khenriks_mp3fs.git,_khenriks_mp3fs.git_commits.csv,khenriks_mp3fs.git_hullabaloo_README +igrigorik_em-synchrony,_igrigorik_em-synchrony_commits.csv,igrigorik_em-synchrony_hullabaloo_README.md +ignitionrobotics_ign-cmake.git,_ignitionrobotics_ign-cmake.git_commits.csv,ignitionrobotics_ign-cmake.git_hullabaloo_README.md +savonet_ocaml-shine.git,_savonet_ocaml-shine.git_commits.csv,savonet_ocaml-shine.git_hullabaloo_README +celery_kombu,_celery_kombu_commits.csv,celery_kombu_hullabaloo_README +dunst-project_dunst,_dunst-project_dunst_commits.csv,dunst-project_dunst_hullabaloo_README +tlsa_libcyaml.git,_tlsa_libcyaml.git_commits.csv,tlsa_libcyaml.git_hullabaloo_README.md +boto_s3transfer,_boto_s3transfer_commits.csv,boto_s3transfer_hullabaloo_README.md +edenhill_kcat,edenhill_kcat_commits.csv,edenhill_kcat_hullabaloo_README.md +benschneider_PyGnuplot,_benschneider_PyGnuplot_commits.csv,benschneider_PyGnuplot_hullabaloo_README.txt +mate-desktop_python-caja.git,_mate-desktop_python-caja.git_commits.csv,mate-desktop_python-caja.git_hullabaloo_README +kilobyte_termrec,kilobyte_termrec_commits.csv,kilobyte_termrec_hullabaloo_README +tianon_cgroupfs-mount,tianon_cgroupfs-mount_commits.csv,tianon_cgroupfs-mount_hullabaloo_README.md +derek73_python-nameparser,_derek73_python-nameparser_commits.csv,derek73_python-nameparser_hullabaloo_README.rst +xdg_xdg-user-dirs.git,xdg_xdg-user-dirs.git_commits.csv,xdg_xdg-user-dirs.git_hullabaloo_README +kaminari_kaminari,_kaminari_kaminari_commits.csv,kaminari_kaminari_hullabaloo_README.rdoc +fplll_fpylll.git,_fplll_fpylll.git_commits.csv,fplll_fpylll.git_hullabaloo_README.rst +coddingtonbear_python-measurement,_coddingtonbear_python-measurement_commits.csv,coddingtonbear_python-measurement_hullabaloo_README.rst +kfourinline.git,kfourinline.git_commits.csv,kfourinline.git_hullabaloo_README +editorconfig_editorconfig-core-c.git,_editorconfig_editorconfig-core-c.git_commits.csv,editorconfig_editorconfig-core-c.git_hullabaloo_README.md +thp_minidb.git,_thp_minidb.git_commits.csv,thp_minidb.git_hullabaloo_README +libosinfo_osinfo-db.git,libosinfo_osinfo-db.git_commits.csv,libosinfo_osinfo-db.git_hullabaloo_README +joke2k_faker,_joke2k_faker_commits.csv,joke2k_faker_hullabaloo_README.md +df7cb_pg_snakeoil,df7cb_pg_snakeoil_commits.csv,df7cb_pg_snakeoil_hullabaloo_README.md +treasure-data_serverengine.git,_treasure-data_serverengine.git_commits.csv,treasure-data_serverengine.git_hullabaloo_README.md +mobile-broadband_libqmi.git,mobile-broadband_libqmi.git_commits.csv,mobile-broadband_libqmi.git_hullabaloo_README +ropensci_taxize.git,_ropensci_taxize.git_commits.csv,ropensci_taxize.git_hullabaloo_README +rolinh_dfc,_rolinh_dfc_commits.csv,rolinh_dfc_hullabaloo_README +jonschlinkert_mixin-deep.git,_jonschlinkert_mixin-deep.git_commits.csv,jonschlinkert_mixin-deep.git_hullabaloo_README.md +Pulse-Eight_platform.git,_Pulse-Eight_platform.git_commits.csv,Pulse-Eight_platform.git_hullabaloo_README.md +urllib3_urllib3,_urllib3_urllib3_commits.csv,urllib3_urllib3_hullabaloo_README.txt +zopefoundation_zope.testing,_zopefoundation_zope.testing_commits.csv,zopefoundation_zope.testing_hullabaloo_README.txt +alexmurray_indicator-sensors.git,_alexmurray_indicator-sensors.git_commits.csv,alexmurray_indicator-sensors.git_hullabaloo_README +npm_nopt,_npm_nopt_commits.csv,npm_nopt_hullabaloo_README.md +h5netcdf_h5netcdf.git,_h5netcdf_h5netcdf.git_commits.csv,h5netcdf_h5netcdf.git_hullabaloo_README.rst +venthur_python-debianbts,venthur_python-debianbts_commits.csv,venthur_python-debianbts_hullabaloo_README.md +redis_hiredis-rb.git,_redis_hiredis-rb.git_commits.csv,redis_hiredis-rb.git_hullabaloo_README.md +pub_scm_libs_libgpiod_libgpiod.git,pub_scm_libs_libgpiod_libgpiod.git_commits.csv,pub_scm_libs_libgpiod_libgpiod.git_hullabaloo_README +tianon_gosu.git,_tianon_gosu.git_commits.csv,tianon_gosu.git_hullabaloo_README.md +google_gemmlowp,_google_gemmlowp_commits.csv,google_gemmlowp_hullabaloo_README.txt +imZack_modem-cmd.git,_imZack_modem-cmd.git_commits.csv,imZack_modem-cmd.git_hullabaloo_README.md +tijsverkoyen_CssToInlineStyles,_tijsverkoyen_CssToInlineStyles_commits.csv,tijsverkoyen_CssToInlineStyles_hullabaloo_README.md +ya-mouse_fatresize,_ya-mouse_fatresize_commits.csv,ya-mouse_fatresize_hullabaloo_README +captin411_ofxclient,_captin411_ofxclient_commits.csv,captin411_ofxclient_hullabaloo_README.md +mate-desktop_engrampa.git,_mate-desktop_engrampa.git_commits.csv,mate-desktop_engrampa.git_hullabaloo_README +iustin_pylibacl,_iustin_pylibacl_commits.csv,iustin_pylibacl_hullabaloo_README +LanguageMachines_timbl.git,_LanguageMachines_timbl.git_commits.csv,LanguageMachines_timbl.git_hullabaloo_README.md +dimitri_pgloader,dimitri_pgloader_commits.csv,dimitri_pgloader_hullabaloo_README.md +fzumstein_nose-random,_fzumstein_nose-random_commits.csv,fzumstein_nose-random_hullabaloo_README.md +karlkleinpaste_biblesync.git,_karlkleinpaste_biblesync.git_commits.csv,karlkleinpaste_biblesync.git_hullabaloo_README.md +coringao_blastem,coringao_blastem_commits.csv,coringao_blastem_hullabaloo_README +kazu-yamamoto_pgpdump.git,_kazu-yamamoto_pgpdump.git_commits.csv,kazu-yamamoto_pgpdump.git_hullabaloo_README +PyFilesystem_pyfilesystem2,_PyFilesystem_pyfilesystem2_commits.csv,PyFilesystem_pyfilesystem2_hullabaloo_README.txt +qwinff_qwinff,_qwinff_qwinff_commits.csv,qwinff_qwinff_hullabaloo_README.txt +bomber.git,bomber.git_commits.csv,bomber.git_hullabaloo_README.themes +libraries_qca.git,libraries_qca.git_commits.csv,libraries_qca.git_hullabaloo_README +scottkosty_vit.git,_scottkosty_vit.git_commits.csv,scottkosty_vit.git_hullabaloo_README +johanmattssonm_xmlbird.git,_johanmattssonm_xmlbird.git_commits.csv,johanmattssonm_xmlbird.git_hullabaloo_README.md +qoobaa_magic,_qoobaa_magic_commits.csv,qoobaa_magic_hullabaloo_README.rdoc +pallets_werkzeug,_pallets_werkzeug_commits.csv,pallets_werkzeug_hullabaloo_README +include-what-you-use_include-what-you-use,_include-what-you-use_include-what-you-use_commits.csv,include-what-you-use_include-what-you-use_hullabaloo_README.txt +pinax_pinax-notifications,_pinax_pinax-notifications_commits.csv,pinax_pinax-notifications_hullabaloo_README +GNOME_gjs.git,GNOME_gjs.git_commits.csv,GNOME_gjs.git_hullabaloo_README +rush.git,rush.git_commits.csv,rush.git_hullabaloo_README +ronaldoussoren_macholib,_ronaldoussoren_macholib_commits.csv,ronaldoussoren_macholib_hullabaloo_README.txt +hamcrest_PyHamcrest,_hamcrest_PyHamcrest_commits.csv,hamcrest_PyHamcrest_hullabaloo_README +Bioconductor_Rsamtools.git,_Bioconductor_Rsamtools.git_commits.csv,Bioconductor_Rsamtools.git_hullabaloo_README +exoscale_cs,_exoscale_cs_commits.csv,exoscale_cs_hullabaloo_README.rst +n2ygk_aprsdigi.git,_n2ygk_aprsdigi.git_commits.csv,n2ygk_aprsdigi.git_hullabaloo_README +ros-perception_vision_opencv,_ros-perception_vision_opencv_commits.csv,ros-perception_vision_opencv_hullabaloo_README +zeromq_pyzmq.git,_zeromq_pyzmq.git_commits.csv,zeromq_pyzmq.git_hullabaloo_README.rst +nose-devs_nose2.git,_nose-devs_nose2.git_commits.csv,nose-devs_nose2.git_hullabaloo_README.rst +hamcrest_hamcrest-php.git,_hamcrest_hamcrest-php.git_commits.csv,hamcrest_hamcrest-php.git_hullabaloo_README.txt +swaywm_wlroots,_swaywm_wlroots_commits.csv,swaywm_wlroots_hullabaloo_README.md +PerlGameDev_Alien-SDL.git,_PerlGameDev_Alien-SDL.git_commits.csv,PerlGameDev_Alien-SDL.git_hullabaloo_README +dgl_re-engine-RE2.git,_dgl_re-engine-RE2.git_commits.csv,dgl_re-engine-RE2.git_hullabaloo_README +tango-controls_pytango,tango-controls_pytango_commits.csv,tango-controls_pytango_hullabaloo_README-IPython.rst +mopidy_mopidy-alsamixer,_mopidy_mopidy-alsamixer_commits.csv,mopidy_mopidy-alsamixer_hullabaloo_README.rst +compiz_compiz-plugins-experimental.git,compiz_compiz-plugins-experimental.git_commits.csv,compiz_compiz-plugins-experimental.git_hullabaloo_README +rfc1036_rblcheck,rfc1036_rblcheck_commits.csv,rfc1036_rblcheck_hullabaloo_README +compiz_compiz-core.git,compiz_compiz-core.git_commits.csv,compiz_compiz-core.git_hullabaloo_README +runehaubo_lmerTestR.git,_runehaubo_lmerTestR.git_commits.csv,runehaubo_lmerTestR.git_hullabaloo_README.md +orcasgit_python-fitbit,_orcasgit_python-fitbit_commits.csv,orcasgit_python-fitbit_hullabaloo_README +connorimes_powercap,connorimes_powercap_commits.csv,connorimes_powercap_hullabaloo_README.md +resque_redis-namespace,_resque_redis-namespace_commits.csv,resque_redis-namespace_hullabaloo_README +sphinx-contrib_spelling,_sphinx-contrib_spelling_commits.csv,sphinx-contrib_spelling_hullabaloo_README +disqus_django-bitfield,_disqus_django-bitfield_commits.csv,disqus_django-bitfield_hullabaloo_README.rst +tkem_uritools,_tkem_uritools_commits.csv,tkem_uritools_hullabaloo_README.md +elmar_dh-dist-zilla,elmar_dh-dist-zilla_commits.csv,elmar_dh-dist-zilla_hullabaloo_README.markdown +ddcci-driver-linux_ddcci-driver-linux.git,ddcci-driver-linux_ddcci-driver-linux.git_commits.csv,ddcci-driver-linux_ddcci-driver-linux.git_hullabaloo_README.md +accounts-sso_signon-plugin-oauth2.git,accounts-sso_signon-plugin-oauth2.git_commits.csv,accounts-sso_signon-plugin-oauth2.git_hullabaloo_README.md +rfc1036_gup,rfc1036_gup_commits.csv,rfc1036_gup_hullabaloo_README +haiwen_seafile-client.git,_haiwen_seafile-client.git_commits.csv,haiwen_seafile-client.git_hullabaloo_README.md +GNOME_libgxps.git,GNOME_libgxps.git_commits.csv,GNOME_libgxps.git_hullabaloo_README +zzak_sdoc.git,_zzak_sdoc.git_commits.csv,zzak_sdoc.git_hullabaloo_README +barseghyanartur_transliterate,_barseghyanartur_transliterate_commits.csv,barseghyanartur_transliterate_hullabaloo_README.rst +spice_spice-gtk.git,spice_spice-gtk.git_commits.csv,spice_spice-gtk.git_hullabaloo_README +cedadev_ndg_httpsclient,_cedadev_ndg_httpsclient_commits.csv,cedadev_ndg_httpsclient_hullabaloo_README +kjd_idna,_kjd_idna_commits.csv,kjd_idna_hullabaloo_README.md +kochstefan_usbauth-all.git,_kochstefan_usbauth-all.git_commits.csv,kochstefan_usbauth-all.git_hullabaloo_README +laminas_laminas-stdlib,_laminas_laminas-stdlib_commits.csv,laminas_laminas-stdlib_hullabaloo_README.md +manisandro_qtspell.git,_manisandro_qtspell.git_commits.csv,manisandro_qtspell.git_hullabaloo_README.md +marcelm_alignlib.git,_marcelm_alignlib.git_commits.csv,marcelm_alignlib.git_hullabaloo_README.md +jmk-foofus_medusa,_jmk-foofus_medusa_commits.csv,jmk-foofus_medusa_hullabaloo_README.md +andrikos_kismet-debian,andrikos_kismet-debian_commits.csv,andrikos_kismet-debian_hullabaloo_README +kilobyte_3270font,kilobyte_3270font_commits.csv,kilobyte_3270font_hullabaloo_README.md +anthon38_gmailfeed.git,_anthon38_gmailfeed.git_commits.csv,anthon38_gmailfeed.git_hullabaloo_README.md +WoLpH_numpy-stl,_WoLpH_numpy-stl_commits.csv,WoLpH_numpy-stl_hullabaloo_README.rst +Bumblebee-Project_bbswitch,_Bumblebee-Project_bbswitch_commits.csv,Bumblebee-Project_bbswitch_hullabaloo_README.md +nijel_utidylib.git,_nijel_utidylib.git_commits.csv,nijel_utidylib.git_hullabaloo_README.txt +bgoglin_lltag,bgoglin_lltag_commits.csv,bgoglin_lltag_hullabaloo_README +libyal_libfwsi.git,_libyal_libfwsi.git_commits.csv,libyal_libfwsi.git_hullabaloo_README +mailgun_dnsq.git,_mailgun_dnsq.git_commits.csv,mailgun_dnsq.git_hullabaloo_README.md +tiwai_awesfx.git,_tiwai_awesfx.git_commits.csv,tiwai_awesfx.git_hullabaloo_README +prometheus_client_python.git,_prometheus_client_python.git_commits.csv,prometheus_client_python.git_hullabaloo_README.md +astanin_python-tabulate.git,_astanin_python-tabulate.git_commits.csv,astanin_python-tabulate.git_hullabaloo_README.rst +deeptools_deeptools_intervals,_deeptools_deeptools_intervals_commits.csv,deeptools_deeptools_intervals_hullabaloo_README.md +tamarou_magpie.git,_tamarou_magpie.git_commits.csv,tamarou_magpie.git_hullabaloo_README +heynemann_preggy,_heynemann_preggy_commits.csv,heynemann_preggy_hullabaloo_README.md +glaubitz_gkrellm-cpufreq-debian,glaubitz_gkrellm-cpufreq-debian_commits.csv,glaubitz_gkrellm-cpufreq-debian_hullabaloo_README +alexdantas_xbomb.debian,alexdantas_xbomb.debian_commits.csv,alexdantas_xbomb.debian_hullabaloo_README +seattlerb_ruby2ruby.git,_seattlerb_ruby2ruby.git_commits.csv,seattlerb_ruby2ruby.git_hullabaloo_README.txt +PacificBiosciences_pbcommand,_PacificBiosciences_pbcommand_commits.csv,PacificBiosciences_pbcommand_hullabaloo_README.md +OpenPrinting_pycups.git,_OpenPrinting_pycups.git_commits.csv,OpenPrinting_pycups.git_hullabaloo_README +kjetilk_RDF-Helper-Properties.git,_kjetilk_RDF-Helper-Properties.git_commits.csv,kjetilk_RDF-Helper-Properties.git_hullabaloo_README +sebholt_qastools,sebholt_qastools_commits.csv,sebholt_qastools_hullabaloo_README +credativ_pg_checksums.git,_credativ_pg_checksums.git_commits.csv,credativ_pg_checksums.git_hullabaloo_README.md +zeromq_czmq.git,_zeromq_czmq.git_commits.csv,zeromq_czmq.git_hullabaloo_README.txt +Kyorai_cuttlefish.git,_Kyorai_cuttlefish.git_commits.csv,Kyorai_cuttlefish.git_hullabaloo_README.md +python-trio_trio,_python-trio_trio_commits.csv,python-trio_trio_hullabaloo_README.rst +mongoengine_flask-mongoengine,_mongoengine_flask-mongoengine_commits.csv,mongoengine_flask-mongoengine_hullabaloo_README.rst +markokr_rarfile.git,_markokr_rarfile.git_commits.csv,markokr_rarfile.git_hullabaloo_README +sudipm-mukherjee_systune.git,sudipm-mukherjee_systune.git_commits.csv,sudipm-mukherjee_systune.git_hullabaloo_README +ionelmc_python-tblib,_ionelmc_python-tblib_commits.csv,ionelmc_python-tblib_hullabaloo_README.rst +libyal_libmsiecf.git,_libyal_libmsiecf.git_commits.csv,libyal_libmsiecf.git_hullabaloo_README +MagicStack_httptools.git,_MagicStack_httptools.git_commits.csv,MagicStack_httptools.git_hullabaloo_README.md +libimobiledevice_ideviceinstaller.git,_libimobiledevice_ideviceinstaller.git_commits.csv,libimobiledevice_ideviceinstaller.git_hullabaloo_README +python-greenlet_greenlet,_python-greenlet_greenlet_commits.csv,python-greenlet_greenlet_hullabaloo_README.txt +snare_voltron.git,_snare_voltron.git_commits.csv,snare_voltron.git_hullabaloo_README.md +wertarbyte_triggerhappy,wertarbyte_triggerhappy_commits.csv,wertarbyte_triggerhappy_hullabaloo_README +brunonova_drmips,brunonova_drmips_commits.csv,brunonova_drmips_hullabaloo_README.mdown +gitlab-org_mmap2,gitlab-org_mmap2_commits.csv,gitlab-org_mmap2_hullabaloo_README.en +dnephin_PyStaticConfiguration,_dnephin_PyStaticConfiguration_commits.csv,dnephin_PyStaticConfiguration_hullabaloo_README.md +analogdevicesinc_libiio.git,_analogdevicesinc_libiio.git_commits.csv,analogdevicesinc_libiio.git_hullabaloo_README.md +leggewie-DM_n2n,leggewie-DM_n2n_commits.csv,leggewie-DM_n2n_hullabaloo_README +ruby_curses.git,_ruby_curses.git_commits.csv,ruby_curses.git_hullabaloo_README.md +andk_devel-symdump,_andk_devel-symdump_commits.csv,andk_devel-symdump_hullabaloo_README +linuxmint_cinnamon.git,_linuxmint_cinnamon.git_commits.csv,linuxmint_cinnamon.git_hullabaloo_README +Cyan4973_xxHash,_Cyan4973_xxHash_commits.csv,Cyan4973_xxHash_hullabaloo_README.md +phpDocumentor_ReflectionCommon,_phpDocumentor_ReflectionCommon_commits.csv,phpDocumentor_ReflectionCommon_hullabaloo_README.md +theseer_fDOMDocument,_theseer_fDOMDocument_commits.csv,theseer_fDOMDocument_hullabaloo_README.md +pyauth_pyotp.git,_pyauth_pyotp.git_commits.csv,pyauth_pyotp.git_hullabaloo_README.markdown +mllg_checkmate.git,_mllg_checkmate.git_commits.csv,mllg_checkmate.git_hullabaloo_README.md +oauthlib_oauthlib,_oauthlib_oauthlib_commits.csv,oauthlib_oauthlib_hullabaloo_README.rst +dakk_FreeAlchemist,_dakk_FreeAlchemist_commits.csv,dakk_FreeAlchemist_hullabaloo_README.source +rails_sprockets.git,_rails_sprockets.git_commits.csv,rails_sprockets.git_hullabaloo_README.markdown +bear_python-twitter.git,_bear_python-twitter.git_commits.csv,bear_python-twitter.git_hullabaloo_README.md +savonet_ocaml-alsa.git,_savonet_ocaml-alsa.git_commits.csv,savonet_ocaml-alsa.git_hullabaloo_README +alex_pretend,_alex_pretend_commits.csv,alex_pretend_hullabaloo_README.rst +rurban_Filter,_rurban_Filter_commits.csv,rurban_Filter_hullabaloo_README +karenetheridge_B-Hooks-Parser.git,_karenetheridge_B-Hooks-Parser.git_commits.csv,karenetheridge_B-Hooks-Parser.git_hullabaloo_README.pod +savonet_ocaml-vorbis.git,_savonet_ocaml-vorbis.git_commits.csv,savonet_ocaml-vorbis.git_hullabaloo_README +OpenHMD_OpenHMD,_OpenHMD_OpenHMD_commits.csv,OpenHMD_OpenHMD_hullabaloo_README +apache_curator.git,_apache_curator.git_commits.csv,apache_curator.git_hullabaloo_README.rdoc.txt +jbfavre_python-protobix,_jbfavre_python-protobix_commits.csv,jbfavre_python-protobix_hullabaloo_README.md +aio-libs_aiohttp-cors.git,_aio-libs_aiohttp-cors.git_commits.csv,aio-libs_aiohttp-cors.git_hullabaloo_README.md +AndrewIngram_django-extra-views,_AndrewIngram_django-extra-views_commits.csv,AndrewIngram_django-extra-views_hullabaloo_README +teamcapybara_xpath.git,_teamcapybara_xpath.git_commits.csv,teamcapybara_xpath.git_hullabaloo_README.rdoc +hughsie_libxmlb.git,_hughsie_libxmlb.git_commits.csv,hughsie_libxmlb.git_hullabaloo_README.md +rncbc_synthv1.git,_rncbc_synthv1.git_commits.csv,rncbc_synthv1.git_hullabaloo_README +nitrokey_libnitrokey.git,_nitrokey_libnitrokey.git_commits.csv,nitrokey_libnitrokey.git_hullabaloo_README.md +sipwise_data-hal.git,_sipwise_data-hal.git_commits.csv,sipwise_data-hal.git_hullabaloo_README +gsakkis_pytrie,_gsakkis_pytrie_commits.csv,gsakkis_pytrie_hullabaloo_README.md +waywardgeek_sonic,_waywardgeek_sonic_commits.csv,waywardgeek_sonic_hullabaloo_README +ceres-solver_ceres-solver.git,_ceres-solver_ceres-solver.git_commits.csv,ceres-solver_ceres-solver.git_hullabaloo_README +jupyter_nbconvert,_jupyter_nbconvert_commits.csv,jupyter_nbconvert_hullabaloo_README.md +bkeepers_dotenv,_bkeepers_dotenv_commits.csv,bkeepers_dotenv_hullabaloo_README.md +jaymzh_concordance.git,_jaymzh_concordance.git_commits.csv,jaymzh_concordance.git_hullabaloo_README +jazzband_inflect.git,_jazzband_inflect.git_commits.csv,jazzband_inflect.git_hullabaloo_README.txt +theturtle32_WebSocket-Node,_theturtle32_WebSocket-Node_commits.csv,theturtle32_WebSocket-Node_hullabaloo_README.md +astropy_montage-wrapper,_astropy_montage-wrapper_commits.csv,astropy_montage-wrapper_hullabaloo_README +World_lollypop.git,World_lollypop.git_commits.csv,World_lollypop.git_hullabaloo_README +ComplianceAsCode_content,_ComplianceAsCode_content_commits.csv,ComplianceAsCode_content_hullabaloo_README +varnish_varnish-modules.git,_varnish_varnish-modules.git_commits.csv,varnish_varnish-modules.git_hullabaloo_README.rst +mu-editor_mu,_mu-editor_mu_commits.csv,mu-editor_mu_hullabaloo_README.rst +sbabic_swupdate,_sbabic_swupdate_commits.csv,sbabic_swupdate_hullabaloo_README +benoitc_http-parser,_benoitc_http-parser_commits.csv,benoitc_http-parser_hullabaloo_README.rst +dask_dask,_dask_dask_commits.csv,dask_dask_hullabaloo_README.rst +Azure_msrest-for-python,_Azure_msrest-for-python_commits.csv,Azure_msrest-for-python_hullabaloo_README.rst +mathiasbynens_unicode-tr51,_mathiasbynens_unicode-tr51_commits.csv,mathiasbynens_unicode-tr51_hullabaloo_README.md +jashkenas_underscore.git,_jashkenas_underscore.git_commits.csv,jashkenas_underscore.git_hullabaloo_README +radcli_radcli,_radcli_radcli_commits.csv,radcli_radcli_hullabaloo_README.radexample +jshttp_content-disposition.git,_jshttp_content-disposition.git_commits.csv,jshttp_content-disposition.git_hullabaloo_README.md +varnish_hitch,_varnish_hitch_commits.csv,varnish_hitch_hullabaloo_README.md +bamf,bamf_commits.csv,bamf_hullabaloo_README +isaacs_isexe,_isaacs_isexe_commits.csv,isaacs_isexe_hullabaloo_README.md +GNOME_gnome-contacts.git,GNOME_gnome-contacts.git_commits.csv,GNOME_gnome-contacts.git_hullabaloo_README +jgoerzen_simplesnap,jgoerzen_simplesnap_commits.csv,jgoerzen_simplesnap_hullabaloo_README.txt +npm_abbrev-js,_npm_abbrev-js_commits.csv,npm_abbrev-js_hullabaloo_README.md +hanslub42_rlwrap,_hanslub42_rlwrap_commits.csv,hanslub42_rlwrap_hullabaloo_README +PierreRaybaut_PythonQwt.git,_PierreRaybaut_PythonQwt.git_commits.csv,PierreRaybaut_PythonQwt.git_hullabaloo_README +59naga_babel-plugin-add-module-exports,_59naga_babel-plugin-add-module-exports_commits.csv,59naga_babel-plugin-add-module-exports_hullabaloo_README.md +jupyter_jupyter_core,_jupyter_jupyter_core_commits.csv,jupyter_jupyter_core_hullabaloo_README.md +GNOME_gnome-online-accounts.git,GNOME_gnome-online-accounts.git_commits.csv,GNOME_gnome-online-accounts.git_hullabaloo_README +slezica_python-frozendict.git,_slezica_python-frozendict.git_commits.csv,slezica_python-frozendict.git_hullabaloo_README.txt +rurban_DBD-SQLite2,_rurban_DBD-SQLite2_commits.csv,rurban_DBD-SQLite2_hullabaloo_README +cloudpipe_cloudpickle,_cloudpipe_cloudpickle_commits.csv,cloudpipe_cloudpickle_hullabaloo_README.md +regebro_hovercraft,_regebro_hovercraft_commits.csv,regebro_hovercraft_hullabaloo_README.md +webhippie_gettext_i18n_rails_js,_webhippie_gettext_i18n_rails_js_commits.csv,webhippie_gettext_i18n_rails_js_hullabaloo_README.md +IndigoUnited_node-cross-spawn-async.git,_IndigoUnited_node-cross-spawn-async.git_commits.csv,IndigoUnited_node-cross-spawn-async.git_hullabaloo_README.md +jupyter_jupyter-sphinx-theme,_jupyter_jupyter-sphinx-theme_commits.csv,jupyter_jupyter-sphinx-theme_hullabaloo_README.rst +pobrn_mktorrent,_pobrn_mktorrent_commits.csv,pobrn_mktorrent_hullabaloo_README +benhoyt_scandir,_benhoyt_scandir_commits.csv,benhoyt_scandir_hullabaloo_README.md +jshttp_on-finished,_jshttp_on-finished_commits.csv,jshttp_on-finished_hullabaloo_README.md +ronaldoussoren_altgraph,_ronaldoussoren_altgraph_commits.csv,ronaldoussoren_altgraph_hullabaloo_README.txt +jeremyevans_minitest-shared_description,_jeremyevans_minitest-shared_description_commits.csv,jeremyevans_minitest-shared_description_hullabaloo_README.rdoc +ruby-prof_ruby-prof,_ruby-prof_ruby-prof_commits.csv,ruby-prof_ruby-prof_hullabaloo_README +MostAwesomeDude_txWS,_MostAwesomeDude_txWS_commits.csv,MostAwesomeDude_txWS_hullabaloo_README.rst +jkeenan_file-save-home,_jkeenan_file-save-home_commits.csv,jkeenan_file-save-home_hullabaloo_README +vsergeev_u-msgpack-python,_vsergeev_u-msgpack-python_commits.csv,vsergeev_u-msgpack-python_hullabaloo_README.md +bfirsh_django-ordered-model.git,_bfirsh_django-ordered-model.git_commits.csv,bfirsh_django-ordered-model.git_hullabaloo_README.markdown +broadinstitute_gatk-native-bindings,_broadinstitute_gatk-native-bindings_commits.csv,broadinstitute_gatk-native-bindings_hullabaloo_README.md +neurodebian_pkg-xppaut,neurodebian_pkg-xppaut_commits.csv,neurodebian_pkg-xppaut_hullabaloo_README +psi-im_psi-l10n.git,_psi-im_psi-l10n.git_commits.csv,psi-im_psi-l10n.git_hullabaloo_README.md +hobarrera_sphinx-autorun,_hobarrera_sphinx-autorun_commits.csv,hobarrera_sphinx-autorun_hullabaloo_README +rabbitvcs_rabbitvcs.git,_rabbitvcs_rabbitvcs.git_commits.csv,rabbitvcs_rabbitvcs.git_hullabaloo_README +JazzCore_python-pdfkit,_JazzCore_python-pdfkit_commits.csv,JazzCore_python-pdfkit_hullabaloo_README.rst +tpm2-software_tpm2-abrmd.git,_tpm2-software_tpm2-abrmd.git_commits.csv,tpm2-software_tpm2-abrmd.git_hullabaloo_README +mati75_volumeicon-debian.git,mati75_volumeicon-debian.git_commits.csv,mati75_volumeicon-debian.git_hullabaloo_README +maxbachmann_python-Levenshtein,_maxbachmann_python-Levenshtein_commits.csv,maxbachmann_python-Levenshtein_hullabaloo_README.md +lxqt_lxqt-openssh-askpass.git,_lxqt_lxqt-openssh-askpass.git_commits.csv,lxqt_lxqt-openssh-askpass.git_hullabaloo_README +xavierleroy_camlidl,_xavierleroy_camlidl_commits.csv,xavierleroy_camlidl_hullabaloo_README +saltstack_libnacl.git,_saltstack_libnacl.git_commits.csv,saltstack_libnacl.git_hullabaloo_README.md +gfx_Perl-Module-Install-XSUtil.git,_gfx_Perl-Module-Install-XSUtil.git_commits.csv,gfx_Perl-Module-Install-XSUtil.git_hullabaloo_README +jawnsy_Math-Random-ISAAC-XS.git,_jawnsy_Math-Random-ISAAC-XS.git_commits.csv,jawnsy_Math-Random-ISAAC-XS.git_hullabaloo_README +hakaishi_shutdown-qapps,hakaishi_shutdown-qapps_commits.csv,hakaishi_shutdown-qapps_hullabaloo_README +python-llfuse_python-llfuse.git,_python-llfuse_python-llfuse.git_commits.csv,python-llfuse_python-llfuse.git_hullabaloo_README.txt +guilleiguaran_fakeredis.git,_guilleiguaran_fakeredis.git_commits.csv,guilleiguaran_fakeredis.git_hullabaloo_README.md +accounts-sso_signond.git,accounts-sso_signond.git_commits.csv,accounts-sso_signond.git_hullabaloo_README +andrew-bibb_cmst.git,_andrew-bibb_cmst.git_commits.csv,andrew-bibb_cmst.git_hullabaloo_README.md +rolandshoemaker_CommonMark-py,_rolandshoemaker_CommonMark-py_commits.csv,rolandshoemaker_CommonMark-py_hullabaloo_README.md +thlorenz_convert-source-map,_thlorenz_convert-source-map_commits.csv,thlorenz_convert-source-map_hullabaloo_README.md +matthewwithanm_django-imagekit.git,_matthewwithanm_django-imagekit.git_commits.csv,matthewwithanm_django-imagekit.git_hullabaloo_README.md +invisibleroads_socketIO-client,_invisibleroads_socketIO-client_commits.csv,invisibleroads_socketIO-client_hullabaloo_README.rst +adrianlopezroche_fdupes.git,_adrianlopezroche_fdupes.git_commits.csv,adrianlopezroche_fdupes.git_hullabaloo_README +chorny_MLDBM.git,_chorny_MLDBM.git_commits.csv,chorny_MLDBM.git_hullabaloo_README +lxde_pcmanfm,_lxde_pcmanfm_commits.csv,lxde_pcmanfm_hullabaloo_README +fiete201_python-pypeg2-debian,fiete201_python-pypeg2-debian_commits.csv,fiete201_python-pypeg2-debian_hullabaloo_README.txt +sybrenstuvel_python-rsa,_sybrenstuvel_python-rsa_commits.csv,sybrenstuvel_python-rsa_hullabaloo_README +fog_fog-rackspace,_fog_fog-rackspace_commits.csv,fog_fog-rackspace_hullabaloo_README.md +uqfoundation_dill,_uqfoundation_dill_commits.csv,uqfoundation_dill_hullabaloo_README +dfaust_soundkonverter.git,_dfaust_soundkonverter.git_commits.csv,dfaust_soundkonverter.git_hullabaloo_README +mozilla_dryice,_mozilla_dryice_commits.csv,mozilla_dryice_hullabaloo_README.md +Pylons_pyramid_chameleon,_Pylons_pyramid_chameleon_commits.csv,Pylons_pyramid_chameleon_hullabaloo_README.txt +jodal_pykka.git,_jodal_pykka.git_commits.csv,jodal_pykka.git_hullabaloo_README.rst +tinfoil_devise-two-factor.git,_tinfoil_devise-two-factor.git_commits.csv,tinfoil_devise-two-factor.git_hullabaloo_README.md +maxtepkeev_python-redmine.git,_maxtepkeev_python-redmine.git_commits.csv,maxtepkeev_python-redmine.git_hullabaloo_README.md +isaacs_node-glob.git,_isaacs_node-glob.git_commits.csv,isaacs_node-glob.git_hullabaloo_README +influxdata_influxdb-python,_influxdata_influxdb-python_commits.csv,influxdata_influxdb-python_hullabaloo_README.md +ukui_ukui-themes,ukui_ukui-themes_commits.csv,ukui_ukui-themes_hullabaloo_README +felixge_node-formidable.git,_felixge_node-formidable.git_commits.csv,felixge_node-formidable.git_hullabaloo_README.md +smurfix_flask-script,_smurfix_flask-script_commits.csv,smurfix_flask-script_hullabaloo_README +alphallc_ruby-fcgi-ng,_alphallc_ruby-fcgi-ng_commits.csv,alphallc_ruby-fcgi-ng_hullabaloo_README.rdoc +python-hyper_uritemplate.git,_python-hyper_uritemplate.git_commits.csv,python-hyper_uritemplate.git_hullabaloo_README.rst +dagolden_class-insideout.git,_dagolden_class-insideout.git_commits.csv,dagolden_class-insideout.git_hullabaloo_README +doctormo_python-crontab,doctormo_python-crontab_commits.csv,doctormo_python-crontab_hullabaloo_README +jaalto_project--copyright-update,_jaalto_project--copyright-update_commits.csv,jaalto_project--copyright-update_hullabaloo_README +thomaslee_capnproto-debian,thomaslee_capnproto-debian_commits.csv,thomaslee_capnproto-debian_hullabaloo_README.txt +lmj_lparallel,lmj_lparallel_commits.csv,lmj_lparallel_hullabaloo_README +ollyg_Net-LDAP-FilterBuilder.git,_ollyg_Net-LDAP-FilterBuilder.git_commits.csv,ollyg_Net-LDAP-FilterBuilder.git_hullabaloo_README +rollup_plugins,_rollup_plugins_commits.csv,rollup_plugins_hullabaloo_README.md +rncbc_padthv1.git,_rncbc_padthv1.git_commits.csv,rncbc_padthv1.git_hullabaloo_README +Gnonthgol_sosi2osm.git,_Gnonthgol_sosi2osm.git_commits.csv,Gnonthgol_sosi2osm.git_hullabaloo_README.md +flyingcircusio_pycountry,_flyingcircusio_pycountry_commits.csv,flyingcircusio_pycountry_hullabaloo_README.txt +pytroll_pyorbital.git,_pytroll_pyorbital.git_commits.csv,pytroll_pyorbital.git_hullabaloo_README +lastpass_lastpass-cli,_lastpass_lastpass-cli_commits.csv,lastpass_lastpass-cli_hullabaloo_README.md +kevin1024_vcrpy,_kevin1024_vcrpy_commits.csv,kevin1024_vcrpy_hullabaloo_README.md +rroemhild_flask-ldapconn,_rroemhild_flask-ldapconn_commits.csv,rroemhild_flask-ldapconn_hullabaloo_README.rst +node-modules_address.git,_node-modules_address.git_commits.csv,node-modules_address.git_hullabaloo_README.md +jeanparpaillon_averell,jeanparpaillon_averell_commits.csv,jeanparpaillon_averell_hullabaloo_README.md +twekkel_htpdate,_twekkel_htpdate_commits.csv,twekkel_htpdate_hullabaloo_README +uim_uim-chewing,_uim_uim-chewing_commits.csv,uim_uim-chewing_hullabaloo_README +w3c-social_activipy,_w3c-social_activipy_commits.csv,w3c-social_activipy_hullabaloo_README.org +njsmith_colorspacious.git,_njsmith_colorspacious.git_commits.csv,njsmith_colorspacious.git_hullabaloo_README.md +neithere_argh.git,_neithere_argh.git_commits.csv,neithere_argh.git_hullabaloo_README +fuzzylite_fuzzylite,_fuzzylite_fuzzylite_commits.csv,fuzzylite_fuzzylite_hullabaloo_README +mlpack_ensmallen,_mlpack_ensmallen_commits.csv,mlpack_ensmallen_hullabaloo_README.md +deckar01_task_list.git,_deckar01_task_list.git_commits.csv,deckar01_task_list.git_hullabaloo_README.md +jenisys_parse_type,_jenisys_parse_type_commits.csv,jenisys_parse_type_hullabaloo_README.rst +accounts-sso_libsignon-glib.git,accounts-sso_libsignon-glib.git_commits.csv,accounts-sso_libsignon-glib.git_hullabaloo_README +rvagg_node-errno,_rvagg_node-errno_commits.csv,rvagg_node-errno_hullabaloo_README.md +astropy_pytest-remotedata,_astropy_pytest-remotedata_commits.csv,astropy_pytest-remotedata_hullabaloo_README.rst +jeffreykegler_Marpa--R2.git,_jeffreykegler_Marpa--R2.git_commits.csv,jeffreykegler_Marpa--R2.git_hullabaloo_README +r-spatial_sf,_r-spatial_sf_commits.csv,r-spatial_sf_hullabaloo_README.md +RIPE-NCC_ripe.atlas.sagan,_RIPE-NCC_ripe.atlas.sagan_commits.csv,RIPE-NCC_ripe.atlas.sagan_hullabaloo_README.md +wavexx_fgallery,wavexx_fgallery_commits.csv,wavexx_fgallery_hullabaloo_README +ocamllabs_ocaml-ctypes.git,_ocamllabs_ocaml-ctypes.git_commits.csv,ocamllabs_ocaml-ctypes.git_hullabaloo_README.md +horde_groupware.git,_horde_groupware.git_commits.csv,horde_groupware.git_hullabaloo_README +intridea_multi_json,_intridea_multi_json_commits.csv,intridea_multi_json_hullabaloo_README.rdoc +Bioconductor_IRanges.git,_Bioconductor_IRanges.git_commits.csv,Bioconductor_IRanges.git_hullabaloo_README.md +Parchive_par2cmdline.git,_Parchive_par2cmdline.git_commits.csv,Parchive_par2cmdline.git_hullabaloo_README +pytoolz_toolz.git,_pytoolz_toolz.git_commits.csv,pytoolz_toolz.git_hullabaloo_README.md +thlorenz_inline-source-map.git,_thlorenz_inline-source-map.git_commits.csv,thlorenz_inline-source-map.git_hullabaloo_README.md +thlorenz_combine-source-map.git,_thlorenz_combine-source-map.git_commits.csv,thlorenz_combine-source-map.git_hullabaloo_README.md +zsh-users_antigen,_zsh-users_antigen_commits.csv,zsh-users_antigen_hullabaloo_README.mkd +joshuaulrich_xts.git,_joshuaulrich_xts.git_commits.csv,joshuaulrich_xts.git_hullabaloo_README +ravinet_mahimahi,ravinet_mahimahi_commits.csv,ravinet_mahimahi_hullabaloo_README.md +coleifer_wtf-peewee,_coleifer_wtf-peewee_commits.csv,coleifer_wtf-peewee_hullabaloo_README.md +indutny_node-ip,_indutny_node-ip_commits.csv,indutny_node-ip_hullabaloo_README.md +mintchaos_typogrify,_mintchaos_typogrify_commits.csv,mintchaos_typogrify_hullabaloo_README.markdown +Changaco_python-libarchive-c.git,_Changaco_python-libarchive-c.git_commits.csv,Changaco_python-libarchive-c.git_hullabaloo_README.rst +ojuba-org_othman.git,_ojuba-org_othman.git_commits.csv,ojuba-org_othman.git_hullabaloo_README-ar.txt +kjetilk_p5-atteanx-store-sparql.git,_kjetilk_p5-atteanx-store-sparql.git_commits.csv,kjetilk_p5-atteanx-store-sparql.git_hullabaloo_README.pod +emcconville_wand,_emcconville_wand_commits.csv,emcconville_wand_hullabaloo_README.rst +GNOME_dconf-editor.git,GNOME_dconf-editor.git_commits.csv,GNOME_dconf-editor.git_hullabaloo_README +ericflo_django-pagination,_ericflo_django-pagination_commits.csv,ericflo_django-pagination_hullabaloo_README.txt +Toilal_rebulk,_Toilal_rebulk_commits.csv,Toilal_rebulk_hullabaloo_README.rst +cnanakos_kmodpy,cnanakos_kmodpy_commits.csv,cnanakos_kmodpy_hullabaloo_README +goodvibes_goodvibes.git,goodvibes_goodvibes.git_commits.csv,goodvibes_goodvibes.git_hullabaloo_README.md +perl-catalyst_Catalyst-Authentication-Credential-HTTP,_perl-catalyst_Catalyst-Authentication-Credential-HTTP_commits.csv,perl-catalyst_Catalyst-Authentication-Credential-HTTP_hullabaloo_README +ronsavage_CGI-Session-ExpireSessions,_ronsavage_CGI-Session-ExpireSessions_commits.csv,ronsavage_CGI-Session-ExpireSessions_hullabaloo_README +chrender_fizmo-ncursesw,chrender_fizmo-ncursesw_commits.csv,chrender_fizmo-ncursesw_hullabaloo_README.txt +kjetilk_RDF-Generator-Void.git,_kjetilk_RDF-Generator-Void.git_commits.csv,kjetilk_RDF-Generator-Void.git_hullabaloo_README +AccelerationNet_cl-csv,_AccelerationNet_cl-csv_commits.csv,AccelerationNet_cl-csv_hullabaloo_README.md +sslmate_certspotter,_sslmate_certspotter_commits.csv,sslmate_certspotter_hullabaloo_README +jazzband_django-sortedm2m.git,_jazzband_django-sortedm2m.git_commits.csv,jazzband_django-sortedm2m.git_hullabaloo_README.txt +dmc_gfal2,dmc_gfal2_commits.csv,dmc_gfal2_hullabaloo_README +dpocock_python-netsyslog,dpocock_python-netsyslog_commits.csv,dpocock_python-netsyslog_hullabaloo_README +compiz_ccsm.git,compiz_ccsm.git_commits.csv,compiz_ccsm.git_hullabaloo_README +spice_usbredir.git,spice_usbredir.git_commits.csv,spice_usbredir.git_hullabaloo_README +mitya57_secretstorage,_mitya57_secretstorage_commits.csv,mitya57_secretstorage_hullabaloo_README.rst +gpertea_gclib,_gpertea_gclib_commits.csv,gpertea_gclib_hullabaloo_README.md +justinmc_react-audio-player.git,_justinmc_react-audio-player.git_commits.csv,justinmc_react-audio-player.git_hullabaloo_README.md +libyal_liblnk,_libyal_liblnk_commits.csv,libyal_liblnk_hullabaloo_README +technicalpickles_homesick,_technicalpickles_homesick_commits.csv,technicalpickles_homesick_hullabaloo_README.rdoc +maddingue_SNMP-Extension-PassPersist.git,_maddingue_SNMP-Extension-PassPersist.git_commits.csv,maddingue_SNMP-Extension-PassPersist.git_hullabaloo_README +alexmyczko_modplug-tools,_alexmyczko_modplug-tools_commits.csv,alexmyczko_modplug-tools_hullabaloo_README +splattael_minitest-around,_splattael_minitest-around_commits.csv,splattael_minitest-around_hullabaloo_README.rdoc +biolab_serverfiles,_biolab_serverfiles_commits.csv,biolab_serverfiles_hullabaloo_README.txt +mschout_apache-singleton.git,_mschout_apache-singleton.git_commits.csv,mschout_apache-singleton.git_hullabaloo_README +python-hyper_h11.git,_python-hyper_h11.git_commits.csv,python-hyper_h11.git_hullabaloo_README.rst +wolever_parameterized,_wolever_parameterized_commits.csv,wolever_parameterized_hullabaloo_README.rst +danthedeckie_simpleeval.git,_danthedeckie_simpleeval.git_commits.csv,danthedeckie_simpleeval.git_hullabaloo_README.rst +FreeOpcUa_python-opcua,_FreeOpcUa_python-opcua_commits.csv,FreeOpcUa_python-opcua_hullabaloo_README +lumean_svg-graph2,_lumean_svg-graph2_commits.csv,lumean_svg-graph2_hullabaloo_README.txt +mate-desktop_mate-user-share.git,_mate-desktop_mate-user-share.git_commits.csv,mate-desktop_mate-user-share.git_hullabaloo_README.md +brendangregg_perf-tools,_brendangregg_perf-tools_commits.csv,brendangregg_perf-tools_hullabaloo_README.md +xdg_xdg-sound-theme,xdg_xdg-sound-theme_commits.csv,xdg_xdg-sound-theme_hullabaloo_README +pim_grantleetheme,pim_grantleetheme_commits.csv,pim_grantleetheme_hullabaloo_README.md +debian-calibre_html5-parser,debian-calibre_html5-parser_commits.csv,debian-calibre_html5-parser_hullabaloo_README.rst +miquels_liblockfile-debian,miquels_liblockfile-debian_commits.csv,miquels_liblockfile-debian_hullabaloo_README.md +audreyt_module-signature.git,_audreyt_module-signature.git_commits.csv,audreyt_module-signature.git_hullabaloo_README +obriencj_meanwhile.git,_obriencj_meanwhile.git_commits.csv,obriencj_meanwhile.git_hullabaloo_README +vpelletier_python-libusb1.git,_vpelletier_python-libusb1.git_commits.csv,vpelletier_python-libusb1.git_hullabaloo_README +Grokzen_redis-py-cluster,_Grokzen_redis-py-cluster_commits.csv,Grokzen_redis-py-cluster_hullabaloo_README.md +lttng-ust.git,lttng-ust.git_commits.csv,lttng-ust.git_hullabaloo_README +swanandp_acts_as_list,_swanandp_acts_as_list_commits.csv,swanandp_acts_as_list_hullabaloo_README +mongodb_motor,_mongodb_motor_commits.csv,mongodb_motor_hullabaloo_README.md +jhawthorn_fzy,_jhawthorn_fzy_commits.csv,jhawthorn_fzy_hullabaloo_README.md +libevent_libevent,_libevent_libevent_commits.csv,libevent_libevent_hullabaloo_README +bbatsov_powerpack.git,_bbatsov_powerpack.git_commits.csv,bbatsov_powerpack.git_hullabaloo_README.md +orocos_orocos-bayesian-filtering,_orocos_orocos-bayesian-filtering_commits.csv,orocos_orocos-bayesian-filtering_hullabaloo_README +matthew-brett_sphinxtesters.git,_matthew-brett_sphinxtesters.git_commits.csv,matthew-brett_sphinxtesters.git_hullabaloo_README.rst +sebastianbergmann_object-enumerator,_sebastianbergmann_object-enumerator_commits.csv,sebastianbergmann_object-enumerator_hullabaloo_README.md +php-fig_http-message,_php-fig_http-message_commits.csv,php-fig_http-message_hullabaloo_README.md +rthalley_dnspython.git,_rthalley_dnspython.git_commits.csv,rthalley_dnspython.git_hullabaloo_README +MTecknology_tdc,MTecknology_tdc_commits.csv,MTecknology_tdc_hullabaloo_README +spanezz_staticsite,_spanezz_staticsite_commits.csv,spanezz_staticsite_hullabaloo_README.md +kolf.git,kolf.git_commits.csv,kolf.git_hullabaloo_README.pool +djberg96_pathname2,_djberg96_pathname2_commits.csv,djberg96_pathname2_hullabaloo_README +orocos_orocos_kinematics_dynamics.git,_orocos_orocos_kinematics_dynamics.git_commits.csv,orocos_orocos_kinematics_dynamics.git_hullabaloo_README.txt +savonet_ocaml-duppy.git,_savonet_ocaml-duppy.git_commits.csv,savonet_ocaml-duppy.git_hullabaloo_README +FedoraQt_adwaita-qt.git,_FedoraQt_adwaita-qt.git_commits.csv,FedoraQt_adwaita-qt.git_hullabaloo_README.md +jkeenan_list-compare.git,_jkeenan_list-compare.git_commits.csv,jkeenan_list-compare.git_hullabaloo_README +Ableton_link.git,_Ableton_link.git_commits.csv,Ableton_link.git_hullabaloo_README.md +Yubico_yubikey-manager.git,_Yubico_yubikey-manager.git_commits.csv,Yubico_yubikey-manager.git_hullabaloo_README +ukui_ukui-window-switch,ukui_ukui-window-switch_commits.csv,ukui_ukui-window-switch_hullabaloo_README +tidyverse_hms,_tidyverse_hms_commits.csv,tidyverse_hms_hullabaloo_README.md +GNOME_dconf.git,GNOME_dconf.git_commits.csv,GNOME_dconf.git_hullabaloo_README +redis_hiredis,_redis_hiredis_commits.csv,redis_hiredis-py.git_hullabaloo_README.md +Ranks_emojione,_Ranks_emojione_commits.csv,Ranks_emojione_hullabaloo_README.md +jonschlinkert_window-size,_jonschlinkert_window-size_commits.csv,jonschlinkert_window-size_hullabaloo_README.md +wedesoft_aiscm,wedesoft_aiscm_commits.csv,wedesoft_aiscm_hullabaloo_README.md +libigl_triangle.git,_libigl_triangle.git_commits.csv,libigl_triangle.git_hullabaloo_README +astropy_astropy-healpix,_astropy_astropy-healpix_commits.csv,astropy_astropy-healpix_hullabaloo_README.md +kelektiv_node-uuid,_kelektiv_node-uuid_commits.csv,kelektiv_node-uuid_hullabaloo_README.md +maxmind_geoipupdate,_maxmind_geoipupdate_commits.csv,maxmind_geoipupdate_hullabaloo_README.md +Castaglia_proftpd-mod_case.git,_Castaglia_proftpd-mod_case.git_commits.csv,Castaglia_proftpd-mod_case.git_hullabaloo_README +prometheus_pushgateway,_prometheus_pushgateway_commits.csv,prometheus_pushgateway_hullabaloo_README.md +caseman_noise.git,_caseman_noise.git_commits.csv,caseman_noise.git_hullabaloo_README.txt +zapier_django-rest-hooks,_zapier_django-rest-hooks_commits.csv,zapier_django-rest-hooks_hullabaloo_README.md +node-xmpp_node-stringprep,_node-xmpp_node-stringprep_commits.csv,node-xmpp_node-stringprep_hullabaloo_README.markdown +pyjokes_pyjokes,_pyjokes_pyjokes_commits.csv,pyjokes_pyjokes_hullabaloo_README.md +yawning_obfs4.git,yawning_obfs4.git_commits.csv,yawning_obfs4.git_hullabaloo_README.md +jbenc_plotnetcfg.git,_jbenc_plotnetcfg.git_commits.csv,jbenc_plotnetcfg.git_hullabaloo_README +pwr_Solaar.git,_pwr_Solaar.git_commits.csv,pwr_Solaar.git_hullabaloo_README +resurrecting-open-source-projects_openrdate,_resurrecting-open-source-projects_openrdate_commits.csv,resurrecting-open-source-projects_openrdate_hullabaloo_README +ukui_ukui-indicators,ukui_ukui-indicators_commits.csv,ukui_ukui-indicators_hullabaloo_README.md +django-ldapdb_django-ldapdb,_django-ldapdb_django-ldapdb_commits.csv,django-ldapdb_django-ldapdb_hullabaloo_README +xiaoyeli_superlu.git,_xiaoyeli_superlu.git_commits.csv,xiaoyeli_superlu.git_hullabaloo_README +droe_sslsplit,_droe_sslsplit_commits.csv,droe_sslsplit_hullabaloo_README +chibisov_drf-extensions.git,_chibisov_drf-extensions.git_commits.csv,chibisov_drf-extensions.git_hullabaloo_README.md +typester_www-google-calculator-perl.git,_typester_www-google-calculator-perl.git_commits.csv,typester_www-google-calculator-perl.git_hullabaloo_README +nelhage_reptyr,nelhage_reptyr_commits.csv,nelhage_reptyr_hullabaloo_README +core_dune-geometry,core_dune-geometry_commits.csv,core_dune-geometry_hullabaloo_README +lepture_mistune,_lepture_mistune_commits.csv,lepture_mistune_hullabaloo_README.rst +pickleshare_pickleshare,_pickleshare_pickleshare_commits.csv,pickleshare_pickleshare_hullabaloo_README.txt +brodie_cram,_brodie_cram_commits.csv,brodie_cram_hullabaloo_README.txt +globocom_derpconf,_globocom_derpconf_commits.csv,globocom_derpconf_hullabaloo_README.md +voxpupuli_beaker,_voxpupuli_beaker_commits.csv,voxpupuli_beaker_hullabaloo_README +worldforge_mercator,_worldforge_mercator_commits.csv,worldforge_mercator_hullabaloo_README +zopefoundation_zope.deprecation.git,_zopefoundation_zope.deprecation.git_commits.csv,zopefoundation_zope.deprecation.git_hullabaloo_README.txt +daqana_dqrng.git,_daqana_dqrng.git_commits.csv,daqana_dqrng.git_hullabaloo_README.md +leggewie-DM_wondershaper,leggewie-DM_wondershaper_commits.csv,leggewie-DM_wondershaper_hullabaloo_README +gnustep_apps-gorm,_gnustep_apps-gorm_commits.csv,gnustep_apps-gorm_hullabaloo_README +prometheus-community_postgres_exporter,_prometheus-community_postgres_exporter_commits.csv,prometheus-community_postgres_exporter_hullabaloo_README.md +mvgrimes_catalyst-dispatch-regex.git,_mvgrimes_catalyst-dispatch-regex.git_commits.csv,mvgrimes_catalyst-dispatch-regex.git_hullabaloo_README +Mimino666_langdetect,_Mimino666_langdetect_commits.csv,Mimino666_langdetect_hullabaloo_README.md +RhodiumToad_ip4r.git,_RhodiumToad_ip4r.git_commits.csv,RhodiumToad_ip4r.git_hullabaloo_README.ip4r +thp_pyotherside,_thp_pyotherside_commits.csv,thp_pyotherside_hullabaloo_README +tj_node-growl,_tj_node-growl_commits.csv,tj_node-growl_hullabaloo_README.md +knu_ruby-unf_ext,_knu_ruby-unf_ext_commits.csv,knu_ruby-unf_ext_hullabaloo_README.production +jarun_imgp.git,_jarun_imgp.git_commits.csv,jarun_imgp.git_hullabaloo_README.md +miyagawa_Plack-Middleware-Deflater.git,_miyagawa_Plack-Middleware-Deflater.git_commits.csv,miyagawa_Plack-Middleware-Deflater.git_hullabaloo_README +cyu_rack-cors,_cyu_rack-cors_commits.csv,cyu_rack-cors_hullabaloo_README.rdoc +eugeniy_pytest-tornado,_eugeniy_pytest-tornado_commits.csv,eugeniy_pytest-tornado_hullabaloo_README +pytest-dev_pytest-runner.git,_pytest-dev_pytest-runner.git_commits.csv,pytest-dev_pytest-runner.git_hullabaloo_README +jalvesaq_gconjugue,_jalvesaq_gconjugue_commits.csv,jalvesaq_gconjugue_hullabaloo_README +PacificBiosciences_pbcore,_PacificBiosciences_pbcore_commits.csv,PacificBiosciences_pbcore_hullabaloo_README.txt +tkf_python-epc,_tkf_python-epc_commits.csv,tkf_python-epc_hullabaloo_README.rst +knowthelist_knowthelist,knowthelist_knowthelist_commits.csv,knowthelist_knowthelist_hullabaloo_README.md +dkogan_feedgnuplot.git,_dkogan_feedgnuplot.git_commits.csv,dkogan_feedgnuplot.git_hullabaloo_README +babelouest_ulfius,_babelouest_ulfius_commits.csv,babelouest_ulfius_hullabaloo_README.md +sunlightlabs_python-sunlight,_sunlightlabs_python-sunlight_commits.csv,sunlightlabs_python-sunlight_hullabaloo_README.markdown +ros_urdfdom_headers,_ros_urdfdom_headers_commits.csv,ros_urdfdom_headers_hullabaloo_README.txt +PracticallyGreen_omniauth-saml.git,_PracticallyGreen_omniauth-saml.git_commits.csv,PracticallyGreen_omniauth-saml.git_hullabaloo_README.rdoc +gap-packages_toric.git,_gap-packages_toric.git_commits.csv,gap-packages_toric.git_hullabaloo_README.toric +py4n6_pytsk.git,_py4n6_pytsk.git_commits.csv,py4n6_pytsk.git_hullabaloo_README +backuppc_backuppc-xs.git,_backuppc_backuppc-xs.git_commits.csv,backuppc_backuppc-xs.git_hullabaloo_README +robdimarco_omniauth_crowd,_robdimarco_omniauth_crowd_commits.csv,robdimarco_omniauth_crowd_hullabaloo_README +hughsie_colord-gtk.git,_hughsie_colord-gtk.git_commits.csv,hughsie_colord-gtk.git_hullabaloo_README +rocky_Perl-Device-Cdio.git,_rocky_Perl-Device-Cdio.git_commits.csv,rocky_Perl-Device-Cdio.git_hullabaloo_README +chartjs_Chart.js.git,_chartjs_Chart.js.git_commits.csv,chartjs_Chart.js.git_hullabaloo_README.md +django-haystack_django-haystack,_django-haystack_django-haystack_commits.csv,django-haystack_django-haystack_hullabaloo_README.rst +panel-plugins_xfce4-notes-plugin,panel-plugins_xfce4-notes-plugin_commits.csv,panel-plugins_xfce4-notes-plugin_hullabaloo_README +network_smb4k.git,network_smb4k.git_commits.csv,network_smb4k.git_hullabaloo_README +tidymodels_recipes,_tidymodels_recipes_commits.csv,tidymodels_recipes_hullabaloo_README.md +crucialfelix_django-ajax-selects,_crucialfelix_django-ajax-selects_commits.csv,crucialfelix_django-ajax-selects_hullabaloo_README.txt +Simplistix_testfixtures,_Simplistix_testfixtures_commits.csv,Simplistix_testfixtures_hullabaloo_README.txt +pgxn_pgxnclient.git,_pgxn_pgxnclient.git_commits.csv,pgxn_pgxnclient.git_hullabaloo_README +readthedocs_recommonmark.git,_readthedocs_recommonmark.git_commits.csv,readthedocs_recommonmark.git_hullabaloo_README.md +cromerc_opensysusers.git,_cromerc_opensysusers.git_commits.csv,cromerc_opensysusers.git_hullabaloo_README.md +joliss_jquery-ui-rails,_joliss_jquery-ui-rails_commits.csv,joliss_jquery-ui-rails_hullabaloo_README.md +compiz_libcompizconfig.git,compiz_libcompizconfig.git_commits.csv,compiz_libcompizconfig.git_hullabaloo_README +google_fscrypt,_google_fscrypt_commits.csv,google_fscrypt_hullabaloo_README.md +eudoxos_minieigen,_eudoxos_minieigen_commits.csv,eudoxos_minieigen_hullabaloo_README +gvalkov_python-evdev.git,_gvalkov_python-evdev.git_commits.csv,gvalkov_python-evdev.git_hullabaloo_README.rst +lgi-devs_lgi,_lgi-devs_lgi_commits.csv,lgi-devs_lgi_hullabaloo_README +joenoon_url_safe_base64,_joenoon_url_safe_base64_commits.csv,joenoon_url_safe_base64_hullabaloo_README +SimonSapin_Frozen-Flask,SimonSapin_Frozen-Flask_commits.csv,SimonSapin_Frozen-Flask_hullabaloo_README +mathiasbynens_unicode-property-value-aliases-ecmascript,_mathiasbynens_unicode-property-value-aliases-ecmascript_commits.csv,mathiasbynens_unicode-property-value-aliases-ecmascript_hullabaloo_README.md +rcsb_mmtf-java.git,_rcsb_mmtf-java.git_commits.csv,rcsb_mmtf-java.git_hullabaloo_README.md +rncbc_qxgedit.git,_rncbc_qxgedit.git_commits.csv,rncbc_qxgedit.git_hullabaloo_README +jaraco_path.py.git,_jaraco_path.py.git_commits.csv,jaraco_path.py.git_hullabaloo_README.rst +jekyll_jekyll-watch,_jekyll_jekyll-watch_commits.csv,jekyll_jekyll-watch_hullabaloo_README.md +mogaal_anypaper,mogaal_anypaper_commits.csv,mogaal_anypaper_hullabaloo_README +GNOME_libsecret.git,GNOME_libsecret.git_commits.csv,GNOME_libsecret.git_hullabaloo_README +lstein_Devel-Cycle.git,_lstein_Devel-Cycle.git_commits.csv,lstein_Devel-Cycle.git_hullabaloo_README +biocore_pyqi,_biocore_pyqi_commits.csv,biocore_pyqi_hullabaloo_README.md +pkgconf_pkgconf,_pkgconf_pkgconf_commits.csv,pkgconf_pkgconf_hullabaloo_README +ukui_biometric-authentication,ukui_biometric-authentication_commits.csv,ukui_biometric-authentication_hullabaloo_README.md +theseer_Autoload,_theseer_Autoload_commits.csv,theseer_Autoload_hullabaloo_README.md +landscapeio_dodgy,_landscapeio_dodgy_commits.csv,landscapeio_dodgy_hullabaloo_README.md +mfenniak_pg8000,_mfenniak_pg8000_commits.csv,mfenniak_pg8000_hullabaloo_README.creole +ternjs_acorn.git,_ternjs_acorn.git_commits.csv,ternjs_acorn.git_hullabaloo_README.md +tpm2-software_tpm2-tools,_tpm2-software_tpm2-tools_commits.csv,tpm2-software_tpm2-tools_hullabaloo_README.md +freifunk-gluon_ecdsautils,_freifunk-gluon_ecdsautils_commits.csv,freifunk-gluon_ecdsautils_hullabaloo_README +neilb_Test-Cmd.git,_neilb_Test-Cmd.git_commits.csv,neilb_Test-Cmd.git_hullabaloo_README +PyCQA_pyflakes,_PyCQA_pyflakes_commits.csv,PyCQA_pyflakes_hullabaloo_README.rst +linuxdeepin_deepin-picker,_linuxdeepin_deepin-picker_commits.csv,linuxdeepin_deepin-picker_hullabaloo_README.md +puppetlabs_clj-kitchensink.git,_puppetlabs_clj-kitchensink.git_commits.csv,puppetlabs_clj-kitchensink.git_hullabaloo_README.md +firewalld_firewalld.git,_firewalld_firewalld.git_commits.csv,firewalld_firewalld.git_hullabaloo_README +django-cms_django-sekizai.git,_django-cms_django-sekizai.git_commits.csv,django-cms_django-sekizai.git_hullabaloo_README +ivancrneto_pymox,_ivancrneto_pymox_commits.csv,ivancrneto_pymox_hullabaloo_README +porridge_bambam,porridge_bambam_commits.csv,porridge_bambam_hullabaloo_README +selectel_pyte,_selectel_pyte_commits.csv,selectel_pyte_hullabaloo_README.rst +andrewrk_libsoundio.git,_andrewrk_libsoundio.git_commits.csv,andrewrk_libsoundio.git_hullabaloo_README.md +joewing_jwm,_joewing_jwm_commits.csv,joewing_jwm_hullabaloo_README +mtoyoda_sl,_mtoyoda_sl_commits.csv,mtoyoda_sl_hullabaloo_README.ja.md +neilb_Graph-ReadWrite.git,_neilb_Graph-ReadWrite.git_commits.csv,neilb_Graph-ReadWrite.git_hullabaloo_README +panel-plugins_xfce4-pulseaudio-plugin,panel-plugins_xfce4-pulseaudio-plugin_commits.csv,panel-plugins_xfce4-pulseaudio-plugin_hullabaloo_README +python-hyper_hpack,_python-hyper_hpack_commits.csv,python-hyper_hpack_hullabaloo_README.rst +gssapi_gss-ntlmssp,_gssapi_gss-ntlmssp_commits.csv,gssapi_gss-ntlmssp_hullabaloo_README.txt +tari01_caja-rename,_tari01_caja-rename_commits.csv,tari01_caja-rename_hullabaloo_README.md +acoustid_chromaprint,_acoustid_chromaprint_commits.csv,acoustid_chromaprint_hullabaloo_README.txt +newville_asteval.git,_newville_asteval.git_commits.csv,newville_asteval.git_hullabaloo_README.TXT +agronholm_pythonfutures.git,_agronholm_pythonfutures.git_commits.csv,agronholm_pythonfutures.git_hullabaloo_README.rst +twogood_unshield.git,_twogood_unshield.git_commits.csv,twogood_unshield.git_hullabaloo_README +OISF_suricata-update,_OISF_suricata-update_commits.csv,OISF_suricata-update_hullabaloo_README.rst +aelmahmoudy_libitl-gobject.git,_aelmahmoudy_libitl-gobject.git_commits.csv,aelmahmoudy_libitl-gobject.git_hullabaloo_README +alexei_sprintf.js,_alexei_sprintf.js_commits.csv,alexei_sprintf.js_hullabaloo_README.md +panel-plugins_xfce4-xkb-plugin,panel-plugins_xfce4-xkb-plugin_commits.csv,panel-plugins_xfce4-xkb-plugin_hullabaloo_README +jemalloc_jemalloc,_jemalloc_jemalloc_commits.csv,jemalloc_jemalloc_hullabaloo_README +sionescu_fiveam.git,_sionescu_fiveam.git_commits.csv,sionescu_fiveam.git_hullabaloo_README +linuxmint_python3-xapp.git,_linuxmint_python3-xapp.git_commits.csv,linuxmint_python3-xapp.git_hullabaloo_README +hickford_MechanicalSoup,_hickford_MechanicalSoup_commits.csv,hickford_MechanicalSoup_hullabaloo_README.md +coin-or_CoinUtils,_coin-or_CoinUtils_commits.csv,coin-or_CoinUtils_hullabaloo_README +python-lz4_python-lz4.git,_python-lz4_python-lz4.git_commits.csv,python-lz4_python-lz4.git_hullabaloo_README.md +enova_pgl_ddl_deploy.git,_enova_pgl_ddl_deploy.git_commits.csv,enova_pgl_ddl_deploy.git_hullabaloo_README.md +VcDevel_Vc,_VcDevel_Vc_commits.csv,VcDevel_Vc_hullabaloo_README +LibreCat_Catmandu-Atom.git,_LibreCat_Catmandu-Atom.git_commits.csv,LibreCat_Catmandu-Atom.git_hullabaloo_README +sbt_launcher.git,_sbt_launcher.git_commits.csv,sbt_launcher.git_hullabaloo_README.md +cubiq_iscroll,_cubiq_iscroll_commits.csv,cubiq_iscroll_hullabaloo_README.md +gtimelog_gtimelog,_gtimelog_gtimelog_commits.csv,gtimelog_gtimelog_hullabaloo_README.txt +openstack_python-swiftclient.git,_openstack_python-swiftclient.git_commits.csv,openstack_python-swiftclient.git_hullabaloo_README.rst +basho_innertube.git,_basho_innertube.git_commits.csv,basho_innertube.git_hullabaloo_README.md +amireh_lua_cliargs,_amireh_lua_cliargs_commits.csv,amireh_lua_cliargs_hullabaloo_README.md +pyvisa_pyvisa-py.git,_pyvisa_pyvisa-py.git_commits.csv,pyvisa_pyvisa-py.git_hullabaloo_README +platform_libnativehelper,platform_libnativehelper_commits.csv,platform_libnativehelper_hullabaloo_README +compiz_compiz-bcop.git,compiz_compiz-bcop.git_commits.csv,compiz_compiz-bcop.git_hullabaloo_README +GNOME_gnome-desktop-testing,GNOME_gnome-desktop-testing_commits.csv,GNOME_gnome-desktop-testing_hullabaloo_README +prehor_amavisd-milter,_prehor_amavisd-milter_commits.csv,prehor_amavisd-milter_hullabaloo_README +wookayin_gpustat,_wookayin_gpustat_commits.csv,wookayin_gpustat_hullabaloo_README.md +plasma_plasma-nm.git,plasma_plasma-nm.git_commits.csv,plasma_plasma-nm.git_hullabaloo_README +GNOME_network-manager-applet,GNOME_network-manager-applet_commits.csv,GNOME_network-manager-applet_hullabaloo_README +resurrecting-open-source-projects_scrot,_resurrecting-open-source-projects_scrot_commits.csv,resurrecting-open-source-projects_scrot_hullabaloo_README +bbatsov_persp-projectile.git,_bbatsov_persp-projectile.git_commits.csv,bbatsov_persp-projectile.git_hullabaloo_README.md +mypaint_libmypaint,_mypaint_libmypaint_commits.csv,mypaint_libmypaint_hullabaloo_README +prometheus_blackbox_exporter,_prometheus_blackbox_exporter_commits.csv,prometheus_blackbox_exporter_hullabaloo_README.md +WorkflowConversion_CTDConverter,_WorkflowConversion_CTDConverter_commits.csv,WorkflowConversion_CTDConverter_hullabaloo_README.md +etianen_django-python3-ldap,_etianen_django-python3-ldap_commits.csv,etianen_django-python3-ldap_hullabaloo_README.rst +slgobinath_SafeEyes.git,_slgobinath_SafeEyes.git_commits.csv,slgobinath_SafeEyes.git_hullabaloo_README.md +ZerBea_hcxdumptool,_ZerBea_hcxdumptool_commits.csv,ZerBea_hcxdumptool_hullabaloo_README.md +virt-manager_virt-manager,_virt-manager_virt-manager_commits.csv,virt-manager_virt-manager_hullabaloo_README +rails_jbuilder,_rails_jbuilder_commits.csv,rails_jbuilder_hullabaloo_README.rd +afewmail_afew,_afewmail_afew_commits.csv,afewmail_afew_hullabaloo_README +r-lib_xml2,_r-lib_xml2_commits.csv,r-lib_xml2_hullabaloo_README.md +dustymabe_vagrant-sshfs,_dustymabe_vagrant-sshfs_commits.csv,dustymabe_vagrant-sshfs_hullabaloo_README.md +mongoengine_flask-mongoengine,mongoengine_flask-mongoengine_commits.csv,mongoengine_flask-mongoengine_hullabaloo_README.rst +neilbowers_Test-Pod-Coverage,_neilbowers_Test-Pod-Coverage_commits.csv,neilbowers_Test-Pod-Coverage_hullabaloo_README +dgasmith_gau2grid,_dgasmith_gau2grid_commits.csv,dgasmith_gau2grid_hullabaloo_README.md +libvirt_libvirt-ruby.git,libvirt_libvirt-ruby.git_commits.csv,libvirt_libvirt-ruby.git_hullabaloo_README +manisandro_gImageReader,_manisandro_gImageReader_commits.csv,manisandro_gImageReader_hullabaloo_README +yarrick_iodine.git,_yarrick_iodine.git_commits.csv,yarrick_iodine.git_hullabaloo_README +mesa_waffle.git,mesa_waffle.git_commits.csv,mesa_waffle.git_hullabaloo_README.txt +jaalto_project--perl-depends.git,_jaalto_project--perl-depends.git_commits.csv,jaalto_project--perl-depends.git_hullabaloo_README +grml_grml-debootstrap,grml_grml-debootstrap_commits.csv,grml_grml-debootstrap_hullabaloo_README.md +PyGreSQL_PyGreSQL,_PyGreSQL_PyGreSQL_commits.csv,PyGreSQL_PyGreSQL_hullabaloo_README +nichtich_Pandoc-Elements.git,_nichtich_Pandoc-Elements.git_commits.csv,nichtich_Pandoc-Elements.git_hullabaloo_README.md +IdentityPython_djangosaml2,_IdentityPython_djangosaml2_commits.csv,IdentityPython_djangosaml2_hullabaloo_README +YJesus_Unhide.git,_YJesus_Unhide.git_commits.csv,YJesus_Unhide.git_hullabaloo_README.txt +venthur_dotenv-cli,venthur_dotenv-cli_commits.csv,venthur_dotenv-cli_hullabaloo_README.md +state-machines_state_machines-activerecord,_state-machines_state_machines-activerecord_commits.csv,state-machines_state_machines-activerecord_hullabaloo_README.md +edzer_sp.git,_edzer_sp.git_commits.csv,edzer_sp.git_hullabaloo_README.md +DamienCassou_beginend.git,_DamienCassou_beginend.git_commits.csv,DamienCassou_beginend.git_hullabaloo_README.md +wjoye_tclsignal,_wjoye_tclsignal_commits.csv,wjoye_tclsignal_hullabaloo_README.md +hadess_iio-sensor-proxy,hadess_iio-sensor-proxy_commits.csv,hadess_iio-sensor-proxy_hullabaloo_README.md +PyCQA_pylint-plugin-utils.git,_PyCQA_pylint-plugin-utils.git_commits.csv,PyCQA_pylint-plugin-utils.git_hullabaloo_README.md +benji-york_manuel,_benji-york_manuel_commits.csv,benji-york_manuel_hullabaloo_README.txt +briandfoy_test-prereq.git,_briandfoy_test-prereq.git_commits.csv,briandfoy_test-prereq.git_hullabaloo_README +jamesturk_django-markupfield,_jamesturk_django-markupfield_commits.csv,jamesturk_django-markupfield_hullabaloo_README +JKDingwall_autolog.git,_JKDingwall_autolog.git_commits.csv,JKDingwall_autolog.git_hullabaloo_README +warsaw_flufl.i18n,warsaw_flufl.i18n_commits.csv,warsaw_flufl.i18n_hullabaloo_README.txt +ben-eb_colormin,_ben-eb_colormin_commits.csv,ben-eb_colormin_hullabaloo_README.md +FirefighterBlu3_python-pam,_FirefighterBlu3_python-pam_commits.csv,FirefighterBlu3_python-pam_hullabaloo_README.md +unixabg_ifetch-tools,unixabg_ifetch-tools_commits.csv,unixabg_ifetch-tools_hullabaloo_README.txt +pytoolz_cytoolz,_pytoolz_cytoolz_commits.csv,pytoolz_cytoolz_hullabaloo_README.rst +MatMoul_g810-led.git,_MatMoul_g810-led.git_commits.csv,MatMoul_g810-led.git_hullabaloo_README.md +frostming_legit,_frostming_legit_commits.csv,frostming_legit_hullabaloo_README +psi-im_qconf.git,_psi-im_qconf.git_commits.csv,psi-im_qconf.git_hullabaloo_README +pantherb_setBfree.git,_pantherb_setBfree.git_commits.csv,pantherb_setBfree.git_hullabaloo_README +GoogleCloudPlatform_cloudsql-proxy.git,_GoogleCloudPlatform_cloudsql-proxy.git_commits.csv,GoogleCloudPlatform_cloudsql-proxy.git_hullabaloo_README +perfectline_validates_email.git,_perfectline_validates_email.git_commits.csv,perfectline_validates_email.git_hullabaloo_README.markdown +dmeranda_demjson,_dmeranda_demjson_commits.csv,dmeranda_demjson_hullabaloo_README.md +Toblerity_Fiona.git,_Toblerity_Fiona.git_commits.csv,Toblerity_Fiona.git_hullabaloo_README.txt +yourlabs_django-session-security,_yourlabs_django-session-security_commits.csv,yourlabs_django-session-security_hullabaloo_README.md +formorer_pkg-ferm,formorer_pkg-ferm_commits.csv,formorer_pkg-ferm_hullabaloo_README +awslabs_amazon-ecr-credential-helper,awslabs_amazon-ecr-credential-helper_commits.csv,awslabs_amazon-ecr-credential-helper_hullabaloo_README.md +Exa-Networks_exabgp,Exa-Networks_exabgp_commits.csv,Exa-Networks_exabgp_hullabaloo_README +mate-desktop_mate-panel.git,_mate-desktop_mate-panel.git_commits.csv,mate-desktop_mate-panel.git_hullabaloo_README +sebastianbergmann_phploc,_sebastianbergmann_phploc_commits.csv,sebastianbergmann_phploc_hullabaloo_README.markdown +lxqt_qterminal.git,_lxqt_qterminal.git_commits.csv,lxqt_qterminal.git_hullabaloo_README +fudge-py_fudge,_fudge-py_fudge_commits.csv,fudge-py_fudge_hullabaloo_README.txt +elmar_autocutsel-debian,elmar_autocutsel-debian_commits.csv,elmar_autocutsel-debian_hullabaloo_README +muquit_grabc.git,_muquit_grabc.git_commits.csv,muquit_grabc.git_hullabaloo_README +lz4_lz4,_lz4_lz4_commits.csv,lz4_lz4_hullabaloo_README.md +theory_params-callbackrequest.git,_theory_params-callbackrequest.git_commits.csv,theory_params-callbackrequest.git_hullabaloo_README +libimobiledevice_libusbmuxd.git,_libimobiledevice_libusbmuxd.git_commits.csv,libimobiledevice_libusbmuxd.git_hullabaloo_README.devel +SpintroniK_libeXaDrums,SpintroniK_libeXaDrums_commits.csv,SpintroniK_libeXaDrums_hullabaloo_README.md +mteg_braa,_mteg_braa_commits.csv,mteg_braa_hullabaloo_README +hatukanezumi_sombok,_hatukanezumi_sombok_commits.csv,hatukanezumi_sombok_hullabaloo_README +coppit_filehandle-unget.git,_coppit_filehandle-unget.git_commits.csv,coppit_filehandle-unget.git_hullabaloo_README +ddclient_ddclient.git,_ddclient_ddclient.git_commits.csv,ddclient_ddclient.git_hullabaloo_README.ssl +jwbargsten_perl-proc-processtable,_jwbargsten_perl-proc-processtable_commits.csv,jwbargsten_perl-proc-processtable_hullabaloo_README.unixware +python-gitlab_python-gitlab.git,_python-gitlab_python-gitlab.git_commits.csv,python-gitlab_python-gitlab.git_hullabaloo_README.md +resurrecting-open-source-projects_packit,_resurrecting-open-source-projects_packit_commits.csv,resurrecting-open-source-projects_packit_hullabaloo_README.md +jmoiron_humanize,_jmoiron_humanize_commits.csv,jmoiron_humanize_hullabaloo_README.rst +carlhuda_bundler,_carlhuda_bundler_commits.csv,carlhuda_bundler_hullabaloo_README.jp +elmar_aptitude-robot,elmar_aptitude-robot_commits.csv,elmar_aptitude-robot_hullabaloo_README.md +mate-desktop_mate-session-manager.git,_mate-desktop_mate-session-manager.git_commits.csv,mate-desktop_mate-session-manager.git_hullabaloo_README +rstudio_shiny.git,_rstudio_shiny.git_commits.csv,rstudio_shiny.git_hullabaloo_README.md +xorg_lib_libxi.git,xorg_lib_libxi.git_commits.csv,xorg_lib_libxi.git_hullabaloo_README +puppetlabs_gettext-setup-gem,_puppetlabs_gettext-setup-gem_commits.csv,puppetlabs_gettext-setup-gem_hullabaloo_README.md +kpdyer_libfte,kpdyer_libfte_commits.csv,kpdyer_libfte_hullabaloo_README.md +RDFLib_rdflib-jsonld,_RDFLib_rdflib-jsonld_commits.csv,RDFLib_rdflib-jsonld_hullabaloo_README.md +PrimeSense_Sensor.git,_PrimeSense_Sensor.git_commits.csv,PrimeSense_Sensor.git_hullabaloo_README +lxqt_pcmanfm-qt.git,_lxqt_pcmanfm-qt.git_commits.csv,lxqt_pcmanfm-qt.git_hullabaloo_README +rakshasa_libtorrent.git,_rakshasa_libtorrent.git_commits.csv,rakshasa_libtorrent.git_hullabaloo_README +kiwix_libkiwix.git,_kiwix_libkiwix.git_commits.csv,kiwix_libkiwix.git_hullabaloo_README.md +doorkeeper-gem_doorkeeper,_doorkeeper-gem_doorkeeper_commits.csv,doorkeeper-gem_doorkeeper_hullabaloo_README.md +janmojzis_tinyssh.git,_janmojzis_tinyssh.git_commits.csv,janmojzis_tinyssh.git_hullabaloo_README.md +NIFTI-Imaging_nifti_clib.git,_NIFTI-Imaging_nifti_clib.git_commits.csv,NIFTI-Imaging_nifti_clib.git_hullabaloo_README +admesh_admesh,_admesh_admesh_commits.csv,admesh_admesh_hullabaloo_README +3rd-Eden_FlashPolicyFileServer,_3rd-Eden_FlashPolicyFileServer_commits.csv,3rd-Eden_FlashPolicyFileServer_hullabaloo_README.md +rsyslog_rsyslog-doc,_rsyslog_rsyslog-doc_commits.csv,rsyslog_rsyslog-doc_hullabaloo_README.html +un33k_python-slugify,_un33k_python-slugify_commits.csv,un33k_python-slugify_hullabaloo_README.md +gweis_isodate,_gweis_isodate_commits.csv,gweis_isodate_hullabaloo_README.txt +pimutils_todoman.git,_pimutils_todoman.git_commits.csv,pimutils_todoman.git_hullabaloo_README.md +fluxx_exam,_fluxx_exam_commits.csv,fluxx_exam_hullabaloo_README.rst +hipchat_hipchat-rb,_hipchat_hipchat-rb_commits.csv,hipchat_hipchat-rb_hullabaloo_README.rdoc +openSUSE_snapper.git,_openSUSE_snapper.git_commits.csv,openSUSE_snapper.git_hullabaloo_README +svolli_pngphoon,svolli_pngphoon_commits.csv,svolli_pngphoon_hullabaloo_README +letoh_ocaml-usb.git,_letoh_ocaml-usb.git_commits.csv,letoh_ocaml-usb.git_hullabaloo_README +breunigs_python-librtmp-debian,breunigs_python-librtmp-debian_commits.csv,breunigs_python-librtmp-debian_hullabaloo_README.rst +hoelzro_linotify.git,_hoelzro_linotify.git_commits.csv,hoelzro_linotify.git_hullabaloo_README +google_python_portpicker,_google_python_portpicker_commits.csv,google_python_portpicker_hullabaloo_README.md +esr_doclifter,esr_doclifter_commits.csv,esr_doclifter_hullabaloo_README +juliangruber_constants-browserify,_juliangruber_constants-browserify_commits.csv,juliangruber_constants-browserify_hullabaloo_README.md +carljm_django-model-utils.git,_carljm_django-model-utils.git_commits.csv,carljm_django-model-utils.git_hullabaloo_README.txt +GNOME_template-glib.git,GNOME_template-glib.git_commits.csv,GNOME_template-glib.git_hullabaloo_README.md +OpenSC_libp11.git,_OpenSC_libp11.git_commits.csv,OpenSC_libp11.git_hullabaloo_README +erniebrodeur_ruby-beautify,_erniebrodeur_ruby-beautify_commits.csv,erniebrodeur_ruby-beautify_hullabaloo_README.md +libspatialindex_libspatialindex.git,_libspatialindex_libspatialindex.git_commits.csv,libspatialindex_libspatialindex.git_hullabaloo_README +alanxz_rabbitmq-c.git,_alanxz_rabbitmq-c.git_commits.csv,alanxz_rabbitmq-c.git_hullabaloo_README +sqlmapproject_sqlmap.git,_sqlmapproject_sqlmap.git_commits.csv,sqlmapproject_sqlmap.git_hullabaloo_README.pdf +davesteele_comitup,davesteele_comitup_commits.csv,davesteele_comitup_hullabaloo_README.md +sebastinas_python-libdiscid.git,_sebastinas_python-libdiscid.git_commits.csv,sebastinas_python-libdiscid.git_hullabaloo_README +mupen64plus_mupen64plus-ui-console.git,_mupen64plus_mupen64plus-ui-console.git_commits.csv,mupen64plus_mupen64plus-ui-console.git_hullabaloo_README +coldtobi_solarpowerlog,coldtobi_solarpowerlog_commits.csv,coldtobi_solarpowerlog_hullabaloo_README +warsaw_flufl.testing.git,warsaw_flufl.testing.git_commits.csv,warsaw_flufl.testing.git_hullabaloo_README.rst +cseed_arachne-pnr.git,_cseed_arachne-pnr.git_commits.csv,cseed_arachne-pnr.git_hullabaloo_README.md +the-tcpdump-group_tcpslice,_the-tcpdump-group_tcpslice_commits.csv,the-tcpdump-group_tcpslice_hullabaloo_README +spesmilo_electrum.git,_spesmilo_electrum.git_commits.csv,spesmilo_electrum.git_hullabaloo_README +theZiz_aha.git,_theZiz_aha.git_commits.csv,theZiz_aha.git_hullabaloo_README.md +boundary_bear.git,_boundary_bear.git_commits.csv,boundary_bear.git_hullabaloo_README.md +emre_kaptan.git,_emre_kaptan.git_commits.csv,emre_kaptan.git_hullabaloo_README.md +django-treebeard_django-treebeard.git,_django-treebeard_django-treebeard.git_commits.csv,django-treebeard_django-treebeard.git_hullabaloo_README +gbarr_perl-Convert-ASN1.git,_gbarr_perl-Convert-ASN1.git_commits.csv,gbarr_perl-Convert-ASN1.git_hullabaloo_README +jonschlinkert_snapdragon.git,_jonschlinkert_snapdragon.git_commits.csv,jonschlinkert_snapdragon.git_hullabaloo_README.md +panel-plugins_xfce4-genmon-plugin,panel-plugins_xfce4-genmon-plugin_commits.csv,panel-plugins_xfce4-genmon-plugin_hullabaloo_README +candlepin_python-iniparse,_candlepin_python-iniparse_commits.csv,candlepin_python-iniparse_hullabaloo_README +GNOME_gsound.git,GNOME_gsound.git_commits.csv,GNOME_gsound.git_hullabaloo_README +libvirt_libvirt-glib.git,libvirt_libvirt-glib.git_commits.csv,libvirt_libvirt-glib.git_hullabaloo_README +BLAKE2_libb2.git,_BLAKE2_libb2.git_commits.csv,BLAKE2_libb2.git_hullabaloo_README.md +pytest-dev_pytest-xdist,_pytest-dev_pytest-xdist_commits.csv,pytest-dev_pytest-xdist_hullabaloo_README.txt +jgarber_redcloth.git,_jgarber_redcloth.git_commits.csv,jgarber_redcloth.git_hullabaloo_README +lstein_LibIO-Interface-Perl.git,_lstein_LibIO-Interface-Perl.git_commits.csv,lstein_LibIO-Interface-Perl.git_hullabaloo_README +neilb_Lingua-PT-Stemmer.git,_neilb_Lingua-PT-Stemmer.git_commits.csv,neilb_Lingua-PT-Stemmer.git_hullabaloo_README +p5-number-fraction_number-fraction.git,_p5-number-fraction_number-fraction.git_commits.csv,p5-number-fraction_number-fraction.git_hullabaloo_README +tuomasjjrasanen_python-uinput,_tuomasjjrasanen_python-uinput_commits.csv,tuomasjjrasanen_python-uinput_hullabaloo_README +pg_top_pg_top.git,pg_top_pg_top.git_commits.csv,pg_top_pg_top.git_hullabaloo_README +un33k_django-ipware,_un33k_django-ipware_commits.csv,un33k_django-ipware_hullabaloo_README.md +beanstalkd_beaneater,_beanstalkd_beaneater_commits.csv,beanstalkd_beaneater_hullabaloo_README.md +alisaifee_limits.git,_alisaifee_limits.git_commits.csv,alisaifee_limits.git_hullabaloo_README.rst +armed_gulp-flatten,_armed_gulp-flatten_commits.csv,armed_gulp-flatten_hullabaloo_README.md +hyde_fswrap,_hyde_fswrap_commits.csv,hyde_fswrap_hullabaloo_README.rst +luakit_luakit,_luakit_luakit_commits.csv,luakit_luakit_hullabaloo_README +trezor_trezor-firmware.git,_trezor_trezor-firmware.git_commits.csv,trezor_trezor-firmware.git_hullabaloo_README.md +log2timeline_dfdatetime.git,_log2timeline_dfdatetime.git_commits.csv,log2timeline_dfdatetime.git_hullabaloo_README +kasei_attean.git,_kasei_attean.git_commits.csv,kasei_attean.git_hullabaloo_README.md +gaetano-guerriero_eyeD3-debian,gaetano-guerriero_eyeD3-debian_commits.csv,gaetano-guerriero_eyeD3-debian_hullabaloo_README.rst +alif-type_amiri.git,_alif-type_amiri.git_commits.csv,alif-type_amiri.git_hullabaloo_README +fbb-git_natlog.git,fbb-git_natlog.git_commits.csv,fbb-git_natlog.git_hullabaloo_README +g0hl1n_xprintidle,_g0hl1n_xprintidle_commits.csv,g0hl1n_xprintidle_hullabaloo_README +deeptools_pyBigWig.git,_deeptools_pyBigWig.git_commits.csv,deeptools_pyBigWig.git_hullabaloo_README.md +jacktasia_dumb-jump.git,_jacktasia_dumb-jump.git_commits.csv,jacktasia_dumb-jump.git_hullabaloo_README.md +mate-desktop_libmatemixer.git,_mate-desktop_libmatemixer.git_commits.csv,mate-desktop_libmatemixer.git_hullabaloo_README +bbonev_dhcpdump,bbonev_dhcpdump_commits.csv,bbonev_dhcpdump_hullabaloo_README.md +sphinx-contrib_autoprogram.git,_sphinx-contrib_autoprogram.git_commits.csv,sphinx-contrib_autoprogram.git_hullabaloo_README.rst +elmar_ldap-git-backup,elmar_ldap-git-backup_commits.csv,elmar_ldap-git-backup_hullabaloo_README.md +GNOME_gnome-notes,GNOME_gnome-notes_commits.csv,GNOME_gnome-notes_hullabaloo_README +ros-infrastructure_rospkg.git,_ros-infrastructure_rospkg.git_commits.csv,ros-infrastructure_rospkg.git_hullabaloo_README.md +luqasz_librouteros,_luqasz_librouteros_commits.csv,luqasz_librouteros_hullabaloo_README.md +viewflow_django-fsm,_viewflow_django-fsm_commits.csv,viewflow_django-fsm_hullabaloo_README +kjetilk_Test-RDF.git,_kjetilk_Test-RDF.git_commits.csv,kjetilk_Test-RDF.git_hullabaloo_README +mate-desktop_mate-common.git,_mate-desktop_mate-common.git_commits.csv,mate-desktop_mate-common.git_hullabaloo_README +openstack_liberasurecode.git,_openstack_liberasurecode.git_commits.csv,openstack_liberasurecode.git_hullabaloo_README +shlomif_perl-error.pm.git,_shlomif_perl-error.pm.git_commits.csv,shlomif_perl-error.pm.git_hullabaloo_README +PyCQA_pydocstyle.git,_PyCQA_pydocstyle.git_commits.csv,PyCQA_pydocstyle.git_hullabaloo_README +pypa_readme_renderer,_pypa_readme_renderer_commits.csv,pypa_readme_renderer_hullabaloo_README.rst +ionelmc_python-lazy-object-proxy.git,_ionelmc_python-lazy-object-proxy.git_commits.csv,ionelmc_python-lazy-object-proxy.git_hullabaloo_README.md +apjanke_ronn-ng,_apjanke_ronn-ng_commits.csv,apjanke_ronn-ng_hullabaloo_README +google_textfsm.git,_google_textfsm.git_commits.csv,google_textfsm.git_hullabaloo_README.md +pim_kdepim-apps-libs,pim_kdepim-apps-libs_commits.csv,pim_kdepim-apps-libs_hullabaloo_README.md +JessThrysoee_xtermcontrol.git,_JessThrysoee_xtermcontrol.git_commits.csv,JessThrysoee_xtermcontrol.git_hullabaloo_README +ledgersmb_PGObject-Type-DateTime.git,_ledgersmb_PGObject-Type-DateTime.git_commits.csv,ledgersmb_PGObject-Type-DateTime.git_hullabaloo_README.md +volkszaehler_libsml,volkszaehler_libsml_commits.csv,volkszaehler_libsml_hullabaloo_README.markdown +nicolasff_webdis,_nicolasff_webdis_commits.csv,nicolasff_webdis_hullabaloo_README.md +grosser_maxitest,_grosser_maxitest_commits.csv,grosser_maxitest_hullabaloo_README.md +gazay_gon,_gazay_gon_commits.csv,gazay_gon_hullabaloo_README.md +Bioconductor_GenomicAlignments.git,_Bioconductor_GenomicAlignments.git_commits.csv,Bioconductor_GenomicAlignments.git_hullabaloo_README.md +pim_kjots,pim_kjots_commits.csv,pim_kjots_hullabaloo_README +dimitri_pgcharts,dimitri_pgcharts_commits.csv,dimitri_pgcharts_hullabaloo_README.md +ubernostrum_django-contact-form,_ubernostrum_django-contact-form_commits.csv,ubernostrum_django-contact-form_hullabaloo_README.txt +mriehl_fysom.git,_mriehl_fysom.git_commits.csv,mriehl_fysom.git_hullabaloo_README +linuxdeepin_deepin-menu.git,_linuxdeepin_deepin-menu.git_commits.csv,linuxdeepin_deepin-menu.git_hullabaloo_README.md +confluentinc_confluent-kafka-python.git,_confluentinc_confluent-kafka-python.git_commits.csv,confluentinc_confluent-kafka-python.git_hullabaloo_README.md +attr-encrypted_attr_encrypted.git,_attr-encrypted_attr_encrypted.git_commits.csv,attr-encrypted_attr_encrypted.git_hullabaloo_README.markdown +qix-_node-is-arrayish,_qix-_node-is-arrayish_commits.csv,qix-_node-is-arrayish_hullabaloo_README.md +praekelt_django-setuptest.git,_praekelt_django-setuptest.git_commits.csv,praekelt_django-setuptest.git_hullabaloo_README.rst +savonet_ocaml-ssl.git,_savonet_ocaml-ssl.git_commits.csv,savonet_ocaml-ssl.git_hullabaloo_README +celery_py-amqp.git,_celery_py-amqp.git_commits.csv,celery_py-amqp.git_hullabaloo_README +GNOME_gnome-multi-writer.git,GNOME_gnome-multi-writer.git_commits.csv,GNOME_gnome-multi-writer.git_hullabaloo_README +taem_cd-discid,taem_cd-discid_commits.csv,taem_cd-discid_hullabaloo_README +Yelp_py_zipkin,_Yelp_py_zipkin_commits.csv,Yelp_py_zipkin_hullabaloo_README.md +ramnathv_htmlwidgets.git,_ramnathv_htmlwidgets.git_commits.csv,ramnathv_htmlwidgets.git_hullabaloo_README.md +resurrecting-open-source-projects_stress,_resurrecting-open-source-projects_stress_commits.csv,resurrecting-open-source-projects_stress_hullabaloo_README +google_stenographer,_google_stenographer_commits.csv,google_stenographer_hullabaloo_README.md +berkerpeksag_astor,_berkerpeksag_astor_commits.csv,berkerpeksag_astor_hullabaloo_README.rst +ankitects_anki.git,_ankitects_anki.git_commits.csv,ankitects_anki.git_hullabaloo_README +aplpy_aplpy.git,_aplpy_aplpy.git_commits.csv,aplpy_aplpy.git_hullabaloo_README.txt +angdraug_samizdat,_angdraug_samizdat_commits.csv,angdraug_samizdat_hullabaloo_README +NanoComp_h5utils.git,_NanoComp_h5utils.git_commits.csv,NanoComp_h5utils.git_hullabaloo_README.writepng +matthew-brett_nb2plots.git,_matthew-brett_nb2plots.git_commits.csv,matthew-brett_nb2plots.git_hullabaloo_README.rst +vasi_squashfuse.git,_vasi_squashfuse.git_commits.csv,vasi_squashfuse.git_hullabaloo_README +sionescu_bordeaux-threads,_sionescu_bordeaux-threads_commits.csv,sionescu_bordeaux-threads_hullabaloo_README +pytest-dev_pytest-timeout.git,_pytest-dev_pytest-timeout.git_commits.csv,pytest-dev_pytest-timeout.git_hullabaloo_README.rst +jpy-consortium_jpy,_jpy-consortium_jpy_commits.csv,jpy-consortium_jpy_hullabaloo_README.md +xtaran_unburden-home-dir,xtaran_unburden-home-dir_commits.csv,xtaran_unburden-home-dir_hullabaloo_README +Unidata_netcdf-fortran.git,_Unidata_netcdf-fortran.git_commits.csv,Unidata_netcdf-fortran.git_hullabaloo_README +tidyverse_lubridate.git,_tidyverse_lubridate.git_commits.csv,tidyverse_lubridate.git_hullabaloo_README.md +aperezdc_notmuch-addrlookup-c,_aperezdc_notmuch-addrlookup-c_commits.csv,aperezdc_notmuch-addrlookup-c_hullabaloo_README.md +DanielAdolfsson_ndppd,_DanielAdolfsson_ndppd_commits.csv,DanielAdolfsson_ndppd_hullabaloo_README +wolfcw_libfaketime.git,_wolfcw_libfaketime.git_commits.csv,wolfcw_libfaketime.git_hullabaloo_README +perldancer_Dancer-Plugin-REST.git,_perldancer_Dancer-Plugin-REST.git_commits.csv,perldancer_Dancer-Plugin-REST.git_hullabaloo_README +openwisp_django-x509,_openwisp_django-x509_commits.csv,openwisp_django-x509_hullabaloo_README.rst +dbtsai_python-mimeparse.git,_dbtsai_python-mimeparse.git_commits.csv,dbtsai_python-mimeparse.git_hullabaloo_README +tomszilagyi_ir.lv2.git,_tomszilagyi_ir.lv2.git_commits.csv,tomszilagyi_ir.lv2.git_hullabaloo_README.md +tox-dev_py-filelock,_tox-dev_py-filelock_commits.csv,tox-dev_py-filelock_hullabaloo_README.md +Castaglia_proftpd-mod_vroot.git,_Castaglia_proftpd-mod_vroot.git_commits.csv,Castaglia_proftpd-mod_vroot.git_hullabaloo_README.md +ppentchev_feature-check,ppentchev_feature-check_commits.csv,ppentchev_feature-check_hullabaloo_README.md +survivejs_webpack-merge.git,_survivejs_webpack-merge.git_commits.csv,survivejs_webpack-merge.git_hullabaloo_README.md +ximion_appstream-generator,_ximion_appstream-generator_commits.csv,ximion_appstream-generator_hullabaloo_README.md +osmcode_pyosmium.git,_osmcode_pyosmium.git_commits.csv,osmcode_pyosmium.git_hullabaloo_README.md +kodi-pvr_pvr.iptvsimple.git,_kodi-pvr_pvr.iptvsimple.git_commits.csv,kodi-pvr_pvr.iptvsimple.git_hullabaloo_README.md +vagrant-libvirt_vagrant-libvirt,_vagrant-libvirt_vagrant-libvirt_commits.csv,vagrant-libvirt_vagrant-libvirt_hullabaloo_README.md +irontec_sngrep.git,_irontec_sngrep.git_commits.csv,irontec_sngrep.git_hullabaloo_README.md +gnome-terminator_terminator,_gnome-terminator_terminator_commits.csv,gnome-terminator_terminator_hullabaloo_README +keis_base58,_keis_base58_commits.csv,keis_base58_hullabaloo_README.md +mbi_django-simple-captcha.git,_mbi_django-simple-captcha.git_commits.csv,mbi_django-simple-captcha.git_hullabaloo_README.rst +sublee_flask-silk.git,_sublee_flask-silk.git_commits.csv,sublee_flask-silk.git_hullabaloo_README +libcgroup_libcgroup,_libcgroup_libcgroup_commits.csv,libcgroup_libcgroup_hullabaloo_README +pear_Auth_SASL.git,_pear_Auth_SASL.git_commits.csv,pear_Auth_SASL.git_hullabaloo_README.md +RichiH_vcsh,RichiH_vcsh_commits.csv,RichiH_vcsh_hullabaloo_README +CastXML_CastXML.git,_CastXML_CastXML.git_commits.csv,CastXML_CastXML.git_hullabaloo_README.txt +GNOME_gitg.git,GNOME_gitg.git_commits.csv,GNOME_gitg.git_hullabaloo_README +digitalbazaar_jsonld.js,_digitalbazaar_jsonld.js_commits.csv,digitalbazaar_jsonld.js_hullabaloo_README +BioPP_bpp-core,_BioPP_bpp-core_commits.csv,BioPP_bpp-core_hullabaloo_README.md +phase1geo_Minder.git,_phase1geo_Minder.git_commits.csv,phase1geo_Minder.git_hullabaloo_README.md +adah1972_libunibreak.git,_adah1972_libunibreak.git_commits.csv,adah1972_libunibreak.git_hullabaloo_README +Smattr_rumur.git,Smattr_rumur.git_commits.csv,Smattr_rumur.git_hullabaloo_README.rst +prometheus_alertmanager,_prometheus_alertmanager_commits.csv,prometheus_alertmanager_hullabaloo_README.md +gpernot_wfrench.git,gpernot_wfrench.git_commits.csv,gpernot_wfrench.git_hullabaloo_README.md +imcleod_VMDK-stream-converter.git,_imcleod_VMDK-stream-converter.git_commits.csv,imcleod_VMDK-stream-converter.git_hullabaloo_README +d3_d3-dsv,_d3_d3-dsv_commits.csv,d3_d3-dsv_hullabaloo_README.md +fadden_nulib2.git,_fadden_nulib2.git_commits.csv,fadden_nulib2.git_hullabaloo_README.txt +raboof_nethogs,_raboof_nethogs_commits.csv,raboof_nethogs_hullabaloo_README +cbbrowne_autodoc.git,_cbbrowne_autodoc.git_commits.csv,cbbrowne_autodoc.git_hullabaloo_README +stain_arcp-py.git,_stain_arcp-py.git_commits.csv,stain_arcp-py.git_hullabaloo_README.md +lucc_khard,_lucc_khard_commits.csv,lucc_khard_hullabaloo_README +miguelgrinberg_Flask-SocketIO.git,_miguelgrinberg_Flask-SocketIO.git_commits.csv,miguelgrinberg_Flask-SocketIO.git_hullabaloo_README.md +python-cmd2_cmd2.git,_python-cmd2_cmd2.git_commits.csv,python-cmd2_cmd2.git_hullabaloo_README.txt +taem_sxid,_taem_sxid_commits.csv,taem_sxid_hullabaloo_README +ros_kdl_parser,_ros_kdl_parser_commits.csv,ros_kdl_parser_hullabaloo_README.md +Xaviju_inkscape-open-symbols,_Xaviju_inkscape-open-symbols_commits.csv,Xaviju_inkscape-open-symbols_hullabaloo_README.md +cvs-m17n-org_MU-CITE,_cvs-m17n-org_MU-CITE_commits.csv,cvs-m17n-org_MU-CITE_hullabaloo_README.en +vasi_pixz.git,_vasi_pixz.git_commits.csv,vasi_pixz.git_hullabaloo_README +ugexe_zef.git,_ugexe_zef.git_commits.csv,ugexe_zef.git_hullabaloo_README.md +linuxmint_xapp.git,_linuxmint_xapp.git_commits.csv,linuxmint_xapp.git_hullabaloo_README +rrthomas_mmv.git,_rrthomas_mmv.git_commits.csv,rrthomas_mmv.git_hullabaloo_README.md +mattyowl_astLib.git,_mattyowl_astLib.git_commits.csv,mattyowl_astLib.git_hullabaloo_README +sebastianbergmann_php-token-stream,_sebastianbergmann_php-token-stream_commits.csv,sebastianbergmann_php-token-stream_hullabaloo_README.markdown +strengejacke_sjlabelled,_strengejacke_sjlabelled_commits.csv,strengejacke_sjlabelled_hullabaloo_README.md +htop-dev_htop,_htop-dev_htop_commits.csv,htop-dev_htop_hullabaloo_README +kjetilk_p5-atteanx-compatibility-trine.git,_kjetilk_p5-atteanx-compatibility-trine.git_commits.csv,kjetilk_p5-atteanx-compatibility-trine.git_hullabaloo_README.pod +ronsavage_GraphViz.git,_ronsavage_GraphViz.git_commits.csv,ronsavage_GraphViz.git_hullabaloo_README +doorkeeper-gem_doorkeeper-openid_connect.git,_doorkeeper-gem_doorkeeper-openid_connect.git_commits.csv,doorkeeper-gem_doorkeeper-openid_connect.git_hullabaloo_README.md +libinput_libinput,libinput_libinput_commits.csv,libinput_libinput_hullabaloo_README +o9000_tint2,o9000_tint2_commits.csv,o9000_tint2_hullabaloo_README +source-foundry_Hack,_source-foundry_Hack_commits.csv,source-foundry_Hack_hullabaloo_README.md +plasma_plasma-workspace.git,plasma_plasma-workspace.git_commits.csv,plasma_plasma-workspace.git_hullabaloo_README.pam +django-auth-ldap_django-auth-ldap.git,_django-auth-ldap_django-auth-ldap.git_commits.csv,django-auth-ldap_django-auth-ldap.git_hullabaloo_README +libkmahjongg.git,libkmahjongg.git_commits.csv,libkmahjongg.git_hullabaloo_README +nix-community_acpi_call.git,_nix-community_acpi_call.git_commits.csv,nix-community_acpi_call.git_hullabaloo_README +zamaudio_zam-plugins.git,_zamaudio_zam-plugins.git_commits.csv,zamaudio_zam-plugins.git_hullabaloo_README.md +IRkernel_repr.git,_IRkernel_repr.git_commits.csv,IRkernel_repr.git_hullabaloo_README.md +octo_liboping,_octo_liboping_commits.csv,octo_liboping_hullabaloo_README +gosa-project_gosa-plugins-netgroups,_gosa-project_gosa-plugins-netgroups_commits.csv,gosa-project_gosa-plugins-netgroups_hullabaloo_README.md +mattp-_Plack-Middleware-CSRFBlock,_mattp-_Plack-Middleware-CSRFBlock_commits.csv,mattp-_Plack-Middleware-CSRFBlock_hullabaloo_README +juliangruber_brace-expansion.git,_juliangruber_brace-expansion.git_commits.csv,juliangruber_brace-expansion.git_hullabaloo_README.md +pallets-eco_flask-sqlalchemy,_pallets-eco_flask-sqlalchemy_commits.csv,pallets-eco_flask-sqlalchemy_hullabaloo_README +mnooner256_pyqrcode.git,_mnooner256_pyqrcode.git_commits.csv,mnooner256_pyqrcode.git_hullabaloo_README.md +benhoyt_inih,_benhoyt_inih_commits.csv,benhoyt_inih_hullabaloo_README.txt +jashkenas_backbone,_jashkenas_backbone_commits.csv,jashkenas_backbone_hullabaloo_README +ros_genpy.git,_ros_genpy.git_commits.csv,ros_genpy.git_hullabaloo_README +chrissimpkins_shellescape,_chrissimpkins_shellescape_commits.csv,chrissimpkins_shellescape_hullabaloo_README.md +AltraMayor_f3.git,_AltraMayor_f3.git_commits.csv,AltraMayor_f3.git_hullabaloo_README +lxqt_pavucontrol-qt.git,_lxqt_pavucontrol-qt.git_commits.csv,lxqt_pavucontrol-qt.git_hullabaloo_README.html.in +frodwith_MooseX-MultiInitArg.git,_frodwith_MooseX-MultiInitArg.git_commits.csv,frodwith_MooseX-MultiInitArg.git_hullabaloo_README +mitsuhiko_pluginbase.git,_mitsuhiko_pluginbase.git_commits.csv,mitsuhiko_pluginbase.git_hullabaloo_README +rails_rails-html-sanitizer,_rails_rails-html-sanitizer_commits.csv,rails_rails-html-sanitizer_hullabaloo_README.md +awesomeWM_awesome.git,_awesomeWM_awesome.git_commits.csv,awesomeWM_awesome.git_hullabaloo_README +ipython_traitlets.git,_ipython_traitlets.git_commits.csv,ipython_traitlets.git_hullabaloo_README.md +hzeller_gmrender-resurrect.git,_hzeller_gmrender-resurrect.git_commits.csv,hzeller_gmrender-resurrect.git_hullabaloo_README +isaacs_inherits,_isaacs_inherits_commits.csv,isaacs_inherits_hullabaloo_README.md +trapexit_mergerfs,_trapexit_mergerfs_commits.csv,trapexit_mergerfs_hullabaloo_README.md +pyca_bcrypt.git,_pyca_bcrypt.git_commits.csv,pyca_bcrypt.git_hullabaloo_README.rst +x42_harvid.git,_x42_harvid.git_commits.csv,x42_harvid.git_hullabaloo_README +jryans_timers-browserify,_jryans_timers-browserify_commits.csv,jryans_timers-browserify_hullabaloo_README.md +unclechu_node-deep-extend.git,_unclechu_node-deep-extend.git_commits.csv,unclechu_node-deep-extend.git_hullabaloo_README.md +erlware_erlware_commons.git,_erlware_erlware_commons.git_commits.csv,erlware_erlware_commons.git_hullabaloo_README.md +openstreetmap_osm2pgsql.git,_openstreetmap_osm2pgsql.git_commits.csv,openstreetmap_osm2pgsql.git_hullabaloo_README.txt +google_gopacket.git,_google_gopacket.git_commits.csv,google_gopacket.git_hullabaloo_README.md +fbb-git_stealth,fbb-git_stealth_commits.csv,fbb-git_stealth_hullabaloo_README +nodeca_argparse.git,_nodeca_argparse.git_commits.csv,nodeca_argparse.git_hullabaloo_README.md +rra_pgp-sign,_rra_pgp-sign_commits.csv,rra_pgp-sign_hullabaloo_README +sdk_clazy,sdk_clazy_commits.csv,sdk_clazy_hullabaloo_README +circus-tent_chaussette,circus-tent_chaussette_commits.csv,circus-tent_chaussette_hullabaloo_README.rst +exaexa_apulse-debian,exaexa_apulse-debian_commits.csv,exaexa_apulse-debian_hullabaloo_README.md +AppImageCommunity_libappimage.git,_AppImageCommunity_libappimage.git_commits.csv,AppImageCommunity_libappimage.git_hullabaloo_README.md +posva_catimg.git,_posva_catimg.git_commits.csv,posva_catimg.git_hullabaloo_README +python-babel_flask-babel,python-babel_flask-babel_commits.csv,python-babel_flask-babel_hullabaloo_README +GNOME_cantarell-fonts.git,GNOME_cantarell-fonts.git_commits.csv,GNOME_cantarell-fonts.git_hullabaloo_README +r-lib_vctrs.git,_r-lib_vctrs.git_commits.csv,r-lib_vctrs.git_hullabaloo_README.md +felixge_node-dirty.git,_felixge_node-dirty.git_commits.csv,felixge_node-dirty.git_hullabaloo_README.md +seattlerb_rubyinline.git,_seattlerb_rubyinline.git_commits.csv,seattlerb_rubyinline.git_hullabaloo_README.txt +fln_gnarwl,_fln_gnarwl_commits.csv,fln_gnarwl_hullabaloo_README.md +TooTallNate_ansi.js.git,_TooTallNate_ansi.js.git_commits.csv,TooTallNate_ansi.js.git_hullabaloo_README.md +evgeni_hdapsd.git,_evgeni_hdapsd.git_commits.csv,evgeni_hdapsd.git_hullabaloo_README +rnjacobs_wmbubble.git,_rnjacobs_wmbubble.git_commits.csv,rnjacobs_wmbubble.git_hullabaloo_README +websockets_ws.git,_websockets_ws.git_commits.csv,websockets_ws.git_hullabaloo_README.md +ipython_ipython_genutils,_ipython_ipython_genutils_commits.csv,ipython_ipython_genutils_hullabaloo_README.md +mvduin_perl-Data-Alias,_mvduin_perl-Data-Alias_commits.csv,mvduin_perl-Data-Alias_hullabaloo_README +aircrack-ng_mdk4,_aircrack-ng_mdk4_commits.csv,aircrack-ng_mdk4_hullabaloo_README.md +jlaine_python-netfilter.git,_jlaine_python-netfilter.git_commits.csv,jlaine_python-netfilter.git_hullabaloo_README +lima1_p5-latex-table.git,_lima1_p5-latex-table.git_commits.csv,lima1_p5-latex-table.git_hullabaloo_README +matthewwithanm_pilkit,_matthewwithanm_pilkit_commits.csv,matthewwithanm_pilkit_hullabaloo_README.rst +xtaran_systray-mdstat,xtaran_systray-mdstat_commits.csv,xtaran_systray-mdstat_hullabaloo_README.md +puppetlabs_puppetlabs-mysql,_puppetlabs_puppetlabs-mysql_commits.csv,puppetlabs_puppetlabs-mysql_hullabaloo_README +fsphil_hacktv,_fsphil_hacktv_commits.csv,fsphil_hacktv_hullabaloo_README +mbleigh_seed-fu,_mbleigh_seed-fu_commits.csv,mbleigh_seed-fu_hullabaloo_README +typester_Test-RedisServer.git,_typester_Test-RedisServer.git_commits.csv,typester_Test-RedisServer.git_hullabaloo_README +kholtman_afio,_kholtman_afio_commits.csv,kholtman_afio_hullabaloo_README +sinatra_sinatra.git,_sinatra_sinatra.git_commits.csv,sinatra_sinatra.git_hullabaloo_README +xattr_xattr.git,_xattr_xattr.git_commits.csv,xattr_xattr.git_hullabaloo_README.txt +nordlicht_nordlicht,_nordlicht_nordlicht_commits.csv,nordlicht_nordlicht_hullabaloo_README.md +pikepdf_pikepdf.git,_pikepdf_pikepdf.git_commits.csv,pikepdf_pikepdf.git_hullabaloo_README.md +Pylons_pastedeploy,_Pylons_pastedeploy_commits.csv,Pylons_pastedeploy_hullabaloo_README +jeremysalwen_lv2file.git,_jeremysalwen_lv2file.git_commits.csv,jeremysalwen_lv2file.git_hullabaloo_README +timchen119_tpm2-initramfs-tool,timchen119_tpm2-initramfs-tool_commits.csv,timchen119_tpm2-initramfs-tool_hullabaloo_README.md +bobrik_node-mess,_bobrik_node-mess_commits.csv,bobrik_node-mess_hullabaloo_README.md +ocaml-community_zed.git,_ocaml-community_zed.git_commits.csv,ocaml-community_zed.git_hullabaloo_README.md +JuliaStrings_utf8proc,_JuliaStrings_utf8proc_commits.csv,JuliaStrings_utf8proc_hullabaloo_README +jhnc_findimagedupes.git,_jhnc_findimagedupes.git_commits.csv,jhnc_findimagedupes.git_hullabaloo_README +PyCQA_flake8-polyfill.git,_PyCQA_flake8-polyfill.git_commits.csv,PyCQA_flake8-polyfill.git_hullabaloo_README.rst +xwax_xwax.git,_xwax_xwax.git_commits.csv,xwax_xwax.git_hullabaloo_README +lxqt_lxqt-about.git,_lxqt_lxqt-about.git_commits.csv,lxqt_lxqt-about.git_hullabaloo_README.md +google_pybadges.git,_google_pybadges.git_commits.csv,google_pybadges.git_hullabaloo_README.md +twojstaryzdomu_bchunk,_twojstaryzdomu_bchunk_commits.csv,twojstaryzdomu_bchunk_hullabaloo_README +schrodinger_maeparser.git,_schrodinger_maeparser.git_commits.csv,schrodinger_maeparser.git_hullabaloo_README.md +ropensci_crul.git,_ropensci_crul.git_commits.csv,ropensci_crul.git_hullabaloo_README.md +aconchillo_guile-json.git,_aconchillo_guile-json.git_commits.csv,aconchillo_guile-json.git_hullabaloo_README.md +infirit_caja-admin,_infirit_caja-admin_commits.csv,infirit_caja-admin_hullabaloo_README.mkd +terser_terser,_terser_terser_commits.csv,terser_terser_hullabaloo_README.md +periapt_geo-google-mapobject.git,_periapt_geo-google-mapobject.git_commits.csv,periapt_geo-google-mapobject.git_hullabaloo_README +raszi_node-tmp.git,_raszi_node-tmp.git_commits.csv,raszi_node-tmp.git_hullabaloo_README.markdown +rails_actionpack-xml_parser,_rails_actionpack-xml_parser_commits.csv,rails_actionpack-xml_parser_hullabaloo_README.md +SmileyChris_django-countries,_SmileyChris_django-countries_commits.csv,SmileyChris_django-countries_hullabaloo_README +mptre_yank,_mptre_yank_commits.csv,mptre_yank_hullabaloo_README +PyCQA_prospector,_PyCQA_prospector_commits.csv,PyCQA_prospector_hullabaloo_README.md +Tarsnap_scrypt.git,_Tarsnap_scrypt.git_commits.csv,Tarsnap_scrypt.git_hullabaloo_README +jcdubois_pixelize.git,_jcdubois_pixelize.git_commits.csv,jcdubois_pixelize.git_hullabaloo_README.md +syohex_emacs-git-messenger.git,_syohex_emacs-git-messenger.git_commits.csv,syohex_emacs-git-messenger.git_hullabaloo_README.md +GNOME_vala.git,GNOME_vala.git_commits.csv,GNOME_vala.git_hullabaloo_README +jib_config-auto.git,_jib_config-auto.git_commits.csv,jib_config-auto.git_hullabaloo_README +hgrecco_pint.git,_hgrecco_pint.git_commits.csv,hgrecco_pint.git_hullabaloo_README +aws_aws-cli,_aws_aws-cli_commits.csv,aws_aws-cli_hullabaloo_README.md +storaged-project_libbytesize,_storaged-project_libbytesize_commits.csv,storaged-project_libbytesize_hullabaloo_README.rst +jamesls_fakeredis.git,_jamesls_fakeredis.git_commits.csv,jamesls_fakeredis.git_hullabaloo_README.rst +plasma_ksshaskpass.git,plasma_ksshaskpass.git_commits.csv,plasma_ksshaskpass.git_hullabaloo_README +exodist_Term-Table.git,_exodist_Term-Table.git_commits.csv,exodist_Term-Table.git_hullabaloo_README.md +google_yapf.git,_google_yapf.git_commits.csv,google_yapf.git_hullabaloo_README.rst +pytest-dev_pytest.git,_pytest-dev_pytest.git_commits.csv,pytest-dev_pytest.git_hullabaloo_README.txt +libusb_hidapi.git,_libusb_hidapi.git_commits.csv,libusb_hidapi.git_hullabaloo_README.txt +kobolabs_dhcpcd-dbus.git,_kobolabs_dhcpcd-dbus.git_commits.csv,kobolabs_dhcpcd-dbus.git_hullabaloo_README +lxqt_lxqt-config.git,_lxqt_lxqt-config.git_commits.csv,lxqt_lxqt-config.git_hullabaloo_README +keepassxreboot_keepassxc.git,_keepassxreboot_keepassxc.git_commits.csv,keepassxreboot_keepassxc.git_hullabaloo_README.md +hboetes_mg.git,_hboetes_mg.git_commits.csv,hboetes_mg.git_hullabaloo_README.md +minimistjs_minimist.git,_minimistjs_minimist.git_commits.csv,minimistjs_minimist.git_hullabaloo_README.md +pika_pika,_pika_pika_commits.csv,pika_pika_hullabaloo_README.md +nzjrs_osm-gps-map,_nzjrs_osm-gps-map_commits.csv,nzjrs_osm-gps-map_hullabaloo_README +grub-customizer,grub-customizer_commits.csv,grub-customizer_hullabaloo_README +killbots.git,killbots.git_commits.csv,killbots.git_hullabaloo_README.PACKAGERS +fontforge_libspiro.git,_fontforge_libspiro.git_commits.csv,fontforge_libspiro.git_hullabaloo_README-RaphLevien +Backblaze_b2-sdk-python.git,_Backblaze_b2-sdk-python.git_commits.csv,Backblaze_b2-sdk-python.git_hullabaloo_README.md +marekjm_diaspy,_marekjm_diaspy_commits.csv,marekjm_diaspy_hullabaloo_README.md +jeinzi_thunar-dropbox.git,_jeinzi_thunar-dropbox.git_commits.csv,jeinzi_thunar-dropbox.git_hullabaloo_README.md +pyutils_line_profiler,_pyutils_line_profiler_commits.csv,pyutils_line_profiler_hullabaloo_README.txt +drakkar-lig_debootstick,drakkar-lig_debootstick_commits.csv,drakkar-lig_debootstick_hullabaloo_README.md +gristlabs_asttokens.git,_gristlabs_asttokens.git_commits.csv,gristlabs_asttokens.git_hullabaloo_README.md +anholt_libepoxy.git,_anholt_libepoxy.git_commits.csv,anholt_libepoxy.git_hullabaloo_README.md +mobile-broadband_ModemManager.git,mobile-broadband_ModemManager.git_commits.csv,mobile-broadband_ModemManager.git_hullabaloo_README +ros-planning_navigation_msgs,_ros-planning_navigation_msgs_commits.csv,ros-planning_navigation_msgs_hullabaloo_README.md +ubports_core_cmake-extras,ubports_core_cmake-extras_commits.csv,ubports_core_cmake-extras_hullabaloo_README.md +clkao_IO-Digest.git,_clkao_IO-Digest.git_commits.csv,clkao_IO-Digest.git_hullabaloo_README +tristanheaven_gtkhash,_tristanheaven_gtkhash_commits.csv,tristanheaven_gtkhash_hullabaloo_README +eonpatapon_gnome-shell-extension-caffeine,_eonpatapon_gnome-shell-extension-caffeine_commits.csv,eonpatapon_gnome-shell-extension-caffeine_hullabaloo_README.md +jayclassless_setoptconf.git,_jayclassless_setoptconf.git_commits.csv,jayclassless_setoptconf.git_hullabaloo_README.rst +P-H-C_phc-winner-argon2,_P-H-C_phc-winner-argon2_commits.csv,P-H-C_phc-winner-argon2_hullabaloo_README.md +puppetlabs_puppetlabs-ntp.git,_puppetlabs_puppetlabs-ntp.git_commits.csv,puppetlabs_puppetlabs-ntp.git_hullabaloo_README +chorny_Tie-IxHash.git,_chorny_Tie-IxHash.git_commits.csv,chorny_Tie-IxHash.git_hullabaloo_README +TooTallNate_node-bindings,_TooTallNate_node-bindings_commits.csv,TooTallNate_node-bindings_hullabaloo_README.md +doug-101_ConvertAll.git,_doug-101_ConvertAll.git_commits.csv,doug-101_ConvertAll.git_hullabaloo_README.md +mateidavid_hpptools.git,_mateidavid_hpptools.git_commits.csv,mateidavid_hpptools.git_hullabaloo_README.org +oVirt_mom,_oVirt_mom_commits.csv,oVirt_mom_hullabaloo_README +twisted_incremental.git,_twisted_incremental.git_commits.csv,twisted_incremental.git_hullabaloo_README.rst +dkopecek_usbguard,_dkopecek_usbguard_commits.csv,dkopecek_usbguard_hullabaloo_README.md +eliben_pyelftools.git,_eliben_pyelftools.git_commits.csv,eliben_pyelftools.git_hullabaloo_README +aaugustin_websockets.git,_aaugustin_websockets.git_commits.csv,aaugustin_websockets.git_hullabaloo_README +pygridtools_drmaa-python,_pygridtools_drmaa-python_commits.csv,pygridtools_drmaa-python_hullabaloo_README.md +manwar_Test-XPath.git,_manwar_Test-XPath.git_commits.csv,manwar_Test-XPath.git_hullabaloo_README +wearpants_fakesleep,_wearpants_fakesleep_commits.csv,wearpants_fakesleep_hullabaloo_README.rst +sebastianbergmann_global-state,_sebastianbergmann_global-state_commits.csv,sebastianbergmann_global-state_hullabaloo_README.md +pytroll_trollsift,_pytroll_trollsift_commits.csv,pytroll_trollsift_hullabaloo_README.md +carsongee_pytest-pylint,_carsongee_pytest-pylint_commits.csv,carsongee_pytest-pylint_hullabaloo_README.rst +tatsuhiro-t_wslay,_tatsuhiro-t_wslay_commits.csv,tatsuhiro-t_wslay_hullabaloo_README +yappo_p5-mousex-types.git,_yappo_p5-mousex-types.git_commits.csv,yappo_p5-mousex-types.git_hullabaloo_README +UbuntuBudgie_budgie-indicator-applet,UbuntuBudgie_budgie-indicator-applet_commits.csv,UbuntuBudgie_budgie-indicator-applet_hullabaloo_README.md +broquaint_git-pureperl.git,_broquaint_git-pureperl.git_commits.csv,broquaint_git-pureperl.git_hullabaloo_README +luvit_luv,_luvit_luv_commits.csv,luvit_luv_hullabaloo_README.md +libyal_libqcow.git,_libyal_libqcow.git_commits.csv,libyal_libqcow.git_hullabaloo_README +geopandas_geopandas.git,_geopandas_geopandas.git_commits.csv,geopandas_geopandas.git_hullabaloo_README.md +linux-on-mac_mbpfan.git,_linux-on-mac_mbpfan.git_commits.csv,linux-on-mac_mbpfan.git_hullabaloo_README +LucianoPC_mkalias,_LucianoPC_mkalias_commits.csv,LucianoPC_mkalias_hullabaloo_README.md +nanomsg_nanomsg.git,_nanomsg_nanomsg.git_commits.csv,nanomsg_nanomsg.git_hullabaloo_README.asciidoc +cscorley_whatthepatch,_cscorley_whatthepatch_commits.csv,cscorley_whatthepatch_hullabaloo_README.md +jbardin_scp.py,_jbardin_scp.py_commits.csv,jbardin_scp.py_hullabaloo_README +p12tic_cppreference-doc-debian,p12tic_cppreference-doc-debian_commits.csv,p12tic_cppreference-doc-debian_hullabaloo_index-functions.README +crosswire-bible-society_tdavid.git,crosswire-bible-society_tdavid.git_commits.csv,crosswire-bible-society_tdavid.git_hullabaloo_README.md +frescobaldi_python-poppler-qt5,_frescobaldi_python-poppler-qt5_commits.csv,frescobaldi_python-poppler-qt5_hullabaloo_README.rst +storaged-project_udisks,_storaged-project_udisks_commits.csv,storaged-project_udisks_hullabaloo_README +GNOME_libpeas.git,GNOME_libpeas.git_commits.csv,GNOME_libpeas.git_hullabaloo_README +git-big-picture_git-big-picture.git,_git-big-picture_git-big-picture.git_commits.csv,git-big-picture_git-big-picture.git_hullabaloo_README +justmoon_node-extend,_justmoon_node-extend_commits.csv,justmoon_node-extend_hullabaloo_README.md +openstack_swauth.git,_openstack_swauth.git_commits.csv,openstack_swauth.git_hullabaloo_README +mika_jenkins-debian-glue,mika_jenkins-debian-glue_commits.csv,mika_jenkins-debian-glue_hullabaloo_README.org +jupyter_jupyter-sphinx.git,_jupyter_jupyter-sphinx.git_commits.csv,jupyter_jupyter-sphinx.git_hullabaloo_README.md +RPi-Distro_pgzero,RPi-Distro_pgzero_commits.csv,RPi-Distro_pgzero_hullabaloo_README.txt +jonschlinkert_global-modules,_jonschlinkert_global-modules_commits.csv,jonschlinkert_global-modules_hullabaloo_README.md +HaxeFoundation_neko-debian,HaxeFoundation_neko-debian_commits.csv,HaxeFoundation_neko-debian_hullabaloo_README.source +savonet_ocaml-theora.git,_savonet_ocaml-theora.git_commits.csv,savonet_ocaml-theora.git_hullabaloo_README +dleonard0_pktstat,_dleonard0_pktstat_commits.csv,dleonard0_pktstat_hullabaloo_README +Pylons_venusian,_Pylons_venusian_commits.csv,Pylons_venusian_hullabaloo_README.txt +bingos_sort-naturally.git,_bingos_sort-naturally.git_commits.csv,bingos_sort-naturally.git_hullabaloo_README +websploit_websploit,_websploit_websploit_commits.csv,websploit_websploit_hullabaloo_README.md +mvantellingen_python-zeep.git,_mvantellingen_python-zeep.git_commits.csv,mvantellingen_python-zeep.git_hullabaloo_README.rst +ncarrier_discus.git,_ncarrier_discus.git_commits.csv,ncarrier_discus.git_hullabaloo_README +GNOME_libmediaart.git,GNOME_libmediaart.git_commits.csv,GNOME_libmediaart.git_hullabaloo_README.md +pub_scm_devel_pahole_pahole.git,pub_scm_devel_pahole_pahole.git_commits.csv,pub_scm_devel_pahole_pahole.git_hullabaloo_README +nvalimak_fsm-lite.git,_nvalimak_fsm-lite.git_commits.csv,nvalimak_fsm-lite.git_hullabaloo_README.md +jjjake_internetarchive.git,_jjjake_internetarchive.git_commits.csv,jjjake_internetarchive.git_hullabaloo_README.md +bovo.git,bovo.git_commits.csv,bovo.git_hullabaloo_README.PACKAGERS +broadinstitute_barclay.git,_broadinstitute_barclay.git_commits.csv,broadinstitute_barclay.git_hullabaloo_README.md +bleakgrey_tootle.git,_bleakgrey_tootle.git_commits.csv,bleakgrey_tootle.git_hullabaloo_README.md +ropensci_av.git,_ropensci_av.git_commits.csv,ropensci_av.git_hullabaloo_README.md +troglobit_smcroute.git,_troglobit_smcroute.git_commits.csv,troglobit_smcroute.git_hullabaloo_README +chuckremes_ffi-rzmq,_chuckremes_ffi-rzmq_commits.csv,chuckremes_ffi-rzmq_hullabaloo_README.txt +simi_omniauth-facebook,_simi_omniauth-facebook_commits.csv,simi_omniauth-facebook_hullabaloo_README.md +nhorman_dropwatch,_nhorman_dropwatch_commits.csv,nhorman_dropwatch_hullabaloo_README +cucumber_aruba.git,_cucumber_aruba.git_commits.csv,cucumber_aruba.git_hullabaloo_README.rdoc +bottlepy_bottle.git,_bottlepy_bottle.git_commits.csv,bottlepy_bottle.git_hullabaloo_README.md +GNOME_gnome-packagekit,GNOME_gnome-packagekit_commits.csv,GNOME_gnome-packagekit_hullabaloo_README +rackerlabs_kthresher,_rackerlabs_kthresher_commits.csv,rackerlabs_kthresher_hullabaloo_README.md +Debian_pk4,Debian_pk4_commits.csv,Debian_pk4_hullabaloo_README.md +leggewie-DM_libcapi20,leggewie-DM_libcapi20_commits.csv,leggewie-DM_libcapi20_hullabaloo_README +google_jimfs.git,_google_jimfs.git_commits.csv,google_jimfs.git_hullabaloo_README.md +openstack_rally.git,_openstack_rally.git_commits.csv,openstack_rally.git_hullabaloo_README.md +naelstrof_slop,_naelstrof_slop_commits.csv,naelstrof_slop_hullabaloo_README.md +jupyter_jupyter_client,_jupyter_jupyter_client_commits.csv,jupyter_jupyter_client_hullabaloo_README.md +KDAB_hotspot.git,_KDAB_hotspot.git_commits.csv,KDAB_hotspot.git_hullabaloo_README.md +lunarmodules_say.git,_lunarmodules_say.git_commits.csv,lunarmodules_say.git_hullabaloo_README.md +coturn_coturn,coturn_coturn_commits.csv,coturn_coturn_hullabaloo_README.turnutils +jseidl_GoldenEye,_jseidl_GoldenEye_commits.csv,jseidl_GoldenEye_hullabaloo_README.md +paulproteus_ccd2iso-debian,paulproteus_ccd2iso-debian_commits.csv,paulproteus_ccd2iso-debian_hullabaloo_README +drowe67_freedv-gui,_drowe67_freedv-gui_commits.csv,drowe67_freedv-gui_hullabaloo_README.txt +seperman_deepdiff.git,_seperman_deepdiff.git_commits.csv,seperman_deepdiff.git_hullabaloo_README.md +lxctl_lxctl,_lxctl_lxctl_commits.csv,lxctl_lxctl_hullabaloo_README.md +x42_x42-plugins,_x42_x42-plugins_commits.csv,x42_x42-plugins_hullabaloo_README.md +DaveGamble_cJSON.git,_DaveGamble_cJSON.git_commits.csv,DaveGamble_cJSON.git_hullabaloo_README +matze_pkgconfig,_matze_pkgconfig_commits.csv,matze_pkgconfig_hullabaloo_README.md +TUDelftGeodesy_Doris,_TUDelftGeodesy_Doris_commits.csv,TUDelftGeodesy_Doris_hullabaloo_README +cleishm_libneo4j-client,cleishm_libneo4j-client_commits.csv,cleishm_libneo4j-client_hullabaloo_README.md +libsndfile_sndfile-tools.git,_libsndfile_sndfile-tools.git_commits.csv,libsndfile_sndfile-tools.git_hullabaloo_README +MusicPlayerDaemon_mpdscribble.git,_MusicPlayerDaemon_mpdscribble.git_commits.csv,MusicPlayerDaemon_mpdscribble.git_hullabaloo_README +python_typed_ast.git,_python_typed_ast.git_commits.csv,python_typed_ast.git_hullabaloo_README.md +r-lib_gtable.git,_r-lib_gtable.git_commits.csv,r-lib_gtable.git_hullabaloo_README.md +libratbag_piper,_libratbag_piper_commits.csv,libratbag_piper_hullabaloo_README +rhinstaller_fwupdate.git,_rhinstaller_fwupdate.git_commits.csv,rhinstaller_fwupdate.git_hullabaloo_README.md +plasma_breeze.git,plasma_breeze.git_commits.csv,plasma_breeze.git_hullabaloo_README +gauteh_lieer,_gauteh_lieer_commits.csv,gauteh_lieer_hullabaloo_README.md +mathiasbynens_unicode-property-aliases-ecmascript,_mathiasbynens_unicode-property-aliases-ecmascript_commits.csv,mathiasbynens_unicode-property-aliases-ecmascript_hullabaloo_README.md +mate-desktop_mozo.git,_mate-desktop_mozo.git_commits.csv,mate-desktop_mozo.git_hullabaloo_README +GNOME_polari.git,GNOME_polari.git_commits.csv,GNOME_polari.git_hullabaloo_README.md +pyutilib_pyutilib,_pyutilib_pyutilib_commits.csv,pyutilib_pyutilib_hullabaloo_README.txt +usit-gd_zabbix-cli,usit-gd_zabbix-cli_commits.csv,usit-gd_zabbix-cli_hullabaloo_README.md +todotxt_todo.txt-cli.git,_todotxt_todo.txt-cli.git_commits.csv,todotxt_todo.txt-cli.git_hullabaloo_README +swami_libinstpatch,_swami_libinstpatch_commits.csv,swami_libinstpatch_hullabaloo_README +artemsen_pipewalker,_artemsen_pipewalker_commits.csv,artemsen_pipewalker_hullabaloo_README +dkogan_libdogleg.git,_dkogan_libdogleg.git_commits.csv,dkogan_libdogleg.git_hullabaloo_README +ibus_ibus.git,_ibus_ibus.git_commits.csv,ibus_ibus.git_hullabaloo_README +hashbangperl_perl-pdf-report.git,_hashbangperl_perl-pdf-report.git_commits.csv,hashbangperl_perl-pdf-report.git_hullabaloo_README +libyal_dtfabric.git,_libyal_dtfabric.git_commits.csv,libyal_dtfabric.git_hullabaloo_README +prometheus_haproxy_exporter,_prometheus_haproxy_exporter_commits.csv,prometheus_haproxy_exporter_hullabaloo_README.md +ltsp_ltsp,ltsp_ltsp_commits.csv,ltsp_ltsp_hullabaloo_README.md +videlec_pplpy,videlec_pplpy_commits.csv,videlec_pplpy_hullabaloo_README.txt +plasma_kwallet-pam.git,plasma_kwallet-pam.git_commits.csv,plasma_kwallet-pam.git_hullabaloo_README.txt +sebastianbergmann_php-invoker,_sebastianbergmann_php-invoker_commits.csv,sebastianbergmann_php-invoker_hullabaloo_README.markdown +UbuntuBudgie_budgie-extras,UbuntuBudgie_budgie-extras_commits.csv,UbuntuBudgie_budgie-extras_hullabaloo_README.md +arvidjaar_bootinfoscript,_arvidjaar_bootinfoscript_commits.csv,arvidjaar_bootinfoscript_hullabaloo_README +cbrnr_sigviewer.git,_cbrnr_sigviewer.git_commits.csv,cbrnr_sigviewer.git_hullabaloo_README +ahmetb_kubectx,_ahmetb_kubectx_commits.csv,ahmetb_kubectx_hullabaloo_README.md +guillaumechereau_goxel.git,_guillaumechereau_goxel.git_commits.csv,guillaumechereau_goxel.git_hullabaloo_README +dkg_dkg-handwriting,dkg_dkg-handwriting_commits.csv,dkg_dkg-handwriting_hullabaloo_README.TXT +jarib_childprocess.git,_jarib_childprocess.git_commits.csv,jarib_childprocess.git_hullabaloo_README.rdoc +lxqt_screengrab.git,_lxqt_screengrab.git_commits.csv,lxqt_screengrab.git_hullabaloo_README.txt +e2tools_e2tools,_e2tools_e2tools_commits.csv,e2tools_e2tools_hullabaloo_README +pagekite_Colormake,_pagekite_Colormake_commits.csv,pagekite_Colormake_hullabaloo_README +AprilRobotics_apriltag.git,_AprilRobotics_apriltag.git_commits.csv,AprilRobotics_apriltag.git_hullabaloo_README.md +mapbox_millstone,_mapbox_millstone_commits.csv,mapbox_millstone_hullabaloo_README.md +hoelzro_plack-test-anyevent.git,_hoelzro_plack-test-anyevent.git_commits.csv,hoelzro_plack-test-anyevent.git_hullabaloo_README +jwilk_dothost,_jwilk_dothost_commits.csv,jwilk_dothost_hullabaloo_README.rst +mootools_mootools-core.git,_mootools_mootools-core.git_commits.csv,mootools_mootools-core.git_hullabaloo_README +etd-framework_datatables-extensions,_etd-framework_datatables-extensions_commits.csv,etd-framework_datatables-extensions_hullabaloo_README.md +pavlov99_json-rpc,_pavlov99_json-rpc_commits.csv,pavlov99_json-rpc_hullabaloo_README.md +dev_ltfatpy,dev_ltfatpy_commits.csv,dev_ltfatpy_hullabaloo_README.rst +GNOME_gsettings-desktop-schemas.git,GNOME_gsettings-desktop-schemas.git_commits.csv,GNOME_gsettings-desktop-schemas.git_hullabaloo_README +pygraphviz_pygraphviz.git,_pygraphviz_pygraphviz.git_commits.csv,pygraphviz_pygraphviz.git_hullabaloo_README +PDLPorters_perl5-PGPLOT.git,_PDLPorters_perl5-PGPLOT.git_commits.csv,PDLPorters_perl5-PGPLOT.git_hullabaloo_README +jsonpickle_jsonpickle,_jsonpickle_jsonpickle_commits.csv,jsonpickle_jsonpickle_hullabaloo_README +zeek_pysubnettree.git,_zeek_pysubnettree.git_commits.csv,zeek_pysubnettree.git_hullabaloo_README +ismrmrd_ismrmrd.git,_ismrmrd_ismrmrd.git_commits.csv,ismrmrd_ismrmrd.git_hullabaloo_README.rst +fkei_JSON.minify,_fkei_JSON.minify_commits.csv,fkei_JSON.minify_hullabaloo_README.txt +matthew-brett_texext.git,_matthew-brett_texext.git_commits.csv,matthew-brett_texext.git_hullabaloo_README.rst +besser82_libxcrypt.git,_besser82_libxcrypt.git_commits.csv,besser82_libxcrypt.git_hullabaloo_README.ufc-crypt +pytest-dev_pytest-forked.git,_pytest-dev_pytest-forked.git_commits.csv,pytest-dev_pytest-forked.git_hullabaloo_README.rst +django-cms_django-classy-tags,_django-cms_django-classy-tags_commits.csv,django-cms_django-classy-tags_hullabaloo_README +mariocasciaro_object-path,_mariocasciaro_object-path_commits.csv,mariocasciaro_object-path_hullabaloo_README.md +celiao_tmdbsimple,_celiao_tmdbsimple_commits.csv,celiao_tmdbsimple_hullabaloo_README.rst +astraw_stdeb.git,_astraw_stdeb.git_commits.csv,astraw_stdeb.git_hullabaloo_README.txt +google_xsecurelock,google_xsecurelock_commits.csv,google_xsecurelock_hullabaloo_README.md +steveire_grantlee.git,_steveire_grantlee.git_commits.csv,steveire_grantlee.git_hullabaloo_README +firecat53_urlscan,_firecat53_urlscan_commits.csv,firecat53_urlscan_hullabaloo_README +tudo-r_BatchJobs.git,_tudo-r_BatchJobs.git_commits.csv,tudo-r_BatchJobs.git_hullabaloo_README.md +iptux-src_iptux,_iptux-src_iptux_commits.csv,iptux-src_iptux_hullabaloo_README +phihag_ipaddress,_phihag_ipaddress_commits.csv,phihag_ipaddress_hullabaloo_README.md +kmike_datrie.git,_kmike_datrie.git_commits.csv,kmike_datrie.git_hullabaloo_README.rst +realmd_adcli,realmd_adcli_commits.csv,realmd_adcli_hullabaloo_README +pydata_numexpr,_pydata_numexpr_commits.csv,pydata_numexpr_hullabaloo_README +NanoComp_harminv,_NanoComp_harminv_commits.csv,NanoComp_harminv_hullabaloo_README +crayzeewulf_libserial.git,_crayzeewulf_libserial.git_commits.csv,crayzeewulf_libserial.git_hullabaloo_README +rubik_mando.git,_rubik_mando.git_commits.csv,rubik_mando.git_hullabaloo_README.md +nferraz_st,_nferraz_st_commits.csv,nferraz_st_hullabaloo_README.md +containers_conmon,_containers_conmon_commits.csv,containers_conmon_hullabaloo_README.md +gccxml_pygccxml,_gccxml_pygccxml_commits.csv,gccxml_pygccxml_hullabaloo_README.txt +redis-store_redis-store,_redis-store_redis-store_commits.csv,redis-store_redis-store_hullabaloo_README.textile +jcc_zram-tools.git,jcc_zram-tools.git_commits.csv,jcc_zram-tools.git_hullabaloo_README.md +felixdoerre_primus_vk,_felixdoerre_primus_vk_commits.csv,felixdoerre_primus_vk_hullabaloo_README.md +mrabarnett_mrab-regex,_mrabarnett_mrab-regex_commits.csv,mrabarnett_mrab-regex_hullabaloo_README +douardda_pyramid_multiauth,douardda_pyramid_multiauth_commits.csv,douardda_pyramid_multiauth_hullabaloo_README.txt +solnic_virtus.git,_solnic_virtus.git_commits.csv,solnic_virtus.git_hullabaloo_README.rdoc +brandon-rhodes_pyephem.git,_brandon-rhodes_pyephem.git_commits.csv,brandon-rhodes_pyephem.git_hullabaloo_README +linuxdeepin_deepin-notifications,_linuxdeepin_deepin-notifications_commits.csv,linuxdeepin_deepin-notifications_hullabaloo_README.md +attr-encrypted_encryptor,_attr-encrypted_encryptor_commits.csv,attr-encrypted_encryptor_hullabaloo_README.markdown +KimNorgaard_validates_hostname,_KimNorgaard_validates_hostname_commits.csv,KimNorgaard_validates_hostname_hullabaloo_README +Seldaek_monolog,_Seldaek_monolog_commits.csv,Seldaek_monolog_hullabaloo_README.mdown +ccampbell_mousetrap,_ccampbell_mousetrap_commits.csv,ccampbell_mousetrap_hullabaloo_README.md +derf_feh.git,_derf_feh.git_commits.csv,derf_feh.git_hullabaloo_README +jm_toml,_jm_toml_commits.csv,jm_toml_hullabaloo_README.md +thp_wavbreaker.git,_thp_wavbreaker.git_commits.csv,thp_wavbreaker.git_hullabaloo_README +warner_magic-wormhole.git,_warner_magic-wormhole.git_commits.csv,warner_magic-wormhole.git_hullabaloo_README.md +pipewire_pipewire,pipewire_pipewire_commits.csv,pipewire_pipewire_hullabaloo_README +LibreCat_Catmandu-Store-MongoDB.git,_LibreCat_Catmandu-Store-MongoDB.git_commits.csv,LibreCat_Catmandu-Store-MongoDB.git_hullabaloo_README +zealdocs_zeal,_zealdocs_zeal_commits.csv,zealdocs_zeal_hullabaloo_README.md +aperezdc_signify.git,_aperezdc_signify.git_commits.csv,aperezdc_signify.git_hullabaloo_README.md +glondu_nss-passwords,_glondu_nss-passwords_commits.csv,glondu_nss-passwords_hullabaloo_README +CristianHenzel_ClipIt.git,_CristianHenzel_ClipIt.git_commits.csv,CristianHenzel_ClipIt.git_hullabaloo_README +repoze_repoze.tm2.git,_repoze_repoze.tm2.git_commits.csv,repoze_repoze.tm2.git_hullabaloo_README.txt +nghttp2_nghttp2.git,_nghttp2_nghttp2.git_commits.csv,nghttp2_nghttp2.git_hullabaloo_README +GNOME_gupnp-tools.git,GNOME_gupnp-tools.git_commits.csv,GNOME_gupnp-tools.git_hullabaloo_README +jart_fabulous.git,_jart_fabulous.git_commits.csv,jart_fabulous.git_hullabaloo_README +davesteele_aioprocessing,davesteele_aioprocessing_commits.csv,davesteele_aioprocessing_hullabaloo_README.md +alexdantas_pacman4console.debian,alexdantas_pacman4console.debian_commits.csv,alexdantas_pacman4console.debian_hullabaloo_README +mvidner_ruby-dbus,_mvidner_ruby-dbus_commits.csv,mvidner_ruby-dbus_hullabaloo_README +django-mptt_django-mptt.git,_django-mptt_django-mptt.git_commits.csv,django-mptt_django-mptt.git_hullabaloo_README +Bioconductor_DelayedArray.git,_Bioconductor_DelayedArray.git_commits.csv,Bioconductor_DelayedArray.git_hullabaloo_README.md +douglascrockford_JSON-js,_douglascrockford_JSON-js_commits.csv,douglascrockford_JSON-js_hullabaloo_README +intel_bmap-tools,_intel_bmap-tools_commits.csv,intel_bmap-tools_hullabaloo_README +state-machines_state_machines-activemodel,_state-machines_state_machines-activemodel_commits.csv,state-machines_state_machines-activemodel_hullabaloo_README.md +GNOME_libsoup,GNOME_libsoup_commits.csv,GNOME_libsoup_hullabaloo_README +nichtich_RDF-NS.git,_nichtich_RDF-NS.git_commits.csv,nichtich_RDF-NS.git_hullabaloo_README.mkdn +rails_sass-rails,_rails_sass-rails_commits.csv,rails_sass-rails_hullabaloo_README.markdown +martinpitt_python-dbusmock,_martinpitt_python-dbusmock_commits.csv,martinpitt_python-dbusmock_hullabaloo_README.rst +bestpractical_http-server-simple,_bestpractical_http-server-simple_commits.csv,bestpractical_http-server-simple_hullabaloo_README +karenetheridge_B-Hooks-OP-Check,_karenetheridge_B-Hooks-OP-Check_commits.csv,karenetheridge_B-Hooks-OP-Check_hullabaloo_README.pod +DarwinAwardWinner_with-simulated-input.git,_DarwinAwardWinner_with-simulated-input.git_commits.csv,DarwinAwardWinner_with-simulated-input.git_hullabaloo_README.md +ejwa_gitinspector,_ejwa_gitinspector_commits.csv,ejwa_gitinspector_hullabaloo_README.txt +safe-rm,safe-rm_commits.csv,safe-rm_hullabaloo_README +osmcode_osmcoastline.git,_osmcode_osmcoastline.git_commits.csv,osmcode_osmcoastline.git_hullabaloo_README +bucciarati_mpc123,_bucciarati_mpc123_commits.csv,bucciarati_mpc123_hullabaloo_README +robert7_nixnote2,_robert7_nixnote2_commits.csv,robert7_nixnote2_hullabaloo_README.md +vectaport_ivtools,_vectaport_ivtools_commits.csv,vectaport_ivtools_hullabaloo_README +digint_btrbk-packaging,digint_btrbk-packaging_commits.csv,digint_btrbk-packaging_hullabaloo_README.md +syncthing_syncthing-gtk,_syncthing_syncthing-gtk_commits.csv,syncthing_syncthing-gtk_hullabaloo_README.md +OpenSCAP_scap-workbench.git,_OpenSCAP_scap-workbench.git_commits.csv,OpenSCAP_scap-workbench.git_hullabaloo_README +pothosware_SoapyHackRF.git,_pothosware_SoapyHackRF.git_commits.csv,pothosware_SoapyHackRF.git_hullabaloo_README.md +compiz_compiz-plugins-main.git,compiz_compiz-plugins-main.git_commits.csv,compiz_compiz-plugins-main.git_hullabaloo_README.md +sdr_rtl-sdr.git,sdr_rtl-sdr.git_commits.csv,sdr_rtl-sdr.git_hullabaloo_README +meskarune_i3lock-fancy,_meskarune_i3lock-fancy_commits.csv,meskarune_i3lock-fancy_hullabaloo_README.md +icecc_icemon.git,_icecc_icemon.git_commits.csv,icecc_icemon.git_hullabaloo_README.md +datastax_python-driver.git,_datastax_python-driver.git_commits.csv,datastax_python-driver.git_hullabaloo_README.md +python-social-auth_social-app-django.git,_python-social-auth_social-app-django.git_commits.csv,python-social-auth_social-app-django.git_hullabaloo_README.md +AzureAD_azure-activedirectory-library-for-python.git,_AzureAD_azure-activedirectory-library-for-python.git_commits.csv,AzureAD_azure-activedirectory-library-for-python.git_hullabaloo_README.md +petkaantonov_bluebird.git,_petkaantonov_bluebird.git_commits.csv,petkaantonov_bluebird.git_hullabaloo_README.md +Pylons_plaster_pastedeploy.git,_Pylons_plaster_pastedeploy.git_commits.csv,Pylons_plaster_pastedeploy.git_hullabaloo_README.rst +linuxdeepin_qt5integration.git,_linuxdeepin_qt5integration.git_commits.csv,linuxdeepin_qt5integration.git_hullabaloo_README.md +lukaszb_django-guardian,_lukaszb_django-guardian_commits.csv,lukaszb_django-guardian_hullabaloo_README.rst +Llandon_lsmount,Llandon_lsmount_commits.csv,Llandon_lsmount_hullabaloo_README +ForensicArtifacts_artifacts.git,_ForensicArtifacts_artifacts.git_commits.csv,ForensicArtifacts_artifacts.git_hullabaloo_README.md +jib_log-message-simple.git,_jib_log-message-simple.git_commits.csv,jib_log-message-simple.git_hullabaloo_README +fredrik-johansson_arb,_fredrik-johansson_arb_commits.csv,fredrik-johansson_arb_hullabaloo_README +csound_manual.git,_csound_manual.git_commits.csv,csound_manual.git_hullabaloo_README.md +ropensci_ritis.git,_ropensci_ritis.git_commits.csv,ropensci_ritis.git_hullabaloo_README +chriskuehl_nodeenv,chriskuehl_nodeenv_commits.csv,chriskuehl_nodeenv_hullabaloo_README +zkat_ssri.git,_zkat_ssri.git_commits.csv,zkat_ssri.git_hullabaloo_README.md +heftig_rtkit,_heftig_rtkit_commits.csv,heftig_rtkit_hullabaloo_README +coin-or_cbc,_coin-or_cbc_commits.csv,coin-or_cbc_hullabaloo_README +mmlabs-mindmaze_xdffileio.git,_mmlabs-mindmaze_xdffileio.git_commits.csv,mmlabs-mindmaze_xdffileio.git_hullabaloo_README +jtauber_pyuca,_jtauber_pyuca_commits.csv,jtauber_pyuca_hullabaloo_README.md +ros-visualization_rviz,_ros-visualization_rviz_commits.csv,ros-visualization_rviz_hullabaloo_README +WoLpH_portalocker,_WoLpH_portalocker_commits.csv,WoLpH_portalocker_hullabaloo_README +fog_fog-local,_fog_fog-local_commits.csv,fog_fog-local_hullabaloo_README.md +GNOME_eog-plugins.git,GNOME_eog-plugins.git_commits.csv,GNOME_eog-plugins.git_hullabaloo_README +workhorsy_py-cpuinfo,_workhorsy_py-cpuinfo_commits.csv,workhorsy_py-cpuinfo_hullabaloo_README.md +Yoshimi_yoshimi.git,_Yoshimi_yoshimi.git_commits.csv,Yoshimi_yoshimi.git_hullabaloo_README.txt +psi-plus_psi-plus-l10n.git,_psi-plus_psi-plus-l10n.git_commits.csv,psi-plus_psi-plus-l10n.git_hullabaloo_README +ponty_easyprocess.git,_ponty_easyprocess.git_commits.csv,ponty_easyprocess.git_hullabaloo_README.rst +kilobyte_lz4json,kilobyte_lz4json_commits.csv,kilobyte_lz4json_hullabaloo_README +a-detiste_cruft-ng,a-detiste_cruft-ng_commits.csv,a-detiste_cruft-ng_hullabaloo_README.md +r-lib_devtools.git,_r-lib_devtools.git_commits.csv,r-lib_devtools.git_hullabaloo_README +klickety.git,klickety.git_commits.csv,klickety.git_hullabaloo_README +GNOME_accerciser,GNOME_accerciser_commits.csv,GNOME_accerciser_hullabaloo_README +sshuttle_sshuttle.git,_sshuttle_sshuttle.git_commits.csv,sshuttle_sshuttle.git_hullabaloo_README.md +libyal_libregf,_libyal_libregf_commits.csv,libyal_libregf_hullabaloo_README +MusicPlayerDaemon_libmpdclient,_MusicPlayerDaemon_libmpdclient_commits.csv,MusicPlayerDaemon_libmpdclient_hullabaloo_README +xlwings_jsondiff,_xlwings_jsondiff_commits.csv,xlwings_jsondiff_hullabaloo_README.md +radare_valabind,_radare_valabind_commits.csv,radare_valabind_hullabaloo_README +jdunck_python-unicodecsv,_jdunck_python-unicodecsv_commits.csv,jdunck_python-unicodecsv_hullabaloo_README +Yubico_yubikey-val-dpkg,Yubico_yubikey-val-dpkg_commits.csv,Yubico_yubikey-val-dpkg_hullabaloo_README.source +x42_libltc,_x42_libltc_commits.csv,x42_libltc_hullabaloo_README +dsully_perl-crypt-cracklib.git,_dsully_perl-crypt-cracklib.git_commits.csv,dsully_perl-crypt-cracklib.git_hullabaloo_README +hassox_warden,_hassox_warden_commits.csv,hassox_warden_hullabaloo_README.textile +henrythasler_simple-image-reducer,_henrythasler_simple-image-reducer_commits.csv,henrythasler_simple-image-reducer_hullabaloo_README +fedora-infra_python-fedora,_fedora-infra_python-fedora_commits.csv,fedora-infra_python-fedora_hullabaloo_README +wfeldt_libx86emu,_wfeldt_libx86emu_commits.csv,wfeldt_libx86emu_hullabaloo_README +mate-desktop_libmatekbd.git,_mate-desktop_libmatekbd.git_commits.csv,mate-desktop_libmatekbd.git_hullabaloo_README +cespare_reflex.git,_cespare_reflex.git_commits.csv,cespare_reflex.git_hullabaloo_README.md +jtzemp_base62.git,_jtzemp_base62.git_commits.csv,jtzemp_base62.git_hullabaloo_README.rdoc +PapirusDevelopmentTeam_adapta-kde.git,_PapirusDevelopmentTeam_adapta-kde.git_commits.csv,PapirusDevelopmentTeam_adapta-kde.git_hullabaloo_README.md +musl,musl_commits.csv,musl_hullabaloo_README +flameshot-org_flameshot.git,_flameshot-org_flameshot.git_commits.csv,flameshot-org_flameshot.git_hullabaloo_README.md +direnv_direnv-deb,direnv_direnv-deb_commits.csv,direnv_direnv-deb_hullabaloo_README.md +Xaerxess_YAML-AppConfig,_Xaerxess_YAML-AppConfig_commits.csv,Xaerxess_YAML-AppConfig_hullabaloo_README.md +pytest-dev_execnet,_pytest-dev_execnet_commits.csv,pytest-dev_execnet_hullabaloo_README.txt +ojarva_python-sshpubkeys.git,_ojarva_python-sshpubkeys.git_commits.csv,ojarva_python-sshpubkeys.git_hullabaloo_README.rst +williamh_speechd-up.git,_williamh_speechd-up.git_commits.csv,williamh_speechd-up.git_hullabaloo_README +dascandy_hippomocks,_dascandy_hippomocks_commits.csv,dascandy_hippomocks_hullabaloo_README.md +ukui_ukui-menu,ukui_ukui-menu_commits.csv,ukui_ukui-menu_hullabaloo_README.md +darold_pgbadger.git,_darold_pgbadger.git_commits.csv,darold_pgbadger.git_hullabaloo_README +mopidy_mopidy-soundcloud,_mopidy_mopidy-soundcloud_commits.csv,mopidy_mopidy-soundcloud_hullabaloo_README.md +jcomellas_getopt,_jcomellas_getopt_commits.csv,jcomellas_getopt_hullabaloo_README.markdown +qutebrowser_qutebrowser-debian,qutebrowser_qutebrowser-debian_commits.csv,qutebrowser_qutebrowser-debian_hullabaloo_README.asciidoc +gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org_ruby_gems_gitlab-mail_room.git_commits.csv,gitlab-org_ruby_gems_gitlab-mail_room.git_hullabaloo_README.md +horde_Data.git,_horde_Data.git_commits.csv,horde_Data.git_hullabaloo_README.rst +jonathanstowe_TermReadKey.git,_jonathanstowe_TermReadKey.git_commits.csv,jonathanstowe_TermReadKey.git_hullabaloo_README +tonsky_FiraCode.git,_tonsky_FiraCode.git_commits.csv,tonsky_FiraCode.git_hullabaloo_README.md +Kilian_Trimage,_Kilian_Trimage_commits.csv,Kilian_Trimage_hullabaloo_README.txt +r-lib_callr.git,_r-lib_callr.git_commits.csv,r-lib_callr.git_hullabaloo_README.md +google_highwayhash,_google_highwayhash_commits.csv,google_highwayhash_hullabaloo_README +ribozz_sphinx-argparse,_ribozz_sphinx-argparse_commits.csv,ribozz_sphinx-argparse_hullabaloo_README.md +mrirecon_bart,_mrirecon_bart_commits.csv,mrirecon_bart_hullabaloo_README +mathiasbynens_regenerate-unicode-properties,_mathiasbynens_regenerate-unicode-properties_commits.csv,mathiasbynens_regenerate-unicode-properties_hullabaloo_README.md +jordansissel_xdotool.git,_jordansissel_xdotool.git_commits.csv,jordansissel_xdotool.git_hullabaloo_README +libvirt_libvirt-python.git,libvirt_libvirt-python.git_commits.csv,libvirt_libvirt-python.git_hullabaloo_README +mheily_debian-packages,mheily_debian-packages_commits.csv,mheily_debian-packages_hullabaloo_README.md +seccomp_libseccomp,_seccomp_libseccomp_commits.csv,seccomp_libseccomp_hullabaloo_README +getlogbook_logbook.git,_getlogbook_logbook.git_commits.csv,getlogbook_logbook.git_hullabaloo_README +eikenb_terminal-colors,_eikenb_terminal-colors_commits.csv,eikenb_terminal-colors_hullabaloo_README.md +habnabit_vcversioner,_habnabit_vcversioner_commits.csv,habnabit_vcversioner_hullabaloo_README.rst +norbusan_debian-gwaei,norbusan_debian-gwaei_commits.csv,norbusan_debian-gwaei_hullabaloo_README.source +plasma_bluedevil.git,plasma_bluedevil.git_commits.csv,plasma_bluedevil.git_hullabaloo_README +lxde_lxde-icon-theme,_lxde_lxde-icon-theme_commits.csv,lxde_lxde-icon-theme_hullabaloo_README +ThomasHabets_arping,_ThomasHabets_arping_commits.csv,ThomasHabets_arping_hullabaloo_README +aio-libs_aiosmtpd,_aio-libs_aiosmtpd_commits.csv,aio-libs_aiosmtpd_hullabaloo_README.rst +mschilli_cache-historical-perl.git,_mschilli_cache-historical-perl.git_commits.csv,mschilli_cache-historical-perl.git_hullabaloo_README +SecureAuthCorp_impacket.git,_SecureAuthCorp_impacket.git_commits.csv,SecureAuthCorp_impacket.git_hullabaloo_README +JonnyJD_musicbrainz-isrcsubmit,_JonnyJD_musicbrainz-isrcsubmit_commits.csv,JonnyJD_musicbrainz-isrcsubmit_hullabaloo_README.md +RubyCrypto_rbnacl,_RubyCrypto_rbnacl_commits.csv,RubyCrypto_rbnacl_hullabaloo_README.md +hakaishi_nobleNote,hakaishi_nobleNote_commits.csv,hakaishi_nobleNote_hullabaloo_README +nichtich_Catmandu-Wikidata.git,_nichtich_Catmandu-Wikidata.git_commits.csv,nichtich_Catmandu-Wikidata.git_hullabaloo_README.md +cesbit_libcleri.git,_cesbit_libcleri.git_commits.csv,cesbit_libcleri.git_hullabaloo_README.md +go-yaml_yaml.git,_go-yaml_yaml.git_commits.csv,go-yaml_yaml.git_hullabaloo_README +fbb-git_flexcpp.git,fbb-git_flexcpp.git_commits.csv,fbb-git_flexcpp.git_hullabaloo_README.options +carlodefalco_octave-mpi,_carlodefalco_octave-mpi_commits.csv,carlodefalco_octave-mpi_hullabaloo_README.md +borgbackup_borg.git,_borgbackup_borg.git_commits.csv,borgbackup_borg.git_hullabaloo_README +ruby-ldap_ruby-net-ldap.git,_ruby-ldap_ruby-net-ldap.git_commits.csv,ruby-ldap_ruby-net-ldap.git_hullabaloo_README +python-dugong_python-dugong.git,_python-dugong_python-dugong.git_commits.csv,python-dugong_python-dugong.git_hullabaloo_README +vim-airline_vim-airline.git,_vim-airline_vim-airline.git_commits.csv,vim-airline_vim-airline.git_hullabaloo_README.md +jackfranklin_gulp-load-plugins,_jackfranklin_gulp-load-plugins_commits.csv,jackfranklin_gulp-load-plugins_hullabaloo_README.md +savonet_ocaml-flac.git,_savonet_ocaml-flac.git_commits.csv,savonet_ocaml-flac.git_hullabaloo_README +jorol_Catmandu-MAB2.git,_jorol_Catmandu-MAB2.git_commits.csv,jorol_Catmandu-MAB2.git_hullabaloo_README.md +Syndace_python-xeddsa,_Syndace_python-xeddsa_commits.csv,Syndace_python-xeddsa_hullabaloo_README.md +compuphase_minIni,_compuphase_minIni_commits.csv,compuphase_minIni_hullabaloo_README.md +digitalbazaar_pyld,_digitalbazaar_pyld_commits.csv,digitalbazaar_pyld_hullabaloo_README +meduketto_iksemel,_meduketto_iksemel_commits.csv,meduketto_iksemel_hullabaloo_README +pim_zanshin.git,pim_zanshin.git_commits.csv,pim_zanshin.git_hullabaloo_README.md +jonschlinkert_is-glob,_jonschlinkert_is-glob_commits.csv,jonschlinkert_is-glob_hullabaloo_README.md +eugmes_fntsample.git,_eugmes_fntsample.git_commits.csv,eugmes_fntsample.git_hullabaloo_README.rst +php-fig_cache.git,_php-fig_cache.git_commits.csv,php-fig_cache.git_hullabaloo_README.md +honza_vim-snippets.git,_honza_vim-snippets.git_commits.csv,honza_vim-snippets.git_hullabaloo_README.md +tduehr_omniauth-cas3,_tduehr_omniauth-cas3_commits.csv,tduehr_omniauth-cas3_hullabaloo_README +scottdraves_flam3,_scottdraves_flam3_commits.csv,scottdraves_flam3_hullabaloo_README.md +sacerdot_ocaml-http.git,_sacerdot_ocaml-http.git_commits.csv,sacerdot_ocaml-http.git_hullabaloo_README +rsms_inter,_rsms_inter_commits.csv,rsms_inter_hullabaloo_README.md +gitpython-developers_smmap,_gitpython-developers_smmap_commits.csv,gitpython-developers_smmap_hullabaloo_README.rst +boynux_squid-exporter,_boynux_squid-exporter_commits.csv,boynux_squid-exporter_hullabaloo_README.rst +kbandla_dpkt,_kbandla_dpkt_commits.csv,kbandla_dpkt_hullabaloo_README +libyal_libevtx,_libyal_libevtx_commits.csv,libyal_libevtx_hullabaloo_README +ruby-concurrency_concurrent-ruby.git,_ruby-concurrency_concurrent-ruby.git_commits.csv,ruby-concurrency_concurrent-ruby.git_hullabaloo_README.md +intridea_omniauth-openid,_intridea_omniauth-openid_commits.csv,intridea_omniauth-openid_hullabaloo_README.rdoc +twisted_constantly.git,_twisted_constantly.git_commits.csv,twisted_constantly.git_hullabaloo_README.rst +GostCrypt_linux-crypto.git,_GostCrypt_linux-crypto.git_commits.csv,GostCrypt_linux-crypto.git_hullabaloo_README +pothosware_SoapyOsmo.git,_pothosware_SoapyOsmo.git_commits.csv,pothosware_SoapyOsmo.git_hullabaloo_README.md +markov2_perl5-XML-Compile-WSDL11,_markov2_perl5-XML-Compile-WSDL11_commits.csv,markov2_perl5-XML-Compile-WSDL11_hullabaloo_README.md +ganglia_ganglia-modules-linux.git,_ganglia_ganglia-modules-linux.git_commits.csv,ganglia_ganglia-modules-linux.git_hullabaloo_README +requirejs_r.js.git,_requirejs_r.js.git_commits.csv,requirejs_r.js.git_hullabaloo_README +chaijs_chai,_chaijs_chai_commits.csv,chaijs_chai_hullabaloo_README.md +hoehrmann_XML-SAX-Expat,_hoehrmann_XML-SAX-Expat_commits.csv,hoehrmann_XML-SAX-Expat_hullabaloo_README +kamorin_DHCPig,_kamorin_DHCPig_commits.csv,kamorin_DHCPig_hullabaloo_README +danieljprice_giza,_danieljprice_giza_commits.csv,danieljprice_giza_hullabaloo_README +Debian_dh-make-golang.git,_Debian_dh-make-golang.git_commits.csv,Debian_dh-make-golang.git_hullabaloo_README.md +mathjax_MathJax,_mathjax_MathJax_commits.csv,mathjax_MathJax_hullabaloo_README.txt +pytest-dev_py.git,_pytest-dev_py.git_commits.csv,pytest-dev_py.git_hullabaloo_README.txt +niwinz_django-jinja,_niwinz_django-jinja_commits.csv,niwinz_django-jinja_hullabaloo_README +dbus_dbus-python,dbus_dbus-python_commits.csv,dbus_dbus-python_hullabaloo_README +conserver_conserver.git,_conserver_conserver.git_commits.csv,conserver_conserver.git_hullabaloo_README +parklab_nozzle.git,_parklab_nozzle.git_commits.csv,parklab_nozzle.git_hullabaloo_README.md +thoughtbot_shoulda-context,_thoughtbot_shoulda-context_commits.csv,thoughtbot_shoulda-context_hullabaloo_README +thestk_rtmidi.git,_thestk_rtmidi.git_commits.csv,thestk_rtmidi.git_hullabaloo_README.md +lmfit_lmfit-py,_lmfit_lmfit-py_commits.csv,lmfit_lmfit-py_hullabaloo_README.TXT +shibatch_sleef.git,_shibatch_sleef.git_commits.csv,shibatch_sleef.git_hullabaloo_README +LedgerHQ_btchip-python.git,_LedgerHQ_btchip-python.git_commits.csv,LedgerHQ_btchip-python.git_hullabaloo_README.md +jarus_flask-testing,_jarus_flask-testing_commits.csv,jarus_flask-testing_hullabaloo_README +python-ldap_python-ldap,_python-ldap_python-ldap_commits.csv,python-ldap_python-ldap_hullabaloo_README +dottedmag_archmage,_dottedmag_archmage_commits.csv,dottedmag_archmage_hullabaloo_README +aresch_rencode.git,_aresch_rencode.git_commits.csv,aresch_rencode.git_hullabaloo_README +plasma_breeze-plymouth.git,plasma_breeze-plymouth.git_commits.csv,plasma_breeze-plymouth.git_hullabaloo_README +kodi-pvr_pvr.hdhomerun.git,_kodi-pvr_pvr.hdhomerun.git_commits.csv,kodi-pvr_pvr.hdhomerun.git_hullabaloo_README.md +rmohr_static3,_rmohr_static3_commits.csv,rmohr_static3_hullabaloo_README +TimoFreiberg_bultitude.git,_TimoFreiberg_bultitude.git_commits.csv,TimoFreiberg_bultitude.git_hullabaloo_README.md +pub_scm_linux_kernel_git_jaegeuk_f2fs-tools.git,pub_scm_linux_kernel_git_jaegeuk_f2fs-tools.git_commits.csv,pub_scm_linux_kernel_git_jaegeuk_f2fs-tools.git_hullabaloo_README +unixabg_remaster-iso,unixabg_remaster-iso_commits.csv,unixabg_remaster-iso_hullabaloo_README.md +mikeboers_PyMemoize,_mikeboers_PyMemoize_commits.csv,mikeboers_PyMemoize_hullabaloo_README.md +eonpatapon_mpDris2.git,_eonpatapon_mpDris2.git_commits.csv,eonpatapon_mpDris2.git_hullabaloo_README +guzzle_psr7,_guzzle_psr7_commits.csv,guzzle_psr7_hullabaloo_README.md +tkem_cachetools,_tkem_cachetools_commits.csv,tkem_cachetools_hullabaloo_README.rst +tuxor1337_hidetopbar,tuxor1337_hidetopbar_commits.csv,tuxor1337_hidetopbar_hullabaloo_README +suretec_Message-Passing.git,_suretec_Message-Passing.git_commits.csv,suretec_Message-Passing.git_hullabaloo_README +pallets_click.git,_pallets_click.git_commits.csv,pallets_click.git_hullabaloo_README +ionos-cloud_netconsole,_ionos-cloud_netconsole_commits.csv,ionos-cloud_netconsole_hullabaloo_README.md +Debian_debiman.git,_Debian_debiman.git_commits.csv,Debian_debiman.git_hullabaloo_README.md +pgpartman_pg_partman.git,_pgpartman_pg_partman.git_commits.csv,pgpartman_pg_partman.git_hullabaloo_README.md +OpenArena_gamecode,_OpenArena_gamecode_commits.csv,OpenArena_gamecode_hullabaloo_README +ktbyers_netmiko,_ktbyers_netmiko_commits.csv,ktbyers_netmiko_hullabaloo_README.md +sdgathman_pysrs.git,_sdgathman_pysrs.git_commits.csv,sdgathman_pysrs.git_hullabaloo_README.md +wireghoul_doona,_wireghoul_doona_commits.csv,wireghoul_doona_hullabaloo_README +mogaal_libpod-webserver-perl,mogaal_libpod-webserver-perl_commits.csv,mogaal_libpod-webserver-perl_hullabaloo_README +SoundScapeRenderer_ssr,_SoundScapeRenderer_ssr_commits.csv,SoundScapeRenderer_ssr_hullabaloo_README.md +mudge_re2.git,_mudge_re2.git_commits.csv,mudge_re2.git_hullabaloo_README.md +drforr_perl6-readline.git,_drforr_perl6-readline.git_commits.csv,drforr_perl6-readline.git_hullabaloo_README.md +Anorov_PySocks,_Anorov_PySocks_commits.csv,Anorov_PySocks_hullabaloo_README +libyal_libvmdk.git,_libyal_libvmdk.git_commits.csv,libyal_libvmdk.git_hullabaloo_README +20kly_20kly.git,_20kly_20kly.git_commits.csv,20kly_20kly.git_hullabaloo_README +intel_ledmon,_intel_ledmon_commits.csv,intel_ledmon_hullabaloo_README +kennethreitz_clint,_kennethreitz_clint_commits.csv,kennethreitz_clint_hullabaloo_README +adelton_mod_authnz_pam.git,_adelton_mod_authnz_pam.git_commits.csv,adelton_mod_authnz_pam.git_hullabaloo_README +GNOME_goocanvas,GNOME_goocanvas_commits.csv,GNOME_goocanvas_hullabaloo_README +pub_scm_libs_ieee1394_libhinawa.git,pub_scm_libs_ieee1394_libhinawa.git_commits.csv,pub_scm_libs_ieee1394_libhinawa.git_hullabaloo_README +skorokithakis_shortuuid.git,_skorokithakis_shortuuid.git_commits.csv,skorokithakis_shortuuid.git_hullabaloo_README.rst +hashcat_princeprocessor.git,_hashcat_princeprocessor.git_commits.csv,hashcat_princeprocessor.git_hullabaloo_README.md +sebastianbergmann_php-timer,_sebastianbergmann_php-timer_commits.csv,sebastianbergmann_php-timer_hullabaloo_README.markdown +jmtd_wadc,jmtd_wadc_commits.csv,jmtd_wadc_hullabaloo_README.md +wojtekka_6tunnel,_wojtekka_6tunnel_commits.csv,wojtekka_6tunnel_hullabaloo_README +crosswire-bible-society_nave,crosswire-bible-society_nave_commits.csv,crosswire-bible-society_nave_hullabaloo_README.md +ParaFly_ParaFly,_ParaFly_ParaFly_commits.csv,ParaFly_ParaFly_hullabaloo_README.md +ipython_ipykernel.git,_ipython_ipykernel.git_commits.csv,ipython_ipykernel.git_hullabaloo_README.md +calamares_calamares.git,_calamares_calamares.git_commits.csv,calamares_calamares.git_hullabaloo_README.md +osantana_dicteval.git,_osantana_dicteval.git_commits.csv,osantana_dicteval.git_hullabaloo_README.rst +testing-cabal_systemfixtures.git,_testing-cabal_systemfixtures.git_commits.csv,testing-cabal_systemfixtures.git_hullabaloo_README.rst +grantma_dms,grantma_dms_commits.csv,grantma_dms_hullabaloo_README.postgresql +doctrine_instantiator,_doctrine_instantiator_commits.csv,doctrine_instantiator_hullabaloo_README.md +lxqt_lxqt-policykit.git,_lxqt_lxqt-policykit.git_commits.csv,lxqt_lxqt-policykit.git_hullabaloo_README.md +babelouest_yder,_babelouest_yder_commits.csv,babelouest_yder_hullabaloo_8md.html +rtsisyk_msgpuck,rtsisyk_msgpuck_commits.csv,rtsisyk_msgpuck_hullabaloo_README.md +FasterXML_jackson-dataformat-yaml.git,_FasterXML_jackson-dataformat-yaml.git_commits.csv,FasterXML_jackson-dataformat-yaml.git_hullabaloo_README.md +flonatel_pipexec.git,_flonatel_pipexec.git_commits.csv,flonatel_pipexec.git_hullabaloo_README.md +codeinthehole_purl,_codeinthehole_purl_commits.csv,codeinthehole_purl_hullabaloo_README.rst +Keruspe_GPaste,_Keruspe_GPaste_commits.csv,Keruspe_GPaste_hullabaloo_README +pstavirs_ostinato,_pstavirs_ostinato_commits.csv,pstavirs_ostinato_hullabaloo_README.txt +clbr_radeontop.git,_clbr_radeontop.git_commits.csv,clbr_radeontop.git_hullabaloo_README.md +rjbs_IPC-Run3.git,_rjbs_IPC-Run3.git_commits.csv,rjbs_IPC-Run3.git_hullabaloo_README +GNOME_libgnomekbd.git,GNOME_libgnomekbd.git_commits.csv,GNOME_libgnomekbd.git_hullabaloo_README +anarcat_tty-clock,anarcat_tty-clock_commits.csv,anarcat_tty-clock_hullabaloo_README +paragonie_constant_time_encoding,_paragonie_constant_time_encoding_commits.csv,paragonie_constant_time_encoding_hullabaloo_README.md +katajakasa_SDL_kitchensink,_katajakasa_SDL_kitchensink_commits.csv,katajakasa_SDL_kitchensink_hullabaloo_README.md +picmi.git,picmi.git_commits.csv,picmi.git_hullabaloo_README +nojhan_liquidprompt.git,_nojhan_liquidprompt.git_commits.csv,nojhan_liquidprompt.git_hullabaloo_README.md +mapbox_cligj.git,_mapbox_cligj.git_commits.csv,mapbox_cligj.git_hullabaloo_README.rst +pear_Crypt_GPG.git,_pear_Crypt_GPG.git_commits.csv,pear_Crypt_GPG.git_hullabaloo_README +tcolar_wmfrog,_tcolar_wmfrog_commits.csv,tcolar_wmfrog_hullabaloo_README.md +saz_puppet-memcached,_saz_puppet-memcached_commits.csv,saz_puppet-memcached_hullabaloo_README.md +private-face_jquery.fullscreen,_private-face_jquery.fullscreen_commits.csv,private-face_jquery.fullscreen_hullabaloo_README.textile +compiz_simple-ccsm.git,compiz_simple-ccsm.git_commits.csv,compiz_simple-ccsm.git_hullabaloo_README +yappo_p5-String-Diff.git,_yappo_p5-String-Diff.git_commits.csv,yappo_p5-String-Diff.git_hullabaloo_README +dvarrazzo_py-setproctitle,_dvarrazzo_py-setproctitle_commits.csv,dvarrazzo_py-setproctitle_hullabaloo_README +dbr_tvdb_api.git,_dbr_tvdb_api.git_commits.csv,dbr_tvdb_api.git_hullabaloo_README.md +x90skysn3k_brutespray,_x90skysn3k_brutespray_commits.csv,x90skysn3k_brutespray_hullabaloo_README.md +ActiveState_appdirs.git,_ActiveState_appdirs.git_commits.csv,ActiveState_appdirs.git_hullabaloo_README.md +a-detiste_cruft,a-detiste_cruft_commits.csv,a-detiste_cruft_hullabaloo_README +elves_elvish.git,_elves_elvish.git_commits.csv,elves_elvish.git_hullabaloo_README.md +jasondavies_science.js.git,_jasondavies_science.js.git_commits.csv,jasondavies_science.js.git_hullabaloo_README.md +fbb-git_gpg-remailer,fbb-git_gpg-remailer_commits.csv,fbb-git_gpg-remailer_hullabaloo_README +johanmattssonm_birdfont.git,_johanmattssonm_birdfont.git_commits.csv,johanmattssonm_birdfont.git_hullabaloo_README +suntong_dbab.git,_suntong_dbab.git_commits.csv,suntong_dbab.git_hullabaloo_README.md +pyxnat_pyxnat.git,_pyxnat_pyxnat.git_commits.csv,pyxnat_pyxnat.git_hullabaloo_README.txt +berke_wipe,_berke_wipe_commits.csv,berke_wipe_hullabaloo_README +TicklishHoneyBee_nodau,_TicklishHoneyBee_nodau_commits.csv,TicklishHoneyBee_nodau_hullabaloo_README +sebastianbergmann_php-text-template,_sebastianbergmann_php-text-template_commits.csv,sebastianbergmann_php-text-template_hullabaloo_README.markdown +jnunemaker_crack,_jnunemaker_crack_commits.csv,jnunemaker_crack_hullabaloo_README.rdoc +debian-calibre_unrardll,debian-calibre_unrardll_commits.csv,debian-calibre_unrardll_hullabaloo_README.rst +SSSD_ding-libs,_SSSD_ding-libs_commits.csv,SSSD_ding-libs_hullabaloo_README +aws_aws-xray-sdk-python,_aws_aws-xray-sdk-python_commits.csv,aws_aws-xray-sdk-python_hullabaloo_README.md +pypr_pysph,_pypr_pysph_commits.csv,pypr_pysph_hullabaloo_README.md +innir_gtranscribe,_innir_gtranscribe_commits.csv,innir_gtranscribe_hullabaloo_README +janlelis_paint.git,_janlelis_paint.git_commits.csv,janlelis_paint.git_hullabaloo_README.rdoc +JDimproved_JDim.git,_JDimproved_JDim.git_commits.csv,JDimproved_JDim.git_hullabaloo_README +borntyping_python-colorlog.git,_borntyping_python-colorlog.git_commits.csv,borntyping_python-colorlog.git_hullabaloo_README.rst +a2o_snoopy,_a2o_snoopy_commits.csv,a2o_snoopy_hullabaloo_README-GIT-REPOSITORY-INFO.txt +pixel_hexedit.git,_pixel_hexedit.git_commits.csv,pixel_hexedit.git_hullabaloo_README.md +juba_scatterD3.git,_juba_scatterD3.git_commits.csv,juba_scatterD3.git_hullabaloo_README.md +spyder-ide_qtawesome,_spyder-ide_qtawesome_commits.csv,spyder-ide_qtawesome_hullabaloo_README.md +Rup0rt_netmate,_Rup0rt_netmate_commits.csv,Rup0rt_netmate_hullabaloo_README +pim_kpkpass,pim_kpkpass_commits.csv,pim_kpkpass_hullabaloo_README.md +shesek_iferr,_shesek_iferr_commits.csv,shesek_iferr_hullabaloo_README.md +andrewleech_PyWebDAV3.git,_andrewleech_PyWebDAV3.git_commits.csv,andrewleech_PyWebDAV3.git_hullabaloo_README +sqlalchemyorg_sphinx-paramlinks,_sqlalchemyorg_sphinx-paramlinks_commits.csv,sqlalchemyorg_sphinx-paramlinks_hullabaloo_README.rst +puppetlabs_facter.git,_puppetlabs_facter.git_commits.csv,puppetlabs_facter.git_hullabaloo_README +elasticsearch_curator.git,_elasticsearch_curator.git_commits.csv,elasticsearch_curator.git_hullabaloo_README.md +pali_0xFFFF,_pali_0xFFFF_commits.csv,pali_0xFFFF_hullabaloo_README +cleder_fastkml,_cleder_fastkml_commits.csv,cleder_fastkml_hullabaloo_README.rst +gotcha_ipdb,_gotcha_ipdb_commits.csv,gotcha_ipdb_hullabaloo_README.txt +kmx_perl-Crypt-OpenSSL-Bignum.git,_kmx_perl-Crypt-OpenSSL-Bignum.git_commits.csv,kmx_perl-Crypt-OpenSSL-Bignum.git_hullabaloo_README +scrapy_w3lib.git,_scrapy_w3lib.git_commits.csv,scrapy_w3lib.git_hullabaloo_README.rst +explosion_murmurhash,_explosion_murmurhash_commits.csv,explosion_murmurhash_hullabaloo_README.rst +spanezz_django-housekeeping.git,_spanezz_django-housekeeping.git_commits.csv,spanezz_django-housekeeping.git_hullabaloo_README.md +traviscross_mtr,_traviscross_mtr_commits.csv,traviscross_mtr_hullabaloo_README +gulpjs_glob-stream,_gulpjs_glob-stream_commits.csv,gulpjs_glob-stream_hullabaloo_README.md +hapijs_code.git,_hapijs_code.git_commits.csv,hapijs_code.git_hullabaloo_README.md +rfjakob_earlyoom,_rfjakob_earlyoom_commits.csv,rfjakob_earlyoom_hullabaloo_README.md +naihe2010_apvlv,_naihe2010_apvlv_commits.csv,naihe2010_apvlv_hullabaloo_README +lxqt_libqtxdg.git,_lxqt_libqtxdg.git_commits.csv,lxqt_libqtxdg.git_hullabaloo_README +txt2tags_txt2tags.git,_txt2tags_txt2tags.git_commits.csv,txt2tags_txt2tags.git_hullabaloo_README.md +hoytech_vmtouch,_hoytech_vmtouch_commits.csv,hoytech_vmtouch_hullabaloo_README +nose-devs_nose.git,_nose-devs_nose.git_commits.csv,nose-devs_nose.git_hullabaloo_README.txt +marshmallow-code_flask-marshmallow.git,_marshmallow-code_flask-marshmallow.git_commits.csv,marshmallow-code_flask-marshmallow.git_hullabaloo_README.rst +slicer69_sysvinit,_slicer69_sysvinit_commits.csv,slicer69_sysvinit_hullabaloo_README +python-otr_pure-python-otr,_python-otr_pure-python-otr_commits.csv,python-otr_pure-python-otr_hullabaloo_README +resurrecting-open-source-projects_outguess,_resurrecting-open-source-projects_outguess_commits.csv,resurrecting-open-source-projects_outguess_hullabaloo_STIRMARK-README +psb1558_Junicode-font,_psb1558_Junicode-font_commits.csv,psb1558_Junicode-font_hullabaloo_README +aio-libs_aiohttp-jinja2,_aio-libs_aiohttp-jinja2_commits.csv,aio-libs_aiohttp-jinja2_hullabaloo_README.md +GNOME_geary.git,GNOME_geary.git_commits.csv,GNOME_geary.git_hullabaloo_README.rst +mathiasbynens_unicode-property-value-aliases.git,_mathiasbynens_unicode-property-value-aliases.git_commits.csv,mathiasbynens_unicode-property-value-aliases.git_hullabaloo_README.md +linuxaudio_a2jmidid.git,_linuxaudio_a2jmidid.git_commits.csv,linuxaudio_a2jmidid.git_hullabaloo_README +pam_wrapper.git,pam_wrapper.git_commits.csv,pam_wrapper.git_hullabaloo_README.install +alols_xcape,_alols_xcape_commits.csv,alols_xcape_hullabaloo_README +charsbar_App-CPANTS-Lint.git,_charsbar_App-CPANTS-Lint.git_commits.csv,charsbar_App-CPANTS-Lint.git_hullabaloo_README +c-cube_gen.git,_c-cube_gen.git_commits.csv,c-cube_gen.git_hullabaloo_README.md +Teemu_pytest-sugar.git,_Teemu_pytest-sugar.git_commits.csv,Teemu_pytest-sugar.git_hullabaloo_README.rst +digininja_CeWL.git,_digininja_CeWL.git_commits.csv,digininja_CeWL.git_hullabaloo_README +libimobiledevice_usbmuxd,_libimobiledevice_usbmuxd_commits.csv,libimobiledevice_usbmuxd_hullabaloo_README +jettero_statistics--basic,_jettero_statistics--basic_commits.csv,jettero_statistics--basic_hullabaloo_README +openstreetmap_OSM-binary.git,_openstreetmap_OSM-binary.git_commits.csv,openstreetmap_OSM-binary.git_hullabaloo_README +benoitc_socketpool,_benoitc_socketpool_commits.csv,benoitc_socketpool_hullabaloo_README.rst +kodi-pvr_pvr.dvbviewer.git,_kodi-pvr_pvr.dvbviewer.git_commits.csv,kodi-pvr_pvr.dvbviewer.git_hullabaloo_README.md +smarty-gettext_smarty-gettext.git,_smarty-gettext_smarty-gettext.git_commits.csv,smarty-gettext_smarty-gettext.git_hullabaloo_README +phaag_nfdump,_phaag_nfdump_commits.csv,phaag_nfdump_hullabaloo_README.md +jashkenas_coffeescript,_jashkenas_coffeescript_commits.csv,jashkenas_coffeescript_hullabaloo_README +OCL-DEV_ocl-icd.git,_OCL-DEV_ocl-icd.git_commits.csv,OCL-DEV_ocl-icd.git_hullabaloo_README +purcell_ibuffer-projectile.git,_purcell_ibuffer-projectile.git_commits.csv,purcell_ibuffer-projectile.git_hullabaloo_README.md +scrottie_SOAP-WSDL,_scrottie_SOAP-WSDL_commits.csv,scrottie_SOAP-WSDL_hullabaloo_README +Pulse-Eight_libcec.git,_Pulse-Eight_libcec.git_commits.csv,Pulse-Eight_libcec.git_hullabaloo_README +Arachnid_pyqrencode.git,_Arachnid_pyqrencode.git_commits.csv,Arachnid_pyqrencode.git_hullabaloo_README.md +hynek_argon2-cffi,_hynek_argon2-cffi_commits.csv,hynek_argon2-cffi_hullabaloo_README.rst +accounts-sso_libaccounts-glib.git,accounts-sso_libaccounts-glib.git_commits.csv,accounts-sso_libaccounts-glib.git_hullabaloo_README +crsmithdev_arrow.git,_crsmithdev_arrow.git_commits.csv,crsmithdev_arrow.git_hullabaloo_README.rst +scrapy_parsel,_scrapy_parsel_commits.csv,scrapy_parsel_hullabaloo_README.rst +irstlm-team_irstlm.git,_irstlm-team_irstlm.git_commits.csv,irstlm-team_irstlm.git_hullabaloo_README.md +kazuho_p5-Net-DNS-Lite.git,_kazuho_p5-Net-DNS-Lite.git_commits.csv,kazuho_p5-Net-DNS-Lite.git_hullabaloo_README +spyder-ide_qtpy,_spyder-ide_qtpy_commits.csv,spyder-ide_qtpy_hullabaloo_README.md +kevin1024_pytest-httpbin,_kevin1024_pytest-httpbin_commits.csv,kevin1024_pytest-httpbin_hullabaloo_README.rst +ThomasHabets_simple-tpm-pk11,_ThomasHabets_simple-tpm-pk11_commits.csv,ThomasHabets_simple-tpm-pk11_hullabaloo_README +steveicarus_iverilog,_steveicarus_iverilog_commits.csv,steveicarus_iverilog_hullabaloo_README.txt +pvanek_qlipper,_pvanek_qlipper_commits.csv,pvanek_qlipper_hullabaloo_README +garbas_vim-snipmate.git,_garbas_vim-snipmate.git_commits.csv,garbas_vim-snipmate.git_hullabaloo_README +cgohlke_tifffile.git,_cgohlke_tifffile.git_commits.csv,cgohlke_tifffile.git_hullabaloo_README.rst +thoughtbot_shoulda-matchers,_thoughtbot_shoulda-matchers_commits.csv,thoughtbot_shoulda-matchers_hullabaloo_README +JonathonReinhart_syrep,JonathonReinhart_syrep_commits.csv,JonathonReinhart_syrep_hullabaloo_README +defunkt_mustache,_defunkt_mustache_commits.csv,defunkt_mustache_hullabaloo_README.md +aio-libs_multidict.git,_aio-libs_multidict.git_commits.csv,aio-libs_multidict.git_hullabaloo_README.md +tornadoweb_tornado,_tornadoweb_tornado_commits.csv,tornadoweb_tornado_hullabaloo_README +savonet_ocaml-opus.git,_savonet_ocaml-opus.git_commits.csv,savonet_ocaml-opus.git_hullabaloo_README.md +spyder-ide_spyder-kernels,_spyder-ide_spyder-kernels_commits.csv,spyder-ide_spyder-kernels_hullabaloo_README.md +walles_px,_walles_px_commits.csv,walles_px_hullabaloo_README.md +tell-k_vim-autopep8.git,_tell-k_vim-autopep8.git_commits.csv,tell-k_vim-autopep8.git_hullabaloo_README.rst +thoughtbot_factory_girl.git,_thoughtbot_factory_girl.git_commits.csv,thoughtbot_factory_girl.git_hullabaloo_README.rdoc +fourdollars_x11-touchscreen-calibrator,fourdollars_x11-touchscreen-calibrator_commits.csv,fourdollars_x11-touchscreen-calibrator_hullabaloo_README.md +construct_construct.git,_construct_construct.git_commits.csv,construct_construct.git_hullabaloo_README.rst +oauth-xx_oauth-ruby,_oauth-xx_oauth-ruby_commits.csv,oauth-xx_oauth-ruby_hullabaloo_README.txt +psf_black.git,_psf_black.git_commits.csv,psf_black.git_hullabaloo_README.md +python-hyper_hyperlink,_python-hyper_hyperlink_commits.csv,python-hyper_hyperlink_hullabaloo_README.md +savonet_ocaml-ogg.git,_savonet_ocaml-ogg.git_commits.csv,savonet_ocaml-ogg.git_hullabaloo_README +cffi_cffi.git,_cffi_cffi.git_commits.csv,cffi_cffi.git_hullabaloo_README +gosa-project_gosa-plugins-pwreset,_gosa-project_gosa-plugins-pwreset_commits.csv,gosa-project_gosa-plugins-pwreset_hullabaloo_README.gosa-conf +components_highlightjs,_components_highlightjs_commits.csv,components_highlightjs_hullabaloo_README.md +vigneshwaranr_bd.git,_vigneshwaranr_bd.git_commits.csv,vigneshwaranr_bd.git_hullabaloo_README +emancu_toml-rb.git,_emancu_toml-rb.git_commits.csv,emancu_toml-rb.git_hullabaloo_README.md +jaymzh_pius.git,_jaymzh_pius.git_commits.csv,jaymzh_pius.git_hullabaloo_README +jarun_buku.git,_jarun_buku.git_commits.csv,jarun_buku.git_hullabaloo_README.md +ledgersmb_PGObject-Util-DBAdmin.git,_ledgersmb_PGObject-Util-DBAdmin.git_commits.csv,ledgersmb_PGObject-Util-DBAdmin.git_hullabaloo_README +GNOME_gnome-builder.git,GNOME_gnome-builder.git_commits.csv,GNOME_gnome-builder.git_hullabaloo_README +openSUSE_libsolv,_openSUSE_libsolv_commits.csv,openSUSE_libsolv_hullabaloo_README +banister_method_source,_banister_method_source_commits.csv,banister_method_source_hullabaloo_README.markdown +seveas_python-networkmanager,_seveas_python-networkmanager_commits.csv,seveas_python-networkmanager_hullabaloo_README +ICRAR_ijson.git,_ICRAR_ijson.git_commits.csv,ICRAR_ijson.git_hullabaloo_README.txt +chrys87_simple-orca-plugin-system.git,_chrys87_simple-orca-plugin-system.git_commits.csv,chrys87_simple-orca-plugin-system.git_hullabaloo_README.md +savoirfairelinux_opendht.git,_savoirfairelinux_opendht.git_commits.csv,savoirfairelinux_opendht.git_hullabaloo_README.md +df7cb_pgsql-asn1oid,df7cb_pgsql-asn1oid_commits.csv,df7cb_pgsql-asn1oid_hullabaloo_README.md +php-fig_link-util,_php-fig_link-util_commits.csv,php-fig_link-util_hullabaloo_README.md +jmschrei_pomegranate.git,_jmschrei_pomegranate.git_commits.csv,jmschrei_pomegranate.git_hullabaloo_README.md +softlayer_softlayer-python,_softlayer_softlayer-python_commits.csv,softlayer_softlayer-python_hullabaloo_README.textile +br101_horst.git,_br101_horst.git_commits.csv,br101_horst.git_hullabaloo_README +jeffkaufman_icdiff.git,_jeffkaufman_icdiff.git_commits.csv,jeffkaufman_icdiff.git_hullabaloo_README +tkf_emacs-jedi.git,_tkf_emacs-jedi.git_commits.csv,tkf_emacs-jedi.git_hullabaloo_README.rst +home-assistant-libs_pychromecast.git,_home-assistant-libs_pychromecast.git_commits.csv,home-assistant-libs_pychromecast.git_hullabaloo_README.md +puppetlabs_puppetdb.git,_puppetlabs_puppetdb.git_commits.csv,puppetlabs_puppetdb.git_hullabaloo_README +gotoh_ssh-connect,_gotoh_ssh-connect_commits.csv,gotoh_ssh-connect_hullabaloo_README.md +python-hyper_hyper-h2,_python-hyper_hyper-h2_commits.csv,python-hyper_hyper-h2_hullabaloo_README.rst +plasma_kscreenlocker.git,plasma_kscreenlocker.git_commits.csv,plasma_kscreenlocker.git_hullabaloo_README +bearded_ruby-ldap,_bearded_ruby-ldap_commits.csv,bearded_ruby-ldap_hullabaloo_README +system_wacomtablet,system_wacomtablet_commits.csv,system_wacomtablet_hullabaloo_README +jedwing_CHMLib.git,_jedwing_CHMLib.git_commits.csv,jedwing_CHMLib.git_hullabaloo_README +log2timeline_dfwinreg.git,_log2timeline_dfwinreg.git_commits.csv,log2timeline_dfwinreg.git_hullabaloo_README +pagekite_PyPagekite,_pagekite_PyPagekite_commits.csv,pagekite_PyPagekite_hullabaloo_README.md +lhost_sendxmpp.git,_lhost_sendxmpp.git_commits.csv,lhost_sendxmpp.git_hullabaloo_README +pgbackrest_pgbackrest,_pgbackrest_pgbackrest_commits.csv,pgbackrest_pgbackrest_hullabaloo_README.md +socket_wrapper.git,socket_wrapper.git_commits.csv,socket_wrapper.git_hullabaloo_README +chneukirchen_extrace,_chneukirchen_extrace_commits.csv,chneukirchen_extrace_hullabaloo_README +LibreCat_Catmandu-MARC.git,_LibreCat_Catmandu-MARC.git_commits.csv,LibreCat_Catmandu-MARC.git_hullabaloo_README +kangguru_rack-google-analytics,_kangguru_rack-google-analytics_commits.csv,kangguru_rack-google-analytics_hullabaloo_README.rdoc +brianmario_escape_utils.git,_brianmario_escape_utils.git_commits.csv,brianmario_escape_utils.git_hullabaloo_README.rdoc +perfectline_validates_url.git,_perfectline_validates_url.git_commits.csv,perfectline_validates_url.git_hullabaloo_README.markdown +OpenTTD_OpenSFX.git,_OpenTTD_OpenSFX.git_commits.csv,OpenTTD_OpenSFX.git_hullabaloo_README.md +email-reminder,email-reminder_commits.csv,email-reminder_hullabaloo_README +pramsey_pgsql-ogr-fdw.git,_pramsey_pgsql-ogr-fdw.git_commits.csv,pramsey_pgsql-ogr-fdw.git_hullabaloo_README.md +libyal_libsmraw.git,_libyal_libsmraw.git_commits.csv,libyal_libsmraw.git_hullabaloo_README +klines.git,klines.git_commits.csv,klines.git_hullabaloo_README.themes +rncbc_qmidinet.git,_rncbc_qmidinet.git_commits.csv,rncbc_qmidinet.git_hullabaloo_README +pytest-dev_pytest-bdd.git,_pytest-dev_pytest-bdd.git_commits.csv,pytest-dev_pytest-bdd.git_hullabaloo_README.md +intel_libyami-utils,_intel_libyami-utils_commits.csv,intel_libyami-utils_hullabaloo_README.md +coldfix_udiskie.git,_coldfix_udiskie.git_commits.csv,coldfix_udiskie.git_hullabaloo_README +rsyslog_liblognorm.git,_rsyslog_liblognorm.git_commits.csv,rsyslog_liblognorm.git_hullabaloo_README +jupyter_terminado,_jupyter_terminado_commits.csv,jupyter_terminado_hullabaloo_README.md +django-waffle_django-waffle,_django-waffle_django-waffle_commits.csv,django-waffle_django-waffle_hullabaloo_README.rst +brechtm_citeproc-py,_brechtm_citeproc-py_commits.csv,brechtm_citeproc-py_hullabaloo_README.md +processone_fast_tls.git,_processone_fast_tls.git_commits.csv,processone_fast_tls.git_hullabaloo_README.md +ginggs_gelemental,_ginggs_gelemental_commits.csv,ginggs_gelemental_hullabaloo_README +metaodi_osmapi.git,_metaodi_osmapi.git_commits.csv,metaodi_osmapi.git_hullabaloo_README.md +timvideos_HDMI2USB-mode-switch.git,_timvideos_HDMI2USB-mode-switch.git_commits.csv,timvideos_HDMI2USB-mode-switch.git_hullabaloo_README.md +zgimbutas_mwrap,_zgimbutas_mwrap_commits.csv,zgimbutas_mwrap_hullabaloo_README +konstantint_intervaltree-bio.git,_konstantint_intervaltree-bio.git_commits.csv,konstantint_intervaltree-bio.git_hullabaloo_README.rst +supervisor_meld3.git,_supervisor_meld3.git_commits.csv,supervisor_meld3.git_hullabaloo_README.txt +dnstap_dnstap-ldns.git,_dnstap_dnstap-ldns.git_commits.csv,dnstap_dnstap-ldns.git_hullabaloo_README +kilobyte_ndctl,kilobyte_ndctl_commits.csv,kilobyte_ndctl_hullabaloo_README.md +kilobyte_memkind,kilobyte_memkind_commits.csv,kilobyte_memkind_hullabaloo_README.txt +dottedmag_pychm.git,_dottedmag_pychm.git_commits.csv,dottedmag_pychm.git_hullabaloo_README +threedaymonk_text,_threedaymonk_text_commits.csv,threedaymonk_text_hullabaloo_README.rdoc +einaros_tinycolor.git,_einaros_tinycolor.git_commits.csv,einaros_tinycolor.git_hullabaloo_README.md +tubaman_django-macaddress.git,_tubaman_django-macaddress.git_commits.csv,tubaman_django-macaddress.git_hullabaloo_README +admesh_python-admesh,_admesh_python-admesh_commits.csv,admesh_python-admesh_hullabaloo_README.rst +jbazik_Archive-Ar.git,_jbazik_Archive-Ar.git_commits.csv,jbazik_Archive-Ar.git_hullabaloo_README.md +davical-project_awl,davical-project_awl_commits.csv,davical-project_awl_hullabaloo_README +phillord_assess.git,_phillord_assess.git_commits.csv,phillord_assess.git_hullabaloo_README.md +public_git_gst123.git,public_git_gst123.git_commits.csv,public_git_gst123.git_hullabaloo_README +pure-data_deken,_pure-data_deken_commits.csv,pure-data_deken_hullabaloo_README.md +p_posixovl_posixovl,p_posixovl_posixovl_commits.csv,p_posixovl_posixovl_hullabaloo_README.rst +czerwonk_bird_exporter,_czerwonk_bird_exporter_commits.csv,czerwonk_bird_exporter_hullabaloo_README.md +es128_glob-parent,_es128_glob-parent_commits.csv,es128_glob-parent_hullabaloo_README.md +briandfoy_module-extract-use.git,_briandfoy_module-extract-use.git_commits.csv,briandfoy_module-extract-use.git_hullabaloo_README +kajongg.git,kajongg.git_commits.csv,kajongg.git_hullabaloo_README +pallets_itsdangerous,_pallets_itsdangerous_commits.csv,pallets_itsdangerous_hullabaloo_README +wch_webshot,_wch_webshot_commits.csv,wch_webshot_hullabaloo_README.md +samg_diffy,_samg_diffy_commits.csv,samg_diffy_hullabaloo_README.md +rpkilby_django-rest-framework-guardian.git,_rpkilby_django-rest-framework-guardian.git_commits.csv,rpkilby_django-rest-framework-guardian.git_hullabaloo_README.md +office_ghostwriter,office_ghostwriter_commits.csv,office_ghostwriter_hullabaloo_README.md +epoptes_epoptes,epoptes_epoptes_commits.csv,epoptes_epoptes_hullabaloo_README +jlmelville_uwot.git,_jlmelville_uwot.git_commits.csv,jlmelville_uwot.git_hullabaloo_README.md +mate-desktop_mate-user-guide.git,_mate-desktop_mate-user-guide.git_commits.csv,mate-desktop_mate-user-guide.git_hullabaloo_README.md +pagekite_PySocksipyChain.git,_pagekite_PySocksipyChain.git_commits.csv,pagekite_PySocksipyChain.git_hullabaloo_README +panel-plugins_xfce4-timer-plugin.git,panel-plugins_xfce4-timer-plugin.git_commits.csv,panel-plugins_xfce4-timer-plugin.git_hullabaloo_README +storaged-project_libblockdev,_storaged-project_libblockdev_commits.csv,storaged-project_libblockdev_hullabaloo_README +fossfreedom_alternative-toolbar,fossfreedom_alternative-toolbar_commits.csv,fossfreedom_alternative-toolbar_hullabaloo_README.md +timlegge_perl-XML-Generator,_timlegge_perl-XML-Generator_commits.csv,timlegge_perl-XML-Generator_hullabaloo_README +pmccabe_pmccabe.git,pmccabe_pmccabe.git_commits.csv,pmccabe_pmccabe.git_hullabaloo_README +gl2ps_gl2ps.git,gl2ps_gl2ps.git_commits.csv,gl2ps_gl2ps.git_hullabaloo_README +prometheus_mysqld_exporter,_prometheus_mysqld_exporter_commits.csv,prometheus_mysqld_exporter_hullabaloo_README.md +twilio_twilio-python,_twilio_twilio-python_commits.csv,twilio_twilio-python_hullabaloo_README.markdown +linuxhw_hw-probe,_linuxhw_hw-probe_commits.csv,linuxhw_hw-probe_hullabaloo_README.md +spaam_svtplay-dl,_spaam_svtplay-dl_commits.csv,spaam_svtplay-dl_hullabaloo_README +Diaoul_enzyme,_Diaoul_enzyme_commits.csv,Diaoul_enzyme_hullabaloo_README.rst +kjn_lbzip2,kjn_lbzip2_commits.csv,kjn_lbzip2_hullabaloo_README +shoheik_Graph-D3.git,_shoheik_Graph-D3.git_commits.csv,shoheik_Graph-D3.git_hullabaloo_README.md +fcitx_fcitx5-gtk,_fcitx_fcitx5-gtk_commits.csv,fcitx_fcitx5-gtk_hullabaloo_README +Rudloff_ufo2otf-debian,Rudloff_ufo2otf-debian_commits.csv,Rudloff_ufo2otf-debian_hullabaloo_README.rst +c4urself_bump2version,_c4urself_bump2version_commits.csv,c4urself_bump2version_hullabaloo_README.rst +sipb_config-package-dev,sipb_config-package-dev_commits.csv,sipb_config-package-dev_hullabaloo_README.md +google_benchmark,_google_benchmark_commits.csv,google_benchmark_hullabaloo_README.md +gcla_termshark.git,_gcla_termshark.git_commits.csv,gcla_termshark.git_hullabaloo_README.md +amplab_snap.git,_amplab_snap.git_commits.csv,amplab_snap.git_hullabaloo_README.md +smira_txZMQ,_smira_txZMQ_commits.csv,smira_txZMQ_hullabaloo_README +asweigart_pyperclip,_asweigart_pyperclip_commits.csv,asweigart_pyperclip_hullabaloo_README +jopt-simple_jopt-simple.git,_jopt-simple_jopt-simple.git_commits.csv,jopt-simple_jopt-simple.git_hullabaloo_README.md +flavorjones_loofah,_flavorjones_loofah_commits.csv,flavorjones_loofah_hullabaloo_README +drj11_pypng,_drj11_pypng_commits.csv,drj11_pypng_hullabaloo_README.txt +pgRouting_pgrouting.git,_pgRouting_pgrouting.git_commits.csv,pgRouting_pgrouting.git_hullabaloo_README.routing +daradib_sidedoor,daradib_sidedoor_commits.csv,daradib_sidedoor_hullabaloo_README.md +uTox_uTox.git,_uTox_uTox.git_commits.csv,uTox_uTox.git_hullabaloo_README.md +linuxdeepin_qt5dxcb-plugin.git,_linuxdeepin_qt5dxcb-plugin.git_commits.csv,linuxdeepin_qt5dxcb-plugin.git_hullabaloo_README.md +b20n_bernhard.git,_b20n_bernhard.git_commits.csv,b20n_bernhard.git_hullabaloo_README.md +MaartenBaert_ssr,_MaartenBaert_ssr_commits.csv,MaartenBaert_ssr_hullabaloo_README.md +df7cb_postgresql-numeral,df7cb_postgresql-numeral_commits.csv,df7cb_postgresql-numeral_hullabaloo_README.md +threerings_openvpn-auth-ldap,_threerings_openvpn-auth-ldap_commits.csv,threerings_openvpn-auth-ldap_hullabaloo_README +etingof_pysmi,_etingof_pysmi_commits.csv,etingof_pysmi_hullabaloo_README.txt +galaxyproject_bioblend,_galaxyproject_bioblend_commits.csv,galaxyproject_bioblend_hullabaloo_README.md +MartijnBraam_python-isc-dhcp-leases,_MartijnBraam_python-isc-dhcp-leases_commits.csv,MartijnBraam_python-isc-dhcp-leases_hullabaloo_README.md +Pylons_translationstring.git,_Pylons_translationstring.git_commits.csv,Pylons_translationstring.git_hullabaloo_README.txt +gawel_panoramisk.git,_gawel_panoramisk.git_commits.csv,gawel_panoramisk.git_hullabaloo_README.rst +thbishop_fission,_thbishop_fission_commits.csv,thbishop_fission_hullabaloo_README.rdoc +ajaiantilal_i7z,_ajaiantilal_i7z_commits.csv,ajaiantilal_i7z_hullabaloo_README.md +rails_jquery-rails.git,_rails_jquery-rails.git_commits.csv,rails_jquery-rails.git_hullabaloo_README.md +brianmario_yajl-ruby,_brianmario_yajl-ruby_commits.csv,brianmario_yajl-ruby_hullabaloo_README.rdoc +toastdriven_restless,_toastdriven_restless_commits.csv,toastdriven_restless_hullabaloo_README.rst +kilobyte_pmemkv,kilobyte_pmemkv_commits.csv,kilobyte_pmemkv_hullabaloo_README.md +Abigail_Regexp--Common.git,_Abigail_Regexp--Common.git_commits.csv,Abigail_Regexp--Common.git_hullabaloo_README +plasma_xdg-desktop-portal-kde.git,plasma_xdg-desktop-portal-kde.git_commits.csv,plasma_xdg-desktop-portal-kde.git_hullabaloo_README.md +gintas_django-picklefield.git,_gintas_django-picklefield.git_commits.csv,gintas_django-picklefield.git_hullabaloo_README +sirfz_tesserocr.git,_sirfz_tesserocr.git_commits.csv,sirfz_tesserocr.git_hullabaloo_README.md +postgis_postgis-java.git,_postgis_postgis-java.git_commits.csv,postgis_postgis-java.git_hullabaloo_README +eerimoq_bitstruct,_eerimoq_bitstruct_commits.csv,eerimoq_bitstruct_hullabaloo_README.rst +deiv_driftnet,deiv_driftnet_commits.csv,deiv_driftnet_hullabaloo_README +processone_pkix.git,_processone_pkix.git_commits.csv,processone_pkix.git_hullabaloo_README.md +rvaser_thread_pool,_rvaser_thread_pool_commits.csv,rvaser_thread_pool_hullabaloo_README.md +mikeal_tunnel-agent,_mikeal_tunnel-agent_commits.csv,mikeal_tunnel-agent_hullabaloo_README.md +nothings_stb,_nothings_stb_commits.csv,nothings_stb_hullabaloo_README.md +qix-_node-simple-swizzle,_qix-_node-simple-swizzle_commits.csv,qix-_node-simple-swizzle_hullabaloo_README.md +df7cb_newpid,df7cb_newpid_commits.csv,df7cb_newpid_hullabaloo_README.md +faye_faye,_faye_faye_commits.csv,faye_faye_hullabaloo_README.txt +neovim_pynvim,_neovim_pynvim_commits.csv,neovim_pynvim_hullabaloo_README.md +cmrd-senya_markdown-it-html5-embed,_cmrd-senya_markdown-it-html5-embed_commits.csv,cmrd-senya_markdown-it-html5-embed_hullabaloo_README.md +firehol_iprange.git,_firehol_iprange.git_commits.csv,firehol_iprange.git_hullabaloo_README.md +browserify_browserify-sign,_browserify_browserify-sign_commits.csv,browserify_browserify-sign_hullabaloo_README.md +textile_python-textile.git,_textile_python-textile.git_commits.csv,textile_python-textile.git_hullabaloo_README.textile +grobian_carbon-c-relay.git,_grobian_carbon-c-relay.git_commits.csv,grobian_carbon-c-relay.git_hullabaloo_README.md +julian-klode_dir2ogg,julian-klode_dir2ogg_commits.csv,julian-klode_dir2ogg_hullabaloo_README +r-lib_processx.git,_r-lib_processx.git_commits.csv,r-lib_processx.git_hullabaloo_README.md +openstack_swift.git,_openstack_swift.git_commits.csv,openstack_swift.git_hullabaloo_README +chjj_term.js,_chjj_term.js_commits.csv,chjj_term.js_hullabaloo_README.md +ambethia_recaptcha,_ambethia_recaptcha_commits.csv,ambethia_recaptcha_hullabaloo_README +mwild1_luadbi,_mwild1_luadbi_commits.csv,mwild1_luadbi_hullabaloo_README +brendangregg_Chaosreader,_brendangregg_Chaosreader_commits.csv,brendangregg_Chaosreader_hullabaloo_README.md +docker_libkv.git,_docker_libkv.git_commits.csv,docker_libkv.git_hullabaloo_README.md +zopefoundation_zope.proxy,_zopefoundation_zope.proxy_commits.csv,zopefoundation_zope.proxy_hullabaloo_README.txt +ultrabug_py3status.git,_ultrabug_py3status.git_commits.csv,ultrabug_py3status.git_hullabaloo_README.md +ros_catkin.git,_ros_catkin.git_commits.csv,ros_catkin.git_hullabaloo_README +skoblov-lab_genetic,_skoblov-lab_genetic_commits.csv,skoblov-lab_genetic_hullabaloo_README.md +assaf_uuid,_assaf_uuid_commits.csv,assaf_uuid_hullabaloo_README +emuse_qmidiarp.git,_emuse_qmidiarp.git_commits.csv,emuse_qmidiarp.git_hullabaloo_README +paravoid_gdnsd,paravoid_gdnsd_commits.csv,paravoid_gdnsd_hullabaloo_README +jonschlinkert_map-visit,_jonschlinkert_map-visit_commits.csv,jonschlinkert_map-visit_hullabaloo_README.md +jamesturk_jellyfish,_jamesturk_jellyfish_commits.csv,jamesturk_jellyfish_hullabaloo_README.rst +jimfunk_django-postgresql-netfields,_jimfunk_django-postgresql-netfields_commits.csv,jimfunk_django-postgresql-netfields_hullabaloo_README +christophgysin_pasystray.git,_christophgysin_pasystray.git_commits.csv,christophgysin_pasystray.git_hullabaloo_README +tobyink_p5-io-callback.git,_tobyink_p5-io-callback.git_commits.csv,tobyink_p5-io-callback.git_hullabaloo_README +kilobyte_arch-test,kilobyte_arch-test_commits.csv,kilobyte_arch-test_hullabaloo_README +stewartsmith_libeatmydata.git,_stewartsmith_libeatmydata.git_commits.csv,stewartsmith_libeatmydata.git_hullabaloo_README +alsa-lib.git,alsa-lib.git_commits.csv,alsa-lib.git_hullabaloo_README.aconnect +gruntjs_grunt-cli.git,_gruntjs_grunt-cli.git_commits.csv,gruntjs_grunt-cli.git_hullabaloo_README.md +Rykian_clockwork,_Rykian_clockwork_commits.csv,Rykian_clockwork_hullabaloo_README.md +jbouse-debian_alabaster,jbouse-debian_alabaster_commits.csv,jbouse-debian_alabaster_hullabaloo_README.md +gbarr_CPAN-DistnameInfo.git,_gbarr_CPAN-DistnameInfo.git_commits.csv,gbarr_CPAN-DistnameInfo.git_hullabaloo_README +MagicStack_uvloop,_MagicStack_uvloop_commits.csv,MagicStack_uvloop_hullabaloo_README +cherti_mailexporter,_cherti_mailexporter_commits.csv,cherti_mailexporter_hullabaloo_README.md +pylast_pylast,_pylast_pylast_commits.csv,pylast_pylast_hullabaloo_README +Debian_ratt,_Debian_ratt_commits.csv,Debian_ratt_hullabaloo_README.md +alastair_python-musicbrainz-ngs,_alastair_python-musicbrainz-ngs_commits.csv,alastair_python-musicbrainz-ngs_hullabaloo_README.md +centreon_centreon-clib.git,_centreon_centreon-clib.git_commits.csv,centreon_centreon-clib.git_hullabaloo_README.md +powa-team_powa-archivist,powa-team_powa-archivist_commits.csv,powa-team_powa-archivist_hullabaloo_README.md +gpodder_podcastparser.git,_gpodder_podcastparser.git_commits.csv,gpodder_podcastparser.git_hullabaloo_README.md +gwolf_kindleclip,gwolf_kindleclip_commits.csv,gwolf_kindleclip_hullabaloo_README.txt +RIPE-NCC_ripe-atlas-cousteau.git,_RIPE-NCC_ripe-atlas-cousteau.git_commits.csv,RIPE-NCC_ripe-atlas-cousteau.git_hullabaloo_README.md +pytest-dev_pluggy,_pytest-dev_pluggy_commits.csv,pytest-dev_pluggy_hullabaloo_README.rst +deterministic-arts_DartsPyLRU.git,_deterministic-arts_DartsPyLRU.git_commits.csv,deterministic-arts_DartsPyLRU.git_hullabaloo_README.md +libraries_libqaccessibilityclient.git,libraries_libqaccessibilityclient.git_commits.csv,libraries_libqaccessibilityclient.git_hullabaloo_README +jonschlinkert_extend-shallow,_jonschlinkert_extend-shallow_commits.csv,jonschlinkert_extend-shallow_hullabaloo_README.md +steve-m-hay_XML-Encoding.git,_steve-m-hay_XML-Encoding.git_commits.csv,steve-m-hay_XML-Encoding.git_hullabaloo_README +dkogan_gnuplotlib,_dkogan_gnuplotlib_commits.csv,dkogan_gnuplotlib_hullabaloo_README.org +JesusFreke_smali,_JesusFreke_smali_commits.csv,JesusFreke_smali_hullabaloo_README +baruch_diskscan.git,_baruch_diskscan.git_commits.csv,baruch_diskscan.git_hullabaloo_README.md +MarkCWirt_MIDIUtil.git,_MarkCWirt_MIDIUtil.git_commits.csv,MarkCWirt_MIDIUtil.git_hullabaloo_README.txt +mati75_evilwm.git,mati75_evilwm.git_commits.csv,mati75_evilwm.git_hullabaloo_README +suyusung_arm.git,_suyusung_arm.git_commits.csv,suyusung_arm.git_hullabaloo_README.md +google_python-gflags.git,_google_python-gflags.git_commits.csv,google_python-gflags.git_hullabaloo_README +numba_numba.git,_numba_numba.git_commits.csv,numba_numba.git_hullabaloo_README +schrodinger_coordgenlibs.git,_schrodinger_coordgenlibs.git_commits.csv,schrodinger_coordgenlibs.git_hullabaloo_README.md +expressjs_parseurl.git,_expressjs_parseurl.git_commits.csv,expressjs_parseurl.git_hullabaloo_README.md +inducer_pudb.git,_inducer_pudb.git_commits.csv,inducer_pudb.git_hullabaloo_README.md +wharris_esmre.git,_wharris_esmre.git_commits.csv,wharris_esmre.git_hullabaloo_README +composer_semver,_composer_semver_commits.csv,composer_semver_hullabaloo_README.md +symfony_contracts,_symfony_contracts_commits.csv,symfony_contracts_hullabaloo_README.md +kugaevsky_mousetrap-rails,_kugaevsky_mousetrap-rails_commits.csv,kugaevsky_mousetrap-rails_hullabaloo_README.md +mdbootstrap_perfect-scrollbar,_mdbootstrap_perfect-scrollbar_commits.csv,mdbootstrap_perfect-scrollbar_hullabaloo_README.md +fbb-git_bisoncpp,fbb-git_bisoncpp_commits.csv,fbb-git_bisoncpp_hullabaloo_README +dvdhrm_xwiimote,_dvdhrm_xwiimote_commits.csv,dvdhrm_xwiimote_hullabaloo_README +larswirzenius_vmdb2.git,larswirzenius_vmdb2.git_commits.csv,larswirzenius_vmdb2.git_hullabaloo_README +eclipse_paho.mqtt.python.git,_eclipse_paho.mqtt.python.git_commits.csv,eclipse_paho.mqtt.python.git_hullabaloo_README.md +prometheus-community_node-exporter-textfile-collector-scripts,_prometheus-community_node-exporter-textfile-collector-scripts_commits.csv,prometheus-community_node-exporter-textfile-collector-scripts_hullabaloo_README.md +GNOME_folks,GNOME_folks_commits.csv,GNOME_folks_hullabaloo_README +diyan_pywinrm.git,_diyan_pywinrm.git_commits.csv,diyan_pywinrm.git_hullabaloo_README.md +zacharyvoase_urlobject,_zacharyvoase_urlobject_commits.csv,zacharyvoase_urlobject_hullabaloo_README.rst +diafygi_acme-tiny.git,_diafygi_acme-tiny.git_commits.csv,diafygi_acme-tiny.git_hullabaloo_README.md +jarun_pdd.git,_jarun_pdd.git_commits.csv,jarun_pdd.git_hullabaloo_README.md +zevv_duc,_zevv_duc_commits.csv,zevv_duc_hullabaloo_README.md +ncannasse_xml-light.git,_ncannasse_xml-light.git_commits.csv,ncannasse_xml-light.git_hullabaloo_README +agordon_libgtextutils.git,_agordon_libgtextutils.git_commits.csv,agordon_libgtextutils.git_hullabaloo_README +kaelzhang_node-ignore.git,_kaelzhang_node-ignore.git_commits.csv,kaelzhang_node-ignore.git_hullabaloo_README.md +sshguard_sshguard.git,sshguard_sshguard.git_commits.csv,sshguard_sshguard.git_hullabaloo_README +dianara_dianara-dev.git,dianara_dianara-dev.git_commits.csv,dianara_dianara-dev.git_hullabaloo_README +jpastuszek_capture-output,_jpastuszek_capture-output_commits.csv,jpastuszek_capture-output_hullabaloo_README.rdoc +cloudflare_python-cloudflare,_cloudflare_python-cloudflare_commits.csv,cloudflare_python-cloudflare_hullabaloo_README.md +matrix-org_python-signedjson.git,_matrix-org_python-signedjson.git_commits.csv,matrix-org_python-signedjson.git_hullabaloo_README.rst +requests-cache_requests-cache,_requests-cache_requests-cache_commits.csv,requests-cache_requests-cache_hullabaloo_README +bpython_curtsies,_bpython_curtsies_commits.csv,bpython_curtsies_hullabaloo_README.md +loads_molotov.git,_loads_molotov.git_commits.csv,loads_molotov.git_hullabaloo_README.md +git_perl_net-duo.git,git_perl_net-duo.git_commits.csv,git_perl_net-duo.git_hullabaloo_README +swaywm_swayidle,_swaywm_swayidle_commits.csv,swaywm_swayidle_hullabaloo_README.md +zopefoundation_zope.testrunner,_zopefoundation_zope.testrunner_commits.csv,zopefoundation_zope.testrunner_hullabaloo_README.txt +ua-parser_uap-core.git,_ua-parser_uap-core.git_commits.csv,ua-parser_uap-core.git_hullabaloo_README.markdown +mila-iqia_picklable-itertools,_mila-iqia_picklable-itertools_commits.csv,mila-iqia_picklable-itertools_hullabaloo_README.md +GNOME_ocrfeeder,GNOME_ocrfeeder_commits.csv,GNOME_ocrfeeder_hullabaloo_README +artyom-poptsov_guile-ssh.git,_artyom-poptsov_guile-ssh.git_commits.csv,artyom-poptsov_guile-ssh.git_hullabaloo_README +voxpupuli_pypuppetdb,_voxpupuli_pypuppetdb_commits.csv,voxpupuli_pypuppetdb_hullabaloo_README.md +ghorn_debian-coinor-ipopt.git,ghorn_debian-coinor-ipopt.git_commits.csv,ghorn_debian-coinor-ipopt.git_hullabaloo_README +foutaise_texttable,_foutaise_texttable_commits.csv,foutaise_texttable_hullabaloo_README.md +mozilla_source-map,_mozilla_source-map_commits.csv,mozilla_source-map_hullabaloo_README +vmware_pyvmomi,_vmware_pyvmomi_commits.csv,vmware_pyvmomi_hullabaloo_README.md +airspy_airspyone_host.git,_airspy_airspyone_host.git_commits.csv,airspy_airspyone_host.git_hullabaloo_README.md +alecthomas_voluptuous,_alecthomas_voluptuous_commits.csv,alecthomas_voluptuous_hullabaloo_README +zmartzone_mod_auth_openidc.git,_zmartzone_mod_auth_openidc.git_commits.csv,zmartzone_mod_auth_openidc.git_hullabaloo_README +jorgesca_garmintools.git,_jorgesca_garmintools.git_commits.csv,jorgesca_garmintools.git_hullabaloo_README +takluyver_entrypoints,_takluyver_entrypoints_commits.csv,takluyver_entrypoints_hullabaloo_README.rst +yamldb_yaml_db,_yamldb_yaml_db_commits.csv,yamldb_yaml_db_hullabaloo_README +libosinfo_osinfo-db-tools.git,libosinfo_osinfo-db-tools.git_commits.csv,libosinfo_osinfo-db-tools.git_hullabaloo_README +mogaal_nomnom,mogaal_nomnom_commits.csv,mogaal_nomnom_hullabaloo_README +ttilley_fssm.git,_ttilley_fssm.git_commits.csv,ttilley_fssm.git_hullabaloo_README.rdoc +lanmaster53_recon-ng.git,_lanmaster53_recon-ng.git_commits.csv,lanmaster53_recon-ng.git_hullabaloo_README.md +ungleich-public_cdist,ungleich-public_cdist_commits.csv,ungleich-public_cdist_hullabaloo_README +martinblech_xmltodict.git,_martinblech_xmltodict.git_commits.csv,martinblech_xmltodict.git_hullabaloo_README.markdown +dagolden_math-random-oo.git,_dagolden_math-random-oo.git_commits.csv,dagolden_math-random-oo.git_hullabaloo_README +lxqt_lxqt-admin.git,_lxqt_lxqt-admin.git_commits.csv,lxqt_lxqt-admin.git_hullabaloo_README.md +cpants_Module-CPANTS-Analyse.git,_cpants_Module-CPANTS-Analyse.git_commits.csv,cpants_Module-CPANTS-Analyse.git_hullabaloo_README +bestpractical_jifty-dbi.git,_bestpractical_jifty-dbi.git_commits.csv,bestpractical_jifty-dbi.git_hullabaloo_README +tmate-io_tmate,_tmate-io_tmate_commits.csv,tmate-io_tmate_hullabaloo_README +stompgem_stomp.git,_stompgem_stomp.git_commits.csv,stompgem_stomp.git_hullabaloo_README +GNOME_gom.git,GNOME_gom.git_commits.csv,GNOME_gom.git_hullabaloo_README +jpirko_libndp.git,_jpirko_libndp.git_commits.csv,jpirko_libndp.git_hullabaloo_README +gildor478_ocaml-expect.git,_gildor478_ocaml-expect.git_commits.csv,gildor478_ocaml-expect.git_hullabaloo_README.txt +pytroll_pyresample,_pytroll_pyresample_commits.csv,pytroll_pyresample_hullabaloo_README +mate-desktop_mate-screensaver.git,_mate-desktop_mate-screensaver.git_commits.csv,mate-desktop_mate-screensaver.git_hullabaloo_README +seattlerb_sexp_processor,_seattlerb_sexp_processor_commits.csv,seattlerb_sexp_processor_hullabaloo_README.txt +mate-desktop_caja-dropbox.git,_mate-desktop_caja-dropbox.git_commits.csv,mate-desktop_caja-dropbox.git_hullabaloo_README +clojure_core.cache,_clojure_core.cache_commits.csv,clojure_core.cache_hullabaloo_README.md +numba_llvmlite.git,_numba_llvmlite.git_commits.csv,numba_llvmlite.git_hullabaloo_README.md +hfst_hfst-ospell.git,_hfst_hfst-ospell.git_commits.csv,hfst_hfst-ospell.git_hullabaloo_README +phpDocumentor_TypeResolver,_phpDocumentor_TypeResolver_commits.csv,phpDocumentor_TypeResolver_hullabaloo_README.md +mate-desktop_libmateweather.git,_mate-desktop_libmateweather.git_commits.csv,mate-desktop_libmateweather.git_hullabaloo_README +Mic92_python-mpd2,_Mic92_python-mpd2_commits.csv,Mic92_python-mpd2_hullabaloo_README.txt +rails_coffee-rails,_rails_coffee-rails_commits.csv,rails_coffee-rails_hullabaloo_README.markdown +GNOME_mm-common.git,GNOME_mm-common.git_commits.csv,GNOME_mm-common.git_hullabaloo_README +cleishm_libcypher-parser,cleishm_libcypher-parser_commits.csv,cleishm_libcypher-parser_hullabaloo_README.md +ddfreyne_cri,_ddfreyne_cri_commits.csv,ddfreyne_cri_hullabaloo_README +micheleg_dash-to-dock.git,_micheleg_dash-to-dock.git_commits.csv,micheleg_dash-to-dock.git_hullabaloo_README.md +basho_bitcask.git,_basho_bitcask.git_commits.csv,basho_bitcask.git_hullabaloo_README +kasei_atteanx-endpoint.git,_kasei_atteanx-endpoint.git_commits.csv,kasei_atteanx-endpoint.git_hullabaloo_README.md +jaraco_keyring,_jaraco_keyring_commits.csv,jaraco_keyrings.alt_hullabaloo_README.rst +mogaal_cclive,mogaal_cclive_commits.csv,mogaal_cclive_hullabaloo_README +pmcenery_ipheth-debian,pmcenery_ipheth-debian_commits.csv,pmcenery_ipheth-debian_hullabaloo_README +pub_scm_linux_kernel_git_jberg_iw.git,pub_scm_linux_kernel_git_jberg_iw.git_commits.csv,pub_scm_linux_kernel_git_jberg_iw.git_hullabaloo_README +pydata_xarray,_pydata_xarray_commits.csv,pydata_xarray_hullabaloo_README.md +bluesabre_mugshot,_bluesabre_mugshot_commits.csv,bluesabre_mugshot_hullabaloo_README +PyCQA_pep8-naming,_PyCQA_pep8-naming_commits.csv,PyCQA_pep8-naming_hullabaloo_README.rst +pantsbuild_pex.git,_pantsbuild_pex.git_commits.csv,pantsbuild_pex.git_hullabaloo_README.md +mbostock_smash.git,_mbostock_smash.git_commits.csv,mbostock_smash.git_hullabaloo_README.md +Diaoul_subliminal.git,_Diaoul_subliminal.git_commits.csv,Diaoul_subliminal.git_hullabaloo_README.md +celery_django-celery-beat,_celery_django-celery-beat_commits.csv,celery_django-celery-beat_hullabaloo_README.rst +fcitx_fcitx-libpinyin,_fcitx_fcitx-libpinyin_commits.csv,fcitx_fcitx-libpinyin_hullabaloo_README +GNOME_glib-networking,GNOME_glib-networking_commits.csv,GNOME_glib-networking_hullabaloo_README +boundary_folsom.git,_boundary_folsom.git_commits.csv,boundary_folsom.git_hullabaloo_README.md +umanwizard_libeot.git,_umanwizard_libeot.git_commits.csv,umanwizard_libeot.git_hullabaloo_README.md +c-w_ghp-import.git,_c-w_ghp-import.git_commits.csv,c-w_ghp-import.git_hullabaloo_README.rst +shapely_shapely.git,_shapely_shapely.git_commits.csv,shapely_shapely.git_hullabaloo_README.txt +janestreet_sexplib.git,_janestreet_sexplib.git_commits.csv,janestreet_sexplib.git_hullabaloo_README +lord63_tldr.py,_lord63_tldr.py_commits.csv,lord63_tldr.py_hullabaloo_README.md +myint_perceptualdiff,_myint_perceptualdiff_commits.csv,myint_perceptualdiff_hullabaloo_README.txt +snare_scruffy,_snare_scruffy_commits.csv,snare_scruffy_hullabaloo_README.md +google_googletest.git,_google_googletest.git_commits.csv,google_googletest.git_hullabaloo_README +aplevich_dpic,aplevich_dpic_commits.csv,aplevich_dpic_hullabaloo_README +ctjacobs_pyqso,_ctjacobs_pyqso_commits.csv,ctjacobs_pyqso_hullabaloo_README +jbouse-debian_libesmtp,jbouse-debian_libesmtp_commits.csv,jbouse-debian_libesmtp_hullabaloo_README +argerim_select2-rails,_argerim_select2-rails_commits.csv,argerim_select2-rails_hullabaloo_README +NVIDIA_nvidia-persistenced,_NVIDIA_nvidia-persistenced_commits.csv,NVIDIA_nvidia-persistenced_hullabaloo_README +nginxinc_nginx-prometheus-exporter,_nginxinc_nginx-prometheus-exporter_commits.csv,nginxinc_nginx-prometheus-exporter_hullabaloo_README.md +Rich-Harris_sourcemap-codec,_Rich-Harris_sourcemap-codec_commits.csv,Rich-Harris_sourcemap-codec_hullabaloo_README.md +compiz_compizconfig-python.git,compiz_compizconfig-python.git_commits.csv,compiz_compizconfig-python.git_hullabaloo_README +rncbc_drumkv1.git,_rncbc_drumkv1.git_commits.csv,rncbc_drumkv1.git_hullabaloo_README +savonet_ocaml-speex.git,_savonet_ocaml-speex.git_commits.csv,savonet_ocaml-speex.git_hullabaloo_README +bombadil_mod_proxy_msrpc,bombadil_mod_proxy_msrpc_commits.csv,bombadil_mod_proxy_msrpc_hullabaloo_README.pod +jonathanio_update-systemd-resolved,_jonathanio_update-systemd-resolved_commits.csv,jonathanio_update-systemd-resolved_hullabaloo_README.md +alisaifee_flask-limiter.git,_alisaifee_flask-limiter.git_commits.csv,alisaifee_flask-limiter.git_hullabaloo_README.rst +simd-everywhere_simde,_simd-everywhere_simde_commits.csv,simd-everywhere_simde_hullabaloo_README.md +marioroy_mce-perl.git,_marioroy_mce-perl.git_commits.csv,marioroy_mce-perl.git_hullabaloo_README.md +jquery-i18n-properties_jquery-i18n-properties.git,_jquery-i18n-properties_jquery-i18n-properties.git_commits.csv,jquery-i18n-properties_jquery-i18n-properties.git_hullabaloo_README.txt +jklimke_libcitygml.git,_jklimke_libcitygml.git_commits.csv,jklimke_libcitygml.git_hullabaloo_README +pyca_pynacl,_pyca_pynacl_commits.csv,pyca_pynacl_hullabaloo_README.rst +kilobyte_safeclib,kilobyte_safeclib_commits.csv,kilobyte_safeclib_hullabaloo_README +maxmind_MaxMind-DB-Reader-python,_maxmind_MaxMind-DB-Reader-python_commits.csv,maxmind_MaxMind-DB-Reader-python_hullabaloo_README.md +EnterpriseDB_mysql_fdw.git,_EnterpriseDB_mysql_fdw.git_commits.csv,EnterpriseDB_mysql_fdw.git_hullabaloo_README +sharplispers_split-sequence,_sharplispers_split-sequence_commits.csv,sharplispers_split-sequence_hullabaloo_README.md +notanumber_xapian-haystack,_notanumber_xapian-haystack_commits.csv,notanumber_xapian-haystack_hullabaloo_README +jaspernbrouwer_powerline-gitstatus.git,_jaspernbrouwer_powerline-gitstatus.git_commits.csv,jaspernbrouwer_powerline-gitstatus.git_hullabaloo_README.md +sphinx-contrib_restbuilder.git,_sphinx-contrib_restbuilder.git_commits.csv,sphinx-contrib_restbuilder.git_hullabaloo_README.rst +erdewit_nest_asyncio,_erdewit_nest_asyncio_commits.csv,erdewit_nest_asyncio_hullabaloo_README.rst +scrapy-plugins_scrapy-djangoitem,_scrapy-plugins_scrapy-djangoitem_commits.csv,scrapy-plugins_scrapy-djangoitem_hullabaloo_README.rst +outatime_applause.git,_outatime_applause.git_commits.csv,outatime_applause.git_hullabaloo_README.md +rncbc_samplv1.git,_rncbc_samplv1.git_commits.csv,rncbc_samplv1.git_hullabaloo_README +ahcm_ffindex.git,_ahcm_ffindex.git_commits.csv,ahcm_ffindex.git_hullabaloo_README +firmafon_ruby-fogbugz,_firmafon_ruby-fogbugz_commits.csv,firmafon_ruby-fogbugz_hullabaloo_README.md +Echsecutor_coffee,_Echsecutor_coffee_commits.csv,Echsecutor_coffee_hullabaloo_README.md +shadowsocks_shadowsocks-libev,_shadowsocks_shadowsocks-libev_commits.csv,shadowsocks_shadowsocks-libev_hullabaloo_README.md +davidcelis_api-pagination.git,_davidcelis_api-pagination.git_commits.csv,davidcelis_api-pagination.git_hullabaloo_README.md +python-hyper_hyperframe.git,_python-hyper_hyperframe.git_commits.csv,python-hyper_hyperframe.git_hullabaloo_README.rst +toofishes_python-pgpdump,_toofishes_python-pgpdump_commits.csv,toofishes_python-pgpdump_hullabaloo_README.md +qiime2_q2cli,_qiime2_q2cli_commits.csv,qiime2_q2cli_hullabaloo_README.md +GNOME_msitools,_GNOME_msitools_commits.csv,GNOME_msitools_hullabaloo_README +pythongssapi_python-gssapi,_pythongssapi_python-gssapi_commits.csv,pythongssapi_python-gssapi_hullabaloo_README.txt +glv2_bruteforce-luks,_glv2_bruteforce-luks_commits.csv,glv2_bruteforce-luks_hullabaloo_README +libc_em-redis,_libc_em-redis_commits.csv,libc_em-redis_hullabaloo_README.txt +pmqs_BerkeleyDB.git,_pmqs_BerkeleyDB.git_commits.csv,pmqs_BerkeleyDB.git_hullabaloo_README +manwar_Test-Strict.git,_manwar_Test-Strict.git_commits.csv,manwar_Test-Strict.git_hullabaloo_README +zopefoundation_zope.component,_zopefoundation_zope.component_commits.csv,zopefoundation_zope.component_hullabaloo_README.txt +linuxmint_nemo.git,_linuxmint_nemo.git_commits.csv,linuxmint_nemo.git_hullabaloo_README.md +nichtich_Pandoc-Wrapper.git,_nichtich_Pandoc-Wrapper.git_commits.csv,nichtich_Pandoc-Wrapper.git_hullabaloo_README.md +wooga_eredis.git,_wooga_eredis.git_commits.csv,wooga_eredis.git_hullabaloo_README.md +palinek_nm-tray.git,_palinek_nm-tray.git_commits.csv,palinek_nm-tray.git_hullabaloo_README.md +etingof_pysnmp,_etingof_pysnmp_commits.csv,etingof_pysnmp_hullabaloo_README.txt +ReAzem_python-pass.git,_ReAzem_python-pass.git_commits.csv,ReAzem_python-pass.git_hullabaloo_README.md +linuxmint_flags.git,_linuxmint_flags.git_commits.csv,linuxmint_flags.git_hullabaloo_README.md +rubik_radon.git,_rubik_radon.git_commits.csv,rubik_radon.git_hullabaloo_README.md +mlang_yatm.git,_mlang_yatm.git_commits.csv,mlang_yatm.git_hullabaloo_README +GNOME_hitori.git,GNOME_hitori.git_commits.csv,GNOME_hitori.git_hullabaloo_README +tkem_mopidy-dleyna.git,_tkem_mopidy-dleyna.git_commits.csv,tkem_mopidy-dleyna.git_hullabaloo_README.rst +kamailio_kamcli,_kamailio_kamcli_commits.csv,kamailio_kamcli_hullabaloo_README.md +enova_pg_fact_loader.git,_enova_pg_fact_loader.git_commits.csv,enova_pg_fact_loader.git_hullabaloo_README.md +ratt-ru_cassbeam,_ratt-ru_cassbeam_commits.csv,ratt-ru_cassbeam_hullabaloo_README +Archive_mousetrap,Archive_mousetrap_commits.csv,Archive_mousetrap_hullabaloo_README +jupyter_testpath.git,_jupyter_testpath.git_commits.csv,jupyter_testpath.git_hullabaloo_README.rst +rhinstaller_efivar.git,_rhinstaller_efivar.git_commits.csv,rhinstaller_efivar.git_hullabaloo_README.md +aio-libs_yarl.git,_aio-libs_yarl.git_commits.csv,aio-libs_yarl.git_hullabaloo_README.md +lxqt_compton-conf.git,_lxqt_compton-conf.git_commits.csv,lxqt_compton-conf.git_hullabaloo_README +retext-project_pymarkups.git,_retext-project_pymarkups.git_commits.csv,retext-project_pymarkups.git_hullabaloo_README +rails_arel,_rails_arel_commits.csv,rails_arel_hullabaloo_README +iovisor_bcc.git,_iovisor_bcc.git_commits.csv,iovisor_bcc.git_hullabaloo_README.md +epam_nfstrace,_epam_nfstrace_commits.csv,epam_nfstrace_hullabaloo_README +rudionrails_yell,_rudionrails_yell_commits.csv,rudionrails_yell_hullabaloo_README.rdoc +mate-desktop_mate-menus.git,_mate-desktop_mate-menus.git_commits.csv,mate-desktop_mate-menus.git_hullabaloo_README +bowman_CGI-Expand.git,_bowman_CGI-Expand.git_commits.csv,bowman_CGI-Expand.git_hullabaloo_README +puppetlabs_puppetlabs-firewall,_puppetlabs_puppetlabs-firewall_commits.csv,puppetlabs_puppetlabs-firewall_hullabaloo_README.md +amnong_easywebdav,_amnong_easywebdav_commits.csv,amnong_easywebdav_hullabaloo_README.md +jonschlinkert_repeat-element,_jonschlinkert_repeat-element_commits.csv,jonschlinkert_repeat-element_hullabaloo_README.md +jiixyj_libebur128,_jiixyj_libebur128_commits.csv,jiixyj_libebur128_hullabaloo_README.md +kjetilk_RDF-LinkedData.git,_kjetilk_RDF-LinkedData.git_commits.csv,kjetilk_RDF-LinkedData.git_hullabaloo_README +JakeWharton_pidcat.git,_JakeWharton_pidcat.git_commits.csv,JakeWharton_pidcat.git_hullabaloo_README.md +puppetlabs_puppetlabs-concat,_puppetlabs_puppetlabs-concat_commits.csv,puppetlabs_puppetlabs-concat_hullabaloo_README +schaal_bino,schaal_bino_commits.csv,schaal_bino_hullabaloo_README.Windows +tessus_apachetop.git,_tessus_apachetop.git_commits.csv,tessus_apachetop.git_hullabaloo_README +clalancette_oz.git,_clalancette_oz.git_commits.csv,clalancette_oz.git_hullabaloo_README +philpem_printer-driver-ptouch.git,_philpem_printer-driver-ptouch.git_commits.csv,philpem_printer-driver-ptouch.git_hullabaloo_README +lazarusllong_sqldeveloper-package.git,lazarusllong_sqldeveloper-package.git_commits.csv,lazarusllong_sqldeveloper-package.git_hullabaloo_README +spulec_freezegun.git,_spulec_freezegun.git_commits.csv,spulec_freezegun.git_hullabaloo_README.rst +GNOME_d-feet.git,GNOME_d-feet.git_commits.csv,GNOME_d-feet.git_hullabaloo_README +mopidy_mopidy-scrobbler.git,_mopidy_mopidy-scrobbler.git_commits.csv,mopidy_mopidy-scrobbler.git_hullabaloo_README.rst +stef_pysodium.git,_stef_pysodium.git_commits.csv,stef_pysodium.git_hullabaloo_README.md +lxqt_liblxqt.git,_lxqt_liblxqt.git_commits.csv,lxqt_liblxqt.git_hullabaloo_README +latchset_custodia.git,_latchset_custodia.git_commits.csv,latchset_custodia.git_hullabaloo_README.md +jawnsy_Math-Random-ISAAC,_jawnsy_Math-Random-ISAAC_commits.csv,jawnsy_Math-Random-ISAAC_hullabaloo_README +diff-match-patch-python_diff-match-patch,_diff-match-patch-python_diff-match-patch_commits.csv,diff-match-patch-python_diff-match-patch_hullabaloo_README.md +vapier_ncompress.git,_vapier_ncompress.git_commits.csv,vapier_ncompress.git_hullabaloo_README +openwall_scanlogd.git,_openwall_scanlogd.git_commits.csv,openwall_scanlogd.git_hullabaloo_README.md +mati75_udevil.git,mati75_udevil.git_commits.csv,mati75_udevil.git_hullabaloo_README +pagekit_vue-resource,_pagekit_vue-resource_commits.csv,pagekit_vue-resource_hullabaloo_README.md +pypa_pep517.git,_pypa_pep517.git_commits.csv,pypa_pep517.git_hullabaloo_README.rst +thumblemonks_riot.git,_thumblemonks_riot.git_commits.csv,thumblemonks_riot.git_hullabaloo_README.markdown +dask_partd.git,_dask_partd.git_commits.csv,dask_partd.git_hullabaloo_README.rst +lipnitsk_libcue,_lipnitsk_libcue_commits.csv,lipnitsk_libcue_hullabaloo_README +boto_botocore,_boto_botocore_commits.csv,boto_botocore_hullabaloo_README.md +wesm_feather,_wesm_feather_commits.csv,wesm_feather_hullabaloo_README.md +locationtech_jts.git,_locationtech_jts.git_commits.csv,locationtech_jts.git_hullabaloo_README.md +osmcode_osmium-tool.git,_osmcode_osmium-tool.git_commits.csv,osmcode_osmium-tool.git_hullabaloo_README.md +nov_openid_connect,_nov_openid_connect_commits.csv,nov_openid_connect_hullabaloo_README.rdoc +matplotlib_cycler,_matplotlib_cycler_commits.csv,matplotlib_cycler_hullabaloo_README.md +turnstep_Math-GMP.git,_turnstep_Math-GMP.git_commits.csv,turnstep_Math-GMP.git_hullabaloo_README +plasma_kactivitymanagerd.git,plasma_kactivitymanagerd.git_commits.csv,plasma_kactivitymanagerd.git_hullabaloo_README +fnando_browser.git,_fnando_browser.git_commits.csv,fnando_browser.git_hullabaloo_README.rdoc +haakonnessjoen_Cavez-of-Phear-packaging,haakonnessjoen_Cavez-of-Phear-packaging_commits.csv,haakonnessjoen_Cavez-of-Phear-packaging_hullabaloo_README +trentm_node-dashdash,_trentm_node-dashdash_commits.csv,trentm_node-dashdash_hullabaloo_README.md +punitagrawal_libhugetlbfs.git,punitagrawal_libhugetlbfs.git_commits.csv,punitagrawal_libhugetlbfs.git_hullabaloo_README +biolab-unige_nifti2dicom.git,_biolab-unige_nifti2dicom.git_commits.csv,biolab-unige_nifti2dicom.git_hullabaloo_README +sferik_twitter,_sferik_twitter_commits.csv,sferik_twitter_hullabaloo_README +bw2_ConfigArgParse,_bw2_ConfigArgParse_commits.csv,bw2_ConfigArgParse_hullabaloo_README.md +adrienverge_PhotoCollage,_adrienverge_PhotoCollage_commits.csv,adrienverge_PhotoCollage_hullabaloo_README.md +developit_preact.git,_developit_preact.git_commits.csv,developit_preact.git_hullabaloo_README.md +rodolf0_wbar,_rodolf0_wbar_commits.csv,rodolf0_wbar_hullabaloo_README +eferdman_dehydrated-hook-ddns-tsig.git,_eferdman_dehydrated-hook-ddns-tsig.git_commits.csv,eferdman_dehydrated-hook-ddns-tsig.git_hullabaloo_README.md +libsndfile_libsamplerate,_libsndfile_libsamplerate_commits.csv,libsndfile_libsamplerate_hullabaloo_README +sporkmonger_uuidtools,_sporkmonger_uuidtools_commits.csv,sporkmonger_uuidtools_hullabaloo_README +Sheeprider_BitBucket-api,_Sheeprider_BitBucket-api_commits.csv,Sheeprider_BitBucket-api_hullabaloo_README.md +JPEWdev_icecream-sundae,_JPEWdev_icecream-sundae_commits.csv,JPEWdev_icecream-sundae_hullabaloo_README.md +matrix-org_synapse.git,_matrix-org_synapse.git_commits.csv,matrix-org_synapse.git_hullabaloo_README.rst +common-workflow-language_schema_salad,_common-workflow-language_schema_salad_commits.csv,common-workflow-language_schema_salad_hullabaloo_README.md +plasma_kdeplasma-addons.git,plasma_kdeplasma-addons.git_commits.csv,plasma_kdeplasma-addons.git_hullabaloo_README +trezor_python-mnemonic,_trezor_python-mnemonic_commits.csv,trezor_python-mnemonic_hullabaloo_README +savonet_ocaml-gstreamer.git,_savonet_ocaml-gstreamer.git_commits.csv,savonet_ocaml-gstreamer.git_hullabaloo_README +pgq_pgqd,_pgq_pgqd_commits.csv,pgq_pgqd_hullabaloo_README.rst +eproxus_meck.git,_eproxus_meck.git_commits.csv,eproxus_meck.git_hullabaloo_README.md +jbenden_mod_clamav.git,_jbenden_mod_clamav.git_commits.csv,jbenden_mod_clamav.git_hullabaloo_README.txt +ironcamel_AtomBus.git,_ironcamel_AtomBus.git_commits.csv,ironcamel_AtomBus.git_hullabaloo_README +williamh_pybugz,_williamh_pybugz_commits.csv,williamh_pybugz_hullabaloo_README +kumina_postfix_exporter,_kumina_postfix_exporter_commits.csv,kumina_postfix_exporter_hullabaloo_README.md +ubuntu-mate_mate-window-applets.git,_ubuntu-mate_mate-window-applets.git_commits.csv,ubuntu-mate_mate-window-applets.git_hullabaloo_README.md +paniagua-gustavo_debian-snetz,paniagua-gustavo_debian-snetz_commits.csv,paniagua-gustavo_debian-snetz_hullabaloo_README.md +puppetlabs_puppetlabs-apache,_puppetlabs_puppetlabs-apache_commits.csv,puppetlabs_puppetlabs-apache_hullabaloo_README.md +viraptor_phply.git,_viraptor_phply.git_commits.csv,viraptor_phply.git_hullabaloo_README.md +jrowen_rhandsontable.git,_jrowen_rhandsontable.git_commits.csv,jrowen_rhandsontable.git_hullabaloo_README.md +ClusterLabs_libqb,_ClusterLabs_libqb_commits.csv,ClusterLabs_libqb_hullabaloo_README +alfred.git,alfred.git_commits.csv,alfred.git_hullabaloo_README +tonioo_sievelib,_tonioo_sievelib_commits.csv,tonioo_sievelib_hullabaloo_README +lxqt_lxqt-notificationd.git,_lxqt_lxqt-notificationd.git_commits.csv,lxqt_lxqt-notificationd.git_hullabaloo_README.md +sqlalchemyorg_changelog,_sqlalchemyorg_changelog_commits.csv,sqlalchemyorg_changelog_hullabaloo_README.rst +jazzband_django-recurrence,_jazzband_django-recurrence_commits.csv,jazzband_django-recurrence_hullabaloo_README +Backblaze_B2_Command_Line_Tool,_Backblaze_B2_Command_Line_Tool_commits.csv,Backblaze_B2_Command_Line_Tool_hullabaloo_README.md +vsajip_python-gnupg.git,_vsajip_python-gnupg.git_commits.csv,vsajip_python-gnupg.git_hullabaloo_README.rst +jgoerzen_zfSnap,jgoerzen_zfSnap_commits.csv,jgoerzen_zfSnap_hullabaloo_README +dirkvdb_ffmpegthumbnailer,_dirkvdb_ffmpegthumbnailer_commits.csv,dirkvdb_ffmpegthumbnailer_hullabaloo_README +brianmario_mysql2,_brianmario_mysql2_commits.csv,brianmario_mysql2_hullabaloo_README.rdoc +ruby-amqp_amqp.git,_ruby-amqp_amqp.git_commits.csv,ruby-amqp_amqp.git_hullabaloo_README +broukema_inhomog,broukema_inhomog_commits.csv,broukema_inhomog_hullabaloo_README +kigo.git,kigo.git_commits.csv,kigo.git_hullabaloo_README +Fantomas42_django-xmlrpc,_Fantomas42_django-xmlrpc_commits.csv,Fantomas42_django-xmlrpc_hullabaloo_README.rst +perigrin_xml-sax-machines.git,_perigrin_xml-sax-machines.git_commits.csv,perigrin_xml-sax-machines.git_hullabaloo_README +pylti_lti.git,_pylti_lti.git_commits.csv,pylti_lti.git_hullabaloo_README.md +tildeslash_monit,tildeslash_monit_commits.csv,tildeslash_monit_hullabaloo_README.md +topfunky_gruff,_topfunky_gruff_commits.csv,topfunky_gruff_hullabaloo_README.txt +xach_buildapp,_xach_buildapp_commits.csv,xach_buildapp_hullabaloo_README +jarun_nnn.git,_jarun_nnn.git_commits.csv,jarun_nnn.git_hullabaloo_README.md +collectiveidea_json_spec,_collectiveidea_json_spec_commits.csv,collectiveidea_json_spec_hullabaloo_README.md +takaswie_hinawa-utils.git,_takaswie_hinawa-utils.git_commits.csv,takaswie_hinawa-utils.git_hullabaloo_README +y-256_libdivsufsort.git,_y-256_libdivsufsort.git_commits.csv,y-256_libdivsufsort.git_hullabaloo_README +xflr6_graphviz,_xflr6_graphviz_commits.csv,xflr6_graphviz_hullabaloo_README.rst +mvz_ruby-gir-ffi,_mvz_ruby-gir-ffi_commits.csv,mvz_ruby-gir-ffi_hullabaloo_README.rdoc +jaraco_zipp,_jaraco_zipp_commits.csv,jaraco_zipp_hullabaloo_README.rst +mathiasbynens_unicode-property-aliases,_mathiasbynens_unicode-property-aliases_commits.csv,mathiasbynens_unicode-property-aliases_hullabaloo_README.md +expressjs_media-typer.git,_expressjs_media-typer.git_commits.csv,expressjs_media-typer.git_hullabaloo_README.md +SciTools_cartopy.git,_SciTools_cartopy.git_commits.csv,SciTools_cartopy.git_hullabaloo_README.md +pyFFTW_pyFFTW,_pyFFTW_pyFFTW_commits.csv,pyFFTW_pyFFTW_hullabaloo_README +brobin_drf-generators,_brobin_drf-generators_commits.csv,brobin_drf-generators_hullabaloo_README.rst +libyal_libvhdi.git,_libyal_libvhdi.git_commits.csv,libyal_libvhdi.git_hullabaloo_README +pear_Net_SMTP.git,_pear_Net_SMTP.git_commits.csv,pear_Net_SMTP.git_hullabaloo_README.rst +GNOME_gupnp.git,GNOME_gupnp.git_commits.csv,GNOME_gupnp.git_hullabaloo_README +isaacs_pseudomap,_isaacs_pseudomap_commits.csv,isaacs_pseudomap_hullabaloo_README.md +bitprophet_releases.git,_bitprophet_releases.git_commits.csv,bitprophet_releases.git_hullabaloo_README.rst +gawel_pyquery.git,_gawel_pyquery.git_commits.csv,gawel_pyquery.git_hullabaloo_README.txt +USCiLab_cereal,_USCiLab_cereal_commits.csv,USCiLab_cereal_hullabaloo_README.md +bbidulock_wmpinboard.git,_bbidulock_wmpinboard.git_commits.csv,bbidulock_wmpinboard.git_hullabaloo_README +theory_pgtap,_theory_pgtap_commits.csv,theory_pgtap_hullabaloo_README.pgtap +Eqonomize_eqonomize.git,_Eqonomize_eqonomize.git_commits.csv,Eqonomize_eqonomize.git_hullabaloo_README.md +urweb_debian-urweb,urweb_debian-urweb_commits.csv,urweb_debian-urweb_hullabaloo_README +chocolate-doom_chocolate-doom.git,_chocolate-doom_chocolate-doom.git_commits.csv,chocolate-doom_chocolate-doom.git_hullabaloo_README +mrkkrp_zzz-to-char.git,_mrkkrp_zzz-to-char.git_commits.csv,mrkkrp_zzz-to-char.git_hullabaloo_README.md +fcitx_fcitx5-configtool.git,_fcitx_fcitx5-configtool.git_commits.csv,fcitx_fcitx5-configtool.git_hullabaloo_README +georgd_EB-Garamond.git,_georgd_EB-Garamond.git_commits.csv,georgd_EB-Garamond.git_hullabaloo_README +CLD2Owners_cld2,_CLD2Owners_cld2_commits.csv,CLD2Owners_cld2_hullabaloo_README.md +GNOME_libgudev,GNOME_libgudev_commits.csv,GNOME_libgudev_hullabaloo_README +wooster_biplist_issues_new,wooster_biplist_issues_new_commits.csv,wooster_biplist_issues_new_hullabaloo_README.md +pytest-dev_pytest-mock.git,_pytest-dev_pytest-mock.git_commits.csv,pytest-dev_pytest-mock.git_hullabaloo_README.md +zopefoundation_zope.event,_zopefoundation_zope.event_commits.csv,zopefoundation_zope.event_hullabaloo_README.txt +spacetelescope_imexam,_spacetelescope_imexam_commits.csv,spacetelescope_imexam_hullabaloo_README.md +knavalbattle.git,knavalbattle.git_commits.csv,knavalbattle.git_hullabaloo_README +wagtail_django-modelcluster.git,_wagtail_django-modelcluster.git_commits.csv,wagtail_django-modelcluster.git_hullabaloo_README.md +dgedit.git,dgedit.git_commits.csv,dgedit.git_hullabaloo_README +python-babel_flask-babel,_python-babel_flask-babel_commits.csv,python-babel_flask-babel_hullabaloo_README +OpenShot_libopenshot-audio.git,_OpenShot_libopenshot-audio.git_commits.csv,OpenShot_libopenshot-audio.git_hullabaloo_README +sfcgal_SFCGAL,sfcgal_SFCGAL_commits.csv,sfcgal_SFCGAL_hullabaloo_README.md +ekenberg_quotatool,_ekenberg_quotatool_commits.csv,ekenberg_quotatool_hullabaloo_README +achillean_shodan-python,_achillean_shodan-python_commits.csv,achillean_shodan-python_hullabaloo_README +nesquena_rabl,_nesquena_rabl_commits.csv,nesquena_rabl_hullabaloo_README.md +pytest-dev_pytest-cov.git,_pytest-dev_pytest-cov.git_commits.csv,pytest-dev_pytest-cov.git_hullabaloo_README.txt +mattcg_starttls,_mattcg_starttls_commits.csv,mattcg_starttls_hullabaloo_README.md +babelouest_glewlwyd,_babelouest_glewlwyd_commits.csv,babelouest_glewlwyd_hullabaloo_README.md +AlexandrePTJ_mopidy-somafm,_AlexandrePTJ_mopidy-somafm_commits.csv,AlexandrePTJ_mopidy-somafm_hullabaloo_README.md +libyal_libesedb,_libyal_libesedb_commits.csv,libyal_libesedb_hullabaloo_README +Xfennec_progress,_Xfennec_progress_commits.csv,Xfennec_progress_hullabaloo_README.md +linuxmint_cjs.git,_linuxmint_cjs.git_commits.csv,linuxmint_cjs.git_hullabaloo_README +ruby-concurrency_thread_safe,_ruby-concurrency_thread_safe_commits.csv,ruby-concurrency_thread_safe_hullabaloo_README.md +vim-voom_VOoM.git,_vim-voom_VOoM.git_commits.csv,vim-voom_VOoM.git_hullabaloo_README.txt +ovalhub_pyicu.git,_ovalhub_pyicu.git_commits.csv,ovalhub_pyicu.git_hullabaloo_README.md +sebastianbergmann_php-file-iterator,_sebastianbergmann_php-file-iterator_commits.csv,sebastianbergmann_php-file-iterator_hullabaloo_README.markdown +DavidGriffith_frotz,DavidGriffith_frotz_commits.csv,DavidGriffith_frotz_hullabaloo_README +mate-desktop_mate-control-center.git,_mate-desktop_mate-control-center.git_commits.csv,mate-desktop_mate-control-center.git_hullabaloo_README +craftyguy_networkd-dispatcher,craftyguy_networkd-dispatcher_commits.csv,craftyguy_networkd-dispatcher_hullabaloo_README.md +mati75_openbox-menu.git,mati75_openbox-menu.git_commits.csv,mati75_openbox-menu.git_hullabaloo_README.md +tweepy_tweepy.git,_tweepy_tweepy.git_commits.csv,tweepy_tweepy.git_hullabaloo_README +jgm_pandocfilters,_jgm_pandocfilters_commits.csv,jgm_pandocfilters_hullabaloo_README.md +przemoc_metastore,_przemoc_metastore_commits.csv,przemoc_metastore_hullabaloo_README +michaeljones_breathe.git,_michaeljones_breathe.git_commits.csv,michaeljones_breathe.git_hullabaloo_README.rst +GoalSmashers_clean-css.git,_GoalSmashers_clean-css.git_commits.csv,GoalSmashers_clean-css.git_hullabaloo_README.md +maxmind_libmaxminddb,_maxmind_libmaxminddb_commits.csv,maxmind_libmaxminddb_hullabaloo_README +Rup0rt_pcapfix,_Rup0rt_pcapfix_commits.csv,Rup0rt_pcapfix_hullabaloo_README +r_integration_uprightdiff.git,r_integration_uprightdiff.git_commits.csv,r_integration_uprightdiff.git_hullabaloo_README.md +KhronosGroup_OpenCL-Headers,_KhronosGroup_OpenCL-Headers_commits.csv,KhronosGroup_OpenCL-Headers_hullabaloo_README.md +mapbox_leaflet-image,_mapbox_leaflet-image_commits.csv,mapbox_leaflet-image_hullabaloo_README.md +httpie_httpie,_httpie_httpie_commits.csv,httpie_httpie_hullabaloo_README.md +glyph_Automat,_glyph_Automat_commits.csv,glyph_Automat_hullabaloo_README.md +cjwatson_binfmt-support.git,cjwatson_binfmt-support.git_commits.csv,cjwatson_binfmt-support.git_hullabaloo_README.Debian +coldsource_evqueue-core,coldsource_evqueue-core_commits.csv,coldsource_evqueue-core_hullabaloo_README.md +bit-team_backintime,_bit-team_backintime_commits.csv,bit-team_backintime_hullabaloo_README +gruns_icecream.git,_gruns_icecream.git_commits.csv,gruns_icecream.git_hullabaloo_README.md +mapserver_tinyows.git,_mapserver_tinyows.git_commits.csv,mapserver_tinyows.git_hullabaloo_README +openstack_swift-bench.git,_openstack_swift-bench.git_commits.csv,openstack_swift-bench.git_hullabaloo_README.rst +pixelb_crudini,_pixelb_crudini_commits.csv,pixelb_crudini_hullabaloo_README +mate-desktop_mate-netbook.git,_mate-desktop_mate-netbook.git_commits.csv,mate-desktop_mate-netbook.git_hullabaloo_README +kodi-pvr_pvr.njoy.git,_kodi-pvr_pvr.njoy.git_commits.csv,kodi-pvr_pvr.njoy.git_hullabaloo_README.md +pd-externals_ggee,_pd-externals_ggee_commits.csv,pd-externals_ggee_hullabaloo_README.ggext +beancount_ledger2beancount,_beancount_ledger2beancount_commits.csv,beancount_ledger2beancount_hullabaloo_README.md +festvox_flite.git,_festvox_flite.git_commits.csv,festvox_flite.git_hullabaloo_README.md +howardabrams_node-mocks-http,_howardabrams_node-mocks-http_commits.csv,howardabrams_node-mocks-http_hullabaloo_README.md +glenfant_stopit,_glenfant_stopit_commits.csv,glenfant_stopit_hullabaloo_README.rst +mogaal_editra,mogaal_editra_commits.csv,mogaal_editra_hullabaloo_README +cokelaer_easydev.git,_cokelaer_easydev.git_commits.csv,cokelaer_easydev.git_hullabaloo_README.txt +sigmavirus24_betamax,_sigmavirus24_betamax_commits.csv,sigmavirus24_betamax_hullabaloo_README.rst +yrro_command-t,yrro_command-t_commits.csv,yrro_command-t_hullabaloo_README.txt +bobtfish_directory-scratch.git,_bobtfish_directory-scratch.git_commits.csv,bobtfish_directory-scratch.git_hullabaloo_README +zaach_jison,_zaach_jison_commits.csv,zaach_jison_hullabaloo_README.md +Genymobile_scrcpy,_Genymobile_scrcpy_commits.csv,Genymobile_scrcpy_hullabaloo_README.md +lilydjwg_pssh.git,_lilydjwg_pssh.git_commits.csv,lilydjwg_pssh.git_hullabaloo_README +shimmerproject_Bluebird,_shimmerproject_Bluebird_commits.csv,shimmerproject_Bluebird_hullabaloo_README +NetworkConfiguration_dhcpcd.git,_NetworkConfiguration_dhcpcd.git_commits.csv,NetworkConfiguration_dhcpcd.git_hullabaloo_README +ubuntu_gnome-shell-extension-appindicator,_ubuntu_gnome-shell-extension-appindicator_commits.csv,ubuntu_gnome-shell-extension-appindicator_hullabaloo_README.md +crosswire-bible-society_strongsgreek,crosswire-bible-society_strongsgreek_commits.csv,crosswire-bible-society_strongsgreek_hullabaloo_README.md +bbatsov_solarized-emacs.git,_bbatsov_solarized-emacs.git_commits.csv,bbatsov_solarized-emacs.git_hullabaloo_README +NeoRaider_fastd.git,_NeoRaider_fastd.git_commits.csv,NeoRaider_fastd.git_hullabaloo_README +jakearchibald_es6-promise.git,_jakearchibald_es6-promise.git_commits.csv,jakearchibald_es6-promise.git_hullabaloo_README.md +cdent_pastescript.git,_cdent_pastescript.git_commits.csv,cdent_pastescript.git_hullabaloo_README.rst +zopefoundation_zope.interface.git,_zopefoundation_zope.interface.git_commits.csv,zopefoundation_zope.interface.git_hullabaloo_README.txt +GNOME_rygel.git,GNOME_rygel.git_commits.csv,GNOME_rygel.git_hullabaloo_README +rbenv_ruby-build.git,_rbenv_ruby-build.git_commits.csv,rbenv_ruby-build.git_hullabaloo_README.md +qix-_node-error-ex.git,_qix-_node-error-ex.git_commits.csv,qix-_node-error-ex.git_hullabaloo_README.md +bobtfish_text-multimarkdown.git,_bobtfish_text-multimarkdown.git_commits.csv,bobtfish_text-multimarkdown.git_hullabaloo_README +mishoo_UglifyJS2,_mishoo_UglifyJS2_commits.csv,mishoo_UglifyJS2_hullabaloo_README.md +phar-io_manifest.git,_phar-io_manifest.git_commits.csv,phar-io_manifest.git_hullabaloo_README.md +Pylons_hupper,_Pylons_hupper_commits.csv,Pylons_hupper_hullabaloo_README.rst +GNOME_simple-scan.git,GNOME_simple-scan.git_commits.csv,GNOME_simple-scan.git_hullabaloo_README +abishekvashok_cmatrix.git,_abishekvashok_cmatrix.git_commits.csv,abishekvashok_cmatrix.git_hullabaloo_README.md +jonashaag_klaus,_jonashaag_klaus_commits.csv,jonashaag_klaus_hullabaloo_README.rst +lincolnloop_python-qrcode.git,_lincolnloop_python-qrcode.git_commits.csv,lincolnloop_python-qrcode.git_hullabaloo_README.rst +lloyd_JSONSelect,_lloyd_JSONSelect_commits.csv,lloyd_JSONSelect_hullabaloo_README.md +django-extensions_django-extensions,_django-extensions_django-extensions_commits.csv,django-extensions_django-extensions_hullabaloo_README.rst +TurboGit_hubicfuse,_TurboGit_hubicfuse_commits.csv,TurboGit_hubicfuse_hullabaloo_README +bzed_debian-ksmtuned,bzed_debian-ksmtuned_commits.csv,bzed_debian-ksmtuned_hullabaloo_README.md +Castaglia_proftpd-mod_tar.git,_Castaglia_proftpd-mod_tar.git_commits.csv,Castaglia_proftpd-mod_tar.git_hullabaloo_README +explosion_thinc.git,_explosion_thinc.git_commits.csv,explosion_thinc.git_hullabaloo_README.rst +patrys_httmock,_patrys_httmock_commits.csv,patrys_httmock_hullabaloo_README.md +swh_lv2,_swh_lv2_commits.csv,swh_lv2_hullabaloo_README +mati75_gxkb.git,mati75_gxkb.git_commits.csv,mati75_gxkb.git_hullabaloo_README.source +GNOME_gnome-characters.git,GNOME_gnome-characters.git_commits.csv,GNOME_gnome-characters.git_hullabaloo_README +GeeXboX_libnfo,_GeeXboX_libnfo_commits.csv,GeeXboX_libnfo_hullabaloo_README +madsen_p5-Palm,_madsen_p5-Palm_commits.csv,madsen_p5-Palm_hullabaloo_README +GNOME_grilo,GNOME_grilo_commits.csv,GNOME_grilo_hullabaloo_README +alex_rply,_alex_rply_commits.csv,alex_rply_hullabaloo_README.rst +P403n1x87_austin,P403n1x87_austin_commits.csv,P403n1x87_austin_hullabaloo_README.md +etingof_pyasn1,_etingof_pyasn1_commits.csv,etingof_pyasn1_hullabaloo_README.txt +df7cb_pg_filedump.git,_df7cb_pg_filedump.git_commits.csv,df7cb_pg_filedump.git_hullabaloo_filedump +kjetilk_p5-lwp-useragent-chicaching.git,_kjetilk_p5-lwp-useragent-chicaching.git_commits.csv,kjetilk_p5-lwp-useragent-chicaching.git_hullabaloo_README.pod +OpenTTD_OpenMSX.git,_OpenTTD_OpenMSX.git_commits.csv,OpenTTD_OpenMSX.git_hullabaloo_README.md +lxde_lxinput.git,_lxde_lxinput.git_commits.csv,lxde_lxinput.git_hullabaloo_README +vimalloc_flask-jwt-simple.git,_vimalloc_flask-jwt-simple.git_commits.csv,vimalloc_flask-jwt-simple.git_hullabaloo_README.md +mcmtroffaes_pathlib2.git,_mcmtroffaes_pathlib2.git_commits.csv,mcmtroffaes_pathlib2.git_hullabaloo_README.txt +jviereck_regjsparser.git,_jviereck_regjsparser.git_commits.csv,jviereck_regjsparser.git_hullabaloo_README.md +twaddington_django-gravatar,_twaddington_django-gravatar_commits.csv,twaddington_django-gravatar_hullabaloo_README +lukas2511_dehydrated,_lukas2511_dehydrated_commits.csv,lukas2511_dehydrated_hullabaloo_README.md +jammus_lastfm-node,_jammus_lastfm-node_commits.csv,jammus_lastfm-node_hullabaloo_README.md +Unidata_netcdf4-python,_Unidata_netcdf4-python_commits.csv,Unidata_netcdf4-python_hullabaloo_README +gnuradio_volk,_gnuradio_volk_commits.csv,gnuradio_volk_hullabaloo_README +Python-Markdown_markdown,_Python-Markdown_markdown_commits.csv,Python-Markdown_markdown_hullabaloo_README.txt +sidekiq-cron_sidekiq-cron,_sidekiq-cron_sidekiq-cron_commits.csv,sidekiq-cron_sidekiq-cron_hullabaloo_README.rdoc +zmartzone_cjose.git,_zmartzone_cjose.git_commits.csv,zmartzone_cjose.git_hullabaloo_README.md +AmatCoder_mednaffe,_AmatCoder_mednaffe_commits.csv,AmatCoder_mednaffe_hullabaloo_README +klen_pylama,_klen_pylama_commits.csv,klen_pylama_hullabaloo_README.md +liberfa_erfa,_liberfa_erfa_commits.csv,liberfa_erfa_hullabaloo_README.rst +tpm2-software_tpm2-pkcs11.git,_tpm2-software_tpm2-pkcs11.git_commits.csv,tpm2-software_tpm2-pkcs11.git_hullabaloo_README.md +GNOME_baobab.git,GNOME_baobab.git_commits.csv,GNOME_baobab.git_hullabaloo_README +chorny_Switch.git,_chorny_Switch.git_commits.csv,chorny_Switch.git_hullabaloo_README +tomszilagyi_tap-plugins.git,_tomszilagyi_tap-plugins.git_commits.csv,tomszilagyi_tap-plugins.git_hullabaloo_README.md +bobek_gtkguitune,bobek_gtkguitune_commits.csv,bobek_gtkguitune_hullabaloo_README +jnwatson_py-lmdb,_jnwatson_py-lmdb_commits.csv,jnwatson_py-lmdb_hullabaloo_README.rst +jquast_wcwidth,_jquast_wcwidth_commits.csv,jquast_wcwidth_hullabaloo_README.rst +dharple_detox,_dharple_detox_commits.csv,dharple_detox_hullabaloo_README +citusdata_postgresql-hll.git,_citusdata_postgresql-hll.git_commits.csv,citusdata_postgresql-hll.git_hullabaloo_README.markdown +mati75_spacefm.git,mati75_spacefm.git_commits.csv,mati75_spacefm.git_hullabaloo_README +NVIDIA_egl-wayland.git,_NVIDIA_egl-wayland.git_commits.csv,NVIDIA_egl-wayland.git_hullabaloo_README.md +0compute_yanc,_0compute_yanc_commits.csv,0compute_yanc_hullabaloo_README.rst +rfinnie_robotfindskitten-pkg-debian,rfinnie_robotfindskitten-pkg-debian_commits.csv,rfinnie_robotfindskitten-pkg-debian_hullabaloo_README.Debian +nucleic_kiwi,_nucleic_kiwi_commits.csv,nucleic_kiwi_hullabaloo_README.rst +jaraco_keyrings.alt,_jaraco_keyrings.alt_commits.csv,jaraco_keyrings.alt_hullabaloo_README.rst +webrtchacks_adapter,_webrtchacks_adapter_commits.csv,webrtchacks_adapter_hullabaloo_README.md +libyal_libfsapfs,_libyal_libfsapfs_commits.csv,libyal_libfsapfs_hullabaloo_README +python-bugzilla_python-bugzilla,_python-bugzilla_python-bugzilla_commits.csv,python-bugzilla_python-bugzilla_hullabaloo_README +chrender_libfizmo,chrender_libfizmo_commits.csv,chrender_libfizmo_hullabaloo_README.txt +redis-store_redis-actionpack,_redis-store_redis-actionpack_commits.csv,redis-store_redis-actionpack_hullabaloo_README.md +markdown-it_markdown-it,_markdown-it_markdown-it_commits.csv,markdown-it_markdown-it_hullabaloo_README.md +jazzband_django-debug-toolbar.git,_jazzband_django-debug-toolbar.git_commits.csv,jazzband_django-debug-toolbar.git_hullabaloo_README.rst +tkellen_node-v8flags.git,_tkellen_node-v8flags.git_commits.csv,tkellen_node-v8flags.git_hullabaloo_README.md +mate-desktop_mate-icon-theme-faenza.git,_mate-desktop_mate-icon-theme-faenza.git_commits.csv,mate-desktop_mate-icon-theme-faenza.git_hullabaloo_README +bear_parsedatetime,_bear_parsedatetime_commits.csv,bear_parsedatetime_hullabaloo_README.md +unobe_perl-wfa.git,_unobe_perl-wfa.git_commits.csv,unobe_perl-wfa.git_hullabaloo_README +GNOME_gcab,GNOME_gcab_commits.csv,GNOME_gcab_hullabaloo_README.md +darold_pgFormatter.git,_darold_pgFormatter.git_commits.csv,darold_pgFormatter.git_hullabaloo_README +cocagne_pysrp,_cocagne_pysrp_commits.csv,cocagne_pysrp_hullabaloo_README.txt +rasterio_rasterio.git,_rasterio_rasterio.git_commits.csv,rasterio_rasterio.git_hullabaloo_README.md +Getty_p5-moox-cmd,_Getty_p5-moox-cmd_commits.csv,Getty_p5-moox-cmd_hullabaloo_README.md +pinterface_cl-ftp,pinterface_cl-ftp_commits.csv,pinterface_cl-ftp_hullabaloo_README.org +gkz_type-check.git,_gkz_type-check.git_commits.csv,gkz_type-check.git_hullabaloo_README.md +curvedns_curvedns.git,_curvedns_curvedns.git_commits.csv,curvedns_curvedns.git_hullabaloo_README +epinna_weevely3.git,_epinna_weevely3.git_commits.csv,epinna_weevely3.git_hullabaloo_README.md +mate-desktop_eom.git,_mate-desktop_eom.git_commits.csv,mate-desktop_eom.git_hullabaloo_README +faye_websocket-driver-ruby,_faye_websocket-driver-ruby_commits.csv,faye_websocket-driver-ruby_hullabaloo_README.rdoc +mapbox_variant.git,_mapbox_variant.git_commits.csv,mapbox_variant.git_hullabaloo_README.md +r-dbi_RSQLite.git,_r-dbi_RSQLite.git_commits.csv,r-dbi_RSQLite.git_hullabaloo_README +voxpupuli_hiera-eyaml,_voxpupuli_hiera-eyaml_commits.csv,voxpupuli_hiera-eyaml_hullabaloo_README.md +libyal_libvslvm,_libyal_libvslvm_commits.csv,libyal_libvslvm_hullabaloo_README +zyga_padme,_zyga_padme_commits.csv,zyga_padme_hullabaloo_README.rst +mate-desktop_mate-backgrounds.git,_mate-desktop_mate-backgrounds.git_commits.csv,mate-desktop_mate-backgrounds.git_hullabaloo_README +igaw_jitterdebugger.git,_igaw_jitterdebugger.git_commits.csv,igaw_jitterdebugger.git_hullabaloo_README +GNOME_caribou.git,GNOME_caribou.git_commits.csv,GNOME_caribou.git_hullabaloo_README +webpy_webpy.git,_webpy_webpy.git_commits.csv,webpy_webpy.git_hullabaloo_README.tests +ganglia_ganglia-web,_ganglia_ganglia-web_commits.csv,ganglia_ganglia-web_hullabaloo_README +bestpractical_gnupg-interface.git,_bestpractical_gnupg-interface.git_commits.csv,bestpractical_gnupg-interface.git_hullabaloo_README +nandoflorestan_nine,_nandoflorestan_nine_commits.csv,nandoflorestan_nine_hullabaloo_README.rst +vouillon_coinst,_vouillon_coinst_commits.csv,vouillon_coinst_hullabaloo_README.md +roehling_postsrsd.git,_roehling_postsrsd.git_commits.csv,roehling_postsrsd.git_hullabaloo_README.rst +zloirock_core-js.git,_zloirock_core-js.git_commits.csv,zloirock_core-js.git_hullabaloo_README.md +dropbox_dropbox-sdk-python,_dropbox_dropbox-sdk-python_commits.csv,dropbox_dropbox-sdk-python_hullabaloo_README.rst +pycontribs_jira,_pycontribs_jira_commits.csv,pycontribs_jira_hullabaloo_README +pratzlaff_Astro-FITS-CFITSIO,_pratzlaff_Astro-FITS-CFITSIO_commits.csv,pratzlaff_Astro-FITS-CFITSIO_hullabaloo_README +state-machines_state_machines,_state-machines_state_machines_commits.csv,state-machines_state_machines-activerecord_hullabaloo_README.md +GauiStori_PyQwt3D,_GauiStori_PyQwt3D_commits.csv,GauiStori_PyQwt3D_hullabaloo_README.md +nichtich_RDF-aREF.git,_nichtich_RDF-aREF.git_commits.csv,nichtich_RDF-aREF.git_hullabaloo_README.md +scrapinghub_dateparser,_scrapinghub_dateparser_commits.csv,scrapinghub_dateparser_hullabaloo_README.md +aio-libs_async_timeout.git,_aio-libs_async_timeout.git_commits.csv,aio-libs_async_timeout.git_hullabaloo_README.md +johnpaulett_python-hl7.git,_johnpaulett_python-hl7.git_commits.csv,johnpaulett_python-hl7.git_hullabaloo_README.rst +scrapy_cssselect,_scrapy_cssselect_commits.csv,scrapy_cssselect_hullabaloo_README +fabiangreffrath_crispy-doom.git,_fabiangreffrath_crispy-doom.git_commits.csv,fabiangreffrath_crispy-doom.git_hullabaloo_README +ubuntu-mate_mate-menu.git,_ubuntu-mate_mate-menu.git_commits.csv,ubuntu-mate_mate-menu.git_hullabaloo_README.md +gjwgit_wajig,gjwgit_wajig_commits.csv,gjwgit_wajig_hullabaloo_README +JJ_perl-mp3-info.git,_JJ_perl-mp3-info.git_commits.csv,JJ_perl-mp3-info.git_hullabaloo_README +gstreamer_orc,gstreamer_orc_commits.csv,gstreamer_orc_hullabaloo_README +nodejs_node-gyp.git,_nodejs_node-gyp.git_commits.csv,nodejs_node-gyp.git_hullabaloo_README.md +urwid_urwid.git,_urwid_urwid.git_commits.csv,urwid_urwid.git_hullabaloo_README +lkundrak_perl-Authen-Captcha.git,_lkundrak_perl-Authen-Captcha.git_commits.csv,lkundrak_perl-Authen-Captcha.git_hullabaloo_README +eulerto_wal2json.git,_eulerto_wal2json.git_commits.csv,eulerto_wal2json.git_hullabaloo_README.md +kornelski_pngquant.git,_kornelski_pngquant.git_commits.csv,kornelski_pngquant.git_hullabaloo_README +Iotic-Labs_py-ubjson,_Iotic-Labs_py-ubjson_commits.csv,Iotic-Labs_py-ubjson_hullabaloo_README.md +puppetlabs_puppetlabs-postgresql.git,_puppetlabs_puppetlabs-postgresql.git_commits.csv,puppetlabs_puppetlabs-postgresql.git_hullabaloo_README.md +mankyd_htmlmin,_mankyd_htmlmin_commits.csv,mankyd_htmlmin_hullabaloo_README.md +gnosek_fcgiwrap,_gnosek_fcgiwrap_commits.csv,gnosek_fcgiwrap_hullabaloo_README.rst +voc_voctomix.git,_voc_voctomix.git_commits.csv,voc_voctomix.git_hullabaloo_README.md +GNOME_json-glib.git,GNOME_json-glib.git_commits.csv,GNOME_json-glib.git_hullabaloo_README +daqana_tikzDevice.git,_daqana_tikzDevice.git_commits.csv,daqana_tikzDevice.git_hullabaloo_README +autokey_autokey.git,_autokey_autokey.git_commits.csv,autokey_autokey.git_hullabaloo_README +tartley_colorama,_tartley_colorama_commits.csv,tartley_colorama_hullabaloo_README.txt +ganglia_jmxetric,ganglia_jmxetric_commits.csv,ganglia_jmxetric_hullabaloo_README +libratbag_libratbag.git,_libratbag_libratbag.git_commits.csv,libratbag_libratbag.git_hullabaloo_README.md +cmus_cmus,_cmus_cmus_commits.csv,cmus_cmus_hullabaloo_README +tkem_mopidy-podcast-itunes,_tkem_mopidy-podcast-itunes_commits.csv,tkem_mopidy-podcast-itunes_hullabaloo_README.rst +ppentchev_id3,ppentchev_id3_commits.csv,ppentchev_id3_hullabaloo_README +r-lib_httr.git,_r-lib_httr.git_commits.csv,r-lib_httr.git_hullabaloo_README.md +GNOME_gnome-clocks.git,GNOME_gnome-clocks.git_commits.csv,GNOME_gnome-clocks.git_hullabaloo_README +tails_onioncircuits,tails_onioncircuits_commits.csv,tails_onioncircuits_hullabaloo_README +sanger-pathogens_ariba,_sanger-pathogens_ariba_commits.csv,sanger-pathogens_ariba_hullabaloo_README.md +Leaflet_Leaflet.markercluster,_Leaflet_Leaflet.markercluster_commits.csv,Leaflet_Leaflet.markercluster_hullabaloo_README.md +miguelgrinberg_python-engineio.git,_miguelgrinberg_python-engineio.git_commits.csv,miguelgrinberg_python-engineio.git_hullabaloo_README.md +weiss_nsca-ng.git,_weiss_nsca-ng.git_commits.csv,weiss_nsca-ng.git_hullabaloo_README +Changaco_setuptools_scm_git_archive,_Changaco_setuptools_scm_git_archive_commits.csv,Changaco_setuptools_scm_git_archive_hullabaloo_README.rst +tkem_mopidy-internetarchive,_tkem_mopidy-internetarchive_commits.csv,tkem_mopidy-internetarchive_hullabaloo_README.rst +bokmann_font-awesome-rails,_bokmann_font-awesome-rails_commits.csv,bokmann_font-awesome-rails_hullabaloo_README.md +osmcode_libosmium.git,_osmcode_libosmium.git_commits.csv,osmcode_libosmium.git_hullabaloo_README.md +grantjenks_python-sortedcollections,_grantjenks_python-sortedcollections_commits.csv,grantjenks_python-sortedcollections_hullabaloo_README.rst +sudipm-mukherjee_trace-cmd.git,sudipm-mukherjee_trace-cmd.git_commits.csv,sudipm-mukherjee_trace-cmd.git_hullabaloo_README +jlapeyre_PDL-IO-Matlab.git,_jlapeyre_PDL-IO-Matlab.git_commits.csv,jlapeyre_PDL-IO-Matlab.git_hullabaloo_README +resurrecting-open-source-projects_dcfldd,_resurrecting-open-source-projects_dcfldd_commits.csv,resurrecting-open-source-projects_dcfldd_hullabaloo_README +shumatech_BOSSA.git,_shumatech_BOSSA.git_commits.csv,shumatech_BOSSA.git_hullabaloo_README +pklausler_aoeui.git,_pklausler_aoeui.git_commits.csv,pklausler_aoeui.git_hullabaloo_README +coringao_osmose-emulator,coringao_osmose-emulator_commits.csv,coringao_osmose-emulator_hullabaloo_README.md +gosa-project_gosa-plugins-mailaddress,_gosa-project_gosa-plugins-mailaddress_commits.csv,gosa-project_gosa-plugins-mailaddress_hullabaloo_README.gosa-compat +jazzband_django-pipeline,_jazzband_django-pipeline_commits.csv,jazzband_django-pipeline_hullabaloo_README +k0lter_pmailq,_k0lter_pmailq_commits.csv,k0lter_pmailq_hullabaloo_README +jquery_qunit.git,_jquery_qunit.git_commits.csv,jquery_qunit.git_hullabaloo_README.md +gpodder_mygpoclient,_gpodder_mygpoclient_commits.csv,gpodder_mygpoclient_hullabaloo_README +LEW21_pydbus,_LEW21_pydbus_commits.csv,LEW21_pydbus_hullabaloo_README.md +prometheus-community_bind_exporter,_prometheus-community_bind_exporter_commits.csv,prometheus-community_bind_exporter_hullabaloo_README.md +platform_system_tools_hidl,platform_system_tools_hidl_commits.csv,platform_system_tools_hidl_hullabaloo_README.md +perl-openssl_perl-crypt-openssl-pkcs10.git,_perl-openssl_perl-crypt-openssl-pkcs10.git_commits.csv,perl-openssl_perl-crypt-openssl-pkcs10.git_hullabaloo_README +r-lib_rlang.git,_r-lib_rlang.git_commits.csv,r-lib_rlang.git_hullabaloo_README.md +thlorenz_proxyquire.git,_thlorenz_proxyquire.git_commits.csv,thlorenz_proxyquire.git_hullabaloo_README.md +lxqt_lxqt-runner.git,_lxqt_lxqt-runner.git_commits.csv,lxqt_lxqt-runner.git_hullabaloo_README.md +planetfilter,planetfilter_commits.csv,planetfilter_hullabaloo_README.rst +evanw_node-source-map-support.git,_evanw_node-source-map-support.git_commits.csv,evanw_node-source-map-support.git_hullabaloo_README.md +myriadrf_gr-limesdr.git,_myriadrf_gr-limesdr.git_commits.csv,myriadrf_gr-limesdr.git_hullabaloo_README.md +shadowsocks_simple-obfs.git,_shadowsocks_simple-obfs.git_commits.csv,shadowsocks_simple-obfs.git_hullabaloo_README.md +kubrick.git,kubrick.git_commits.csv,kubrick.git_hullabaloo_README +pytroll_satpy,_pytroll_satpy_commits.csv,pytroll_satpy_hullabaloo_README +GNOME_mobile-broadband-provider-info,GNOME_mobile-broadband-provider-info_commits.csv,GNOME_mobile-broadband-provider-info_hullabaloo_README +jonathanhogg_usepackage.git,_jonathanhogg_usepackage.git_commits.csv,jonathanhogg_usepackage.git_hullabaloo_README +getsentry_responses,_getsentry_responses_commits.csv,getsentry_responses_hullabaloo_README.rst +fangfufu_httpdirfs.git,_fangfufu_httpdirfs.git_commits.csv,fangfufu_httpdirfs.git_hullabaloo_README +callaa_luola.git,_callaa_luola.git_commits.csv,callaa_luola.git_hullabaloo_README +Infinidat_munch.git,_Infinidat_munch.git_commits.csv,Infinidat_munch.git_hullabaloo_README.md +01org_isa-l.git,_01org_isa-l.git_commits.csv,01org_isa-l.git_hullabaloo_README +neilb_Text-Diff,_neilb_Text-Diff_commits.csv,neilb_Text-Diff_hullabaloo_README +venthur_python-popcon,venthur_python-popcon_commits.csv,venthur_python-popcon_hullabaloo_README.md +pr-starfighter_starfighter,_pr-starfighter_starfighter_commits.csv,pr-starfighter_starfighter_hullabaloo_README +stefanv_nvpy,stefanv_nvpy_commits.csv,stefanv_nvpy_hullabaloo_README.md +tmm1_http_parser.rb.git,_tmm1_http_parser.rb.git_commits.csv,tmm1_http_parser.rb.git_hullabaloo_README.md +npat-efault_picocom,_npat-efault_picocom_commits.csv,npat-efault_picocom_hullabaloo_README +darkk_redsocks.git,_darkk_redsocks.git_commits.csv,darkk_redsocks.git_hullabaloo_README +mozilla_django-csp.git,_mozilla_django-csp.git_commits.csv,mozilla_django-csp.git_hullabaloo_README.rst +NeuralEnsemble_lazyarray,_NeuralEnsemble_lazyarray_commits.csv,NeuralEnsemble_lazyarray_hullabaloo_README +thomasdstewart-guest_w1retap,thomasdstewart-guest_w1retap_commits.csv,thomasdstewart-guest_w1retap_hullabaloo_README +jbeder_yaml-cpp,_jbeder_yaml-cpp_commits.csv,jbeder_yaml-cpp_hullabaloo_README +janmojzis_dq.git,_janmojzis_dq.git_commits.csv,janmojzis_dq.git_hullabaloo_README.md +scravy_node-macaddress,_scravy_node-macaddress_commits.csv,scravy_node-macaddress_hullabaloo_README.md +sagemath_FlintQS,_sagemath_FlintQS_commits.csv,sagemath_FlintQS_hullabaloo_README +spin83_multi-monitors-add-on.git,_spin83_multi-monitors-add-on.git_commits.csv,spin83_multi-monitors-add-on.git_hullabaloo_README.md +magit_git-modes.git,_magit_git-modes.git_commits.csv,magit_git-modes.git_hullabaloo_README.md +torchbox_django-libsass.git,_torchbox_django-libsass.git_commits.csv,torchbox_django-libsass.git_hullabaloo_README.rst +moneta-rb_moneta,_moneta-rb_moneta_commits.csv,moneta-rb_moneta_hullabaloo_README +jarun_googler.git,_jarun_googler.git_commits.csv,jarun_googler.git_hullabaloo_README +FriendsOfPHP_proxy-manager-lts.git,_FriendsOfPHP_proxy-manager-lts.git_commits.csv,FriendsOfPHP_proxy-manager-lts.git_hullabaloo_README.md +umlaeute_v4l2loopback.git,_umlaeute_v4l2loopback.git_commits.csv,umlaeute_v4l2loopback.git_hullabaloo_README +nss_wrapper.git,nss_wrapper.git_commits.csv,nss_wrapper.git_hullabaloo_README +naelstrof_maim.git,_naelstrof_maim.git_commits.csv,naelstrof_maim.git_hullabaloo_README.md +cookiecutter_whichcraft,_cookiecutter_whichcraft_commits.csv,cookiecutter_whichcraft_hullabaloo_README.rst +leahneukirchen_bacon,_leahneukirchen_bacon_commits.csv,leahneukirchen_bacon_hullabaloo_README +powa-team_pg_qualstats,powa-team_pg_qualstats_commits.csv,powa-team_pg_qualstats_hullabaloo_README.md +hlandau_acmetool,_hlandau_acmetool_commits.csv,hlandau_acmetool_hullabaloo_README.md +clojure_tools.logging.git,_clojure_tools.logging.git_commits.csv,clojure_tools.logging.git_hullabaloo_README.md +encode_django-rest-framework,_encode_django-rest-framework_commits.csv,encode_django-rest-framework_hullabaloo_README.txt +antanasbruzas_abGate.git,_antanasbruzas_abGate.git_commits.csv,antanasbruzas_abGate.git_hullabaloo_README.md +pali_libopenaptx,_pali_libopenaptx_commits.csv,pali_libopenaptx_hullabaloo_README +lxqt_qtermwidget.git,_lxqt_qtermwidget.git_commits.csv,lxqt_qtermwidget.git_hullabaloo_README +uid_wrapper.git,uid_wrapper.git_commits.csv,uid_wrapper.git_hullabaloo_README +libyal_libsmdev,_libyal_libsmdev_commits.csv,libyal_libsmdev_hullabaloo_README +mopidy_mopidy-beets,_mopidy_mopidy-beets_commits.csv,mopidy_mopidy-beets_hullabaloo_README.rst +quantstack-debian_xtl,quantstack-debian_xtl_commits.csv,quantstack-debian_xtl_hullabaloo_README.md +matthewdeanmartin_terminaltables,_matthewdeanmartin_terminaltables_commits.csv,matthewdeanmartin_terminaltables_hullabaloo_README.md +Wolfgang-Spraul_fpgatools,Wolfgang-Spraul_fpgatools_commits.csv,Wolfgang-Spraul_fpgatools_hullabaloo_README +numpy_numpydoc,_numpy_numpydoc_commits.csv,numpy_numpydoc_hullabaloo_README.txt +namhyung_uftrace,_namhyung_uftrace_commits.csv,namhyung_uftrace_hullabaloo_README.md +FontManager_master,_FontManager_master_commits.csv,FontManager_master_hullabaloo_README +pearu_pylibtiff.git,_pearu_pylibtiff.git_commits.csv,pearu_pylibtiff.git_hullabaloo_README.txt +alphapapa_magit-todos.git,_alphapapa_magit-todos.git_commits.csv,alphapapa_magit-todos.git_hullabaloo_README.org +GNOME_NetworkManager-pptp,GNOME_NetworkManager-pptp_commits.csv,GNOME_NetworkManager-pptp_hullabaloo_README +languitar_autosuspend.git,_languitar_autosuspend.git_commits.csv,languitar_autosuspend.git_hullabaloo_README.md +mininet_mininet,_mininet_mininet_commits.csv,mininet_mininet_hullabaloo_README +nitmir_django-cas-server.git,_nitmir_django-cas-server.git_commits.csv,nitmir_django-cas-server.git_hullabaloo_README.rst +sorich87_bootstrap-tour,_sorich87_bootstrap-tour_commits.csv,sorich87_bootstrap-tour_hullabaloo_README.md +Oblomov_clinfo,_Oblomov_clinfo_commits.csv,Oblomov_clinfo_hullabaloo_README +whm_libnet-ldapapi-perl,whm_libnet-ldapapi-perl_commits.csv,whm_libnet-ldapapi-perl_hullabaloo_README +lsyncd_lsyncd,_lsyncd_lsyncd_commits.csv,lsyncd_lsyncd_hullabaloo_README +resurrecting-open-source-projects_sniffit,_resurrecting-open-source-projects_sniffit_commits.csv,resurrecting-open-source-projects_sniffit_hullabaloo_README.FIRST +gnome_gnome-shell.git,gnome_gnome-shell.git_commits.csv,gnome_gnome-shell.git_hullabaloo_README +nicolargo_glances,_nicolargo_glances_commits.csv,nicolargo_glances_hullabaloo_README +libvips_ruby-vips.git,_libvips_ruby-vips.git_commits.csv,libvips_ruby-vips.git_hullabaloo_README.md +df7cb_sdate,df7cb_sdate_commits.csv,df7cb_sdate_hullabaloo_README.fake +plasma_plasma-integration.git,plasma_plasma-integration.git_commits.csv,plasma_plasma-integration.git_hullabaloo_README.md +phillipberndt_pqiv,_phillipberndt_pqiv_commits.csv,phillipberndt_pqiv_hullabaloo_README.markdown +GNOME_pygobject,GNOME_pygobject_commits.csv,GNOME_pygobject_hullabaloo_README +savonet_ocaml-ladspa.git,_savonet_ocaml-ladspa.git_commits.csv,savonet_ocaml-ladspa.git_hullabaloo_README +ros-infrastructure_catkin_pkg.git,_ros-infrastructure_catkin_pkg.git_commits.csv,ros-infrastructure_catkin_pkg.git_hullabaloo_README.md +merces_pev,_merces_pev_commits.csv,merces_pev_hullabaloo_README.md +CarlFK_voctomix-outcasts.git,_CarlFK_voctomix-outcasts.git_commits.csv,CarlFK_voctomix-outcasts.git_hullabaloo_README.md +bgreenlee_pygtail,_bgreenlee_pygtail_commits.csv,bgreenlee_pygtail_hullabaloo_README.md +dimitri_preprepare,dimitri_preprepare_commits.csv,dimitri_preprepare_hullabaloo_README +doctrine_data-fixtures,_doctrine_data-fixtures_commits.csv,doctrine_data-fixtures_hullabaloo_README.md +miyagawa_HTTP-Server-Simple-PSGI.git,_miyagawa_HTTP-Server-Simple-PSGI.git_commits.csv,miyagawa_HTTP-Server-Simple-PSGI.git_hullabaloo_README +robint99_dock-applet.git,_robint99_dock-applet.git_commits.csv,robint99_dock-applet.git_hullabaloo_README~ +adamchainz_django-jsonfield,_adamchainz_django-jsonfield_commits.csv,adamchainz_django-jsonfield_hullabaloo_README.rst +elastic_elasticsearch-ruby,_elastic_elasticsearch-ruby_commits.csv,elastic_elasticsearch-ruby_hullabaloo_README.md +webmozart_assert,_webmozart_assert_commits.csv,webmozart_assert_hullabaloo_README.md +dell_dkms,_dell_dkms_commits.csv,dell_dkms_hullabaloo_README.dkms +jch_html-pipeline,_jch_html-pipeline_commits.csv,jch_html-pipeline_hullabaloo_README.md +miyagawa_Plack-Middleware-File-Sass.git,_miyagawa_Plack-Middleware-File-Sass.git_commits.csv,miyagawa_Plack-Middleware-File-Sass.git_hullabaloo_README +mtrojnar_osslsigncode.git,_mtrojnar_osslsigncode.git_commits.csv,mtrojnar_osslsigncode.git_hullabaloo_README +pjf_ipc-system-simple.git,_pjf_ipc-system-simple.git_commits.csv,pjf_ipc-system-simple.git_hullabaloo_README +linuxdeepin_deepin-icon-theme.git,_linuxdeepin_deepin-icon-theme.git_commits.csv,linuxdeepin_deepin-icon-theme.git_hullabaloo_README.md +idlesign_django-sitetree,_idlesign_django-sitetree_commits.csv,idlesign_django-sitetree_hullabaloo_README.md +intridea_grape-entity,_intridea_grape-entity_commits.csv,intridea_grape-entity_hullabaloo_README.markdown +stumpwm_stumpwm.git,_stumpwm_stumpwm.git_commits.csv,stumpwm_stumpwm.git_hullabaloo_README +johang_btfs,_johang_btfs_commits.csv,johang_btfs_hullabaloo_README.md +linux-rdma_perftest.git,_linux-rdma_perftest.git_commits.csv,linux-rdma_perftest.git_hullabaloo_README +dbus_dbus-glib.git,dbus_dbus-glib.git_commits.csv,dbus_dbus-glib.git_hullabaloo_README +miracle2k_django-assets.git,_miracle2k_django-assets.git_commits.csv,miracle2k_django-assets.git_hullabaloo_README.rst +davesteele_cloudprint-service,davesteele_cloudprint-service_commits.csv,davesteele_cloudprint-service_hullabaloo_README.md +Qucs_ADMS.git,_Qucs_ADMS.git_commits.csv,Qucs_ADMS.git_hullabaloo_README-NGSPICE +enthought_envisage,_enthought_envisage_commits.csv,enthought_envisage_hullabaloo_README.txt +LibreCat_Catmandu-RDF.git,_LibreCat_Catmandu-RDF.git_commits.csv,LibreCat_Catmandu-RDF.git_hullabaloo_README.md +luke-jr_libbase58,_luke-jr_libbase58_commits.csv,luke-jr_libbase58_hullabaloo_README +ckeditor_ckbuilder.git,_ckeditor_ckbuilder.git_commits.csv,ckeditor_ckbuilder.git_hullabaloo_README.md +HewlettPackard_python-ilorest-library.git,_HewlettPackard_python-ilorest-library.git_commits.csv,HewlettPackard_python-ilorest-library.git_hullabaloo_README.md +mojotx_xttitle,_mojotx_xttitle_commits.csv,mojotx_xttitle_hullabaloo_README.md +geoalchemy_geoalchemy2,_geoalchemy_geoalchemy2_commits.csv,geoalchemy_geoalchemy2_hullabaloo_README.rst +SethMMorton_natsort.git,_SethMMorton_natsort.git_commits.csv,SethMMorton_natsort.git_hullabaloo_README.md +guessit-io_guessit.git,_guessit-io_guessit.git_commits.csv,guessit-io_guessit.git_hullabaloo_README.rst +expressjs_vhost.git,_expressjs_vhost.git_commits.csv,expressjs_vhost.git_hullabaloo_README.md +trailofbits_onesixtyone,_trailofbits_onesixtyone_commits.csv,trailofbits_onesixtyone_hullabaloo_README.md +jkraemer_mail-gpg,_jkraemer_mail-gpg_commits.csv,jkraemer_mail-gpg_hullabaloo_README +elastic_elasticsearch-py.git,_elastic_elasticsearch-py.git_commits.csv,elastic_elasticsearch-py.git_hullabaloo_README +NagiosEnterprises_nrpe.git,_NagiosEnterprises_nrpe.git_commits.csv,NagiosEnterprises_nrpe.git_hullabaloo_README +pylons_plaster,_pylons_plaster_commits.csv,pylons_plaster_hullabaloo_README.rst +oath-toolkit_oath-toolkit,oath-toolkit_oath-toolkit_commits.csv,oath-toolkit_oath-toolkit_hullabaloo_README +libpinyin_ibus-libpinyin,_libpinyin_ibus-libpinyin_commits.csv,libpinyin_ibus-libpinyin_hullabaloo_README +savonet_ocaml-ffmpeg.git,_savonet_ocaml-ffmpeg.git_commits.csv,savonet_ocaml-ffmpeg.git_hullabaloo_README.md +Dav1dde_glad.git,_Dav1dde_glad.git_commits.csv,Dav1dde_glad.git_hullabaloo_README.md +amonakov_primus,_amonakov_primus_commits.csv,amonakov_primus_hullabaloo_README.md +lepture_python-livereload,_lepture_python-livereload_commits.csv,lepture_python-livereload_hullabaloo_README.rst +giampaolo_pyftpdlib,_giampaolo_pyftpdlib_commits.csv,giampaolo_pyftpdlib_hullabaloo_README +ClusterLabs_crmsh,_ClusterLabs_crmsh_commits.csv,ClusterLabs_crmsh_hullabaloo_README.regression +dkogan_numpysane,_dkogan_numpysane_commits.csv,dkogan_numpysane_hullabaloo_README.header.org +prompt-toolkit_python-prompt-toolkit,_prompt-toolkit_python-prompt-toolkit_commits.csv,prompt-toolkit_python-prompt-toolkit_hullabaloo_README.rst +honza_anosql,_honza_anosql_commits.csv,honza_anosql_hullabaloo_README.md +phunt_zktop.git,_phunt_zktop.git_commits.csv,phunt_zktop.git_hullabaloo_README.textile +bayespy_bayespy,_bayespy_bayespy_commits.csv,bayespy_bayespy_hullabaloo_README.md +spyder-ide_spyder-unittest.git,_spyder-ide_spyder-unittest.git_commits.csv,spyder-ide_spyder-unittest.git_hullabaloo_README.md +gsliepen_rsh-redone,_gsliepen_rsh-redone_commits.csv,gsliepen_rsh-redone_hullabaloo_README.md +FeralInteractive_gamemode,_FeralInteractive_gamemode_commits.csv,FeralInteractive_gamemode_hullabaloo_README.md +scanmem_scanmem.git,_scanmem_scanmem.git_commits.csv,scanmem_scanmem.git_hullabaloo_README +busyloop_lolcat.git,_busyloop_lolcat.git_commits.csv,busyloop_lolcat.git_hullabaloo_README.MD +mobile-broadband_libmbim.git,mobile-broadband_libmbim.git_commits.csv,mobile-broadband_libmbim.git_hullabaloo_README +kstateome_django-cas,_kstateome_django-cas_commits.csv,kstateome_django-cas_hullabaloo_README.md +rytilahti_python-miio.git,_rytilahti_python-miio.git_commits.csv,rytilahti_python-miio.git_hullabaloo_README.md +libpd_abl_link.git,_libpd_abl_link.git_commits.csv,libpd_abl_link.git_hullabaloo_README.md +timothycrosley_isort,_timothycrosley_isort_commits.csv,timothycrosley_isort_hullabaloo_README.md +RiotGames_buff-extensions,_RiotGames_buff-extensions_commits.csv,RiotGames_buff-extensions_hullabaloo_README.md +shimmerproject_Greybird,_shimmerproject_Greybird_commits.csv,shimmerproject_Greybird_hullabaloo_README +mate-desktop_mate-indicator-applet.git,_mate-desktop_mate-indicator-applet.git_commits.csv,mate-desktop_mate-indicator-applet.git_hullabaloo_README +PhirePhly_aprx,_PhirePhly_aprx_commits.csv,PhirePhly_aprx_hullabaloo_README +sionescu_libfixposix.git,_sionescu_libfixposix.git_commits.csv,sionescu_libfixposix.git_hullabaloo_README +coin-or_Osi,_coin-or_Osi_commits.csv,coin-or_Osi_hullabaloo_README +Yelp_elastalert.git,_Yelp_elastalert.git_commits.csv,Yelp_elastalert.git_hullabaloo_README.md +sharplispers_ironclad,_sharplispers_ironclad_commits.csv,sharplispers_ironclad_hullabaloo_README +opensdmx_rsdmx.git,_opensdmx_rsdmx.git_commits.csv,opensdmx_rsdmx.git_hullabaloo_README.md +theacodes_cmarkgfm,_theacodes_cmarkgfm_commits.csv,theacodes_cmarkgfm_hullabaloo_README.rst +jonathanwin_yagv.git,_jonathanwin_yagv.git_commits.csv,jonathanwin_yagv.git_hullabaloo_README.md +enzinia_hangouts-chat,_enzinia_hangouts-chat_commits.csv,enzinia_hangouts-chat_hullabaloo_README.md +edwardgeorge_virtualenv-clone,_edwardgeorge_virtualenv-clone_commits.csv,edwardgeorge_virtualenv-clone_hullabaloo_README +airspy_airspyhf.git,_airspy_airspyhf.git_commits.csv,airspy_airspyhf.git_hullabaloo_README.md +ronf_asyncssh,_ronf_asyncssh_commits.csv,ronf_asyncssh_hullabaloo_README +Feh_nocache,_Feh_nocache_commits.csv,Feh_nocache_hullabaloo_README.md +zopefoundation_zc.lockfile,_zopefoundation_zc.lockfile_commits.csv,zopefoundation_zc.lockfile_hullabaloo_README.txt +claviska_jquery-minicolors,_claviska_jquery-minicolors_commits.csv,claviska_jquery-minicolors_hullabaloo_README +headius_ruby-atomic,_headius_ruby-atomic_commits.csv,headius_ruby-atomic_hullabaloo_README.txt +vulndb_python-sdk,_vulndb_python-sdk_commits.csv,vulndb_python-sdk_hullabaloo_README.md +jeromerobert_hmat-oss.git,_jeromerobert_hmat-oss.git_commits.csv,jeromerobert_hmat-oss.git_hullabaloo_README.md +teopost_qmenu,teopost_qmenu_commits.csv,teopost_qmenu_hullabaloo_README.md +nahi_httpclient,_nahi_httpclient_commits.csv,nahi_httpclient_hullabaloo_README.txt +GNOME_libgnome-games-support.git,GNOME_libgnome-games-support.git_commits.csv,GNOME_libgnome-games-support.git_hullabaloo_README +Xubuntu_lightdm-gtk-greeter.git,_Xubuntu_lightdm-gtk-greeter.git_commits.csv,Xubuntu_lightdm-gtk-greeter.git_hullabaloo_README +williamh_espeakup,_williamh_espeakup_commits.csv,williamh_espeakup_hullabaloo_README +sunpy_ndcube.git,_sunpy_ndcube.git_commits.csv,sunpy_ndcube.git_hullabaloo_README.rst +astrofrog_pytest-arraydiff,_astrofrog_pytest-arraydiff_commits.csv,astrofrog_pytest-arraydiff_hullabaloo_README.md +systemd-cron_systemd-cron.git,_systemd-cron_systemd-cron.git_commits.csv,systemd-cron_systemd-cron.git_hullabaloo_README.md +gregwar_fatcat,_gregwar_fatcat_commits.csv,gregwar_fatcat_hullabaloo_README.md +celery_billiard,_celery_billiard_commits.csv,celery_billiard_hullabaloo_README +Toblerity_rtree.git,_Toblerity_rtree.git_commits.csv,Toblerity_rtree.git_hullabaloo_README.txt +intel_opencl-clang,_intel_opencl-clang_commits.csv,intel_opencl-clang_hullabaloo_README.txt +magit_magit-popup.git,_magit_magit-popup.git_commits.csv,magit_magit-popup.git_hullabaloo_README.md +ksudoku.git,ksudoku.git_commits.csv,ksudoku.git_hullabaloo_README +unshiftio_ultron,_unshiftio_ultron_commits.csv,unshiftio_ultron_hullabaloo_README.md +ImageOptim_libimagequant.git,_ImageOptim_libimagequant.git_commits.csv,ImageOptim_libimagequant.git_hullabaloo_README +stevegrubb_libcap-ng,_stevegrubb_libcap-ng_commits.csv,stevegrubb_libcap-ng_hullabaloo_README.md +ilanschnell_bitarray.git,_ilanschnell_bitarray.git_commits.csv,ilanschnell_bitarray.git_hullabaloo_README +theory_class-meta.git,_theory_class-meta.git_commits.csv,theory_class-meta.git_hullabaloo_README +earwig_mwparserfromhell.git,_earwig_mwparserfromhell.git_commits.csv,earwig_mwparserfromhell.git_hullabaloo_README.rst +jaqx0r_filtergen,jaqx0r_filtergen_commits.csv,jaqx0r_filtergen_hullabaloo_README +ianare_exif-py,_ianare_exif-py_commits.csv,ianare_exif-py_hullabaloo_README.md +jquery_jquery-mousewheel,_jquery_jquery-mousewheel_commits.csv,jquery_jquery-mousewheel_hullabaloo_README.markdown +websocket-client_websocket-client,_websocket-client_websocket-client_commits.csv,websocket-client_websocket-client_hullabaloo_README +i18next_i18next,_i18next_i18next_commits.csv,i18next_i18next_hullabaloo_README.md +halcy_Mastodon.py.git,_halcy_Mastodon.py.git_commits.csv,halcy_Mastodon.py.git_hullabaloo_README.md +free-wheeling_freewheeling,_free-wheeling_freewheeling_commits.csv,free-wheeling_freewheeling_hullabaloo_README +jclehner_nmrpflash,_jclehner_nmrpflash_commits.csv,jclehner_nmrpflash_hullabaloo_README.md +dwolfhub_zxcvbn-python.git,_dwolfhub_zxcvbn-python.git_commits.csv,dwolfhub_zxcvbn-python.git_hullabaloo_README.md +rehsack_Sys-Filesystem,_rehsack_Sys-Filesystem_commits.csv,rehsack_Sys-Filesystem_hullabaloo_README +onlyjob_writeboost.git,onlyjob_writeboost.git_commits.csv,onlyjob_writeboost.git_hullabaloo_README.md +Azure_azure-python-devtools,_Azure_azure-python-devtools_commits.csv,Azure_azure-python-devtools_hullabaloo_README.md +ubuntu-mate_mate-tweak.git,_ubuntu-mate_mate-tweak.git_commits.csv,ubuntu-mate_mate-tweak.git_hullabaloo_README.debian +tkem_mopidy-podcast.git,_tkem_mopidy-podcast.git_commits.csv,tkem_mopidy-podcast.git_hullabaloo_README.rst +kingosticks_mopidy-tunein,_kingosticks_mopidy-tunein_commits.csv,kingosticks_mopidy-tunein_hullabaloo_README.rst +aptly-dev_aptly.git,_aptly-dev_aptly.git_commits.csv,aptly-dev_aptly.git_hullabaloo_README.rst +deschler_django-modeltranslation.git,_deschler_django-modeltranslation.git_commits.csv,deschler_django-modeltranslation.git_hullabaloo_README.rst +dh4_cen64-qt-debian,dh4_cen64-qt-debian_commits.csv,dh4_cen64-qt-debian_hullabaloo_README.md +Linaro_pkg-lavapdu,Linaro_pkg-lavapdu_commits.csv,Linaro_pkg-lavapdu_hullabaloo_README +latchset_libverto,_latchset_libverto_commits.csv,latchset_libverto_hullabaloo_README +libimobiledevice_libimobiledevice.git,_libimobiledevice_libimobiledevice.git_commits.csv,libimobiledevice_libimobiledevice.git_hullabaloo_README +ukui_peony-extensions,ukui_peony-extensions_commits.csv,ukui_peony-extensions_hullabaloo_README +MITRECND_libnids.git,_MITRECND_libnids.git_commits.csv,MITRECND_libnids.git_hullabaloo_README +sampsyo_audioread.git,_sampsyo_audioread.git_commits.csv,sampsyo_audioread.git_hullabaloo_README.md +enova_pglogical_ticker.git,_enova_pglogical_ticker.git_commits.csv,enova_pglogical_ticker.git_hullabaloo_README.md +rigred_sandsifter,_rigred_sandsifter_commits.csv,rigred_sandsifter_hullabaloo_README.md +fog_fog-libvirt,_fog_fog-libvirt_commits.csv,fog_fog-libvirt_hullabaloo_README.md +pymodbus-dev_pymodbus.git,_pymodbus-dev_pymodbus.git_commits.csv,pymodbus-dev_pymodbus.git_hullabaloo_README +tiwe-de_libpam-pwdfile,tiwe-de_libpam-pwdfile_commits.csv,tiwe-de_libpam-pwdfile_hullabaloo_README +jmespath_jmespath.py,_jmespath_jmespath.py_commits.csv,jmespath_jmespath.py_hullabaloo_README.rst +ygrek_extunix.git,_ygrek_extunix.git_commits.csv,ygrek_extunix.git_hullabaloo_README.txt +nsntrace_nsntrace,_nsntrace_nsntrace_commits.csv,nsntrace_nsntrace_hullabaloo_README.md +zopefoundation_zope.i18nmessageid,_zopefoundation_zope.i18nmessageid_commits.csv,zopefoundation_zope.i18nmessageid_hullabaloo_README.txt +rtomayko_posix-spawn,_rtomayko_posix-spawn_commits.csv,rtomayko_posix-spawn_hullabaloo_README +DatabaseCleaner_database_cleaner,_DatabaseCleaner_database_cleaner_commits.csv,DatabaseCleaner_database_cleaner_hullabaloo_README +mysticatea_eslint-plugin-node.git,_mysticatea_eslint-plugin-node.git_commits.csv,mysticatea_eslint-plugin-node.git_hullabaloo_README.md +fadecut_fadecut,fadecut_fadecut_commits.csv,fadecut_fadecut_hullabaloo_README +plasma_sddm-kcm.git,plasma_sddm-kcm.git_commits.csv,plasma_sddm-kcm.git_hullabaloo_README +click-contrib_click-plugins.git,_click-contrib_click-plugins.git_commits.csv,click-contrib_click-plugins.git_hullabaloo_README.rst +theskumar_python-dotenv.git,_theskumar_python-dotenv.git_commits.csv,theskumar_python-dotenv.git_hullabaloo_README.md +p-e-w_maybe,_p-e-w_maybe_commits.csv,p-e-w_maybe_hullabaloo_README.md +hvesalai_emacs-scala-mode,_hvesalai_emacs-scala-mode_commits.csv,hvesalai_emacs-scala-mode_hullabaloo_README +sobolevn_django-split-settings,_sobolevn_django-split-settings_commits.csv,sobolevn_django-split-settings_hullabaloo_README.md +messageformat_Jed.git,_messageformat_Jed.git_commits.csv,messageformat_Jed.git_hullabaloo_README.md +babelouest_orcania,_babelouest_orcania_commits.csv,babelouest_orcania_hullabaloo_README.md +elima_FileTea,_elima_FileTea_commits.csv,elima_FileTea_hullabaloo_README +systemd_systemd-bootchart,_systemd_systemd-bootchart_commits.csv,systemd_systemd-bootchart_hullabaloo_README +mate-desktop_mate-desktop.git,_mate-desktop_mate-desktop.git_commits.csv,mate-desktop_mate-desktop.git_hullabaloo_README +libyal_libvshadow.git,_libyal_libvshadow.git_commits.csv,libyal_libvshadow.git_hullabaloo_README +angdraug_graffiti,_angdraug_graffiti_commits.csv,angdraug_graffiti_hullabaloo_README.rdoc +CSCsw_ColPack,_CSCsw_ColPack_commits.csv,CSCsw_ColPack_hullabaloo_README +rtomayko_rdiscount,_rtomayko_rdiscount_commits.csv,rtomayko_rdiscount_hullabaloo_README +pdfpc_pdfpc,_pdfpc_pdfpc_commits.csv,pdfpc_pdfpc_hullabaloo_README.txt +dosfstools_dosfstools.git,_dosfstools_dosfstools.git_commits.csv,dosfstools_dosfstools.git_hullabaloo_README.Atari +neilb_File-Modified,_neilb_File-Modified_commits.csv,neilb_File-Modified_hullabaloo_README +fstl-app_fstl,_fstl-app_fstl_commits.csv,fstl-app_fstl_hullabaloo_README.md +plasma_kde-gtk-config.git,plasma_kde-gtk-config.git_commits.csv,plasma_kde-gtk-config.git_hullabaloo_LEERME o README +yayahjb_cqrlib.git,_yayahjb_cqrlib.git_commits.csv,yayahjb_cqrlib.git_hullabaloo_README_CQRlib.txt +andreafrancia_trash-cli.git,_andreafrancia_trash-cli.git_commits.csv,andreafrancia_trash-cli.git_hullabaloo_README +benningm_mtpolicyd.git,_benningm_mtpolicyd.git_commits.csv,benningm_mtpolicyd.git_hullabaloo_README.md +SELinuxProject_setools.git,_SELinuxProject_setools.git_commits.csv,SELinuxProject_setools.git_hullabaloo_README +bingos_poe-component-client-ident.git,_bingos_poe-component-client-ident.git_commits.csv,bingos_poe-component-client-ident.git_hullabaloo_README +powerline_powerline,_powerline_powerline_commits.csv,powerline_powerline_hullabaloo_README.rst +LibreCat_Catmandu-SRU.git,_LibreCat_Catmandu-SRU.git_commits.csv,LibreCat_Catmandu-SRU.git_hullabaloo_README +EasyScreenCast_EasyScreenCast.git,_EasyScreenCast_EasyScreenCast.git_commits.csv,EasyScreenCast_EasyScreenCast.git_hullabaloo_README.md +GNOME_gnome-color-manager.git,GNOME_gnome-color-manager.git_commits.csv,GNOME_gnome-color-manager.git_hullabaloo_README +varvet_pundit,_varvet_pundit_commits.csv,varvet_pundit_hullabaloo_README.md +kodi-pvr_pvr.vdr.vnsi.git,_kodi-pvr_pvr.vdr.vnsi.git_commits.csv,kodi-pvr_pvr.vdr.vnsi.git_hullabaloo_README +estools_escodegen,_estools_escodegen_commits.csv,estools_escodegen_hullabaloo_README.md +jonnenauha_prometheus_varnish_exporter.git,_jonnenauha_prometheus_varnish_exporter.git_commits.csv,jonnenauha_prometheus_varnish_exporter.git_hullabaloo_README.md +djs55_ocaml-sha.git,_djs55_ocaml-sha.git_commits.csv,djs55_ocaml-sha.git_hullabaloo_README +python-postgres_fe,_python-postgres_fe_commits.csv,python-postgres_fe_hullabaloo_README +ros-infrastructure_rosinstall_generator,_ros-infrastructure_rosinstall_generator_commits.csv,ros-infrastructure_rosinstall_generator_hullabaloo_README.rst +accounts-sso_telepathy-accounts-signon.git,accounts-sso_telepathy-accounts-signon.git_commits.csv,accounts-sso_telepathy-accounts-signon.git_hullabaloo_README +alisaifee_hiro,_alisaifee_hiro_commits.csv,alisaifee_hiro_hullabaloo_README.md +PacificBiosciences_pbcopper.git,_PacificBiosciences_pbcopper.git_commits.csv,PacificBiosciences_pbcopper.git_hullabaloo_README.md +spacetelescope_fitscut,_spacetelescope_fitscut_commits.csv,spacetelescope_fitscut_hullabaloo_README +karenetheridge_Module-Manifest,_karenetheridge_Module-Manifest_commits.csv,karenetheridge_Module-Manifest_hullabaloo_README +googleapis_signet,_googleapis_signet_commits.csv,googleapis_signet_hullabaloo_README +perl5-utils_Params-Util,_perl5-utils_Params-Util_commits.csv,perl5-utils_Params-Util_hullabaloo_README.md +tidyverse_tidyr.git,_tidyverse_tidyr.git_commits.csv,tidyverse_tidyr.git_hullabaloo_README.md +vasole_fisx,_vasole_fisx_commits.csv,vasole_fisx_hullabaloo_README.md +testing-cabal_mock,_testing-cabal_mock_commits.csv,testing-cabal_mock_hullabaloo_README.txt +Kozea_cairocffi.git,_Kozea_cairocffi.git_commits.csv,Kozea_cairocffi.git_hullabaloo_README.rst +corosync_corosync,_corosync_corosync_commits.csv,corosync_corosync_hullabaloo_README.devmap +pytest-dev_pytest-django,_pytest-dev_pytest-django_commits.csv,pytest-dev_pytest-django_hullabaloo_README.markdown +strukturag_libheif.git,_strukturag_libheif.git_commits.csv,strukturag_libheif.git_hullabaloo_README.md +lxc_lxcfs.git,_lxc_lxcfs.git_commits.csv,lxc_lxcfs.git_hullabaloo_README.md +mvexel_overpass-api-python-wrapper.git,_mvexel_overpass-api-python-wrapper.git_commits.csv,mvexel_overpass-api-python-wrapper.git_hullabaloo_README.md +brandon-rhodes_logging_tree.git,_brandon-rhodes_logging_tree.git_commits.csv,brandon-rhodes_logging_tree.git_hullabaloo_README.md +colmap_colmap,_colmap_colmap_commits.csv,colmap_colmap_hullabaloo_README.md +LibreCat_Catmandu-FileStore.git,_LibreCat_Catmandu-FileStore.git_commits.csv,LibreCat_Catmandu-FileStore.git_hullabaloo_README.md +niltonvolpato_python-progressbar,_niltonvolpato_python-progressbar_commits.csv,niltonvolpato_python-progressbar_hullabaloo_README +rvaser_bioparser,_rvaser_bioparser_commits.csv,rvaser_bioparser_hullabaloo_README.md +rss2email_rss2email.git,_rss2email_rss2email.git_commits.csv,rss2email_rss2email.git_hullabaloo_README +HOST-Oman_libraqm.git,_HOST-Oman_libraqm.git_commits.csv,HOST-Oman_libraqm.git_hullabaloo_README.md +mate-desktop_mate-polkit.git,_mate-desktop_mate-polkit.git_commits.csv,mate-desktop_mate-polkit.git_hullabaloo_README +LeaVerou_prism.git,_LeaVerou_prism.git_commits.csv,LeaVerou_prism.git_hullabaloo_README.md +jackrosenthal_kajiki,_jackrosenthal_kajiki_commits.csv,jackrosenthal_kajiki_hullabaloo_README.markdown +tantale_deprecated.git,_tantale_deprecated.git_commits.csv,tantale_deprecated.git_hullabaloo_README.md +rbenv_rbenv,_rbenv_rbenv_commits.csv,rbenv_rbenv_hullabaloo_README.md +voxpupuli_librarian-puppet.git,_voxpupuli_librarian-puppet.git_commits.csv,voxpupuli_librarian-puppet.git_hullabaloo_README.md +casacore_observatories-table.git,_casacore_observatories-table.git_commits.csv,casacore_observatories-table.git_hullabaloo_README.md +pdudaemon_pkg-pdudaemon,pdudaemon_pkg-pdudaemon_commits.csv,pdudaemon_pkg-pdudaemon_hullabaloo_README +neilb_Memoize-ExpireLRU,_neilb_Memoize-ExpireLRU_commits.csv,neilb_Memoize-ExpireLRU_hullabaloo_README +jobovy_galpy.git,_jobovy_galpy.git_commits.csv,jobovy_galpy.git_hullabaloo_README.md +jaalto_project--perl-ddir.git,_jaalto_project--perl-ddir.git_commits.csv,jaalto_project--perl-ddir.git_hullabaloo_README +phillipberndt_autorandr.git,_phillipberndt_autorandr.git_commits.csv,phillipberndt_autorandr.git_hullabaloo_README +jeroen_curl,_jeroen_curl_commits.csv,jeroen_curl_hullabaloo_README +jorgemanrubia_truncato,_jorgemanrubia_truncato_commits.csv,jorgemanrubia_truncato_hullabaloo_README.md +pydanny_cached-property.git,_pydanny_cached-property.git_commits.csv,pydanny_cached-property.git_hullabaloo_README.rst +ponty_pyvirtualdisplay.git,_ponty_pyvirtualdisplay.git_commits.csv,ponty_pyvirtualdisplay.git_hullabaloo_README.rst +cvxopt_cvxopt,_cvxopt_cvxopt_commits.csv,cvxopt_cvxopt_hullabaloo_README.md +pymssql_pymssql.git,_pymssql_pymssql.git_commits.csv,pymssql_pymssql.git_hullabaloo_README +OpenRTX_dmrconfig.git,_OpenRTX_dmrconfig.git_commits.csv,OpenRTX_dmrconfig.git_hullabaloo_README.md +jnordberg_coffeeify.git,_jnordberg_coffeeify.git_commits.csv,jnordberg_coffeeify.git_hullabaloo_README.md +jwilk_python-djvulibre,_jwilk_python-djvulibre_commits.csv,jwilk_python-djvulibre_hullabaloo_README +gsnedders_pytest-expect,_gsnedders_pytest-expect_commits.csv,gsnedders_pytest-expect_hullabaloo_README.rst +rhendric_puka,rhendric_puka_commits.csv,rhendric_puka_hullabaloo_README.md +alexdalitz_dnsruby.git,_alexdalitz_dnsruby.git_commits.csv,alexdalitz_dnsruby.git_hullabaloo_README.rdoc +asn-d6_onionbalance.git,_asn-d6_onionbalance.git_commits.csv,asn-d6_onionbalance.git_hullabaloo_README.md +toddr_Crypt-OpenSSL-RSA.git,_toddr_Crypt-OpenSSL-RSA.git_commits.csv,toddr_Crypt-OpenSSL-RSA.git_hullabaloo_README +andrewrk_node-findit.git,_andrewrk_node-findit.git_commits.csv,andrewrk_node-findit.git_hullabaloo_README.markdown +berkshelf_solve,_berkshelf_solve_commits.csv,berkshelf_solve_hullabaloo_README.md +ros_robot_state_publisher,_ros_robot_state_publisher_commits.csv,ros_robot_state_publisher_hullabaloo_README.md +krig_parallax,_krig_parallax_commits.csv,krig_parallax_hullabaloo_README +schani_metapixel.git,_schani_metapixel.git_commits.csv,schani_metapixel.git_hullabaloo_README +jnunemaker_flipper,_jnunemaker_flipper_commits.csv,jnunemaker_flipper_hullabaloo_README.md +pazz_alot,_pazz_alot_commits.csv,pazz_alot_hullabaloo_README +GrahamDumpleton_mod_wsgi,_GrahamDumpleton_mod_wsgi_commits.csv,GrahamDumpleton_mod_wsgi_hullabaloo_README +yaauie_typed-array,_yaauie_typed-array_commits.csv,yaauie_typed-array_hullabaloo_README.rdoc +duritong_trocla,_duritong_trocla_commits.csv,duritong_trocla_hullabaloo_README.rdoc +resurrecting-open-source-projects_cbm,_resurrecting-open-source-projects_cbm_commits.csv,resurrecting-open-source-projects_cbm_hullabaloo_README +agordon_fastx_toolkit.git,_agordon_fastx_toolkit.git_commits.csv,agordon_fastx_toolkit.git_hullabaloo_README +thumbor_libthumbor,_thumbor_libthumbor_commits.csv,thumbor_libthumbor_hullabaloo_README +epeli_underscore.string,_epeli_underscore.string_commits.csv,epeli_underscore.string_hullabaloo_README +geopython_geolinks.git,_geopython_geolinks.git_commits.csv,geopython_geolinks.git_hullabaloo_README.md +zeroc-ice_ice-builder-gradle-debian-packaging.git,zeroc-ice_ice-builder-gradle-debian-packaging.git_commits.csv,zeroc-ice_ice-builder-gradle-debian-packaging.git_hullabaloo_README.md +maxmind_geoip-api-perl.git,_maxmind_geoip-api-perl.git_commits.csv,maxmind_geoip-api-perl.git_hullabaloo_README +arabeyes-org_ITL,_arabeyes-org_ITL_commits.csv,arabeyes-org_ITL_hullabaloo_README +httprb_http.rb,_httprb_http.rb_commits.csv,httprb_http.rb_hullabaloo_README.md +rails_rails-dom-testing,_rails_rails-dom-testing_commits.csv,rails_rails-dom-testing_hullabaloo_README.md +moloney_dcmstack.git,_moloney_dcmstack.git_commits.csv,moloney_dcmstack.git_hullabaloo_README +speed47_spectre-meltdown-checker,_speed47_spectre-meltdown-checker_commits.csv,speed47_spectre-meltdown-checker_hullabaloo_README.md +unbit_django-uwsgi,_unbit_django-uwsgi_commits.csv,unbit_django-uwsgi_hullabaloo_README.md +httplib2_httplib2.git,_httplib2_httplib2.git_commits.csv,httplib2_httplib2.git_hullabaloo_README +jas_libntlm,jas_libntlm_commits.csv,jas_libntlm_hullabaloo_README +ralphm_wokkel.git,_ralphm_wokkel.git_commits.csv,ralphm_wokkel.git_hullabaloo_README +silx-kit_pyFAI,_silx-kit_pyFAI_commits.csv,silx-kit_pyFAI_hullabaloo_README.md +rakhimov_scram.git,_rakhimov_scram.git_commits.csv,rakhimov_scram.git_hullabaloo_README.md +iris-edu_libmseed,_iris-edu_libmseed_commits.csv,iris-edu_libmseed_hullabaloo_README.byteorder +cboursnell_crb-blast,_cboursnell_crb-blast_commits.csv,cboursnell_crb-blast_hullabaloo_README.md +GNOME_almanah,GNOME_almanah_commits.csv,GNOME_almanah_hullabaloo_README +capistrano_sshkit.git,_capistrano_sshkit.git_commits.csv,capistrano_sshkit.git_hullabaloo_README +etianen_django-reversion.git,_etianen_django-reversion.git_commits.csv,etianen_django-reversion.git_hullabaloo_README +ryan-roemer_sphinx-bootstrap-theme.git,_ryan-roemer_sphinx-bootstrap-theme.git_commits.csv,ryan-roemer_sphinx-bootstrap-theme.git_hullabaloo_README.rst +Ozzyboshi_guake-indicator,_Ozzyboshi_guake-indicator_commits.csv,Ozzyboshi_guake-indicator_hullabaloo_README +leamas_ddupdate,leamas_ddupdate_commits.csv,leamas_ddupdate_hullabaloo_README.md +crosswire-bible-society_scofield,crosswire-bible-society_scofield_commits.csv,crosswire-bible-society_scofield_hullabaloo_README.md +nodejs_string_decoder.git,_nodejs_string_decoder.git_commits.csv,nodejs_string_decoder.git_hullabaloo_README.md +X0rg_CPU-X.git,_X0rg_CPU-X.git_commits.csv,X0rg_CPU-X.git_hullabaloo_README.md +dimitri_pgextwlist,dimitri_pgextwlist_commits.csv,dimitri_pgextwlist_hullabaloo_README.asciidoc +wreiner_automx-debian.git,wreiner_automx-debian.git_commits.csv,wreiner_automx-debian.git_hullabaloo_README.md +pim_kitinerary,pim_kitinerary_commits.csv,pim_kitinerary_hullabaloo_README +bdrung_ionit,bdrung_ionit_commits.csv,bdrung_ionit_hullabaloo_README.md +florimondmanca_djangorestframework-api-key,_florimondmanca_djangorestframework-api-key_commits.csv,florimondmanca_djangorestframework-api-key_hullabaloo_README.md +miyagawa_Filesys-Notify-Simple.git,_miyagawa_Filesys-Notify-Simple.git_commits.csv,miyagawa_Filesys-Notify-Simple.git_hullabaloo_README +libyal_libfvde.git,_libyal_libfvde.git_commits.csv,libyal_libfvde.git_hullabaloo_README +libfprint_libfprint,libfprint_libfprint_commits.csv,libfprint_libfprint_hullabaloo_README +micahflee_torbrowser-launcher,_micahflee_torbrowser-launcher_commits.csv,micahflee_torbrowser-launcher_hullabaloo_README.md +zopefoundation_BTrees.git,_zopefoundation_BTrees.git_commits.csv,zopefoundation_BTrees.git_hullabaloo_README.txt +r-lib_svglite.git,_r-lib_svglite.git_commits.csv,r-lib_svglite.git_hullabaloo_README.md +google_python-subprocess32,_google_python-subprocess32_commits.csv,google_python-subprocess32_hullabaloo_README.txt +mjschultz_py-radix,_mjschultz_py-radix_commits.csv,mjschultz_py-radix_hullabaloo_README +xolox_python-humanfriendly,_xolox_python-humanfriendly_commits.csv,xolox_python-humanfriendly_hullabaloo_README.rst +selectize_selectize.js,_selectize_selectize.js_commits.csv,selectize_selectize.js_hullabaloo_README.md +jupyter_nbformat,_jupyter_nbformat_commits.csv,jupyter_nbformat_hullabaloo_README.md +Komzpa_twms.git,_Komzpa_twms.git_commits.csv,Komzpa_twms.git_hullabaloo_README +staging_dune-functions,staging_dune-functions_commits.csv,staging_dune-functions_hullabaloo_README +dnmfarrell_Data-FormValidator.git,_dnmfarrell_Data-FormValidator.git_commits.csv,dnmfarrell_Data-FormValidator.git_hullabaloo_README +nitmir_policyd-rate-limit.git,_nitmir_policyd-rate-limit.git_commits.csv,nitmir_policyd-rate-limit.git_hullabaloo_README.rst +sdsykes_fastimage,_sdsykes_fastimage_commits.csv,sdsykes_fastimage_hullabaloo_README +s-yata_marisa-trie.git,_s-yata_marisa-trie.git_commits.csv,s-yata_marisa-trie.git_hullabaloo_README +breakfastquay_rubberband.git,_breakfastquay_rubberband.git_commits.csv,breakfastquay_rubberband.git_hullabaloo_README +checkpoint-restore_criu.git,_checkpoint-restore_criu.git_commits.csv,checkpoint-restore_criu.git_hullabaloo_README +gramos_imagetooth,_gramos_imagetooth_commits.csv,gramos_imagetooth_hullabaloo_README +swh_ladspa.git,_swh_ladspa.git_commits.csv,swh_ladspa.git_hullabaloo_README +fdupoux_fsarchiver,_fdupoux_fsarchiver_commits.csv,fdupoux_fsarchiver_hullabaloo_README +bobtfish_text-markdown.git,_bobtfish_text-markdown.git_commits.csv,bobtfish_text-markdown.git_hullabaloo_README +Castaglia_proftpd-mod_counter,_Castaglia_proftpd-mod_counter_commits.csv,Castaglia_proftpd-mod_counter_hullabaloo_README +SebWouters_CheMPS2,_SebWouters_CheMPS2_commits.csv,SebWouters_CheMPS2_hullabaloo_source.html +gkz_LiveScript,_gkz_LiveScript_commits.csv,gkz_LiveScript_hullabaloo_README.md +sbraz_pymediainfo,_sbraz_pymediainfo_commits.csv,sbraz_pymediainfo_hullabaloo_README.rst +untitaker_python-atomicwrites,_untitaker_python-atomicwrites_commits.csv,untitaker_python-atomicwrites_hullabaloo_README.rst +dpmb_dpmb,dpmb_dpmb_commits.csv,dpmb_dpmb_hullabaloo_README.md +dyne_Tomb,_dyne_Tomb_commits.csv,dyne_Tomb_hullabaloo_README +silnrsi_font-eeyek.git,_silnrsi_font-eeyek.git_commits.csv,silnrsi_font-eeyek.git_hullabaloo_README.md +emcrisostomo_fswatch.git,_emcrisostomo_fswatch.git_commits.csv,emcrisostomo_fswatch.git_hullabaloo_README +glaubitz_virtualjaguar-debian,glaubitz_virtualjaguar-debian_commits.csv,glaubitz_virtualjaguar-debian_hullabaloo_README +flask-restful_flask-restful,_flask-restful_flask-restful_commits.csv,flask-restful_flask-restful_hullabaloo_README.md +xuchunyang_eshell-git-prompt.git,_xuchunyang_eshell-git-prompt.git_commits.csv,xuchunyang_eshell-git-prompt.git_hullabaloo_README.org +geopython_stetl.git,_geopython_stetl.git_commits.csv,geopython_stetl.git_hullabaloo_README.md +pim_akonadi-mime,pim_akonadi-mime_commits.csv,pim_akonadi-mime_hullabaloo_README.md +django-polymorphic_django-polymorphic,_django-polymorphic_django-polymorphic_commits.csv,django-polymorphic_django-polymorphic_hullabaloo_README.rst +jendrikseipp_vulture.git,_jendrikseipp_vulture.git_commits.csv,jendrikseipp_vulture.git_hullabaloo_README.txt +ap_HTML-Tiny.git,_ap_HTML-Tiny.git_commits.csv,ap_HTML-Tiny.git_hullabaloo_README +GNOME_gnome-calendar.git,GNOME_gnome-calendar.git_commits.csv,GNOME_gnome-calendar.git_hullabaloo_README +ralphbean_bugwarrior,_ralphbean_bugwarrior_commits.csv,ralphbean_bugwarrior_hullabaloo_README.rst +capistrano_capistrano.git,_capistrano_capistrano.git_commits.csv,capistrano_capistrano.git_hullabaloo_README +mwilliamson_spur.py.git,_mwilliamson_spur.py.git_commits.csv,mwilliamson_spur.py.git_hullabaloo_README.md +kyrus_python-junit-xml.git,_kyrus_python-junit-xml.git_commits.csv,kyrus_python-junit-xml.git_hullabaloo_README.md +troglobit_inadyn,_troglobit_inadyn_commits.csv,troglobit_inadyn_hullabaloo_README +folkertvanheusden_nasty,_folkertvanheusden_nasty_commits.csv,folkertvanheusden_nasty_hullabaloo_README.md +plasma_breeze-gtk,plasma_breeze-gtk_commits.csv,plasma_breeze-gtk_hullabaloo_README.md +hughsk_is-typedarray,_hughsk_is-typedarray_commits.csv,hughsk_is-typedarray_hullabaloo_README.md +babelouest_hoel,_babelouest_hoel_commits.csv,babelouest_hoel_hullabaloo_README.md diff --git a/12825_revision/misc_data_files/fvf_013025_CONTRIBUTING_manifest.csv b/12825_revision/misc_data_files/fvf_013025_CONTRIBUTING_manifest.csv new file mode 100644 index 0000000..42b8ef1 --- /dev/null +++ b/12825_revision/misc_data_files/fvf_013025_CONTRIBUTING_manifest.csv @@ -0,0 +1,198 @@ +commit_hash,upstream_vcs_link,repo_id,project_handle,new_filepath +9b5ae2ba1c1e2fe20ae555212ef9a6b1f50957cf,https://github.com/aio-libs/aiomysql.git,aio-libs_aiomysql.git,aio-libs/aiomysql.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/aio-libs_aiomysql.git_hullabaloo_CONTRIBUTING.rst +f8d94662015fa4ced56a4d2d11875b91b7284666,https://github.com/aio-libs/aiohttp.git,aio-libs_aiohttp.git,aio-libs/aiohttp.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/aio-libs_aiohttp.git_hullabaloo_CONTRIBUTING.rst +679bf7de5aa77e34f534ce31ce33ea7ff0707317,https://github.com/box/genty.git,box_genty.git,box/genty.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/box_genty.git_hullabaloo_CONTRIBUTING.rst +a0b321f7a1ae658ee62899b776416c8eceb6db61,https://github.com/hackebrot/jinja2-time,hackebrot_jinja2-time,hackebrot/jinja2-time,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/hackebrot_jinja2-time_hullabaloo_CONTRIBUTING.rst +cf31482daf25df12bd718e00ae92fd50dfc4eb37,https://github.com/DonyorM/weresync.git,DonyorM_weresync.git,DonyorM/weresync.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/DonyorM_weresync.git_hullabaloo_CONTRIBUTING.rst +f4d7c1a628411df9c818ac57c7bdc67e66177585,https://github.com/iovisor/bpftrace,iovisor_bpftrace,iovisor/bpftrace,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/iovisor_bpftrace_hullabaloo_CONTRIBUTING-TOOLS.md +8eaf930ba595fb9f3e124ec1d17ef469c9ab01f6,https://github.com/zopefoundation/roman,zopefoundation_roman,zopefoundation/roman,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zopefoundation_roman_hullabaloo_CONTRIBUTING.md +4f3144d6bc05a74f24aa4e94e5dc4e6a461b87b7,https://github.com/intridea/oauth2,intridea_oauth2,intridea/oauth2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/intridea_oauth2_hullabaloo_CONTRIBUTING.md +8f793f86ce59ef393b3f7c6d93130dedb8d79fc8,https://github.com/timothycrosley/hug.git,timothycrosley_hug.git,timothycrosley/hug.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/timothycrosley_hug.git_hullabaloo_CONTRIBUTING.md +0fc9e32a0296ba399f216878c305fd83d7f115a9,https://github.com/watson-developer-cloud/python-sdk.git,watson-developer-cloud_python-sdk.git,watson-developer-cloud/python-sdk.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/watson-developer-cloud_python-sdk.git_hullabaloo_CONTRIBUTING.md +2505322d10223bf7965740fac270c80cffed683f,https://github.com/moose/MooseX-Runnable,moose_MooseX-Runnable,moose/MooseX-Runnable,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/moose_MooseX-Runnable_hullabaloo_CONTRIBUTING +3111f06b7039417845164434801c1e5443b0b2d9,https://github.com/tpope/vim-pathogen.git,tpope_vim-pathogen.git,tpope/vim-pathogen.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/tpope_vim-pathogen.git_hullabaloo_CONTRIBUTING.markdown +a82e940f7ab11fa150db8ef67aca36b2a558282f,https://github.com/pyqtgraph/pyqtgraph.git,pyqtgraph_pyqtgraph.git,pyqtgraph/pyqtgraph.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pyqtgraph_pyqtgraph.git_hullabaloo_CONTRIBUTING.txt +1a0a8a536b2b3b22c0669fdefd810a7764553428,https://github.com/jazzband/django-push-notifications,jazzband_django-push-notifications,jazzband/django-push-notifications,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jazzband_django-push-notifications_hullabaloo_CONTRIBUTING.md +857ab548f619773a8420331ce77ee6dce21ed106,https://github.com/box/flaky.git,box_flaky.git,box/flaky.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/box_flaky.git_hullabaloo_CONTRIBUTING.rst +2a732ce025b508dfe8381ace04e8c59050790530,https://github.com/amueller/word_cloud,amueller_word_cloud,amueller/word/cloud,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/amueller_word_cloud_hullabaloo_CONTRIBUTING.md +95e617b15a138771ee61c3f65f6f5a7a9c1f872b,https://github.com/heynemann/pyvows.git,heynemann_pyvows.git,heynemann/pyvows.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/heynemann_pyvows.git_hullabaloo_CONTRIBUTING.md +8cfcfc8645fa47b776c8c6b441a9e2bb4b1b28d3,https://github.com/docker/compose,docker_compose,docker/compose,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/docker_compose_hullabaloo_CONTRIBUTING.md +0749e18b7b4c032db9dd39df00a63fafbe2960f2,https://github.com/pimutils/vdirsyncer,pimutils_vdirsyncer,pimutils/vdirsyncer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pimutils_vdirsyncer_hullabaloo_CONTRIBUTING.rst +8706f6598ea157841c8d8ccf6365dfdbf0d72970,https://github.com/dahlia/libsass-python.git,dahlia_libsass-python.git,dahlia/libsass-python.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dahlia_libsass-python.git_hullabaloo_CONTRIBUTING.rst +bdbf2ce5edc4d973e6f2c2b7a2acf85285918eee,https://github.com/mkdocs/mkdocs,mkdocs_mkdocs,mkdocs/mkdocs,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mkdocs_mkdocs_hullabaloo_CONTRIBUTING.md +e3d291ba3c9f48f5d439233584652aa71d6890c1,https://github.com/boto/boto3,boto_boto3,boto/boto3,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/boto_boto3_hullabaloo_CONTRIBUTING.rst +1af188b50248c794b671e55df5659e5935fdc799,https://github.com/jquast/blessed,jquast_blessed,jquast/blessed,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jquast_blessed_hullabaloo_CONTRIBUTING.rst +02c417d33da3c237ecf65afe84d4fb0c6f1b4286,https://github.com/Storyyeller/enjarify,Storyyeller_enjarify,Storyyeller/enjarify,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Storyyeller_enjarify_hullabaloo_CONTRIBUTING.txt +7721c5c0e0fc59f4e9bdcbaa5b30ee82dd88a15e,https://github.com/boto/s3transfer,boto_s3transfer,boto/s3transfer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/boto_s3transfer_hullabaloo_CONTRIBUTING.rst +78ffdef83dad7cf04392d8aae77fed247323536e,https://github.com/derek73/python-nameparser,derek73_python-nameparser,derek73/python-nameparser,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/derek73_python-nameparser_hullabaloo_CONTRIBUTING.md +a76744c544d9302f6cf3612326ec52214e2099d4,https://github.com/coddingtonbear/python-measurement,coddingtonbear_python-measurement,coddingtonbear/python-measurement,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/coddingtonbear_python-measurement_hullabaloo_CONTRIBUTING.md +af43013b4c7bf9edf13429be80d8c522cf14a730,https://github.com/editorconfig/editorconfig-core-c.git,editorconfig_editorconfig-core-c.git,editorconfig/editorconfig-core-c.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/editorconfig_editorconfig-core-c.git_hullabaloo_CONTRIBUTING +7529e129e46b0dd27ecc9ecc843bc7cc0231571e,https://github.com/joke2k/faker,joke2k_faker,joke2k/faker,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/joke2k_faker_hullabaloo_CONTRIBUTING.rst +75c4ec0ba4dd86e4f763a54e01002ff29f1d57ae,https://github.com/google/gemmlowp,google_gemmlowp,google/gemmlowp,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_gemmlowp_hullabaloo_CONTRIBUTING.txt +5f72a0dc00818bea3bb0a6b5b10ad23824fbdcd3,https://github.com/iustin/pylibacl,iustin_pylibacl,iustin/pylibacl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/iustin_pylibacl_hullabaloo_CONTRIBUTING.md +9be803c1ff0a1440b6c8d2bdb39a4e4a511d4695,https://github.com/PyFilesystem/pyfilesystem2,PyFilesystem_pyfilesystem2,PyFilesystem/pyfilesystem2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/PyFilesystem_pyfilesystem2_hullabaloo_CONTRIBUTING.md +271968e67533d195c16d0c0e1d73301ab8052c29,https://github.com/pallets/werkzeug,pallets_werkzeug,pallets/werkzeug,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pallets_werkzeug_hullabaloo_CONTRIBUTING.rst +b95d3ee5bd401ef17f259e3eae27a3f5694016be,https://github.com/zeromq/pyzmq.git,zeromq_pyzmq.git,zeromq/pyzmq.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zeromq_pyzmq.git_hullabaloo_CONTRIBUTING.md +6ab218bf71bc091eb04cedde61dcfc6fb52bbf13,https://github.com/WoLpH/numpy-stl,WoLpH_numpy-stl,WoLpH/numpy-stl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/WoLpH_numpy-stl_hullabaloo_CONTRIBUTING.rst +7ec4d00ea72ebeba4f3ce72e78a84e8d20c6f659,https://github.com/prometheus/client_python.git,prometheus_client_python.git,prometheus/client/python.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/prometheus_client_python.git_hullabaloo_CONTRIBUTING.md +5ed5d4ebc1bcabecdc3278a7dda848a29b5e8ae6,https://github.com/heynemann/preggy,heynemann_preggy,heynemann/preggy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/heynemann_preggy_hullabaloo_CONTRIBUTING.md +3759eada7e7905ad0091e1f8edf676f177009188,https://github.com/python-trio/trio,python-trio_trio,python-trio/trio,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python-trio_trio_hullabaloo_CONTRIBUTING.md +8d04e68fdac7ddf9f34f3d2f11f5f305815ef789,https://github.com/ionelmc/python-tblib,ionelmc_python-tblib,ionelmc/python-tblib,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ionelmc_python-tblib_hullabaloo_CONTRIBUTING.rst +0aaffb919f6938261a75203f2c1c5f19764b0e17,https://github.com/ocaml/ocamlbuild.git,ocaml_ocamlbuild.git,ocaml/ocamlbuild.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ocaml_ocamlbuild.git_hullabaloo_CONTRIBUTING.adoc +5f1e47afcb524803f71f600b6a1edbfe40f6796f,https://github.com/karenetheridge/B-Hooks-Parser.git,karenetheridge_B-Hooks-Parser.git,karenetheridge/B-Hooks-Parser.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/karenetheridge_B-Hooks-Parser.git_hullabaloo_CONTRIBUTING +0ebc98342d4b2be00d7799e2e35b33898619b901,https://github.com/ComplianceAsCode/content,ComplianceAsCode_content,ComplianceAsCode/content,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ComplianceAsCode_content_hullabaloo_CONTRIBUTING.md +9b6705571107d704d576269ae1723d589c330a16,https://github.com/mu-editor/mu,mu-editor_mu,mu-editor/mu,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mu-editor_mu_hullabaloo_CONTRIBUTING.rst +0f896927c4541cc70226e5fc946520f6225cde7b,https://github.com/dask/dask,dask_dask,dask/dask,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dask_dask_hullabaloo_CONTRIBUTING.md +7532e5040bd9487ddc4d74dcac22209b2fee33de,https://github.com/matthewwithanm/django-imagekit.git,matthewwithanm_django-imagekit.git,matthewwithanm/django-imagekit.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/matthewwithanm_django-imagekit.git_hullabaloo_CONTRIBUTING.rst +de6d9769c13e375a6299907dd0f1cd85e31a7ee1,https://github.com/dagolden/class-insideout.git,dagolden_class-insideout.git,dagolden/class-insideout.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dagolden_class-insideout.git_hullabaloo_CONTRIBUTING +5c229976032872d2c5e889f033ce82f20e15e6c4,https://github.com/lastpass/lastpass-cli,lastpass_lastpass-cli,lastpass/lastpass-cli,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/lastpass_lastpass-cli_hullabaloo_CONTRIBUTING +8a365abd9c7255d0b92787671bdea5f44408cbaa,https://github.com/RIPE-NCC/ripe.atlas.sagan,RIPE-NCC_ripe.atlas.sagan,RIPE-NCC/ripe.atlas.sagan,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/RIPE-NCC_ripe.atlas.sagan_hullabaloo_CONTRIBUTING.rst +92f3d5111cf529b550a35a43cdbdd92910697ed1,https://github.com/emcconville/wand,emcconville_wand,emcconville/wand,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/emcconville_wand_hullabaloo_CONTRIBUTING.rst +5010bd74848e732669ef739b3df2b0d34e8f84c1,https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP,perl-catalyst_Catalyst-Authentication-Credential-HTTP,perl-catalyst/Catalyst-Authentication-Credential-HTTP,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/perl-catalyst_Catalyst-Authentication-Credential-HTTP_hullabaloo_CONTRIBUTING +87c6bc4f1cf3ca953dcb839fbfe32329947ce687,https://github.com/sslmate/certspotter,sslmate_certspotter,sslmate/certspotter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/sslmate_certspotter_hullabaloo_CONTRIBUTING +2dc18c5ef831bd6d9b7d5cb2def4450a83114980,https://github.com/python-hyper/h11.git,python-hyper_h11.git,python-hyper/h11.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python-hyper_h11.git_hullabaloo_CONTRIBUTING.md +5fa13ecb73d35b1e29ce2d5b8256dd879b58921c,https://github.com/felixge/node-dateformat,felixge_node-dateformat,felixge/node-dateformat,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/felixge_node-dateformat_hullabaloo_CONTRIBUTING.md +3d6089eeeea36ac808c6c409c36b8c13f1901bba,https://github.com/mongodb/motor,mongodb_motor,mongodb/motor,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mongodb_motor_hullabaloo_CONTRIBUTING.rst +7401efab4d6c2db93886ca92b4479ce90d749a51,https://github.com/rthalley/dnspython.git,rthalley_dnspython.git,rthalley/dnspython.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/rthalley_dnspython.git_hullabaloo_CONTRIBUTING.md +c33d22bc3ca9f18d4d282c04c77c8dfc88effb8b,https://github.com/Ableton/link.git,Ableton_link.git,Ableton/link.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Ableton_link.git_hullabaloo_CONTRIBUTING.md +4d4720a2fc6827729aba75b950fb9a1cbb8a83c9,https://github.com/django-ldapdb/django-ldapdb,django-ldapdb_django-ldapdb,django-ldapdb/django-ldapdb,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/django-ldapdb_django-ldapdb_hullabaloo_CONTRIBUTING.rst +39e75497959a90f3e5c3925801b15e21899e2398,https://github.com/hickford/MechanicalSoup,hickford_MechanicalSoup,hickford/MechanicalSoup,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/hickford_MechanicalSoup_hullabaloo_CONTRIBUTING.md +44d5a1cb3c6b78e0c2fe77f7133ddf909fb24d1c,https://github.com/gtimelog/gtimelog,gtimelog_gtimelog,gtimelog/gtimelog,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gtimelog_gtimelog_hullabaloo_CONTRIBUTING.rst +061607fc1dd4c9acde6bfbcbd7094d2515163f8b,https://github.com/openstack/python-swiftclient.git,openstack_python-swiftclient.git,openstack/python-swiftclient.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/openstack_python-swiftclient.git_hullabaloo_CONTRIBUTING.md +e65c12da5f0b2d2c3531d790953b5d288c03b4a7,https://gitlab.gnome.org/GNOME/network-manager-applet,GNOME_network-manager-applet,GNOME/network-manager-applet,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/GNOME_network-manager-applet_hullabaloo_CONTRIBUTING +c9cda413f4f4be6a42a55d7c44a56081e8496ce6,https://gitlab.com/libvirt/libvirt-ruby.git,libvirt_libvirt-ruby.git,libvirt/libvirt-ruby.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/libvirt_libvirt-ruby.git_hullabaloo_CONTRIBUTING.rst +8826e8c8dd196963866d5907b46f4716fc8732f7,https://github.com/FirefighterBlu3/python-pam,FirefighterBlu3_python-pam,FirefighterBlu3/python-pam,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/FirefighterBlu3_python-pam_hullabaloo_CONTRIBUTING.md +78425623e890d254da489e7a198223849883a157,https://github.com/lxqt/qterminal.git,lxqt_qterminal.git,lxqt/qterminal.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/lxqt_qterminal.git_hullabaloo_CONTRIBUTING.md +edf49a3d855b1ce4e2bd8a7038b7444ff0ab5fdc,https://github.com/python-gitlab/python-gitlab.git,python-gitlab_python-gitlab.git,python-gitlab/python-gitlab.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python-gitlab_python-gitlab.git_hullabaloo_CONTRIBUTING.rst +fc342ca115e577225dd54c7c8cfed3b21edbcba8,https://github.com/elmar/aptitude-robot,elmar_aptitude-robot,elmar/aptitude-robot,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/elmar_aptitude-robot_hullabaloo_CONTRIBUTING.mdown +93a66ab15c5068574d71acec298219f32fb0c3a2,https://github.com/doorkeeper-gem/doorkeeper,doorkeeper-gem_doorkeeper,doorkeeper-gem/doorkeeper,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/doorkeeper-gem_doorkeeper_hullabaloo_CONTRIBUTING.md +72455878f6e8a7056448829ef227d31520b34839,https://github.com/breunigs/python-librtmp-debian,breunigs_python-librtmp-debian,breunigs/python-librtmp-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/breunigs_python-librtmp-debian_hullabaloo_CONTRIBUTING.rst +56fceff11bf90f020acd4000568a0a56299f8ffe,https://github.com/google/python_portpicker,google_python_portpicker,google/python/portpicker,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_python_portpicker_hullabaloo_CONTRIBUTING.md +6aa6ba0667f49dea0e71d4ec1cca93d3d67f302c,https://github.com/carljm/django-model-utils.git,carljm_django-model-utils.git,carljm/django-model-utils.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/carljm_django-model-utils.git_hullabaloo_CONTRIBUTING.rst +f1aa25bcf83eb77eb6476c678d4375039127679a,https://github.com/marshmallow-code/flask-marshmallow.git,marshmallow-code_marshmallow.git,marshmallow-code/marshmallow.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/marshmallow-code_flask-marshmallow.git_hullabaloo_CONTRIBUTING.rst +f684f4ad243abfed03c53946a85493e03d272ec7,https://github.com/trezor/trezor-firmware.git,trezor_trezor-firmware.git,trezor/trezor-firmware.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/trezor_trezor-firmware.git_hullabaloo_CONTRIBUTING.md +33c482078b0ffe85e13dd624cd985e7a69d15041,https://github.com/kasei/attean.git,kasei_attean.git,kasei/attean.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/kasei_attean.git_hullabaloo_CONTRIBUTING +a7cceacf16d2a0f959ec76935c89ccdce1707385,https://github.com/gaetano-guerriero/eyeD3-debian,gaetano-guerriero_eyeD3-debian,gaetano-guerriero/eyeD3-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gaetano-guerriero_eyeD3-debian_hullabaloo_CONTRIBUTING.rst +890441240ba4fa5d2f79d4e6e6c326a5f0542c6d,https://github.com/ionelmc/python-lazy-object-proxy.git,ionelmc_python-lazy-object-proxy.git,ionelmc/python-lazy-object-proxy.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ionelmc_python-lazy-object-proxy.git_hullabaloo_CONTRIBUTING.rst +8cba4a2011f70921d5130e0fbffa7e986ea82593,https://github.com/jpy-consortium/jpy,jpy-consortium_jpy,jpy-consortium/jpy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jpy-consortium_jpy_hullabaloo_CONTRIBUTING.md +30167a535c7eac17888d50a08998bccf92469e19,https://github.com/openwisp/django-x509,openwisp_django-x509,openwisp/django-x509,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/openwisp_django-x509_hullabaloo_CONTRIBUTING.rst +3e3455ef9ae8f9751f8f1cdc8d08c7ccfdcd2b2f,https://github.com/tox-dev/py-filelock,tox-dev_py-filelock,tox-dev/py-filelock,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/tox-dev_py-filelock_hullabaloo_CONTRIBUTING.md +fdb29683d805781884262ace1df463746bc66caa,https://github.com/survivejs/webpack-merge.git,survivejs_webpack-merge.git,survivejs/webpack-merge.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/survivejs_webpack-merge.git_hullabaloo_CONTRIBUTING.md +c975a20ac362b8097978d9eda4e65a9ba5e25bc6,https://github.com/Smattr/rumur.git,Smattr_rumur.git,Smattr/rumur.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Smattr_rumur.git_hullabaloo_CONTRIBUTING.rst +4327f5898a3fdf0cb2a29cfa5318ff61670bb97b,https://github.com/lucc/khard,lucc_khard,lucc/khard,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/lucc_khard_hullabaloo_CONTRIBUTING.rst +7ac26ed9c241d00e8688139b06e804badb25fa46,https://gitlab.freedesktop.org/libinput/libinput,libinput_libinput,libinput/libinput,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/libinput_libinput_hullabaloo_CONTRIBUTING.md +ca39efa570755928384f9ad7f60e62f3535a5c6f,https://github.com/source-foundry/Hack,source-foundry_Hack,source-foundry/Hack,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/source-foundry_Hack_hullabaloo_CONTRIBUTING.md +c724fbdbc3041446ba139feaa9bd2a7189706611,https://github.com/pallets-eco/flask-sqlalchemy,pallets-eco_flask-sqlalchemy,pallets-eco/flask-sqlalchemy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pallets-eco_flask-sqlalchemy_hullabaloo_CONTRIBUTING.rst +b72dea2157ad7cb1eb3b1b7d85326f10f2ca6192,https://github.com/matthewwithanm/pilkit,matthewwithanm_pilkit,matthewwithanm/pilkit,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/matthewwithanm_pilkit_hullabaloo_CONTRIBUTING.rst +a1b157f8fe1e12b8028190c81d43e478df7484e5,https://github.com/PyCQA/flake8-polyfill.git,PyCQA_flake8-polyfill.git,PyCQA/flake8-polyfill.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/PyCQA_flake8-polyfill.git_hullabaloo_CONTRIBUTING.rst +2bbc8714acfcf25aa0ba43389ad1cdb1c0dbafe2,https://github.com/google/pybadges.git,google_pybadges.git,google/pybadges.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_pybadges.git_hullabaloo_CONTRIBUTING.md +257e3aca40db8e2cdc004afbc6c8f9549b628a2a,https://github.com/PyCQA/prospector,PyCQA_prospector,PyCQA/prospector,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/PyCQA_prospector_hullabaloo_CONTRIBUTING.rst +30b0f836ff28750fcadfe5511b35e8b00c0de1e5,https://github.com/geopython/geolinks.git,geopy_geopy,geopy/geopy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/geopython_geolinks.git_hullabaloo_CONTRIBUTING.md +c2c44f0ffc659ebdd1a1faf334c845aefdd371e1,https://github.com/pytest-dev/pytest.git,pytest-dev_pytest.git,pytest-dev/pytest.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pytest-dev_pytest.git_hullabaloo_CONTRIBUTING.txt +b293438ff8f1b39cad9329028b135c768f34c137,https://github.com/pika/pika,pika_pika,pika/pika,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pika_pika_hullabaloo_CONTRIBUTING.md +7057bbbf5abd0b2c39940bbc3fb4a253ff920e59,https://github.com/geopandas/geopandas.git,geopandas_geopandas.git,geopandas/geopandas.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/geopandas_geopandas.git_hullabaloo_CONTRIBUTING.md +c79b6e3e1e7faae5a36d1396c9fce0e0987db8d7,https://github.com/jupyter/jupyter-sphinx.git,jupyter_jupyter-sphinx.git,jupyter/jupyter-sphinx.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jupyter_jupyter-sphinx.git_hullabaloo_CONTRIBUTING.md +e94e9a8b1fe87b82f3d1eb2269898d8e62b38f81,https://github.com/Pylons/venusian,Pylons_venusian,Pylons/venusian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Pylons_venusian_hullabaloo_CONTRIBUTING.rst +d5e671f1ce4b4086a7fbfb06efae14dae9a5fccb,https://github.com/jjjake/internetarchive.git,jjjake_internetarchive.git,jjjake/internetarchive.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jjjake_internetarchive.git_hullabaloo_CONTRIBUTING.rst +8544eabcb99f3bc58052e722e8317ad7a9bfd620,https://github.com/openstack/rally.git,openstack_rally.git,openstack/rally.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/openstack_rally.git_hullabaloo_CONTRIBUTING.rst +70d28de924a200102d98d55757c986ab2b839753,https://github.com/coturn/coturn,coturn_coturn,coturn/coturn,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/coturn_coturn_hullabaloo_CONTRIBUTING.md +841005cbfaa6a3d3f97c96b5228838eba3f41ab9,https://github.com/python/typed_ast.git,python_typed_ast.git,python/typed/ast.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python_typed_ast.git_hullabaloo_CONTRIBUTING.md +422b3ede6532a10f6171388cd7d4d940e872d044,https://github.com/pyutilib/pyutilib,pyutilib_pyutilib,pyutilib/pyutilib,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pyutilib_pyutilib_hullabaloo_CONTRIBUTING.md +a112f9a9c6f901f8f249ea40efbfee2aeb36644e,https://github.com/pavlov99/json-rpc,pavlov99_json-rpc,pavlov99/json-rpc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pavlov99_json-rpc_hullabaloo_CONTRIBUTING.md +2021e1904a53a1eb7509e488b3216136c5b32f35,https://github.com/pygraphviz/pygraphviz.git,pygraphviz_pygraphviz.git,pygraphviz/pygraphviz.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pygraphviz_pygraphviz.git_hullabaloo_CONTRIBUTING.rst +d1041acfbaabe3df0642f3312f9f0148fe819a7a,https://github.com/google/xsecurelock,google_xsecurelock,google/xsecurelock,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_xsecurelock_hullabaloo_CONTRIBUTING +7c1ee28f13fe9c947d956d9b2ba298cba4776e1a,https://github.com/mongoengine/flask-mongoengine,mongoengine_mongoengine,mongoengine/mongoengine,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mongoengine_flask-mongoengine_hullabaloo_CONTRIBUTING.md +ddbefff7edcf47906373c9fa1175ba7a8927e446,https://github.com/karenetheridge/B-Hooks-OP-Check,karenetheridge_B-Hooks-OP-Check,karenetheridge/B-Hooks-OP-Check,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/karenetheridge_B-Hooks-OP-Check_hullabaloo_CONTRIBUTING +24eba1bbc0aafc9e503747e688cacfdb88ad2fb8,https://github.com/datastax/python-driver.git,datastax_python-driver.git,datastax/python-driver.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/datastax_python-driver.git_hullabaloo_CONTRIBUTING.md +8d52ba7a184305e474eddd1f3f7cacd0e26c2cbe,https://github.com/petkaantonov/bluebird.git,petkaantonov_bluebird.git,petkaantonov/bluebird.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/petkaantonov_bluebird.git_hullabaloo_CONTRIBUTING.md +fafacbff1595d5e94c7afb633ec84ff1e7229ebb,https://github.com/Pylons/plaster_pastedeploy.git,Pylons_plaster_pastedeploy.git,Pylons/plaster/pastedeploy.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Pylons_plaster_pastedeploy.git_hullabaloo_CONTRIBUTING.rst +aeed204942a7305dc28ae1523a9befb3cb053fe8,https://github.com/jtauber/pyuca,jtauber_pyuca,jtauber/pyuca,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jtauber_pyuca_hullabaloo_CONTRIBUTING.md +cb947f6d12d125fd84a051f65808fb4a88825307,https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git,gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org/ruby/gems/gitlab-mail/room.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gitlab-org_ruby_gems_gitlab-mail_room.git_hullabaloo_CONTRIBUTING.md +13716d8b48c8380e3e0eb962a9ea2d452182db57,https://github.com/google/highwayhash,google_highwayhash,google/highwayhash,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_highwayhash_hullabaloo_CONTRIBUTING +6088ce10b9afad415ebe3fc96cb40e271a0cf910,https://gitlab.com/libvirt/libvirt-python.git,libvirt_libvirt-python.git,libvirt/libvirt-python.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/libvirt_libvirt-python.git_hullabaloo_CONTRIBUTING.rst +03993c4b41ac65105f9a118c6b4624b692ddea30,https://github.com/digitalbazaar/pyld,digitalbazaar_pyld,digitalbazaar/pyld,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/digitalbazaar_pyld_hullabaloo_CONTRIBUTING.rst +797757bde2e305e035bcba65a93993ecd0716398,https://github.com/rsms/inter,rsms_inter,rsms/inter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/rsms_inter_hullabaloo_CONTRIBUTING.md +44a829cf8946707bd08ed17cc2342b69b9d2cab1,https://github.com/chaijs/chai,chaijs_chai,chaijs/chai,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/chaijs_chai_hullabaloo_CONTRIBUTING.md +232cae5253382d8d8f7678dbda1ee37424904cab,https://gitlab.freedesktop.org/dbus/dbus-python,dbus_dbus-python,dbus/dbus-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dbus_dbus-python_hullabaloo_CONTRIBUTING +d4cfa1f208803cb95a4e2261bd2c3fc132f4b347,https://github.com/python-ldap/python-ldap,python-ldap_python-ldap,python-ldap/python-ldap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python-ldap_python-ldap_hullabaloo_CONTRIBUTING.rst +3b766a866fc78226e43a9efe692220bbcb87e399,https://github.com/pallets/click.git,pallets_click.git,pallets/click.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pallets_click.git_hullabaloo_CONTRIBUTING.rst +a5f5b6f0420786fae6120d54fc8eac9b0f22b745,https://github.com/ktbyers/netmiko,ktbyers_netmiko,ktbyers/netmiko,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ktbyers_netmiko_hullabaloo_CONTRIBUTING.md +7026b4a2975340fd3535cfebff39171a07008688,https://github.com/spyder-ide/qtawesome,spyder-ide_qtawesome,spyder-ide/qtawesome,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/spyder-ide_qtawesome_hullabaloo_CONTRIBUTING.md +b13de9045fe41c913cb2ad651eefba6c440a3a9a,https://github.com/puppetlabs/facter.git,puppetlabs_facter.git,puppetlabs/facter.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/puppetlabs_facter.git_hullabaloo_CONTRIBUTING.md +b80894938070fcec09a6dec7c8648f4d167fc45a,https://github.com/marshmallow-code/flask-marshmallow.git,marshmallow-code_flask-marshmallow.git,marshmallow-code/flask-marshmallow.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/marshmallow-code_flask-marshmallow.git_hullabaloo_CONTRIBUTING.rst +129ce46dc40e72147385082736475c2cc8926968,https://github.com/resurrecting-open-source-projects/outguess,resurrecting-open-source-projects_outguess,resurrecting-open-source-projects/outguess,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/resurrecting-open-source-projects_outguess_hullabaloo_CONTRIBUTING.md +c474d99907a19deea5a4cb7ee3ebea1add698006,https://github.com/spyder-ide/qtpy,spyder-ide_qtpy,spyder-ide/qtpy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/spyder-ide_qtpy_hullabaloo_CONTRIBUTING.rst +d90770d185c28742ee750a732aa3749ff58ff158,https://github.com/softlayer/softlayer-python,softlayer_softlayer-python,softlayer/softlayer-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/softlayer_softlayer-python_hullabaloo_CONTRIBUTING.md +3eae6f4fff3fd01a40f56b19f02e0690266fc824,https://github.com/shouldjs/should.js.git,shouldjs_should.js.git,shouldjs/should.js.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/shouldjs_should.js.git_hullabaloo_CONTRIBUTING.md +7c6ed297ddaad3c2f78fed1c3b6bb548c6f658e1,https://github.com/jupyter/terminado,jupyter_terminado,jupyter/terminado,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jupyter_terminado_hullabaloo_CONTRIBUTING.rst +1e8e049887206b7933b8cc3c7ceeda864fb4c05e,https://github.com/django-waffle/django-waffle,django-waffle_django-waffle,django-waffle/django-waffle,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/django-waffle_django-waffle_hullabaloo_CONTRIBUTING.rst +d9823fcc76a6cdad4cc68ad138cc5bbbf810a764,https://github.com/metaodi/osmapi.git,metaodi_osmapi.git,metaodi/osmapi.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/metaodi_osmapi.git_hullabaloo_CONTRIBUTING.md +f43f8495c79fa9374ad2a5e5011f31d555e0cdec,https://github.com/kilobyte/memkind,kilobyte_memkind,kilobyte/memkind,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/kilobyte_memkind_hullabaloo_CONTRIBUTING +e0e50841f91c1d2c77145f475aab67bf02ce1973,https://github.com/pallets/itsdangerous,pallets_itsdangerous,pallets/itsdangerous,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pallets_itsdangerous_hullabaloo_CONTRIBUTING.rst +65577d13992ba086bbba7882dda352d7b232b385,https://github.com/twilio/twilio-python,twilio_twilio-python,twilio/twilio-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/twilio_twilio-python_hullabaloo_CONTRIBUTING.md +d5420216df8a35c16e569a353b41029ec667ebf3,https://github.com/gawel/panoramisk.git,gawel_panoramisk.git,gawel/panoramisk.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gawel_panoramisk.git_hullabaloo_CONTRIBUTING.rst +ab769e86b0e516d37a52038bb337053addf9af4a,https://github.com/faye/faye,faye_faye,faye/faye,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/faye_faye_hullabaloo_CONTRIBUTING.md +fdf55c2817c9a457de4d5609cabfda0aa0620dc1,https://github.com/openstack/swift.git,openstack_swift.git,openstack/swift.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/openstack_swift.git_hullabaloo_CONTRIBUTING.md +6e1fc74ed936860f9609f964d48d63f380c58170,https://github.com/RIPE-NCC/ripe-atlas-cousteau.git,RIPE-NCC_ripe-atlas-cousteau.git,RIPE-NCC/ripe-atlas-cousteau.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/RIPE-NCC_ripe-atlas-cousteau.git_hullabaloo_CONTRIBUTING.rst +2cc5f14309704d80063a750b85861cb86dc40e7f,https://github.com/google/python-gflags.git,google_python-gflags.git,google/python-gflags.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_python-gflags.git_hullabaloo_CONTRIBUTING.md +1094a4c862d1b600a6a93d04f276809f5cd03701,https://github.com/mdbootstrap/perfect-scrollbar,mdbootstrap_perfect-scrollbar,mdbootstrap/perfect-scrollbar,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mdbootstrap_perfect-scrollbar_hullabaloo_CONTRIBUTING.md +350b191468d1a701d945a062bbf4df9fbdaaaaae,https://github.com/heroku/netrc,heroku_netrc,heroku/netrc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/heroku_netrc_hullabaloo_CONTRIBUTING.md +48b19a2272867854f097058dda4f55d05d93e28d,https://github.com/eclipse/paho.mqtt.python.git,eclipse_paho.mqtt.python.git,eclipse/paho.mqtt.python.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/eclipse_paho.mqtt.python.git_hullabaloo_CONTRIBUTING.md +d424c38e59bca66492f90817a5990922b4b004d0,https://github.com/requests-cache/requests-cache,requests-cache_requests-cache,requests-cache/requests-cache,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/requests-cache_requests-cache_hullabaloo_CONTRIBUTING.md +fc5abc05876bbffb8aa8776868492a5bcb596c99,https://github.com/mozilla/source-map,mozilla_source-map,mozilla/source-map,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mozilla_source-map_hullabaloo_CONTRIBUTING.md +e2d247f40339088710ba2322bea3e44f801acfac,https://github.com/dagolden/math-random-oo.git,dagolden_math-random-oo.git,dagolden/math-random-oo.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dagolden_math-random-oo.git_hullabaloo_CONTRIBUTING +7d375e1b7502995703fb3c1729ed4f746d169751,https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git,pub_scm_linux_kernel_git_jberg_iw.git,pub/scm/linux/kernel/git/jberg/iw.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pub_scm_linux_kernel_git_jberg_iw.git_hullabaloo_CONTRIBUTING +3a995294a99a00a62fb451c8dc3f0c404c8e92f5,https://github.com/pydata/xarray,pydata_xarray,pydata/xarray,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pydata_xarray_hullabaloo_CONTRIBUTING.md +27c2db2bf26039bef41323c964bc4e0317a7b4f5,https://github.com/pantsbuild/pex.git,pantsbuild_pex.git,pantsbuild/pex.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pantsbuild_pex.git_hullabaloo_CONTRIBUTING.md +8d90a86cdf4da7bc1ea520ef5701a63780638c13,https://github.com/nginxinc/nginx-prometheus-exporter,nginxinc_nginx-prometheus-exporter,nginxinc/nginx-prometheus-exporter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/nginxinc_nginx-prometheus-exporter_hullabaloo_CONTRIBUTING.md +ba1ef7a8f47a6140f8323a393f0e04f818f5f52d,https://github.com/sphinx-contrib/restbuilder.git,sphinx-contrib_restbuilder.git,sphinx-contrib/restbuilder.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/sphinx-contrib_restbuilder.git_hullabaloo_CONTRIBUTING.rst +1c6af940c08ca2fdb142916974a192ab6ff9ea7c,https://github.com/zopefoundation/zope.component,zopefoundation_zope.component,zopefoundation/zope.component,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zopefoundation_zope.component_hullabaloo_CONTRIBUTING.md +87d2f69a591b29c254f6ce1974a8347d746bfe9f,https://github.com/iovisor/bcc.git,iovisor_bcc.git,iovisor/bcc.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/iovisor_bcc.git_hullabaloo_CONTRIBUTING-SCRIPTS.md +04693fc6beb2d2dbb3aa8d33932a171900ea239c,https://github.com/diff-match-patch-python/diff-match-patch,diff-match-patch-python_diff-match-patch,diff-match-patch-python/diff-match-patch,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/diff-match-patch-python_diff-match-patch_hullabaloo_CONTRIBUTING.md +0d125a567e7ffa9dfe285df8c436783d29594c79,https://github.com/boto/botocore,boto_botocore,boto/botocore,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/boto_botocore_hullabaloo_CONTRIBUTING.md +fc679cf33ed2c65c2deaf9235f08889ef95dd2f2,https://github.com/sferik/twitter,sferik_twitter,sferik/twitter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/sferik_twitter_hullabaloo_CONTRIBUTING.md +3ce1cbdc192a709b51290725506c31a8959423ad,https://github.com/common-workflow-language/schema_salad,common-workflow-language_schema_salad,common-workflow-language/schema/salad,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/common-workflow-language_schema_salad_hullabaloo_CONTRIBUTING.md +892ea9e222ca7148551c3d00bb37ce9e24316b16,https://github.com/jazzband/django-recurrence,jazzband_django-recurrence,jazzband/django-recurrence,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jazzband_django-recurrence_hullabaloo_CONTRIBUTING.rst +915f126b9484ad7fe6df0d7f323bd55f93f1c917,https://github.com/nesquena/rabl,nesquena_rabl,nesquena/rabl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/nesquena_rabl_hullabaloo_CONTRIBUTING.md +0a6b00dd73c2c49d38e50d01add558e1bb4f3c92,https://github.com/pytest-dev/pytest-cov.git,pytest-dev_pytest-cov.git,pytest-dev/pytest-cov.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pytest-dev_pytest-cov.git_hullabaloo_CONTRIBUTING.md +90014cb496817f7b9544832073137f9e463e746a,https://github.com/michaeljones/breathe.git,michaeljones_breathe.git,michaeljones/breathe.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/michaeljones_breathe.git_hullabaloo_CONTRIBUTING.rst +f6ee96cf37bdb805ed35416b4370e3e407875bca,https://github.com/Pylons/hupper,Pylons_hupper,Pylons/hupper,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Pylons_hupper_hullabaloo_CONTRIBUTING.rst +451c9909d4fd7bc5301bf032a0b6f21982dac4cb,https://github.com/django-extensions/django-extensions,django-extensions_django-extensions,django-extensions/django-extensions,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/django-extensions_django-extensions_hullabaloo_CONTRIBUTING.md +fe623bbfadfe8d32efffa9dcded4db1f9b3d9550,https://github.com/mcmtroffaes/pathlib2.git,mcmtroffaes_pathlib2.git,mcmtroffaes/pathlib2.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mcmtroffaes_pathlib2.git_hullabaloo_CONTRIBUTING.rst +937da03f5709f943f9ed23ff786b42aa78fac336,https://github.com/webrtchacks/adapter,webrtchacks_adapter,webrtchacks/adapter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/webrtchacks_adapter_hullabaloo_CONTRIBUTING +da2b0f065eb084d7c9f607a8e1f8fbad8036e1ba,https://github.com/jazzband/django-debug-toolbar.git,jazzband_django-debug-toolbar.git,jazzband/django-debug-toolbar.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jazzband_django-debug-toolbar.git_hullabaloo_CONTRIBUTING.md +048b33b80c9a11bf11dd72a385e16152dc1ec48b,https://github.com/rasterio/rasterio.git,rasterio_rasterio.git,rasterio/rasterio.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/rasterio_rasterio.git_hullabaloo_CONTRIBUTING.rst +44be7c4582c077924d88a7a551cc31700f1014f3,https://github.com/zyga/padme,zyga_padme,zyga/padme,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zyga_padme_hullabaloo_CONTRIBUTING.rst +4471b7e8506082ed7daf92304cc2f35eb844a5d2,https://github.com/dropbox/dropbox-sdk-python,dropbox_dropbox-sdk-python,dropbox/dropbox-sdk-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dropbox_dropbox-sdk-python_hullabaloo_CONTRIBUTING.rst +29f13ea202f07dce62f9073f24b2daa3d780a55f,https://github.com/scrapinghub/dateparser,scrapinghub_dateparser,scrapinghub/dateparser,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/scrapinghub_dateparser_hullabaloo_CONTRIBUTING.rst +02a8a52e005c0fdfff80f0b709b59f8cfccdf7fc,https://gitlab.freedesktop.org/gstreamer/orc,gstreamer_orc,gstreamer/orc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gstreamer_orc_hullabaloo_CONTRIBUTING.md +5448e7ee9a18599042e3adf6e9cb34d812a82323,https://github.com/kornelski/pngquant.git,kornelski_pngquant.git,kornelski/pngquant.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/kornelski_pngquant.git_hullabaloo_CONTRIBUTING.md +14eb52c34131bd702778b6d9a02d5f754e329e76,https://github.com/jazzband/django-pipeline,jazzband_django-pipeline,jazzband/django-pipeline,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jazzband_django-pipeline_hullabaloo_CONTRIBUTING.rst +fdf513302703d830eddbac40a8757c6b02549261,https://github.com/pytroll/satpy,pytroll_satpy,pytroll/satpy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pytroll_satpy_hullabaloo_CONTRIBUTING.rst +647f21332d37c05e888eb9d01261310450704d53,https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info,GNOME_mobile-broadband-provider-info,GNOME/mobile-broadband-provider-info,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/GNOME_mobile-broadband-provider-info_hullabaloo_CONTRIBUTING +e903b9c057a41ce5039c9d91ccbce549e5b71126,https://github.com/cookiecutter/whichcraft,cookiecutter_whichcraft,cookiecutter/whichcraft,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/cookiecutter_whichcraft_hullabaloo_CONTRIBUTING.rst +f0f7a91b3157790aac8c568e3349dde8dca1fac5,https://github.com/encode/django-rest-framework,encode_django-rest-framework,encode/django-rest-framework,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/encode_django-rest-framework_hullabaloo_CONTRIBUTING.md +dea4b862e6548858f5645b6359eff9a4cb51b594,https://github.com/idlesign/django-sitetree,idlesign_django-sitetree,idlesign/django-sitetree,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/idlesign_django-sitetree_hullabaloo_CONTRIBUTING +232cae5253382d8d8f7678dbda1ee37424904cab,https://gitlab.freedesktop.org/dbus/dbus-glib.git,dbus_dbus-glib.git,dbus/dbus-glib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dbus_dbus-glib.git_hullabaloo_CONTRIBUTING +638713daab211eb104f0228a7d59af227a89008f,https://github.com/elastic/elasticsearch-py.git,elastic_elasticsearch-py.git,elastic/elasticsearch-py.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/elastic_elasticsearch-py.git_hullabaloo_CONTRIBUTING.md +5445c0a95352506da2677f3de09c07286d5140ea,https://github.com/pylons/plaster,pylons_plaster,pylons/plaster,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pylons_plaster_hullabaloo_CONTRIBUTING.rst +ca82caaeb6ee6ef2820ca6726eba5b8f86f5e566,https://github.com/rytilahti/python-miio.git,rytilahti_python-miio.git,rytilahti/python-miio.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/rytilahti_python-miio.git_hullabaloo_CONTRIBUTING.md +d5d49519e52c665b4789ce9e44c558cbcc127b8a,https://github.com/ronf/asyncssh,ronf_asyncssh,ronf/asyncssh,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ronf_asyncssh_hullabaloo_CONTRIBUTING.rst +717482dd873a9032cbb019062aa06401f871f765,https://github.com/zopefoundation/zc.lockfile,zopefoundation_zc.lockfile,zopefoundation/zc.lockfile,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zopefoundation_zc.lockfile_hullabaloo_CONTRIBUTING.md +77cf9560ceb833f7dd51c10b6d10519ef7875084,https://github.com/ianare/exif-py,ianare_exif-py,ianare/exif-py,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ianare_exif-py_hullabaloo_CONTRIBUTING.rst +c6c10123301a20c6d6981c7062617edb9425fac2,https://github.com/aptly-dev/aptly.git,aptly-dev_aptly.git,aptly-dev/aptly.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/aptly-dev_aptly.git_hullabaloo_CONTRIBUTING.md +e43ab548b28c8d1af01253088a44a41e35c08722,https://github.com/pymodbus-dev/pymodbus.git,pymodbus-dev_pymodbus.git,pymodbus-dev/pymodbus.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pymodbus-dev_pymodbus.git_hullabaloo_CONTRIBUTING.md +b7759b7b62bce8f658aab5a1b8968a539d10208d,https://github.com/theskumar/python-dotenv.git,theskumar_python-dotenv.git,theskumar/python-dotenv.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/theskumar_python-dotenv.git_hullabaloo_CONTRIBUTING.md +aca958de3e7d22375a10a642d551a27e3686415c,https://github.com/sobolevn/django-split-settings,sobolevn_django-split-settings,sobolevn/django-split-settings,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/sobolevn_django-split-settings_hullabaloo_CONTRIBUTING.rst +edfc090ddb977752557febb1c99981a4efb612da,https://github.com/powerline/powerline,powerline_powerline,powerline/powerline,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/powerline_powerline_hullabaloo_CONTRIBUTING.rst +a557ccc7a87ebe0ae1222bff9cb5eb82d54db726,https://github.com/karenetheridge/Module-Manifest,karenetheridge_Module-Manifest,karenetheridge/Module-Manifest,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/karenetheridge_Module-Manifest_hullabaloo_CONTRIBUTING +1dafef2b20dc3e2ff1e3adea2fd6af4a39db87c0,https://github.com/tantale/deprecated.git,tantale_deprecated.git,tantale/deprecated.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/tantale_deprecated.git_hullabaloo_CONTRIBUTING.rst +feed17b67d83bc8e7b8a72c62c56c5103c7bebf2,https://github.com/jmaslak/Net-Netmask.git,jmaslak_Net-Netmask.git,jmaslak/Net-Netmask.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jmaslak_Net-Netmask.git_hullabaloo_CONTRIBUTING +26075d8710cc4f460cb8645352ca63cf4398568c,https://github.com/pazz/alot,pazz_alot,pazz/alot,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pazz_alot_hullabaloo_CONTRIBUTING.rst +b656d864ed490c8370304c5170e95c42d8fa966a,https://github.com/resurrecting-open-source-projects/cbm,resurrecting-open-source-projects_cbm,resurrecting-open-source-projects/cbm,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/resurrecting-open-source-projects_cbm_hullabaloo_CONTRIBUTING.md +ff9658b9e170031daa6dc66b9116c53a214652eb,https://github.com/thumbor/libthumbor,thumbor_libthumbor,thumbor/libthumbor,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/thumbor_libthumbor_hullabaloo_CONTRIBUTING +dc0c5a37faf31c28bcf4765206482ef693b83ecd,https://github.com/epeli/underscore.string,epeli_underscore.string,epeli/underscore.string,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/epeli_underscore.string_hullabaloo_CONTRIBUTING.md +117c4f758cd5da2eea272f7ef5418aaa41996008,https://gitlab.com/jas/libntlm,jas_libntlm,jas/libntlm,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jas_libntlm_hullabaloo_CONTRIBUTING.md +4425735296e32c33781be0c76e77a0d9811b6206,https://github.com/untitaker/python-atomicwrites,untitaker_python-atomicwrites,untitaker/python-atomicwrites,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/untitaker_python-atomicwrites_hullabaloo_CONTRIBUTING.rst +0acc6486652024304058da5baf87113fe97f5464,https://github.com/django-polymorphic/django-polymorphic,django-polymorphic_django-polymorphic,django-polymorphic/django-polymorphic,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/django-polymorphic_django-polymorphic_hullabaloo_CONTRIBUTING.rst +e02d5e4788e7a477d061accdefbd701d6fa876cf,https://github.com/mwilliamson/spur.py.git,mwilliamson_spur.py.git,mwilliamson/spur.py.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mwilliamson_spur.py.git_hullabaloo_CONTRIBUTING.rst diff --git a/12825_revision/misc_data_files/fvf_013025_README_manifest.csv b/12825_revision/misc_data_files/fvf_013025_README_manifest.csv new file mode 100644 index 0000000..51d144c --- /dev/null +++ b/12825_revision/misc_data_files/fvf_013025_README_manifest.csv @@ -0,0 +1,1319 @@ +commit_hash,upstream_vcs_link,repo_id,project_handle,new_filepath +07ae36e644cdca99eb5c2bbc5fbbf562512325a6,https://github.com/aio-libs/aiomysql.git,aio-libs_aiomysql.git,aio-libs/aiomysql.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aio-libs_aiomysql.git_hullabaloo_README +1fe7af9f08965945584f0b7feade1cfa61160e26,https://anongit.kde.org/palapeli.git,palapeli.git,palapeli.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/palapeli.git_hullabaloo_README +6a84771afad1a353b2352d838e3105306a601780,https://github.com/Washington-University/CiftiLib,Washington-University_CiftiLib,Washington-University/CiftiLib,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Washington-University_CiftiLib_hullabaloo_README +dee08b60b21d8d597d87af9d664d21eadbbe3e29,https://github.com/anymail/django-anymail,anymail_django-anymail,anymail/django-anymail,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/anymail_django-anymail_hullabaloo_README.rst +e7f47fd3dbe025af00403ec2ae59c2b86938c5b6,https://gitlab.freedesktop.org/virgl/virglrenderer.git,virgl_virglrenderer.git,virgl/virglrenderer.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/virgl_virglrenderer.git_hullabaloo_README.md +f382b5ffc445e45a110734f5396728da7914aeb6,https://github.com/aio-libs/aiohttp.git,aio-libs_aiohttp.git,aio-libs/aiohttp.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aio-libs_aiohttp.git_hullabaloo_README.rst +276cad5b29e45014e16f2fc8c65e2e97dcb9afcd,https://github.com/rhboot/dumpet.git,rhboot_dumpet.git,rhboot/dumpet.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rhboot_dumpet.git_hullabaloo_README +04ffbd441fae69ee073cce9a64c3245f8a96a4b8,https://github.com/python-rope/rope,python-rope_rope,python-rope/rope,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-rope_rope_hullabaloo_README.txt +eb5d332af5db85cc51a12702980fb6261ff85486,https://github.com/valr/cbatticon.git,valr_cbatticon.git,valr/cbatticon.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/valr_cbatticon.git_hullabaloo_README +47cb8900bdbc0eebeb60c86498cbd8c26f1e1991,https://github.com/ygrek/ocaml-extlib.git,ygrek_ocaml-extlib.git,ygrek/ocaml-extlib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ygrek_ocaml-extlib.git_hullabaloo_README.txt +4b44403aebf7f8111f755ab622535e7a8bd7790b,https://github.com/pure-data/libdir,pure-data_libdir,pure-data/libdir,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pure-data_libdir_hullabaloo_README.txt +92bd1699c42e5f34b7fda3954ac3bb204bfb316e,https://github.com/csete/qthid,csete_qthid,csete/qthid,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/csete_qthid_hullabaloo_README.txt +679bf7de5aa77e34f534ce31ce33ea7ff0707317,https://github.com/box/genty.git,box_genty.git,box/genty.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/box_genty.git_hullabaloo_README.rst +7c8b38777cfb353595f2ba6bad2a5a03dce70c3d,https://gitlab.gnome.org/GNOME/libgit2-glib.git,GNOME_libgit2-glib.git,GNOME/libgit2-glib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_libgit2-glib.git_hullabaloo_README +0fc1320e8b7fafc7b061c0c74112df7b39141333,https://github.com/dimitri/prefix,dimitri_prefix,dimitri/prefix,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dimitri_prefix_hullabaloo_README.txt +c7c68504eb2d666b83c70b29336466301250bdfc,https://gitlab.com/compiz/compiz-plugins-extra.git,compiz_compiz-plugins-extra.git,compiz/compiz-plugins-extra.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/compiz_compiz-plugins-extra.git_hullabaloo_README +8be4281fa271b9b04c235107607d96c8a0cbbe42,https://github.com/AlisterH/gwc.git,AlisterH_gwc.git,AlisterH/gwc.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/AlisterH_gwc.git_hullabaloo_README +a0b321f7a1ae658ee62899b776416c8eceb6db61,https://github.com/hackebrot/jinja2-time,hackebrot_jinja2-time,hackebrot/jinja2-time,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hackebrot_jinja2-time_hullabaloo_README.rst +823e6e647ea6f3554b7c15da761bf30b3f659899,https://github.com/libyal/libolecf.git,libyal_libolecf.git,libyal/libolecf.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libolecf.git_hullabaloo_README +10fef8f8e4ee83cf54feadbb5ffb522efec739fc,https://github.com/gitpython-developers/gitdb,gitpython-developers_gitdb,gitpython-developers/gitdb,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gitpython-developers_gitdb_hullabaloo_README +a56e5dc17238ae926e4219fee9460eaf99294324,https://anongit.kde.org/kblocks.git,kblocks.git,kblocks.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kblocks.git_hullabaloo_README.PACKAGERS +d81202bf64b0bcceac3abe338fa45cdda1ede021,https://github.com/mozman/svgwrite.git,mozman_svgwrite.git,mozman/svgwrite.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mozman_svgwrite.git_hullabaloo_README.TXT +41cf126808a4dc6f107790d7189767e562efe588,https://github.com/avalentino/pyepr.git,avalentino_pyepr.git,avalentino/pyepr.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/avalentino_pyepr.git_hullabaloo_README.txt +c74f931930f9124205c1a4d9ba51700909d43b88,https://github.com/Koed00/django-q,Koed00_django-q,Koed00/django-q,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Koed00_django-q_hullabaloo_README.md +48fff954a3f1bc5cfc1b51c3cce3f8c5d707f2e0,https://github.com/mpounsett/nagiosplugin.git,mpounsett_nagiosplugin.git,mpounsett/nagiosplugin.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mpounsett_nagiosplugin.git_hullabaloo_README.txt +edbf40ae320bf79bdd3ed520ffe680b483162365,https://github.com/stachenov/quazip.git,stachenov_quazip.git,stachenov/quazip.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/stachenov_quazip.git_hullabaloo_README +da6e99e59b900e491cb9ca4c4b1288bb7b5a4ec7,https://github.com/kilobyte/tran,kilobyte_tran,kilobyte/tran,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kilobyte_tran_hullabaloo_README +8b81e75b90c6ae12ecc8f9b99e492be3e740ac45,https://gitlab.com/libosinfo/libosinfo.git,libosinfo_libosinfo.git,libosinfo/libosinfo.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libosinfo_libosinfo.git_hullabaloo_README +57ef501c71973720e1bbd4f1dcf0b5ef1126ec41,https://github.com/pympler/pympler.git,pympler_pympler.git,pympler/pympler.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pympler_pympler.git_hullabaloo_README +5aba416d687a5e29d444659ba2980d9c532846af,https://github.com/tlby/netmask,tlby_netmask,tlby/netmask,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tlby_netmask_hullabaloo_README +809ed7607003132702712bb23ff61b10403a3fb8,https://github.com/merge/tslib-debian,merge_tslib-debian,merge/tslib-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/merge_tslib-debian_hullabaloo_README.md +45118f083732062058bb93201c6745c5e195989c,https://github.com/mcmtroffaes/latexcodec,mcmtroffaes_latexcodec,mcmtroffaes/latexcodec,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mcmtroffaes_latexcodec_hullabaloo_README.rst +a3ac33022c1b7773916660cf486849513d804a47,https://github.com/linux-thinkpad/tp_smapi,linux-thinkpad_tp_smapi,linux-thinkpad/tp/smapi,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/linux-thinkpad_tp_smapi_hullabaloo_README +047ec416f5996d7852a7a457c96231c358d8bca8,https://github.com/pytest-dev/apipkg,pytest-dev_apipkg,pytest-dev/apipkg,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_apipkg_hullabaloo_README.txt +72092770328659988998d5693c1a23a0dd74990f,https://github.com/exhuma/python-cluster.git,exhuma_python-cluster.git,exhuma/python-cluster.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/exhuma_python-cluster.git_hullabaloo_README +8600faf38862598e2655e3f934ab2e3f109a41d6,https://github.com/ahoward/open4,ahoward_open4,ahoward/open4,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ahoward_open4_hullabaloo_README +aef5754f5f47edd4fea51d3dedcbcb384bbdccc3,https://github.com/zopefoundation/roman,zopefoundation_roman,zopefoundation/roman,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zopefoundation_roman_hullabaloo_README.rst +b629557a03a86e1e9aa87e4f44b8ccb288be3447,https://gitlab.com/fbb-git/ssh-cron.git,fbb-git_ssh-cron.git,fbb-git/ssh-cron.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fbb-git_ssh-cron.git_hullabaloo_README +a7ab7c3c9fa6011ee959598f9abe49afdefc8417,https://github.com/moxie0/sslsniff.git,moxie0_sslsniff.git,moxie0/sslsniff.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/moxie0_sslsniff.git_hullabaloo_README +afc6228460ffc178c78aa4bd99e5e6f06a6e752b,https://github.com/seattlerb/ruby_parser.git,seattlerb_ruby_parser.git,seattlerb/ruby/parser.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/seattlerb_ruby_parser.git_hullabaloo_README.txt +efcddc5889c75e85e1b07e497c28cfc736b5d115,https://gitlab.gnome.org/GNOME/geocode-glib.git,GNOME_geocode-glib.git,GNOME/geocode-glib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_geocode-glib.git_hullabaloo_README +fbe7952cce11e8073378b063bdae7ab277a96eb8,https://github.com/tqdm/tqdm.git,tqdm_tqdm.git,tqdm/tqdm.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tqdm_tqdm.git_hullabaloo_README.md +1353286208dd351dd8b7cc7e179beed701d2c1aa,https://github.com/alecthomas/devtodo,alecthomas_devtodo,alecthomas/devtodo,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/alecthomas_devtodo_hullabaloo_README +311d9f42e52b832119170d90e818f0f0b0078851,https://github.com/intridea/oauth2,intridea_oauth2,intridea/oauth2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/intridea_oauth2_hullabaloo_README.rdoc +23ede92b13261d3d2ec9f583b197351142f723d8,https://github.com/azaghal/pydenticon,azaghal_pydenticon,azaghal/pydenticon,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/azaghal_pydenticon_hullabaloo_README.rst +d439e6a783ab231cd71b9ea041ada7563878413c,https://github.com/jeremyevans/sequel_pg.git,jeremyevans_sequel_pg.git,jeremyevans/sequel/pg.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jeremyevans_sequel_pg.git_hullabaloo_README.rdoc +7e702b02482c4639e5926b6635cd02cd800ce8e5,https://github.com/KittyKatt/screenFetch.git,KittyKatt_screenFetch.git,KittyKatt/screenFetch.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/KittyKatt_screenFetch.git_hullabaloo_README +c3a39f874a5c10e91ee2315271f13ae74ee381fd,https://github.com/python-zeroconf/python-zeroconf.git,python-zeroconf_python-zeroconf.git,python-zeroconf/python-zeroconf.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-zeroconf_python-zeroconf.git_hullabaloo_README +62e00619bed37d1718a7f5a778e11af1f2782f18,https://github.com/risujin/cellwriter,risujin_cellwriter,risujin/cellwriter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/risujin_cellwriter_hullabaloo_README.md +117c145f95416db6fb9805f46f567acb59a6f61e,https://github.com/muir/File-Flock.git,muir_File-Flock.git,muir/File-Flock.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/muir_File-Flock.git_hullabaloo_README +71d359fcef21c5a8583a0ec98d32f76b94005d91,https://github.com/datamapper/do,datamapper_do,datamapper/do,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/datamapper_do_hullabaloo_README +7ccb18122aa973f4c379dcf16681a1406b7769e7,https://github.com/opentyrian/opentyrian.git,opentyrian_opentyrian.git,opentyrian/opentyrian.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/opentyrian_opentyrian.git_hullabaloo_README +180f8f04f8dfcfdc2efd87a75d4deff5b3b60691,https://github.com/NielsMayer/mudita24,NielsMayer_mudita24,NielsMayer/mudita24,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/NielsMayer_mudita24_hullabaloo_README +4f5db8e196108c66c96d1fd92170ed192ab90784,https://github.com/Azure/msrestazure-for-python,Azure_msrestazure-for-python,Azure/msrestazure-for-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Azure_msrestazure-for-python_hullabaloo_README.rst +2dbf88e14e41acb847f5f58874ca803cb6bf7299,https://github.com/jaldhar/Module-Starter-Plugin-CGIApp,jaldhar_Module-Starter-Plugin-CGIApp,jaldhar/Module-Starter-Plugin-CGIApp,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jaldhar_Module-Starter-Plugin-CGIApp_hullabaloo_README +4a8ed266f778f4b4cb8ec3704c48a91ee984503d,https://github.com/ap/Test-File-Contents.git,ap_Test-File-Contents.git,ap/Test-File-Contents.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ap_Test-File-Contents.git_hullabaloo_README +573a37e39dc392bd7cff5271d96973b9c4ee8f6d,https://github.com/cokelaer/colormap,cokelaer_colormap,cokelaer/colormap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cokelaer_colormap_hullabaloo_README.md +d2577f79247d7db60bf160881b1b64e9fa10e4fd,https://github.com/vcrhonek/hwdata.git,vcr_vcr,vcr/vcr,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/vcrhonek_hwdata.git_hullabaloo_README +4edd4de537a3957bd30b2d739e5918eeb2e07b86,https://anongit.kde.org/ksquares.git,ksquares.git,ksquares.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ksquares.git_hullabaloo_README +e7d6d472c21aa80c28be01c0d6dcbfd250d57a25,https://github.com/nima/python-dmidecode,nima_python-dmidecode,nima/python-dmidecode,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nima_python-dmidecode_hullabaloo_README +54338573a8e160dd7f7c1868215009a10733ab61,https://github.com/scikit-learn-contrib/imbalanced-learn.git,scikit-learn-contrib_imbalanced-learn.git,scikit-learn-contrib/imbalanced-learn.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/scikit-learn-contrib_imbalanced-learn.git_hullabaloo_README.md +864d4bdd102dcad778b2a054f2c09d838729c07f,https://gitlab.gnome.org/Archive/regexxer,Archive_regexxer,Archive/regexxer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Archive_regexxer_hullabaloo_README +da5c7908e224ecadb40e97669149ddaec4b75737,https://github.com/schollii/pypubsub,schollii_pypubsub,schollii/pypubsub,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/schollii_pypubsub_hullabaloo_README.md +504e05d07138e791e57a01259e488beacaf46b81,https://github.com/thomaslee/spin-debian,thomaslee_spin-debian,thomaslee/spin-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/thomaslee_spin-debian_hullabaloo_README.html +309d730e4363faea7cdea3b7ce95455ca0e8e7ed,https://salsa.debian.org/pristine-lfs-team/pristine-lfs.git,pristine-lfs-team_pristine-lfs.git,pristine-lfs-team/pristine-lfs.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pristine-lfs-team_pristine-lfs.git_hullabaloo_README.rst +b1e1694a2923cb2191cfd3ebf0a0750f9864f533,https://github.com/open-iscsi/open-iscsi.git,open-iscsi_open-iscsi.git,open-iscsi/open-iscsi.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/open-iscsi_open-iscsi.git_hullabaloo_README +c38b475904d00353e8a7d1be8b29dc5cd5f184b0,https://github.com/jpirko/libteam,jpirko_libteam,jpirko/libteam,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jpirko_libteam_hullabaloo_README +f5da20d4fa683c26f2dfc51754b96420bd20104d,https://github.com/nm-l2tp/debian.git,nm-l2tp_debian.git,nm-l2tp/debian.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nm-l2tp_debian.git_hullabaloo_README.md +39336e4d090427b13e3f9e71e89c95256d204696,https://github.com/wchristian/parse-cpan-packages,wchristian_parse-cpan-packages,wchristian/parse-cpan-packages,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wchristian_parse-cpan-packages_hullabaloo_README +8287adb69a569fb9139437eb836c413a3d313ffb,https://github.com/roland-bless/ps2eps.git,roland-bless_ps2eps.git,roland-bless/ps2eps.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/roland-bless_ps2eps.git_hullabaloo_README.md +d42333d2091a1d1f68197491e998ce80578cec83,https://github.com/moose/MooseX-Runnable,moose_MooseX-Runnable,moose/MooseX-Runnable,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/moose_MooseX-Runnable_hullabaloo_README +9b3e409efcf97a92798cf7f98f6a6b29fad87bca,https://github.com/horde/webmail.git,horde_webmail.git,horde/webmail.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/horde_webmail.git_hullabaloo_README +fe414bbd68228f498930c9ba42c4ed83fd8a22ca,https://github.com/OSGeo/gdal-grass.git,OSGeo_gdal-grass.git,OSGeo/gdal-grass.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/OSGeo_gdal-grass.git_hullabaloo_README +c2e732094a838e19a84c118986514a6862d1a060,https://github.com/libvc/rolo,libvc_rolo,libvc/rolo,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libvc_rolo_hullabaloo_README +985a139ebec54def29ea8473ff7549ec78974397,https://github.com/pyudev/pyudev,pyudev_pyudev,pyudev/pyudev,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pyudev_pyudev_hullabaloo_README.rst +6db820f7c582c312eeae2be70c96a925073a57c0,https://github.com/sdg-mit/gitless.git,sdg-mit_gitless.git,sdg-mit/gitless.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sdg-mit_gitless.git_hullabaloo_README.md +6a077d6c09b93bcc97f0c67da4cbba10cfc6c2ee,https://invent.kde.org/plasma/plasma-workspace-wallpapers.git,plasma_plasma-workspace-wallpapers.git,plasma/plasma-workspace-wallpapers.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/plasma_plasma-workspace-wallpapers.git_hullabaloo_README.md +7857a26a3a2fec9840a9ffd4cb54e559037c670d,https://gitlab.com/fbb-git/oxref,fbb-git_oxref,fbb-git/oxref,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fbb-git_oxref_hullabaloo_README +ed0460fa59f2a525c3f65a61e6d5336303b4e827,https://github.com/astropy/pytest-openfiles,astropy_pytest-openfiles,astropy/pytest-openfiles,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/astropy_pytest-openfiles_hullabaloo_README.rst +6b8a8cb8d25e47aae1b3f03b96d87e58652c343e,https://github.com/gfx/p5-MouseX-NativeTraits.git,gfx_p5-MouseX-NativeTraits.git,gfx/p5-MouseX-NativeTraits.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gfx_p5-MouseX-NativeTraits.git_hullabaloo_README +2dcbada971bfb818059263baa3bba7ebb4aea0d5,https://github.com/enferex/pdfresurrect.git,enferex_pdfresurrect.git,enferex/pdfresurrect.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/enferex_pdfresurrect.git_hullabaloo_README +f0a02586c7dad01bbf55ae308860a8d73d6a6306,https://gitlab.gnome.org/GNOME/perl-pango,GNOME_perl-pango,GNOME/perl-pango,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_perl-pango_hullabaloo_README +0aaa4385980b38276fb8074b2fe9a34c9f5daa3e,https://github.com/alexdantas/nsnake.debian,alexdantas_nsnake.debian,alexdantas/nsnake.debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/alexdantas_nsnake.debian_hullabaloo_README +3d84aefbc45c941ae73694c529e4b021a229edcf,https://github.com/pyqtgraph/pyqtgraph.git,pyqtgraph_pyqtgraph.git,pyqtgraph/pyqtgraph.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pyqtgraph_pyqtgraph.git_hullabaloo_README +f2ba879d4d3ddca9ba026d456dc2cc9359301f21,https://github.com/mpruett/audiofile,mpruett_audiofile,mpruett/audiofile,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mpruett_audiofile_hullabaloo_README +5b0b3d6f4b737ae06b238e8e6e95db016ffc9bd2,https://github.com/libyal/libewf-legacy.git,libyal_libewf-legacy.git,libyal/libewf-legacy.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libewf-legacy.git_hullabaloo_README +1165a4171b83c4731b421e9e4e6fc4562ef8e620,https://github.com/mopidy/mopidy-mpris.git,mopidy_mopidy-mpris.git,mopidy/mopidy-mpris.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mopidy_mopidy-mpris.git_hullabaloo_README.rst +2c82a187c72760b5161ec434c3d4ea59c80aaab4,https://github.com/mapbox/snuggs.git,mapbox_snuggs.git,mapbox/snuggs.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mapbox_snuggs.git_hullabaloo_README.rst +5a9730ae2f785cfb8cb31ca1569dcfdceb8eefb7,https://github.com/celery/sphinx_celery,celery_sphinx_celery,celery/sphinx/celery,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/celery_sphinx_celery_hullabaloo_README.rst +c7ff3eaf37e3edccc8a3cfea19c93a91ac865ed3,https://github.com/rspivak/httpcode,rspivak_httpcode,rspivak/httpcode,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rspivak_httpcode_hullabaloo_README.rst +69ecddf1317e71f35b1c1de00392dc76f8f1701c,https://github.com/mate-desktop/mate-sensors-applet.git,mate-desktop_mate-sensors-applet.git,mate-desktop/mate-sensors-applet.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-sensors-applet.git_hullabaloo_README +de7756e4631a339e902a725cbe31ad5c1bacf6be,https://github.com/ueno/ruby-gpgme,ueno_ruby-gpgme,ueno/ruby-gpgme,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ueno_ruby-gpgme_hullabaloo_README +b5bd0aab04d46fcfa95cdb0c24b4840f47fce460,https://github.com/dbcli/pgspecial,dbcli_pgspecial,dbcli/pgspecial,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dbcli_pgspecial_hullabaloo_README.rst +f13aba787f0df46ee170aefdce9be82256538b5d,https://github.com/gregkh/bti.git,gregkh_bti.git,gregkh/bti.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gregkh_bti.git_hullabaloo_README +4f4f06e365fa514980def50c1e572b622bd1b108,https://github.com/agraef/pd-lua.git,agraef_pd-lua.git,agraef/pd-lua.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/agraef_pd-lua.git_hullabaloo_README +eec26b8f2c8f953688752db4947a5af3c260fd81,https://github.com/cablehead/python-consul,cablehead_python-consul,cablehead/python-consul,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cablehead_python-consul_hullabaloo_README.md +95f1bf13b61d69e3892a1afeb05d7141e51f825c,https://github.com/jazzband/django-push-notifications,jazzband_django-push-notifications,jazzband/django-push-notifications,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jazzband_django-push-notifications_hullabaloo_README.rst +dfc800b27e5b5b24519087e69766f20f1c16ade0,https://github.com/benjaminp/six,benjaminp_six,benjaminp/six,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/benjaminp_six_hullabaloo_README +857ab548f619773a8420331ce77ee6dce21ed106,https://github.com/box/flaky.git,box_flaky.git,box/flaky.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/box_flaky.git_hullabaloo_README.rst +c3ab900e5ec82e9f6973e8e845ffdcbdcc25607e,https://github.com/guzzle/guzzle_sphinx_theme.git,guzzle_guzzle_sphinx_theme.git,guzzle/guzzle/sphinx/theme.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/guzzle_guzzle_sphinx_theme.git_hullabaloo_README +0df27cc9effbba08c7da6859979b8e67d1fca2e3,https://github.com/nrk/redis-lua,nrk_redis-lua,nrk/redis-lua,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nrk_redis-lua_hullabaloo_README +eac7ce8e1d17f3e235029e9cff69074f836e4a68,https://github.com/libyal/libevt,libyal_libevt,libyal/libevt,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libevt_hullabaloo_README +4d05c56a4a2a8e57a6301567a2b418d5897a75e5,https://github.com/inducer/pycuda,inducer_pycuda,inducer/pycuda,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/inducer_pycuda_hullabaloo_README_SETUP.txt +9a5fd7c53a2ed3370699a8e7e77c1c55b7eb1919,https://github.com/beetbox/pyacoustid.git,beetbox_pyacoustid.git,beetbox/pyacoustid.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/beetbox_pyacoustid.git_hullabaloo_README.rst +ae33a3a55c0d9804a9af108485231e4abab57843,https://github.com/niallo/Unworkable.git,niallo_Unworkable.git,niallo/Unworkable.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/niallo_Unworkable.git_hullabaloo_README +d7288fc289d2c0bbe17b952c9fafcc83f2035f2a,https://github.com/casacore/python-casacore,casacore_python-casacore,casacore/python-casacore,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/casacore_python-casacore_hullabaloo_README.txt +783bf11df04627b63812812fc7ba756248499883,https://github.com/mate-desktop/mate-icon-theme.git,mate-desktop_mate-icon-theme.git,mate-desktop/mate-icon-theme.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-icon-theme.git_hullabaloo_README +c783c6c9d23cb80a5731880c1432174a0a7d87a2,https://github.com/choehwanjin/repairer,choehwanjin_repairer,choehwanjin/repairer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/choehwanjin_repairer_hullabaloo_README +ca89e19909700b92fbd8fb9d099141b13a4b8862,https://github.com/Pylons/waitress.git,Pylons_waitress.git,Pylons/waitress.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Pylons_waitress.git_hullabaloo_README.txt +f10557065a4d2858e18bdcefa8b3f610f37e56c6,https://github.com/haakonnessjoen/MACTelnet-Debian-Packaging,haakonnessjoen_MACTelnet-Debian-Packaging,haakonnessjoen/MACTelnet-Debian-Packaging,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/haakonnessjoen_MACTelnet-Debian-Packaging_hullabaloo_README.markdown +9907ca7b56b919e8bdc4607176a237bd5f1641f1,https://github.com/muflone/gwakeonlan.git,muflone_gwakeonlan.git,muflone/gwakeonlan.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/muflone_gwakeonlan.git_hullabaloo_README +779d95b949bb859cdf62b7b0d8841d0a17c218d1,https://github.com/firehol/firehol,firehol_firehol,firehol/firehol,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/firehol_firehol_hullabaloo_README +1cf793234b420c8893b486b9cfe2a5234534a6f0,https://github.com/jmdana/memprof,jmdana_memprof,jmdana/memprof,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jmdana_memprof_hullabaloo_README.md +cd616ed94c3b34b67920da36b727081537e7c61e,https://github.com/rspivak/slimit.git,rspivak_slimit.git,rspivak/slimit.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rspivak_slimit.git_hullabaloo_README.org +9be0e6c3bce5c0d01af45289c2640d41c11c6b84,https://gitlab.com/fbb-git/icmake.git,fbb-git_icmake.git,fbb-git/icmake.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fbb-git_icmake.git_hullabaloo_README +2932cb08e700035b99e8b0e773771317cb2f948e,https://github.com/rentrak/chi-driver-redis,rentrak_chi-driver-redis,rentrak/chi-driver-redis,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rentrak_chi-driver-redis_hullabaloo_README +c0998bac1a4d5cd5fdf43a825529a64e24dea9a5,https://github.com/wtforms/wtforms.git,wtforms_wtforms.git,wtforms/wtforms.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wtforms_wtforms.git_hullabaloo_README.txt +675d4d00ac40dacb9eb11473d44e53095a5d8f73,https://github.com/PyAr/fades.git,PyAr_fades.git,PyAr/fades.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/PyAr_fades.git_hullabaloo_README.md +fe0774f3fa9b096e9a1433001a845848bc31c569,https://github.com/porridge/autorenamer,porridge_autorenamer,porridge/autorenamer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/porridge_autorenamer_hullabaloo_README +37cb686a66c79dad24eb9d0424d15d5f96a45118,https://github.com/tkf/emacs-python-environment.git,tkf_emacs-python-environment.git,tkf/emacs-python-environment.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tkf_emacs-python-environment.git_hullabaloo_README.rst +0ddedf73550f8d0c0be5bf883a1f5bb257c91ef5,https://gitlab.com/wavexx/trend,wavexx_trend,wavexx/trend,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wavexx_trend_hullabaloo_README +3789e59ed181452c615b976b0ab889dd44b1323f,https://github.com/chewing/scim-chewing.git,chewing_scim-chewing.git,chewing/scim-chewing.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/chewing_scim-chewing.git_hullabaloo_README +20411c8f4e908c39208154d9e79b0d4710bd5050,https://github.com/quodlibet/mutagen.git,quodlibet_mutagen.git,quodlibet/mutagen.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/quodlibet_mutagen.git_hullabaloo_README +0eb5897fd95a27f5b71f3e32d7ff4f7cbe2ea547,https://github.com/docker/compose,docker_compose,docker/compose,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/docker_compose_hullabaloo_README.md +5b9cda96303755085114f482d5dac9811f641e7f,https://invent.kde.org/plasma/kscreen.git,plasma_kscreen.git,plasma/kscreen.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/plasma_kscreen.git_hullabaloo_README +9aedd5a84efac57343a5c84fde595f8c43cb96c5,https://gitlab.gnome.org/GNOME/xdg-user-dirs-gtk,GNOME_xdg-user-dirs-gtk,GNOME/xdg-user-dirs-gtk,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_xdg-user-dirs-gtk_hullabaloo_README +f1523f1a388d41a28113fddf03cdbcd9441ccce3,https://github.com/astropy/astroplan.git,astropy_astroplan.git,astropy/astroplan.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/astropy_astroplan.git_hullabaloo_README.rst +e17985e0d4a7ce2eb83c580c71e2f7c1af7f093b,https://github.com/GothenburgBitFactory/tasklib.git,GothenburgBitFactory_tasklib.git,GothenburgBitFactory/tasklib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GothenburgBitFactory_tasklib.git_hullabaloo_README.rst +da5c46037d1d8acb149f0f2fb8fb15e682795821,https://github.com/kpn-digital/django-etcd-settings,kpn-digital_django-etcd-settings,kpn-digital/django-etcd-settings,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kpn-digital_django-etcd-settings_hullabaloo_README.md +56161e279d2c536ac4c67ea80fb0ebbcfb752040,https://github.com/libyal/libscca,libyal_libscca,libyal/libscca,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libscca_hullabaloo_README +c9805345e04691a0671f2d0671e587ae5130b372,https://github.com/erikrose/more-itertools,erikrose_more-itertools,erikrose/more-itertools,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/erikrose_more-itertools_hullabaloo_README.rst +0478d608e595da64ffaa7e80f4edfcbc4a8dee56,https://github.com/cosmos72/detachtty.git,cosmos72_detachtty.git,cosmos72/detachtty.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cosmos72_detachtty.git_hullabaloo_README +3e088743166deb507e2dfda45393d1a516186b8b,https://github.com/jupyter/notebook.git,jupyter_notebook.git,jupyter/notebook.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jupyter_notebook.git_hullabaloo_README.md +c1012878a40f7215c09f87a013aa685ceb104069,https://github.com/amoffat/sh,amoffat_sh,amoffat/sh,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/amoffat_sh_hullabaloo_README.md +0354c84c702e35fb135c5814536b525d2edcc342,https://github.com/shibukawa/imagesize_py,shibukawa_imagesize_py,shibukawa/imagesize/py,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/shibukawa_imagesize_py_hullabaloo_README.rst +5e0f61861ae263f3ae2001c162f2d14181262f53,https://github.com/craneworks/python-ipcalc,craneworks_python-ipcalc,craneworks/python-ipcalc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/craneworks_python-ipcalc_hullabaloo_README.source +829f49a4b92799ce633891c9ae6be8aba0c97c59,https://github.com/davebarr/dnswalk.git,davebarr_dnswalk.git,davebarr/dnswalk.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/davebarr_dnswalk.git_hullabaloo_README +6bb38f6a01dbf4bbd584e038ceace0a00faa27bb,https://github.com/rakitzis/rc,rakitzis_rc,rakitzis/rc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rakitzis_rc_hullabaloo_README +220f921ab69058fc810611e423d6877b4f32d7d5,https://github.com/pimutils/vdirsyncer,pimutils_vdirsyncer,pimutils/vdirsyncer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pimutils_vdirsyncer_hullabaloo_README.md +f45852ab2a7126f354079499fc8b03976c0eab27,https://github.com/mate-desktop/mate-system-monitor.git,mate-desktop_mate-system-monitor.git,mate-desktop/mate-system-monitor.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-system-monitor.git_hullabaloo_README +5fcb2c00df55d307d87b50200176ca16179a0c86,https://github.com/grantma/py-magcode-core,grantma_py-magcode-core,grantma/py-magcode-core,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/grantma_py-magcode-core_hullabaloo_README +4c6e04e3accd6a3b5030d6e82bd821f6a951f695,https://github.com/matrix-org/matrix-synapse-ldap3,matrix-org_matrix-synapse-ldap3,matrix-org/matrix-synapse-ldap3,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/matrix-org_matrix-synapse-ldap3_hullabaloo_README.rst +2aee4613530f2d84d86d8458d746fb864948283c,https://git.savannah.nongnu.org/git/aldo.git,git_aldo.git,git/aldo.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/git_aldo.git_hullabaloo_README +7a1a3d5c3ba711d3f112747406286893c69d4cea,https://github.com/chrisk/fakeweb.git,chrisk_fakeweb.git,chrisk/fakeweb.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/chrisk_fakeweb.git_hullabaloo_README +e9fd37debfd3a7ac111619850384f5302d3a9c43,https://github.com/Abigail/end.git,Abigail_end.git,Abigail/end.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Abigail_end.git_hullabaloo_README +823f82d2f9459562da60c61d956286486306066f,https://github.com/saghul/aiodns.git,saghul_aiodns.git,saghul/aiodns.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/saghul_aiodns.git_hullabaloo_README.rst +51175189c6d7313a3b84019e39496f957c4e6164,https://github.com/mate-desktop/mate-power-manager.git,mate-desktop_mate-power-manager.git,mate-desktop/mate-power-manager.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-power-manager.git_hullabaloo_README +8f90857f5828d197750bd448c62a872e05fcb505,https://github.com/silx-kit/fabio.git,silx-kit_fabio.git,silx-kit/fabio.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/silx-kit_fabio.git_hullabaloo_README +be120774ea24e766d3de813ac9cb9fd9e5903c81,https://gitlab.freedesktop.org/bolt/bolt,bolt_bolt,bolt/bolt,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bolt_bolt_hullabaloo_README.md +20208a051d25492b01e9b3de09831597b5ff1d48,https://github.com/kmatheussen/radium_compressor.git,kmatheussen_radium_compressor.git,kmatheussen/radium/compressor.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kmatheussen_radium_compressor.git_hullabaloo_README +b7d06c0e44dddbb08a3795425bef2236323f0380,https://github.com/ganglia/gmetric4j,ganglia_gmetric4j,ganglia/gmetric4j,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ganglia_gmetric4j_hullabaloo_README +c83fd89ed0e5d7ace371642b6a74b295f9b79e77,https://git.open-mesh.org/batctl.git,batctl.git,batctl.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/batctl.git_hullabaloo_README +5b5c5134464d8e64621bd27a23ece2812e52d18f,https://github.com/regebro/tzlocal,regebro_tzlocal,regebro/tzlocal,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/regebro_tzlocal_hullabaloo_README.rst +eb2ee46e9432b80d8590b527b56e0ccfa9070fac,https://gitlab.com/rastersoft/terminus,rastersoft_terminus,rastersoft/terminus,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rastersoft_terminus_hullabaloo_README +5b6d45f28626cbb3bc4e055a1196932f0eceda9e,https://github.com/bjking1/iprutils,bjking1_iprutils,bjking1/iprutils,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bjking1_iprutils_hullabaloo_README +aa419b8b668214470b2b0b3733ca6510a8f622f7,https://github.com/kurtraschke/pyRFC3339,kurtraschke_pyRFC3339,kurtraschke/pyRFC3339,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kurtraschke_pyRFC3339_hullabaloo_README.rst +a615c3784b159108c4def76d5e1fe71d6415ec66,https://gitlab.gnome.org/GNOME/policykit-gnome,GNOME_policykit-gnome,GNOME/policykit-gnome,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_policykit-gnome_hullabaloo_README +9ee86c35c8f8803444a302d5d59aa09b0ee1d0f2,https://github.com/RazerM/ratelimiter,RazerM_ratelimiter,RazerM/ratelimiter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/RazerM_ratelimiter_hullabaloo_README.md +b62ddd098d90f9820f75da5219baa20c37bb2c32,https://github.com/dahlia/libsass-python.git,dahlia_libsass-python.git,dahlia/libsass-python.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dahlia_libsass-python.git_hullabaloo_README +25df75ecc99447646956f09d527462108f76e113,https://github.com/requirejs/text,requirejs_text,requirejs/text,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/requirejs_text_hullabaloo_README.md +1f2eb2c994717c62df517918d9f64fe4098341d0,https://github.com/anse1/sqlsmith,anse1_sqlsmith,anse1/sqlsmith,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/anse1_sqlsmith_hullabaloo_README.org +24678ae14d82e4ca73650af2537abb42c316e05a,https://github.com/jib/term-ui.git,jib_term-ui.git,jib/term-ui.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jib_term-ui.git_hullabaloo_README +e963dd44d8356f506acd17dd6f490cd6ed4a8024,https://github.com/gmantele/taplib.git,gmantele_taplib.git,gmantele/taplib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gmantele_taplib.git_hullabaloo_README +6fbec998dcfd9859a12cec6ce1745c7dab217c22,https://github.com/rsyslog/librelp,rsyslog_librelp,rsyslog/librelp,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rsyslog_librelp_hullabaloo_README +2dbf2e22af42a49bd7b20dd46ceeda5b63012ac0,https://github.com/drmuey/p5-Locales.git,drmuey_p5-Locales.git,drmuey/p5-Locales.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/drmuey_p5-Locales.git_hullabaloo_README +a33e1f8595e8d4cf70b8d5c0b1a7657124adc6a2,https://github.com/boto/boto3,boto_boto3,boto/boto3,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/boto_boto3_hullabaloo_README.rst +1a38d8c73b3eb9962ead90cae72f930faf7fd3b6,https://github.com/rsyslog/libestr.git,rsyslog_libestr.git,rsyslog/libestr.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rsyslog_libestr.git_hullabaloo_README +8c7940f196b111742adbcf50caddb62cb78d3497,https://github.com/jquast/blessed,jquast_blessed,jquast/blessed,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jquast_blessed_hullabaloo_README.rst +c8e1bc43ca4956ea68c266a8f4a75e9c8d5266ac,https://gitlab.fusiondirectory.org/argonaut/libpoe-component-server-jsonrpc,argonaut_libpoe-component-server-jsonrpc,argonaut/libpoe-component-server-jsonrpc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/argonaut_libpoe-component-server-jsonrpc_hullabaloo_README +e1343c4a2edf34fe9c2bcdd03fe4874e3a3d61ef,https://github.com/msktutil/msktutil,msktutil_msktutil,msktutil/msktutil,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/msktutil_msktutil_hullabaloo_README +ba189b000c4c5ab4d15c6b155a7dbf8bd46c42d4,https://git.kernel.org/pub/scm/network/connman/connman.git,pub_scm_network_connman_connman.git,pub/scm/network/connman/connman.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pub_scm_network_connman_connman.git_hullabaloo_README +60cf0606ff555c2c1f3892bf8075f010d11145a4,https://github.com/bestpractical/rt-extension-repeatticket,bestpractical_rt-extension-repeatticket,bestpractical/rt-extension-repeatticket,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bestpractical_rt-extension-repeatticket_hullabaloo_README.pod +ef6ae3cba938aa54ac53b3d7a9a85b749fbcf126,https://github.com/celery/vine,celery_vine,celery/vine,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/celery_vine_hullabaloo_README.rst +da3e75459489e2069b4de487eb578c99bc6a19ed,https://github.com/celery/kombu,celery_kombu,celery/kombu,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/celery_kombu_hullabaloo_README +26080084c6772132d8a7c80b8b730591e3ede14b,https://github.com/boto/s3transfer,boto_s3transfer,boto/s3transfer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/boto_s3transfer_hullabaloo_README.md +e517ecb377f67d11b74bc19b0c707c08cf575d2c,https://github.com/benschneider/PyGnuplot,benschneider_PyGnuplot,benschneider/PyGnuplot,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/benschneider_PyGnuplot_hullabaloo_README.txt +aca4d4265f1544f79c3fbc4cb06101b3fd1a7135,https://github.com/kilobyte/termrec,kilobyte_termrec,kilobyte/termrec,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kilobyte_termrec_hullabaloo_README +280895bd696cfb22739a6f775bf63886226a765a,https://github.com/derek73/python-nameparser,derek73_python-nameparser,derek73/python-nameparser,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/derek73_python-nameparser_hullabaloo_README.rst +85558b8afbaf404b7d14a5a9d45a94cfdfc863f8,https://gitlab.freedesktop.org/xdg/xdg-user-dirs.git,xdg_xdg-user-dirs.git,xdg/xdg-user-dirs.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/xdg_xdg-user-dirs.git_hullabaloo_README +053f33ef6bb287d5c37e807adf70f4de1a5810fa,https://github.com/fplll/fpylll.git,fplll_fpylll.git,fplll/fpylll.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fplll_fpylll.git_hullabaloo_README.rst +dc418a07eb252238c33e316c0acc81e102eb29d1,https://github.com/coddingtonbear/python-measurement,coddingtonbear_python-measurement,coddingtonbear/python-measurement,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/coddingtonbear_python-measurement_hullabaloo_README.rst +488aedb37cdcca85be45db67c3e30301e122ee40,https://gitlab.com/libosinfo/osinfo-db.git,libosinfo_osinfo-db.git,libosinfo/osinfo-db.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libosinfo_osinfo-db.git_hullabaloo_README +95051461df395ee68d32aedec2fcb4884246ce56,https://github.com/joke2k/faker,joke2k_faker,joke2k/faker,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/joke2k_faker_hullabaloo_README.md +f9aa19c63fb456dd493a8f8fc7fee5acd91e2d33,https://gitlab.freedesktop.org/mobile-broadband/libqmi.git,mobile-broadband_libqmi.git,mobile-broadband/libqmi.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mobile-broadband_libqmi.git_hullabaloo_README +fa8174f76d88eb96b0289a305fc05728cea6fd8e,https://github.com/zopefoundation/zope.testing,zopefoundation_zope.testing,zopefoundation/zope.testing,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zopefoundation_zope.testing_hullabaloo_README.txt +0923ef7fb4d6f1a5580f0ee9e48889919169c042,https://github.com/h5netcdf/h5netcdf.git,h5netcdf_h5netcdf.git,h5netcdf/h5netcdf.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/h5netcdf_h5netcdf.git_hullabaloo_README.rst +fff7e7b75965e954fac5ece0cde365c342f98b02,https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git,pub_scm_libs_libgpiod_libgpiod.git,pub/scm/libs/libgpiod/libgpiod.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pub_scm_libs_libgpiod_libgpiod.git_hullabaloo_README +1d29b3757857380535b502ed909accd098a04b88,https://github.com/imZack/modem-cmd.git,imZack_modem-cmd.git,imZack/modem-cmd.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/imZack_modem-cmd.git_hullabaloo_README.md +9995b39456379d4bd057a107befb8b1a1d9953ee,https://github.com/ya-mouse/fatresize,ya-mouse_fatresize,ya-mouse/fatresize,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ya-mouse_fatresize_hullabaloo_README +70438138096a47b2505ac55634cd94947ce378b6,https://github.com/mate-desktop/engrampa.git,mate-desktop_engrampa.git,mate-desktop/engrampa.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_engrampa.git_hullabaloo_README +1dfa170a49cbb3b42580e545467903dd643cc934,https://github.com/dimitri/pgloader,dimitri_pgloader,dimitri/pgloader,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dimitri_pgloader_hullabaloo_README.md +4d20ddd615f7f07ec56d70ee90f2c61d76a7ad7f,https://gitlab.com/coringao/blastem,coringao_blastem,coringao/blastem,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/coringao_blastem_hullabaloo_README +624eaf907f8b52f02db3618eac4106f16498c4a0,https://anongit.kde.org/bomber.git,bomber.git,bomber.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bomber.git_hullabaloo_README.themes +a361aa20fbbbb249bc4968e804900a8f05080e45,https://invent.kde.org/libraries/qca.git,libraries_qca.git,libraries/qca.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libraries_qca.git_hullabaloo_README +962de58fb0fc5af40d15de378936c2e4a6dfae7e,https://github.com/qoobaa/magic,qoobaa_magic,qoobaa/magic,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/qoobaa_magic_hullabaloo_README.rdoc +0acf8cab6a8be33d8778973a162d956650dd0a03,https://github.com/pallets/werkzeug,pallets_werkzeug,pallets/werkzeug,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pallets_werkzeug_hullabaloo_README +c53198ab147f5842eabdd31bc3c7f5eff1f30e4c,https://git.gnu.org.ua/rush.git,rush.git,rush.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rush.git_hullabaloo_README +fe4adba1be25ad55f94166b2e0556fe456930c28,https://github.com/ronaldoussoren/macholib,ronaldoussoren_macholib,ronaldoussoren/macholib,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ronaldoussoren_macholib_hullabaloo_README.txt +39a0cfa306f8c0a93c82b7ffb9831bc67ee38870,https://github.com/hamcrest/PyHamcrest,hamcrest_PyHamcrest,hamcrest/PyHamcrest,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hamcrest_PyHamcrest_hullabaloo_README +5f7b1f94c1bd43a75c2941f0b23249e9c1c6d2e8,https://github.com/Bioconductor/Rsamtools.git,Bioconductor_Rsamtools.git,Bioconductor/Rsamtools.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Bioconductor_Rsamtools.git_hullabaloo_README +cbadda7f733486e95d328bbacf94508092e41976,https://github.com/exoscale/cs,exoscale_cs,exoscale/cs,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/exoscale_cs_hullabaloo_README.rst +2be3371fa6f793b9562f0f891fe561effd511ca9,https://github.com/ros-perception/vision_opencv,ros-perception_vision_opencv,ros-perception/vision/opencv,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ros-perception_vision_opencv_hullabaloo_README +eb89a93b6f035059267d1bf63a44f4ffafc224b9,https://github.com/nose-devs/nose2.git,nose-devs_nose2.git,nose-devs/nose2.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nose-devs_nose2.git_hullabaloo_README.rst +7c7a9ca4471cb77f8ef2d8689d8e657d36359ccd,https://github.com/dgl/re-engine-RE2.git,dgl_re-engine-RE2.git,dgl/re-engine-RE2.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dgl_re-engine-RE2.git_hullabaloo_README +d8b36f3e26c24c5bdcb045603395c911eb9f8636,https://gitlab.com/tango-controls/pytango,tango-controls_pytango,tango-controls/pytango,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tango-controls_pytango_hullabaloo_README-IPython.rst +bff13c8334bf1b9ddcd61464e3535af5eee5e36c,https://github.com/mopidy/mopidy-alsamixer,mopidy_mopidy-alsamixer,mopidy/mopidy-alsamixer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mopidy_mopidy-alsamixer_hullabaloo_README.rst +7edb87599f3887747188c634b411a4071e8665b1,https://github.com/rfc1036/rblcheck,rfc1036_rblcheck,rfc1036/rblcheck,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rfc1036_rblcheck_hullabaloo_README +2bc05eab6be0c65a2d00ea3a898082e396d5d637,https://github.com/sphinx-contrib/spelling,sphinx-contrib_spelling,sphinx-contrib/spelling,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sphinx-contrib_spelling_hullabaloo_README +41d147324f47bdd9644c15eb71e76d9195b15245,https://github.com/disqus/django-bitfield,disqus_django-bitfield,disqus/django-bitfield,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/disqus_django-bitfield_hullabaloo_README.rst +6b62a0b2d522563b9959bc200d861ef67f6eb5b4,https://github.com/tkem/uritools,tkem_uritools,tkem/uritools,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tkem_uritools_hullabaloo_README.md +beac245a056212acd56127e9ebbfbb92450cf7d8,https://github.com/elmar/dh-dist-zilla,elmar_dh-dist-zilla,elmar/dh-dist-zilla,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/elmar_dh-dist-zilla_hullabaloo_README.markdown +44ebfe165b4d3009e5377f2e672297a94f284e44,https://github.com/rfc1036/gup,rfc1036_gup,rfc1036/gup,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rfc1036_gup_hullabaloo_README +18b30745869ef02761d2ccc24bef71fae08fe845,https://gitlab.gnome.org/GNOME/libgxps.git,GNOME_libgxps.git,GNOME/libgxps.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_libgxps.git_hullabaloo_README +13405d3f3eaeefc9e251ea614108c68aa7feb918,https://github.com/barseghyanartur/transliterate,barseghyanartur_transliterate,barseghyanartur/transliterate,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/barseghyanartur_transliterate_hullabaloo_README.rst +e9b1c9202908745fff22e9e4bf3d7bb7d6f6c6f5,https://github.com/kjd/idna,kjd_idna,kjd/idna,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kjd_idna_hullabaloo_README.md +50b1e93b818dc2946080fe6318693a4a73859d64,https://github.com/kochstefan/usbauth-all.git,kochstefan_usbauth-all.git,kochstefan/usbauth-all.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kochstefan_usbauth-all.git_hullabaloo_README +e58cdc65bb14227b4f07c94286b7f2b6c26aea9c,https://github.com/andrikos/kismet-debian,andrikos_kismet-debian,andrikos/kismet-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/andrikos_kismet-debian_hullabaloo_README +bf8b159315f6362cfef2bd44d8379c4760035e8d,https://github.com/WoLpH/numpy-stl,WoLpH_numpy-stl,WoLpH/numpy-stl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/WoLpH_numpy-stl_hullabaloo_README.rst +5034191fbc3dcbffd982628f56aaa090dc4c6105,https://github.com/nijel/utidylib.git,nijel_utidylib.git,nijel/utidylib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nijel_utidylib.git_hullabaloo_README.txt +1aefd29d8f01e1f38f271cfefc294d584335ed3f,https://github.com/bgoglin/lltag,bgoglin_lltag,bgoglin/lltag,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bgoglin_lltag_hullabaloo_README +54bc4e024a73b9f56aec6c2374580ae023ac1805,https://github.com/libyal/libfwsi.git,libyal_libfwsi.git,libyal/libfwsi.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libfwsi.git_hullabaloo_README +ab8b381769797c72dcc31713849c72730ec834c5,https://github.com/mailgun/dnsq.git,mailgun_dnsq.git,mailgun/dnsq.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mailgun_dnsq.git_hullabaloo_README.md +0421a20937f15fd8498a59a7f32b81a4fefbe946,https://github.com/tiwai/awesfx.git,tiwai_awesfx.git,tiwai/awesfx.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tiwai_awesfx.git_hullabaloo_README +62436cc63f3b9a6ab85614743c84fd851787df7d,https://github.com/tamarou/magpie.git,tamarou_magpie.git,tamarou/magpie.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tamarou_magpie.git_hullabaloo_README +2e170943ff1dcef5c638a5093d4460932c252fc4,https://github.com/glaubitz/gkrellm-cpufreq-debian,glaubitz_gkrellm-cpufreq-debian,glaubitz/gkrellm-cpufreq-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/glaubitz_gkrellm-cpufreq-debian_hullabaloo_README +ef58491616d9dea84031ea54b015426989c1c078,https://github.com/seattlerb/ruby2ruby.git,seattlerb_ruby2ruby.git,seattlerb/ruby2ruby.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/seattlerb_ruby2ruby.git_hullabaloo_README.txt +ae5d5380ef8f706fb6be2cc2e376b7022b9ded3e,https://github.com/kjetilk/RDF-Helper-Properties.git,kjetilk_RDF-Helper-Properties.git,kjetilk/RDF-Helper-Properties.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kjetilk_RDF-Helper-Properties.git_hullabaloo_README +59931ee9ba63eb5469a08cdf1e78f7b84f4253bb,https://github.com/python-trio/trio,python-trio_trio,python-trio/trio,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-trio_trio_hullabaloo_README.rst +975dbbcddd9a6c7b09358fae718e3eb7f42a589f,https://github.com/markokr/rarfile.git,markokr_rarfile.git,markokr/rarfile.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/markokr_rarfile.git_hullabaloo_README +0f541f62d937574355178a82e88fdc9826468563,https://github.com/sudipm-mukherjee/systune.git,sudipm-mukherjee_systune.git,sudipm-mukherjee/systune.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sudipm-mukherjee_systune.git_hullabaloo_README +bf5dd770120acde9eacb502d39ed63ee2997e564,https://github.com/ionelmc/python-tblib,ionelmc_python-tblib,ionelmc/python-tblib,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ionelmc_python-tblib_hullabaloo_README.rst +b3c3194d1d4629432af13a574cf5e18be8fca90d,https://github.com/libyal/libmsiecf.git,libyal_libmsiecf.git,libyal/libmsiecf.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libmsiecf.git_hullabaloo_README +c7f33e537f409107ec33ca277f2d584e68f3df54,https://github.com/python-greenlet/greenlet,python-greenlet_greenlet,python-greenlet/greenlet,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-greenlet_greenlet_hullabaloo_README.txt +5b6f364f8517be7a34faef8f39eee6908e783004,https://github.com/wertarbyte/triggerhappy,wertarbyte_triggerhappy,wertarbyte/triggerhappy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wertarbyte_triggerhappy_hullabaloo_README +660ba64fd3bdd6b593252e8b81fe6130f9316ac7,https://gitlab.com/gitlab-org/mmap2,gitlab-org_mmap2,gitlab-org/mmap2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gitlab-org_mmap2_hullabaloo_README.en +d9314e752f9d83a35c941ac018b6c919eadd8356,https://github.com/dnephin/PyStaticConfiguration,dnephin_PyStaticConfiguration,dnephin/PyStaticConfiguration,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dnephin_PyStaticConfiguration_hullabaloo_README.md +ce56f3183d9b98552f7e5abb7dc8b4eb8b3fe5ce,https://github.com/leggewie-DM/n2n,leggewie-DM_n2n,leggewie-DM/n2n,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/leggewie-DM_n2n_hullabaloo_README +257ec43a73ce6697888974669c7bc2124489cc15,https://github.com/andk/devel-symdump,andk_devel-symdump,andk/devel-symdump,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/andk_devel-symdump_hullabaloo_README +4f16f79b3684dbba9b76168101965c53419ca38f,https://github.com/linuxmint/cinnamon.git,linuxmint_cinnamon.git,linuxmint/cinnamon.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/linuxmint_cinnamon.git_hullabaloo_README +b06037fb9fc03bd652a7cb5ce748247677c908c0,https://github.com/pyauth/pyotp.git,pyauth_pyotp.git,pyauth/pyotp.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pyauth_pyotp.git_hullabaloo_README.markdown +a635e2afac970e3d5de0e4ce9c0ec24a7a5a1ae6,https://github.com/oauthlib/oauthlib,oauthlib_oauthlib,oauthlib/oauthlib,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/oauthlib_oauthlib_hullabaloo_README.rst +7a48b2cd2f7a7cc828b79f3853bbb022ee750d33,https://github.com/dakk/FreeAlchemist,dakk_FreeAlchemist,dakk/FreeAlchemist,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dakk_FreeAlchemist_hullabaloo_README.source +56326248ba27ec24fb87d28616cf471247103722,https://github.com/bear/python-twitter.git,bear_python-twitter.git,bear/python-twitter.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bear_python-twitter.git_hullabaloo_README.md +7f9961991c9a19168d685ceb11ea25afa3dca4b5,https://github.com/alex/pretend,alex_pretend,alex/pretend,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/alex_pretend_hullabaloo_README.rst +92c23805ec0bc2d0db21556fbdf115030ab6d512,https://github.com/rurban/Filter,rurban_Filter,rurban/Filter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rurban_Filter_hullabaloo_README +5f1e47afcb524803f71f600b6a1edbfe40f6796f,https://github.com/karenetheridge/B-Hooks-Parser.git,karenetheridge_B-Hooks-Parser.git,karenetheridge/B-Hooks-Parser.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/karenetheridge_B-Hooks-Parser.git_hullabaloo_README.pod +1210055007a144e6b7f7e384afa26d0aa5031821,https://github.com/apache/curator.git,apache_curator.git,apache/curator.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/apache_curator.git_hullabaloo_README.rdoc.txt +5310d4eed167451332262e209fe184af235e4a0f,https://github.com/aio-libs/aiohttp-cors.git,aio-libs_aiohttp-cors.git,aio-libs/aiohttp-cors.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aio-libs_aiohttp-cors.git_hullabaloo_README.md +6229fbc10ae7aa05305f4b61c3d764b2d6562ed5,https://github.com/AndrewIngram/django-extra-views,AndrewIngram_django-extra-views,AndrewIngram/django-extra-views,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/AndrewIngram_django-extra-views_hullabaloo_README +68ae9d4791853e956dd51df3026abc58a71d42ba,https://github.com/sipwise/data-hal.git,sipwise_data-hal.git,sipwise/data-hal.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sipwise_data-hal.git_hullabaloo_README +9e7f1ae812b33637eab9a88d3c5e86b3dc598bb1,https://github.com/waywardgeek/sonic,waywardgeek_sonic,waywardgeek/sonic,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/waywardgeek_sonic_hullabaloo_README +8a95fec25ed7970ccf39eb8d693970a72296cf46,https://github.com/jupyter/nbconvert,jupyter_nbconvert,jupyter/nbconvert,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jupyter_nbconvert_hullabaloo_README.md +eef860e4664fe4eac2f1f237c1009c28b9d632a1,https://github.com/jaymzh/concordance.git,jaymzh_concordance.git,jaymzh/concordance.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jaymzh_concordance.git_hullabaloo_README +e0b5db9aedf81315c2259ddd1fae3045be34a9f8,https://github.com/jazzband/inflect.git,jazzband_inflect.git,jazzband/inflect.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jazzband_inflect.git_hullabaloo_README.txt +c0bf56247fd06bfa597870301094d4e75a6e2709,https://github.com/astropy/montage-wrapper,astropy_montage-wrapper,astropy/montage-wrapper,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/astropy_montage-wrapper_hullabaloo_README +98f4ea0ba1e5fe44a6378bece7fa92db0a50354f,https://github.com/mu-editor/mu,mu-editor_mu,mu-editor/mu,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mu-editor_mu_hullabaloo_README.rst +fce754a87b09f7fb58865a9c66548ef3f52464c1,https://github.com/benoitc/http-parser,benoitc_http-parser,benoitc/http-parser,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/benoitc_http-parser_hullabaloo_README.rst +23bce271c30eb8c3737394fd0afd9da68ef84334,https://github.com/dask/dask,dask_dask,dask/dask,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dask_dask_hullabaloo_README.rst +1110fb394bd5dceeda0b8b3054f83b466b5e3b5f,https://github.com/Azure/msrest-for-python,Azure_msrest-for-python,Azure/msrest-for-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Azure_msrest-for-python_hullabaloo_README.rst +9cf06f7a23776c14d855b321c88fb2c6f421accc,https://git.launchpad.net/bamf,bamf,bamf,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bamf_hullabaloo_README +3b27b0594cdcfea2bdc161439d48d333448b7e2c,https://github.com/jgoerzen/simplesnap,jgoerzen_simplesnap,jgoerzen/simplesnap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jgoerzen_simplesnap_hullabaloo_README.txt +36213e67c56968bef51b9e41fd697f53f6259043,https://github.com/slezica/python-frozendict.git,slezica_python-frozendict.git,slezica/python-frozendict.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/slezica_python-frozendict.git_hullabaloo_README.txt +61354406c1f0670150fd1f30822dae017dfdf291,https://github.com/rurban/DBD-SQLite2,rurban_DBD-SQLite2,rurban/DBD-SQLite2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rurban_DBD-SQLite2_hullabaloo_README +79d8bbaa3f6fa8dc43a6da33e1f7db792aeb7e5e,https://github.com/regebro/hovercraft,regebro_hovercraft,regebro/hovercraft,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/regebro_hovercraft_hullabaloo_README.md +9b2fcf941859f32960c8f8acfcae89914a0ddcfe,https://github.com/pobrn/mktorrent,pobrn_mktorrent,pobrn/mktorrent,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pobrn_mktorrent_hullabaloo_README +2c23c7227ad353de76f544e8c1dd39d0d08dec33,https://github.com/benhoyt/scandir,benhoyt_scandir,benhoyt/scandir,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/benhoyt_scandir_hullabaloo_README.md +9eb220b476cb9be6d390265f160c0a6f5a344d90,https://github.com/ronaldoussoren/altgraph,ronaldoussoren_altgraph,ronaldoussoren/altgraph,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ronaldoussoren_altgraph_hullabaloo_README.txt +564a3757a81e1148dda8c05bf0ef90e8b36bf248,https://github.com/jeremyevans/minitest-shared_description,jeremyevans_minitest-shared_description,jeremyevans/minitest-shared/description,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jeremyevans_minitest-shared_description_hullabaloo_README.rdoc +defada04defb3996f7f6dd24893fffda161f5724,https://github.com/MostAwesomeDude/txWS,MostAwesomeDude_txWS,MostAwesomeDude/txWS,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/MostAwesomeDude_txWS_hullabaloo_README.rst +96f8b23251573a7bb58e8ef11b63ba3080024a93,https://github.com/jkeenan/file-save-home,jkeenan_file-save-home,jkeenan/file-save-home,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jkeenan_file-save-home_hullabaloo_README +8b4a39ca2d055a8b004187339c3ecbef640acfca,https://github.com/neurodebian/pkg-xppaut,neurodebian_pkg-xppaut,neurodebian/pkg-xppaut,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/neurodebian_pkg-xppaut_hullabaloo_README +d71a6dd88cfeac81b14c3bf23edf733c49e8cb83,https://github.com/psi-im/psi-l10n.git,psi-im_psi-l10n.git,psi-im/psi-l10n.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/psi-im_psi-l10n.git_hullabaloo_README.md +1b76446494192b6cd945f47c90016e9d7e18eeaf,https://github.com/hobarrera/sphinx-autorun,hobarrera_sphinx-autorun,hobarrera/sphinx-autorun,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hobarrera_sphinx-autorun_hullabaloo_README +ea68662ac66aec856321cbddcabea524199b8d83,https://github.com/JazzCore/python-pdfkit,JazzCore_python-pdfkit,JazzCore/python-pdfkit,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/JazzCore_python-pdfkit_hullabaloo_README.rst +00f24cd89bff5748060d3238cddc60b3ebb19201,https://github.com/xavierleroy/camlidl,xavierleroy_camlidl,xavierleroy/camlidl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/xavierleroy_camlidl_hullabaloo_README +b7ebd97b79268ed6ed7a83aecc70f36e1210742a,https://github.com/saltstack/libnacl.git,saltstack_libnacl.git,saltstack/libnacl.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/saltstack_libnacl.git_hullabaloo_README.md +a0865a82fb2b3fbd6172a9b4116070167ba1ae1a,https://github.com/gfx/Perl-Module-Install-XSUtil.git,gfx_Perl-Module-Install-XSUtil.git,gfx/Perl-Module-Install-XSUtil.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gfx_Perl-Module-Install-XSUtil.git_hullabaloo_README +88e651ab66ac5b0afc6264c517c3d3684cea7421,https://github.com/hakaishi/shutdown-qapps,hakaishi_shutdown-qapps,hakaishi/shutdown-qapps,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hakaishi_shutdown-qapps_hullabaloo_README +b939d8083d1f18f9ca018a0b7a34b591aaf4a911,https://github.com/python-llfuse/python-llfuse.git,python-llfuse_python-llfuse.git,python-llfuse/python-llfuse.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-llfuse_python-llfuse.git_hullabaloo_README.txt +24937acd35725de508dd04d0350850c9ae42532d,https://github.com/matthewwithanm/django-imagekit.git,matthewwithanm_django-imagekit.git,matthewwithanm/django-imagekit.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/matthewwithanm_django-imagekit.git_hullabaloo_README.md +6a73a57bc305c47bc7c827aba74a0d23a740a7e3,https://github.com/invisibleroads/socketIO-client,invisibleroads_socketIO-client,invisibleroads/socketIO-client,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/invisibleroads_socketIO-client_hullabaloo_README.rst +b94308890e5c60b3bb496fccd37036b65188727d,https://github.com/adrianlopezroche/fdupes.git,adrianlopezroche_fdupes.git,adrianlopezroche/fdupes.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/adrianlopezroche_fdupes.git_hullabaloo_README +ec62a674c0e58afab9ea76b1dd625f850b7ae17b,https://github.com/chorny/MLDBM.git,chorny_MLDBM.git,chorny/MLDBM.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/chorny_MLDBM.git_hullabaloo_README +b6e3c55497bd6234b19925f271e101207c081282,https://github.com/lxde/pcmanfm,lxde_pcmanfm,lxde/pcmanfm,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lxde_pcmanfm_hullabaloo_README +a00ed265850772032c796edf06418ad9d28a0609,https://github.com/fiete201/python-pypeg2-debian,fiete201_python-pypeg2-debian,fiete201/python-pypeg2-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fiete201_python-pypeg2-debian_hullabaloo_README.txt +4ab148c2ea0ea66a669cc7c8b33b6077b388e87f,https://github.com/uqfoundation/dill,uqfoundation_dill,uqfoundation/dill,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/uqfoundation_dill_hullabaloo_README +c648cb832d8c8c0e41a493563c9f9c526daed77d,https://github.com/dfaust/soundkonverter.git,dfaust_soundkonverter.git,dfaust/soundkonverter.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dfaust_soundkonverter.git_hullabaloo_README +1678a2f3d59ed77abf9383b51a8575c8c41da2ba,https://github.com/Pylons/pyramid_chameleon,Pylons_pyramid_chameleon,Pylons/pyramid/chameleon,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Pylons_pyramid_chameleon_hullabaloo_README.txt +6a0c484f49f324962ce167b564b86b577d737480,https://github.com/maxtepkeev/python-redmine.git,maxtepkeev_python-redmine.git,maxtepkeev/python-redmine.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/maxtepkeev_python-redmine.git_hullabaloo_README.md +5ad1f0730acbe22b512834dc11af114c0fe3c455,https://github.com/influxdata/influxdb-python,influxdata_influxdb-python,influxdata/influxdb-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/influxdata_influxdb-python_hullabaloo_README.md +b28b8e62bf20a112a4f1f7ed0558e29f536ebaae,https://github.com/ukui/ukui-themes,ukui_ukui-themes,ukui/ukui-themes,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ukui_ukui-themes_hullabaloo_README +0389e97743d0f5d035e11a12f5ecf72e8a25796b,https://github.com/smurfix/flask-script,smurfix_flask-script,smurfix/flask-script,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/smurfix_flask-script_hullabaloo_README +36caf0d7ca07bf327bfb61b75ba67da956461ba5,https://github.com/alphallc/ruby-fcgi-ng,alphallc_ruby-fcgi-ng,alphallc/ruby-fcgi-ng,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/alphallc_ruby-fcgi-ng_hullabaloo_README.rdoc +f453d4148de12234ee1301e918dd49b7f00f8dae,https://github.com/python-hyper/uritemplate.git,python-hyper_uritemplate.git,python-hyper/uritemplate.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-hyper_uritemplate.git_hullabaloo_README.rst +691381036b8dad94b9761ddb085b390e6478b6d8,https://github.com/dagolden/class-insideout.git,dagolden_class-insideout.git,dagolden/class-insideout.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dagolden_class-insideout.git_hullabaloo_README +ee9dfc6e5620198f50633e11c5f0d8c8b1214458,https://gitlab.com/doctormo/python-crontab,doctormo_python-crontab,doctormo/python-crontab,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/doctormo_python-crontab_hullabaloo_README +70e99baef9d08d5479725ca1d50a93f3a4681632,https://github.com/jaalto/project--copyright-update,jaalto_project--copyright-update,jaalto/project--copyright-update,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jaalto_project--copyright-update_hullabaloo_README +c1a876201396e8d0a923a1e703374df570d93d87,https://github.com/thomaslee/capnproto-debian,thomaslee_capnproto-debian,thomaslee/capnproto-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/thomaslee_capnproto-debian_hullabaloo_README.txt +a1fd8e6005c65744272c5afe4aff55b2b96b9ccb,https://github.com/ollyg/Net-LDAP-FilterBuilder.git,ollyg_Net-LDAP-FilterBuilder.git,ollyg/Net-LDAP-FilterBuilder.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ollyg_Net-LDAP-FilterBuilder.git_hullabaloo_README +b3e186b406a018d48685d89ffb2f1638b3b75dcf,https://github.com/rollup/plugins,rollup_plugins,rollup/plugins,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rollup_plugins_hullabaloo_README.md +6c510afd893d312cee434c4e109bb3949caedd9f,https://github.com/rncbc/padthv1.git,rncbc_padthv1.git,rncbc/padthv1.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rncbc_padthv1.git_hullabaloo_README +90696c0b609236daf4b7c0622c8dc865ce0c6dd2,https://github.com/flyingcircusio/pycountry,flyingcircusio_pycountry,flyingcircusio/pycountry,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/flyingcircusio_pycountry_hullabaloo_README.txt +21a43c7ecfaf8e44ac7a42af50db2c7e38f44447,https://github.com/rroemhild/flask-ldapconn,rroemhild_flask-ldapconn,rroemhild/flask-ldapconn,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rroemhild_flask-ldapconn_hullabaloo_README.rst +0ab40605f26a63f7cb37ed68c517d061cdc8e5ef,https://github.com/uim/uim-chewing,uim_uim-chewing,uim/uim-chewing,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/uim_uim-chewing_hullabaloo_README +7bc06e166f9516f6d2551a1a8bdb32bb88b13bc4,https://github.com/w3c-social/activipy,w3c-social_activipy,w3c-social/activipy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/w3c-social_activipy_hullabaloo_README.org +ac872f342056cb5176b9f018fd1470012ff9631a,https://github.com/njsmith/colorspacious.git,njsmith_colorspacious.git,njsmith/colorspacious.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/njsmith_colorspacious.git_hullabaloo_README.md +3264435241b07af5476a5f79f19f33619c44094a,https://github.com/neithere/argh.git,neithere_argh.git,neithere/argh.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/neithere_argh.git_hullabaloo_README +8a42c0f76c76820c9c1c5a29bb55f3a6330b3827,https://github.com/fuzzylite/fuzzylite,fuzzylite_fuzzylite,fuzzylite/fuzzylite,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fuzzylite_fuzzylite_hullabaloo_README +a5dacdfe27f0a3bf43c0419b4bbd9fd68485bca8,https://github.com/jenisys/parse_type,jenisys_parse_type,jenisys/parse/type,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jenisys_parse_type_hullabaloo_README.rst +169c9750facc967c845ba74d834eae978e1674f6,https://github.com/astropy/pytest-remotedata,astropy_pytest-remotedata,astropy/pytest-remotedata,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/astropy_pytest-remotedata_hullabaloo_README.rst +dca3139fce479265eaa231a362033b1394a0df48,https://github.com/r-spatial/sf,r-spatial_sf,r-spatial/sf,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/r-spatial_sf_hullabaloo_README.md +06c87a94db1c483caae559790e40a33e38d066d3,https://github.com/RIPE-NCC/ripe.atlas.sagan,RIPE-NCC_ripe.atlas.sagan,RIPE-NCC/ripe.atlas.sagan,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/RIPE-NCC_ripe.atlas.sagan_hullabaloo_README.md +53332a460c1d4632db6cc1365c9bc9a049ea4fc9,https://gitlab.com/wavexx/fgallery,wavexx_fgallery,wavexx/fgallery,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wavexx_fgallery_hullabaloo_README +6f6425ef5df07c05051d9f042578ffb1fb9200e1,https://github.com/horde/groupware.git,horde_groupware.git,horde/groupware.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/horde_groupware.git_hullabaloo_README +393e95c8091bd13b0e8babbe8087368fb8d75571,https://github.com/pytoolz/toolz.git,pytoolz_toolz.git,pytoolz/toolz.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytoolz_toolz.git_hullabaloo_README.md +b84833b4c7e71bdfbead84f65b4cb345a10cd91c,https://github.com/zsh-users/antigen,zsh-users_antigen,zsh-users/antigen,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zsh-users_antigen_hullabaloo_README.mkd +59b5c489bcfa49266ef2f58c542b6eb6a017f284,https://github.com/joshuaulrich/xts.git,joshuaulrich_xts.git,joshuaulrich/xts.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/joshuaulrich_xts.git_hullabaloo_README +d958e970d985f88dae5995ffd2454b979521ab7b,https://github.com/mintchaos/typogrify,mintchaos_typogrify,mintchaos/typogrify,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mintchaos_typogrify_hullabaloo_README.markdown +0c9d29d15ac6cdbfcf956455dfbf1b109cef9699,https://github.com/Changaco/python-libarchive-c.git,Changaco_python-libarchive-c.git,Changaco/python-libarchive-c.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Changaco_python-libarchive-c.git_hullabaloo_README.rst +d49c795021c91eb881e3fc51344d999d9fbd0940,https://github.com/kjetilk/p5-atteanx-store-sparql.git,kjetilk_p5-atteanx-store-sparql.git,kjetilk/p5-atteanx-store-sparql.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kjetilk_p5-atteanx-store-sparql.git_hullabaloo_README.pod +e0699e69dcbe547a7068ae1a3ef1411c49adfe6a,https://github.com/emcconville/wand,emcconville_wand,emcconville/wand,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/emcconville_wand_hullabaloo_README.rst +5c41ab800f9db4e6839703afe1659bf9ec5f456c,https://gitlab.gnome.org/GNOME/dconf-editor.git,GNOME_dconf-editor.git,GNOME/dconf-editor.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_dconf-editor.git_hullabaloo_README +18125d8356bb7ca6933f070b6e6c61491a4f6df1,https://github.com/cnanakos/kmodpy,cnanakos_kmodpy,cnanakos/kmodpy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cnanakos_kmodpy_hullabaloo_README +826670f99c7d83b218b7067d4a3d3ce3e32e49a9,https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP,perl-catalyst_Catalyst-Authentication-Credential-HTTP,perl-catalyst/Catalyst-Authentication-Credential-HTTP,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/perl-catalyst_Catalyst-Authentication-Credential-HTTP_hullabaloo_README +2d8b7a32e6e096b37ef7d7dc4c2f3ae843dbda83,https://github.com/ronsavage/CGI-Session-ExpireSessions,ronsavage_CGI-Session-ExpireSessions,ronsavage/CGI-Session-ExpireSessions,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ronsavage_CGI-Session-ExpireSessions_hullabaloo_README +c9ec11ba2d00e97cc9f18ca63af9109b98692146,https://github.com/kjetilk/RDF-Generator-Void.git,kjetilk_RDF-Generator-Void.git,kjetilk/RDF-Generator-Void.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kjetilk_RDF-Generator-Void.git_hullabaloo_README +74f9ceb6a22cba49f19623549f1e416d8de04854,https://github.com/sslmate/certspotter,sslmate_certspotter,sslmate/certspotter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sslmate_certspotter_hullabaloo_README +4fcd1a1a60c799bc8b9c21699038e76088819b68,https://github.com/jazzband/django-sortedm2m.git,jazzband_django-sortedm2m.git,jazzband/django-sortedm2m.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jazzband_django-sortedm2m.git_hullabaloo_README.txt +1a868d10f0e372ce404f18f6536429bd8f9b8aa9,https://github.com/dpocock/python-netsyslog,dpocock_python-netsyslog,dpocock/python-netsyslog,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dpocock_python-netsyslog_hullabaloo_README +a78bd02e33c20e48a7e70722cf343965389a4b63,https://gitlab.com/compiz/ccsm.git,compiz_ccsm.git,compiz/ccsm.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/compiz_ccsm.git_hullabaloo_README +afedd4abccd3ec3533e1f076b9b3720f680df40e,https://github.com/mitya57/secretstorage,mitya57_secretstorage,mitya57/secretstorage,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mitya57_secretstorage_hullabaloo_README.rst +8727ff5f00d74732faf9d68e4484ea9290d6879a,https://github.com/libyal/liblnk,libyal_liblnk,libyal/liblnk,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_liblnk_hullabaloo_README +02779015611a171364d62df6c2b55476758f875e,https://github.com/technicalpickles/homesick,technicalpickles_homesick,technicalpickles/homesick,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/technicalpickles_homesick_hullabaloo_README.rdoc +9edb3b6a3905d1381b651c0a70997ec5e1e19475,https://github.com/maddingue/SNMP-Extension-PassPersist.git,maddingue_SNMP-Extension-PassPersist.git,maddingue/SNMP-Extension-PassPersist.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/maddingue_SNMP-Extension-PassPersist.git_hullabaloo_README +b731ec31ddb98a49ca2c3fefdb5318dce8106605,https://github.com/biolab/serverfiles,biolab_serverfiles,biolab/serverfiles,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/biolab_serverfiles_hullabaloo_README.txt +7ff6213c483bec02123a5be1d0f79e0acd35b0d0,https://github.com/mschout/apache-singleton.git,mschout_apache-singleton.git,mschout/apache-singleton.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mschout_apache-singleton.git_hullabaloo_README +78347a2d11a132b5e7c27fb0855be70416298294,https://github.com/python-hyper/h11.git,python-hyper_h11.git,python-hyper/h11.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-hyper_h11.git_hullabaloo_README.rst +c1b1222beb7f85806e1b3ead776df5627aeee970,https://github.com/wolever/parameterized,wolever_parameterized,wolever/parameterized,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wolever_parameterized_hullabaloo_README.rst +cd11623a3ded1ef02c8de360f6ebd2f47a43fa22,https://github.com/danthedeckie/simpleeval.git,danthedeckie_simpleeval.git,danthedeckie/simpleeval.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/danthedeckie_simpleeval.git_hullabaloo_README.rst +b42609046ef05f8d8be4b08ac50ea10a3c6dfe71,https://github.com/mate-desktop/mate-user-share.git,mate-desktop_mate-user-share.git,mate-desktop/mate-user-share.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-user-share.git_hullabaloo_README.md +75e2d0febeb387beb6d58ee8a501447e0c55dd07,https://gitlab.freedesktop.org/xdg/xdg-sound-theme,xdg_xdg-sound-theme,xdg/xdg-sound-theme,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/xdg_xdg-sound-theme_hullabaloo_README +8939e4bc6a1517a123a3afcee95f15272ffc6b63,https://github.com/debian-calibre/html5-parser,debian-calibre_html5-parser,debian-calibre/html5-parser,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/debian-calibre_html5-parser_hullabaloo_README.rst +b2304d877b7c6859e95795de6ef3e0fd5d2add9f,https://github.com/audreyt/module-signature.git,audreyt_module-signature.git,audreyt/module-signature.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/audreyt_module-signature.git_hullabaloo_README +7af9a2c9fc7412b1ae50153a7d24c4f3002b85ce,https://github.com/vpelletier/python-libusb1.git,vpelletier_python-libusb1.git,vpelletier/python-libusb1.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/vpelletier_python-libusb1.git_hullabaloo_README +94e959f0722ed4e6add1270f6c242bf29dd26f52,git://git.lttng.org/lttng-ust.git,lttng-ust.git,lttng-ust.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lttng-ust.git_hullabaloo_README +609c92c33e00c72474acad6dea3196e260b17498,https://github.com/matthew-brett/sphinxtesters.git,matthew-brett_sphinxtesters.git,matthew-brett/sphinxtesters.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/matthew-brett_sphinxtesters.git_hullabaloo_README.rst +c2db11d0c355bf771f8d57ecc9ecfabc571566c5,https://github.com/MTecknology/tdc,MTecknology_tdc,MTecknology/tdc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/MTecknology_tdc_hullabaloo_README +3ab2a5a809a93826be1cd45f6d790a53f5e34010,https://anongit.kde.org/kolf.git,kolf.git,kolf.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kolf.git_hullabaloo_README.pool +593a296ed03ebe6c0e9b44952c4faaf470e2eafd,https://github.com/orocos/orocos_kinematics_dynamics.git,orocos_orocos_kinematics_dynamics.git,orocos/orocos/kinematics/dynamics.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/orocos_orocos_kinematics_dynamics.git_hullabaloo_README.txt +c12acd912cc9f474d45d415f3cf1ab4f19bb580c,https://github.com/jkeenan/list-compare.git,jkeenan_list-compare.git,jkeenan/list-compare.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jkeenan_list-compare.git_hullabaloo_README +7bc2e4d04848d77f70b95b10da7f722bd7436b90,https://github.com/Ableton/link.git,Ableton_link.git,Ableton/link.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Ableton_link.git_hullabaloo_README.md +d64893c5cab0c39c183a8a5a430c0d3433ee8f45,https://github.com/Yubico/yubikey-manager.git,Yubico_yubikey-manager.git,Yubico/yubikey-manager.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Yubico_yubikey-manager.git_hullabaloo_README +00f069dfa53e36a56985f74621c91df5330113a7,https://github.com/ukui/ukui-window-switch,ukui_ukui-window-switch,ukui/ukui-window-switch,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ukui_ukui-window-switch_hullabaloo_README +5c41ab800f9db4e6839703afe1659bf9ec5f456c,https://gitlab.gnome.org/GNOME/dconf.git,GNOME_dconf.git,GNOME/dconf.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_dconf.git_hullabaloo_README +df0f2a3aedc4f20af9647acf1512a4401d4cec2e,https://github.com/redis/hiredis,redis_hiredis,redis/hiredis,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/redis_hiredis_hullabaloo_README +527377d1ae6ab8f7d345815d4507fdadb4e165cb,https://github.com/libigl/triangle.git,libigl_triangle.git,libigl/triangle.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libigl_triangle.git_hullabaloo_README +2d0703dbf5cb72faab883970a8345eb3b15cd23f,https://github.com/astropy/astropy-healpix,astropy_astropy-healpix,astropy/astropy-healpix,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/astropy_astropy-healpix_hullabaloo_README.md +963fb2dc4ad3ce764b7b540c118780b0e0341ad1,https://github.com/caseman/noise.git,caseman_noise.git,caseman/noise.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/caseman_noise.git_hullabaloo_README.txt +e905f2008a153c16773a2030961817b912a73da6,https://github.com/node-xmpp/node-stringprep,node-xmpp_node-stringprep,node-xmpp/node-stringprep,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/node-xmpp_node-stringprep_hullabaloo_README.markdown +f853243a19a1cc6d2880d22d77f5b9ddef04e172,https://github.com/pyjokes/pyjokes,pyjokes_pyjokes,pyjokes/pyjokes,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pyjokes_pyjokes_hullabaloo_README.md +c4b868b11da95b891b8d93a3734b963c8fdff2c9,https://github.com/jbenc/plotnetcfg.git,jbenc_plotnetcfg.git,jbenc/plotnetcfg.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jbenc_plotnetcfg.git_hullabaloo_README +4d3744ff43430bdae9dc4b55264912320872fa9a,https://invent.kde.org/plasma/libksysguard.git,guard_guard.git,guard/guard.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/plasma_libksysguard.git_hullabaloo_README.md +e8acaa39be41e45d7f60482b0ca95f82f839f2f5,https://github.com/django-ldapdb/django-ldapdb,django-ldapdb_django-ldapdb,django-ldapdb/django-ldapdb,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/django-ldapdb_django-ldapdb_hullabaloo_README +851ee77dee007526d49ac91c01b0577812d7b86f,https://github.com/xiaoyeli/superlu.git,xiaoyeli_superlu.git,xiaoyeli/superlu.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/xiaoyeli_superlu.git_hullabaloo_README +bea0bd1b405ac1bc0f6e47beca572d6efc55c33c,https://github.com/typester/www-google-calculator-perl.git,typester_www-google-calculator-perl.git,typester/www-google-calculator-perl.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/typester_www-google-calculator-perl.git_hullabaloo_README +bba37221d4bcfee205f93fa3ff79c6ec94b22f4e,https://github.com/brodie/cram,brodie_cram,brodie/cram,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/brodie_cram_hullabaloo_README.txt +4bac3a76abcfc1297962324f3a45ae429dcb603a,https://github.com/zopefoundation/zope.deprecation.git,zopefoundation_zope.deprecation.git,zopefoundation/zope.deprecation.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zopefoundation_zope.deprecation.git_hullabaloo_README.txt +03874aa95b0a0907004f12f660dc21fc337e1642,https://github.com/leggewie-DM/wondershaper,leggewie-DM_wondershaper,leggewie-DM/wondershaper,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/leggewie-DM_wondershaper_hullabaloo_README +604ede52cc399507cac49073fe940e3bfdde5db2,https://github.com/RhodiumToad/ip4r.git,RhodiumToad_ip4r.git,RhodiumToad/ip4r.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/RhodiumToad_ip4r.git_hullabaloo_README.ip4r +061dd6ac8bab6c41e72d0d3ab266be521af92bb2,https://github.com/tj/node-growl,tj_node-growl,tj/node-growl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tj_node-growl_hullabaloo_README.md +1db6bf5155762dc1b2071f028022fec566e937b8,https://github.com/miyagawa/Plack-Middleware-Deflater.git,miyagawa_Plack-Middleware-Deflater.git,miyagawa/Plack-Middleware-Deflater.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/miyagawa_Plack-Middleware-Deflater.git_hullabaloo_README +9946d3a8585c9e990df7007750a88a9a2295fa28,https://github.com/eugeniy/pytest-tornado,eugeniy_pytest-tornado,eugeniy/pytest-tornado,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/eugeniy_pytest-tornado_hullabaloo_README +840ff4c2bf6c752d9770f0dd8d64a841060cf9bc,https://github.com/pytest-dev/pytest-runner.git,pytest-dev_pytest-runner.git,pytest-dev/pytest-runner.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_pytest-runner.git_hullabaloo_README +2a7f6541fae2f3d3b484867db493b7d9b7b56abb,https://github.com/tkf/python-epc,tkf_python-epc,tkf/python-epc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tkf_python-epc_hullabaloo_README.rst +7c9c9b82be882a3c48dc0b1bff93150268ae3dd0,https://github.com/dkogan/feedgnuplot.git,dkogan_feedgnuplot.git,dkogan/feedgnuplot.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dkogan_feedgnuplot.git_hullabaloo_README +02d0dbf31e045f2e65a3c75b448ca80651ed9537,https://github.com/sunlightlabs/python-sunlight,sunlightlabs_python-sunlight,sunlightlabs/python-sunlight,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sunlightlabs_python-sunlight_hullabaloo_README.markdown +f674870830a40e43feec51af81917b70460e13e5,https://github.com/py4n6/pytsk.git,py4n6_pytsk.git,py4n6/pytsk.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/py4n6_pytsk.git_hullabaloo_README +8c5e0368590edf1ef442d1ec07bcb0acfb5b8000,https://github.com/hughsie/colord-gtk.git,hughsie_colord-gtk.git,hughsie/colord-gtk.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hughsie_colord-gtk.git_hullabaloo_README +01f6f1f88a6068684d5b51a15410644f1771ad9c,https://github.com/django-haystack/django-haystack,django-haystack_django-haystack,django-haystack/django-haystack,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/django-haystack_django-haystack_hullabaloo_README.rst +32839d19707b5f11fc25270895b5f7d56c1313ae,https://github.com/Simplistix/testfixtures,Simplistix_testfixtures,Simplistix/testfixtures,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Simplistix_testfixtures_hullabaloo_README.txt +88e58cb8d3748833b5c124f64b083f095357c3e8,https://github.com/pgxn/pgxnclient.git,pgxn_pgxnclient.git,pgxn/pgxnclient.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pgxn_pgxnclient.git_hullabaloo_README +0a3b29b468bb74d5d5a8883173ec322d7bfcbdca,https://github.com/eudoxos/minieigen,eudoxos_minieigen,eudoxos/minieigen,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/eudoxos_minieigen_hullabaloo_README +333981716c000ceee352bdaa7028693b892e48f4,https://github.com/gvalkov/python-evdev.git,gvalkov_python-evdev.git,gvalkov/python-evdev.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gvalkov_python-evdev.git_hullabaloo_README.rst +919d45fc0a27690465b463b023eb3f63141be0b9,https://github.com/lgi-devs/lgi,lgi-devs_lgi,lgi-devs/lgi,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lgi-devs_lgi_hullabaloo_README +16acd4accb0edcbc46e3a4773bc95ca5ccb817e3,https://github.com/SimonSapin/Frozen-Flask,SimonSapin_Frozen-Flask,SimonSapin/Frozen-Flask,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/SimonSapin_Frozen-Flask_hullabaloo_README +f72107b5b3d12fc8b148749be05c58940c259756,https://github.com/jaraco/path.py.git,jaraco_path.py.git,jaraco/path.py.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jaraco_path.py.git_hullabaloo_README.rst +a5b37d75ab7e790a9826d23af95f626e7d8c58d6,https://github.com/mogaal/anypaper,mogaal_anypaper,mogaal/anypaper,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mogaal_anypaper_hullabaloo_README +080f561aeb684dc44770feeb9bc7787d0dc908b2,https://github.com/lstein/Devel-Cycle.git,lstein_Devel-Cycle.git,lstein/Devel-Cycle.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lstein_Devel-Cycle.git_hullabaloo_README +a5759cce0169d1a892edb2594ac05baa64919230,https://github.com/pkgconf/pkgconf,pkgconf_pkgconf,pkgconf/pkgconf,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pkgconf_pkgconf_hullabaloo_README +2af943f3eaeac6a22df1e1d2a36e78272186740f,https://github.com/mfenniak/pg8000,mfenniak_pg8000,mfenniak/pg8000,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mfenniak_pg8000_hullabaloo_README.creole +0c9547c6041027249571134548d3d9f01b684b9a,https://github.com/neilb/Test-Cmd.git,neilb_Test-Cmd.git,neilb/Test-Cmd.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/neilb_Test-Cmd.git_hullabaloo_README +5fd511edfb6b9d67c93519cb0772f8eaea138b0f,https://github.com/PyCQA/pyflakes,PyCQA_pyflakes,PyCQA/pyflakes,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/PyCQA_pyflakes_hullabaloo_README.rst +c24cea83d6c694f2163fe3f985cf4022f54580ee,https://github.com/django-cms/django-sekizai.git,django-cms_django-sekizai.git,django-cms/django-sekizai.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/django-cms_django-sekizai.git_hullabaloo_README +bf7df79e521c9465f09aa02609afda5ea1d486c3,https://github.com/selectel/pyte,selectel_pyte,selectel/pyte,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/selectel_pyte_hullabaloo_README.rst +da2ef71f6d1dc07a8f5baf27d13acebb41ed86dd,https://github.com/mtoyoda/sl,mtoyoda_sl,mtoyoda/sl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mtoyoda_sl_hullabaloo_README.ja.md +4c7e0d8d3e92d895e7a782a1be564d949b2a46b3,https://github.com/neilb/Graph-ReadWrite.git,neilb_Graph-ReadWrite.git,neilb/Graph-ReadWrite.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/neilb_Graph-ReadWrite.git_hullabaloo_README +cf72cbc5d1c0cfadbfd000d11d91bb128dd8ec5f,https://github.com/python-hyper/hpack,python-hyper_hpack,python-hyper/hpack,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-hyper_hpack_hullabaloo_README.rst +67fb537e5cda0bd97ec00358694c4902ec2be5e3,https://github.com/newville/asteval.git,newville_asteval.git,newville/asteval.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/newville_asteval.git_hullabaloo_README.TXT +a4445f05f79e2e0090bf19d1d4d3c7e30a0bd7e1,https://github.com/agronholm/pythonfutures.git,agronholm_pythonfutures.git,agronholm/pythonfutures.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/agronholm_pythonfutures.git_hullabaloo_README.rst +b79cab5eecc0e84bc860f8dd25973c44ea094ab0,https://github.com/aelmahmoudy/libitl-gobject.git,aelmahmoudy_libitl-gobject.git,aelmahmoudy/libitl-gobject.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aelmahmoudy_libitl-gobject.git_hullabaloo_README +cc00a157703d5da61b9ffc29a80077c4aafa0277,https://github.com/jemalloc/jemalloc,jemalloc_jemalloc,jemalloc/jemalloc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jemalloc_jemalloc_hullabaloo_README +1454981ac5f4f7ea8fe741a8125efbf0b09497ea,https://github.com/sionescu/fiveam.git,sionescu_fiveam.git,sionescu/fiveam.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sionescu_fiveam.git_hullabaloo_README +f53ece6fd1c513db38a8d27d5f2d0ee4c522f9e3,https://github.com/linuxmint/python3-xapp.git,linuxmint_python3-xapp.git,linuxmint/python3-xapp.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/linuxmint_python3-xapp.git_hullabaloo_README +a6cbdbd02205e3d39b62262aa29bc2bd70be99ac,https://github.com/hickford/MechanicalSoup,hickford_MechanicalSoup,hickford/MechanicalSoup,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hickford_MechanicalSoup_hullabaloo_README.md +dff47d2f8b9bcea6fff530dc0cf88b72dc01ff52,https://github.com/VcDevel/Vc,VcDevel_Vc,VcDevel/Vc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/VcDevel_Vc_hullabaloo_README +27b10ae65d5d81e17aea3d8981e21f85033c9de8,https://github.com/gtimelog/gtimelog,gtimelog_gtimelog,gtimelog/gtimelog,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gtimelog_gtimelog_hullabaloo_README.txt +b55acc34f0df54a48665eb3fbc7d9eb024dd7cb2,https://github.com/openstack/python-swiftclient.git,openstack_python-swiftclient.git,openstack/python-swiftclient.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/openstack_python-swiftclient.git_hullabaloo_README.rst +6d414fd30f755b5c31b5d4a4b1a5549974edecfd,https://github.com/pyvisa/pyvisa-py.git,pyvisa_pyvisa-py.git,pyvisa/pyvisa-py.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pyvisa_pyvisa-py.git_hullabaloo_README +5cab9552630928d9ed8c3f5ec85cfa0fe894e323,https://invent.kde.org/plasma/plasma-nm.git,plasma_plasma-nm.git,plasma/plasma-nm.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/plasma_plasma-nm.git_hullabaloo_README +e65c12da5f0b2d2c3531d790953b5d288c03b4a7,https://gitlab.gnome.org/GNOME/network-manager-applet,GNOME_network-manager-applet,GNOME/network-manager-applet,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_network-manager-applet_hullabaloo_README +be8f0becf150fa8e45b81cba0c51609ce2b2fb76,https://github.com/etianen/django-python3-ldap,etianen_django-python3-ldap,etianen/django-python3-ldap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/etianen_django-python3-ldap_hullabaloo_README.rst +6fcdb2af5fd3f432dd9e17ab82dd9a184e5a8c60,https://github.com/afewmail/afew,afewmail_afew,afewmail/afew,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/afewmail_afew_hullabaloo_README +1cfb345ffb437f5c93af84f6c9e3ccecbab375eb,https://github.com/r-lib/xml2,r-lib_xml2,r-lib/xml2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/r-lib_xml2_hullabaloo_README.md +7fb63e3aa61f1934d5df586d0e98b4981ee4eb33,https://github.com/dustymabe/vagrant-sshfs,dustymabe_vagrant-sshfs,dustymabe/vagrant-sshfs,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dustymabe_vagrant-sshfs_hullabaloo_README.md +a349916187b05b700e56d1a88feb5136ff7542ad,https://github.com/neilbowers/Test-Pod-Coverage,neilbowers_Test-Pod-Coverage,neilbowers/Test-Pod-Coverage,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/neilbowers_Test-Pod-Coverage_hullabaloo_README +96fede517c1349cc541e0628883274e73cdde3bb,https://gitlab.com/libvirt/libvirt-ruby.git,libvirt_libvirt-ruby.git,libvirt/libvirt-ruby.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libvirt_libvirt-ruby.git_hullabaloo_README +58fc223acb28bcb5d87ea79e79a6ca80ea98258e,https://gitlab.freedesktop.org/mesa/waffle.git,mesa_waffle.git,mesa/waffle.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mesa_waffle.git_hullabaloo_README.txt +a13e1a64b71f97e84269c0eaf0063eed237f529e,https://github.com/jaalto/project--perl-depends.git,jaalto_project--perl-depends.git,jaalto/project--perl-depends.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jaalto_project--perl-depends.git_hullabaloo_README +ecfd5f0b2aacb0dd4d4c50676001915d661831a0,https://github.com/PyGreSQL/PyGreSQL,PyGreSQL_PyGreSQL,PyGreSQL/PyGreSQL,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/PyGreSQL_PyGreSQL_hullabaloo_README +ef9f99371757ae9a85b4d9b148c954d79988de90,https://github.com/YJesus/Unhide.git,YJesus_Unhide.git,YJesus/Unhide.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/YJesus_Unhide.git_hullabaloo_README.txt +ed145eb9c5f99f2e02a65f4641c084c1b8b9ada9,https://github.com/edzer/sp.git,edzer_sp.git,edzer/sp.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/edzer_sp.git_hullabaloo_README.md +1b53cb8802f4e7de35f5f3e794bfffdaa70a03bc,https://github.com/DamienCassou/beginend.git,DamienCassou_beginend.git,DamienCassou/beginend.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/DamienCassou_beginend.git_hullabaloo_README.md +2a2f1a3d054a4ebf21bde00472dec441f2a7ac8a,https://github.com/benji-york/manuel,benji-york_manuel,benji-york/manuel,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/benji-york_manuel_hullabaloo_README.txt +2cb6b26725dfbe09b02c49052705bd26555f86f9,https://github.com/briandfoy/test-prereq.git,briandfoy_test-prereq.git,briandfoy/test-prereq.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/briandfoy_test-prereq.git_hullabaloo_README +eabe6eb4d71ce89affa33e3c80c206153abdc0aa,https://github.com/jamesturk/django-markupfield,jamesturk_django-markupfield,jamesturk/django-markupfield,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jamesturk_django-markupfield_hullabaloo_README +b70598403558feb4e726c43f3da69113bea49c78,https://github.com/JKDingwall/autolog.git,JKDingwall_autolog.git,JKDingwall/autolog.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/JKDingwall_autolog.git_hullabaloo_README +857ecd713cb452ea4a2f5c65a42a070494e1fc38,https://gitlab.com/warsaw/flufl.i18n,warsaw_flufl.i18n,warsaw/flufl.i18n,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/warsaw_flufl.i18n_hullabaloo_README.txt +b15ac417c268ba7d18fca8679c5d851b9064895f,https://github.com/unixabg/ifetch-tools,unixabg_ifetch-tools,unixabg/ifetch-tools,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/unixabg_ifetch-tools_hullabaloo_README.txt +62dd5bfac0546ccd802d970d0b888b0cb9fd5e4b,https://github.com/pytoolz/cytoolz,pytoolz_cytoolz,pytoolz/cytoolz,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytoolz_cytoolz_hullabaloo_README.rst +e38a99f12cc4c0e7db99f675b4540ee9575c03d6,https://github.com/frostming/legit,frostming_legit,frostming/legit,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/frostming_legit_hullabaloo_README +f441e3cb3b815fe4b90221617181459a3cb66aef,https://github.com/perfectline/validates_email.git,perfectline_validates_email.git,perfectline/validates/email.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/perfectline_validates_email.git_hullabaloo_README.markdown +70f5a3e219bb4cbdbd802de423b07735c3fff879,https://github.com/Toblerity/Fiona.git,Toblerity_Fiona.git,Toblerity/Fiona.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Toblerity_Fiona.git_hullabaloo_README.txt +316aa69711446fa1b4abcf7a8a665ad943436cb5,https://github.com/yourlabs/django-session-security,yourlabs_django-session-security,yourlabs/django-session-security,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/yourlabs_django-session-security_hullabaloo_README.md +d0391650b47bec86401fe03d1f658c7a5f8ec831,https://github.com/formorer/pkg-ferm,formorer_pkg-ferm,formorer/pkg-ferm,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/formorer_pkg-ferm_hullabaloo_README +c51ef797a707f4e2c6f9688d4378f2b0e9898a66,https://github.com/mate-desktop/mate-panel.git,mate-desktop_mate-panel.git,mate-desktop/mate-panel.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-panel.git_hullabaloo_README +e10beeb8fb88ead4749e73af9dba37808929236f,https://github.com/elmar/autocutsel-debian,elmar_autocutsel-debian,elmar/autocutsel-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/elmar_autocutsel-debian_hullabaloo_README +374d6ac35cf784481d60634e9b8e6ca8be7c9302,https://github.com/lz4/lz4,lz4_lz4,lz4/lz4,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lz4_lz4_hullabaloo_README.md +2e67f32eecffea8d02151dfd7ebfcc218fd58bb0,https://github.com/mteg/braa,mteg_braa,mteg/braa,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mteg_braa_hullabaloo_README +be08a8883856176d75c6e387ac590106a3167a39,https://github.com/hatukanezumi/sombok,hatukanezumi_sombok,hatukanezumi/sombok,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hatukanezumi_sombok_hullabaloo_README +0e56d90654f8352bf1a5642627f4b51b57211bb3,https://github.com/coppit/filehandle-unget.git,coppit_filehandle-unget.git,coppit/filehandle-unget.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/coppit_filehandle-unget.git_hullabaloo_README +74f33b719d7072c565ff05813d86d65310f0153f,https://github.com/ddclient/ddclient.git,ddclient_ddclient.git,ddclient/ddclient.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ddclient_ddclient.git_hullabaloo_README.ssl +c10b01e84a9a262c00e46d7a4f315d66bea4fb94,https://github.com/python-gitlab/python-gitlab.git,python-gitlab_python-gitlab.git,python-gitlab/python-gitlab.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-gitlab_python-gitlab.git_hullabaloo_README.md +56bb86b830a4d524faa4f54d0677af0981259281,https://github.com/Bumblebee-Project/bbswitch,Bumblebee-Project_Bumblebee,Bumblebee-Project/Bumblebee,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Bumblebee-Project_bbswitch_hullabaloo_README.md +b5798f7099a2aa6b621c656a4e1c7cfb34c66aa9,https://github.com/elmar/aptitude-robot,elmar_aptitude-robot,elmar/aptitude-robot,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/elmar_aptitude-robot_hullabaloo_README.md +52d7aadcc57f3fa09653d315fc1a7fef52ae6bca,https://github.com/mate-desktop/mate-session-manager.git,mate-desktop_mate-session-manager.git,mate-desktop/mate-session-manager.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-session-manager.git_hullabaloo_README +b50e6e06f22d3c653166e1817d75c3f4a98b2748,https://gitlab.freedesktop.org/xorg/lib/libxi.git,xorg_lib_libxi.git,xorg/lib/libxi.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/xorg_lib_libxi.git_hullabaloo_README +c0e70ea18f1011fc0e7f892d1bd25a4cd653d6b9,https://github.com/PrimeSense/Sensor.git,PrimeSense_Sensor.git,PrimeSense/Sensor.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/PrimeSense_Sensor.git_hullabaloo_README +687fe662e07c2e0d5d49686b1786e656bd5de3fa,https://github.com/lxqt/pcmanfm-qt.git,lxqt_pcmanfm-qt.git,lxqt/pcmanfm-qt.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lxqt_pcmanfm-qt.git_hullabaloo_README +a06ca4059107d08fe4b45da2391d14edc4da0014,https://github.com/rakshasa/libtorrent.git,rakshasa_libtorrent.git,rakshasa/libtorrent.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rakshasa_libtorrent.git_hullabaloo_README +e884a3c6831dba7b7ef2a970e8c33242933351f8,https://github.com/doorkeeper-gem/doorkeeper,doorkeeper-gem_doorkeeper,doorkeeper-gem/doorkeeper,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/doorkeeper-gem_doorkeeper_hullabaloo_README.md +7ca550c0a8ec8379f19dbaf141a90f328698e9ba,https://github.com/NIFTI-Imaging/nifti_clib.git,NIFTI-Imaging_nifti_clib.git,NIFTI-Imaging/nifti/clib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/NIFTI-Imaging_nifti_clib.git_hullabaloo_README +989046217f74e55072c96f8e50572aee592abb76,https://github.com/admesh/admesh,admesh_admesh,admesh/admesh,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/admesh_admesh_hullabaloo_README +b95749437bdb961a98b79a10114567eb31547e9d,https://github.com/gweis/isodate,gweis_isodate,gweis/isodate,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gweis_isodate_hullabaloo_README.txt +1fa1d330154e7afc476d09ffcdf9ac7af28621a2,https://github.com/pimutils/todoman.git,pimutils_todoman.git,pimutils/todoman.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pimutils_todoman.git_hullabaloo_README.md +136660c03bd7a4c659a5c117953cd65fafdb56ef,https://github.com/fluxx/exam,fluxx_exam,fluxx/exam,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fluxx_exam_hullabaloo_README.rst +59ae48e2a9cfd5b6fb2acadb609ffba12d7871a8,https://github.com/hipchat/hipchat-rb,hipchat_hipchat-rb,hipchat/hipchat-rb,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hipchat_hipchat-rb_hullabaloo_README.rdoc +023009149c9b8830b3f732b7a59dd5c93c9f7774,https://github.com/openSUSE/snapper.git,openSUSE_snapper.git,openSUSE/snapper.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/openSUSE_snapper.git_hullabaloo_README +01fb1d3bc18b173893921813421ea45463351dfa,https://git.h8u.de/svolli/pngphoon,svolli_pngphoon,svolli/pngphoon,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/svolli_pngphoon_hullabaloo_README +72455878f6e8a7056448829ef227d31520b34839,https://github.com/breunigs/python-librtmp-debian,breunigs_python-librtmp-debian,breunigs/python-librtmp-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/breunigs_python-librtmp-debian_hullabaloo_README.rst +653e175d19c1f0cd9f5e95dd75ea17cf43e030ea,https://gitlab.com/esr/doclifter,esr_doclifter,esr/doclifter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/esr_doclifter_hullabaloo_README +3247ac5d4b82e42be0f2481747ec11366cd949b6,https://github.com/carljm/django-model-utils.git,carljm_django-model-utils.git,carljm/django-model-utils.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/carljm_django-model-utils.git_hullabaloo_README.txt +e514833a80a262377781325a56502d313091e40d,https://gitlab.gnome.org/GNOME/template-glib.git,GNOME_template-glib.git,GNOME/template-glib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_template-glib.git_hullabaloo_README.md +a0cbcae75de3ce644c344d1010ee2047a89d6ab0,https://github.com/OpenSC/libp11.git,OpenSC_libp11.git,OpenSC/libp11.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/OpenSC_libp11.git_hullabaloo_README +e2dbbb6e64ee5d665e89c8556d4212075b1cde23,https://github.com/libspatialindex/libspatialindex.git,libspatialindex_libspatialindex.git,libspatialindex/libspatialindex.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libspatialindex_libspatialindex.git_hullabaloo_README +f1aa25bcf83eb77eb6476c678d4375039127679a,https://github.com/marshmallow-code/flask-marshmallow.git,marshmallow-code_marshmallow.git,marshmallow-code/marshmallow.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/marshmallow-code_flask-marshmallow.git_hullabaloo_README.rst +8e3eb4551091373b631462caf66448dd71ec61ef,https://github.com/sqlmapproject/sqlmap.git,sqlmapproject_sqlmap.git,sqlmapproject/sqlmap.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sqlmapproject_sqlmap.git_hullabaloo_README.pdf +d541e3eece5593bdbe2f028bb07892d69b85d1af,https://github.com/mupen64plus/mupen64plus-ui-console.git,mupen64plus_mupen64plus-ui-console.git,mupen64plus/mupen64plus-ui-console.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mupen64plus_mupen64plus-ui-console.git_hullabaloo_README +5fb93d0dd5b69c00a038820f26d9af4019ce3211,https://github.com/coldtobi/solarpowerlog,coldtobi_solarpowerlog,coldtobi/solarpowerlog,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/coldtobi_solarpowerlog_hullabaloo_README +cc594366f38827821008048a62532abcb2f9cc73,https://gitlab.com/warsaw/flufl.testing.git,warsaw_flufl.testing.git,warsaw/flufl.testing.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/warsaw_flufl.testing.git_hullabaloo_README.rst +d24e2f3be0a329fa267ce235f848003a86462275,https://github.com/emre/kaptan.git,emre_kaptan.git,emre/kaptan.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/emre_kaptan.git_hullabaloo_README.md +03f684da7600ff67b2208c916506f92e335e1907,https://gitlab.xfce.org/panel-plugins/xfce4-genmon-plugin,panel-plugins_xfce4-genmon-plugin,panel-plugins/xfce4-genmon-plugin,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/panel-plugins_xfce4-genmon-plugin_hullabaloo_README +a78af02390c4fc91acc6c1605fb81d686168f880,https://gitlab.com/libvirt/libvirt-glib.git,libvirt_libvirt-glib.git,libvirt/libvirt-glib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libvirt_libvirt-glib.git_hullabaloo_README +6eb8664012fda2fad96d347c9cc860754abc076b,https://github.com/pytest-dev/pytest-xdist,pytest-dev_pytest-xdist,pytest-dev/pytest-xdist,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_pytest-xdist_hullabaloo_README.txt +7b1639cb7f01e51a85808a03e6991e0e895be6fa,https://github.com/jgarber/redcloth.git,jgarber_redcloth.git,jgarber/redcloth.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jgarber_redcloth.git_hullabaloo_README +c9d1a13fd839ef1752cf4cc7cfe2b7fb83e4ead1,https://github.com/neilb/Lingua-PT-Stemmer.git,neilb_Lingua-PT-Stemmer.git,neilb/Lingua-PT-Stemmer.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/neilb_Lingua-PT-Stemmer.git_hullabaloo_README +fe80e676aee714e6015e523e3ad07d3f45348be6,https://github.com/p5-number-fraction/number-fraction.git,p5-number-fraction_number-fraction.git,p5-number-fraction/number-fraction.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/p5-number-fraction_number-fraction.git_hullabaloo_README +ceb64d488a1d0600337e8516c10a4a65ebeb3c96,https://github.com/tuomasjjrasanen/python-uinput,tuomasjjrasanen_python-uinput,tuomasjjrasanen/python-uinput,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tuomasjjrasanen_python-uinput_hullabaloo_README +bc66647b3bf3fc5a270dac14f491c1b4eafbb90f,https://gitlab.com/pg_top/pg_top.git,pg_top_pg_top.git,pg/top/pg/top.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pg_top_pg_top.git_hullabaloo_README +ffbe3db5df5c3514cee4759fbb152f445612c68c,https://github.com/alisaifee/limits.git,alisaifee_limits.git,alisaifee/limits.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/alisaifee_limits.git_hullabaloo_README.rst +2feb1060545bf3f085b4fd58e74a68537f293a61,https://github.com/hyde/fswrap,hyde_fswrap,hyde/fswrap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hyde_fswrap_hullabaloo_README.rst +24e86364a9d765304780eeff852928b3803e65b0,https://github.com/log2timeline/dfdatetime.git,log2timeline_dfdatetime.git,log2timeline/dfdatetime.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/log2timeline_dfdatetime.git_hullabaloo_README +b37e3978280e5673eacc65e64603aa279db532a2,https://github.com/gaetano-guerriero/eyeD3-debian,gaetano-guerriero_eyeD3-debian,gaetano-guerriero/eyeD3-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gaetano-guerriero_eyeD3-debian_hullabaloo_README.rst +5dc1cf503352209f62bb0d64f922ab3dbb8be6ce,https://gitlab.com/fbb-git/natlog.git,fbb-git_natlog.git,fbb-git/natlog.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fbb-git_natlog.git_hullabaloo_README +caf4d9b8b8b0d26856d2d64f00ab23756867a923,https://github.com/mate-desktop/libmatemixer.git,mate-desktop_libmatemixer.git,mate-desktop/libmatemixer.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_libmatemixer.git_hullabaloo_README +e5a88e405576be36887e94cd594e7c56e9795270,https://github.com/sphinx-contrib/autoprogram.git,sphinx-contrib_autoprogram.git,sphinx-contrib/autoprogram.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sphinx-contrib_autoprogram.git_hullabaloo_README.rst +31f34979100d4dabc927b6173e8b1978cc49ad53,https://github.com/elmar/ldap-git-backup,elmar_ldap-git-backup,elmar/ldap-git-backup,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/elmar_ldap-git-backup_hullabaloo_README.md +d9ace8cae8f12de4b5aea4690a21e926861ee36e,https://github.com/luqasz/librouteros,luqasz_librouteros,luqasz/librouteros,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/luqasz_librouteros_hullabaloo_README.md +9a6c527ef46f25976a53d00bed85ff3977c8e4db,https://github.com/viewflow/django-fsm,viewflow_django-fsm,viewflow/django-fsm,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/viewflow_django-fsm_hullabaloo_README +5afe27bce79b59944d0dfd564f8a4dfa88bbcd51,https://github.com/kjetilk/Test-RDF.git,kjetilk_Test-RDF.git,kjetilk/Test-RDF.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kjetilk_Test-RDF.git_hullabaloo_README +9d1d71a22f9acf0c5c283064b805166ad612013b,https://github.com/mate-desktop/mate-common.git,mate-desktop_mate-common.git,mate-desktop/mate-common.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-common.git_hullabaloo_README +37240ebede0e2e78cf1299d0b7ce43abbd878397,https://github.com/shlomif/perl-error.pm.git,shlomif_perl-error.pm.git,shlomif/perl-error.pm.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/shlomif_perl-error.pm.git_hullabaloo_README +4caf178bd434219f53ebaf7b4f8053270f3e93e6,https://github.com/PyCQA/pydocstyle.git,PyCQA_pydocstyle.git,PyCQA/pydocstyle.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/PyCQA_pydocstyle.git_hullabaloo_README +73ca88857a133fa2c074be646085350d8e99eae6,https://github.com/pypa/readme_renderer,pypa_readme_renderer,pypa/readme/renderer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pypa_readme_renderer_hullabaloo_README.rst +4b9cd87e2f52a3bb996f3044323fea46f18d2639,https://github.com/ionelmc/python-lazy-object-proxy.git,ionelmc_python-lazy-object-proxy.git,ionelmc/python-lazy-object-proxy.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ionelmc_python-lazy-object-proxy.git_hullabaloo_README.md +3265af743307b63aae67026e22d07cb3f6606b33,https://invent.kde.org/pim/kdepim-apps-libs,pim_kdepim-apps-libs,pim/kdepim-apps-libs,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pim_kdepim-apps-libs_hullabaloo_README.md +9d743c4305d742737d476d45d3710e4166305a39,https://github.com/JessThrysoee/xtermcontrol.git,JessThrysoee_xtermcontrol.git,JessThrysoee/xtermcontrol.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/JessThrysoee_xtermcontrol.git_hullabaloo_README +49a0a2e98887332d23930e67d9b64010ad19cf9f,https://github.com/nicolasff/webdis,nicolasff_webdis,nicolasff/webdis,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nicolasff_webdis_hullabaloo_README.md +cf401da1ce352046a26ce643076bfb21623824a2,https://github.com/grosser/maxitest,grosser_maxitest,grosser/maxitest,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/grosser_maxitest_hullabaloo_README.md +00f16f91a878676a55aa1e6e85b5e1092f7cf8e9,https://github.com/python-babel/flask-babel,python-babel_babel,python-babel/babel,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-babel_flask-babel_hullabaloo_README.md +89df60be5ed267cd571cda20ea3dd3efa57c6d99,https://github.com/gazay/gon,gazay_gon,gazay/gon,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gazay_gon_hullabaloo_README.md +618b37a9a5164baf8bb885fd9d6c3f0f36c86b3c,https://invent.kde.org/pim/kjots,pim_kjots,pim/kjots,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pim_kjots_hullabaloo_README +3c67fdbc29275c92d4d953d21864ffee6e6751c6,https://github.com/ubernostrum/django-contact-form,ubernostrum_django-contact-form,ubernostrum/django-contact-form,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ubernostrum_django-contact-form_hullabaloo_README.txt +0a339699814b58014633908fbd0028c9ca6ec1ca,https://github.com/mriehl/fysom.git,mriehl_fysom.git,mriehl/fysom.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mriehl_fysom.git_hullabaloo_README +18617e0ed6e82f32d3bab9be6ddfe5f351bb21d0,https://github.com/praekelt/django-setuptest.git,praekelt_django-setuptest.git,praekelt/django-setuptest.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/praekelt_django-setuptest.git_hullabaloo_README.rst +13b1212e2c6727f48d01ec0f71539bc84b87b411,https://github.com/celery/py-amqp.git,celery_py-amqp.git,celery/py-amqp.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/celery_py-amqp.git_hullabaloo_README +16c7d718e7de287bc179e0e6bc9fee9bfa0a1c5a,https://github.com/berkerpeksag/astor,berkerpeksag_astor,berkerpeksag/astor,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/berkerpeksag_astor_hullabaloo_README.rst +d477df8c28783c1d242b006473563f7cb2abc07d,https://github.com/ankitects/anki.git,ankitects_anki.git,ankitects/anki.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ankitects_anki.git_hullabaloo_README +68c04f65ca84f4b32cf5172de9eff7563de496ad,https://github.com/aplpy/aplpy.git,aplpy_aplpy.git,aplpy/aplpy.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aplpy_aplpy.git_hullabaloo_README.txt +7e83d1e94cdf19a55dd4a6a9a8c4e5964abcb76d,https://github.com/angdraug/samizdat,angdraug_samizdat,angdraug/samizdat,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/angdraug_samizdat_hullabaloo_README +91f53c7713caa8f24c6d5d870c46d9e5bc194a55,https://github.com/matthew-brett/nb2plots.git,matthew-brett_nb2plots.git,matthew-brett/nb2plots.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/matthew-brett_nb2plots.git_hullabaloo_README.rst +f5edb7e3d227235feea5bbd52b9058416dc3a470,https://github.com/vasi/squashfuse.git,vasi_squashfuse.git,vasi/squashfuse.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/vasi_squashfuse.git_hullabaloo_README +db19b5793f27e25bd6f8cd3c3a72b76f7ca94501,https://github.com/pytest-dev/pytest-timeout.git,pytest-dev_pytest-timeout.git,pytest-dev/pytest-timeout.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_pytest-timeout.git_hullabaloo_README.rst +b4b653122b32a5da6bea4707e8df75a2b997a32f,https://github.com/jpy-consortium/jpy,jpy-consortium_jpy,jpy-consortium/jpy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jpy-consortium_jpy_hullabaloo_README.md +a6ce767de90dae6aa9588699c3b40e408d6c86df,https://github.com/wolfcw/libfaketime.git,wolfcw_libfaketime.git,wolfcw/libfaketime.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wolfcw_libfaketime.git_hullabaloo_README +d9b3392870ae6dee0cb062f431155eb8db382f4d,https://github.com/perldancer/Dancer-Plugin-REST.git,perldancer_Dancer-Plugin-REST.git,perldancer/Dancer-Plugin-REST.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/perldancer_Dancer-Plugin-REST.git_hullabaloo_README +30167a535c7eac17888d50a08998bccf92469e19,https://github.com/openwisp/django-x509,openwisp_django-x509,openwisp/django-x509,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/openwisp_django-x509_hullabaloo_README.rst +032c52c6172856af88bbd5b7c59b3c1fb744421e,https://github.com/dbtsai/python-mimeparse.git,dbtsai_python-mimeparse.git,dbtsai/python-mimeparse.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dbtsai_python-mimeparse.git_hullabaloo_README +9a755e49330ab36384ffe991b31abb8f10f9ecc8,https://github.com/tomszilagyi/ir.lv2.git,tomszilagyi_ir.lv2.git,tomszilagyi/ir.lv2.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tomszilagyi_ir.lv2.git_hullabaloo_README.md +f6148796acd81983703b1fa4cca1a89d088ba20c,https://github.com/mbi/django-simple-captcha.git,mbi_django-simple-captcha.git,mbi/django-simple-captcha.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mbi_django-simple-captcha.git_hullabaloo_README.rst +a5a10938a480aaaa5426e524923d19ac1209658f,https://github.com/sublee/flask-silk.git,sublee_flask-silk.git,sublee/flask-silk.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sublee_flask-silk.git_hullabaloo_README +852880eff7be980c5bd4c86e8451a4e120a054a7,https://github.com/libcgroup/libcgroup,libcgroup_libcgroup,libcgroup/libcgroup,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libcgroup_libcgroup_hullabaloo_README +b9dafda1d67190612e049e4c8c86077bfbf29f27,https://github.com/CastXML/CastXML.git,CastXML_CastXML.git,CastXML/CastXML.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/CastXML_CastXML.git_hullabaloo_README.txt +82b7e2c6fb0c26920de095d871c15e6493d8bbed,https://github.com/Smattr/rumur.git,Smattr_rumur.git,Smattr/rumur.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Smattr_rumur.git_hullabaloo_README.rst +8129278527c8749b7b96dc6ef536b48543128130,https://github.com/imcleod/VMDK-stream-converter.git,imcleod_VMDK-stream-converter.git,imcleod/VMDK-stream-converter.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/imcleod_VMDK-stream-converter.git_hullabaloo_README +5615fa90d4b0f57744777fe0216cb1ba210eff24,https://github.com/fadden/nulib2.git,fadden_nulib2.git,fadden/nulib2.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fadden_nulib2.git_hullabaloo_README.txt +bf5e5bef8e269cd8e7ddd9cf1180308bc1688c1f,https://github.com/cbbrowne/autodoc.git,cbbrowne_autodoc.git,cbbrowne/autodoc.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cbbrowne_autodoc.git_hullabaloo_README +90a663d0b3e36675d19349d5d7ec7dfed1d4e81e,https://github.com/stain/arcp-py.git,stain_arcp-py.git,stain/arcp-py.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/stain_arcp-py.git_hullabaloo_README.md +19f0ae2a05044a1a3d9a2368073b228a4b5f70fb,https://github.com/cvs-m17n-org/MU-CITE,cvs-m17n-org_MU-CITE,cvs-m17n-org/MU-CITE,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cvs-m17n-org_MU-CITE_hullabaloo_README.en +4aafa00e95cc8e495ad7a8a34191dd9d2048e036,https://github.com/mattyowl/astLib.git,mattyowl_astLib.git,mattyowl/astLib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mattyowl_astLib.git_hullabaloo_README +de675cd6543fd03250b0ff61e2d4138e520e073f,https://github.com/kjetilk/p5-atteanx-compatibility-trine.git,kjetilk_p5-atteanx-compatibility-trine.git,kjetilk/p5-atteanx-compatibility-trine.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kjetilk_p5-atteanx-compatibility-trine.git_hullabaloo_README.pod +49f397d74e8ea6bc57ec422afb15f0149f9c44e5,https://github.com/ronsavage/GraphViz.git,ronsavage_GraphViz.git,ronsavage/GraphViz.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ronsavage_GraphViz.git_hullabaloo_README +72cd034ad5a0327471e97d445ea9479c875eb72f,https://github.com/source-foundry/Hack,source-foundry_Hack,source-foundry/Hack,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/source-foundry_Hack_hullabaloo_README.md +353fb3403e50a1cc5418a287d371eb59355c288a,https://github.com/django-auth-ldap/django-auth-ldap.git,django-auth-ldap_django-auth-ldap.git,django-auth-ldap/django-auth-ldap.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/django-auth-ldap_django-auth-ldap.git_hullabaloo_README +20b932fc5b15e9828d67e2399022df1959be1a2d,https://anongit.kde.org/libkmahjongg.git,libkmahjongg.git,libkmahjongg.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libkmahjongg.git_hullabaloo_README +6995e2cfd517af456904db26b7781b4953feeacc,https://github.com/octo/liboping,octo_liboping,octo/liboping,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/octo_liboping_hullabaloo_README +57c81ae5ae7b6d47d68bf3125b6c52c09ad27aec,https://github.com/pallets-eco/flask-sqlalchemy,pallets-eco_flask-sqlalchemy,pallets-eco/flask-sqlalchemy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pallets-eco_flask-sqlalchemy_hullabaloo_README +8bd4f358da6e1384126efd16c1070b70a213edbf,https://github.com/AltraMayor/f3.git,AltraMayor_f3.git,AltraMayor/f3.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/AltraMayor_f3.git_hullabaloo_README +134de95485b1b0e1dcd9c0a8fe8bcbe882fc8153,https://github.com/lxqt/pavucontrol-qt.git,lxqt_pavucontrol-qt.git,lxqt/pavucontrol-qt.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lxqt_pavucontrol-qt.git_hullabaloo_README.html.in +76f62a8db7f65eae38e64b22ab41feebad6d7155,https://github.com/frodwith/MooseX-MultiInitArg.git,frodwith_MooseX-MultiInitArg.git,frodwith/MooseX-MultiInitArg.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/frodwith_MooseX-MultiInitArg.git_hullabaloo_README +1e6456bf54bb37743d22fe564b475f10bc13281e,https://github.com/mitsuhiko/pluginbase.git,mitsuhiko_pluginbase.git,mitsuhiko/pluginbase.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mitsuhiko_pluginbase.git_hullabaloo_README +ce1defde2647755480aff7d544dddb86b7b40efa,https://github.com/pyca/bcrypt.git,pyca_bcrypt.git,pyca/bcrypt.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pyca_bcrypt.git_hullabaloo_README.rst +a8fbb2172977d42002f15ad89d6a5d79ec764ae7,https://gitlab.com/fbb-git/stealth,fbb-git_stealth,fbb-git/stealth,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fbb-git_stealth_hullabaloo_README +075003a24ffe92253da60aafc6f99062e0af267d,https://github.com/circus-tent/chaussette,circus-tent_chaussette,circus-tent/chaussette,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/circus-tent_chaussette_hullabaloo_README.rst +7959a06bfbe59b3b516fa73bfef21ba70f97a588,https://github.com/seattlerb/rubyinline.git,seattlerb_rubyinline.git,seattlerb/rubyinline.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/seattlerb_rubyinline.git_hullabaloo_README.txt +8a500c12bcc27bb8da3e705fb93fa612b49f8b99,https://github.com/rnjacobs/wmbubble.git,rnjacobs_wmbubble.git,rnjacobs/wmbubble.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rnjacobs_wmbubble.git_hullabaloo_README +19093dc604fe52c498560d7fc19570074714e459,https://github.com/websockets/ws.git,websockets_ws.git,websockets/ws.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/websockets_ws.git_hullabaloo_README.md +9132351ff9f7ef6907b1708f16c119dba5090d88,https://github.com/mvduin/perl-Data-Alias,mvduin_perl-Data-Alias,mvduin/perl-Data-Alias,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mvduin_perl-Data-Alias_hullabaloo_README +4b5972dfa1b36f7925ee227af5fddd8f317b8878,https://github.com/lima1/p5-latex-table.git,lima1_p5-latex-table.git,lima1/p5-latex-table.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lima1_p5-latex-table.git_hullabaloo_README +b72dea2157ad7cb1eb3b1b7d85326f10f2ca6192,https://github.com/matthewwithanm/pilkit,matthewwithanm_pilkit,matthewwithanm/pilkit,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/matthewwithanm_pilkit_hullabaloo_README.rst +f6d29774fb7675577f73e9657dcabc25ff2b34d7,https://github.com/fsphil/hacktv,fsphil_hacktv,fsphil/hacktv,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fsphil_hacktv_hullabaloo_README +97931845a4d9bca16fe566e820ad426df6018536,https://github.com/kholtman/afio,kholtman_afio,kholtman/afio,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kholtman_afio_hullabaloo_README +6ef656a58b1ff1a7b539d6be46b88d6d5aa1eea0,https://github.com/xattr/xattr.git,xattr_xattr.git,xattr/xattr.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/xattr_xattr.git_hullabaloo_README.txt +9e8069125c369594040b55f6152fb4fab23b9c9b,https://github.com/Pylons/pastedeploy,Pylons_pastedeploy,Pylons/pastedeploy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Pylons_pastedeploy_hullabaloo_README +8481ee3bd5e77e1e78fe393f9cf83b6f247ffd8e,https://github.com/jeremysalwen/lv2file.git,jeremysalwen_lv2file.git,jeremysalwen/lv2file.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jeremysalwen_lv2file.git_hullabaloo_README +a1b157f8fe1e12b8028190c81d43e478df7484e5,https://github.com/PyCQA/flake8-polyfill.git,PyCQA_flake8-polyfill.git,PyCQA/flake8-polyfill.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/PyCQA_flake8-polyfill.git_hullabaloo_README.rst +b379eed95004791c5b9d80ccee21f16a7eeb1f1f,https://github.com/xwax/xwax.git,xwax_xwax.git,xwax/xwax.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/xwax_xwax.git_hullabaloo_README +10a8cf5651aaf8ce6405ac4dafdc5054d29f540e,https://github.com/twojstaryzdomu/bchunk,twojstaryzdomu_bchunk,twojstaryzdomu/bchunk,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/twojstaryzdomu_bchunk_hullabaloo_README +966e20bbca19f62a473dde9df14194c8dd0aab1d,https://github.com/periapt/geo-google-mapobject.git,periapt_geo-google-mapobject.git,periapt/geo-google-mapobject.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/periapt_geo-google-mapobject.git_hullabaloo_README +7275e9589e75b15a0277e65297698dab8558cd21,https://github.com/SmileyChris/django-countries,SmileyChris_django-countries,SmileyChris/django-countries,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/SmileyChris_django-countries_hullabaloo_README +32cd87d97d12cc26a790490243caa3274514ba6e,https://github.com/PyCQA/prospector,PyCQA_prospector,PyCQA/prospector,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/PyCQA_prospector_hullabaloo_README.md +ddc58f04db1306dea98bf3cf2d7772fa85a0a114,https://github.com/Tarsnap/scrypt.git,Tarsnap_scrypt.git,Tarsnap/scrypt.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Tarsnap_scrypt.git_hullabaloo_README +68f95ffe3aef82aac0fb7bbc65d1faab19902e3c,https://gitlab.gnome.org/GNOME/vala.git,GNOME_vala.git,GNOME/vala.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_vala.git_hullabaloo_README +0ac20a40c80352f1cb09308ec61308b35830a943,https://github.com/jib/config-auto.git,jib_config-auto.git,jib/config-auto.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jib_config-auto.git_hullabaloo_README +30f1130547f34983d445ce3668522d4f5a2a2a06,https://github.com/hgrecco/pint.git,hgrecco_pint.git,hgrecco/pint.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hgrecco_pint.git_hullabaloo_README +010871c8a4b89cd7fdabf924e634c361d77fe8da,https://github.com/aws/aws-cli,aws_aws-cli,aws/aws-cli,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aws_aws-cli_hullabaloo_README.md +1548aa28d276ad1101f29a011ddf77c72bad91b2,https://github.com/geopython/geolinks.git,geopy_geopy,geopy/geopy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/geopython_geolinks.git_hullabaloo_README.md +e1008b4adcdc7ab54bcc7a090691a6514b892057,https://github.com/jamesls/fakeredis.git,jamesls_fakeredis.git,jamesls/fakeredis.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jamesls_fakeredis.git_hullabaloo_README.rst +f8192f1a521235b765cb85a4459706256ec331ff,https://invent.kde.org/plasma/ksshaskpass.git,plasma_ksshaskpass.git,plasma/ksshaskpass.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/plasma_ksshaskpass.git_hullabaloo_README +5992a8ef21424d7571305a8d7e2a3431ee7e1e23,https://github.com/pytest-dev/pytest.git,pytest-dev_pytest.git,pytest-dev/pytest.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_pytest.git_hullabaloo_README.txt +6ab06afdbcc2e7fe2839325ba00da551cd7e1678,https://github.com/kobolabs/dhcpcd-dbus.git,kobolabs_dhcpcd-dbus.git,kobolabs/dhcpcd-dbus.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kobolabs_dhcpcd-dbus.git_hullabaloo_README +a63f6d192dc714e23574c475f7b344168bcc3f38,https://github.com/lxqt/lxqt-config.git,lxqt_lxqt-config.git,lxqt/lxqt-config.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lxqt_lxqt-config.git_hullabaloo_README +f594a955cbc4344a8d2443d5b6e276b2825dde45,https://github.com/pika/pika,pika_pika,pika/pika,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pika_pika_hullabaloo_README.md +bec38677b3f2918c97a6a1edea795fc7191a0c11,https://github.com/nzjrs/osm-gps-map,nzjrs_osm-gps-map,nzjrs/osm-gps-map,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nzjrs_osm-gps-map_hullabaloo_README +8f1038a188110260263a64eef83dae858107af3d,https://git.launchpad.net/grub-customizer,grub-customizer,grub-customizer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/grub-customizer_hullabaloo_README +17f92ad51bc5465115a67d995823046028c3c4f3,https://anongit.kde.org/killbots.git,killbots.git,killbots.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/killbots.git_hullabaloo_README.PACKAGERS +f3b0a1716563a2741b11ba07dc5e081ee1b9989e,https://github.com/pyutils/line_profiler,pyutils_line_profiler,pyutils/line/profiler,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pyutils_line_profiler_hullabaloo_README.txt +881761561019ad29332d0d44efb889d08ed64b4b,https://github.com/gristlabs/asttokens.git,gristlabs_asttokens.git,gristlabs/asttokens.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gristlabs_asttokens.git_hullabaloo_README.md +d621974c7208ac2e6d2a96de3b5e6f33641fbf08,https://gitlab.com/ubports/core/cmake-extras,ubports_core_cmake-extras,ubports/core/cmake-extras,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ubports_core_cmake-extras_hullabaloo_README.md +0d106609e23836f72ad09d0efe50fddf6cac807c,https://github.com/clkao/IO-Digest.git,clkao_IO-Digest.git,clkao/IO-Digest.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/clkao_IO-Digest.git_hullabaloo_README +cad2331b603eed49ebd113917431df7e34bbd53e,https://github.com/jayclassless/setoptconf.git,jayclassless_setoptconf.git,jayclassless/setoptconf.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jayclassless_setoptconf.git_hullabaloo_README.rst +9b7d678205f923ff44dcae5c452b78eb5c8cde96,https://github.com/chorny/Tie-IxHash.git,chorny_Tie-IxHash.git,chorny/Tie-IxHash.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/chorny_Tie-IxHash.git_hullabaloo_README +2251b1d57d19d70124eadd605932925f2930b417,https://github.com/doug-101/ConvertAll.git,doug-101_ConvertAll.git,doug-101/ConvertAll.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/doug-101_ConvertAll.git_hullabaloo_README.md +256300e8455a6d429f489b39a607e9577acadcce,https://github.com/mateidavid/hpptools.git,mateidavid_hpptools.git,mateidavid/hpptools.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mateidavid_hpptools.git_hullabaloo_README.org +1fd30dca011413f486c5daf28d0ae2dc30dfa5e5,https://github.com/oVirt/mom,oVirt_mom,oVirt/mom,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/oVirt_mom_hullabaloo_README +d083e647893e17b360af5c2731c3e5588c18c99c,https://github.com/twisted/incremental.git,twisted_incremental.git,twisted/incremental.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/twisted_incremental.git_hullabaloo_README.rst +433c9468e340c16db634defe5132b16480d057c7,https://github.com/dkopecek/usbguard,dkopecek_usbguard,dkopecek/usbguard,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dkopecek_usbguard_hullabaloo_README.md +198538a250dfd1f4057b06d5c982f56fa819f926,https://github.com/eliben/pyelftools.git,eliben_pyelftools.git,eliben/pyelftools.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/eliben_pyelftools.git_hullabaloo_README +392b5464e41fdef203c517cd387c997b685ddb5a,https://github.com/aaugustin/websockets.git,aaugustin_websockets.git,aaugustin/websockets.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aaugustin_websockets.git_hullabaloo_README +cd2581535b094a675d730bed080353e532212d93,https://github.com/pygridtools/drmaa-python,pygridtools_drmaa-python,pygridtools/drmaa-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pygridtools_drmaa-python_hullabaloo_README.md +4dc331dccca9ebe12d9bfce3b976625a21ee55db,https://github.com/manwar/Test-XPath.git,manwar_Test-XPath.git,manwar/Test-XPath.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/manwar_Test-XPath.git_hullabaloo_README +08ecb237ca63811c91eb650a8618e817d53fe905,https://github.com/wearpants/fakesleep,wearpants_fakesleep,wearpants/fakesleep,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wearpants_fakesleep_hullabaloo_README.rst +c4c921ca4768b0d939aa554c52714249b9f5e56b,https://github.com/pytroll/trollsift,pytroll_trollsift,pytroll/trollsift,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytroll_trollsift_hullabaloo_README.md +487518195d6da8adf0d7b55dcdca16837f0ce234,https://github.com/carsongee/pytest-pylint,carsongee_pytest-pylint,carsongee/pytest-pylint,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/carsongee_pytest-pylint_hullabaloo_README.rst +6547f9a945ae5fad7fe55a024a9e03b156400b98,https://github.com/yappo/p5-mousex-types.git,yappo_p5-mousex-types.git,yappo/p5-mousex-types.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/yappo_p5-mousex-types.git_hullabaloo_README +6e330506c365c0fc0ea0a54ed2df646f280edf97,https://github.com/broquaint/git-pureperl.git,broquaint_git-pureperl.git,broquaint/git-pureperl.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/broquaint_git-pureperl.git_hullabaloo_README +ea6f62dfdd1bbc9ebc421334dbf95d7fcc0c091b,https://github.com/libyal/libqcow.git,libyal_libqcow.git,libyal/libqcow.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libqcow.git_hullabaloo_README +129fd4605f7bd2424b28ef4fb780bbfd5855e13d,https://github.com/LucianoPC/mkalias,LucianoPC_mkalias,LucianoPC/mkalias,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/LucianoPC_mkalias_hullabaloo_README.md +6e4b5cb8dd4a9406f02e54f4956c009a54f10831,https://github.com/cscorley/whatthepatch,cscorley_whatthepatch,cscorley/whatthepatch,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cscorley_whatthepatch_hullabaloo_README.md +ef0312628a662ea7ee8d3691bbb822ecfe753842,https://github.com/jbardin/scp.py,jbardin_scp.py,jbardin/scp.py,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jbardin_scp.py_hullabaloo_README +a436cebdefeae52535805caedd25f486396ca802,https://gitlab.com/crosswire-bible-society/tdavid.git,crosswire-bible-society_tdavid.git,crosswire-bible-society/tdavid.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/crosswire-bible-society_tdavid.git_hullabaloo_README.md +b278c4cc357606f5b29bffb0b27b3856e38d409a,https://github.com/git-big-picture/git-big-picture.git,git-big-picture_git-big-picture.git,git-big-picture/git-big-picture.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/git-big-picture_git-big-picture.git_hullabaloo_README +a218979bc4ad5c53fc2cdf0a34fec392a104f927,https://github.com/RPi-Distro/pgzero,RPi-Distro_pgzero,RPi-Distro/pgzero,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/RPi-Distro_pgzero_hullabaloo_README.txt +6aaffc0bae84daffb12e7fd0057207a888fe5137,https://github.com/HaxeFoundation/neko-debian,HaxeFoundation_neko-debian,HaxeFoundation/neko-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/HaxeFoundation_neko-debian_hullabaloo_README.source +dfe0f8c893d69715bcbec7e259f2f78bb0ce8d7f,https://github.com/dleonard0/pktstat,dleonard0_pktstat,dleonard0/pktstat,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dleonard0_pktstat_hullabaloo_README +b45ebfb46fc2c8400fdb86d61c1e66d023716850,https://github.com/Pylons/venusian,Pylons_venusian,Pylons/venusian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Pylons_venusian_hullabaloo_README.txt +ac9384804542dcc9938ace4ef01d23974ad0ac14,https://github.com/bingos/sort-naturally.git,bingos_sort-naturally.git,bingos/sort-naturally.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bingos_sort-naturally.git_hullabaloo_README +12bf173f19c12b4e8592eaa0e42279d6939465f7,https://github.com/websploit/websploit,websploit_websploit,websploit/websploit,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/websploit_websploit_hullabaloo_README.md +382b534c1583eb6abae72ca4436dc6828040b22c,https://github.com/mvantellingen/python-zeep.git,mvantellingen_python-zeep.git,mvantellingen/python-zeep.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mvantellingen_python-zeep.git_hullabaloo_README.rst +75a3425a9a0be2f40010c01ba67ab659cef1b833,git://git.kernel.org/pub/scm/devel/pahole/pahole.git,pub_scm_devel_pahole_pahole.git,pub/scm/devel/pahole/pahole.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pub_scm_devel_pahole_pahole.git_hullabaloo_README +7e7f6e2ba8f48ff67a0dd862f7938417ec63e43a,https://github.com/nvalimak/fsm-lite.git,nvalimak_fsm-lite.git,nvalimak/fsm-lite.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nvalimak_fsm-lite.git_hullabaloo_README.md +500fd82877f3c1699dab592b3a329329f6dd57d5,https://github.com/jjjake/internetarchive.git,jjjake_internetarchive.git,jjjake/internetarchive.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jjjake_internetarchive.git_hullabaloo_README.md +b9af5f0611eb4fcd7a76021468a9f60ffde4dc01,https://anongit.kde.org/bovo.git,bovo.git,bovo.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bovo.git_hullabaloo_README.PACKAGERS +c78437f04bd9631a9d9fc37f59a05b3448c7dacb,https://github.com/bottlepy/bottle.git,bottlepy_bottle.git,bottlepy/bottle.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bottlepy_bottle.git_hullabaloo_README.md +214153960b19bc0921d6ce76d8b95f3ce5746a1f,https://github.com/rackerlabs/kthresher,rackerlabs_kthresher,rackerlabs/kthresher,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rackerlabs_kthresher_hullabaloo_README.md +072018798067169aa85f2bd1e43a763625698832,https://github.com/leggewie-DM/libcapi20,leggewie-DM_libcapi20,leggewie-DM/libcapi20,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/leggewie-DM_libcapi20_hullabaloo_README +1b37b4ef25a07f73848a28ede8f9bc7bdcff6993,https://github.com/openstack/rally.git,openstack_rally.git,openstack/rally.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/openstack_rally.git_hullabaloo_README.md +3ebb53dbf9143fc714b24e51d401f0e7daa84b32,https://github.com/paulproteus/ccd2iso-debian,paulproteus_ccd2iso-debian,paulproteus/ccd2iso-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/paulproteus_ccd2iso-debian_hullabaloo_README +53c12792332a29205e1c83bc5602acad865dc342,https://github.com/TUDelftGeodesy/Doris,TUDelftGeodesy_Doris,TUDelftGeodesy/Doris,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/TUDelftGeodesy_Doris_hullabaloo_README +335f0633c7877210c2bb4e5069e2374ad383f0b3,https://github.com/MusicPlayerDaemon/mpdscribble.git,MusicPlayerDaemon_mpdscribble.git,MusicPlayerDaemon/mpdscribble.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/MusicPlayerDaemon_mpdscribble.git_hullabaloo_README +9dc7fd6e9336d50b80238e371fd1e8c8c3f00823,https://invent.kde.org/plasma/breeze.git,plasma_breeze.git,plasma/breeze.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/plasma_breeze.git_hullabaloo_README +e87fbefcec0c44579495b1bcb22ac59814029566,https://github.com/mate-desktop/mozo.git,mate-desktop_mozo.git,mate-desktop/mozo.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mozo.git_hullabaloo_README +d78d37aeba03a5b015310249935ac83391782fb9,https://github.com/swami/libinstpatch,swami_libinstpatch,swami/libinstpatch,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/swami_libinstpatch_hullabaloo_README +a54d973caf27c828dcab3222eca71e20c65481c7,https://github.com/dkogan/libdogleg.git,dkogan_libdogleg.git,dkogan/libdogleg.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dkogan_libdogleg.git_hullabaloo_README +c25a24ae2e40a39db61fcd6f80d76469daa49a28,https://github.com/ibus/ibus.git,ibus_ibus.git,ibus/ibus.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ibus_ibus.git_hullabaloo_README +e889ff95bb1aa5f2bf64186e93cb387f38796c0d,https://github.com/hashbangperl/perl-pdf-report.git,hashbangperl_perl-pdf-report.git,hashbangperl/perl-pdf-report.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hashbangperl_perl-pdf-report.git_hullabaloo_README +9718d9062d14ff6709f4398f5f5e26102f1496fd,https://github.com/libyal/dtfabric.git,libyal_dtfabric.git,libyal/dtfabric.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_dtfabric.git_hullabaloo_README +d12676a0675fc648b79ff9ae5f7d5ec489a643d2,https://gitlab.com/videlec/pplpy,videlec_pplpy,videlec/pplpy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/videlec_pplpy_hullabaloo_README.txt +b0ac7bbd6adf15d9964f288d7bf25451e7beb374,https://invent.kde.org/plasma/kwallet-pam.git,plasma_kwallet-pam.git,plasma/kwallet-pam.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/plasma_kwallet-pam.git_hullabaloo_README.txt +69c7d9e20c6f1b50369a9650be9a5f65cf6dec86,https://github.com/UbuntuBudgie/budgie-extras,UbuntuBudgie_budgie-extras,UbuntuBudgie/budgie-extras,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/UbuntuBudgie_budgie-extras_hullabaloo_README.md +bf89cc151311b78932a2bdd192deadd11e57d409,https://github.com/arvidjaar/bootinfoscript,arvidjaar_bootinfoscript,arvidjaar/bootinfoscript,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/arvidjaar_bootinfoscript_hullabaloo_README +68bc65f75897cd2060a8e078b8d7e50d7cffec62,https://gitlab.com/dkg/dkg-handwriting,dkg_dkg-handwriting,dkg/dkg-handwriting,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dkg_dkg-handwriting_hullabaloo_README.TXT +b1f30798004f3d23648d674e47b5e45decf893ee,https://github.com/lxqt/screengrab.git,lxqt_screengrab.git,lxqt/screengrab.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lxqt_screengrab.git_hullabaloo_README.txt +64020b50cbc3a1a2104bbf32357417fb968ae066,https://github.com/hoelzro/plack-test-anyevent.git,hoelzro_plack-test-anyevent.git,hoelzro/plack-test-anyevent.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hoelzro_plack-test-anyevent.git_hullabaloo_README +8d7ac4eac95ba5cf7d9fb09be4533f8574982eb5,https://github.com/jwilk/dothost,jwilk_dothost,jwilk/dothost,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jwilk_dothost_hullabaloo_README.rst +b1dbc309e0a6c9afdd6fbf4313a8390ae0c66104,https://github.com/etd-framework/datatables-extensions,etd-framework_datatables-extensions,etd-framework/datatables-extensions,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/etd-framework_datatables-extensions_hullabaloo_README.md +12f729bbf64e1c30edeceaf419f23f6a7b560df9,https://github.com/pavlov99/json-rpc,pavlov99_json-rpc,pavlov99/json-rpc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pavlov99_json-rpc_hullabaloo_README.md +1f7d8cf0fb8f8f431858b39e8b1bad2dcf7fba74,https://gitlab.lis-lab.fr/dev/ltfatpy,dev_ltfatpy,dev/ltfatpy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dev_ltfatpy_hullabaloo_README.rst +927fe6483c6813476ab16050dfedcfc3e2e0201f,https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas.git,GNOME_gsettings-desktop-schemas.git,GNOME/gsettings-desktop-schemas.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_gsettings-desktop-schemas.git_hullabaloo_README +c5c90a74f884b645f0390e9000142f617b271290,https://github.com/pygraphviz/pygraphviz.git,pygraphviz_pygraphviz.git,pygraphviz/pygraphviz.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pygraphviz_pygraphviz.git_hullabaloo_README +2b17feccc0d6406c6a5bfe1c99231edc0147eaf9,https://github.com/PDLPorters/perl5-PGPLOT.git,PDLPorters_perl5-PGPLOT.git,PDLPorters/perl5-PGPLOT.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/PDLPorters_perl5-PGPLOT.git_hullabaloo_README +d494c8fe81ce0e4afac5433722a0c2c5bd4cf16d,https://github.com/jsonpickle/jsonpickle,jsonpickle_jsonpickle,jsonpickle/jsonpickle,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jsonpickle_jsonpickle_hullabaloo_README +869c9ee6c8e22bb9f9efc17610b06872084c1615,https://github.com/zeek/pysubnettree.git,zeek_pysubnettree.git,zeek/pysubnettree.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zeek_pysubnettree.git_hullabaloo_README +8e37561afba3077c7381d38ed3382992f9a16c88,https://github.com/ismrmrd/ismrmrd.git,ismrmrd_ismrmrd.git,ismrmrd/ismrmrd.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ismrmrd_ismrmrd.git_hullabaloo_README.rst +67bdd68fd3918258b37c3ea75b5152d0435132ba,https://github.com/matthew-brett/texext.git,matthew-brett_texext.git,matthew-brett/texext.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/matthew-brett_texext.git_hullabaloo_README.rst +93868035d8564ef16705c287cabc70f0cebd3c81,https://github.com/pytest-dev/pytest-forked.git,pytest-dev_pytest-forked.git,pytest-dev/pytest-forked.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_pytest-forked.git_hullabaloo_README.rst +e98b59eaf0e039da3ca3d38b65f71988a0fa7695,https://github.com/django-cms/django-classy-tags,django-cms_django-classy-tags,django-cms/django-classy-tags,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/django-cms_django-classy-tags_hullabaloo_README +3c31b3091a10efefa29f93a5a9f67a94fbb49886,https://github.com/astraw/stdeb.git,astraw_stdeb.git,astraw/stdeb.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/astraw_stdeb.git_hullabaloo_README.txt +421d5595229bb847d3b1677b0f9315b4cb84584a,https://github.com/phihag/ipaddress,phihag_ipaddress,phihag/ipaddress,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/phihag_ipaddress_hullabaloo_README.md +7d35484e4edc4935dc178dc2b816db2937f90ff2,https://github.com/kmike/datrie.git,kmike_datrie.git,kmike/datrie.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kmike_datrie.git_hullabaloo_README.rst +64b1f6b692f9a69433c7458f8bc09bcae80c8821,https://gitlab.freedesktop.org/realmd/adcli,realmd_adcli,realmd/adcli,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/realmd_adcli_hullabaloo_README +f0073d47bab507e5b8269ad94e9fe344c2e34a3f,https://github.com/pydata/numexpr,pydata_numexpr,pydata/numexpr,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pydata_numexpr_hullabaloo_README +8d33290ffffeeef608c4ca6043ef4eac554ce894,https://github.com/crayzeewulf/libserial.git,crayzeewulf_libserial.git,crayzeewulf/libserial.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/crayzeewulf_libserial.git_hullabaloo_README +62e1bf027942634ee625d536aae947a2bd3b1384,https://github.com/rubik/mando.git,rubik_mando.git,rubik/mando.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rubik_mando.git_hullabaloo_README.md +03b58f23e09ebc80e3c99774a035eabca7f2b82f,https://github.com/nferraz/st,nferraz_st,nferraz/st,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nferraz_st_hullabaloo_README.md +3fc537528df717f0183cc99605ca04497ae45686,https://github.com/gccxml/pygccxml,gccxml_pygccxml,gccxml/pygccxml,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gccxml_pygccxml_hullabaloo_README.txt +20b259a3e4e4903dbe5ded25bd7b4b8884e397fc,https://github.com/mongoengine/flask-mongoengine,mongoengine_mongoengine,mongoengine/mongoengine,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mongoengine_flask-mongoengine_hullabaloo_README.md +faf1d454e83136fe3b8c1e8b1f9a717fe65e73c5,https://github.com/mrabarnett/mrab-regex,mrabarnett_mrab-regex,mrabarnett/mrab-regex,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mrabarnett_mrab-regex_hullabaloo_README +6f6e6b4ee67567574fa24126f395710a19cf9d5b,https://github.com/douardda/pyramid_multiauth,douardda_pyramid_multiauth,douardda/pyramid/multiauth,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/douardda_pyramid_multiauth_hullabaloo_README.txt +0482d465a93948104129460460ffad97a7cf690f,https://github.com/brandon-rhodes/pyephem.git,brandon-rhodes_pyephem.git,brandon-rhodes/pyephem.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/brandon-rhodes_pyephem.git_hullabaloo_README +cdc1c63501f2a37909f5aef0c3e3fc895c3e330a,https://github.com/KimNorgaard/validates_hostname,KimNorgaard_validates_hostname,KimNorgaard/validates/hostname,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/KimNorgaard_validates_hostname_hullabaloo_README +dcfeb8bff3e75fc49a845722372c59e1edfc0eb5,https://github.com/ccampbell/mousetrap,ccampbell_mousetrap,ccampbell/mousetrap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ccampbell_mousetrap_hullabaloo_README.md +86ed3084e679f8e9eb5584f8d5189330586060c1,https://github.com/jm/toml,jm_toml,jm/toml,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jm_toml_hullabaloo_README.md +73cfc2d7f385cd3802ff2723e1e87c530a8afc05,https://github.com/glondu/nss-passwords,glondu_nss-passwords,glondu/nss-passwords,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/glondu_nss-passwords_hullabaloo_README +3932e1607926b20c1ab761a3fc849f788e287561,https://github.com/repoze/repoze.tm2.git,repoze_repoze.tm2.git,repoze/repoze.tm2.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/repoze_repoze.tm2.git_hullabaloo_README.txt +1f5bc832f89cac71094b12f45d754715213b6a7f,https://github.com/nghttp2/nghttp2.git,nghttp2_nghttp2.git,nghttp2/nghttp2.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nghttp2_nghttp2.git_hullabaloo_README +e6c2e44013cac14392f3fc2ee1253b3dae87baa1,https://github.com/jart/fabulous.git,jart_fabulous.git,jart/fabulous.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jart_fabulous.git_hullabaloo_README +15958bfb9c357efefe6bef39288a1ff7c821936b,https://github.com/django-mptt/django-mptt.git,django-mptt_django-mptt.git,django-mptt/django-mptt.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/django-mptt_django-mptt.git_hullabaloo_README +11c7bdf47c3f21b014b1e984be52211142d8d8b7,https://github.com/douglascrockford/JSON-js,douglascrockford_JSON-js,douglascrockford/JSON-js,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/douglascrockford_JSON-js_hullabaloo_README +ee40cef78df148f9f96978e0be9e591edfa5853d,https://gitlab.gnome.org/GNOME/libsoup,GNOME_libsoup,GNOME/libsoup,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_libsoup_hullabaloo_README +85c54e88e95b1117b9b7f0641f4b5ea70fce6102,https://github.com/bestpractical/http-server-simple,bestpractical_http-server-simple,bestpractical/http-server-simple,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bestpractical_http-server-simple_hullabaloo_README +ddbefff7edcf47906373c9fa1175ba7a8927e446,https://github.com/karenetheridge/B-Hooks-OP-Check,karenetheridge_B-Hooks-OP-Check,karenetheridge/B-Hooks-OP-Check,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/karenetheridge_B-Hooks-OP-Check_hullabaloo_README.pod +709075cdd7210459a4e0fa6755bbe677828d8eba,https://github.com/vectaport/ivtools,vectaport_ivtools,vectaport/ivtools,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/vectaport_ivtools_hullabaloo_README +167210cfaa79f98d2faad4235134f2510c181b86,https://gitea.osmocom.org/sdr/rtl-sdr.git,sdr_rtl-sdr.git,sdr/rtl-sdr.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sdr_rtl-sdr.git_hullabaloo_README +9f6fcb11ebe2948167e982aa9ca9713b54a0e47d,https://github.com/datastax/python-driver.git,datastax_python-driver.git,datastax/python-driver.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/datastax_python-driver.git_hullabaloo_README.md +fafacbff1595d5e94c7afb633ec84ff1e7229ebb,https://github.com/Pylons/plaster_pastedeploy.git,Pylons_plaster_pastedeploy.git,Pylons/plaster/pastedeploy.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Pylons_plaster_pastedeploy.git_hullabaloo_README.rst +e138393ae3d0243a967bdc0be2cb4d55e4050d06,https://github.com/linuxdeepin/qt5integration.git,linuxdeepin_qt5integration.git,linuxdeepin/qt5integration.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/linuxdeepin_qt5integration.git_hullabaloo_README.md +d96fd3c7a9db3b1557f3db2e0adf1662ee315eba,https://github.com/lukaszb/django-guardian,lukaszb_django-guardian,lukaszb/django-guardian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lukaszb_django-guardian_hullabaloo_README.rst +853c33b2d31c2702ee14544e6c615b3d3042d588,https://github.com/Llandon/lsmount,Llandon_lsmount,Llandon/lsmount,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Llandon_lsmount_hullabaloo_README +db2c1edae81fa0e436f51eb3e050546310d75858,https://github.com/jib/log-message-simple.git,jib_log-message-simple.git,jib/log-message-simple.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jib_log-message-simple.git_hullabaloo_README +019a921613f6cac9526678db6f1daa504698130e,https://github.com/fredrik-johansson/arb,fredrik-johansson_arb,fredrik-johansson/arb,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fredrik-johansson_arb_hullabaloo_README +74ccd3fde19bd2a92f1f8aa65a23bc2baa325766,https://github.com/chriskuehl/nodeenv,chriskuehl_nodeenv,chriskuehl/nodeenv,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/chriskuehl_nodeenv_hullabaloo_README +c36b63ef166f72a100da157680ba22b6c6d9323f,https://github.com/heftig/rtkit,heftig_rtkit,heftig/rtkit,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/heftig_rtkit_hullabaloo_README +eeaed1e60c0290724b761fbbf923fafc829f93f7,https://github.com/coin-or/cbc,coin-or_cbc,coin-or/cbc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/coin-or_cbc_hullabaloo_README +7a1fa3df4d01c8de78cc605a20ca2d0242380b44,https://github.com/ros-visualization/rviz,ros-visualization_rviz,ros-visualization/rviz,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ros-visualization_rviz_hullabaloo_README +d6f76c8804f2e053e0e1070e8e5865c7545ee126,https://github.com/WoLpH/portalocker,WoLpH_portalocker,WoLpH/portalocker,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/WoLpH_portalocker_hullabaloo_README +32abf91472f7cf2c846da31e98853e9c8b884bf7,https://gitlab.gnome.org/GNOME/eog-plugins.git,GNOME_eog-plugins.git,GNOME/eog-plugins.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_eog-plugins.git_hullabaloo_README +d8c99cc29f2ec0d496844d6d7dd7bf48d32ed337,https://github.com/psi-plus/psi-plus-l10n.git,psi-plus_psi-plus-l10n.git,psi-plus/psi-plus-l10n.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/psi-plus_psi-plus-l10n.git_hullabaloo_README +06cf153abf46812d2575fed4ed3270a125797e15,https://github.com/kilobyte/lz4json,kilobyte_lz4json,kilobyte/lz4json,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kilobyte_lz4json_hullabaloo_README +0d60db681907879a0da178ff3c6aa373f1fca1de,https://anongit.kde.org/klickety.git,klickety.git,klickety.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/klickety.git_hullabaloo_README +616d0680d17d7976913aa5ac6687e74908bc8bea,https://github.com/sshuttle/sshuttle.git,sshuttle_sshuttle.git,sshuttle/sshuttle.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sshuttle_sshuttle.git_hullabaloo_README.md +6878fad523df2cd8bf3f2b6aa864c68ff3b727d5,https://github.com/libyal/libregf,libyal_libregf,libyal/libregf,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libregf_hullabaloo_README +6f120693f341a67b45023ddae04dc73c5e8eeca5,https://github.com/MusicPlayerDaemon/libmpdclient,MusicPlayerDaemon_libmpdclient,MusicPlayerDaemon/libmpdclient,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/MusicPlayerDaemon_libmpdclient_hullabaloo_README +cc627dc30ab0457bec176921a90e43abd2068a76,https://github.com/xlwings/jsondiff,xlwings_jsondiff,xlwings/jsondiff,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/xlwings_jsondiff_hullabaloo_README.md +fd227046740f85cfdc9a332fb96ffc23f0108faa,https://github.com/jdunck/python-unicodecsv,jdunck_python-unicodecsv,jdunck/python-unicodecsv,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jdunck_python-unicodecsv_hullabaloo_README +34ad0bf9189d2bce0136e6c51ae4cc04238eb722,https://github.com/Yubico/yubikey-val-dpkg,Yubico_yubikey-val-dpkg,Yubico/yubikey-val-dpkg,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Yubico_yubikey-val-dpkg_hullabaloo_README.source +3601b1b9893cb8afade9ef4d3f60255d0ab1150e,https://github.com/fedora-infra/python-fedora,fedora-infra_python-fedora,fedora-infra/python-fedora,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fedora-infra_python-fedora_hullabaloo_README +0b44a0315b47dd8eced9f3b7f31580cf14bbfc01,git://git.musl-libc.org/musl,musl,musl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/musl_hullabaloo_README +2d78e915699bbe4208af869b82f3eafc352438cf,https://github.com/Xaerxess/YAML-AppConfig,Xaerxess_YAML-AppConfig,Xaerxess/YAML-AppConfig,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Xaerxess_YAML-AppConfig_hullabaloo_README.md +c06042b345dce605aa4b2a08c1743cbd7bbc22a7,https://github.com/pytest-dev/execnet,pytest-dev_execnet,pytest-dev/execnet,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_execnet_hullabaloo_README.txt +c5f59856cdc9410a5feb0605f0849b6a88c35202,https://github.com/ojarva/python-sshpubkeys.git,ojarva_python-sshpubkeys.git,ojarva/python-sshpubkeys.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ojarva_python-sshpubkeys.git_hullabaloo_README.rst +6c3e78c01b7d4afcbb9bfdeece1ecb4aa35cbb4d,https://github.com/mopidy/mopidy-soundcloud,mopidy_mopidy-soundcloud,mopidy/mopidy-soundcloud,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mopidy_mopidy-soundcloud_hullabaloo_README.md +b7e67890f693378035a395378040b92013014bb7,https://github.com/qutebrowser/qutebrowser-debian,qutebrowser_qutebrowser-debian,qutebrowser/qutebrowser-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/qutebrowser_qutebrowser-debian_hullabaloo_README.asciidoc +faf77b9d31411e5732f390ec87c20a327ff10988,https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git,gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org/ruby/gems/gitlab-mail/room.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gitlab-org_ruby_gems_gitlab-mail_room.git_hullabaloo_README.md +f6ec3e4903f7b12975fe6463606ed970dbbbb44f,https://github.com/horde/Data.git,horde_Data.git,horde/Data.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/horde_Data.git_hullabaloo_README.rst +1791536f0bb9ad23ff57ecc74df1fc019f7f69ab,https://github.com/jonathanstowe/TermReadKey.git,jonathanstowe_TermReadKey.git,jonathanstowe/TermReadKey.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jonathanstowe_TermReadKey.git_hullabaloo_README +187f3e616e9f1010ee1d99fc2d84e29fcf0f3bbe,https://github.com/Kilian/Trimage,Kilian_Trimage,Kilian/Trimage,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Kilian_Trimage_hullabaloo_README.txt +a9ea906035bcf5cbe95db64f51ed2ff7cec2b503,https://gitlab.com/libvirt/libvirt-python.git,libvirt_libvirt-python.git,libvirt/libvirt-python.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libvirt_libvirt-python.git_hullabaloo_README +bff039c0f4980f714964aa8efea07a720eec3fe0,https://github.com/habnabit/vcversioner,habnabit_vcversioner,habnabit/vcversioner,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/habnabit_vcversioner_hullabaloo_README.rst +1c62ec6cb8415dbc895e3ec6844682c8834b96ef,https://github.com/norbusan/debian-gwaei,norbusan_debian-gwaei,norbusan/debian-gwaei,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/norbusan_debian-gwaei_hullabaloo_README.source +0340d291a7d09b9594aa04d380d3869319c89da6,https://invent.kde.org/plasma/bluedevil.git,plasma_bluedevil.git,plasma/bluedevil.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/plasma_bluedevil.git_hullabaloo_README +10f5140a96bb4e7f856477a4eb7119add97079ef,https://github.com/lxde/lxde-icon-theme,lxde_lxde-icon-theme,lxde/lxde-icon-theme,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lxde_lxde-icon-theme_hullabaloo_README +fb7ca4cad1e714eeaffd505eedcb3df7656e1371,https://github.com/ThomasHabets/arping,ThomasHabets_arping,ThomasHabets/arping,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ThomasHabets_arping_hullabaloo_README +5a8fc2472d80731a3d82073a61ea6715aa2ec316,https://github.com/aio-libs/aiosmtpd,aio-libs_aiosmtpd,aio-libs/aiosmtpd,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aio-libs_aiosmtpd_hullabaloo_README.rst +4492bd1d7312d3c1280d91a3db14ad7fe253b2c7,https://github.com/mschilli/cache-historical-perl.git,mschilli_cache-historical-perl.git,mschilli/cache-historical-perl.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mschilli_cache-historical-perl.git_hullabaloo_README +fe5bb50f1add6664062aefad4bf7aeca9c0c33c0,https://github.com/JonnyJD/musicbrainz-isrcsubmit,JonnyJD_musicbrainz-isrcsubmit,JonnyJD/musicbrainz-isrcsubmit,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/JonnyJD_musicbrainz-isrcsubmit_hullabaloo_README.md +00efe9c47819ca58089c4bd5d1d8463248e23228,https://github.com/go-yaml/yaml.git,go-yaml_yaml.git,go-yaml/yaml.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/go-yaml_yaml.git_hullabaloo_README +59f97063cf6acdad28127e766f9165333443c774,https://gitlab.com/fbb-git/flexcpp.git,fbb-git_flexcpp.git,fbb-git/flexcpp.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fbb-git_flexcpp.git_hullabaloo_README.options +baa0224f552f0c8b192e5d0bc0cdebe6d249624d,https://github.com/borgbackup/borg.git,borgbackup_borg.git,borgbackup/borg.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/borgbackup_borg.git_hullabaloo_README +eb3ab200f8d51f424286dab24efd10ae362fd8e5,https://github.com/ruby-ldap/ruby-net-ldap.git,ruby-ldap_ruby-net-ldap.git,ruby-ldap/ruby-net-ldap.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ruby-ldap_ruby-net-ldap.git_hullabaloo_README +803ee2e99c012dd10aabc0173d5852fa9f562b16,https://github.com/python-dugong/python-dugong.git,python-dugong_python-dugong.git,python-dugong/python-dugong.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-dugong_python-dugong.git_hullabaloo_README +02e5b4d1d2348e09eeed8da8fe6357db9553245b,https://github.com/digitalbazaar/pyld,digitalbazaar_pyld,digitalbazaar/pyld,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/digitalbazaar_pyld_hullabaloo_README +f424f65ea2420a02cbdc47ff8995ba9e1c28de90,https://github.com/meduketto/iksemel,meduketto_iksemel,meduketto/iksemel,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/meduketto_iksemel_hullabaloo_README +74ce2bd5364dfe2e39d77724a725a38785d8a7de,https://invent.kde.org/pim/zanshin.git,pim_zanshin.git,pim/zanshin.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pim_zanshin.git_hullabaloo_README.md +c022ac6dde31f72dd85e803a6c9c8c00ba78f0c0,https://github.com/eugmes/fntsample.git,eugmes_fntsample.git,eugmes/fntsample.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/eugmes_fntsample.git_hullabaloo_README.rst +4d7ec7be97139aa04495af42f1739ed534fe57b1,https://github.com/scottdraves/flam3,scottdraves_flam3,scottdraves/flam3,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/scottdraves_flam3_hullabaloo_README.md +3b1fffade1473f20f2558733fbd218f4580fc7c3,https://github.com/rsms/inter,rsms_inter,rsms/inter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rsms_inter_hullabaloo_README.md +71c9c330f43c13c4da1974b2a130d7253d15f913,https://github.com/libyal/libevtx,libyal_libevtx,libyal/libevtx,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libevtx_hullabaloo_README +13d136b3f3b3cba8441d80bcd132084b2d525367,https://github.com/twisted/constantly.git,twisted_constantly.git,twisted/constantly.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/twisted_constantly.git_hullabaloo_README.rst +a5b490c277098df54558f52e290a0c8484987db6,https://github.com/ganglia/ganglia-modules-linux.git,ganglia_ganglia-modules-linux.git,ganglia/ganglia-modules-linux.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ganglia_ganglia-modules-linux.git_hullabaloo_README +997d6e546e3cd5b6977f5c23e047de06be7153f1,https://github.com/requirejs/r.js.git,requirejs_r.js.git,requirejs/r.js.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/requirejs_r.js.git_hullabaloo_README +6d31c7ced96a93f2b0aaab3837adf0bebfd29e71,https://github.com/chaijs/chai,chaijs_chai,chaijs/chai,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/chaijs_chai_hullabaloo_README.md +30284822748302f8ba253df2b0d449029ee95385,https://github.com/hoehrmann/XML-SAX-Expat,hoehrmann_XML-SAX-Expat,hoehrmann/XML-SAX-Expat,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hoehrmann_XML-SAX-Expat_hullabaloo_README +8fcffb010e3c4f9193e0e83782c38372d7a78526,https://github.com/mathjax/MathJax,mathjax_MathJax,mathjax/MathJax,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mathjax_MathJax_hullabaloo_README.txt +5992a8ef21424d7571305a8d7e2a3431ee7e1e23,https://github.com/pytest-dev/py.git,pytest-dev_py.git,pytest-dev/py.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_py.git_hullabaloo_README.txt +f6286664ef4498c34791b1dfb85355025298e05a,https://github.com/niwinz/django-jinja,niwinz_django-jinja,niwinz/django-jinja,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/niwinz_django-jinja_hullabaloo_README +b8b86555280694d85d64b68d0f9131868598161a,https://gitlab.freedesktop.org/dbus/dbus-python,dbus_dbus-python,dbus/dbus-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dbus_dbus-python_hullabaloo_README +decc2f8c4f99eaf3401e462f9d6c1cfddb6035eb,https://github.com/conserver/conserver.git,conserver_conserver.git,conserver/conserver.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/conserver_conserver.git_hullabaloo_README +a0245ee329cc0e59b0d30cfee79c896258094f25,https://github.com/lmfit/lmfit-py,lmfit_lmfit-py,lmfit/lmfit-py,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lmfit_lmfit-py_hullabaloo_README.TXT +93c6365ce23debbd31f7e361146cd172163393ee,https://github.com/jarus/flask-testing,jarus_flask-testing,jarus/flask-testing,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jarus_flask-testing_hullabaloo_README +415696b54a9ada7d4fd2d398ebdd54d64f7130b6,https://github.com/python-ldap/python-ldap,python-ldap_python-ldap,python-ldap/python-ldap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-ldap_python-ldap_hullabaloo_README +5615c406ac6c372cddb7f90b708b4979991515dc,https://invent.kde.org/plasma/breeze-plymouth.git,plasma_breeze-plymouth.git,plasma/breeze-plymouth.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/plasma_breeze-plymouth.git_hullabaloo_README +ded84e1357b5f04cd1ba7205405668258c90dddd,https://github.com/rmohr/static3,rmohr_static3,rmohr/static3,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rmohr_static3_hullabaloo_README +b49f6ecc2f9b34ac7a580b3d1690bd0e0d83ffdf,https://github.com/TimoFreiberg/bultitude.git,TimoFreiberg_bultitude.git,TimoFreiberg/bultitude.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/TimoFreiberg_bultitude.git_hullabaloo_README.md +036d45e551ca5405c726f8ccb51f446620cd4af4,https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git,pub_scm_linux_kernel_git_jaegeuk_f2fs-tools.git,pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pub_scm_linux_kernel_git_jaegeuk_f2fs-tools.git_hullabaloo_README +fa0e60627c2f27f2dbd84f66c5739a9f3bf16d47,https://github.com/tkem/cachetools,tkem_cachetools,tkem/cachetools,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tkem_cachetools_hullabaloo_README.rst +9b6b04a59f2dda46b3abc2dcbdfb4ceef0d7f945,https://github.com/suretec/Message-Passing.git,suretec_Message-Passing.git,suretec/Message-Passing.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/suretec_Message-Passing.git_hullabaloo_README +4101de3daf91c6d35b92395a72bf84132ef48f7c,https://github.com/pallets/click.git,pallets_click.git,pallets/click.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pallets_click.git_hullabaloo_README +c3e6fcc64e3d48bfd3d0c7db6ba30604d1d79332,https://github.com/OpenArena/gamecode,OpenArena_gamecode,OpenArena/gamecode,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/OpenArena_gamecode_hullabaloo_README +8f3dbb6aa36e4fc63d5be07dd570b4ef5ef63e45,https://github.com/wireghoul/doona,wireghoul_doona,wireghoul/doona,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wireghoul_doona_hullabaloo_README +0e37fdca23aee664490bdb3674cbf81b9c64727e,https://github.com/mogaal/libpod-webserver-perl,mogaal_libpod-webserver-perl,mogaal/libpod-webserver-perl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mogaal_libpod-webserver-perl_hullabaloo_README +8b4ec9df47e151279d6d01097acb9d6dd78e0538,https://github.com/Anorov/PySocks,Anorov_PySocks,Anorov/PySocks,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Anorov_PySocks_hullabaloo_README +e08689cfe0cebd90e0c86aaa102166bdd26e9d51,https://github.com/libyal/libvmdk.git,libyal_libvmdk.git,libyal/libvmdk.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libvmdk.git_hullabaloo_README +e87a581c57931bd5dc05cef5fdeb42a8669bf65a,https://github.com/kennethreitz/clint,kennethreitz_clint,kennethreitz/clint,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kennethreitz_clint_hullabaloo_README +67060fba58bfe53f5e81447eb623c386549773d9,https://github.com/adelton/mod_authnz_pam.git,adelton_mod_authnz_pam.git,adelton/mod/authnz/pam.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/adelton_mod_authnz_pam.git_hullabaloo_README +aff2b660ece92332ae39237e25ea5323371a6c5e,https://gitlab.gnome.org/GNOME/goocanvas,GNOME_goocanvas,GNOME/goocanvas,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_goocanvas_hullabaloo_README +82c6db7cebc68aabd6f9c69a6a27d314930bd1c4,https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git,pub_scm_libs_ieee1394_libhinawa.git,pub/scm/libs/ieee1394/libhinawa.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pub_scm_libs_ieee1394_libhinawa.git_hullabaloo_README +b1c25735008d1a5bdcf48f9b5e0417430aed5971,https://github.com/jmtd/wadc,jmtd_wadc,jmtd/wadc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jmtd_wadc_hullabaloo_README.md +58923bf5ad66b4e19cf6cb46a7f9e4f0942f16f7,https://gitlab.com/crosswire-bible-society/nave,crosswire-bible-society_nave,crosswire-bible-society/nave,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/crosswire-bible-society_nave_hullabaloo_README.md +45421d10de74155f687b37b796ce9ee69d0d7893,https://github.com/osantana/dicteval.git,osantana_dicteval.git,osantana/dicteval.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/osantana_dicteval.git_hullabaloo_README.rst +1b2836fb8a9d1eea8bcff27de4902456bc744ba0,https://github.com/testing-cabal/systemfixtures.git,testing-cabal_systemfixtures.git,testing-cabal/systemfixtures.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/testing-cabal_systemfixtures.git_hullabaloo_README.rst +283a0b24ac7fb0c500386de648905cded21f8b20,https://github.com/grantma/dms,grantma_dms,grantma/dms,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/grantma_dms_hullabaloo_README.postgresql +70dfb0ff5009c7e7bfd415d9c3324b22d94093b2,https://github.com/codeinthehole/purl,codeinthehole_purl,codeinthehole/purl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/codeinthehole_purl_hullabaloo_README.rst +35472a6ac781ec4b0190672c1f67eeaad7590864,https://github.com/pstavirs/ostinato,pstavirs_ostinato,pstavirs/ostinato,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pstavirs_ostinato_hullabaloo_README.txt +fb73ef4fb876313f43c55f07ec25c2cae37a568f,https://github.com/rjbs/IPC-Run3.git,rjbs_IPC-Run3.git,rjbs/IPC-Run3.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rjbs_IPC-Run3.git_hullabaloo_README +7699e660c678df45a7d0ce2edaec1611e210d583,https://gitlab.gnome.org/GNOME/libgnomekbd.git,GNOME_libgnomekbd.git,GNOME/libgnomekbd.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_libgnomekbd.git_hullabaloo_README +6a2c2ff2e1f262b8605fcb2a32da4cec1f13a0fe,https://github.com/anarcat/tty-clock,anarcat_tty-clock,anarcat/tty-clock,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/anarcat_tty-clock_hullabaloo_README +04deaa94e2d86dfb13a77da5ce5b53e63fc8afa0,https://anongit.kde.org/picmi.git,picmi.git,picmi.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/picmi.git_hullabaloo_README +cf6604ca86246915efbaa4fdf4aa1acc6df682b7,https://github.com/mapbox/cligj.git,mapbox_cligj.git,mapbox/cligj.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mapbox_cligj.git_hullabaloo_README.rst +afa1ce572f6f3b3cf24f4aed62ec2cc04e3be560,https://github.com/dvarrazzo/py-setproctitle,dvarrazzo_py-setproctitle,dvarrazzo/py-setproctitle,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dvarrazzo_py-setproctitle_hullabaloo_README +71eca9837f82857fe4f52598901923df05340cb1,https://github.com/ActiveState/appdirs.git,ActiveState_appdirs.git,ActiveState/appdirs.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ActiveState_appdirs.git_hullabaloo_README.md +1a5ec02998932c8016b9e031594a15e9fcaf6f33,https://github.com/a-detiste/cruft,a-detiste_cruft,a-detiste/cruft,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/a-detiste_cruft_hullabaloo_README +69f97b24d60e416021458d9530bd271991a44ed0,https://gitlab.com/fbb-git/gpg-remailer,fbb-git_gpg-remailer,fbb-git/gpg-remailer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fbb-git_gpg-remailer_hullabaloo_README +ebd4329f7ba6edff76425a63e037c19a8838496e,https://github.com/berke/wipe,berke_wipe,berke/wipe,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/berke_wipe_hullabaloo_README +4c6fb3873e0254b4aa7ec62debcf2cf6c2ccfea4,https://github.com/TicklishHoneyBee/nodau,TicklishHoneyBee_nodau,TicklishHoneyBee/nodau,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/TicklishHoneyBee_nodau_hullabaloo_README +bfa33be44a880ceea9669b7a40ebe93f5f6ba29d,https://github.com/debian-calibre/unrardll,debian-calibre_unrardll,debian-calibre/unrardll,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/debian-calibre_unrardll_hullabaloo_README.rst +548fb76622cacbdf4416f07b718f1bdd93924a9f,https://github.com/SSSD/ding-libs,SSSD_ding-libs,SSSD/ding-libs,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/SSSD_ding-libs_hullabaloo_README +ce08aeb69cb20095f28ec155c750cca1fb5f587c,https://github.com/pypr/pysph,pypr_pysph,pypr/pysph,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pypr_pysph_hullabaloo_README.md +aa252e01e978bae69ae1f19b978adbb38c63dee9,https://github.com/innir/gtranscribe,innir_gtranscribe,innir/gtranscribe,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/innir_gtranscribe_hullabaloo_README +7e6fff48cd04f5dde2db9f91fc967bb2162db06a,https://github.com/Rup0rt/netmate,Rup0rt_netmate,Rup0rt/netmate,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Rup0rt_netmate_hullabaloo_README +74472751951142fa170d35fbc9666d47a6b6d890,https://github.com/andrewleech/PyWebDAV3.git,andrewleech_PyWebDAV3.git,andrewleech/PyWebDAV3.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/andrewleech_PyWebDAV3.git_hullabaloo_README +ce54a08371e5ab3b165781c9e2c0cad5a9bdd037,https://github.com/sqlalchemyorg/sphinx-paramlinks,sqlalchemyorg_sphinx-paramlinks,sqlalchemyorg/sphinx-paramlinks,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sqlalchemyorg_sphinx-paramlinks_hullabaloo_README.rst +b1d0ce2848a79664374f802954b1e4390b11da6d,https://github.com/pali/0xFFFF,pali_0xFFFF,pali/0xFFFF,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pali_0xFFFF_hullabaloo_README +c9ef8d55c1d57e504c58acfd589f4b7b7259d7ea,https://github.com/cleder/fastkml,cleder_fastkml,cleder/fastkml,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cleder_fastkml_hullabaloo_README.rst +d8cf97c342defa98e0e581bf626f9825aba4302f,https://github.com/gotcha/ipdb,gotcha_ipdb,gotcha/ipdb,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gotcha_ipdb_hullabaloo_README.txt +3f94f6ea5500f36e152e27cdb71eb2a8270b3f6b,https://github.com/kmx/perl-Crypt-OpenSSL-Bignum.git,kmx_perl-Crypt-OpenSSL-Bignum.git,kmx/perl-Crypt-OpenSSL-Bignum.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kmx_perl-Crypt-OpenSSL-Bignum.git_hullabaloo_README +b831bc65fcc368b295a889a6c96b37bdf7744448,https://github.com/scrapy/w3lib.git,scrapy_w3lib.git,scrapy/w3lib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/scrapy_w3lib.git_hullabaloo_README.rst +090a9cfe7175ebc17bbcbab9e6cdbb904eaa7165,https://github.com/traviscross/mtr,traviscross_mtr,traviscross/mtr,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/traviscross_mtr_hullabaloo_README +77c98848a144b16aa8455b8935ceadfa52182fe3,https://github.com/hapijs/code.git,hapijs_code.git,hapijs/code.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/hapijs_code.git_hullabaloo_README.md +c4f49da3fc2f45b05a9c60c6891203635130d478,https://github.com/lxqt/libqtxdg.git,lxqt_libqtxdg.git,lxqt/libqtxdg.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lxqt_libqtxdg.git_hullabaloo_README +05bff2bd41a7d1930dbfc4eb87a19e1461f5b467,https://github.com/nose-devs/nose.git,nose-devs_nose.git,nose-devs/nose.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nose-devs_nose.git_hullabaloo_README.txt +0f94697a79914f595b15493bd5b6b4be8006237a,https://github.com/marshmallow-code/flask-marshmallow.git,marshmallow-code_flask-marshmallow.git,marshmallow-code/flask-marshmallow.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/marshmallow-code_flask-marshmallow.git_hullabaloo_README.rst +2fe47a3c9f786532e0b9a9dd5a354d079d417103,https://github.com/slicer69/sysvinit,slicer69_sysvinit,slicer69/sysvinit,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/slicer69_sysvinit_hullabaloo_README +266f9d7e3790db6656e88b1a10655121b5c5ffae,https://github.com/aio-libs/aiohttp-jinja2,aio-libs_aiohttp-jinja2,aio-libs/aiohttp-jinja2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aio-libs_aiohttp-jinja2_hullabaloo_README.md +9e3bab47f01290d547f5babe57adac464089a231,https://gitlab.gnome.org/GNOME/geary.git,GNOME_geary.git,GNOME/geary.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_geary.git_hullabaloo_README.rst +c980ef2c31f015780e16e62f3f6e035b6cc89754,https://github.com/linuxaudio/a2jmidid.git,linuxaudio_a2jmidid.git,linuxaudio/a2jmidid.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/linuxaudio_a2jmidid.git_hullabaloo_README +1e6d141ea608640ccb9b3fcbe8cdbdf780e4d567,https://github.com/charsbar/App-CPANTS-Lint.git,charsbar_App-CPANTS-Lint.git,charsbar/App-CPANTS-Lint.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/charsbar_App-CPANTS-Lint.git_hullabaloo_README +0d701ec9b72563682f1607787ec4bb87db27d866,https://github.com/c-cube/gen.git,c-cube_gen.git,c-cube/gen.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/c-cube_gen.git_hullabaloo_README.md +c6cb4e89c85a1a3916ad6029acf233c953fad75b,https://github.com/jettero/statistics--basic,jettero_statistics--basic,jettero/statistics--basic,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jettero_statistics--basic_hullabaloo_README +e06a72226aa9dd8d0106446817675d6db32eebd8,https://github.com/benoitc/socketpool,benoitc_socketpool,benoitc/socketpool,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/benoitc_socketpool_hullabaloo_README.rst +6fd30d7dcc52c5c11b2d26f29c2d47437e2f0049,https://github.com/OCL-DEV/ocl-icd.git,OCL-DEV_ocl-icd.git,OCL-DEV/ocl-icd.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/OCL-DEV_ocl-icd.git_hullabaloo_README +f528d729f6ce7f336325668ccc55e4db18f167e5,https://github.com/scrottie/SOAP-WSDL,scrottie_SOAP-WSDL,scrottie/SOAP-WSDL,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/scrottie_SOAP-WSDL_hullabaloo_README +dcab81d0997bc5f283442ef9108ccb794296f0bb,https://github.com/Arachnid/pyqrencode.git,Arachnid_pyqrencode.git,Arachnid/pyqrencode.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Arachnid_pyqrencode.git_hullabaloo_README.md +aadf7f8e4d279adec3acf0eab68361c0b2e36845,https://github.com/crsmithdev/arrow.git,crsmithdev_arrow.git,crsmithdev/arrow.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/crsmithdev_arrow.git_hullabaloo_README.rst +19852e3d2b4f5fb715fac09d7fba98e8377b7c29,https://github.com/scrapy/parsel,scrapy_parsel,scrapy/parsel,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/scrapy_parsel_hullabaloo_README.rst +abfb5928d9a80c4c147e072d6cabadbc1a129393,https://github.com/kazuho/p5-Net-DNS-Lite.git,kazuho_p5-Net-DNS-Lite.git,kazuho/p5-Net-DNS-Lite.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kazuho_p5-Net-DNS-Lite.git_hullabaloo_README +6144ea6a394a56f0d919d1897a47c7d965bc535c,https://github.com/pvanek/qlipper,pvanek_qlipper,pvanek/qlipper,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pvanek_qlipper_hullabaloo_README +e7fe8393154cbb161410a159174e8d18f13126e3,https://github.com/cgohlke/tifffile.git,cgohlke_tifffile.git,cgohlke/tifffile.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cgohlke_tifffile.git_hullabaloo_README.rst +a575a41be7fd49ff05a17cf8934c808b0e2acf17,https://github.com/JonathonReinhart/syrep,JonathonReinhart_syrep,JonathonReinhart/syrep,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/JonathonReinhart_syrep_hullabaloo_README +6ee6bcf21d3815545300b484c927d13a067fc7cc,https://github.com/defunkt/mustache,defunkt_mustache,defunkt/mustache,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/defunkt_mustache_hullabaloo_README.md +86a073793213b80df48502f7385c40888330b36f,https://github.com/aio-libs/multidict.git,aio-libs_multidict.git,aio-libs/multidict.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aio-libs_multidict.git_hullabaloo_README.md +11de50a83acb07ab3a4439b38f0153444a124381,https://github.com/tornadoweb/tornado,tornadoweb_tornado,tornadoweb/tornado,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tornadoweb_tornado_hullabaloo_README +578d3b0a5df3a274b09bea4ecae25ff9fb2defdd,https://github.com/walles/px,walles_px,walles/px,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/walles_px_hullabaloo_README.md +0eb2b184abf841e0d24ed7ed0658a04b8f251979,https://github.com/tell-k/vim-autopep8.git,tell-k_vim-autopep8.git,tell-k/vim-autopep8.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tell-k_vim-autopep8.git_hullabaloo_README.rst +781070c5036bc67da9cd9451a85907b98673a2cc,https://github.com/construct/construct.git,construct_construct.git,construct/construct.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/construct_construct.git_hullabaloo_README.rst +427900e853ec828f155631f627ad7f9d1007f93b,https://github.com/vigneshwaranr/bd.git,vigneshwaranr_bd.git,vigneshwaranr/bd.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/vigneshwaranr_bd.git_hullabaloo_README +e00b2bcbf4e2e69bed8798e0fa2116e01fb424d9,https://github.com/ledgersmb/PGObject-Util-DBAdmin.git,ledgersmb_PGObject-Util-DBAdmin.git,ledgersmb/PGObject-Util-DBAdmin.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ledgersmb_PGObject-Util-DBAdmin.git_hullabaloo_README +8f8a9ed5192a6737d63364029cb05d91f1d0e399,https://github.com/openSUSE/libsolv,openSUSE_libsolv,openSUSE/libsolv,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/openSUSE_libsolv_hullabaloo_README +2895bb245fd216be96da6e4d6b9e361248934450,https://github.com/banister/method_source,banister_method_source,banister/method/source,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/banister_method_source_hullabaloo_README.markdown +c04994ba91225245cc7b21400c1daf70933c2655,https://github.com/seveas/python-networkmanager,seveas_python-networkmanager,seveas/python-networkmanager,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/seveas_python-networkmanager_hullabaloo_README +89196ca6cbe3bfa7f6117b5b5eb825266ae1a701,https://github.com/ICRAR/ijson.git,ICRAR_ijson.git,ICRAR/ijson.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ICRAR_ijson.git_hullabaloo_README.txt +9c84bea5e798fb2f2fa1cab186e385814a9264a1,https://github.com/softlayer/softlayer-python,softlayer_softlayer-python,softlayer/softlayer-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/softlayer_softlayer-python_hullabaloo_README.textile +6991ea3371f369a23291ae275c1832ce74ef9651,https://github.com/tkf/emacs-jedi.git,tkf_emacs-jedi.git,tkf/emacs-jedi.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tkf_emacs-jedi.git_hullabaloo_README.rst +355738a642294741bf5d0da7128d8fad9b9e97a9,https://github.com/home-assistant-libs/pychromecast.git,home-assistant-libs_pychromecast.git,home-assistant-libs/pychromecast.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/home-assistant-libs_pychromecast.git_hullabaloo_README.md +b65b09a0ee06950972233e8ea86ef87c4e63b3c9,https://github.com/gotoh/ssh-connect,gotoh_ssh-connect,gotoh/ssh-connect,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gotoh_ssh-connect_hullabaloo_README.md +4b46c2a278665cefeb78ef5a463c83f7ce8126ac,https://github.com/python-hyper/hyper-h2,python-hyper_hyper-h2,python-hyper/hyper-h2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-hyper_hyper-h2_hullabaloo_README.rst +77e319e8b79afac4fdd7b40ddbccdbeca5640bfb,https://invent.kde.org/plasma/kscreenlocker.git,plasma_kscreenlocker.git,plasma/kscreenlocker.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/plasma_kscreenlocker.git_hullabaloo_README +9a957eb4979208204b13041a6bb2559b6c1abbbc,https://github.com/bearded/ruby-ldap,bearded_ruby-ldap,bearded/ruby-ldap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bearded_ruby-ldap_hullabaloo_README +7dca0e67eb2cbe2223aeac3aad515a8f47c33fda,https://github.com/jedwing/CHMLib.git,jedwing_CHMLib.git,jedwing/CHMLib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jedwing_CHMLib.git_hullabaloo_README +652d5d8c96c934d9dea5a31953d8b6049d2ad072,https://github.com/libyal/dtfabric.git,fabric_fabric.git,fabric/fabric.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_dtfabric.git_hullabaloo_README +5e6104cd795f31b02c3eb64aef59bf24b7250a57,https://github.com/log2timeline/dfwinreg.git,log2timeline_dfwinreg.git,log2timeline/dfwinreg.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/log2timeline_dfwinreg.git_hullabaloo_README +6e98dee9354468e0b6a4fbe1b2d33ca63851fed5,https://github.com/lhost/sendxmpp.git,lhost_sendxmpp.git,lhost/sendxmpp.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lhost_sendxmpp.git_hullabaloo_README +94e8c979f57f022d27279feb53a19342f18e59c7,https://github.com/chneukirchen/extrace,chneukirchen_extrace,chneukirchen/extrace,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/chneukirchen_extrace_hullabaloo_README +fac06ac0e72dd0bb3e46fd43d99b17c3aca6a5a3,https://git.launchpad.net/email-reminder,email-reminder,email-reminder,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/email-reminder_hullabaloo_README +c9eef919a0c361085d5bcd0b14a3dfcaf86d7a89,https://github.com/libyal/libsmraw.git,libyal_libsmraw.git,libyal/libsmraw.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libsmraw.git_hullabaloo_README +5d103a58d1dcc14bb8c552a81ee6379096aaea77,https://anongit.kde.org/klines.git,klines.git,klines.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/klines.git_hullabaloo_README.themes +9fed4fd8bbc71e69f42b10468b1f05dd09fefa00,https://github.com/rncbc/qmidinet.git,rncbc_qmidinet.git,rncbc/qmidinet.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rncbc_qmidinet.git_hullabaloo_README +633674d34728a9f5e41423d97b50945f5ed50b7d,https://github.com/pytest-dev/pytest-bdd.git,pytest-dev_pytest-bdd.git,pytest-dev/pytest-bdd.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_pytest-bdd.git_hullabaloo_README.md +f73d60147594a85d93f65ea316df11511b6fffc7,https://github.com/coldfix/udiskie.git,coldfix_udiskie.git,coldfix/udiskie.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/coldfix_udiskie.git_hullabaloo_README +2bc7ba1e26fa7c9769adcd948a7d8b24f1375865,https://github.com/rsyslog/liblognorm.git,rsyslog_liblognorm.git,rsyslog/liblognorm.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rsyslog_liblognorm.git_hullabaloo_README +487897424a4923aa2c9fbfa68fdf140c37d589f5,https://github.com/django-waffle/django-waffle,django-waffle_django-waffle,django-waffle/django-waffle,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/django-waffle_django-waffle_hullabaloo_README.rst +8f444c760f6ab1d1080d03ca296441ef064abbcd,https://github.com/brechtm/citeproc-py,brechtm_citeproc-py,brechtm/citeproc-py,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/brechtm_citeproc-py_hullabaloo_README.md +b45bb12d20fce43f491bba2f2961788317cac8be,https://github.com/ginggs/gelemental,ginggs_gelemental,ginggs/gelemental,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ginggs_gelemental_hullabaloo_README +516e4e7fd2c134872f58a220e098c27c5ad55b77,https://github.com/zgimbutas/mwrap,zgimbutas_mwrap,zgimbutas/mwrap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zgimbutas_mwrap_hullabaloo_README +2deb88232c11ce4c2d02cbf2d622330de2abd881,https://github.com/konstantint/intervaltree-bio.git,konstantint_intervaltree-bio.git,konstantint/intervaltree-bio.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/konstantint_intervaltree-bio.git_hullabaloo_README.rst +42435f724284f28f142da627c69674eed48d99cd,https://github.com/supervisor/meld3.git,supervisor_meld3.git,supervisor/meld3.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/supervisor_meld3.git_hullabaloo_README.txt +933585c2e43cf2c6c0f6b400dd7e33cc9ae1979f,https://github.com/dottedmag/pychm.git,dottedmag_pychm.git,dottedmag/pychm.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dottedmag_pychm.git_hullabaloo_README +43a1f802efe84855501ecdef17b24b71d506c426,https://github.com/threedaymonk/text,threedaymonk_text,threedaymonk/text,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/threedaymonk_text_hullabaloo_README.rdoc +6366addbf11788ecc16ae4b05963a4bbee2db7dc,https://github.com/tubaman/django-macaddress.git,tubaman_django-macaddress.git,tubaman/django-macaddress.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tubaman_django-macaddress.git_hullabaloo_README +9a9789c49f74062c3d3dda45dfd888a5c9d65d89,https://github.com/jbazik/Archive-Ar.git,jbazik_Archive-Ar.git,jbazik/Archive-Ar.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jbazik_Archive-Ar.git_hullabaloo_README.md +6c60133a8745e6099b9400a5f3c308dedb49efff,https://gitlab.com/davical-project/awl,davical-project_awl,davical-project/awl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/davical-project_awl_hullabaloo_README +7cbe9ad2ec9936f311e80a7ff3266eb6006e8e5d,https://git.code.sf.net/p/posixovl/posixovl,p_posixovl_posixovl,p/posixovl/posixovl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/p_posixovl_posixovl_hullabaloo_README.rst +b7ba598b9402030d1cb5f2ba7b60c8ac93ca7f51,https://github.com/briandfoy/module-extract-use.git,briandfoy_module-extract-use.git,briandfoy/module-extract-use.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/briandfoy_module-extract-use.git_hullabaloo_README +298952a1f958639d188b6037a7cb8bedc9bbe612,https://anongit.kde.org/kajongg.git,kajongg.git,kajongg.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kajongg.git_hullabaloo_README +b393ac71cb83e67b037b5766a765b9138fbd15e5,https://github.com/pallets/itsdangerous,pallets_itsdangerous,pallets/itsdangerous,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pallets_itsdangerous_hullabaloo_README +f63ecf7699e566fb3e445110b01e36d793b42b28,https://github.com/mate-desktop/mate-user-guide.git,mate-desktop_mate-user-guide.git,mate-desktop/mate-user-guide.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-user-guide.git_hullabaloo_README.md +1ac27926e325ab00d4635598888c15911a8ccc88,https://github.com/timlegge/perl-XML-Generator,timlegge_perl-XML-Generator,timlegge/perl-XML-Generator,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/timlegge_perl-XML-Generator_hullabaloo_README +c28b84fd6be8db8cadfa6a8aee0fdd36db6e15e1,https://gitlab.com/pmccabe/pmccabe.git,pmccabe_pmccabe.git,pmccabe/pmccabe.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pmccabe_pmccabe.git_hullabaloo_README +a07489cd64f4c9809769411f6c0b81ab86c8b564,https://gitlab.onelab.info/gl2ps/gl2ps.git,gl2ps_gl2ps.git,gl2ps/gl2ps.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gl2ps_gl2ps.git_hullabaloo_README +6b78a4d46f0ece05b9c94d2afacb5a21864ecf9a,https://github.com/Diaoul/enzyme,Diaoul_enzyme,Diaoul/enzyme,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Diaoul_enzyme_hullabaloo_README.rst +8e1efea2ea829e646bd33841e720244dc5dc4918,https://github.com/kjn/lbzip2,kjn_lbzip2,kjn/lbzip2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kjn_lbzip2_hullabaloo_README +71fe9c28a87fca5908b46bb25859fd674821b47a,https://github.com/Rudloff/ufo2otf-debian,Rudloff_ufo2otf-debian,Rudloff/ufo2otf-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Rudloff_ufo2otf-debian_hullabaloo_README.rst +896e93682b922be543332bbb9714065fcd81af24,https://github.com/sipb/config-package-dev,sipb_config-package-dev,sipb/config-package-dev,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sipb_config-package-dev_hullabaloo_README.md +a1bc9feadf4936ad70bcb202a9c3fcd0320d3d5a,https://github.com/smira/txZMQ,smira_txZMQ,smira/txZMQ,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/smira_txZMQ_hullabaloo_README +e138393ae3d0243a967bdc0be2cb4d55e4050d06,https://github.com/linuxdeepin/qt5dxcb-plugin.git,linuxdeepin_qt5dxcb-plugin.git,linuxdeepin/qt5dxcb-plugin.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/linuxdeepin_qt5dxcb-plugin.git_hullabaloo_README.md +064aa04fe2e0f5de40caf4064c7b8c86adeb025e,https://github.com/MaartenBaert/ssr,MaartenBaert_ssr,MaartenBaert/ssr,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/MaartenBaert_ssr_hullabaloo_README.md +1c8c9ce01de59b6e17bddc4cd1b9804ba31681c1,https://github.com/galaxyproject/bioblend,galaxyproject_bioblend,galaxyproject/bioblend,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/galaxyproject_bioblend_hullabaloo_README.md +d2aa513ed6de856a756b276268d5e0cea1dd5584,https://github.com/MartijnBraam/python-isc-dhcp-leases,MartijnBraam_python-isc-dhcp-leases,MartijnBraam/python-isc-dhcp-leases,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/MartijnBraam_python-isc-dhcp-leases_hullabaloo_README.md +77a66f4485d1a005770d24443f08b7fd2a5a0ee0,https://github.com/Pylons/translationstring.git,Pylons_translationstring.git,Pylons/translationstring.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Pylons_translationstring.git_hullabaloo_README.txt +fb682d7d08f1466c5bb184de1c8d39e5683a73c0,https://github.com/gawel/panoramisk.git,gawel_panoramisk.git,gawel/panoramisk.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gawel_panoramisk.git_hullabaloo_README.rst +2a8dbdc77c04bf13da06912de70d84e44c27f566,https://github.com/toastdriven/restless,toastdriven_restless,toastdriven/restless,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/toastdriven_restless_hullabaloo_README.rst +fc8a2a85c6b9c0b07fc985e3585d8b9b95c6d03e,https://github.com/Abigail/Regexp--Common.git,Abigail_Regexp--Common.git,Abigail/Regexp--Common.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Abigail_Regexp--Common.git_hullabaloo_README +886bdeb8ffee4300cdccc52b9e73de89a382d7a2,https://github.com/gintas/django-picklefield.git,gintas_django-picklefield.git,gintas/django-picklefield.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gintas_django-picklefield.git_hullabaloo_README +b72c4977ebe9cd2c1a3cf1e4de232421f72a2c9a,https://github.com/sirfz/tesserocr.git,sirfz_tesserocr.git,sirfz/tesserocr.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sirfz_tesserocr.git_hullabaloo_README.md +a4cb6c5f55504a8df4e64073518d7a0bcf3c1998,https://github.com/postgis/postgis-java.git,postgis_postgis-java.git,postgis/postgis-java.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/postgis_postgis-java.git_hullabaloo_README +09cc0fb6d0e8e052574a4d92819b2c694e06a2e1,https://github.com/eerimoq/bitstruct,eerimoq_bitstruct,eerimoq/bitstruct,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/eerimoq_bitstruct_hullabaloo_README.rst +70171b8d2a6319f9179679d38fb645fa03533d71,https://github.com/nothings/stb,nothings_stb,nothings/stb,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nothings_stb_hullabaloo_README.md +dceb35df332356daf942dc9825c15869eda94adc,https://github.com/faye/faye,faye_faye,faye/faye,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/faye_faye_hullabaloo_README.txt +9ce2395dfb543e60dec0c329ec1c6c9fc00db161,https://github.com/textile/python-textile.git,textile_python-textile.git,textile/python-textile.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/textile_python-textile.git_hullabaloo_README.textile +fe067413b1fb61cdfba97d543189c5a01230b45c,https://github.com/openstack/swift.git,openstack_swift.git,openstack/swift.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/openstack_swift.git_hullabaloo_README +613c843d66f95b82e152778483311843ab769f3a,https://github.com/ambethia/recaptcha,ambethia_recaptcha,ambethia/recaptcha,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ambethia_recaptcha_hullabaloo_README +8ac77293e96e194bbfa8557bcc5bea90a700bbcb,https://github.com/brendangregg/Chaosreader,brendangregg_Chaosreader,brendangregg/Chaosreader,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/brendangregg_Chaosreader_hullabaloo_README.md +0cc7748c8603a93d26c3386c1b767801e98af9c3,https://github.com/zopefoundation/zope.proxy,zopefoundation_zope.proxy,zopefoundation/zope.proxy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zopefoundation_zope.proxy_hullabaloo_README.txt +5b72c0cf9c4aea986ac84fd27f958b295266d2eb,https://github.com/ros/catkin.git,ros_catkin.git,ros/catkin.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ros_catkin.git_hullabaloo_README +39aa3e96d2cb1807839ea3b2d510634e9f1543bf,https://github.com/assaf/uuid,assaf_uuid,assaf/uuid,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/assaf_uuid_hullabaloo_README +83506b78d8aee150a9bfbb357790544530c720c6,https://github.com/emuse/qmidiarp.git,emuse_qmidiarp.git,emuse/qmidiarp.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/emuse_qmidiarp.git_hullabaloo_README +3f795d6d054bf1e4b6a92c398d5856c5c2b354b7,https://github.com/jimfunk/django-postgresql-netfields,jimfunk_django-postgresql-netfields,jimfunk/django-postgresql-netfields,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jimfunk_django-postgresql-netfields_hullabaloo_README +9ab117a4d9759fa98bae2d019acd42b730a02330,https://github.com/tobyink/p5-io-callback.git,tobyink_p5-io-callback.git,tobyink/p5-io-callback.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tobyink_p5-io-callback.git_hullabaloo_README +1ca87b7810e5a65dd1598e27cf063d8ee7b13523,https://github.com/kilobyte/arch-test,kilobyte_arch-test,kilobyte/arch-test,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kilobyte_arch-test_hullabaloo_README +a234679700c5565cbb2bd98e429cded1dc2587f4,git://git.alsa-project.org/alsa-lib.git,alsa-lib.git,alsa-lib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/alsa-lib.git_hullabaloo_README.aconnect +317db8eec2f961c8d5da22af0b31dda62622bc72,https://github.com/jbouse-debian/alabaster,jbouse-debian_alabaster,jbouse-debian/alabaster,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jbouse-debian_alabaster_hullabaloo_README.md +8cf917795c410eb43716a41cfadc987ab83cc790,https://github.com/gbarr/CPAN-DistnameInfo.git,gbarr_CPAN-DistnameInfo.git,gbarr/CPAN-DistnameInfo.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gbarr_CPAN-DistnameInfo.git_hullabaloo_README +bbd98fcc5355a6245b291eaa24712a11f8616fbb,https://github.com/MagicStack/uvloop,MagicStack_uvloop,MagicStack/uvloop,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/MagicStack_uvloop_hullabaloo_README +6f36d58855b26e32a5782fe9d576531a20597be9,https://github.com/alastair/python-musicbrainz-ngs,alastair_python-musicbrainz-ngs,alastair/python-musicbrainz-ngs,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/alastair_python-musicbrainz-ngs_hullabaloo_README.md +b31e59238bba9ac6a54469ae99f18367332e2bd5,https://github.com/gwolf/kindleclip,gwolf_kindleclip,gwolf/kindleclip,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gwolf_kindleclip_hullabaloo_README.txt +89b54a13a16f1180beef291ae1f00fa08c27b1bf,https://github.com/RIPE-NCC/ripe-atlas-cousteau.git,RIPE-NCC_ripe-atlas-cousteau.git,RIPE-NCC/ripe-atlas-cousteau.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/RIPE-NCC_ripe-atlas-cousteau.git_hullabaloo_README.md +d52233200b2c0aa40a42f7c45820be58db03c795,https://github.com/pytest-dev/pluggy,pytest-dev_pluggy,pytest-dev/pluggy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_pluggy_hullabaloo_README.rst +3a24f74c301cc3246e298e3928394e9786fb50ac,https://github.com/deterministic-arts/DartsPyLRU.git,deterministic-arts_DartsPyLRU.git,deterministic-arts/DartsPyLRU.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/deterministic-arts_DartsPyLRU.git_hullabaloo_README.md +c923ce9e174a892069a84db58b0c3d035acddad1,https://github.com/steve-m-hay/XML-Encoding.git,steve-m-hay_XML-Encoding.git,steve-m-hay/XML-Encoding.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/steve-m-hay_XML-Encoding.git_hullabaloo_README +d50c0b908beba420eeacfd973c97decba2ed0f3d,https://github.com/dkogan/gnuplotlib,dkogan_gnuplotlib,dkogan/gnuplotlib,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dkogan_gnuplotlib_hullabaloo_README.org +df2a55dee586bc7de69949cb0acd454ef4eb45ff,https://github.com/JesusFreke/smali,JesusFreke_smali,JesusFreke/smali,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/JesusFreke_smali_hullabaloo_README +cb0e32a617eb1d7510f7e900d712fd9a0009a441,https://github.com/MarkCWirt/MIDIUtil.git,MarkCWirt_MIDIUtil.git,MarkCWirt/MIDIUtil.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/MarkCWirt_MIDIUtil.git_hullabaloo_README.txt +932ed89f4132a1e70c896b684806937fe03c99a0,https://github.com/mati75/evilwm.git,mati75_evilwm.git,mati75/evilwm.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mati75_evilwm.git_hullabaloo_README +52370f5564fa90916ce6f38cf4e63b8fa1761643,https://github.com/numba/numba.git,numba_numba.git,numba/numba.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/numba_numba.git_hullabaloo_README +bb672b57a25146f7bfab5851995b509eb5420302,https://github.com/inducer/pudb.git,inducer_pudb.git,inducer/pudb.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/inducer_pudb.git_hullabaloo_README.md +1094a4c862d1b600a6a93d04f276809f5cd03701,https://github.com/mdbootstrap/perfect-scrollbar,mdbootstrap_perfect-scrollbar,mdbootstrap/perfect-scrollbar,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mdbootstrap_perfect-scrollbar_hullabaloo_README.md +b52e98978ed19585c83f2f8c1da93bd7c436e36c,https://gitlab.com/fbb-git/bisoncpp,fbb-git_bisoncpp,fbb-git/bisoncpp,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fbb-git_bisoncpp_hullabaloo_README +7827900aeb12b196894ff9ac09d8fd90471d2596,https://github.com/dvdhrm/xwiimote,dvdhrm_xwiimote,dvdhrm/xwiimote,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dvdhrm_xwiimote_hullabaloo_README +8b10399731d3ef56f686985249984c845cfadd0c,https://github.com/eclipse/paho.mqtt.python.git,eclipse_paho.mqtt.python.git,eclipse/paho.mqtt.python.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/eclipse_paho.mqtt.python.git_hullabaloo_README.md +74ebd59fc6b0e418ba6a2522fe253168a8ac425a,https://github.com/zacharyvoase/urlobject,zacharyvoase_urlobject,zacharyvoase/urlobject,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zacharyvoase_urlobject_hullabaloo_README.rst +6ecf54639d2f08bdf062c7efd7f39a2a99eacd6d,https://github.com/zevv/duc,zevv_duc,zevv/duc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zevv_duc_hullabaloo_README.md +4f566ba605384dd805e08913dd5d871bf89eb8de,https://github.com/agordon/libgtextutils.git,agordon_libgtextutils.git,agordon/libgtextutils.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/agordon_libgtextutils.git_hullabaloo_README +1380c7253fc69fac746e40d3d2d794e1ce267ad3,https://gitlab.com/dianara/dianara-dev.git,dianara_dianara-dev.git,dianara/dianara-dev.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dianara_dianara-dev.git_hullabaloo_README +c85ae7780c3f5f473ab0b0a0916b22d9fb096cdc,https://github.com/jpastuszek/capture-output,jpastuszek_capture-output,jpastuszek/capture-output,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jpastuszek_capture-output_hullabaloo_README.rdoc +60f081a495664b1306b37e6e15cf5d49966984b6,https://github.com/matrix-org/python-signedjson.git,matrix-org_python-signedjson.git,matrix-org/python-signedjson.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/matrix-org_python-signedjson.git_hullabaloo_README.rst +91d7043850d2f6fce178672123c68f3776367e3a,https://github.com/bpython/curtsies,bpython_curtsies,bpython/curtsies,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bpython_curtsies_hullabaloo_README.md +28221b08825e71d41643e63b91ac97bd78c708d5,https://github.com/loads/molotov.git,loads_molotov.git,loads/molotov.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/loads_molotov.git_hullabaloo_README.md +d8e1857001506d6e338c11ef5b52b2915bd998c9,https://github.com/zopefoundation/zope.testrunner,zopefoundation_zope.testrunner,zopefoundation/zope.testrunner,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zopefoundation_zope.testrunner_hullabaloo_README.txt +f613ee158ba882416f70abec238ab7fc77260f9b,https://github.com/mila-iqia/picklable-itertools,mila-iqia_picklable-itertools,mila-iqia/picklable-itertools,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mila-iqia_picklable-itertools_hullabaloo_README.md +0e334da79989f9e9e94edb4b9bdeff578063a3a1,https://gitlab.gnome.org/GNOME/ocrfeeder,GNOME_ocrfeeder,GNOME/ocrfeeder,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_ocrfeeder_hullabaloo_README +f702bd6e7a685a31694e83efceaf38433687a86f,https://github.com/artyom-poptsov/guile-ssh.git,artyom-poptsov_guile-ssh.git,artyom-poptsov/guile-ssh.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/artyom-poptsov_guile-ssh.git_hullabaloo_README +1755452e61de16b5eba5dc53ccf0cbebd49bf55d,https://github.com/ghorn/debian-coinor-ipopt.git,ghorn_debian-coinor-ipopt.git,ghorn/debian-coinor-ipopt.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ghorn_debian-coinor-ipopt.git_hullabaloo_README +741249b8a78c4da8d4482cabf7d72277643456bb,https://github.com/mozilla/source-map,mozilla_source-map,mozilla/source-map,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mozilla_source-map_hullabaloo_README +8f1d690558cbe9599f570219872072264919489d,https://github.com/jorgesca/garmintools.git,jorgesca_garmintools.git,jorgesca/garmintools.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jorgesca_garmintools.git_hullabaloo_README +88b81cc5abaa26f58287516df97ce82db9170caf,https://github.com/takluyver/entrypoints,takluyver_entrypoints,takluyver/entrypoints,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/takluyver_entrypoints_hullabaloo_README.rst +431b04500823a17d0265a38440a0b24d3979432e,https://gitlab.com/libosinfo/osinfo-db-tools.git,libosinfo_osinfo-db-tools.git,libosinfo/osinfo-db-tools.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libosinfo_osinfo-db-tools.git_hullabaloo_README +4bb5534cd36b98c10db7dc12dd442314c8e08748,https://github.com/mogaal/nomnom,mogaal_nomnom,mogaal/nomnom,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mogaal_nomnom_hullabaloo_README +3b180264ced15bf7ccfdbcd4d7c0f9d696267cec,https://github.com/ttilley/fssm.git,ttilley_fssm.git,ttilley/fssm.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ttilley_fssm.git_hullabaloo_README.rdoc +54de22c123cb866ae7334ee9fb801b61b3dbdd25,https://github.com/dagolden/math-random-oo.git,dagolden_math-random-oo.git,dagolden/math-random-oo.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dagolden_math-random-oo.git_hullabaloo_README +d7380cecc0965f9e8b47467a2a6e77941e25fcbb,https://github.com/bestpractical/jifty-dbi.git,bestpractical_jifty-dbi.git,bestpractical/jifty-dbi.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bestpractical_jifty-dbi.git_hullabaloo_README +407f06318bb2224a518c33a104e6b8d7931a0406,https://gitlab.gnome.org/GNOME/gom.git,GNOME_gom.git,GNOME/gom.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_gom.git_hullabaloo_README +04c2d9d32a7dad6a4830bca132fc4ca72b276ac6,https://github.com/jpirko/libndp.git,jpirko_libndp.git,jpirko/libndp.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jpirko_libndp.git_hullabaloo_README +7f279d545d215c1782153cd423614c5a52c66022,https://github.com/gildor478/ocaml-expect.git,gildor478_ocaml-expect.git,gildor478/ocaml-expect.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gildor478_ocaml-expect.git_hullabaloo_README.txt +fff4ecc82f2bcfa7427596e7ad9c3769fcab040b,https://github.com/mate-desktop/mate-screensaver.git,mate-desktop_mate-screensaver.git,mate-desktop/mate-screensaver.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-screensaver.git_hullabaloo_README +98c9ec5879e825238ac671287e237497eef068e6,https://github.com/seattlerb/sexp_processor,seattlerb_sexp_processor,seattlerb/sexp/processor,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/seattlerb_sexp_processor_hullabaloo_README.txt +d367ab28270220c1378d2a7ca9bda4a9012c76cb,https://github.com/mate-desktop/caja-dropbox.git,mate-desktop_caja-dropbox.git,mate-desktop/caja-dropbox.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_caja-dropbox.git_hullabaloo_README +fdcef3372b44572596ddccbc663cdfcef72e4db4,https://github.com/numba/llvmlite.git,numba_llvmlite.git,numba/llvmlite.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/numba_llvmlite.git_hullabaloo_README.md +fe8aea1c3b5348347633da18a02b0bffd3b266a1,https://github.com/mate-desktop/libmateweather.git,mate-desktop_libmateweather.git,mate-desktop/libmateweather.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_libmateweather.git_hullabaloo_README +31862f7b50f32589826f7c606e7962931e7fdd8e,https://github.com/Mic92/python-mpd2,Mic92_python-mpd2,Mic92/python-mpd2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Mic92_python-mpd2_hullabaloo_README.txt +4bf4c10f5409f3d6e7a2217faffcf7151cb37e28,https://github.com/ddfreyne/cri,ddfreyne_cri,ddfreyne/cri,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ddfreyne_cri_hullabaloo_README +3f69436eb18d635f7573c01eb9a522b7b7dfe8ac,https://github.com/jaraco/keyrings.alt,jaraco_keyring,jaraco/keyring,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jaraco_keyrings.alt_hullabaloo_README.rst +5d084bb99e8ed5ec6e3e68611ad1813be9c505bc,https://github.com/mogaal/cclive,mogaal_cclive,mogaal/cclive,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mogaal_cclive_hullabaloo_README +7603160756b362f83c0f520d15142b1b4d992fa3,https://github.com/pmcenery/ipheth-debian,pmcenery_ipheth-debian,pmcenery/ipheth-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pmcenery_ipheth-debian_hullabaloo_README +c6b01938dc01b94f349d171de431490f4ee863c2,https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git,pub_scm_linux_kernel_git_jberg_iw.git,pub/scm/linux/kernel/git/jberg/iw.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pub_scm_linux_kernel_git_jberg_iw.git_hullabaloo_README +99b8b48a8090d31f558183f5a3b09df7bc6bcbd0,https://github.com/PyCQA/pep8-naming,PyCQA_pep8-naming,PyCQA/pep8-naming,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/PyCQA_pep8-naming_hullabaloo_README.rst +00f34542ec7b2701b57d6a73450a8dda485a441b,https://github.com/pantsbuild/pex.git,pantsbuild_pex.git,pantsbuild/pex.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pantsbuild_pex.git_hullabaloo_README.md +9f298366a92700cb658e26c16b34e5a8ee0c21bd,https://github.com/Diaoul/subliminal.git,Diaoul_subliminal.git,Diaoul/subliminal.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Diaoul_subliminal.git_hullabaloo_README.md +32e8bd52b2b3e78160f780ef099964913bfaf93e,https://github.com/celery/django-celery-beat,celery_django-celery-beat,celery/django-celery-beat,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/celery_django-celery-beat_hullabaloo_README.rst +7b353cd03c9a6c582d377e2f7414c3d67ccba980,https://github.com/fcitx/fcitx-libpinyin,fcitx_fcitx-libpinyin,fcitx/fcitx-libpinyin,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fcitx_fcitx-libpinyin_hullabaloo_README +1eb09dd740170597aaa241da5c1693ee013ce275,https://gitlab.gnome.org/GNOME/glib-networking,GNOME_glib-networking,GNOME/glib-networking,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_glib-networking_hullabaloo_README +1fda2de1df1cef55b6c24bf009c81030643dde68,https://github.com/shapely/shapely.git,shapely_shapely.git,shapely/shapely.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/shapely_shapely.git_hullabaloo_README.txt +987abdc4bd72e00ec48243fa38f5089f787a3bf3,https://github.com/janestreet/sexplib.git,janestreet_sexplib.git,janestreet/sexplib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/janestreet_sexplib.git_hullabaloo_README +e77b39fdbea2a86f5388611ba5f4bdef51c64c5a,https://github.com/lord63/tldr.py,lord63_tldr.py,lord63/tldr.py,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lord63_tldr.py_hullabaloo_README.md +8c473ba1ed951381b6ba116634464d8d89345c30,https://github.com/myint/perceptualdiff,myint_perceptualdiff,myint/perceptualdiff,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/myint_perceptualdiff_hullabaloo_README.txt +b0ec3f560d63741ce00fedfd2aa2d9ab2a21410e,https://github.com/snare/scruffy,snare_scruffy,snare/scruffy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/snare_scruffy_hullabaloo_README.md +d5ea202d675401bef2a8157fbce4ccbb109e297d,https://gitlab.com/aplevich/dpic,aplevich_dpic,aplevich/dpic,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aplevich_dpic_hullabaloo_README +c0e1e2b4dc3760e058acd3a7bdb9dca6cfe0c3f0,https://github.com/NVIDIA/nvidia-persistenced,NVIDIA_nvidia-persistenced,NVIDIA/nvidia-persistenced,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/NVIDIA_nvidia-persistenced_hullabaloo_README +3f953ed9c895fe8ff4f0d3873ecef04de46606c3,https://github.com/rncbc/drumkv1.git,rncbc_drumkv1.git,rncbc/drumkv1.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rncbc_drumkv1.git_hullabaloo_README +082112a71fab8a24141d150bbfa0761e8aa3dfc8,https://github.com/bombadil/mod_proxy_msrpc,bombadil_mod_proxy_msrpc,bombadil/mod/proxy/msrpc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bombadil_mod_proxy_msrpc_hullabaloo_README.pod +ffbe3db5df5c3514cee4759fbb152f445612c68c,https://github.com/alisaifee/flask-limiter.git,alisaifee_flask-limiter.git,alisaifee/flask-limiter.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/alisaifee_flask-limiter.git_hullabaloo_README.rst +753617bb38632c22cadc02e58238bfb247f61a00,https://github.com/pyca/pynacl,pyca_pynacl,pyca/pynacl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pyca_pynacl_hullabaloo_README.rst +d1788f50e7785c9fa5a4f3504018d6e1ba62db8b,https://github.com/maxmind/MaxMind-DB-Reader-python,maxmind_MaxMind-DB-Reader-python,maxmind/MaxMind-DB-Reader-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/maxmind_MaxMind-DB-Reader-python_hullabaloo_README.md +39101febb74c76df92b570c17cb5611d7d5c4dd5,https://github.com/notanumber/xapian-haystack,notanumber_xapian-haystack,notanumber/xapian-haystack,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/notanumber_xapian-haystack_hullabaloo_README +5eba4a7f90948a93f51daa8aa46b947e2bced2e7,https://github.com/erdewit/nest_asyncio,erdewit_nest_asyncio,erdewit/nest/asyncio,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/erdewit_nest_asyncio_hullabaloo_README.rst +c155bd5b9b98a2e8f94bfbe8f487aa22e38f27d5,https://github.com/scrapy-plugins/scrapy-djangoitem,scrapy-plugins_scrapy-djangoitem,scrapy-plugins/scrapy-djangoitem,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/scrapy-plugins_scrapy-djangoitem_hullabaloo_README.rst +b4d3254d9bf6eb3aaa752725a4b0187a1f2d3742,https://github.com/rncbc/samplv1.git,rncbc_samplv1.git,rncbc/samplv1.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rncbc_samplv1.git_hullabaloo_README +cfdb000e1338eca094973ed95ac39f7fdf200a15,https://github.com/Echsecutor/coffee,Echsecutor_coffee,Echsecutor/coffee,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Echsecutor_coffee_hullabaloo_README.md +e56cdee58fc331cb6bbcf861b907161b9929c209,https://github.com/python-hyper/hyperframe.git,python-hyper_hyperframe.git,python-hyper/hyperframe.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-hyper_hyperframe.git_hullabaloo_README.rst +22242c9c59c1237399d7f31616e67220e5e03ee4,https://github.com/pythongssapi/python-gssapi,pythongssapi_python-gssapi,pythongssapi/python-gssapi,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pythongssapi_python-gssapi_hullabaloo_README.txt +e8bf95098dd7e670c747e159833268145fa434ea,https://github.com/libc/em-redis,libc_em-redis,libc/em-redis,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libc_em-redis_hullabaloo_README.txt +9f4d265a04c8962f4436f8c532047a47518e39b9,https://github.com/pmqs/BerkeleyDB.git,pmqs_BerkeleyDB.git,pmqs/BerkeleyDB.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pmqs_BerkeleyDB.git_hullabaloo_README +75c73941df74ae0c7c7e229dde5e8707d4c9f0ea,https://github.com/manwar/Test-Strict.git,manwar_Test-Strict.git,manwar/Test-Strict.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/manwar_Test-Strict.git_hullabaloo_README +dea3f4c9f01d4b608d377faf21bc6afa74b3fdf0,https://github.com/zopefoundation/zope.component,zopefoundation_zope.component,zopefoundation/zope.component,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zopefoundation_zope.component_hullabaloo_README.txt +00d406ee88d0706813d93a9686d00e3e5ecf4ac8,https://github.com/linuxmint/nemo.git,linuxmint_nemo.git,linuxmint/nemo.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/linuxmint_nemo.git_hullabaloo_README.md +ea44911c20a96565dba24de68dce2b1a2a363ca6,https://github.com/wooga/eredis.git,wooga_eredis.git,wooga/eredis.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wooga_eredis.git_hullabaloo_README.md +07849788d6aaff61207f35c3d8df9f7e3e624481,https://github.com/ReAzem/python-pass.git,ReAzem_python-pass.git,ReAzem/python-pass.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ReAzem_python-pass.git_hullabaloo_README.md +62bc6ebc9bbf0cf45c9dd14b31fda3cfc1b4a80e,https://github.com/linuxmint/flags.git,linuxmint_flags.git,linuxmint/flags.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/linuxmint_flags.git_hullabaloo_README.md +82c61a8bcb6552cc760c71477d026f1261d5f36c,https://github.com/rubik/radon.git,rubik_radon.git,rubik/radon.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rubik_radon.git_hullabaloo_README.md +4d4e7d97da337cfef1d198df5e436937c6fc3100,https://github.com/mlang/yatm.git,mlang_yatm.git,mlang/yatm.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mlang_yatm.git_hullabaloo_README +245b94ae5825238a275b39dd592ff36e006da700,https://github.com/tkem/mopidy-dleyna.git,tkem_mopidy-dleyna.git,tkem/mopidy-dleyna.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tkem_mopidy-dleyna.git_hullabaloo_README.rst +65b4282b95363f2567661ed5bdba3b5fbb4d8c5f,https://github.com/ratt-ru/cassbeam,ratt-ru_cassbeam,ratt-ru/cassbeam,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ratt-ru_cassbeam_hullabaloo_README +1fd51aa930c56945865464509ea22f575e764a5b,https://gitlab.gnome.org/Archive/mousetrap,Archive_mousetrap,Archive/mousetrap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Archive_mousetrap_hullabaloo_README +ef8ed8698326635031f2996d4039d53b8daf330f,https://github.com/jupyter/testpath.git,jupyter_testpath.git,jupyter/testpath.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jupyter_testpath.git_hullabaloo_README.rst +e51d50b45226094acd69b23f6f69d851b6848f5e,https://github.com/aio-libs/yarl.git,aio-libs_yarl.git,aio-libs/yarl.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aio-libs_yarl.git_hullabaloo_README.md +f9be0e4e2dac28af0b4b77b65ccfd0c16fcea276,https://github.com/retext-project/pymarkups.git,retext-project_pymarkups.git,retext-project/pymarkups.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/retext-project_pymarkups.git_hullabaloo_README +17e291fd05d66fe232e2f409d54331c495b2fbd0,https://github.com/mate-desktop/mate-menus.git,mate-desktop_mate-menus.git,mate-desktop/mate-menus.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-menus.git_hullabaloo_README +2c25214ae7be0f9f78e3adb759f254212ee67a1a,https://github.com/bowman/CGI-Expand.git,bowman_CGI-Expand.git,bowman/CGI-Expand.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bowman_CGI-Expand.git_hullabaloo_README +d2a4b2d0144ec60b247d32118bf17501b567d8e9,https://github.com/kjetilk/RDF-LinkedData.git,kjetilk_RDF-LinkedData.git,kjetilk/RDF-LinkedData.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kjetilk_RDF-LinkedData.git_hullabaloo_README +0a179c4a7760d166346ca95b318087389857ce39,https://github.com/tessus/apachetop.git,tessus_apachetop.git,tessus/apachetop.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tessus_apachetop.git_hullabaloo_README +f6a2ab48d42165ab4bea9125812a4e78b39393c3,https://github.com/clalancette/oz.git,clalancette_oz.git,clalancette/oz.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/clalancette_oz.git_hullabaloo_README +c1d991e5be905bc09e0a8f7a941112fe2f02ffc9,https://github.com/philpem/printer-driver-ptouch.git,philpem_printer-driver-ptouch.git,philpem/printer-driver-ptouch.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/philpem_printer-driver-ptouch.git_hullabaloo_README +d7ac4d34ee77385632e80474afdd437003c3ed7e,https://github.com/lazarusllong/sqldeveloper-package.git,lazarusllong_sqldeveloper-package.git,lazarusllong/sqldeveloper-package.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lazarusllong_sqldeveloper-package.git_hullabaloo_README +ba9f5664c2b12afe129045742aa64b0434aace33,https://github.com/spulec/freezegun.git,spulec_freezegun.git,spulec/freezegun.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/spulec_freezegun.git_hullabaloo_README.rst +bd42274d9706ec8f230d1d462f669c3f7a933b90,https://github.com/mopidy/mopidy-scrobbler.git,mopidy_mopidy-scrobbler.git,mopidy/mopidy-scrobbler.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mopidy_mopidy-scrobbler.git_hullabaloo_README.rst +4ef6cee9f86c98e4d5f10e764dc2f853c071eec7,https://github.com/lxqt/liblxqt.git,lxqt_liblxqt.git,lxqt/liblxqt.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lxqt_liblxqt.git_hullabaloo_README +b282b4cc90d9706baa54da7823b446a1c6d43ab5,https://github.com/jawnsy/Math-Random-ISAAC,jawnsy_Math-Random-ISAAC,jawnsy/Math-Random-ISAAC,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jawnsy_Math-Random-ISAAC_hullabaloo_README +8986cc0666e1cb966f46dd8a10524b3c289c2f39,https://github.com/mati75/udevil.git,mati75_udevil.git,mati75/udevil.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mati75_udevil.git_hullabaloo_README +c0a866b6720f10e55e4862efff1cc77ee1c6515c,https://github.com/pypa/pep517.git,pypa_pep517.git,pypa/pep517.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pypa_pep517.git_hullabaloo_README.rst +79ea5ebf76d39c4820690ace7501656e9afb7de3,https://github.com/thumblemonks/riot.git,thumblemonks_riot.git,thumblemonks/riot.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/thumblemonks_riot.git_hullabaloo_README.markdown +f7acb0c8d1ebe9103e411c4cd50335513e9d4be6,https://github.com/dask/partd.git,dask_partd.git,dask/partd.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dask_partd.git_hullabaloo_README.rst +463d8b7836e4db1c62c6b3bbff1a5e25dffe6f78,https://github.com/boto/botocore,boto_botocore,boto/botocore,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/boto_botocore_hullabaloo_README.md +c2e8e1d0695f60ed79e848e80a0c152da0c1d7db,https://github.com/locationtech/jts.git,locationtech_jts.git,locationtech/jts.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/locationtech_jts.git_hullabaloo_README.md +99229b4251a7bc4568cd93576c2bfe698dd95994,https://github.com/nov/openid_connect,nov_openid_connect,nov/openid/connect,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nov_openid_connect_hullabaloo_README.rdoc +c71094cd8da46507748ca39a213d8e03503ab427,https://github.com/matplotlib/cycler,matplotlib_cycler,matplotlib/cycler,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/matplotlib_cycler_hullabaloo_README.md +409ee1f414832d839058c16c1617c323e3f23ac5,https://github.com/haakonnessjoen/Cavez-of-Phear-packaging,haakonnessjoen_Cavez-of-Phear-packaging,haakonnessjoen/Cavez-of-Phear-packaging,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/haakonnessjoen_Cavez-of-Phear-packaging_hullabaloo_README +d801da9722aa00c20dfb517dfd5a2d773b872580,https://github.com/punitagrawal/libhugetlbfs.git,punitagrawal_libhugetlbfs.git,punitagrawal/libhugetlbfs.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/punitagrawal_libhugetlbfs.git_hullabaloo_README +cd7aecde450157ae2ec0c07a2171d7149bebb74a,https://github.com/sferik/twitter,sferik_twitter,sferik/twitter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sferik_twitter_hullabaloo_README +6ee1329a759dcf27f71d7c3db325d975e802cc1a,https://github.com/bw2/ConfigArgParse,bw2_ConfigArgParse,bw2/ConfigArgParse,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bw2_ConfigArgParse_hullabaloo_README.md +18a9ba83e3e178289c6de234aa0e9c0e825c9822,https://github.com/adrienverge/PhotoCollage,adrienverge_PhotoCollage,adrienverge/PhotoCollage,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/adrienverge_PhotoCollage_hullabaloo_README.md +4be3ba47a156655984cb7e45bddcb6d608dc98eb,https://github.com/rodolf0/wbar,rodolf0_wbar,rodolf0/wbar,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rodolf0_wbar_hullabaloo_README +4f475c7697722e946e39e42f38f3dd03a95d8765,https://github.com/matrix-org/synapse.git,matrix-org_synapse.git,matrix-org/synapse.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/matrix-org_synapse.git_hullabaloo_README.rst +b1f6b4a4fe756fa34fcd4664c081c120334f2d1f,https://github.com/common-workflow-language/schema_salad,common-workflow-language_schema_salad,common-workflow-language/schema/salad,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/common-workflow-language_schema_salad_hullabaloo_README.md +27b248fc60699bbecced960cdd0a1cc21154e8a1,https://invent.kde.org/plasma/kdeplasma-addons.git,plasma_kdeplasma-addons.git,plasma/kdeplasma-addons.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/plasma_kdeplasma-addons.git_hullabaloo_README +217999150812f7d356169661e4ac0b2e09fecd1d,https://github.com/trezor/python-mnemonic,trezor_python-mnemonic,trezor/python-mnemonic,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/trezor_python-mnemonic_hullabaloo_README +c4d8523ad3e7869c06958197b6a7045144399af9,https://github.com/pgq/pgqd,pgq_pgqd,pgq/pgqd,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pgq_pgqd_hullabaloo_README.rst +1046a6eaafb35551ca00603bf47f8f91b391ef16,https://github.com/ironcamel/AtomBus.git,ironcamel_AtomBus.git,ironcamel/AtomBus.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ironcamel_AtomBus.git_hullabaloo_README +31c3a4c37f783cfdb916a6adfd35bff4464047ea,https://github.com/williamh/pybugz,williamh_pybugz,williamh/pybugz,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/williamh_pybugz_hullabaloo_README +9ca9518234241cafa32cc1bf62d9ac69e18392da,https://github.com/paniagua-gustavo/debian-snetz,paniagua-gustavo_debian-snetz,paniagua-gustavo/debian-snetz,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/paniagua-gustavo_debian-snetz_hullabaloo_README.md +69d77500dfc96f139f380d6b90b793bcb04b0619,https://github.com/ClusterLabs/libqb,ClusterLabs_libqb,ClusterLabs/libqb,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ClusterLabs_libqb_hullabaloo_README +563cd38a53d2fe5666762fbde15cc89bf8cf3222,https://git.open-mesh.org/alfred.git,alfred.git,alfred.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/alfred.git_hullabaloo_README +3cdcae7e60a122e0e4baa8c6263276fc93c70cce,https://github.com/tonioo/sievelib,tonioo_sievelib,tonioo/sievelib,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tonioo_sievelib_hullabaloo_README +065316c6133d05a9f57ca22dce7eb25ffdd77dab,https://github.com/sqlalchemyorg/changelog,sqlalchemyorg_changelog,sqlalchemyorg/changelog,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sqlalchemyorg_changelog_hullabaloo_README.rst +75f0119200806b6d406e506a451b30c8008af064,https://github.com/jazzband/django-recurrence,jazzband_django-recurrence,jazzband/django-recurrence,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jazzband_django-recurrence_hullabaloo_README +4232f5b2bc01f6bc164e65f4898b7f4c01c6b13d,https://github.com/vsajip/python-gnupg.git,vsajip_python-gnupg.git,vsajip/python-gnupg.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/vsajip_python-gnupg.git_hullabaloo_README.rst +f74d0f3fbeb7c66eb9c127b9375fa29f2b4ec59a,https://github.com/jgoerzen/zfSnap,jgoerzen_zfSnap,jgoerzen/zfSnap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jgoerzen_zfSnap_hullabaloo_README +7565ad2bdb6175968d15cfb2a5888f142dd9f0b5,https://bitbucket.org/broukema/inhomog,broukema_inhomog,broukema/inhomog,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/broukema_inhomog_hullabaloo_README +d2c33c764608ac2a10dbce1406a20b907207fb72,https://anongit.kde.org/kigo.git,kigo.git,kigo.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kigo.git_hullabaloo_README +2e3a47fc316f8084ab7f6e05f085d39a072a3284,https://github.com/Fantomas42/django-xmlrpc,Fantomas42_django-xmlrpc,Fantomas42/django-xmlrpc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Fantomas42_django-xmlrpc_hullabaloo_README.rst +f9bf001d25b86f8066697ec64b6710a0889e7f49,https://github.com/perigrin/xml-sax-machines.git,perigrin_xml-sax-machines.git,perigrin/xml-sax-machines.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/perigrin_xml-sax-machines.git_hullabaloo_README +5c5ed88c9bda731ef77ab82570b734c70ea38aa1,https://github.com/pylti/lti.git,pylti_lti.git,pylti/lti.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pylti_lti.git_hullabaloo_README.md +7a496a294b734537f6d48f9e2590583171aeb6b7,https://bitbucket.org/tildeslash/monit,tildeslash_monit,tildeslash/monit,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tildeslash_monit_hullabaloo_README.md +50f6ac036cad29ba0c6b27ff67b4b93f7952f753,https://github.com/xach/buildapp,xach_buildapp,xach/buildapp,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/xach_buildapp_hullabaloo_README +6a72ac7a682ce2118c334bc319af9065265d86c8,https://github.com/takaswie/hinawa-utils.git,takaswie_hinawa-utils.git,takaswie/hinawa-utils.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/takaswie_hinawa-utils.git_hullabaloo_README +0a79f65b7fab4455a4b174fd225f43ad18d60acc,https://github.com/xflr6/graphviz,xflr6_graphviz,xflr6/graphviz,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/xflr6_graphviz_hullabaloo_README.rst +5ad18328e8f38abcc5a0fc4a549e7a3c40697d4e,https://github.com/jaraco/zipp,jaraco_zipp,jaraco/zipp,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jaraco_zipp_hullabaloo_README.rst +7ded7ef265b536b15730be656f08c59f175bb942,https://github.com/mathiasbynens/unicode-property-aliases,mathiasbynens_unicode-property-aliases,mathiasbynens/unicode-property-aliases,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mathiasbynens_unicode-property-aliases_hullabaloo_README.md +34f7a5bbd1f61bd7a571a02876582716ce14a19f,https://github.com/brobin/drf-generators,brobin_drf-generators,brobin/drf-generators,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/brobin_drf-generators_hullabaloo_README.rst +f2f9517a3b3efb1a96333fc9257e487650705910,https://github.com/libyal/libvhdi.git,libyal_libvhdi.git,libyal/libvhdi.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libvhdi.git_hullabaloo_README +d01bd0bf9d0f23e79a668c7cc5a9c1b2219832ad,https://github.com/pear/Net_SMTP.git,pear_Net_SMTP.git,pear/Net/SMTP.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pear_Net_SMTP.git_hullabaloo_README.rst +0434429a5b204365077e6e153cee24efaf4861bb,https://github.com/bitprophet/releases.git,bitprophet_releases.git,bitprophet/releases.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bitprophet_releases.git_hullabaloo_README.rst +edc9eb2501c6ecb5444bb2cd970868cbcdd71460,https://github.com/gawel/pyquery.git,gawel_pyquery.git,gawel/pyquery.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gawel_pyquery.git_hullabaloo_README.txt +8c6d76d5b1853411d07c64aadf1c4495555e84f6,https://github.com/bbidulock/wmpinboard.git,bbidulock_wmpinboard.git,bbidulock/wmpinboard.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bbidulock_wmpinboard.git_hullabaloo_README +40e3a4a698ed666280de68373d3ed09f43985bef,https://github.com/urweb/debian-urweb,urweb_debian-urweb,urweb/debian-urweb,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/urweb_debian-urweb_hullabaloo_README +fefa29659d9a9a0d8531f813edaad4b6666b3b3e,https://github.com/fcitx/fcitx5-configtool.git,fcitx_fcitx5-configtool.git,fcitx/fcitx5-configtool.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fcitx_fcitx5-configtool.git_hullabaloo_README +910f6b374de799b0f10053fe30186ff6dc8636e6,https://github.com/CLD2Owners/cld2,CLD2Owners_cld2,CLD2Owners/cld2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/CLD2Owners_cld2_hullabaloo_README.md +484604935b16d9f92504d8aa68833b0b2d300b54,https://bitbucket.org/wooster/biplist/issues/new,wooster_biplist_issues_new,wooster/biplist/issues/new,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wooster_biplist_issues_new_hullabaloo_README.md +eb7c4755d1d5269ccade0ee31afe9e4c7bef42f0,https://github.com/pytest-dev/pytest-mock.git,pytest-dev_pytest-mock.git,pytest-dev/pytest-mock.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_pytest-mock.git_hullabaloo_README.md +c5ebf6b258d8df6de30632d0bcf9992f614e33d8,https://github.com/zopefoundation/zope.event,zopefoundation_zope.event,zopefoundation/zope.event,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zopefoundation_zope.event_hullabaloo_README.txt +6137c0c8c68efa4d4d0a03693dbb6bf00c512c83,https://github.com/spacetelescope/imexam,spacetelescope_imexam,spacetelescope/imexam,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/spacetelescope_imexam_hullabaloo_README.md +2ae660ab6fc1e1b55861651a30b2ad6da4f2dae6,https://github.com/wagtail/django-modelcluster.git,wagtail_django-modelcluster.git,wagtail/django-modelcluster.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wagtail_django-modelcluster.git_hullabaloo_README.md +7776aa97fc1c69a8f28ba4bab7387fb96be9a6e4,http://git.drumgizmo.org/dgedit.git,dgedit.git,dgedit.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dgedit.git_hullabaloo_README +0c104cda0eeb8eb2b0e5699a8233e28ff28e0a94,https://github.com/achillean/shodan-python,achillean_shodan-python,achillean/shodan-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/achillean_shodan-python_hullabaloo_README +eec7acb1e289399563cdf17c145c2de427626647,https://github.com/nesquena/rabl,nesquena_rabl,nesquena/rabl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nesquena_rabl_hullabaloo_README.md +5bacf2a65ce40f628f7802894fa309f24fccca04,https://github.com/pytest-dev/pytest-cov.git,pytest-dev_pytest-cov.git,pytest-dev/pytest-cov.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_pytest-cov.git_hullabaloo_README.txt +d67f6c01c2c90c516632be2e590b5981a97101c6,https://github.com/AlexandrePTJ/mopidy-somafm,AlexandrePTJ_mopidy-somafm,AlexandrePTJ/mopidy-somafm,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/AlexandrePTJ_mopidy-somafm_hullabaloo_README.md +496df172410fa2a76d803e0e5ac00cf7ef2880b4,https://github.com/libyal/libesedb,libyal_libesedb,libyal/libesedb,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libesedb_hullabaloo_README +af68fedec1603012667bb0c197d2f819333940a2,https://github.com/Xfennec/progress,Xfennec_progress,Xfennec/progress,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Xfennec_progress_hullabaloo_README.md +bc28b6ea4aa7290c13f59642f953d59bfb7fdada,https://github.com/vim-voom/VOoM.git,vim-voom_VOoM.git,vim-voom/VOoM.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/vim-voom_VOoM.git_hullabaloo_README.txt +0b0e6bc987da4fd88a7854ebb12bde705e92c428,https://github.com/mate-desktop/mate-control-center.git,mate-desktop_mate-control-center.git,mate-desktop/mate-control-center.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-control-center.git_hullabaloo_README +4c7774f829a4385f1101d379173ec287f7ef233a,https://github.com/jgm/pandocfilters,jgm_pandocfilters,jgm/pandocfilters,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jgm_pandocfilters_hullabaloo_README.md +08ff5f6388bec1fa4a7e7e0a4542b13aa67093fd,https://github.com/michaeljones/breathe.git,michaeljones_breathe.git,michaeljones/breathe.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/michaeljones_breathe.git_hullabaloo_README.rst +d2e9b230840955b1635e8d9afb7242ccb2dbb14e,https://github.com/Rup0rt/pcapfix,Rup0rt_pcapfix,Rup0rt/pcapfix,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Rup0rt_pcapfix_hullabaloo_README +087e9a06b2179f83f96b40fa465870a51b920359,https://gitlab.com/cjwatson/binfmt-support.git,cjwatson_binfmt-support.git,cjwatson/binfmt-support.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cjwatson_binfmt-support.git_hullabaloo_README.Debian +64b976e139ecfeafa83889a9c6d6615d30ba5635,https://github.com/openstack/swift-bench.git,openstack_swift-bench.git,openstack/swift-bench.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/openstack_swift-bench.git_hullabaloo_README.rst +e48fc61bf4cf43a90b7ddf16e3cbb3b247333c89,https://github.com/mate-desktop/mate-netbook.git,mate-desktop_mate-netbook.git,mate-desktop/mate-netbook.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-netbook.git_hullabaloo_README +fc3d3c0a4f110a23335398c327ac0a4fc949d5cb,https://github.com/pd-externals/ggee,pd-externals_ggee,pd-externals/ggee,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pd-externals_ggee_hullabaloo_README.ggext +b0a473952b469d2e51a191d0a00cca440ec8e2de,https://github.com/glenfant/stopit,glenfant_stopit,glenfant/stopit,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/glenfant_stopit_hullabaloo_README.rst +5dc67358d6bf6fa996b0510ce6dea1a2a005660a,https://github.com/mogaal/editra,mogaal_editra,mogaal/editra,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mogaal_editra_hullabaloo_README +7e9e69d1b2d1e4dc01b9be717d899c124f934e33,https://github.com/cokelaer/easydev.git,cokelaer_easydev.git,cokelaer/easydev.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cokelaer_easydev.git_hullabaloo_README.txt +035216f6bdce88c6bc49bd69043399f7d87a5ef3,https://github.com/sigmavirus24/betamax,sigmavirus24_betamax,sigmavirus24/betamax,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sigmavirus24_betamax_hullabaloo_README.rst +f498bf5bd0004d95a674470dfc037821e7381e82,https://github.com/bobtfish/directory-scratch.git,bobtfish_directory-scratch.git,bobtfish/directory-scratch.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bobtfish_directory-scratch.git_hullabaloo_README +54ec656a060aa9e8daa9bd4ff039719c830a90cc,https://github.com/zaach/jison,zaach_jison,zaach/jison,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zaach_jison_hullabaloo_README.md +33a726d29b3fd9536582b11f2bdeda40f375bbf8,https://github.com/cdent/pastescript.git,cdent_pastescript.git,cdent/pastescript.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cdent_pastescript.git_hullabaloo_README.rst +16f036c6217eefff009c2135f36ea291910b1416,https://github.com/zopefoundation/zope.interface.git,zopefoundation_zope.interface.git,zopefoundation/zope.interface.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zopefoundation_zope.interface.git_hullabaloo_README.txt +2cf99077034bd517a0892d4a3283ca238a5deac3,https://gitlab.gnome.org/GNOME/rygel.git,GNOME_rygel.git,GNOME/rygel.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_rygel.git_hullabaloo_README +899f2fdaed605b0d4c71308a7dd77c67ad03210b,https://github.com/bobtfish/text-multimarkdown.git,bobtfish_text-multimarkdown.git,bobtfish/text-multimarkdown.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bobtfish_text-multimarkdown.git_hullabaloo_README +f6ee96cf37bdb805ed35416b4370e3e407875bca,https://github.com/Pylons/hupper,Pylons_hupper,Pylons/hupper,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Pylons_hupper_hullabaloo_README.rst +5282610e1529c58c29b00ca2f8b008e95868ad9a,https://github.com/jonashaag/klaus,jonashaag_klaus,jonashaag/klaus,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jonashaag_klaus_hullabaloo_README.rst +e0b386f3045903df618b7c4d6e9d60cdd556f057,https://github.com/lincolnloop/python-qrcode.git,lincolnloop_python-qrcode.git,lincolnloop/python-qrcode.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lincolnloop_python-qrcode.git_hullabaloo_README.rst +4723cdd043d055946bea1171283d5ce0bc5cfc4a,https://github.com/django-extensions/django-extensions,django-extensions_django-extensions,django-extensions/django-extensions,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/django-extensions_django-extensions_hullabaloo_README.rst +0cca75af52eec6fca169099aa5979836f943c7aa,https://github.com/swh/lv2,swh_lv2,swh/lv2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/swh_lv2_hullabaloo_README +0f48af1564b110c9945594037792f2dec2f99127,https://github.com/mati75/gxkb.git,mati75_gxkb.git,mati75/gxkb.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mati75_gxkb.git_hullabaloo_README.source +e8559c2ced9178b3e95c44cbfaf7cc9182f9dff7,https://github.com/GeeXboX/libnfo,GeeXboX_libnfo,GeeXboX/libnfo,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GeeXboX_libnfo_hullabaloo_README +03baa2f94f496c5813dbe9012cbc51fb973fcc28,https://gitlab.gnome.org/GNOME/grilo,GNOME_grilo,GNOME/grilo,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_grilo_hullabaloo_README +7d0485494eaa8fe27a14526d890a5ff2030adc9d,https://github.com/alex/rply,alex_rply,alex/rply,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/alex_rply_hullabaloo_README.rst +0df024a97fb6f19f6f16c7049bc69a100df82bcc,https://github.com/etingof/pyasn1,etingof_pyasn1,etingof/pyasn1,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/etingof_pyasn1_hullabaloo_README.txt +f58af7c344ea6a17258846e9b8cbfb46148176d0,https://github.com/kjetilk/p5-lwp-useragent-chicaching.git,kjetilk_p5-lwp-useragent-chicaching.git,kjetilk/p5-lwp-useragent-chicaching.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kjetilk_p5-lwp-useragent-chicaching.git_hullabaloo_README.pod +7fa460ceedffaf3d2aa21851d285ce92c1fde00e,https://github.com/OpenTTD/OpenMSX.git,OpenTTD_OpenMSX.git,OpenTTD/OpenMSX.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/OpenTTD_OpenMSX.git_hullabaloo_README.md +14f5ccb1279038d156daa41fa1c8838f5a2f7396,https://github.com/lxde/lxinput.git,lxde_lxinput.git,lxde/lxinput.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lxde_lxinput.git_hullabaloo_README +a621faa31c4402d21ba3d408127d3541a7d1de75,https://github.com/mcmtroffaes/pathlib2.git,mcmtroffaes_pathlib2.git,mcmtroffaes/pathlib2.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mcmtroffaes_pathlib2.git_hullabaloo_README.txt +893d8b727c0c5067646a322f8d10a0d7102b1253,https://github.com/twaddington/django-gravatar,twaddington_django-gravatar,twaddington/django-gravatar,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/twaddington_django-gravatar_hullabaloo_README +61f0b7ed7a2e805e08aa1f2412fb9b869a04fdeb,https://github.com/lukas2511/dehydrated,lukas2511_dehydrated,lukas2511/dehydrated,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lukas2511_dehydrated_hullabaloo_README.md +158b8ee673be7aea09e15c3830092bcab62dbfbe,https://github.com/Python-Markdown/markdown,Python-Markdown_markdown,Python-Markdown/markdown,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Python-Markdown_markdown_hullabaloo_README.txt +f6f4aab68710f6e838dcbdcfe48aa2d3ff7d007c,https://github.com/klen/pylama,klen_pylama,klen/pylama,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/klen_pylama_hullabaloo_README.md +b4f739d98208246cd60c5ddbc63b3511d3b909af,https://github.com/liberfa/erfa,liberfa_erfa,liberfa/erfa,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/liberfa_erfa_hullabaloo_README.rst +48c26c5e1522b68dfc47621a68ef5577c0737952,https://github.com/tpm2-software/tpm2-pkcs11.git,tpm2-software_tpm2-pkcs11.git,tpm2-software/tpm2-pkcs11.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tpm2-software_tpm2-pkcs11.git_hullabaloo_README.md +49da1c60c0f6124ad60695440d103c69c817510c,https://github.com/chorny/Switch.git,chorny_Switch.git,chorny/Switch.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/chorny_Switch.git_hullabaloo_README +52f80d42d6c1aee0bf4846986c942d865ed26bfd,https://github.com/tomszilagyi/tap-plugins.git,tomszilagyi_tap-plugins.git,tomszilagyi/tap-plugins.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tomszilagyi_tap-plugins.git_hullabaloo_README.md +3689b880c39c4f48899adf1a0ca8556a9d3c7a6f,https://github.com/bobek/gtkguitune,bobek_gtkguitune,bobek/gtkguitune,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bobek_gtkguitune_hullabaloo_README +dfe29b03010ab9846b1afc4926ce93f9aa46011d,https://github.com/mati75/spacefm.git,mati75_spacefm.git,mati75/spacefm.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mati75_spacefm.git_hullabaloo_README +1e8c24b97ccc73851d642d84c525fbba02faa2c5,https://github.com/0compute/yanc,0compute_yanc,0compute/yanc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/0compute_yanc_hullabaloo_README.rst +93d3f8e9e810bf32f8cc58a61bd8891c53915ac4,https://github.com/rfinnie/robotfindskitten-pkg-debian,rfinnie_robotfindskitten-pkg-debian,rfinnie/robotfindskitten-pkg-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rfinnie_robotfindskitten-pkg-debian_hullabaloo_README.Debian +100c4800acba1896ebd64e179ad5616e43d59eb5,https://github.com/nucleic/kiwi,nucleic_kiwi,nucleic/kiwi,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nucleic_kiwi_hullabaloo_README.rst +5ad18328e8f38abcc5a0fc4a549e7a3c40697d4e,https://github.com/jaraco/keyrings.alt,jaraco_keyrings.alt,jaraco/keyrings.alt,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jaraco_keyrings.alt_hullabaloo_README.rst +0fc017e88bccfc2c4bd39084f1e140e16943ecf9,https://github.com/webrtchacks/adapter,webrtchacks_adapter,webrtchacks/adapter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/webrtchacks_adapter_hullabaloo_README.md +4d669f11b8c77ae29274f3cb969a14c1e3b4958d,https://github.com/libyal/libfsapfs,libyal_libfsapfs,libyal/libfsapfs,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libfsapfs_hullabaloo_README +48438cc5b35c665a398afe6cb748d0c2284acf40,https://github.com/chrender/libfizmo,chrender_libfizmo,chrender/libfizmo,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/chrender_libfizmo_hullabaloo_README.txt +ab06fbe6bf60be18a740547db957b5c44ae6b786,https://github.com/jazzband/django-debug-toolbar.git,jazzband_django-debug-toolbar.git,jazzband/django-debug-toolbar.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jazzband_django-debug-toolbar.git_hullabaloo_README.rst +ed07ab7b7a838c26372bdebe0edbe6ae5560127e,https://github.com/mate-desktop/mate-icon-theme-faenza.git,mate-desktop_mate-icon-theme-faenza.git,mate-desktop/mate-icon-theme-faenza.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-icon-theme-faenza.git_hullabaloo_README +774a6e47583e0d5a83366bc246e0529679528a23,https://github.com/unobe/perl-wfa.git,unobe_perl-wfa.git,unobe/perl-wfa.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/unobe_perl-wfa.git_hullabaloo_README +a6094d54408aef92c2f3cae85a2b325d42c57792,https://github.com/darold/pgFormatter.git,darold_pgFormatter.git,darold/pgFormatter.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/darold_pgFormatter.git_hullabaloo_README +002c0fcd681fb138e9acfa8c6b0f70960a6a6469,https://github.com/rasterio/rasterio.git,rasterio_rasterio.git,rasterio/rasterio.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rasterio_rasterio.git_hullabaloo_README.md +a2d50e0269ecdb880c39d6ad4438697330f415ae,https://github.com/pinterface/cl-ftp,pinterface_cl-ftp,pinterface/cl-ftp,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pinterface_cl-ftp_hullabaloo_README.org +a8d28a6ce7e0c56dacba5d527d9134573a008902,https://github.com/mate-desktop/eom.git,mate-desktop_eom.git,mate-desktop/eom.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_eom.git_hullabaloo_README +8a015991682b75caa4421eb404f0eecf16cd8bf9,https://github.com/r-dbi/RSQLite.git,r-dbi_RSQLite.git,r-dbi/RSQLite.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/r-dbi_RSQLite.git_hullabaloo_README +1758f216def8faa9bab994992d808866c4d0373c,https://github.com/libyal/libvslvm,libyal_libvslvm,libyal/libvslvm,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libvslvm_hullabaloo_README +44be7c4582c077924d88a7a551cc31700f1014f3,https://github.com/zyga/padme,zyga_padme,zyga/padme,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zyga_padme_hullabaloo_README.rst +e59145232c55785c2d5687d615016e6250140e79,https://github.com/mate-desktop/mate-backgrounds.git,mate-desktop_mate-backgrounds.git,mate-desktop/mate-backgrounds.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-backgrounds.git_hullabaloo_README +a95c1a461def8f20df50c5e60ae74a3aaefb9f4b,https://github.com/igaw/jitterdebugger.git,igaw_jitterdebugger.git,igaw/jitterdebugger.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/igaw_jitterdebugger.git_hullabaloo_README +c56a984f7c45b1594cc2b6507678c4cab942f852,https://gitlab.gnome.org/GNOME/caribou.git,GNOME_caribou.git,GNOME/caribou.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_caribou.git_hullabaloo_README +5eeb4026025c9ed9d8bd76002908856ae50c8579,https://github.com/ganglia/ganglia-web,ganglia_ganglia-web,ganglia/ganglia-web,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ganglia_ganglia-web_hullabaloo_README +2f3a7af653126f7bb6ce4ae7e8929b27f250eebe,https://github.com/bestpractical/gnupg-interface.git,bestpractical_gnupg-interface.git,bestpractical/gnupg-interface.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bestpractical_gnupg-interface.git_hullabaloo_README +7fad3bf90af49ce15fee628a48eb3fd53ec7c772,https://github.com/nandoflorestan/nine,nandoflorestan_nine,nandoflorestan/nine,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nandoflorestan_nine_hullabaloo_README.rst +a85d7d871f5e6dc38f67712261f264de90c29d4d,https://github.com/roehling/postsrsd.git,roehling_postsrsd.git,roehling/postsrsd.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/roehling_postsrsd.git_hullabaloo_README.rst +f72f99d83dd85d43e3a241137ca4d1ac78d9e5b3,https://github.com/dropbox/dropbox-sdk-python,dropbox_dropbox-sdk-python,dropbox/dropbox-sdk-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dropbox_dropbox-sdk-python_hullabaloo_README.rst +557859d56cc8c1db5dde5fa53a151b7ea480e382,https://github.com/pycontribs/jira,pycontribs_jira,pycontribs/jira,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pycontribs_jira_hullabaloo_README +c1ef266036503114d3e999665b534089e667bfd7,https://github.com/pratzlaff/Astro-FITS-CFITSIO,pratzlaff_Astro-FITS-CFITSIO,pratzlaff/Astro-FITS-CFITSIO,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pratzlaff_Astro-FITS-CFITSIO_hullabaloo_README +651d4ff1dd21ae1786358efc4f76d5c7164f1b7d,https://github.com/state-machines/state_machines,state-machines_state_machines,state-machines/state/machines,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/state-machines_state_machines_hullabaloo_README.md +73ccace4e4b487e5c31ebce304b31257aaa2ad8a,https://github.com/scrapinghub/dateparser,scrapinghub_dateparser,scrapinghub/dateparser,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/scrapinghub_dateparser_hullabaloo_README.md +3b295845d830357fbcf99b0acd55708e44a0e3ac,https://github.com/aio-libs/async_timeout.git,aio-libs_async_timeout.git,aio-libs/async/timeout.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aio-libs_async_timeout.git_hullabaloo_README.md +d648a23e5ca9c593750fb78696b5f7e9d8b83aa7,https://github.com/johnpaulett/python-hl7.git,johnpaulett_python-hl7.git,johnpaulett/python-hl7.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/johnpaulett_python-hl7.git_hullabaloo_README.rst +67081105dddb4caaa15494a1208fec2c14ca93df,https://github.com/scrapy/cssselect,scrapy_cssselect,scrapy/cssselect,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/scrapy_cssselect_hullabaloo_README +8d3f41445e6717ca950887c98cb8060ae70335ce,https://github.com/urwid/urwid.git,urwid_urwid.git,urwid/urwid.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/urwid_urwid.git_hullabaloo_README +b4495530a8a6ba0c15177a2bb59f9ffc830c6dbb,https://github.com/lkundrak/perl-Authen-Captcha.git,lkundrak_perl-Authen-Captcha.git,lkundrak/perl-Authen-Captcha.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/lkundrak_perl-Authen-Captcha.git_hullabaloo_README +195ae85fc6b88965b6492b202cdda98892c6a083,https://github.com/mankyd/htmlmin,mankyd_htmlmin,mankyd/htmlmin,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mankyd_htmlmin_hullabaloo_README.md +ac463e8597becbb9d1dfab1151955d4a77898829,https://github.com/gnosek/fcgiwrap,gnosek_fcgiwrap,gnosek/fcgiwrap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gnosek_fcgiwrap_hullabaloo_README.rst +e299168b3e07f6719f1c53d5f7135333391fe8d4,https://github.com/autokey/autokey.git,autokey_autokey.git,autokey/autokey.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/autokey_autokey.git_hullabaloo_README +b59e61ef59f782c63c170c14efa4ffbf7448cc74,https://github.com/tartley/colorama,tartley_colorama,tartley/colorama,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tartley_colorama_hullabaloo_README.txt +9c6710ace0bc062b365122f7d996c587d1dec970,https://github.com/ganglia/jmxetric,ganglia_jmxetric,ganglia/jmxetric,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ganglia_jmxetric_hullabaloo_README +3aab78f9f94393f4ac995e4f6ec939462b873bb4,https://github.com/cmus/cmus,cmus_cmus,cmus/cmus,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cmus_cmus_hullabaloo_README +80d7283c4e5dd05e236b9b1fba5b534f4181ae31,https://github.com/tkem/mopidy-podcast-itunes,tkem_mopidy-podcast-itunes,tkem/mopidy-podcast-itunes,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tkem_mopidy-podcast-itunes_hullabaloo_README.rst +29ac35ee3b75468799b0e16f88fa9b1ea2fca14f,https://gitlab.com/ppentchev/id3,ppentchev_id3,ppentchev/id3,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ppentchev_id3_hullabaloo_README +1a5d6a5dc9c8e64485547001a076e9aa8a3cdd99,https://gitlab.tails.boum.org/tails/onioncircuits,tails_onioncircuits,tails/onioncircuits,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tails_onioncircuits_hullabaloo_README +3f7dc967d5d62832be0c67ce31975fc9289e45ed,https://github.com/Changaco/setuptools_scm_git_archive,Changaco_setuptools_scm_git_archive,Changaco/setuptools/scm/git/archive,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Changaco_setuptools_scm_git_archive_hullabaloo_README.rst +5978bafc3c68299e7d544cc78785ede184ed2caa,https://github.com/tkem/mopidy-internetarchive,tkem_mopidy-internetarchive,tkem/mopidy-internetarchive,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tkem_mopidy-internetarchive_hullabaloo_README.rst +ada77ed9e7d97b7a0dbe4a8ebb42e11bfa505119,https://github.com/grantjenks/python-sortedcollections,grantjenks_python-sortedcollections,grantjenks/python-sortedcollections,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/grantjenks_python-sortedcollections_hullabaloo_README.rst +08526eca702089150c94ebf2769c32c95c8323a8,https://github.com/sudipm-mukherjee/trace-cmd.git,sudipm-mukherjee_trace-cmd.git,sudipm-mukherjee/trace-cmd.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sudipm-mukherjee_trace-cmd.git_hullabaloo_README +ea92af8ec378f96a07013dda0e5780a8c1c11d02,https://github.com/jlapeyre/PDL-IO-Matlab.git,jlapeyre_PDL-IO-Matlab.git,jlapeyre/PDL-IO-Matlab.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jlapeyre_PDL-IO-Matlab.git_hullabaloo_README +f6b581459c089fac87a4b072ca734c2e73ccf768,https://github.com/resurrecting-open-source-projects/dcfldd,resurrecting-open-source-projects_dcfldd,resurrecting-open-source-projects/dcfldd,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/resurrecting-open-source-projects_dcfldd_hullabaloo_README +4358bb746ff510a510e86814c0e9fb06553c88e5,https://github.com/pklausler/aoeui.git,pklausler_aoeui.git,pklausler/aoeui.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pklausler_aoeui.git_hullabaloo_README +88749462a782e8d5288ede33543b0554cc3944ec,https://github.com/jazzband/django-pipeline,jazzband_django-pipeline,jazzband/django-pipeline,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jazzband_django-pipeline_hullabaloo_README +28a314121af5c217231c8bf8001a7bb352a5b0bf,https://github.com/LEW21/pydbus,LEW21_pydbus,LEW21/pydbus,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/LEW21_pydbus_hullabaloo_README.md +27c549024f1149f5863b5ad3ea5a8335ed50b027,https://github.com/perl-openssl/perl-crypt-openssl-pkcs10.git,perl-openssl_perl-crypt-openssl-pkcs10.git,perl-openssl/perl-crypt-openssl-pkcs10.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/perl-openssl_perl-crypt-openssl-pkcs10.git_hullabaloo_README +c0027359ec2fc0f1b1b496535777854ade18770f,https://anongit.kde.org/kubrick.git,kubrick.git,kubrick.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kubrick.git_hullabaloo_README +9079e2586e75a901a415179f760247ad509f664f,https://github.com/pytroll/satpy,pytroll_satpy,pytroll/satpy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytroll_satpy_hullabaloo_README +0820e056871a0f6bcefcb3a86f7fb55f760c4b22,https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info,GNOME_mobile-broadband-provider-info,GNOME/mobile-broadband-provider-info,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_mobile-broadband-provider-info_hullabaloo_README +56b8e58ab6fa3466df85708e7251648cecdc4881,https://github.com/getsentry/responses,getsentry_responses,getsentry/responses,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/getsentry_responses_hullabaloo_README.rst +121a45e2b6dbd886d336464746a0d9e7fb9ff43a,https://github.com/callaa/luola.git,callaa_luola.git,callaa/luola.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/callaa_luola.git_hullabaloo_README +be9129e4826056908d6e76b4554c812ee4c42e7b,https://github.com/neilb/Text-Diff,neilb_Text-Diff,neilb/Text-Diff,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/neilb_Text-Diff_hullabaloo_README +46fd85829b8520eed395cf5cd85c635fb9c83099,https://github.com/pr-starfighter/starfighter,pr-starfighter_starfighter,pr-starfighter/starfighter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pr-starfighter_starfighter_hullabaloo_README +07d3441ec3bd0147691f5c813c06382fe36acbc8,https://github.com/stefanv/nvpy,stefanv_nvpy,stefanv/nvpy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/stefanv_nvpy_hullabaloo_README.md +971337063c04d61d9de544f24208980851dcbf03,https://github.com/mozilla/django-csp.git,mozilla_django-csp.git,mozilla/django-csp.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mozilla_django-csp.git_hullabaloo_README.rst +5ac1f89eda404fcd88484c984f624898b02e82c4,https://github.com/NeuralEnsemble/lazyarray,NeuralEnsemble_lazyarray,NeuralEnsemble/lazyarray,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/NeuralEnsemble_lazyarray_hullabaloo_README +fd213c7eb55be42170f6ed4431b96b3396701cdb,https://salsa.debian.org/thomasdstewart-guest/w1retap,thomasdstewart-guest_w1retap,thomasdstewart-guest/w1retap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/thomasdstewart-guest_w1retap_hullabaloo_README +db82302ed06af1c100aa7b626845b4f6cbf955b4,https://github.com/jbeder/yaml-cpp,jbeder_yaml-cpp,jbeder/yaml-cpp,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jbeder_yaml-cpp_hullabaloo_README +7a292e4b972330aa59334a9749b4a98497c0b2ce,https://github.com/sagemath/FlintQS,sagemath_FlintQS,sagemath/FlintQS,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sagemath_FlintQS_hullabaloo_README +b08dcf857232bf6d1d9bc90c0917408bdf00da92,https://github.com/magit/git-modes.git,magit_git-modes.git,magit/git-modes.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/magit_git-modes.git_hullabaloo_README.md +bcc6c6b4119c6af96319394936470f94a2805918,https://github.com/torchbox/django-libsass.git,torchbox_django-libsass.git,torchbox/django-libsass.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/torchbox_django-libsass.git_hullabaloo_README.rst +e903b9c057a41ce5039c9d91ccbce549e5b71126,https://github.com/cookiecutter/whichcraft,cookiecutter_whichcraft,cookiecutter/whichcraft,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/cookiecutter_whichcraft_hullabaloo_README.rst +190bdcaf1b3ee1eb7704bd2f40754e9523d7dddb,https://github.com/leahneukirchen/bacon,leahneukirchen_bacon,leahneukirchen/bacon,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/leahneukirchen_bacon_hullabaloo_README +0c69a1b1d6812c0d245cc9ca166f78cbafde6a9a,https://github.com/powa-team/pg_qualstats,powa-team_pg_qualstats,powa-team/pg/qualstats,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/powa-team_pg_qualstats_hullabaloo_README.md +8a12f89aaacfc0839d6ab1e62b4b5046930517ba,https://github.com/encode/django-rest-framework,encode_django-rest-framework,encode/django-rest-framework,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/encode_django-rest-framework_hullabaloo_README.txt +5eb6ce66036205e8d4126dbe7271e1da7bca0d4f,https://github.com/pali/libopenaptx,pali_libopenaptx,pali/libopenaptx,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pali_libopenaptx_hullabaloo_README +7133f80c5a27b3228e4c5c31c9cde740e1213bb2,https://github.com/libyal/libsmdev,libyal_libsmdev,libyal/libsmdev,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libsmdev_hullabaloo_README +e9717f2b49713d5da5d4ab306b4bd3e35c321193,https://github.com/mopidy/mopidy-beets,mopidy_mopidy-beets,mopidy/mopidy-beets,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mopidy_mopidy-beets_hullabaloo_README.rst +be5d3f63747ea119d1f0b0288dc7c700e4c8490e,https://github.com/Wolfgang-Spraul/fpgatools,Wolfgang-Spraul_fpgatools,Wolfgang-Spraul/fpgatools,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Wolfgang-Spraul_fpgatools_hullabaloo_README +1d26968e0f546854fb5da28464b087a5daa3c687,https://github.com/numpy/numpydoc,numpy_numpydoc,numpy/numpydoc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/numpy_numpydoc_hullabaloo_README.txt +a8de373487feea89f06a1d89aa1dedf7798ab947,https://github.com/FontManager/master,FontManager_master,FontManager/master,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/FontManager_master_hullabaloo_README +a21fc9c5ee4abdad79b8c70c07fa968318892ac5,https://github.com/alphapapa/magit-todos.git,alphapapa_magit-todos.git,alphapapa/magit-todos.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/alphapapa_magit-todos.git_hullabaloo_README.org +03a8e52731d7a21ec0c91887a990dc38b8d0d49a,https://gitlab.gnome.org/GNOME/NetworkManager-pptp,GNOME_NetworkManager-pptp,GNOME/NetworkManager-pptp,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_NetworkManager-pptp_hullabaloo_README +6981433bdf8a406992ba0c5e844a47d06ccc08fb,https://github.com/nitmir/django-cas-server.git,nitmir_django-cas-server.git,nitmir/django-cas-server.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nitmir_django-cas-server.git_hullabaloo_README.rst +f37c1a3fb0221be8bb1546b43d2baf0126d83fa5,https://github.com/nicolargo/glances,nicolargo_glances,nicolargo/glances,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nicolargo_glances_hullabaloo_README +2062f62a776544a09e3170fad1a9c8e2797925b6,https://github.com/phillipberndt/pqiv,phillipberndt_pqiv,phillipberndt/pqiv,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/phillipberndt_pqiv_hullabaloo_README.markdown +551a38178f7e66f215980fb01200472c8e6d3cd4,https://gitlab.gnome.org/GNOME/pygobject,GNOME_pygobject,GNOME/pygobject,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_pygobject_hullabaloo_README +f9227d883b5b823e84b7a1dfe4c674bb60384a92,https://github.com/ros-infrastructure/catkin_pkg.git,ros-infrastructure_catkin_pkg.git,ros-infrastructure/catkin/pkg.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ros-infrastructure_catkin_pkg.git_hullabaloo_README.md +fd2d9ba2e56c1497d7e6f9b39580bf6af0f5b430,https://github.com/merces/pev,merces_pev,merces/pev,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/merces_pev_hullabaloo_README.md +17c4d85b89390af8ded360d6109def48c013d7de,https://github.com/dimitri/preprepare,dimitri_preprepare,dimitri/preprepare,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dimitri_preprepare_hullabaloo_README +07d995984dca9068e1fb97ce0f77abb031f18665,https://github.com/adamchainz/django-jsonfield,adamchainz_django-jsonfield,adamchainz/django-jsonfield,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/adamchainz_django-jsonfield_hullabaloo_README.rst +b473453bf2a60389bf492944078f52b5bc7e58bb,https://github.com/miyagawa/Plack-Middleware-File-Sass.git,miyagawa_Plack-Middleware-File-Sass.git,miyagawa/Plack-Middleware-File-Sass.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/miyagawa_Plack-Middleware-File-Sass.git_hullabaloo_README +1d0958032b8344261437ada09becb0eb544b910a,https://github.com/pjf/ipc-system-simple.git,pjf_ipc-system-simple.git,pjf/ipc-system-simple.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pjf_ipc-system-simple.git_hullabaloo_README +46672dc206b5de47787c134ace6fb98cda544636,https://github.com/idlesign/django-sitetree,idlesign_django-sitetree,idlesign/django-sitetree,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/idlesign_django-sitetree_hullabaloo_README.md +a2e67df2fba21d986652259cbd483b8036079dc8,https://github.com/linux-rdma/perftest.git,linux-rdma_perftest.git,linux-rdma/perftest.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/linux-rdma_perftest.git_hullabaloo_README +b8b86555280694d85d64b68d0f9131868598161a,https://gitlab.freedesktop.org/dbus/dbus-glib.git,dbus_dbus-glib.git,dbus/dbus-glib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dbus_dbus-glib.git_hullabaloo_README +2545aa4f82169c9affd646e4d09a9e19af51c7c7,https://github.com/miracle2k/django-assets.git,miracle2k_django-assets.git,miracle2k/django-assets.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/miracle2k_django-assets.git_hullabaloo_README.rst +aa7bd0afdd940a5776e05cb800227a539c82dc39,https://github.com/enthought/envisage,enthought_envisage,enthought/envisage,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/enthought_envisage_hullabaloo_README.txt +69f9a7c1bb4a64796c484f9b6b9f4bf079c58d4f,https://github.com/HewlettPackard/python-ilorest-library.git,HewlettPackard_python-ilorest-library.git,HewlettPackard/python-ilorest-library.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/HewlettPackard_python-ilorest-library.git_hullabaloo_README.md +7bdb429cf73852d2e95665109fd2e0af241fb450,https://github.com/geoalchemy/geoalchemy2,geoalchemy_geoalchemy2,geoalchemy/geoalchemy2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/geoalchemy_geoalchemy2_hullabaloo_README.rst +4ee2ee54360fc4b25f20ee75f65791e206680e31,https://github.com/SethMMorton/natsort.git,SethMMorton_natsort.git,SethMMorton/natsort.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/SethMMorton_natsort.git_hullabaloo_README.md +20fbba1230cabbc0f4644f917c6c2be52b8a63e8,https://github.com/elastic/elasticsearch-py.git,elastic_elasticsearch-py.git,elastic/elasticsearch-py.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/elastic_elasticsearch-py.git_hullabaloo_README +5445c0a95352506da2677f3de09c07286d5140ea,https://github.com/pylons/plaster,pylons_plaster,pylons/plaster,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pylons_plaster_hullabaloo_README.rst +058ff8eec8aa8a7e5e8e7b404f2f47d87456bfaa,https://github.com/libpinyin/ibus-libpinyin,libpinyin_ibus-libpinyin,libpinyin/ibus-libpinyin,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libpinyin_ibus-libpinyin_hullabaloo_README +9e8d9d6592d92b80c65a34e6044c6c3468405cc7,https://github.com/amonakov/primus,amonakov_primus,amonakov/primus,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/amonakov_primus_hullabaloo_README.md +c2a62f434a509e5a495a4316993d18711a8df254,https://github.com/giampaolo/pyftpdlib,giampaolo_pyftpdlib,giampaolo/pyftpdlib,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/giampaolo_pyftpdlib_hullabaloo_README +cd165c4a09cc9b96a5b4f0aecebdf08efaa4c372,https://github.com/ClusterLabs/crmsh,ClusterLabs_crmsh,ClusterLabs/crmsh,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ClusterLabs_crmsh_hullabaloo_README.regression +d15fbd118ad7875c845249a51d53ac15b3e3dea7,https://github.com/dkogan/numpysane,dkogan_numpysane,dkogan/numpysane,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dkogan_numpysane_hullabaloo_README.header.org +aeab7ecc3aa1aa60927858b04621ca8f933aae4a,https://github.com/prompt-toolkit/python-prompt-toolkit,prompt-toolkit_python-prompt-toolkit,prompt-toolkit/python-prompt-toolkit,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/prompt-toolkit_python-prompt-toolkit_hullabaloo_README.rst +15c3e40fa8ef58bf22fef458253579f8bde5b5d3,https://github.com/honza/anosql,honza_anosql,honza/anosql,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/honza_anosql_hullabaloo_README.md +80d7705cbff925a2d4758ff2caaf10368cdbd2c1,https://github.com/phunt/zktop.git,phunt_zktop.git,phunt/zktop.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/phunt_zktop.git_hullabaloo_README.textile +0ee48235dfd2fbdcea7943511322b9f67dd43ac9,https://github.com/bayespy/bayespy,bayespy_bayespy,bayespy/bayespy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bayespy_bayespy_hullabaloo_README.md +260139e288f3c441a3f06481cd475ceec05ac18d,https://github.com/gsliepen/rsh-redone,gsliepen_rsh-redone,gsliepen/rsh-redone,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gsliepen_rsh-redone_hullabaloo_README.md +c3b4e76655aa6b675ba01f5af12ff375a8cd2a8c,https://github.com/mate-desktop/mate-indicator-applet.git,mate-desktop_mate-indicator-applet.git,mate-desktop/mate-indicator-applet.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-indicator-applet.git_hullabaloo_README +1dba1ca313b6a06eb0b5ca291ec626410265810e,https://github.com/PhirePhly/aprx,PhirePhly_aprx,PhirePhly/aprx,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/PhirePhly_aprx_hullabaloo_README +7328e9ca65676104f93fec4bb605c2b186563ad2,https://github.com/coin-or/Osi,coin-or_Osi,coin-or/Osi,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/coin-or_Osi_hullabaloo_README +eaf2f0df04140e3a068c18d30b8b19906570f0d4,https://github.com/sharplispers/ironclad,sharplispers_ironclad,sharplispers/ironclad,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sharplispers_ironclad_hullabaloo_README +f90cfef6c4f93851771eb2abde372950e99c9c24,https://github.com/theacodes/cmarkgfm,theacodes_cmarkgfm,theacodes/cmarkgfm,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/theacodes_cmarkgfm_hullabaloo_README.rst +d0d291656bda1ef2e14f9973a299e754812ae0d6,https://github.com/ronf/asyncssh,ronf_asyncssh,ronf/asyncssh,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ronf_asyncssh_hullabaloo_README +56a2a52037280a7c35ac0cdaab9df2743e324a12,https://github.com/zopefoundation/zc.lockfile,zopefoundation_zc.lockfile,zopefoundation/zc.lockfile,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zopefoundation_zc.lockfile_hullabaloo_README.txt +36b61750cf8b813f6138517da149402e173d6775,https://github.com/vulndb/python-sdk,vulndb_python-sdk,vulndb/python-sdk,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/vulndb_python-sdk_hullabaloo_README.md +72dc7e53846cfeacb13a64da5fd610e72e0be69d,https://gitlab.gnome.org/GNOME/libgnome-games-support.git,GNOME_libgnome-games-support.git,GNOME/libgnome-games-support.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_libgnome-games-support.git_hullabaloo_README +00b9147ad279a804c5e97fe4bf924e4365abf12e,https://github.com/sunpy/ndcube.git,sunpy_ndcube.git,sunpy/ndcube.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sunpy_ndcube.git_hullabaloo_README.rst +173be8b9d3fb6afbfdff5bb756da624f53e56dc8,https://github.com/astrofrog/pytest-arraydiff,astrofrog_pytest-arraydiff,astrofrog/pytest-arraydiff,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/astrofrog_pytest-arraydiff_hullabaloo_README.md +994ab91dfae9971dddbb1fbc90f753630da175a2,https://github.com/celery/billiard,celery_billiard,celery/billiard,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/celery_billiard_hullabaloo_README +6130c6b69a0a2d987ddcceb4ecddd3cf75b769fd,https://anongit.kde.org/ksudoku.git,ksudoku.git,ksudoku.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ksudoku.git_hullabaloo_README +40055cb2ff7800422f09935177d543723a3c7a70,https://github.com/ilanschnell/bitarray.git,ilanschnell_bitarray.git,ilanschnell/bitarray.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ilanschnell_bitarray.git_hullabaloo_README +ce8adf4b2e1f197598ab8839f69913df3f30c87e,https://github.com/earwig/mwparserfromhell.git,earwig_mwparserfromhell.git,earwig/mwparserfromhell.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/earwig_mwparserfromhell.git_hullabaloo_README.rst +add1aa245090f83f0a132a706f0bb31c64b146b4,https://github.com/ianare/exif-py,ianare_exif-py,ianare/exif-py,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ianare_exif-py_hullabaloo_README.md +44a51f62c61ea489c071ca7c6d1613a403f7919c,https://github.com/halcy/Mastodon.py.git,halcy_Mastodon.py.git,halcy/Mastodon.py.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/halcy_Mastodon.py.git_hullabaloo_README.md +5ea8b611a056292f4df7064853b02f240d1f0e5c,https://github.com/dwolfhub/zxcvbn-python.git,dwolfhub_zxcvbn-python.git,dwolfhub/zxcvbn-python.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dwolfhub_zxcvbn-python.git_hullabaloo_README.md +19bf8b836b68e48c776480807d2b679ee907e478,https://github.com/rehsack/Sys-Filesystem,rehsack_Sys-Filesystem,rehsack/Sys-Filesystem,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rehsack_Sys-Filesystem_hullabaloo_README +c1c35c53182640b28087fedfb716110e4f6f1ebd,https://github.com/Azure/azure-python-devtools,Azure_azure-python-devtools,Azure/azure-python-devtools,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Azure_azure-python-devtools_hullabaloo_README.md +620e7df4c320ca86a1293bbb6b4277b62b0f87c5,https://github.com/ubuntu-mate/mate-tweak.git,ubuntu-mate_mate-tweak.git,ubuntu-mate/mate-tweak.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ubuntu-mate_mate-tweak.git_hullabaloo_README.debian +4269856fc912b05126b89ce8deafba0f91bc336a,https://github.com/tkem/mopidy-podcast.git,tkem_mopidy-podcast.git,tkem/mopidy-podcast.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tkem_mopidy-podcast.git_hullabaloo_README.rst +8e2fd1b00315399b17eefab4294ec15cba19678c,https://github.com/kingosticks/mopidy-tunein,kingosticks_mopidy-tunein,kingosticks/mopidy-tunein,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kingosticks_mopidy-tunein_hullabaloo_README.rst +29aec4a898fbea91611382dfca152b4506511656,https://github.com/aptly-dev/aptly.git,aptly-dev_aptly.git,aptly-dev/aptly.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/aptly-dev_aptly.git_hullabaloo_README.rst +38f65c340a0599002ac80eda4284f27544df286a,https://github.com/deschler/django-modeltranslation.git,deschler_django-modeltranslation.git,deschler/django-modeltranslation.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/deschler_django-modeltranslation.git_hullabaloo_README.rst +f2b58fc4f61f0aee15ef320681a0945c3da1d431,https://github.com/latchset/libverto,latchset_libverto,latchset/libverto,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/latchset_libverto_hullabaloo_README +8a5ab920679f64da18b1d2750e3b088b7472e6a6,https://github.com/MITRECND/libnids.git,MITRECND_libnids.git,MITRECND/libnids.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/MITRECND_libnids.git_hullabaloo_README +33003cd0719745bb1ed734c6a21700de99ad82bc,https://github.com/sampsyo/audioread.git,sampsyo_audioread.git,sampsyo/audioread.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sampsyo_audioread.git_hullabaloo_README.md +0ec739ffe2a22c48785e5b9b35fb91c3ed343cca,https://github.com/pymodbus-dev/pymodbus.git,pymodbus-dev_pymodbus.git,pymodbus-dev/pymodbus.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pymodbus-dev_pymodbus.git_hullabaloo_README +60d8c9e5a38161624cb7f620b012e85c3b7fb378,https://github.com/tiwe-de/libpam-pwdfile,tiwe-de_libpam-pwdfile,tiwe-de/libpam-pwdfile,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/tiwe-de_libpam-pwdfile_hullabaloo_README +89a553518709b52cd763c963e953e864c29176e9,https://github.com/jmespath/jmespath.py,jmespath_jmespath.py,jmespath/jmespath.py,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jmespath_jmespath.py_hullabaloo_README.rst +04ab4fa2e8b2e9f8b04e9927392087d3846c4033,https://github.com/zopefoundation/zope.i18nmessageid,zopefoundation_zope.i18nmessageid,zopefoundation/zope.i18nmessageid,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zopefoundation_zope.i18nmessageid_hullabaloo_README.txt +00299245c8a0107c9748d4b056b673d0ca076612,https://github.com/DatabaseCleaner/database_cleaner,DatabaseCleaner_database_cleaner,DatabaseCleaner/database/cleaner,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/DatabaseCleaner_database_cleaner_hullabaloo_README +605e43091a044147f3717616d8c52f308b036aed,https://github.com/click-contrib/click-plugins.git,click-contrib_click-plugins.git,click-contrib/click-plugins.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/click-contrib_click-plugins.git_hullabaloo_README.rst +57f02125dc30026212fe885e926d823cd4e14b81,https://github.com/babelouest/orcania,babelouest_orcania,babelouest/orcania,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/babelouest_orcania_hullabaloo_README.md +7db4cdd9a7d837b592d6c3d440459520612472e9,https://github.com/elima/FileTea,elima_FileTea,elima/FileTea,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/elima_FileTea_hullabaloo_README +e6c5e467c4b593114a4cefa17ed10afd6def1d6e,https://github.com/systemd/systemd-bootchart,systemd_systemd-bootchart,systemd/systemd-bootchart,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/systemd_systemd-bootchart_hullabaloo_README +d00aab12b6ace2c3dda3efbc2aaa2646d78a9099,https://github.com/mate-desktop/mate-desktop.git,mate-desktop_mate-desktop.git,mate-desktop/mate-desktop.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-desktop.git_hullabaloo_README +fab3bb77956c0a2bed9e703d6eb7fc303d3f070b,https://github.com/libyal/libvshadow.git,libyal_libvshadow.git,libyal/libvshadow.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libvshadow.git_hullabaloo_README +3605566c2a3b251e592f2a78aee0048724f76174,https://github.com/angdraug/graffiti,angdraug_graffiti,angdraug/graffiti,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/angdraug_graffiti_hullabaloo_README.rdoc +7c232af20fff48173dd1f2e9a93cd28e9984fd7b,https://github.com/rtomayko/rdiscount,rtomayko_rdiscount,rtomayko/rdiscount,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rtomayko_rdiscount_hullabaloo_README +e4df26e87b785ed3774d1ce97c48e05d4aaba919,https://github.com/pdfpc/pdfpc,pdfpc_pdfpc,pdfpc/pdfpc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pdfpc_pdfpc_hullabaloo_README.txt +9614efdc540ffbe4f5e81094821af8e054514e04,https://github.com/neilb/File-Modified,neilb_File-Modified,neilb/File-Modified,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/neilb_File-Modified_hullabaloo_README +3d29d1d283467340c86ed2c91f847b7a8afd04fe,https://github.com/yayahjb/cqrlib.git,yayahjb_cqrlib.git,yayahjb/cqrlib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/yayahjb_cqrlib.git_hullabaloo_README_CQRlib.txt +85b831e1b550191d0c03c3658536609b6832e1de,https://github.com/andreafrancia/trash-cli.git,andreafrancia_trash-cli.git,andreafrancia/trash-cli.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/andreafrancia_trash-cli.git_hullabaloo_README +a310aa4d2bc390e0b3d881ca9e09ef9562513f40,https://github.com/bingos/poe-component-client-ident.git,bingos_poe-component-client-ident.git,bingos/poe-component-client-ident.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/bingos_poe-component-client-ident.git_hullabaloo_README +cf88b086c04feaa01424477c5f0d4829f3d2576f,https://github.com/powerline/powerline,powerline_powerline,powerline/powerline,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/powerline_powerline_hullabaloo_README.rst +40b7dc172740c49933139d950b72aab5549df92e,https://gitlab.gnome.org/GNOME/gnome-color-manager.git,GNOME_gnome-color-manager.git,GNOME/gnome-color-manager.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GNOME_gnome-color-manager.git_hullabaloo_README +e608ab56a022d755753e690ff0de13e360a6f45c,https://github.com/kodi-pvr/pvr.vdr.vnsi.git,kodi-pvr_pvr.vdr.vnsi.git,kodi-pvr/pvr.vdr.vnsi.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kodi-pvr_pvr.vdr.vnsi.git_hullabaloo_README +25cd901a8e1de2da3e5626c61a807e58a6fafba5,https://github.com/python-postgres/fe,python-postgres_fe,python-postgres/fe,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/python-postgres_fe_hullabaloo_README +987f20df501ab10178b64f075fcd08e9d03728f4,https://github.com/ros-infrastructure/rosinstall_generator,ros-infrastructure_rosinstall_generator,ros-infrastructure/rosinstall/generator,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ros-infrastructure_rosinstall_generator_hullabaloo_README.rst +cd587e86727a165b353b006c202fdf5e6fdff086,https://github.com/alisaifee/hiro,alisaifee_hiro,alisaifee/hiro,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/alisaifee_hiro_hullabaloo_README.md +4e4abaf4de7b57d07c6845ace1644380b38806c4,https://github.com/spacetelescope/fitscut,spacetelescope_fitscut,spacetelescope/fitscut,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/spacetelescope_fitscut_hullabaloo_README +453a069634dd6f1b26d1970197edb7d727269d6b,https://github.com/karenetheridge/Module-Manifest,karenetheridge_Module-Manifest,karenetheridge/Module-Manifest,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/karenetheridge_Module-Manifest_hullabaloo_README +cbf41538ffe6c79f5ace522157169b1d68d36027,https://github.com/perl5-utils/Params-Util,perl5-utils_Params-Util,perl5-utils/Params-Util,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/perl5-utils_Params-Util_hullabaloo_README.md +638fc97c9900b6120791c211e2be2b2bb58ca5ca,https://github.com/vasole/fisx,vasole_fisx,vasole/fisx,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/vasole_fisx_hullabaloo_README.md +a1a6833610500ec4108507573523ed67ec46479a,https://github.com/testing-cabal/mock,testing-cabal_mock,testing-cabal/mock,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/testing-cabal_mock_hullabaloo_README.txt +6be13d3db378c129290e71521f8e556f3f77f17c,https://github.com/Kozea/cairocffi.git,Kozea_cairocffi.git,Kozea/cairocffi.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/Kozea_cairocffi.git_hullabaloo_README.rst +7bede9c4bbe498ffcb68fe71fa300906005c3364,https://github.com/corosync/corosync,corosync_corosync,corosync/corosync,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/corosync_corosync_hullabaloo_README.devmap +b9f513f9327c412f148b023885895df953ce9262,https://github.com/pytest-dev/pytest-django,pytest-dev_pytest-django,pytest-dev/pytest-django,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pytest-dev_pytest-django_hullabaloo_README.markdown +aa59fe301dad543102cd4301dac34dce47ce3de0,https://github.com/niltonvolpato/python-progressbar,niltonvolpato_python-progressbar,niltonvolpato/python-progressbar,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/niltonvolpato_python-progressbar_hullabaloo_README +bdb1819e6794a072d113c8bbdf08ab2998d584f0,https://github.com/rss2email/rss2email.git,rss2email_rss2email.git,rss2email/rss2email.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rss2email_rss2email.git_hullabaloo_README +1c69f467452c8f34d099019d463980ad57811192,https://github.com/mate-desktop/mate-polkit.git,mate-desktop_mate-polkit.git,mate-desktop/mate-polkit.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mate-desktop_mate-polkit.git_hullabaloo_README +25f96d4451cc258bedef72a2c69628d54451c951,https://github.com/jackrosenthal/kajiki,jackrosenthal_kajiki,jackrosenthal/kajiki,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jackrosenthal_kajiki_hullabaloo_README.markdown +a804b5eb21d6623b91a13ccf3281276d65ba45d6,https://github.com/rbenv/rbenv,rbenv_rbenv,rbenv/rbenv,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rbenv_rbenv_hullabaloo_README.md +8b503ee4defc4e7f2a243a9309d682d5d294398f,https://github.com/neilb/Memoize-ExpireLRU,neilb_Memoize-ExpireLRU,neilb/Memoize-ExpireLRU,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/neilb_Memoize-ExpireLRU_hullabaloo_README +7d43440327e8b36af8f457d1f3ca3d9655378bc5,https://github.com/jaalto/project--perl-ddir.git,jaalto_project--perl-ddir.git,jaalto/project--perl-ddir.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jaalto_project--perl-ddir.git_hullabaloo_README +dd5092e39a78143928e52cadf185d7951ecf97e2,https://github.com/jeroen/curl,jeroen_curl,jeroen/curl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jeroen_curl_hullabaloo_README +14f5fa7ccfa3f7259180c13ac855dacc08f71acb,https://github.com/pymssql/pymssql.git,pymssql_pymssql.git,pymssql/pymssql.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pymssql_pymssql.git_hullabaloo_README +adbc48c892cfe17b3ae53a43e4f34f4c2c35e85f,https://github.com/jwilk/python-djvulibre,jwilk_python-djvulibre,jwilk/python-djvulibre,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/jwilk_python-djvulibre_hullabaloo_README +abb1d4d91dcd4314e68cf92e9346adea961cb524,https://github.com/gsnedders/pytest-expect,gsnedders_pytest-expect,gsnedders/pytest-expect,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gsnedders_pytest-expect_hullabaloo_README.rst +a8b970c7799a106440facd0ab9f0b19220a16e57,https://github.com/asn-d6/onionbalance.git,asn-d6_onionbalance.git,asn-d6/onionbalance.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/asn-d6_onionbalance.git_hullabaloo_README.md +065d94f956850256a681221845398663c8a3d9ac,https://github.com/berkshelf/solve,berkshelf_solve,berkshelf/solve,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/berkshelf_solve_hullabaloo_README.md +e285316aca8f732c6f122c8df0934b847b837ca1,https://github.com/GrahamDumpleton/mod_wsgi,GrahamDumpleton_mod_wsgi,GrahamDumpleton/mod/wsgi,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/GrahamDumpleton_mod_wsgi_hullabaloo_README +c7c6feb28b2981afee42b2de22d3fd50d9332d69,https://github.com/yaauie/typed-array,yaauie_typed-array,yaauie/typed-array,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/yaauie_typed-array_hullabaloo_README.rdoc +ec763f7e12dd1c98c53456385e7e9398168c2541,https://github.com/resurrecting-open-source-projects/cbm,resurrecting-open-source-projects_cbm,resurrecting-open-source-projects/cbm,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/resurrecting-open-source-projects_cbm_hullabaloo_README +74eb81b6e6e4ecbdec47710ea8365bde3bcadfaa,https://github.com/agordon/fastx_toolkit.git,agordon_fastx_toolkit.git,agordon/fastx/toolkit.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/agordon_fastx_toolkit.git_hullabaloo_README +9708c02c26b85fecbdaf45d73d4ba3ccbcdb27ff,https://github.com/epeli/underscore.string,epeli_underscore.string,epeli/underscore.string,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/epeli_underscore.string_hullabaloo_README +37489322d67df510d8de4345e9286816ea5e8465,https://github.com/arabeyes-org/ITL,arabeyes-org_ITL,arabeyes-org/ITL,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/arabeyes-org_ITL_hullabaloo_README +c46d010f686e522cedbea8ab53df99c33360ca32,https://github.com/moloney/dcmstack.git,moloney_dcmstack.git,moloney/dcmstack.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/moloney_dcmstack.git_hullabaloo_README +44688013cb25129dbe8477532841110a93df01bf,https://github.com/unbit/django-uwsgi,unbit_django-uwsgi,unbit/django-uwsgi,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/unbit_django-uwsgi_hullabaloo_README.md +2bb0ed428ed883f07f59ed7c8499ece973cb2e3f,https://github.com/ralphm/wokkel.git,ralphm_wokkel.git,ralphm/wokkel.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ralphm_wokkel.git_hullabaloo_README +691be6f5872bc87fd16902420e435db8e505353e,https://github.com/silx-kit/pyFAI,silx-kit_pyFAI,silx-kit/pyFAI,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/silx-kit_pyFAI_hullabaloo_README.md +f91b733ad8392cf4ecc85015f484aa812629e475,https://github.com/rakhimov/scram.git,rakhimov_scram.git,rakhimov/scram.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/rakhimov_scram.git_hullabaloo_README.md +71db345ed3da0b30932d5cbd5d16bad396806641,https://github.com/etianen/django-reversion.git,etianen_django-reversion.git,etianen/django-reversion.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/etianen_django-reversion.git_hullabaloo_README +efc9408bcd84cc6156f824e89014f79221af1b2f,https://github.com/ryan-roemer/sphinx-bootstrap-theme.git,ryan-roemer_sphinx-bootstrap-theme.git,ryan-roemer/sphinx-bootstrap-theme.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ryan-roemer_sphinx-bootstrap-theme.git_hullabaloo_README.rst +3e6e08919616919399a3522a403a03c072c63e46,https://github.com/wreiner/automx-debian.git,wreiner_automx-debian.git,wreiner/automx-debian.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/wreiner_automx-debian.git_hullabaloo_README.md +a2ecf044340f956e37c08f3b0b263a4a16cf0542,https://invent.kde.org/pim/kitinerary,pim_kitinerary,pim/kitinerary,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/pim_kitinerary_hullabaloo_README +bdca019278b7d5da90dd392567966575a2dcc876,https://github.com/libyal/libfvde.git,libyal_libfvde.git,libyal/libfvde.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/libyal_libfvde.git_hullabaloo_README +e7881acfcff795d24835046267ed6bcc2a20a401,https://github.com/zopefoundation/BTrees.git,zopefoundation_BTrees.git,zopefoundation/BTrees.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/zopefoundation_BTrees.git_hullabaloo_README.txt +f7e3add5c41a3f92d284c83656c54bd6e347995e,https://github.com/mjschultz/py-radix,mjschultz_py-radix,mjschultz/py-radix,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mjschultz_py-radix_hullabaloo_README +b587863a25032baa9b799c92c86904abb4fee133,https://github.com/xolox/python-humanfriendly,xolox_python-humanfriendly,xolox/python-humanfriendly,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/xolox_python-humanfriendly_hullabaloo_README.rst +8e8e018ca380428e9039669b3305330ab7771794,https://github.com/dnmfarrell/Data-FormValidator.git,dnmfarrell_Data-FormValidator.git,dnmfarrell/Data-FormValidator.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dnmfarrell_Data-FormValidator.git_hullabaloo_README +3e98266783163b8c386f20f840c44df420c61ef4,https://github.com/nitmir/policyd-rate-limit.git,nitmir_policyd-rate-limit.git,nitmir/policyd-rate-limit.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/nitmir_policyd-rate-limit.git_hullabaloo_README.rst +f7796ae5c998d3a18cb2f465556238847de31118,https://github.com/gramos/imagetooth,gramos_imagetooth,gramos/imagetooth,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/gramos_imagetooth_hullabaloo_README +7bf6f3799fdba70fda297c2d8fd9f526803d9680,https://github.com/swh/ladspa.git,swh_ladspa.git,swh/ladspa.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/swh_ladspa.git_hullabaloo_README +305dab41b5afb7c92257d523e42c5c05d3bb75db,https://github.com/fdupoux/fsarchiver,fdupoux_fsarchiver,fdupoux/fsarchiver,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/fdupoux_fsarchiver_hullabaloo_README +8a5a35bbf50962edc1d57473697d244ef46aa76e,https://github.com/sbraz/pymediainfo,sbraz_pymediainfo,sbraz/pymediainfo,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/sbraz_pymediainfo_hullabaloo_README.rst +618ee9e4c41bdd1ee20f51d7dab281730748d8a1,https://github.com/untitaker/python-atomicwrites,untitaker_python-atomicwrites,untitaker/python-atomicwrites,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/untitaker_python-atomicwrites_hullabaloo_README.rst +94292ea1da848a0f6b653d30190cf961359cf565,https://github.com/dpmb/dpmb,dpmb_dpmb,dpmb/dpmb,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/dpmb_dpmb_hullabaloo_README.md +e1831964e05c84cce2a1b9cc7fc381d7e149f7cf,https://github.com/glaubitz/virtualjaguar-debian,glaubitz_virtualjaguar-debian,glaubitz/virtualjaguar-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/glaubitz_virtualjaguar-debian_hullabaloo_README +84e8d57069f9bd6abd343a630288cdca79b67831,https://github.com/xuchunyang/eshell-git-prompt.git,xuchunyang_eshell-git-prompt.git,xuchunyang/eshell-git-prompt.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/xuchunyang_eshell-git-prompt.git_hullabaloo_README.org +576a16f2ab1aca730d5f338f1fec7e9861e6f009,https://github.com/django-polymorphic/django-polymorphic,django-polymorphic_django-polymorphic,django-polymorphic/django-polymorphic,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/django-polymorphic_django-polymorphic_hullabaloo_README.rst +8b107f63c519bd474c113c9b6c3363ccd3563fcd,https://github.com/ap/HTML-Tiny.git,ap_HTML-Tiny.git,ap/HTML-Tiny.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ap_HTML-Tiny.git_hullabaloo_README +0da4db21106619d9cd47644dfdc269500bae375c,https://github.com/ralphbean/bugwarrior,ralphbean_bugwarrior,ralphbean/bugwarrior,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/ralphbean_bugwarrior_hullabaloo_README.rst +f0ef749dd3b9e3476804a3961a9540801dba319e,https://github.com/mwilliamson/spur.py.git,mwilliamson_spur.py.git,mwilliamson/spur.py.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/mwilliamson_spur.py.git_hullabaloo_README.md +71b53d96f68faeed2329060ed15c32461dc196cd,https://github.com/kyrus/python-junit-xml.git,kyrus_python-junit-xml.git,kyrus/python-junit-xml.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/kyrus_python-junit-xml.git_hullabaloo_README.md +00e58ebf537521c5470d19c9db475af44819ec8b,https://github.com/folkertvanheusden/nasty,folkertvanheusden_nasty,folkertvanheusden/nasty,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/folkertvanheusden_nasty_hullabaloo_README.md +96e238825e40e6b0d380fee1807f353cadd05e6c,https://github.com/babelouest/hoel,babelouest_hoel,babelouest/hoel,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_readme/babelouest_hoel_hullabaloo_README.md diff --git a/12825_revision/misc_data_files/s_CONTRIBUTING-parsing-output.txt b/12825_revision/misc_data_files/s_CONTRIBUTING-parsing-output.txt new file mode 100644 index 0000000..3682be0 --- /dev/null +++ b/12825_revision/misc_data_files/s_CONTRIBUTING-parsing-output.txt @@ -0,0 +1,4 @@ +https://github.com/vcrhonek/hwdata.git, 7b9bf81a172eaccb55f282c39480161f73edf8f8 +https://invent.kde.org/plasma/libksysguard.git, 94623f22ddc05e6ba39515f5dd19fde28c2d3f23 +https://github.com/python-babel/flask-babel, 1174bff582e4a8c41bec10b7114aa202a32c6b48 +https://github.com/ralphbean/bugwarrior, af6b7f05af97c6be88e1e3dc2be5e2a5a108d464 diff --git a/12825_revision/misc_data_files/s_README-parsing-output.txt b/12825_revision/misc_data_files/s_README-parsing-output.txt new file mode 100644 index 0000000..1bd1e5a --- /dev/null +++ b/12825_revision/misc_data_files/s_README-parsing-output.txt @@ -0,0 +1,4 @@ +https://github.com/lebigot/uncertainties.git, 4a89afd24a347ef179d747dc578ec3b3db77f1d7 +https://github.com/dstosberg/odt2txt, aadfd070d3cdf7e01a0935bdf597541fc7b54c48 +https://github.com/Bioconductor/AnnotationDbi.git, 3683f9f261e8a21b3638f3587dedc6d16c0068af +https://gitlab.com/stevenshiau/clonezilla.git, 828a8bc85526e1d52ae0dca058cd2254537649b3 diff --git a/12825_revision/misc_data_files/validation.py b/12825_revision/misc_data_files/validation.py new file mode 100644 index 0000000..ba57afd --- /dev/null +++ b/12825_revision/misc_data_files/validation.py @@ -0,0 +1,104 @@ +import pandas as pd +import os +''' +# Load the CSV file into a DataFrame +csv_file = '013025_README_manifest.csv' # Replace with your CSV file path +column_name = 'new_filepath' # Replace with your column name containing file paths + +# Read the CSV file +df = pd.read_csv(csv_file) + +# Function to check if a file exists +def check_file_exists(file_path): + return os.path.exists(file_path) + +# Apply the function to the DataFrame column +df['file_exists'] = df[column_name].apply(check_file_exists) + +missing_files_df = df[df['file_exists'] == False] + +# Print the DataFrame with missing file paths +print("Files that do not exist:") +print(missing_files_df) +''' + +source_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/contributing' # Replace with your source directory path +target_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/validation_contributing' # Replace with your target directory path + +# List all files in the source directory +source_files = os.listdir(source_directory) +target_files = os.listdir(target_directory) + +# Iterate through the files and check if they exist in the target directory +no_pair = [] +manifest = [] +for file in source_files: + if file.startswith('_'): + repo_id = file[1:-12] + else: + repo_id = file[:-12] + has_fvf = False + pair_file = "" + for file_name in target_files: + if repo_id in file_name: + has_fvf = True + pair_file = file_name + break + if has_fvf == False: + no_pair.append(file) + else: + manifest.append([repo_id, file, pair_file]) + +print(no_pair) +manifest_df = pd.DataFrame(manifest, columns=['repo_id', 'commits_filepath', 'fvf_filepath']) +manifest_df.to_csv(f"all_013025_contributing_manifest.csv", index=False) + #source_file_path = os.path.join(source_directory, file_name) + #target_file_path = os.path.join(target_directory, file_name) + + #if os.path.isfile(source_file_path): + # if os.path.exists(target_file_path): + # print(f"File '{file_name}' exists in both directories.") + # else: + # print(f"File '{file_name}' does not exist in the target directory.") + +''' +# Load the CSV file into a DataFrame +csv_file = '/home/SOC.NORTHWESTERN.EDU/nws8519/git/24_deb_pkg_gov/12825_revision/misc_data_files/all_013025_contributing_manifest.csv' # Replace with your CSV file path +column_name = 'fvf_filepath' # Replace with your column name containing filenames + +# Read the CSV file +df = pd.read_csv(csv_file) + +# List all filenames in the specified directory +directory_path = '/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/validation_contributing' # Replace with your directory path +directory_files = os.listdir(directory_path) + +# Convert the filenames column of the DataFrame to a set for efficient lookup +filenames_in_csv = df[column_name] +duplicates = df.duplicated(keep=False) +duplicate_rows = df[duplicates] +print("\nDuplicate rows in the DataFrame:") +print(duplicate_rows) +# Check which filenames in the directory are not reflected in the column +#missing_files = [file for file in filenames_in_csv if file not in directory_files] + + +# Print the filenames that are not reflected in the column +print("Filenames in the directory that are not reflected in the CSV column:") +for file in missing_files: + print(file) + + +csv_file = '/home/SOC.NORTHWESTERN.EDU/nws8519/git/24_deb_pkg_gov/12825_revision/misc_data_files/all_013025_contributing_manifest.csv' # Replace with your CSV file path +column_name = 'fvf_filepath' # Replace with your column name containing filenames +# Read the CSV file +df = pd.read_csv(csv_file) + +file_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/validation_contributing' +directory_files = os.listdir(file_directory) +for file in directory_files: + filtered_df = df[df[column_name] == file] + if len(filtered_df) != 1: + print(filtered_df) + break +''' \ No newline at end of file diff --git a/12825_revision/spec_file/updated_get_spec_file.py b/12825_revision/spec_file/updated_get_spec_file.py index 1970d10..8fc78cd 100644 --- a/12825_revision/spec_file/updated_get_spec_file.py +++ b/12825_revision/spec_file/updated_get_spec_file.py @@ -152,7 +152,7 @@ def for_all_files(csv_path, is_readme): if __name__ == "__main__": - for_all_files("../misc_data_files/README_for_download.csv", True) + for_all_files("../misc_data_files/CONTRIBUTING_for_download.csv", False) #get_file("https://github.com/breakfastquay/rubberband", "a94f3f33577bf9d71166392febbfdf3cace6f1c8", True) #get_file("https://gitlab.freedesktop.org/gstreamer/gstreamer", "1762dfbf982a75d895676b0063379e33b4f9b96a", True) #get_file("https://github.com/ranger/ranger.git", "ea355f491fb10d5ce054c7813d9abdfd3fc68991" ,False)