generated from beeman/template-typescript-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testdata.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
2685 lines (2685 loc) · 118 KB
/
testdata.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
swMATHId;git
44332;https://github.com/OCL2AC/home
44325;https://github.com/nickelnine37/pykronecker
44324;https://github.com/SvenMarcus/hpc-rocket
44323;https://gitlab.com/leia-methods/argo
44321;https://gitlab.com/dglaeser/fieldcompare
44320;https://github.com/vtopt/VTMOP
44319;https://github.com/parmoo/parmoo
44315;https://github.com/VITA-Group/ALISTA
44311;https://github.com/SedFoam/sedfoam
44306;https://github.com/cran/metR
44305;https://github.com/cran/spamtree
44303;https://github.com/tosinabase/Kiefer-Weiss
44302;https://github.com/mzilhao/Jecco.jl
44300;https://github.com/vicegd/jgraphs
44298;https://github.com/cran/conquer
44297;https://github.com/srush/SemiRings
44295;https://github.com/jreeves3/PReLearn
44293;https://github.com/cran/teamcolors
44292;https://github.com/samuel-yeom/fliptest
44291;https://github.com/cran/inspectdf
44290;https://github.com/cran/tidycensus
44289;https://github.com/shadow2469/BiRSwinT
44288;https://github.com/ut-padas/rchol
44286;https://github.com/JeffreySarnoff/ArbNumerics.jl
44285;https://github.com/deepmind/alphatensor
44284;https://github.com/Apress/string-algorithms-in-c
44283;https://github.com/mklokocka/seminator
44272;https://github.com/ciaranm/glasgow-subgraph-solver
44271;https://github.com/MiviaLab/vf3lib
44270;https://github.com/Echtzeitsysteme/SimSG-Example
44268;https://github.com/jona2510/PGM_PyLib
44267;https://github.com/ragnhildlaursen/SFS
44265;https://github.com/cran/randcorr
44264;https://github.com/cran/braggR
44263;https://github.com/cran/epimdr2
44262;https://github.com/denglingyun123/Multi-strategy-improved-slime-mould-algorithm
44260;https://github.com/mmsnasser/PlgCirMap
44258;https://github.com/khameelbm/microfiniteR
44257;https://github.com/findCP/findCPcli
44256;https://github.com/rhz/fragger
44254;https://github.com/numericalEFT/Lehmann.jl
44253;https://github.com/jasonkaye/libdlr
44252;https://github.com/SpM-lab/SparseIR.jl
44250;https://github.com/SpM-lab/sparse-ir
44247;https://github.com/statgen/locuszoom/
44245;https://github.com/kordk/shinyGAStool
44244;https://github.com/Junjun1guo/OpenSeesPyView
44242;https://github.com/cran/terra
44241;https://github.com/cran/fs
44240;https://github.com/cran/ag5Tools
44239;https://github.com/cran/GSelection
44238;https://github.com/annajenul/UBayFS
44237;https://github.com/cran/signnet
44236;https://github.com/cran/spiro
44235;https://github.com/jkirkby3/BsplineDensity
44234;https://github.com/jkirkby3/pymle
44232;https://github.com/cran/spsur
44231;https://github.com/jkirkby3/PROJ_Option_Pricing_Matlab
44230;https://github.com/AnjishtGosain/DerivativesPricing
44229;https://github.com/SciML/JumpProcesses.jl
44228;https://github.com/LRydin/jumpdiff
44227;https://github.com/cran/MBHdesign
44226;https://github.com/cran/Spbsampling
44225;https://github.com/HelmholtzAI-Consultants-Munich/PySDDR
44224;https://github.com/cran/gamlss.lasso
44223;https://github.com/lasso-net/lassonet
44221;https://github.com/cran/tfprobability
44220;https://github.com/cran/BayesianGLasso
44219;https://github.com/cran/BigQuic
44218;https://github.com/cran/glassoFast
44217;https://github.com/cran/cglasso
44215;https://github.com/nick8325/jukebox/
44214;https://github.com/MichaelRawson/lazycop
44209;https://github.com/dblotsky/stringfuzz
44208;https://github.com/zaligvinder/zaligvinder
44206;https://github.com/rxncon/rxncon
44205;https://github.com/albertocasagrande/pyModelChecking
44204;https://github.com/sybila/eBCSgen
44203;https://github.com/Verisig/verisig
44202;https://github.com/DatenVorsprung/GoTube
44201;https://github.com/amirgholami/anode
44200;https://github.com/stanleybak/nnenum
44199;https://github.com/verivital/nnv
44198;https://sourceforge.net/projects/groimp/files/
44197;https://github.com/xbpeng/DeepLoco
44195;https://github.com/XuhuiM/PPINN
44194;https://github.com/kpentland/GParareal
44192;https://github.com/Ulvetanna/HypoSVI
44191;https://github.com/sgrubas/NES
44190;https://github.com/federicoPagnozzi/emili
44189;https://github.com/cicirello/Chips-n-Salsa
44188;https://github.com/N-Wouda/ALNS
44187;https://github.com/QuantumBFS/CuYao.jl
44186;https://github.com/HQSquantumsimulations/PyQuEST-cffi
44185;https://github.com/QuantumBFS/LuxurySparse.jl
44184;https://github.com/JuliaArrays/StaticArrays.jl
44183;https://github.com/Jutho/KrylovKit.jl
44178;https://github.com/JuliaSpace/SatelliteToolbox.jl
44177;https://github.com/benoitseron/BosonSampling.jl
44175;https://github.com/JuliaTurkuDataScience/FdeSolver.jl
44048;https://github.com/xharlie/DISN
44047;https://github.com/yuxng/PoseCNN
44043;https://github.com/weders/NeuralFusion
44042;https://github.com/weders/RoutedFusion
44039;https://github.com/Totoro97/NeuS
44038;https://github.com/totoro97/vid2curve
44037;https://github.com/FangjinhuaWang/PatchmatchNet
44036;https://github.com/VisualComputingInstitute/mots_tools
44035;https://github.com/EvgenyKashin/stylegan2-distillation
44033;https://github.com/SauravMaheshkar/ResMLP-Flax
44032;https://github.com/fabiotosi92/SMD-Nets
44030;https://github.com/scape-research/SOSNet
44028;https://github.com/yuruntian/L2-Net
44026;https://github.com/m-tassano/fastdvdnet
44025;https://github.com/m-tassano/dvdnet
44024;https://github.com/yunxiaoshi/Neural-IMage-Assessment
44022;https://github.com/google-research/opticalflow-autoflow
44020;https://github.com/cran/treemisc
44019;https://github.com/framefunVC/BSplineextension.jl
44017;https://github.com/vsitzmann/deepvoxels
44016;https://github.com/vsitzmann/metasdf
44015;https://github.com/chshin10/epinet
44013;https://github.com/puzzlepaint/surfelmeshing
44012;https://github.com/lmb-freiburg/autodispnet
44011;https://github.com/facebookresearch/frankmocap
44010;https://github.com/naver/r2d2
44009;https://github.com/RenYurui/StructureFlow
44008;https://github.com/cvlab-epfl/MeshSDF
44007;https://github.com/creiser/kilonerf/
44006;https://github.com/zju3dv/pvnet
44005;https://github.com/google/hypernerf
44004;https://github.com/JunHeum/BMBC
44001;https://github.com/End-to-end-provenance/RDataTracker
44000;https://github.com/dolthub/dolt
43999;https://github.com/cran/dtrackr
43998;https://github.com/cran/rigr
43997;https://github.com/cran/parmsurvfit
43996;https://github.com/VictorSuciu/prunetrain
43995;https://github.com/maciejzieba/binGAN
43994;https://github.com/fuzzdb-project/fuzzdb
43993;https://github.com/T-Obuchi/SLRpackage_AcceleratedCV_matlab
43991;https://github.com/meelgroup/bosphorus
43990;https://github.com/d-kfmnn/amulet2
43987;https://github.com/anqif/adarad
43986;https://github.com/facebookresearch/DeepHandMesh
43985;https://github.com/ducha-aiki/wide-baseline-stereo-blog/
43984;https://github.com/timmeinhardt/trackformer
43983;https://github.com/sacmehta/ESPNet/
43982;https://github.com/XinArkh/VNect
43979;https://github.com/erikalu/omnimatte
43977;https://github.com/microsoft/Oscar
43974;https://github.com/KAIST-VCLAB/texturefusion
43973;https://github.com/HyeongminLEE/AdaCoF-pytorch
43972;https://github.com/google-research/big_transfer
43971;https://github.com/laurentkneip/opengv
43970;https://github.com/cog-imperial/drill-scheduling
43969;https://github.com/cog-imperial/rogp
43968;https://github.com/joshloyal/drforest
43967;https://github.com/ManuelNavarroGarcia/cpsplines
43966;https://github.com/rozyangno/sce
43965;https://github.com/ShufeiGe/Shape-Modeling-with-Spline-Partitions
43964;https://sourceforge.net/projects/formscanner/files/1.1.3/
43963;https://github.com/SymbiFlow
43961;https://github.com/scarv/xcrypto
43960;https://github.com/Hovakhshatra/MCKR_App/tree/v1.0
43959;https://github.com/forestry-labs/causalToolbox
43958;https://github.com/JohannMitteramskogler/AGADE
43957;https://github.com/cran/groupTesting
43956;https://github.com/duxingren14/DualGAN
43955;https://github.com/sxyu/pixel-nerf
43954;https://github.com/sxyu/volrend
43952;https://github.com/Kai-46/nerfplusplus
43951;https://github.com/Kai-46/PhySG
43949;https://github.com/zdzhaoyong/GSLAM
43948;https://github.com/x007dwd/StructSLAM
43947;https://github.com/zhou13/neurvps
43946;https://github.com/zhixuanli/StereoNet
43945;https://github.com/deepmedic/deepmedic
43944;https://github.com/suyogduttjain/fusionseg
43938;https://github.com/dingmyu/CamNet
43935;https://github.com/germain-hug/S2DNet-Minimal
43931;https://github.com/twhui/LiteFlowNet3
43930;https://github.com/phuang17/DeepMVS
43929;https://github.com/hjwdzh/FrameNet
43928;https://github.com/barisgecer/GANFit
43927;https://github.com/uber-research/DeepPruner
43926;https://github.com/harskish/ganspace
43925;https://github.com/niessner/BundleFusion
43924;https://github.com/clausmichele/ViDeNN
43923;https://github.com/JingchunCheng/SegFlow
43920;https://github.com/kbatsos/RecResNet
43918;https://github.com/danini/magsac
43916;https://github.com/brownvc/matryodshka
43915;https://github.com/google-research/scenic/tree/main/scenic/projects/vivit
43914;https://github.com/ekiciburak/CatTheo
43910;https://github.com/ERATOMMSD/qcl_tap_2021
43908;https://github.com/ianhyland/Protege-TS
43904;https://github.com/GoelandProver/Goeland
43903;https://github.com/vortexmethods/VM2D
43902;https://github.com/vvflow/vvflow
771;https://svn.r-project.org/R/trunk/
4557;https://github.com/tidyverse/ggplot2
44449;https://github.com/NTCColumbia/moco
44448;https://github.com/grg2rsr/ILTIS
44447;https://github.com/galizia-lab/pyview
44446;https://github.com/wasiur/dynamic_survival_analysis
44445;https://github.com/PQCLab/pyRootTomography
44444;https://github.com/PQCLab/pyQTB
44443;https://github.com/PQCLab/mQTB
44442;https://github.com/PQCLab/mRootTomography
44441;https://github.com/qMLE/qMLE
44440;https://github.com/Jianxun-Wang/phygeonet
44439;https://github.com/Duankaiwen/CenterNet
44438;https://github.com/zoraup/SPNet
44437;https://github.com/JunweiLiang/aicity_action
44436;https://github.com/tianyuan168326/EAN-Pytorch
44435;https://github.com/TACJu/TransFG
44433;https://github.com/difuture-lmu/dsBinVal
44432;https://github.com/OptMLGroup/SONIA
44431;https://github.com/blind-contours/CVtreeMLE
44430;https://github.com/minaskar/hankl
44429;https://github.com/jameskermode/f90wrap
44428;https://github.com/liuhao-cn/fastSHT
44427;https://github.com/CosmoStatGW/WF4Py
44426;https://github.com/CosmoStatGW/gwfast
44425;https://github.com/pyeve/cerberus
44422;https://github.com/jonaselgammal/GPry
44421;https://github.com/arjunsavel/SImMER
44420;https://github.com/astrosupriyo/pyTANSPEC
44419;https://bitbucket.org/csabiu/gramsci/src/master/
44418;https://bitbucket.org/bolejko/simsilun/src/master/
44416;https://gitlab.com/cosmology-aifa/ligerv2
44415;https://github.com/jmd-dk/concept/
44413;https://github.com/davidegua/max_geo_compression
44412;https://github.com/franciscovillaescusa/Pylians3
44411;https://github.com/pigimonaco/Pinocchio
44410;https://bitbucket.org/tassev/colacode/src/hg/
44409;https://github.com/franciscovillaescusa/Quijote-simulations
44408;https://bitbucket.org/dpotter/pkdgrav3/src/master/
44406;https://github.com/uchuuproject
44405;https://github.com/lgarrison/AbacusCosmos
44404;https://github.com/AemulusProject
44403;https://bitbucket.org/rangulo/baccoemu/src/master/
44402;https://github.com/tobias-liaudat/wf-psf
44401;https://github.com/heatherprince/planck-low-py
44399;https://github.com/CompiledAtBirth/pyCARPool
44398;https://github.com/marius311/pypico
44397;https://github.com/alessiospuriomancini/cosmopower
44396;https://github.com/undark-lab/swyft
44395;https://github.com/TikhonJelvis/RL-book
44394;https://github.com/OriginQ/QPanda/tree/master/QRunes
44393;https://gitlab.com/m4103/matchmaker-eft
44392;https://github.com/aethomsen/SMEFTflavor
44391;https://github.com/cran/symengine
44390;https://github.com/inrae/RCaNmodel/
44389;https://github.com/mrempel/geohexviz
44388;https://github.com/cran/nptest
44387;https://github.com/cran/robnptests
44386;https://github.com/cran/bigtime
44385;https://github.com/cran/LSVAR
44384;https://github.com/cran/fnets
44383;https://github.com/cran/pder
44382;https://github.com/cran/posterior
44381;https://github.com/cran/tvem
44380;https://github.com/cran/fixest
44379;https://github.com/cran/dynamite
44378;https://github.com/cran/cusum
44377;https://github.com/cran/funnelR
44376;https://github.com/cran/success
44375;https://github.com/cran/SelectionBias
44374;https://github.com/ChenyuzZZ73/rMultiNet
44372;https://github.com/cran/DynForest
44371;https://github.com/neural-structured-additive-learning/mixdistreg
44370;https://github.com/Unbabel/COMET
44369;https://github.com/nucypher/nufhe
44368;https://github.com/rethinkdb/rethinkdb
44367;https://github.com/nucypher/zerodb
44366;https://github.com/cryptograph/stealthdb
44358;https://github.com/deib-polimi/TRex
44355;https://github.com/splay-project/splay
44353;https://github.com/fmaia/dataflasks
44343;https://github.com/elastest/elastest
44341;https://github.com/jopereira/minha
44340;https://github.com/meyer-nils/fiberoripy
44339;https://github.com/Crunch-UQ4MI/neuraluq
44333;https://github.com/crossecore/oclinecore
44330;https://github.com/LLNL/Juqbox.jl
44327;https://github.com/DanielBrosch/SDPSymmetryReduction.jl
44326;https://github.com/MichielStock/Kronecker.jl
44322;https://git.rz.tu-bs.de/irmb/virtualfluids
44318;https://github.com/BorisNLatosh/FeynGrav
44314;https://github.com/cran/studyStrap
44309;https://github.com/cran/Bayesiantreg
43777;https://gitlab.insa-rennes.fr/Jeremy.Omer/MinDouble
43770;https://github.com/gaogaotiantian/viztracer/
43769;https://github.com/predict-idlab/tsflex
43768;https://github.com/SpectraSorter/SpectraSorter/
43765;https://github.com/pbrcunisa/RootAnalyzer
43764;https://github.com/ProfMJSimpson/Exit_time
43763;https://github.com/ckadelka/BooleanCanalization
43762;https://github.com/fairmandering/fairmandering_paper
43761;https://github.com/ghoshanirban/unitdiskcoveralgorithms
43760;https://github.com/shahaneshantanu/memphys
43759;https://github.com/cran/breakpoint
43758;https://github.com/cran/ocp
43757;https://github.com/cran/paramtest
43756;https://github.com/cran/onlineBcp
43755;https://github.com/gems-uff/noworkflow
43753;https://github.com/ElsevierSoftwareX/SOFTX_2019_102
43752;https://github.com/laristra/flecsph
43751;https://github.com/ap--/python-seabreeze
43747;https://github.com/drlukeparry/pycork
43746;https://github.com/CONMAD-CIDESIMX/MaSMaker
43745;https://github.com/ElsevierSoftwareX/SOFTX-D-22-00010
43744;https://github.com/mitigation-controller/mitc
43743;https://github.com/eamontoyaa/pysigmap
43740;https://github.com/anntzer/mplcursors
43739;https://github.com/saadgroup/pymodpde
43738;https://github.com/dagghe/PyOMA
43737;https://github.com/rburing/kontsevich_graph_series-cpp
43736;https://github.com/funstatpackages/TPST
43735;https://github.com/funstatpackages/STARX
43734;https://github.com/FIRST-Data-Lab/Triangulation
43731;https://github.com/mcimini/lang-n-play
43730;https://github.com/Benny44/LADEL
43729;https://github.com/HwanGoh/uq-vae
43728;https://github.com/cran/pksensi
43727;https://github.com/Iourarum/GOPY
43723;https://github.com/heremaps/pptk
43722;https://github.com/pyinstaller/pyinstaller
43720;https://github.com/conlin-matt/SurfRCaT
43719;https://github.com/Ulises-ICM-UPC/UCalib
43718;https://github.com/mailemccann/coastalimagelib
43716;https://github.com/a-mitani/welford
43715;https://github.com/caiostringari/picoastal
43713;https://github.com/ElsevierSoftwareX/SOFTX_2020_236
43712;https://github.com/Coastal-Imaging-Research-Network/cBathy-Toolbox/
43710;https://github.com/cran/RStoolbox
43709;https://github.com/ElsevierSoftwareX/SOFTX_2020_170
43707;https://github.com/scottfr/simulation
43706;https://github.com/bpowers/simlin
43705;https://github.com/stochsd/stochsd/
43704;https://github.com/climateinteractive/SDEverywhere
43703;https://github.com/SDXorg/excels2vensim
43701;https://github.com/SDXorg/pysd
43700;https://github.com/unepwcmc/wdpa-statistics
43699;https://github.com/jeffreyhanson/global-protected-areas
43698;https://github.com/ropensci-archive/rwdpa
43697;https://github.com/frbcesab/worldpa
43696;https://github.com/ghislainv/pywdpa/
43695;https://github.com/cran/wdpar
43694;https://github.com/wildart/Evolutionary.jl
43693;https://github.com/jbrea/CMAEvolutionStrategy.jl
43692;https://github.com/jmejia8/Metaheuristics.jl
43691;https://github.com/limabrena/uavnoma
43690;https://github.com/cran/varImp
43689;https://github.com/belayb/bayesgmed
43687;https://github.com/UDST/urbansim
43683;https://github.com/tpetzoldt/antibioticR
43682;https://github.com/cran/epicontacts
43680;https://github.com/cran/AMR
43679;https://github.com/cran/odeintr
43678;https://github.com/cran/difNLR
43677;https://github.com/cran/calculus
43675;https://github.com/cran/BHSBVAR
43674;https://github.com/cran/BGVAR
43673;https://gitlab.com/openCFS/cfs
43672;https://github.com/Eomys/pyleecan
43670;https://github.com/cran/R6causal
43669;https://github.com/cran/cfid
43668;https://github.com/multiform-UoN/SECUReFOAM
43667;https://github.com/espitau/GALACTICS
43666;https://gitlab.com/raykzhao/gaussian
43664;https://github.com/yixuan/almond
43661;https://github.com/INFORMSJoC/2021.0096
43660;https://github.com/stefanch/sGDML
43659;https://github.com/infiniteopt/InfiniteOpt.jl
43658;https://github.com/mfalt/QPDAS.jl
43656;https://github.com/weymouth/DataDrivenGMG.jl
43655;https://github.com/cran/broom.mixed
43654;https://github.com/cran/bayesrules
43653;https://github.com/fmuni/openHFDIB
43651;https://github.com/cran/RobRegCC
43650;https://github.com/yicjia/DeepQuantreg
43649;https://github.com/geoscience-community-codes/GISMO
43648;https://github.com/ebenmichael/augsynth
43647;https://github.com/cran/hmmr
43646;https://github.com/pedrognicolau/ARbiascorrect-v1
43642;https://github.com/compxco/cql3d
43640;https://github.com/cran/iRoCoDe
43639;https://github.com/samjbaugh/bayesianheatcontentcode
43638;https://github.com/chipsalliance/rocket-chip
43636;https://github.com/pulp-platform/axi
43901;https://github.com/JuliaReach/LazySets.jl
43896;https://github.com/lip6/cosy
43895;https://www.github.com/V3du4rd0/AMCF
43894;https://github.com/evilsocket/pwnagotchi
43893;https://github.com/HumanCompatibleAI/imitation
43892;https://github.com/kengz/SLM-Lab
43891;https://github.com/tensorflow/agents
43890;https://github.com/jaberkow/WaveRL
43889;https://github.com/EdisonLeeeee/GraphGallery
43888;https://github.com/MrNuggelz/sklearn-lvq
43887;https://github.com/JonStargaryen/gmlvq
43886;https://github.com/rickvanveen/sklvq
43879;https://github.com/costa-group/iRankFinder
43878;https://github.com/klb2/qmkpy-datasets
43875;https://github.com/cran/DTRlearn2
43874;https://github.com/cran/polle
43873;https://github.com/cran/tramME
43872;https://github.com/cran/deepregression
43871;https://github.com/cran/tramvs
43870;https://github.com/cran/deeptrafo
43869;https://gitlab.com/ita-ml/pyispace
43868;https://gitlab.com/ita-ml/pyhard
43867;https://github.com/dbenielli/scikit-multimodallearn
43866;https://github.com/google-research/simclr
43865;https://github.com/plclub/metalib
43864;https://github.com/cran/ggQC
43863;https://github.com/cran/Markovchart
43862;https://github.com/cran/NetDA
43861;https://github.com/eschnett/Delaunay.jl
43860;https://github.com/ChrisFuelOR/NCNBD.jl
43859;https://github.com/bachrathyd/MDBM.jl
43858;https://github.com/LRydin/MFDFA
43857;https://github.com/dbstein/qfs
43856;https://github.com/Carol-seven/ionet
43855;https://github.com/cran/ExactMed
43854;https://github.com/cran/ppgmmga
43853;https://github.com/cran/rmi
43852;https://github.com/cran/MixedIndTests
43851;https://github.com/wangyg19/CMBProbe
43850;https://github.com/automl/SMAC3
43849;https://github.com/samorani/MatchingPPE
43848;https://github.com/stefanSCS/SHYqp
43846;https://github.com/ucns3d-team/UCNS3D
43844;https://github.com/microsoft/EconML
43843;https://github.com/DoubleML/doubleml-for-py
43842;https://github.com/nkarasiak/MuseoToolBox
43839;https://github.com/JoseMath/multiregeneration
43838;https://github.com/chriscoey/Hypatia.jl
43837;https://github.com/nickjcroucher/gubbins
43834;https://github.com/shenwei356/seqkit
43833;https://github.com/DHQP/SNVPhyl_Nextflow
43832;https://github.com/NorwegianVeterinaryInstitute/ALPPACA
43831;https://github.com/pyiron/pyiron
43829;https://github.com/ICAMS/strucscan
43828;https://github.com/aserg-ufmg/apidiff
43825;https://github.com/vdasu/lighter-r
43823;https://github.com/cran/dynamac
43822;https://github.com/cran/dLagM
43821;https://github.com/cran/ARDL
43820;https://github.com/cran/spatialreg
43819;https://github.com/cran/geostan
43818;https://gitlab.mpikg.mpg.de/curcuraci/bmiptools
43817;https://github.com/adanjoga/cvik-toolbox
43816;https://github.com/AP6YC/ClusterValidityIndices.jl
43815;https://github.com/hottbox/hottbox
43814;https://github.com/tensorly/viz
43813;https://github.com/cran/scoringutils
43812;https://github.com/cran/yardstick
43811;https://github.com/cran/Apsimx
43810;https://github.com/cran/cvms
43809;https://github.com/cran/hydroGOF
43808;https://github.com/cran/metrica
43807;https://github.com/henriquebecker91/GuillotineModels.jl
43805;https://github.com/jinhuang/hyperx
43804;https://github.com/coin-or/Gravity
43802;https://gitlab.com/smspp/smspp-project/
43800;https://github.com/c4v4/LKH3
43798;https://github.com/vaishna77/Lippmann_Schwinger_Solver
43797;https://github.com/Hokuto496/Decoding_Algorithms_of_monotone_codes_and_azinv_codes
43796;https://github.com/JPETTomography/j-pet-framework
43795;https://github.com/amaelkady/FM-2D
43793;https://github.com/texm/PReDIC
43792;https://github.com/basler/pypylon
43791;https://github.com/jcadf/iCorrVision_3D
43790;https://github.com/jcadf/iCorrVision_2D
43789;https://github.com/Water-End-Use-Dataset-Tools/WEUSEDTO
43788;https://github.com/nrosjat/dynamic-synchronization-toolbox
43787;https://github.com/LanceFiondella/C-SFRAT
43785;https://github.com/pymedphys/pymedphys
43784;https://github.com/cs-chan/ArtGAN
43783;https://github.com/wuhuikai/GP-GAN
43782;https://github.com/mmaiarocha/MRPy
43781;https://github.com/MatheusCarini/CESSIPy
43780;https://github.com/amaelkady/EaRL
43778;https://github.com/ecmwf/atlas
43776;https://gitlab.insa-rennes.fr/Jeremy.Omer/min-revorder
43774;https://github.com/cran/smoother
43773;https://github.com/cran/devEMF
43772;https://github.com/cran/takos
43771;https://github.com/ElsevierSoftwareX/SOFTX-D-21-00148
44182;https://github.com/QuantumBFS/YaoLang.jl
44181;https://github.com/QuantumBFS/ZXCalculus.jl
44180;https://github.com/QuantumBFS/YaoTensorNetwork.jl
44176;https://github.com/SciFracX/FractionalDiffEq.jl
44174;https://github.com/PublicHealthEngland/bayesint
44173;https://github.com/xroche/httrack
44172;https://github.com/BitLooter/htmlark
44170;https://github.com/gewethor/study-sandboxx
44169;https://github.com/meryemberradauwo/Rho
44168;https://github.com/textstat/textstat
44167;https://github.com/HLasse/TextDescriptives
44166;https://github.com/statismo/statismo
44164;https://github.com/pmgbergen/DarSIA
44163;https://github.com/cran/DImodels
44162;https://github.com/cran/tfarima
44161;https://github.com/cran/robustarima
44160;https://github.com/MITGameLab/OpenRelativity
44159;https://github.com/cran/lorentz
44158;https://github.com/Xiaojun-Zhu/BranchBoundforWSN
44156;https://github.com/abzemkoho/forecasting
44153;https://git.opencarp.org/openCARP
44152;https://github.com/cran/msae
44151;https://github.com/cran/saeME
44150;https://github.com/cran/saeeb
44149;https://github.com/jpazvd/fhsae
44148;https://github.com/institutefordiseasemodeling/covasim
44147;https://github.com/nilsvu/dgpy
44146;https://github.com/Jimmy-Lin/GeneralizedOptimalSparseDecisionTrees
44145;https://github.com/xiyanghu/OSDT
44144;https://github.com/cran/bsnsing
44142;https://github.com/oscar-system/Polymake.jl
44140;https://github.com/finsberg/pulse
44139;https://github.com/ComputationalPhysiology/simcardems
44137;https://github.com/arminbiere/scranfilize
44136;https://github.com/xinyuanc91/Gated-GAN
44135;https://github.com/tianlinxu312/dgcit
44134;https://github.com/ZhaoJJ0818/ILL-QGAN
44133;https://github.com/Sha-Lab/babywalk
44132;https://github.com/lil-lab/chalet
44131;https://github.com/haosulab/SAPIEN
44130;https://github.com/allenai/allenact
44129;https://github.com/facebookresearch/habitat-lab
44128;https://github.com/TorchCraft/TorchCraft
44127;https://github.com/askforalfred/alfred
44126;https://github.com/minosworld/minos
44124;https://github.com/xavierpuigf/virtualhome_unity
44123;https://github.com/alexa/teach
44121;https://github.com/ChengshuLi/HRL4IN
44120;https://github.com/StanfordVL/iGibson
44119;https://github.com/hyounghk/ArraMon
44118;https://gitlab.inria.fr/qparse/qparselib
44116;https://github.com/XinnuoXu/AggGen
44112;https://github.com/lgaborini/bayessource
44110;https://github.com/ghirensics/ghiro
44108;https://github.com/ImpulseAdventure/JPEGsnoop
44106;https://github.com/allenai/robothor-challenge
44103;https://github.com/tharindudr/MUDES
44102;https://github.com/eirikbloodaxe/franz/
44100;https://github.com/lindalee-inlab/MCM
44098;https://github.com/ciao-lang/lpdoc
44097;https://gitlab.com/hjortur/wendland-function-generator/
44096;https://github.com/JonathanSalwan/Triton
44095;https://github.com/illera88/Ponce
44094;https://github.com/NationalSecurityAgency/ghidra/
44091;https://github.com/industrial-optimization-group/DESDEO
44087;https://github.com/borzacchiello/seninja
44086;https://github.com/ElsevierSoftwareX/SOFTX-D-22-00144
44085;https://github.com/ftheberge/GraphMiningNotebooks
44084;https://github.com/dssg/aequitas
44080;https://github.com/ZheyuanLi/gps-vignettes/blob/main/gps2.pdf
44079;https://github.com/warrenjl/CWVSmix
44078;https://github.com/cran/slasso
44077;https://github.com/cran/stfit
44075;https://github.com/kessysalvatory/CoMoMo
44074;https://github.com/amadoudiogobarry/expectgee
44073;https://github.com/jvbfreitas/geeBP
44072;https://github.com/cran/OptimaRegion
44071;https://github.com/XiaoGuo-stat/Rclust
44070;https://github.com/fanne-stat/radviz3d/
44069;https://github.com/cran/gcdnet
44068;https://github.com/cran/miselect
44067;https://github.com/cran/gesso
44066;https://github.com/ruoqiyu/RBestMatch
44065;https://github.com/cran/QF
44064;https://github.com/cran/SLFPCA
44063;https://github.com/alisaab/l0bnb
44062;https://github.com/cran/RcmdrPlugin.DCCV
44061;https://github.com/cran/bigparallelr
44060;https://github.com/cran/bigstatsr
44059;https://github.com/cran/DCchoice
44058;https://github.com/cran/HDBRR
44057;https://github.com/IBCNServices/pyRDF2Vec
44056;https://github.com/fnielsen/wembedder
44055;https://github.com/tianhan4/paper2vec
44051;https://github.com/yangguorun/SegStereo
44050;https://github.com/cu-clear/verbnet
44046;https://github.com/leoxiaobin/CvT
44045;https://github.com/nex-mpi/nex-code
44040;https://github.com/googleinterns/IBRNet
43559;https://github.com/amadoudiogobarry/expectgee
42020;https://github.com/infer-actively/pymdp
42018;https://github.com/johnabel/gillespy
42017;https://github.com/nasa/MXMCPy
42000;https://github.com/mesoscale/mmsp
41999;https://docs.micress.rwth-aachen.de/7.1/index.html#references
41996;https://github.com/LinjianMa/AutoHOOT
41995;https://github.com/JuliaDiff/ChainRulesCore.jl
41993;https://github.com/paranumal/libparanumal
41991;https://github.com/mriesch-tum/mbsolve
41987;https://github.com/cran/DOSPortfolio
41986;https://github.com/cran/HDShOP
41984;https://github.com/JuntaoHuang/multiscale-chemical-reaction
41983;https://github.com/senresearch/MatrixLMnet.jl
41982;https://github.com/soyoungryu/BacID
41981;https://github.com/hank-nguyen/MBT-optimizer
41977;https://github.com/NatLibFi/Annif-corpora
41973;https://github.com/cran/MarketMatching
41972;https://github.com/cran/CausalMBSTS
41971;https://github.com/cran/mazeinda
41970;https://github.com/cran/hurdlr
41969;https://github.com/cran/bzinb
41968;https://github.com/cran/ZIBBSeqDiscovery
41967;https://github.com/cran/MetaLonDA
41966;https://github.com/cran/ZIBseq
41965;https://github.com/cran/rbtt
41964;https://github.com/cran/ziphsmm
41963;https://gitlab.crans.org/leger/wmixnet
41962;https://github.com/cran/AZIAD
41961;https://github.com/cran/tidync
41960;https://github.com/cran/ecmwfr
41958;https://github.com/cran/cubble
41957;https://github.com/cran/Bmix
41956;https://github.com/cran/bmixture
41955;https://github.com/cran/sbm
41954;https://github.com/mtrenti/NBODY6
41951;https://github.com/PrincetonUniversity/athena
41950;https://github.com/gandalfcode/gandalf
41948;https://gitlab.ethz.ch/okaraca/repop-toolbox
41946;https://github.com/speegled/fosdata
41945;https://github.com/isglobal-brge/MultiDataSet/
41944;https://github.com/waldronlab/MultiAssayExperiment
41943;https://github.com/Bioconductor/SummarizedExperiment
41938;https://github.com/mikelove/DESeq2
41937;https://github.com/kevinblighe/EnhancedVolcano
41936;https://github.com/StevenWingett/FastQ-Screen
41935;https://github.com/barafundle/poisson
41934;https://github.com/galacticusorg/galacticus
41933;https://github.com/brinckmann/montepython_public
41932;https://github.com/auckland-cosmo/PyUltraLight
41931;https://github.com/EdgarFigueiras/QMBlender
41930;https://github.com/ComplexOrganizationOfLivingMatter/Epigraph
41929;https://github.com/NeuromorphicProcessorProject/snn_toolbox
41928;https://github.com/ZhangZhaomin/SEFRON_python
41927;https://github.com/Goodsea/BreastNet
41925;https://github.com/cran/LeArEst
41924;https://github.com/cran/PredictionR
41923;https://github.com/cran/jointseg
41921;https://github.com/cran/testOTM
41920;https://github.com/zahraatashgahi/QuickSelection
41918;https://github.com/ysw-sunshine/UPFPSR
41917;https://github.com/qcydm/VGAER
41916;https://github.com/laiguzi/NormalizedRicciFlow
41914;https://github.com/jellyfysh/BigBoro
41913;https://github.com/PetroleumCyberneticsGroup/FieldOpt
41912;https://github.com/gegewen/ccsnet_v1.0
41911;https://github.com/GeoStat-Framework/GSTools
41908;https://github.com/PhysicsofFluids/AFiD
41906;https://github.com/cran/rocsvm.path
41900;https://github.com/docwza/woa
41899;https://github.com/afshinfaramarzi/Marine-Predators-Algorithm
41897;https://github.com/cran/dampack
41896;https://github.com/matthiaskoenig/sbmlsim
41895;https://github.com/sbmlteam/sbml-test-suite
41894;https://github.com/sys-bio/sbmldiagrams
41893;https://github.com/yzhao062/LSCP
41892;https://github.com/yzhao062/XGBOD
41891;https://github.com/r5by/pigeon
41890;https://github.com/radlab/sparrow
41889;https://github.com/winstonll/COPOD
41888;https://github.com/daochenzha/Meta-AAD
41886;https://github.com/yzhao062/SUOD
41885;https://github.com/OutlierDetectionJL/OutlierDetection.jl
41884;https://github.com/datamllab/tods
41883;https://github.com/futianfan/mimosa
41882;https://github.com/pygod-team/pygod
41881;https://github.com/cran/spgs
41880;https://github.com/ZEXINLIU/Univariate_ttr_examples
41879;https://github.com/SCIInstitute/UncertainSCI/
41877;https://github.com/chlubba/catch22
41876;https://github.com/cran/fpp3
41875;https://github.com/cran/greed
41874;https://github.com/KeccakTeam/Xoodoo/tree/master/XooTools
41872;https://github.com/JeffLIrion//MTSG_Toolbox
41871;https://github.com/UCD4IDS/MultiscaleGraphSignalTransforms.jl
41869;https://github.com/sbjoshi/Open-WBO-Inc
41868;https://github.com/joachim-gassen/tidycovid19
41866;https://github.com/wushulin/ParaDIAG
41865;https://github.com/safwankdb/ReCoNet-PyTorch
41864;https://github.com/HLTCHKUST/CAiRE-COVID
41863;https://github.com/armiro/COVID-CXNet
41711;https://github.com/TGOlson/woot-haskell
41710;https://github.com/d6y/wootjs
41707;https://github.com/kroky/woot
41699;https://github.com/sunblaze-ucb/Libra
41697;https://github.com/zcash/halo2
41696;https://github.com/jrprice/Oclgrind
41695;https://github.com/NLAFET/StarNEig
41694;https://github.com/NLAFET/StarNEig
41691;https://github.com/zhenguonie/2020_StressGAN
41690;https://github.com/opteroncx/SESR
41687;https://github.com/micro-manager/micro-manager
41686;https://github.com/nanthony21/PWSAcquisition
41685;https://github.com/PaulSt/NGSTrefftz
41684;https://github.com/SandoghdarLab/PiSCAT
41683;https://github.com/BackmanLab/PWSpy
41682;https://github.com/nikbpetrov/mufos
41680;https://github.com/oneflyli/Yifei2020Dimensionality
41679;https://github.com/ProfMJSimpson/Substrate_Mediated_Invasion
41678;https://github.com/luigiannelli/threeLS_populationTransfer
41677;https://github.com/fcomitani/simpsom
41676;https://github.com/JustGlowing/minisom
41675;https://github.com/itdxer/neupy
41674;https://github.com/ufvceiec/gema
41672;https://github.com/google-research/google-research/tree/master/dselect_k_moe
41670;https://github.com/cran/RMTL
41669;https://github.com/median-research-group/libmtl
41667;https://github.com/cristian-mattarei/CoSA
41665;https://github.com/SRI-CSL/sally
41664;https://github.com/Boolector/btor2tools
41663;https://github.com/cran/PeakSegDP
41662;https://github.com/tdhock/binseg
41661;https://github.com/cran/PeakSegDisk
41660;https://github.com/cran/plugdensity
41659;https://github.com/cran/harmonicmeanp
41658;https://github.com/cran/CombinePValue
41657;https://github.com/cran/aggregation
41656;https://github.com/cran/metap
41655;https://github.com/cran/poolr
41652;https://github.com/cran/ggstance
41651;https://github.com/cran/tidypaleo
41650;https://github.com/cran/CRF
41649;https://github.com/cran/GiRaF
41648;https://github.com/uzeful/pydensecrf
41647;https://github.com/cran/mrf2d
41646;https://github.com/cran/bbl
41645;https://github.com/cran/TruncatedNormal
41644;https://github.com/cran/tlrmvnmvt
41643;https://github.com/francesco-patacchini/interaction-equation-attracting-manifolds
41642;https://bitbucket.org/vahidi/jdd/src/master/
41641;https://github.com/osu-rsrg/BDD
41639;https://github.com/utwente-fmt/sylvan
41637;https://github.com/conp-solutions/mergesat
41636;https://github.com/msantolino/Median-Bilinear-Models
41635;https://github.com/JuliaGraphs/Graphs.jl
41634;https://github.com/topics/recaptcha-v3
41632;https://github.com/ecthros/uncaptcha
41631;https://github.com/STEELISI/FRADE_CODE
41630;https://github.com/Hippogriff/CSGNet
41629;https://github.com/xue-pai/FuxiCTR
41628;https://github.com/fidelity/mabwiser
41627;https://bitbucket.org/alexandru-iosif/maplebinomials/src/master/
41626;https://github.com/RuoshuiAqua/CRTsampleSearch
41625;https://github.com/cran/SphericalK
41623;https://github.com/cran/sphereplot
41622;https://github.com/PyRsw/PyRsw
41620;https://github.com/samee/obliv-c
41619;https://github.com/esonghori/TinyGarble
41615;https://github.com/llvm/circt
41614;https://github.com/TRUST-TUDa/SAFELearn
41612;https://gitlab.com/securityengineering/HyCC
41611;https://github.com/encryptogroup/MOTION
41610;https://github.com/multiparty/jiff/
41608;https://github.com/lschoe/mpyc
41606;https://github.com/PIPO-Blockcipher/PIPO-Blockcipher
41604;https://github.com/corail-research/SeaPearl.jl
41603;https://github.com/UCLA-VAST/AutoSA
41602;https://github.com/Xilinx/Pynq
41601;https://github.com/UCSBarchlab/PyRTL
41598;https://github.com/pymtl/pymtl3
41596;https://github.com/Xilinx/CHaiDNN
41595;https://github.com/hst10/pylog
41593;https://github.com/uclid-org/medley-solver/tree/SAT2021
41590;https://github.com/defeo/seasign
41589;https://pypi.org/project/pypblib/
41587;https://github.com/ahorn/smt-kit
41586;https://github.com/Boolector/btor2tools
41585;https://github.com/yoni206/lazybv2int
41584;https://github.com/agra-uni-bremen/metaSMT
41583;https://github.com/upscale-project/pono
41582;https://github.com/LeventErkok/sbv
41581;https://github.com/stanford-centaur/smt-switch
41580;https://github.com/cran/cvmgof
41579;https://github.com/marseidl/qbffam
41577;https://github.com/jungtaekkim/bayeso
41576;https://github.com/josejimenezluna/pyGPGO
41574;https://github.com/Yamanaka-Lab-TUAT/BOXVIA#tutorial
41573;https://github.com/ElsevierSoftwareX/SOFTX-D-21-00119
41571;https://gitlab.com/jtholmi/wit_io
41570;https://github.com/cran/ECoL
41566;https://github.com/ecmwf-projects/thermofeel
42939;https://github.com/mciach/masserstein
42938;https://github.com/peal/vole
42935;https://github.com/OpenDrift/opendrift/
42934;https://github.com/mountaindust/Planktos
42932;https://github.com/sss-lehigh/numask
42930;https://github.com/JuliaFirstOrder/ProximalAlgorithms.jl
42927;https://github.com/gabriel-skantze/CoLLIE
42926;https://github.com/Thijsvanede/DeepLog
42923;https://github.com/Macaulay2/Workshop-2016-Warwick/tree/master/Dmodules
42922;https://gitlab.com/ChrisSchoutrop/krylov-adr
42919;https://github.com/Como-DTC-Collaboration/como-models
42918;https://github.com/fpgasystems/MLWeaving
42917;https://github.com/KastnerRG/spector
42914;https://github.com/RC4ML/Shuhai
42913;https://github.com/hsijiaxidian/FOCNet
42912;https://github.com/czbiohub/noise2self
42911;https://github.com/diegovalsesia/speckle2void
42910;https://gitlab.telecom-paris.fr/ring/sar2sar
42908;https://github.com/Ldpe2G/PCANet
42907;https://github.com/caibolun/DehazeNet
42906;https://github.com/jpbalarini/otsus
42903;https://github.com/KIuML/DependenceAwareMLCLoss
42902;https://github.com/mrapp-ke/Boomer
42901;https://bitbucket.org/paulpei/resgcn/src/master/
42900;https://github.com/SkBlaz/reliefe
42898;https://github.com/GAMES-UChile/mogptk
42897;https://github.com/openai/safety-gym
42896;https://github.com/MishaLaskin/curl
42895;https://github.com/hyecheol123/Summary_of_QT-Opt
42894;https://github.com/AnujMahajanOxf/VIREL/tree/master/VIREL_code
42893;https://github.com/openai/vime
42891;https://gitlab.lrde.epita.fr/spot/go2pins
42890;https://github.com/pokaxpoka/sunrise
42889;https://github.com/cran/TSPred
42887;https://github.com/EmmanuelSchaan/HaloGen
42886;https://bitbucket.org/joezuntz/cosmosis/wiki/Home
42885;https://github.com/amoradinejad/limHaloPT
42884;https://github.com/fjprichard/PyAFBF/
42883;https://github.com/cran/Minirand
42882;https://github.com/jeixav/LCS-Tool
42881;https://github.com/haller-group/BarrierTool
42878;https://github.com/champsproject/ldds
42876;https://github.com/RJauslin/StratifiedSampling
42875;https://github.com/manroygood/Quantum-Graphs
42873;https://github.com/ywwry66/QDA-by-Projection-R-Package
42872;https://github.com/cran/MGSS
42871;https://github.com/mucherino/binMeta
42870;https://github.com/cran/FastJM
42869;https://github.com/google/edward2
42868;https://github.com/pyro-ppl/numpyro
42867;https://github.com/dfm/tinygp
42866;https://github.com/blackjax-devs/blackjax/
42865;https://github.com/thomaspinder/GPJax
42863;https://github.com/JHU-NI-LAB/OpenLPT_Shake-The-Box
42862;https://github.com/ronshnapp/MyPTV/
42861;https://github.com/cran/StratigrapheR
42860;https://github.com/cran/archeofrag
42859;https://github.com/cran/epidemia
42858;https://github.com/cran/dsa
42857;https://github.com/cran/stsm
42856;https://github.com/tuckermcelroy/sigex
42855;https://github.com/cmu-phil/causal-learn
42854;https://github.com/uhlerlab/causaldag
42853;https://github.com/cran/BCDAG
42852;https://github.com/cran/ggquiver
42851;https://github.com/cran/eks
42850;https://github.com/cran/lsirm12pl
42849;https://github.com/drplaugher/PCC_Mutations
42848;https://github.com/oneapi-src/oneTBB
42847;https://github.com/opencollab/arpack-ng
42846;https://gitlab.com/lifex/lifex
42845;https://github.com/fabridamicelli/echoes
42844;https://github.com/stefanonardo/pytorch-esn
42843;https://github.com/nschaetti/EchoTorch
42842;https://github.com/cknd/pyESN
42841;https://github.com/blindedjoy/RcTorch
42839;https://github.com/pysat/pysatKamodo
42836;https://github.com/PrefectHQ/prefect
42835;https://github.com/materialsproject/MPContribs
42834;https://github.com/materialsproject/emmet
42831;https://github.com/jacksund/simmate
42830;https://github.com/cran/DAMisc
42829;https://github.com/cran/MNLpred
42828;https://github.com/cran/plot3logit
42827;https://github.com/qinwf/re2r
42825;https://github.com/cran/namedCapture
42824;https://github.com/cran/ore
42823;https://github.com/unicode-org/icu
42821;https://github.com/cran/generics
42820;https://github.com/cran/dragracer
42819;https://github.com/cran/palmerpenguins
42817;https://github.com/cran/furniture
42816;https://github.com/cran/table1
42815;https://github.com/cran/estimatr
42814;https://github.com/cran/skimr
42813;https://github.com/cran/huxtable
42812;https://github.com/cran/modelsummary
42804;https://github.com/ValerioMedeiros/BTestBox
42803;https://github.com/ncatanoc/eventb2java
42800;https://github.com/cran/ClusPred
43492;https://sourceforge.net/projects/xtapp-tapioca/files/
43488;https://github.com/ttadano/alamode
43487;https://github.com/easybuilders/easybuild
43485;https://github.com/haasad/PyPardisoProject
43480;https://git.uwaterloo.ca/flacombe/krypton-softwarex
43479;https://github.com/WestHealth/pyvis/
43478;https://github.com/UWNETLAB/metaknowledge
43477;https://github.com/JetBrains-Research/pubtrends
43476;https://github.com/dhimmel/pubmedpy
43475;https://github.com/NLeSC/litstudy
43474;https://github.com/cran/pedtools
43473;https://github.com/cran/skater
43472;https://github.com/cran/pedsuite
43471;https://github.com/cran/kgp
43470;https://github.com/ajmolstad/MCMVR
43469;https://github.com/ajmolstad/SurvGPR
43468;https://github.com/mfouesneau/NUTS
43467;https://github.com/cran/trialr
43466;https://github.com/cran/hdtg
43465;https://github.com/open-mmlab/mmgeneration
43464;https://github.com/Hosein47/LOGAN
43463;https://github.com/ajbrock/BigGAN-PyTorch
43462;https://github.com/Dotori-HJ/SphereGAN-Pytorch-implementation
43461;https://github.com/pfnet-research/sngan_projection
43460;https://github.com/sangwoomo/instagan
43459;https://github.com/mlpc-ucsd/ViTGAN
43458;https://github.com/endlesssora/deceived
43457;https://github.com/google-research/maskgit
43456;https://github.com/cientgu/vq-diffusion
43455;https://github.com/PeterouZh/CIPS-3D
43454;https://github.com/facebookresearch/StyleNeRF
43453;https://github.com/marcoamonteiro/pi-GAN
43452;https://github.com/autonomousvision/graf
43451;https://github.com/facebookresearch/swav
43450;https://github.com/janesjanes/Pytorch-TextureGAN
43449;https://github.com/assafshocher/InGAN
43448;https://git.droidware.info/wchen342/SketchyGAN
43447;https://github.com/HsinYingLee/DRIT
43446;https://github.com/rajeswar18/pix2shape
43445;https://github.com/thunguyenphuoc/HoloGAN
43444;https://github.com/nogu-atsu/RGBD-GAN
43443;https://github.com/NVIDIA/vid2vid
43442;https://github.com/HyperGAN/HyperGAN
43441;https://github.com/uci-cbcl/DeepLung
43440;https://github.com/bobo0810/S4ND_Pytorch
43439;https://github.com/FENGShuanglang/CPFNet_Project
43438;https://github.com/MIC-DKFZ/nnUNet
43437;https://github.com/kwotsin/mimicry
43436;https://github.com/tensorflow/gan
43435;https://github.com/accel-brain/accel-brain-code/tree/master/Generative-Adversarial-Networks/
43434;https://github.com/NVlabs/imaginaire
43433;https://github.com/BMEII-AI/RadImageNet
43432;https://github.com/MIC-DKFZ/nnDetection
43431;https://github.com/drcandacemakedamoore/cleanX
43430;https://github.com/unit8co/vegans/
43429;https://github.com/torchgan/torchgan
43428;https://github.com/tamarott/SinGAN
43427;https://github.com/POSTECH-CVLab/PyTorch-StudioGAN
43426;https://github.com/richardobi/medigan
43424;https://github.com/AequilibraE/aequilibrae
43423;https://gitlab.kuleuven.be/ITSCreaLab/public-toolboxes/dyntapy
43422;https://github.com/seshnadathur/Revolver/
43421;https://github.com/DESI-UR/VAST
43420;https://github.com/jorgeignaciogc/SBG.jl
43418;https://github.com/pgRouting
43417;https://github.com/optimatorlab/veroviz
43416;https://github.com/gvernard/molet
43415;https://github.com/austinpeel/herculens
43414;https://github.com/cran/obliqueRF
43413;https://github.com/cran/RLT
43412;https://github.com/cran/aorsf
43411;https://github.com/cran/bcaboot
43410;https://github.com/sguha-lab/BayesConics
43409;https://github.com/cran/sugrrants
43408;https://github.com/cran/tsibble
43407;https://github.com/cran/bivrp
43406;https://github.com/jlyang1990/loggle
43405;https://github.com/DataSlingers/clustRviz
43404;https://github.com/mxcai/bivas
43403;https://github.com/cran/influenceR
43402;https://github.com/cran/CINNA
43401;https://github.com/cran/netrankr
43400;https://github.com/cchauve/HyAsP
43397;https://github.com/lsncibb/SummaryAUC
43395;https://github.com/XingjieShi/VIMCO
43394;https://github.com/bdslab/aspralign
43393;https://github.com/multipaths
43392;https://github.com/tanhevg/GpABC.jl
43391;https://github.com/bio-ontology-research-group/D4
43390;https://github.com/linDing-group/Deep-Kcr
43389;https://github.com/SaraOmranian/PC2P
43388;https://github.com/mwgrassgreen/AdaTiSS
43386;https://github.com/PredictiveIntelligenceLab/UQDeepONet
43385;https://github.com/comp-medicine-uc/num-model-alv-perfusion-gas-exchange
43384;https://github.com/nabeelalikhan1/CNN-based-TF-image-enhancement
43380;https://github.com/davidwarne/MLMCandMultifidelityForABC
43379;https://github.com/Pyomo/mpi-sppy
43378;https://github.com/gwr3n/jsdp
43377;https://gitlab.com/scce/add-lib
43376;https://github.com/Simula-UiB/CRHS
41568;https://github.com/zhangys11/pyCLAMs/
41567;https://github.com/sprite728/comfort
41562;https://github.com/fanyun-sun/graph-classification
41560;https://github.com/leonweber/nlprolog
41559;https://github.com/CobayaSampler/cobaya
41558;https://github.com/ehaka/lie-algebra-gradings