forked from thepegleg/pegleg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselcache.json
More file actions
7746 lines (7746 loc) · 385 KB
/
selcache.json
File metadata and controls
7746 lines (7746 loc) · 385 KB
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
[
{
"name": "030",
"path": "semag/030",
"sha": "506feaab0580eef45d32c2a8948237391109609d",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/030?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/030",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/506feaab0580eef45d32c2a8948237391109609d",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/030?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/506feaab0580eef45d32c2a8948237391109609d",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/030"
}
},
{
"name": "1",
"path": "semag/1",
"sha": "716c8a86310e333d4f132cb39ee06457be4923e7",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/1?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/1",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/716c8a86310e333d4f132cb39ee06457be4923e7",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/1?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/716c8a86310e333d4f132cb39ee06457be4923e7",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/1"
}
},
{
"name": "10minutestilldawn",
"path": "semag/10minutestilldawn",
"sha": "40f7b6a080c8535d0d43c1a61b6c1c2e5e3987ae",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/10minutestilldawn?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/10minutestilldawn",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/40f7b6a080c8535d0d43c1a61b6c1c2e5e3987ae",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/10minutestilldawn?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/40f7b6a080c8535d0d43c1a61b6c1c2e5e3987ae",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/10minutestilldawn"
}
},
{
"name": "125",
"path": "semag/125",
"sha": "4def290e496b42c8a54111b0f1ecce2a109f9b29",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/125?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/125",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/4def290e496b42c8a54111b0f1ecce2a109f9b29",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/125?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/4def290e496b42c8a54111b0f1ecce2a109f9b29",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/125"
}
},
{
"name": "125eagmob",
"path": "semag/125eagmob",
"sha": "b8f0ceb5f7221e5997fec389af6e23a9857bd607",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/125eagmob?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/125eagmob",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/b8f0ceb5f7221e5997fec389af6e23a9857bd607",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/125eagmob?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/b8f0ceb5f7221e5997fec389af6e23a9857bd607",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/125eagmob"
}
},
{
"name": "13",
"path": "semag/13",
"sha": "24ae95ca1ce8eaec3405c710c494f1f126cf3a0b",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/13?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/13",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/24ae95ca1ce8eaec3405c710c494f1f126cf3a0b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/13?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/24ae95ca1ce8eaec3405c710c494f1f126cf3a0b",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/13"
}
},
{
"name": "13eagmob",
"path": "semag/13eagmob",
"sha": "c6f0fcbb811a77fa0ad7c44b2dbca82434158464",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/13eagmob?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/13eagmob",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c6f0fcbb811a77fa0ad7c44b2dbca82434158464",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/13eagmob?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c6f0fcbb811a77fa0ad7c44b2dbca82434158464",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/13eagmob"
}
},
{
"name": "15eagmob",
"path": "semag/15eagmob",
"sha": "ccd59f70101e0daa0f96677e44ce8ea279acb9c2",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/15eagmob?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/15eagmob",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/ccd59f70101e0daa0f96677e44ce8ea279acb9c2",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/15eagmob?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/ccd59f70101e0daa0f96677e44ce8ea279acb9c2",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/15eagmob"
}
},
{
"name": "17",
"path": "semag/17",
"sha": "6ab81a799e5dedc9b12afce378bdd974edabfa90",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/17?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/17",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/6ab81a799e5dedc9b12afce378bdd974edabfa90",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/17?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/6ab81a799e5dedc9b12afce378bdd974edabfa90",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/17"
}
},
{
"name": "17eagmob",
"path": "semag/17eagmob",
"sha": "0b3a63ac157826724f1629a7ccb500f2cd64156c",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/17eagmob?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/17eagmob",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/0b3a63ac157826724f1629a7ccb500f2cd64156c",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/17eagmob?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/0b3a63ac157826724f1629a7ccb500f2cd64156c",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/17eagmob"
}
},
{
"name": "18eagmob",
"path": "semag/18eagmob",
"sha": "c195ffb6871c8f38189041588e559bf9524a841b",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/18eagmob?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/18eagmob",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c195ffb6871c8f38189041588e559bf9524a841b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/18eagmob?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c195ffb6871c8f38189041588e559bf9524a841b",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/18eagmob"
}
},
{
"name": "1defense",
"path": "semag/1defense",
"sha": "142bd7f293afc7fb4525ca897b17fd7794809c53",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/1defense?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/1defense",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/142bd7f293afc7fb4525ca897b17fd7794809c53",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/1defense?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/142bd7f293afc7fb4525ca897b17fd7794809c53",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/1defense"
}
},
{
"name": "1hobo",
"path": "semag/1hobo",
"sha": "ef286870e8fe4f2e08254ed70e9644f3ead5c3ff",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/1hobo?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/1hobo",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/ef286870e8fe4f2e08254ed70e9644f3ead5c3ff",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/1hobo?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/ef286870e8fe4f2e08254ed70e9644f3ead5c3ff",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/1hobo"
}
},
{
"name": "1on1soccer",
"path": "semag/1on1soccer",
"sha": "599ef48a27dbecf2ebeacc75c82fbdeb5d79124b",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/1on1soccer?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/1on1soccer",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/599ef48a27dbecf2ebeacc75c82fbdeb5d79124b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/1on1soccer?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/599ef48a27dbecf2ebeacc75c82fbdeb5d79124b",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/1on1soccer"
}
},
{
"name": "1v1lol",
"path": "semag/1v1lol",
"sha": "11d1bc19ac59dc4d4c1664ae395f0e44d0126d27",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/1v1lol?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/1v1lol",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/11d1bc19ac59dc4d4c1664ae395f0e44d0126d27",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/1v1lol?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/11d1bc19ac59dc4d4c1664ae395f0e44d0126d27",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/1v1lol"
}
},
{
"name": "2000si",
"path": "semag/2000si",
"sha": "6f2b820c3398cf994fdc8e0c7fabab2f94d9f982",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2000si?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/2000si",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/6f2b820c3398cf994fdc8e0c7fabab2f94d9f982",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2000si?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/6f2b820c3398cf994fdc8e0c7fabab2f94d9f982",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/2000si"
}
},
{
"name": "2048",
"path": "semag/2048",
"sha": "740324fb94b65f2108be01aed7aba4b34e557fdb",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2048?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/2048",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/740324fb94b65f2108be01aed7aba4b34e557fdb",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2048?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/740324fb94b65f2108be01aed7aba4b34e557fdb",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/2048"
}
},
{
"name": "2d",
"path": "semag/2d",
"sha": "f77948a6749bb0838e8125c20ca8de1ddc881123",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2d?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/2d",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/f77948a6749bb0838e8125c20ca8de1ddc881123",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2d?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/f77948a6749bb0838e8125c20ca8de1ddc881123",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/2d"
}
},
{
"name": "2drocketleague",
"path": "semag/2drocketleague",
"sha": "7a410dacae7b9781517400243c189c390b4f1563",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2drocketleague?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/2drocketleague",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/7a410dacae7b9781517400243c189c390b4f1563",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2drocketleague?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/7a410dacae7b9781517400243c189c390b4f1563",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/2drocketleague"
}
},
{
"name": "2flash",
"path": "semag/2flash",
"sha": "d9b085bf04d7f00b15822b585be88cbdbb16a6fc",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2flash?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/2flash",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/d9b085bf04d7f00b15822b585be88cbdbb16a6fc",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2flash?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/d9b085bf04d7f00b15822b585be88cbdbb16a6fc",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/2flash"
}
},
{
"name": "2hobo",
"path": "semag/2hobo",
"sha": "18c10ded18f3eccefe68b964b59567173762062b",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2hobo?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/2hobo",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/18c10ded18f3eccefe68b964b59567173762062b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2hobo?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/18c10ded18f3eccefe68b964b59567173762062b",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/2hobo"
}
},
{
"name": "2sadv",
"path": "semag/2sadv",
"sha": "859445e861db9f7738c766db1fbe28ed3b9da777",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2sadv?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/2sadv",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/859445e861db9f7738c766db1fbe28ed3b9da777",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2sadv?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/859445e861db9f7738c766db1fbe28ed3b9da777",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/2sadv"
}
},
{
"name": "2sonic",
"path": "semag/2sonic",
"sha": "fc97f765707b7588025a1337d7066655ac6370f8",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2sonic?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/2sonic",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/fc97f765707b7588025a1337d7066655ac6370f8",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/2sonic?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/fc97f765707b7588025a1337d7066655ac6370f8",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/2sonic"
}
},
{
"name": "3flash",
"path": "semag/3flash",
"sha": "1701b82656b7839505369729c478f8eecc658142",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/3flash?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/3flash",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/1701b82656b7839505369729c478f8eecc658142",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/3flash?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/1701b82656b7839505369729c478f8eecc658142",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/3flash"
}
},
{
"name": "3hobo",
"path": "semag/3hobo",
"sha": "6ac83f5ba3d33e6b822b275dbfc93fc38b769239",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/3hobo?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/3hobo",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/6ac83f5ba3d33e6b822b275dbfc93fc38b769239",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/3hobo?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/6ac83f5ba3d33e6b822b275dbfc93fc38b769239",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/3hobo"
}
},
{
"name": "3line",
"path": "semag/3line",
"sha": "f13f8182a8ad8e3783610846089af2a250c9c4b8",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/3line?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/3line",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/f13f8182a8ad8e3783610846089af2a250c9c4b8",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/3line?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/f13f8182a8ad8e3783610846089af2a250c9c4b8",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/3line"
}
},
{
"name": "3sadv",
"path": "semag/3sadv",
"sha": "3822edbf8e1ee08d7b4fdb447bac1d26d45fa2ae",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/3sadv?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/3sadv",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/3822edbf8e1ee08d7b4fdb447bac1d26d45fa2ae",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/3sadv?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/3822edbf8e1ee08d7b4fdb447bac1d26d45fa2ae",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/3sadv"
}
},
{
"name": "3sonic",
"path": "semag/3sonic",
"sha": "f47dfc0534ec8e9de64c6aa2b8522d87495df2fc",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/3sonic?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/3sonic",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/f47dfc0534ec8e9de64c6aa2b8522d87495df2fc",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/3sonic?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/f47dfc0534ec8e9de64c6aa2b8522d87495df2fc",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/3sonic"
}
},
{
"name": "4flash",
"path": "semag/4flash",
"sha": "d1ed016e1567bf5dddb6e7516563e90d8bf4515f",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/4flash?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/4flash",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/d1ed016e1567bf5dddb6e7516563e90d8bf4515f",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/4flash?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/d1ed016e1567bf5dddb6e7516563e90d8bf4515f",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/4flash"
}
},
{
"name": "4hobo",
"path": "semag/4hobo",
"sha": "e770bcf31081a813252069822a10c1f760d2d9ce",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/4hobo?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/4hobo",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/e770bcf31081a813252069822a10c1f760d2d9ce",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/4hobo?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/e770bcf31081a813252069822a10c1f760d2d9ce",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/4hobo"
}
},
{
"name": "5flash",
"path": "semag/5flash",
"sha": "15136baec41afc2f5aa6c996d9e670246e75b4cf",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/5flash?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/5flash",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/15136baec41afc2f5aa6c996d9e670246e75b4cf",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/5flash?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/15136baec41afc2f5aa6c996d9e670246e75b4cf",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/5flash"
}
},
{
"name": "5hobo",
"path": "semag/5hobo",
"sha": "f51635ed732a4c4975e922281aa4624d9c78e07b",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/5hobo?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/5hobo",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/f51635ed732a4c4975e922281aa4624d9c78e07b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/5hobo?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/f51635ed732a4c4975e922281aa4624d9c78e07b",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/5hobo"
}
},
{
"name": "60sburgerrun",
"path": "semag/60sburgerrun",
"sha": "d346ef635453cb387a35aac24ed679753933dc50",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/60sburgerrun?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/60sburgerrun",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/d346ef635453cb387a35aac24ed679753933dc50",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/60sburgerrun?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/d346ef635453cb387a35aac24ed679753933dc50",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/60sburgerrun"
}
},
{
"name": "6flash",
"path": "semag/6flash",
"sha": "e05f112a747eceeac1e689f3b3f2d255cbb658a5",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/6flash?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/6flash",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/e05f112a747eceeac1e689f3b3f2d255cbb658a5",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/6flash?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/e05f112a747eceeac1e689f3b3f2d255cbb658a5",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/6flash"
}
},
{
"name": "6hobo",
"path": "semag/6hobo",
"sha": "c298120b145a11c03ba27d717092c0de5914da92",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/6hobo?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/6hobo",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c298120b145a11c03ba27d717092c0de5914da92",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/6hobo?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c298120b145a11c03ba27d717092c0de5914da92",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/6hobo"
}
},
{
"name": "7hobo",
"path": "semag/7hobo",
"sha": "6aaca3de9cd5e14e0c16cd8b00647e68ff137678",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/7hobo?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/7hobo",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/6aaca3de9cd5e14e0c16cd8b00647e68ff137678",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/7hobo?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/6aaca3de9cd5e14e0c16cd8b00647e68ff137678",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/7hobo"
}
},
{
"name": "9007199254740992",
"path": "semag/9007199254740992",
"sha": "c33e86b4fc57f165b732206e9ef209742bada847",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/9007199254740992?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/9007199254740992",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c33e86b4fc57f165b732206e9ef209742bada847",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/9007199254740992?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c33e86b4fc57f165b732206e9ef209742bada847",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/9007199254740992"
}
},
{
"name": "achieveunlocked",
"path": "semag/achieveunlocked",
"sha": "57e4f7291666253aaab3f45d894c2826437f2780",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/achieveunlocked?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/achieveunlocked",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/57e4f7291666253aaab3f45d894c2826437f2780",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/achieveunlocked?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/57e4f7291666253aaab3f45d894c2826437f2780",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/achieveunlocked"
}
},
{
"name": "achieveunlocked2",
"path": "semag/achieveunlocked2",
"sha": "31234c0126f696d45b298ff0192d01caa72d3f57",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/achieveunlocked2?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/achieveunlocked2",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/31234c0126f696d45b298ff0192d01caa72d3f57",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/achieveunlocked2?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/31234c0126f696d45b298ff0192d01caa72d3f57",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/achieveunlocked2"
}
},
{
"name": "adarkroom",
"path": "semag/adarkroom",
"sha": "5d473e2ed45b5782ac9c06a38e7f8bb965c27577",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/adarkroom?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/adarkroom",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/5d473e2ed45b5782ac9c06a38e7f8bb965c27577",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/adarkroom?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/5d473e2ed45b5782ac9c06a38e7f8bb965c27577",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/adarkroom"
}
},
{
"name": "adofai",
"path": "semag/adofai",
"sha": "aee48b987713f34f9b59f4b25ba9087c5b26034d",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/adofai?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/adofai",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/aee48b987713f34f9b59f4b25ba9087c5b26034d",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/adofai?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/aee48b987713f34f9b59f4b25ba9087c5b26034d",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/adofai"
}
},
{
"name": "adventure-capitalist",
"path": "semag/adventure-capitalist",
"sha": "7b05249d03e59ed687824ec231941b656f802e44",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/adventure-capitalist?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/adventure-capitalist",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/7b05249d03e59ed687824ec231941b656f802e44",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/adventure-capitalist?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/7b05249d03e59ed687824ec231941b656f802e44",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/adventure-capitalist"
}
},
{
"name": "adventure",
"path": "semag/adventure",
"sha": "6b9731a5b314537adab638a5a1ab6796238641fc",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/adventure?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/adventure",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/6b9731a5b314537adab638a5a1ab6796238641fc",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/adventure?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/6b9731a5b314537adab638a5a1ab6796238641fc",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/adventure"
}
},
{
"name": "advgta",
"path": "semag/advgta",
"sha": "c46a1124c76053c252ba42b86caefb614d280907",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/advgta?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/advgta",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c46a1124c76053c252ba42b86caefb614d280907",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/advgta?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c46a1124c76053c252ba42b86caefb614d280907",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/advgta"
}
},
{
"name": "ageofwar",
"path": "semag/ageofwar",
"sha": "37a2a927879b96b541ca9c62442b78fc55071ed1",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/ageofwar?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/ageofwar",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/37a2a927879b96b541ca9c62442b78fc55071ed1",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/ageofwar?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/37a2a927879b96b541ca9c62442b78fc55071ed1",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/ageofwar"
}
},
{
"name": "al2",
"path": "semag/al2",
"sha": "a7f721067d73036f836fff305bb00cae4d5a929b",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/al2?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/al2",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/a7f721067d73036f836fff305bb00cae4d5a929b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/al2?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/a7f721067d73036f836fff305bb00cae4d5a929b",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/al2"
}
},
{
"name": "alpha",
"path": "semag/alpha",
"sha": "4a4976203dd8852f6b9577581161b90b4c87e96b",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/alpha?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/alpha",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/4a4976203dd8852f6b9577581161b90b4c87e96b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/alpha?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/4a4976203dd8852f6b9577581161b90b4c87e96b",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/alpha"
}
},
{
"name": "amazing-rope-police",
"path": "semag/amazing-rope-police",
"sha": "b4f36e5cada4232ec4723c2101ec63e82fba1e1b",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/amazing-rope-police?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/amazing-rope-police",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/b4f36e5cada4232ec4723c2101ec63e82fba1e1b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/amazing-rope-police?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/b4f36e5cada4232ec4723c2101ec63e82fba1e1b",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/amazing-rope-police"
}
},
{
"name": "amongus",
"path": "semag/amongus",
"sha": "6815d20b193955a333d3c829bdcddde32ee46dcb",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/amongus?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/amongus",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/6815d20b193955a333d3c829bdcddde32ee46dcb",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/amongus?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/6815d20b193955a333d3c829bdcddde32ee46dcb",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/amongus"
}
},
{
"name": "amongusnew",
"path": "semag/amongusnew",
"sha": "c06f7c65ad455cb3af4c0a46a1a84cab4d7ca376",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/amongusnew?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/amongusnew",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c06f7c65ad455cb3af4c0a46a1a84cab4d7ca376",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/amongusnew?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c06f7c65ad455cb3af4c0a46a1a84cab4d7ca376",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/amongusnew"
}
},
{
"name": "animalcrossingwildworld",
"path": "semag/animalcrossingwildworld",
"sha": "7ea0b498cc08f576bd03e67596378c6bdb5e825b",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/animalcrossingwildworld?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/animalcrossingwildworld",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/7ea0b498cc08f576bd03e67596378c6bdb5e825b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/animalcrossingwildworld?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/7ea0b498cc08f576bd03e67596378c6bdb5e825b",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/animalcrossingwildworld"
}
},
{
"name": "aow2",
"path": "semag/aow2",
"sha": "dfe31d82e333906d322dcd89076a23da2b9c1588",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/aow2?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/aow2",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/dfe31d82e333906d322dcd89076a23da2b9c1588",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/aow2?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/dfe31d82e333906d322dcd89076a23da2b9c1588",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/aow2"
}
},
{
"name": "auto",
"path": "semag/auto",
"sha": "77f8fbd5ff787bba5b5c108ca2ab4b9d95f54674",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/auto?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/auto",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/77f8fbd5ff787bba5b5c108ca2ab4b9d95f54674",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/auto?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/77f8fbd5ff787bba5b5c108ca2ab4b9d95f54674",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/auto"
}
},
{
"name": "avalanche",
"path": "semag/avalanche",
"sha": "7205a70dea8f14ee3f02fb52e5c7d7a99e3ff0b3",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/avalanche?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/avalanche",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/7205a70dea8f14ee3f02fb52e5c7d7a99e3ff0b3",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/avalanche?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/7205a70dea8f14ee3f02fb52e5c7d7a99e3ff0b3",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/avalanche"
}
},
{
"name": "awesometanks",
"path": "semag/awesometanks",
"sha": "ecfb87309fc2cb0e6df56d6f7d7b636888ed558f",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/awesometanks?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/awesometanks",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/ecfb87309fc2cb0e6df56d6f7d7b636888ed558f",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/awesometanks?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/ecfb87309fc2cb0e6df56d6f7d7b636888ed558f",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/awesometanks"
}
},
{
"name": "badicecream",
"path": "semag/badicecream",
"sha": "28026e4c6fead51b670419bd4c345a5a7acc0423",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/badicecream?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/badicecream",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/28026e4c6fead51b670419bd4c345a5a7acc0423",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/badicecream?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/28026e4c6fead51b670419bd4c345a5a7acc0423",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/badicecream"
}
},
{
"name": "badicecream2",
"path": "semag/badicecream2",
"sha": "845b1d2b6d753a03986067fdf8c08b64de25565c",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/badicecream2?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/badicecream2",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/845b1d2b6d753a03986067fdf8c08b64de25565c",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/badicecream2?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/845b1d2b6d753a03986067fdf8c08b64de25565c",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/badicecream2"
}
},
{
"name": "badicecream3",
"path": "semag/badicecream3",
"sha": "8d05698f986e42c0a7363af1ba22adc0d791d94e",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/badicecream3?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/badicecream3",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/8d05698f986e42c0a7363af1ba22adc0d791d94e",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/badicecream3?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/8d05698f986e42c0a7363af1ba22adc0d791d94e",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/badicecream3"
}
},
{
"name": "badpiggies",
"path": "semag/badpiggies",
"sha": "335d1c8d97bc1a53439ef6dcc3f0098b7b52371b",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/badpiggies?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/badpiggies",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/335d1c8d97bc1a53439ef6dcc3f0098b7b52371b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/badpiggies?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/335d1c8d97bc1a53439ef6dcc3f0098b7b52371b",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/badpiggies"
}
},
{
"name": "badtimesimulator",
"path": "semag/badtimesimulator",
"sha": "c46b099aad5864177426ac600dca815146bebe8c",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/badtimesimulator?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/badtimesimulator",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c46b099aad5864177426ac600dca815146bebe8c",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/badtimesimulator?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/c46b099aad5864177426ac600dca815146bebe8c",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/badtimesimulator"
}
},
{
"name": "bal",
"path": "semag/bal",
"sha": "4da2f357f3d0dc7a3e2c871ff52cf17da986e4e8",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/bal?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/bal",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/4da2f357f3d0dc7a3e2c871ff52cf17da986e4e8",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/bal?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/4da2f357f3d0dc7a3e2c871ff52cf17da986e4e8",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/bal"
}
},
{
"name": "baldis-basics",
"path": "semag/baldis-basics",
"sha": "0eadbce7cab4b568bd655f50f8a98de78dbb41e4",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/baldis-basics?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/baldis-basics",
"git_url": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/0eadbce7cab4b568bd655f50f8a98de78dbb41e4",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/baldis-basics?ref=main",
"git": "https://api.github.com/repos/sebastian-92/selenite1/git/trees/0eadbce7cab4b568bd655f50f8a98de78dbb41e4",
"html": "https://github.com/sebastian-92/selenite1/tree/main/semag/baldis-basics"
}
},
{
"name": "ballisticchickens",
"path": "semag/ballisticchickens",
"sha": "72b651bbc397c9e837a189946d2f89a9b30e5402",
"size": 0,
"url": "https://api.github.com/repos/sebastian-92/selenite1/contents/semag/ballisticchickens?ref=main",
"html_url": "https://github.com/sebastian-92/selenite1/tree/main/semag/ballisticchickens",