radixmap 0.2.4

Rust-based Radix Tree for fast prefix lookup, supporting named param, glob, regex
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
// Test data comes from https://github.com/github/rest-api-description
const PLAIN_URLS_1024: &[&[u8]] = &[
    b"/repos/octocat/Hello-World-Template/git/tags",
    b"/repos/dtrupenn/Tetris/issues/events",
    b"/code-security/code-scanning/troubleshooting-sarif",
    b"/repos/octo-org/octo-repo/compare/",
    b"/articles/converting-an-organization-member-to-an-outside-collaborator/",
    b"/repos/octocat/hello-world/code-scanning/analyses/201",
    b"/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-alerts",
    b"/gists/8481a81af6b7a2d418f2/468aac8caed5f0c3b859b8286968",
    b"/get-started/exploring-projects-on-github/saving-repositories-with-stars",
    b"/repos/Codertocat/Hello-World/git/commits",
    b"/repos/github/hello-world/check-runs/4",
    b"/repos/octocat/Hello-World-Template/contributors",
    b"/organizations/652551/personal-access-tokens/25381/repositories",
    b"/codes_of_conduct/citizen_code_of_conduct",
    b"/octocat/Spoon-Knife/commit/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/branches",
    b"/repos/octokit/octokit.rb/contents/README.md",
    b"/repos/octocat/socm/import/authors/2268558",
    b"/repos/octocat/Hello-World/git/trees/b4eecafa9be2f2006ce1b709d6857b07069b4608",
    b"/orgs/github/teams/justice-league/discussions/1/comments/1",
    b"/repos/octocat-repo/hello-world/downloads",
    b"/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9",
    b"/search-github/searching-on-github/searching-issues-and-pull-requests",
    b"/repos/octocat/octorepo/git/blobs/fff6fe3a23bf1c8ea0692b4a883af99bee26fd3b",
    b"/repos/octocat/Hello-World-Template/forks",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/commits",
    b"/repos/octokit/octokit.rb/issues/comments/123",
    b"/batterseapower/pinyin-toolkit/issues/132",
    b"/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site",
    b"/repos/octo-org/octo-repo/commits",
    b"/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests",
    b"/repos/octocat/hello-world/branches/main/protection/required_signatures",
    b"/repos/octocat/hello-world/branches/main/protection/dismissal_restrictions",
    b"/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization",
    b"/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt",
    b"/actions/deployment/targeting-different-environments/using-environments-for-deployment",
    b"/repos/Codertocat/Hello-World/git/tags",
    b"/repos/dtrupenn/Tetris/contributors",
    b"/repos/octocat-repo/hello-world/statuses/",
    b"/repos/api-playground/projects-test/issues/3",
    b"/octocat/Hello-World/commit/553c2077f0edc3d5dc5d17262f6aa498e69d6f8e",
    b"/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax",
    b"/repos/octocat/hello-world/branches/main/protection/dismissal_restrictions/users",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/git/blobs",
    b"/users/octocat/packages/container/hello_docker/881",
    b"/repos/octocat/Hello-World/pulls/53",
    b"/users/testorg-ea8ec76d71c3af4b/starred",
    b"/repos/Codertocat/Hello-World/downloads",
    b"/orgs/octo-org/packages/npm/hello-world-npm/versions/245301",
    b"/repos/octocat/Hello-World/issues/1347",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/labels",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/comments",
    b"/octocat/Hello-World/blob/master/notes/hello.txt",
    b"/timeforschool/intro-to-strings-1337-monalisa",
    b"/repos/octo-org/hello-world/assignees",
    b"/repos/octo-org/octo-repo/actions/workflows/161335",
    b"/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories",
    b"/issues/using-labels-and-milestones-to-track-work/managing-labels",
    b"/repos/octocat/Hello-World/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d",
    b"/repos/octocat-repo/hello-world/deployments",
    b"/repositories/releasing-projects-on-github/about-releases",
    b"/github/searching-for-information-on-github/searching-issues-and-pull-requests",
    b"/repos/octocat/octo-name-repo/git/trees",
    b"/repos/monalisa/my-repo/rulesets/314",
    b"/apps/creating-github-apps/registering-a-github-app/using-webhooks-with-github-apps",
    b"/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start",
    b"/actions/managing-workflow-runs/manually-running-a-workflow",
    b"/repos/octo-org/hello-world/contents/",
    b"/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository",
    b"/gists/aa5a315d61ae9438b18d/commits",
    b"/developers/overview/managing-deploy-keys",
    b"/organizations/1/team/2343027/discussions/1",
    b"/users/github-product-roadmap/followers",
    b"/repos/octocat-repo/hello-world/compare/",
    b"/github/setting-up-and-managing-organizations-and-teams/about-teams",
    b"/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd",
    b"/actions/reference/workflow-syntax-for-github-actions",
    b"/orgs/github/packages/container/super-linter",
    b"/repos/github/hello-world/actions/runs/5",
    b"/repos/octocat/linguist/labels/enhancement",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/issues/comments",
    b"/repos/octo-org/octo-repo/git/trees",
    b"/repos/Octocoders/Hello-World/subscription",
    b"/packages/learn-github-packages/about-permissions-for-github-packages",
    b"/code-security/security-advisories/global-security-advisories/about-the-github-advisory-database",
    b"/repos/octocat/linguist/labels/bug",
    b"/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt",
    b"/octo-org/hello-world/security/dependabot/1",
    b"/repos/octocat/Hello-World/deployments",
    b"/repos/octocat-repo/hello-world/git/tags",
    b"/repos/octo-org/hello-world/merges",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/events",
    b"/repos/octocat/hello-world/code-scanning/analyses",
    b"/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository",
    b"/rest/codespaces/organization-secrets",
    b"/users/octocat/packages/rubygems/octo-name/versions/387039",
    b"/rest/overview/rate-limits-for-the-rest-api",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/keys",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/git/refs",
    b"/repos/octocat/Hello-World/labels/bug%20",
    b"/organizations/1/team/2343027/discussions/1/comments",
    b"/rest/actions/self-hosted-runners",
    b"/repos/octocat/Spoon-Knife/subscription",
    b"/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions",
    b"/organizations/42/actions/permissions/selected-actions",
    b"/repos/Codertocat/Hello-World/compare/",
    b"/github/getting-started-with-github/githubs-products",
    b"/octocat/Hello-World/releases/v1.0.0",
    b"/repos/octocat/Hello-World/contents/CODE_OF_CONDUCT.md",
    b"/code-security/secure-coding/sarif-support-for-code-scanning",
    b"/octocat/Hello-World/blob/master/LICENSE",
    b"/articles/configuring-automated-security-fixes",
    b"/repositories/42/issues/comments/1",
    b"/repos/octocat/Hello-World/contents/notes/hello.txt",
    b"/repos/octocat/Hello-World/milestones/1/labels",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/issues",
    b"/repos/octocat/Hello-World/branches/main",
    b"/repos/octocat/Hello-World/issues/events/1",
    b"/organizations/652551/personal-access-token-requests/25381/repositories",
    b"/repos/octo-org/octo-repo/languages",
    b"/changes/2019-12-03-internal-visibility-changes",
    b"/repos/octocat/Hello-World/tree/827efc6d56897b048c772eb4087f854f46256132",
    b"/gists/2decf6c462d9b4418f2/comments",
    b"/repos/Codertocat/Hello-World/notifications",
    b"/repos/octocat/Hello-World/languages",
    b"/repos/octocat/Spoon-Knife/git/trees",
    b"/rest/guides/encrypting-secrets-for-the-rest-api",
    b"/rest/guides/getting-started-with-the-checks-api",
    b"/repos/octocat-repo/hello-world/contents/",
    b"/copilot/managing-copilot/managing-access-for-copilot-in-your-organization",
    b"/repos/owner/private-repo/secret-scanning/alerts/2",
    b"/repos/github/hello-world/actions/runs/5/cancel",
    b"/issues/using-labels-and-milestones-to-track-work/about-milestones",
    b"/authentication/connecting-to-github-with-ssh/checking-for-existing-ssh-keys",
    b"/repos/octocat-repo/hello-world/stargazers",
    b"/github/docs/blob/main/CODE_OF_CONDUCT.md",
    b"/articles/about-security-alerts-for-vulnerable-dependencies",
    b"/gists/a6db0bec360bb87e9418/comments/1",
    b"/repos/octocat/Hello-World/contents/PULL_REQUEST_TEMPLATE",
    b"/organizations/my-org/settings/rules/21",
    b"/repos/octocat-repo/hello-world/contributors",
    b"/repos/octo-org/octo-repo/actions/runs/30433642/jobs",
    b"/repos/octocat/Hello-World/releases/1/assets",
    b"/repos/octo-org/octo-repo/collaborators",
    b"/get-started/quickstart/fork-a-repo",
    b"/repos/octocat/Hello-World-Template/assignees",
    b"/octocat/Hello-World/blob/master/CONTRIBUTING",
    b"/orgs/ORGANIZATION/codespaces/secrets/SECRET_NAME/repositories",
    b"/repos/octocat-repo/hello-world/releases",
    b"/repos/octocat/Spoon-Knife/commits",
    b"/repos/octocat/octo-name-repo/git/blobs",
    b"/repos/api-playground/projects-test",
    b"/repos/octo-org/hello-world/languages",
    b"/repos/octocat/Spoon-Knife/deployments",
    b"/actions/deployment/about-deployments",
    b"/code-security/security-advisories/working-with-global-security-advisories-from-the-github-advisory-database/about-global-security-advisories",
    b"/orgs/octo-org/actions/variables/USERNAME/repositories",
    b"/app/installations/25381/access_tokens",
    b"/communities/documenting-your-project-with-wikis/about-wikis",
    b"/repos/octocat-repo/hello-world/subscribers",
    b"/repos/octocat/Hello-World-Template/collaborators",
    b"/repos/octocat/hello-world/git/commits/f14d7debf9775f957cf4f1e8176da0786431f72b",
    b"/repos/octo-org/hello-world/downloads",
    b"/users/octocat/packages/container/hello_docker/45763",
    b"/repos/octo-org/octo-repo/actions/runs/29679449",
    b"/users/github-product-roadmap/following",
    b"/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams",
    b"/repos/github/hello-world/actions/runs/5/logs",
    b"/repositories/42/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac",
    b"/repos/octocat/Hello-World-Template/events",
    b"/repos/octocat/Hello-World/milestones/1",
    b"/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks",
    b"/repos/octocat/Hello-World/assignees",
    b"/code-security/security-advisories/repository-security-advisories/publishing-a-repository-security-advisory",
    b"/orgs/github/packages/container/package/goodbye_docker",
    b"/repos/Octocoders/Hello-World/labels",
    b"/repos/octocat/octo-name-repo/keys",
    b"/issues/planning-and-tracking-with-projects/managing-items-in-your-project/archiving-items-from-your-project",
    b"/octocat/octorepo/tree/main/src/images",
    b"/repos/octo-org/octo-docs/actions/artifacts/11/zip",
    b"/repos/Octocoders/Hello-World/statuses/",
    b"/repos/dtrupenn/Tetris/milestones",
    b"/repos/octocat/Hello-World/issues/comments",
    b"/developers/apps/guides/creating-ci-tests-with-the-checks-api",
    b"/search-github/searching-on-github/searching-commits",
    b"/organizations/octo-org/settings/installations/25381",
    b"/repos/octocat/octorepo/git/trees/a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d",
    b"/repos/octocat/Hello-World/issues/events",
    b"/owner/private-repo/security/secret-scanning/42",
    b"/repos/octocat/Hello-World-Template/subscribers",
    b"/repos/octocat/Hello-World/git/blobs/f484d249c660418515fb01c2b9662073663c242e",
    b"/repos/octocat/Spoon-Knife/git/blobs",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/pulls",
    b"/code-security/repository-security-advisories/about-github-security-advisories-for-repositories",
    b"/repos/octocat/Hello-World/pulls/1347/commits",
    b"/users/github-product-roadmap/received_events",
    b"/repos/octo-org/octo-repo/actions/runs/30433642/cancel",
    b"/code-security/getting-started/github-security-features",
    b"/apps/building-github-apps/creating-github-apps-from-a-manifest/",
    b"/articles/synchronizing-teams-between-your-identity-provider-and-github/",
    b"/repos/octo-org/octo-repo/actions/runs/30433642/rerun",
    b"/repos/octocat/Hello-World/git/blobs/7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b",
    b"/octo-org/octo-repo/runs/29679449/jobs/399444496",
    b"/repos/octo-org/octo-docs/actions/artifacts/13/zip",
    b"/repos/octo-org/octo-repo/dependabot/alerts/2",
    b"/repos/octocat/Hello-World/keys/1",
    b"/repos/octo-org/octo-repo/stargazers",
    b"/repos/octocat/Hello-World/branches/master/protection/restrictions/teams",
    b"/repos/octocat/Hello-World/issues/comments/1081119451",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/milestones",
    b"/repos/octocat/Hello-World-Template",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/merges",
    b"/repos/octo-org/octo-repo/contents/",
    b"/articles/searching-for-repositories/",
    b"/orgs/github/packages/container/hello_docker/836",
    b"/user/repository_invitations/1296269",
    b"/repos/github/hello-world/check-suites/12",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/tags",
    b"/repos/octocat-repo/hello-world/labels",
    b"/repos/octocat/Hello-World/notifications",
    b"/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts",
    b"/admin/overview/about-enterprise-accounts",
    b"/repos/batterseapower/pinyin-toolkit/issues/132",
    b"/repos/github/hello-world/check-suites/5",
    b"/octokit/octokit.rb/tree/master/lib/octokit",
    b"/octocat/Hello-World/discussions/90",
    b"/repos/octocat/octo-name-repo/teams",
    b"/repos/octocat/Hello-World/git/refs/heads/feature-a",
    b"/repos/Codertocat/Hello-World/releases",
    b"/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e/status",
    b"/sponsors/integrating-with-github-sponsors/configuring-webhooks-for-events-in-your-sponsored-account",
    b"/repos/github/roadmap/issues/comments/1130876857/reactions",
    b"/actions/managing-workflow-runs/approving-workflow-runs-from-public-forks",
    b"/repos/octocat/hello-world/branches/main/protection/restrictions/users",
    b"/repos/octocat/hello-world/branches/master/protection",
    b"/repos/octo-org/octo-repo/git/blobs",
    b"/users/octocat/packages/rubygems/octo-name",
    b"/repos/owner-482f3203ecf01f67e9deb18e/BBB_Private_Repo/git/blobs/23f6827669e43831def8a7ad935069c8bd418261",
    b"/repos/octocat/hello-world/branches/main/protection/restrictions/teams",
    b"/organizations/1/team/2403582/discussions/1/comments/1",
    b"/repos/github/developer.github.com/pages/builds/latest",
    b"/octocat/hello-world/code-scanning/42",
    b"/repos/octocat/octo-name-repo/contents/",
    b"/repos/octocat/Hello-World/git/blobs",
    b"/billing/managing-billing-for-github-copilot/managing-your-github-copilot-subscription-for-your-organization-or-enterprise",
    b"/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm64-2.164.0.tar.gz",
    b"/notifications/threads/1/subscription",
    b"/repos/octocat/Hello-World/releases/1",
    b"/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266",
    b"/repos/github/hello-world/actions/runs/5/attempts/3",
    b"/users/other_user/received_events",
    b"/repos/octo-org/octo-repo/git/commits",
    b"/repos/octocat/octo-name-repo/comments",
    b"/repos/octocat/Hello-World/comments/1",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/statuses/",
    b"/owner/private-repo/security/secret-scanning/2",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/notifications",
    b"/repos/octocat/Hello-World-Template/git/trees",
    b"/graphql/overview/resource-limitations",
    b"/orgs/community/discussions/17405",
    b"/repos/octocat/Hello-World-Template/notifications",
    b"/articles/about-repository-transfers/",
    b"/repos/Octocoders/Hello-World/commits",
    b"/site-policy/github-terms/github-terms-of-service",
    b"/repos/github/hello-world/pages/deployments/4fd754f7e594640989b406850d0bc8f06a121251",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/pulls",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/hooks",
    b"/repo/a-package/security/advisories/GHSA-1234-5678-9012",
    b"/octo-org/octo-repo-ghsa-abcd-1234-efgh",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh",
    b"/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3",
    b"/repos/octocat-repo/hello-world/hooks",
    b"/github/example/dependency_graph/sbom-abcdef123456",
    b"/repos/octocat/Hello-World/git/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d",
    b"/github/hello-world/deployments/activity_log",
    b"/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/start",
    b"/repos/octocat/Hello-World/commits/553c2077f0edc3d5dc5d17262f6aa498e69d6f8e",
    b"/repos/octo-org/octo-repo/actions/workflows/159038",
    b"/octocat/hello-world/security/dependabot/1",
    b"/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1",
    b"/repos/octocat/Hello-World-Template/keys",
    b"/octocat/Hello-World/commit/762941318ee16e59dabbacb1b4049eec22f0d303",
    b"/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e",
    b"/repos/octocat/Hello-World/git/commits/da5a433788da5c255edad7979b328b67d79f53f6",
    b"/rest/guides/getting-started-with-the-git-database-api",
    b"/repos/octocat-repo/hello-world/git/refs",
    b"/sponsors/getting-started-with-github-sponsors/about-github-sponsors",
    b"/articles/signing-commits-with-gpg",
    b"/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/events",
    b"/repos/octocat/Hello-World/subscription",
    b"/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request",
    b"/repos/octo-org/octo-repo/deployments",
    b"/repos/jquery/jquery/subscription",
    b"/repos/octocat/octo-name-repo/pulls",
    b"/user/octocat/packages/container/goodbye_docker",
    b"/repos/octocat/Spoon-Knife/stargazers",
    b"/repos/octocat/hello-world/branches/main/protection/required_pull_request_reviews",
    b"/repos/octocat/Hello-World/commits/7638417db6d59f3c431d3e1f261cc637155684cd",
    b"/billing/managing-billing-for-github-copilot/about-billing-for-github-copilot",
    b"/repos/dtrupenn/Tetris/subscription",
    b"/repos/octocat/Hello-World/code-scanning/codeql/databases/java",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/teams",
    b"/repos/octocat/Spoon-Knife/downloads",
    b"/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization",
    b"/repos/octokit/octokit.rb/git/blobs/fff6fe3a23bf1c8ea0692b4a883af99bee26fd3b",
    b"/repos/octocat/octo-name-repo/commits",
    b"/users/testorg-ea8ec76d71c3af4b/gists",
    b"/account-and-profile/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github/managing-your-subscriptions",
    b"/repos/monalisa/monalisa/code-scanning/alerts/2",
    b"/orgs/github/packages/container/super-linter/versions/786068",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/subscribers",
    b"/owner/repo/security/secret-scanning/1",
    b"/get-started/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer",
    b"/octocat/Hello-World/pull/1347.patch",
    b"/repos/octocat/Hello-World/git/refs/heads/featureA",
    b"/repos/octocat/Hello-World-Template/branches",
    b"/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/managing-rulesets-for-a-repository",
    b"/repos/Codertocat/Hello-World/forks",
    b"/repos/octocat/octo-name-repo/tags",
    b"/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token",
    b"/code-security/code-scanning/managing-code-scanning-alerts/about-code-scanning-alerts",
    b"/marketplace_listing/plans/1313/accounts",
    b"/repos/octokit/octokit.rb/contents/bin/some-symlink",
    b"/articles/transferring-an-issue-to-another-repository/",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/contributors",
    b"/octokit/octokit.rb/blob/master/README.md",
    b"/repos/octocat/Hello-World/releases",
    b"/users/octocat/packages/rubygems/octo-name/versions/3497268",
    b"/repos/octokit/octokit.rb/issues/123",
    b"/copilot/managing-copilot/managing-policies-for-github-copilot-in-your-organization",
    b"/repos/octocat/Hello-World-Template/",
    b"/repos/octocat/hello-world/code-scanning/alerts/4",
    b"/app/installations/1/access_tokens",
    b"/repos/github/hello-world/actions/runs/5/jobs",
    b"/octocat/Hello-World/wiki/_compare/302c0b7e200761c9dd9b57e57db540ee0b4293a5",
    b"/repos/batterseapower/pinyin-toolkit",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/git/blobs",
    b"/repos/dtrupenn/Tetris/deployments",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/tags",
    b"/repos/Octocoders/Hello-World/hooks",
    b"/organizations/org/dependabot/secrets/my_secret/repositories",
    b"/repos/octocat/octo-name-repo/collaborators",
    b"/repos/octocat/hello-world/code-scanning/alerts/3/instances",
    b"/repos/octocat-repo/hello-world/forks",
    b"/organizations/2/invitations/1/teams",
    b"/repos/octocat/Hello-World-Template/hooks",
    b"/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e",
    b"/repos/octo-org/hello-world/git/refs",
    b"/orgs/github/packages/container/hello_docker/versions/836",
    b"/octocat/octo-name-repo/packages/40201",
    b"/rest/codespaces/repository-secrets",
    b"/code-security/codeql-for-vs-code/getting-started-with-codeql-for-vs-code/running-codeql-queries-at-scale-with-multi-repository-variant-analysis",
    b"/repos/octocat/Hello-World/pull/2846",
    b"/repos/octocat/Hello-World/hooks/12345678/pings",
    b"/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q",
    b"/repos/github/roadmap/issues/events/6635165802",
    b"/repos/the-org/an-org-repo/branches/master/protection/dismissal_restrictions/users",
    b"/rest/collaborators/collaborators",
    b"/repos/octo-org/hello-world/hooks",
    b"/repos/dtrupenn/Tetris/collaborators",
    b"/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility",
    b"/octo-org/octo-repo/actions/runs/30433642",
    b"/repos/octokit/octokit.rb/git/blobs/452a98979c88e093d682cab404a3ec82babebb48",
    b"/articles/about-merge-methods-on-github/",
    b"/benbalter/gman/blob/master/LICENSE",
    b"/repos/octocat/Spoon-Knife/assignees",
    b"/repos/octokit/octokit.rb/contents/lib/octokit.rb",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/downloads",
    b"/repos/Codertocat/Hello-World/git/blobs",
    b"/repos/octo-org/octo-repo/branches",
    b"/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews",
    b"/teams/2403582/discussions/1/reactions",
    b"/users/octocat/packages/container/package/hello_docker",
    b"/repos/octocat/hello-world/code-scanning/analyses/200",
    b"/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/machines",
    b"/repos/octocat/octo-name-repo/compare/",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/languages",
    b"/repos/batterseapower/pinyin-toolkit/issues/132/labels",
    b"/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e",
    b"/repos/Octocoders/Hello-World/forks",
    b"/rest/security-advisories/repository-advisories",
    b"/repos/octocat/Hello-World/commits",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/subscription",
    b"/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac",
    b"/repos/Codertocat/Hello-World/collaborators",
    b"/repos/octocat-repo/hello-world/git/trees",
    b"/repos/owner-79e94e2d36b3fd06a32bb213/AAA_Public_Repo/branches/branch/with/protection/protection",
    b"/repos/octocat-repo/hello-world/subscription",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/compare/",
    b"/repos/Codertocat/Hello-World/check-runs/128620228/annotations",
    b"/repos/octocat-repo/hello-world/issues",
    b"/repos/octo-org/octo-repo/actions/runs/30433642/attempts/1",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/git/tags",
    b"/repos/octo-org/hello-world/issues",
    b"/gists/2decf6c462d9b4418f2/commits",
    b"/repos/octocat/Hello-World-Template/git/refs",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/git/trees",
    b"/actions/runner/releases/download/v2.164.0/actions-runner-linux-x64-2.164.0.tar.gz",
    b"/octocat/Hello-World/blob/master/README.md",
    b"/repos/octocat/Hello-World/trees/9fb037999f264ba9a7fc6274d15fa3ae2ab98312",
    b"/repos/octocat/Spoon-Knife/releases",
    b"/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork/",
    b"/repos/octo-org/hello-world/git/blobs",
    b"/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e",
    b"/rest/secret-scanning/secret-scanning",
    b"/repos/octocat/octo-name-repo/assignees",
    b"/Codertocat/Hello-World/runs/128620228",
    b"/repos/octocat-repo/hello-world/commits",
    b"/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f",
    b"/articles/repository-permission-levels-for-an-organization/",
    b"/users/github-product-roadmap/repos",
    b"/repos/octo-org/hello-world/comments",
    b"/user/codespaces/monalisa-octocat-hello-world-f8adfad99a",
    b"/repos/octocat/example/deployments/42/statuses/1",
    b"/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd",
    b"/repos/octocat/Hello-World/pulls/comments/1",
    b"/repos/octo-org/hello-world/releases",
    b"/organizations/github/octocat.private.atom",
    b"/repositories/167174/git/blobs/d7212f9dee2dcc18f084d7df8f417b80846ded5a",
    b"/repos/octocat/Hello-World/stargazers",
    b"/octocat/hello-world/code-scanning/4",
    b"/octo-org/octo-repo/blob/master/.github/workflows/269289",
    b"/repos/octocat-repo/hello-world/notifications",
    b"/repos/dtrupenn/Tetris/notifications",
    b"/users/github-product-roadmap/gists",
    b"/repos/octo-org/hello-world/teams",
    b"/repos/octo-org/hello-world/forks",
    b"/users/octocat/packages/container/hello_docker/214",
    b"/repos/octocat/Hello-World/collaborators",
    b"/repos/Octocoders/Hello-World/git/refs",
    b"/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3",
    b"/repos/octo-org/octo-repo/subscription",
    b"/repos/octo-org/octo-repo/actions/runs/30433642/logs",
    b"/repos/octocat/Hello-World-Template/stargazers",
    b"/repos/github/hello-world/actions/jobs/21",
    b"/repos/octocat/Hello-World-Template/tags",
    b"/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request",
    b"/repos/octocat-repo/hello-world/issues/events",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/issues/events",
    b"/jquery/jquery/blob/825ac3773694e0cd23ee74895fd5aeb535b27da4/src/attributes/classes.js",
    b"/rest/guides/using-the-rest-api-to-interact-with-checks",
    b"/repos/octocat/Spoon-Knife/subscribers",
    b"/rest/using-the-rest-api/using-pagination-in-the-rest-api",
    b"/repos/Octocoders/Hello-World/git/blobs",
    b"/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby",
    b"/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-teams-and-people-with-access-to-your-repository",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/stargazers",
    b"/octocat/Hello-World/blob/master/CODE_OF_CONDUCT.md",
    b"/repos/octocat/Hello-World/hooks/1",
    b"/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt",
    b"/repos/octocat-repo/hello-world/assignees",
    b"/articles/publicizing-or-concealing-organization-membership",
    b"/repo/a-package/security/advisories/GHSA-abcd-1234-efgh",
    b"/repos/repo/a-package/security-advisories/GHSA-1234-5678-9012",
    b"/octocat/Hello-World/pull/1347.diff",
    b"/repos/octo-org/octo-repo/actions/runs/30433642/artifacts",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/contributors",
    b"/repositories/creating-and-managing-repositories/about-repositories",
    b"/organizations/organizing-members-into-teams/about-teams",
    b"/repositories/42/actions/permissions/selected-actions",
    b"/rest/copilot/copilot-user-management",
    b"/repos/octocat/Hello-World/issues",
    b"/repos/Octocoders/Hello-World/git/commits",
    b"/repos/project/a-package/security-advisories/GHSA-abcd-1234-efgh",
    b"/repos/Octocoders/Hello-World/issues/comments",
    b"/repos/octocat/octo-name-repo/labels",
    b"/repos/Codertocat/Hello-World/git/trees",
    b"/repos/octocat/Hello-World/compare/",
    b"/repos/octocat/Spoon-Knife/merges",
    b"/repos/octocat/Spoon-Knife/git/refs",
    b"/repos/octocat/example/subscription",
    b"/repos/github/hello-world/environments/staging",
    b"/rest/guides/best-practices-for-using-the-rest-api",
    b"/repos/octocat-repo/hello-world/events",
    b"/repos/Octocoders/Hello-World/compare/",
    b"/orgs/github/packages/container/package/hello_docker",
    b"/code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github",
    b"/octocat/Hello-World/wiki/Home/302c0b7e200761c9dd9b57e57db540ee0b4293a5",
    b"/repos/Codertocat/Hello-World/issues/events",
    b"/code-security/secret-scanning/secret-scanning-patterns",
    b"/repos/owner/private-repo/secret-scanning/alerts/42",
    b"/repos/octocat/Hello-World-Template/releases",
    b"/repos/octocat/Hello-World/releases/assets/1",
    b"/repos/octocat/octo-name-repo/branches",
    b"/octocat/hello-world/security/dependabot/2",
    b"/repos/Codertocat/Hello-World/subscription",
    b"/articles/setting-team-creation-permissions-in-your-organization",
    b"/repos/octocat-repo/hello-world/teams",
    b"/repos/dtrupenn/Tetris/stargazers",
    b"/repos/octocat/Hello-World/downloads",
    b"/repos/octocat-repo/hello-world/pulls",
    b"/repos/octocat/Hello-World-Template/statuses/",
    b"/repos/octocat/socm/import/authors/2268559",
    b"/repos/octocat/octo-name-repo/downloads",
    b"/organizations/org/variables/USERNAME/repositories",
    b"/repos/octocat/Hello-World/branches/master/protection/restrictions/apps",
    b"/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch",
    b"/repos/Octocoders/Hello-World/git/trees",
    b"/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e",
    b"/repos/octocat/Spoon-Knife/events",
    b"/repos/Codertocat/Hello-World/issues/comments",
    b"/repos/octokit/octokit.rb/git/trees/a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d",
    b"/settings/connections/applications",
    b"/repos/octocat-repo/hello-world/milestones",
    b"/issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository",
    b"/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories",
    b"/repos/octocat/Hello-World/autolinks/1",
    b"/repos/Octocoders/Hello-World/languages",
    b"/repos/octocat/hello-world/branches/main/protection/required_status_checks",
    b"/teams/2343027/discussions/1/comments",
    b"/octocat/Hello-World/git/commit/da5a433788da5c255edad7979b328b67d79f53f6",
    b"/repos/octocat-repo/hello-world/comments",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/forks",
    b"/rest/deployments/branch-policies",
    b"/repos/Codertocat/Hello-World/comments",
    b"/repos/octocat-repo/hello-world/git/commits",
    b"/apps/creating-github-apps/setting-up-a-github-app/creating-a-github-app-from-a-manifest",
    b"/repos/octo-org/octo-repo/comments",
    b"/octokit/octokit.rb/blob/master/bin/some-symlink",
    b"/repos/github/roadmap/issues/events/6430295168",
    b"/codes_of_conduct/contributor_covenant",
    b"/repos/octo-org/hello-world/notifications",
    b"/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc",
    b"/repos/octocat/hello-world/dependabot/alerts/2",
    b"/rest/guides/getting-started-with-the-rest-api",
    b"/repos/repo/a-package/security-advisories/GHSA-abcd-1234-efgh",
    b"/blog/1614-two-factor-authentication",
    b"/repos/octocat/Hello-World/git/trees/9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f",
    b"/repos/Octocoders/Hello-World/contributors",
    b"/repos/octo-org/octo-repo/issues/comments",
    b"/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f/comments",
    b"/organizations/github/settings/installations/1",
    b"/repos/octocat/Hello-World/contents/file1.txt",
    b"/repos/octocat/Spoon-Knife/contents/",
    b"/repos/github/developer.github.com/pages",
    b"/repos/octocat/Hello-World/git/trees/827efc6d56897b048c772eb4087f854f46256132",
    b"/search-github/searching-on-github/searching-users",
    b"/repos/octocat/Hello-World-Template/comments",
    b"/repos/octocat/Spoon-Knife/compare/",
    b"/repos/Codertocat/Hello-World/commits",
    b"/repos/octo-org/octo-repo/actions/jobs/399444496",
    b"/articles/about-github-s-ip-addresses/",
    b"/repos/octocat/Hello-World/pulls/1",
    b"/octo-org/octo-repo/workflows/Linter/badge.svg",
    b"/repos/octocat/Hello-World/hooks/1/test",
    b"/repos/octocat/hello-world/branches/main/protection/enforce_admins",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/issues/events",
    b"/repos/octocat/Hello-World/git/refs",
    b"/users/github-product-roadmap/subscriptions",
    b"/rest/guides/working-with-comments",
    b"/repos/Octocoders/Hello-World/collaborators",
    b"/repos/octocat/Hello-World-Template/labels",
    b"/repos/Codertocat/Hello-World/issues",
    b"/repos/octocat/Spoon-Knife/commits/a30c19e3f13765a3b48829788bc1cb8b4e95cee4",
    b"/repos/octocat/hello-world/branches/main/protection/restrictions",
    b"/repos/octocat/Spoon-Knife/statuses/",
    b"/repos/octocat/Hello-World-Template/git/blobs",
    b"/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories",
    b"/users/octocat/packages/rubygems/octo-name/versions/169770",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/issues/comments",
    b"/repos/octokit/octokit.rb/contents/lib/octokit",
    b"/repos/benbalter/gman/contents/LICENSE",
    b"/code-security/secret-scanning/about-secret-scanning",
    b"/repos/octocat/Hello-World-Template/commits",
    b"/repos/octocat/Hello-World/issues/1347/comments",
    b"/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6",
    b"/rest/guides/using-pagination-in-the-rest-api",
    b"/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/collaborators",
    b"/repos/octocat/hello-world/code-scanning/alerts/4/instances",
    b"/repos/octocat/Spoon-Knife/languages",
    b"/pages/configuring-a-custom-domain-for-your-github-pages-site",
    b"/repos/octo-org/octo-repo/statuses/",
    b"/repos/octocat-repo/hello-world/collaborators",
    b"/repos/Octocoders/Hello-World/pulls",
    b"/repos/octo-org/octo-repo/check-suites/414944374",
    b"/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop",
    b"/repos/octo-org/hello-world/git/trees",
    b"/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start",
    b"/rest/codes-of-conduct/codes-of-conduct",
    b"/repos/github/hello-world/actions/workflows/main.yaml",
    b"/repos/batterseapower/pinyin-toolkit/issues/132/events",
    b"/packages/learn-github-packages/introduction-to-github-packages",
    b"/repos/Codertocat/Hello-World/deployments",
    b"/repos/Octocoders/Hello-World/keys",
    b"/repos/octocat/octo-name-repo/git/commits",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/hooks",
    b"/repos/Codertocat/Hello-World/git/refs",
    b"/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15",
    b"/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac",
    b"/orgs/github/teams/justice-league/discussions/1",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/teams",
    b"/repos/batterseapower/pinyin-toolkit/issues/132/comments",
    b"/repos/octocat/octo-name-repo/releases",
    b"/repos/octo-org/octo-repo/milestones",
    b"/repositories/167174/contents/src/attributes/classes.js",
    b"/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning",
    b"/marketplace_listing/plans/1111/accounts",
    b"/organizations/collaborating-with-groups-in-organizations/about-organizations",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/assignees",
    b"/repos/octocat/Hello-World/milestones",
    b"/repos/octocat/Hello-World/pulls/comments",
    b"/repos/octo-org/hello-world/statuses/",
    b"/search-github/searching-on-github/searching-code",
    b"/repos/Octocoders/Hello-World/deployments",
    b"/repos/octocat-repo/hello-world/merges",
    b"/articles/securing-your-account-with-two-factor-authentication-2fa/",
    b"/octocat/Hello-World/commit/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d",
    b"/repos/octo-org/octo-repo/actions/workflows/269289",
    b"/repos/octo-org/octo-repo/issues/events",
    b"/images/error/octokitten_happy.gif",
    b"/repos/Octocoders/Hello-World/tags",
    b"/repos/octo-org/hello-world/branches",
    b"/repos/octocat/Hello-World-Template/issues/comments",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/deployments",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/git/tags",
    b"/issues/planning-and-tracking-with-projects/learning-about-projects/about-projects",
    b"/repos/octocat/Hello-World/issues/1347/events",
    b"/repos/octocat/example/deployments/1",
    b"/repos/Codertocat/Hello-World/keys",
    b"/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
    b"/repos/octocat/Hello-World/issues/comments/1",
    b"/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e",
    b"/repos/octo-org/octo-repo/git/tags",
    b"/repos/octocat/Hello-World-Template/issues",
    b"/repos/octo-org/hello-world/stargazers",
    b"/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository",
    b"/repos/octocat/octorepo/contents/src/app.js",
    b"/repos/Octocoders/Hello-World/notifications",
    b"/repos/Octocoders/Hello-World/milestones",
    b"/repos/Octocoders/Hello-World/hooks/109948940/pings",
    b"/octocat/Hello-World/zipball/v0.1",
    b"/repos/dtrupenn/Tetris/git/commits",
    b"/users/testorg-ea8ec76d71c3af4b/followers",
    b"/repos/github/roadmap/issues/events/6430296748",
    b"/repos/octo-org/hello-world/dependabot/alerts/1",
    b"/repos/octo-org/octo-repo/assignees",
    b"/repos/Octocoders/Hello-World/subscribers",
    b"/octocat/Hello-World/compare/master...topic.diff",
    b"/repos/octocat/octo-name-repo/issues",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/",
    b"/articles/about-comparing-branches-in-pull-requests",
    b"/repos/octocat/Hello-World/branches/master/protection/restrictions",
    b"/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines",
    b"/repos/Octocoders/Hello-World/issues/events",
    b"/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards",
    b"/actions/using-jobs/using-jobs-in-a-workflow",
    b"/repos/octocat/Hello-World/git/commits/18a43cd8e1e3a79c786e3d808a73d23b6d212b16",
    b"/repos/octocat/Hello-World/pulls/2846/reviews/80",
    b"/repos/octocat-repo/hello-world/git/blobs",
    b"/gists/aa5a315d61ae9438b18d/57a7f021a713b1c5a6a199b54cc514735d2d462f",
    b"/repos/Codertocat/Hello-World/events",
    b"/test-org/test-repo/blob/main/README.md",
    b"/repos/octocat/Hello-World/check-suites/5/check-runs",
    b"/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd",
    b"/repositories/viewing-activity-and-data-for-your-repository/understanding-connections-between-repositories",
    b"/repositories/working-with-files/managing-large-files",
    b"/orgs/github/teams/justice-league",
    b"/repos/octo-org/octo-repo/releases",
    b"/orgs/github/packages/container/goodbye_docker",
    b"/github/administering-a-repository/renaming-a-branch",
    b"/issues/tracking-your-work-with-issues/about-issues",
    b"/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop",
    b"/repos/octocat/Spoon-Knife/milestones",
    b"/github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages",
    b"/apps/building-github-apps/authenticating-with-github-apps/",
    b"/repos/octocat/Hello-World/git/tags",
    b"/organizations/managing-user-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization",
    b"/repos/octocat/Hello-World/git/blobs/44b4fc6d56897b048c772eb4087f854f46256132",
    b"/repos/octoorg/octocat/actions/runs/42",
    b"/repos/Codertocat/Hello-World/assignees",
    b"/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository",
    b"/repos/octocat/Hello-World/statuses/",
    b"/repos/owner/private-repo/secret-scanning/alerts/1/locations",
    b"/repos/octocat/octo-name-repo/merges",
    b"/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization",
    b"/repos/octocat/hello-world/dependabot/alerts/1",
    b"/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue",
    b"/repos/octo-org/hello-world/events",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012",
    b"/repos/octocat/Spoon-Knife/branches",
    b"/octo-org/octo-repo-ghsa-1234-5678-9012",
    b"/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles",
    b"/images/error/other_user_happy.gif",
    b"/repos/Codertocat/Hello-World/milestones",
    b"/repos/octocat/Spoon-Knife/issues/comments",
    b"/articles/permission-levels-for-a-user-account-repository/",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/releases",
    b"/repos/batterseapower/pinyin-toolkit/labels/bug",
    b"/repos/octocat/socm/import/authors",
    b"/repos/octocat/octo-name-repo/contributors",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/git/commits",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/statuses/",
    b"/rest/orgs/personal-access-tokens",
    b"/repos/octocat/Hello-World-Template/deployments",
    b"/repos/octocat/Hello-World/branches/master/protection/required_status_checks",
    b"/repos/octocat/Spoon-Knife/comments",
    b"/github/administering-a-repository/requiring-a-linear-commit-history",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/subscribers",
    b"/repos/octocat/octo-name-repo/git/refs",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/notifications",
    b"/repos/octo-org/octo-repo/contributors",
    b"/octocat/hello-world/code-scanning/3",
    b"/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5",
    b"/repos/octocat/hello-world/branches/main/protection/required_status_checks/contexts",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/compare/",
    b"/repos/owner/repo/secret-scanning/alerts/1",
    b"/repos/octocat/Spoon-Knife/collaborators",
    b"/repos/github/hello-world/pulls/1",
    b"/repos/octocat/Hello-World-Template/merges",
    b"/repositories/releasing-projects-on-github/managing-releases-in-a-repository",
    b"/actions/runner/releases/download/v2.164.0/actions-runner-osx-x64-2.164.0.tar.gz",
    b"/organizations/org/secrets/my_secret/repositories",
    b"/code-security/security-advisories/working-with-repository-security-advisories/evaluating-the-security-settings-of-a-repository",
    b"/users/testorg-ea8ec76d71c3af4b/received_events",
    b"/repos/Octocoders/Hello-World/stargazers",
    b"/repos/octocat-repo/hello-world/languages",
    b"/repos/Codertocat/Hello-World/branches",
    b"/repos/octo-org/hello-world/git/commits",
    b"/repos/octocat/Hello-World/trees/fc6274d15fa3ae2ab983129fb037999f264ba9a7",
    b"/repos/octocat/Hello-World-Template/milestones",
    b"/repos/octocat/octo-name-repo/deployments",
    b"/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c",
    b"/octocat/Hello-World/compare/master...topic.patch",
    b"/users/github-product-roadmap/events",
    b"/users/testorg-ea8ec76d71c3af4b/subscriptions",
    b"/repos/octocat/Hello-World/zipball/v1.0.0",
    b"/communities/setting-up-your-project-for-healthy-contributions/about-community-profiles-for-public-repositories",
    b"/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd",
    b"/repos/octocat/Hello-World/branches/master/protection/enforce_admins",
    b"/repos/octocat/Hello-World/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d/comments",
    b"/repos/octocat/octo-name-repo/issues/comments",
    b"/repos/octocat/Hello-World/subscribers",
    b"/repos/octocat/Hello-World-Template/pulls",
    b"/repos/Codertocat/Hello-World/check-suites/118578147",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/assignees",
    b"/repos/octocat/hello-world/code-scanning/alerts/42",
    b"/articles/assigning-issues-and-pull-requests-to-other-github-users/",
    b"/organizations/1/team/2403582/discussions/1",
    b"/users/testorg-ea8ec76d71c3af4b/following",
    b"/repos/jquery/jquery/notifications",
    b"/repos/Octocoders/Hello-World/downloads",
    b"/repos/Octocoders/Hello-World/releases",
    b"/users/github-product-roadmap/starred",
    b"/repos/octo-org/hello-world/pulls",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/contents/",
    b"/repos/octo-org/hello-world/compare/",
    b"/repos/Codertocat/Hello-World/labels",
    b"/teams/2403582/discussions/1/comments/1",
    b"/repos/octo-org/octo-repo/check-runs/399444496",
    b"/repos/Codertocat/Hello-World/tags",
    b"/code-security/code-scanning/troubleshooting-sarif/results-exceed-limit",
    b"/octocat/Hello-World/releases/download/v1.0.0/example.zip",
    b"/repos/octocat/Hello-World/pulls/2846",
    b"/repos/octocat/Hello-World/compare/master...topic",
    b"/repos/owner/private-repo/secret-scanning/alerts/2/locations",
    b"/repos/octocat/Hello-World/branches/master/protection/restrictions/users",
    b"/timeforschool/intro-to-strings-1337-octocat",
    b"/repos/Codertocat/Hello-World/hooks",
    b"/repos/octocat/octo-name-repo/forks",
    b"/code-security/securing-your-organization/introduction-to-securing-your-organization-at-scale/about-enabling-security-features-at-scale",
    b"/orgs/github/packages/container/super-linter/786068",
    b"/repos/the-org/an-org-repo/branches/master/protection/dismissal_restrictions/teams",
    b"/repos/octo-org/hello-world/issues/comments",
    b"/repos/Codertocat/Hello-World/contents/",
    b"/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization",
    b"/users/Octocoders/received_events",
    b"/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd",
    b"/repos/octocat/Spoon-Knife/issues",
    b"/octo-org/octo-repo/blob/main/im-blocked.md",
    b"/community/community/discussions/39082",
    b"/repos/octocat/octo-name-repo/hooks",
    b"/repos/octo-org/hello-world/git/tags",
    b"/repos/octocat/Hello-World/branches/master/protection/required_signatures",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/languages",
    b"/repos/Octocoders/Hello-World/teams",
    b"/repos/octocat/octo-name-repo/statuses/",
    b"/repos/octocat/Hello-World/pull/1347",
    b"/repos/Codertocat/Hello-World/statuses/",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/keys",
    b"/repos/github/hello-world/pages/builds/latest",
    b"/repos/octocat/Hello-World/pulls/12",
    b"/actions/runner/releases/download/v2.164.0/actions-runner-win-x64-2.164.0.zip",
    b"/repos/octo-org/octo-repo/git/refs",
    b"/notifications/threads/2/subscription",
    b"/repos/octocat/octo-name-repo/events",
    b"/developers/apps/getting-started-with-apps/about-apps",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/subscription",
    b"/repos/Octocoders/Hello-World/branches",
    b"/repos/Codertocat/Hello-World/subscribers",
    b"/repos/octocat/Hello-World/hooks/12345678/deliveries",
    b"/octocat/Hello-World/git/commit/18a43cd8e1e3a79c786e3d808a73d23b6d212b16",
    b"/repos/Codertocat/Hello-World/deployments/326191728",
    b"/repos/octocat/Hello-World/contributors",
    b"/repos/octocat/Hello-World/branches/master",
    b"/repos/Codertocat/Hello-World/pulls",
    b"/users/github-product-roadmap/orgs",
    b"/gists/aa5a315d61ae9438b18d/comments/",
    b"/repos/octocat/Hello-World-Template/compare/",
    b"/repos/octocat/Hello-World/tarball/v1.0.0",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/releases",
    b"/repos/dtrupenn/Tetris/subscribers",
    b"/orgs/github/packages/container/package/super-linter",
    b"/repos/github/docs/community/code_of_conduct",
    b"/repos/the-org/an-org-repo/branches/master/protection/dismissal_restrictions",
    b"/repos/octocat-repo/hello-world/tags",
    b"/repos/octocat/Hello-World/pulls/comments/12",
    b"/organizations/my-org/settings/rules/432",
    b"/repos/octocat/Spoon-Knife/labels",
    b"/repos/octocat/octo-name-repo/milestones",
    b"/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop",
    b"/octocat/Hello-World/milestones/v1.0",
    b"/repos/github/hello-world/actions/runs/5/rerun/artifacts",
    b"/repos/octocat/Hello-World/labels/enhancement",
    b"/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches",
    b"/actions/runner/releases/download/v2.164.0/actions-runner-linux-arm-2.164.0.tar.gz",
    b"/articles/commenting-on-a-pull-request",
    b"/repos/jquery/jquery/contents/test/qunit",
    b"/repos/octocat/Hello-World/issues/comments/1825855898",
    b"/orgs/github/packages/container/hello_docker",
    b"/orgs/octo-org/packages/npm/hello-world-npm/versions/209672",
    b"/repos/octocat/example/deployments/42",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/stargazers",
    b"/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization",
    b"/repos/Octocoders/Hello-World/hooks/109948940",
    b"/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5",
    b"/repos/Codertocat/Hello-World/merges",
    b"/api-playground/projects-test/projects/1",
    b"/octo-org/octo-repo/blob/master/.github/workflows/161335",
    b"/repos/github/hello-world/actions/artifacts/5",
    b"/octocat/Hello-World/commit/7d1b31e74ee336d15cbd21741bc88a537ed063a0",
    b"/repos/octocat/Hello-World/hooks/1/pings",
    b"/repos/octocat/Hello-World/comments",
    b"/repos/Octocoders/Hello-World/merges",
    b"/repos/octocat/example/deployments/1/statuses",
    b"/octocat/Spoon-Knife/commit/a30c19e3f13765a3b48829788bc1cb8b4e95cee4",
    b"/repos/octocat/Hello-World/git/blobs/45b983be36b73c0788dc9cbcb76cbb80fc7bb057",
    b"/repos/Codertocat/Hello-World/check-runs/128620228",
    b"/repos/octocat/Hello-World/branches",
    b"/repos/octocat/Hello-World-Template/subscription",
    b"/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners",
    b"/repos/Codertocat/Hello-World/pulls/2",
    b"/repos/jquery/qunit/git/trees/6ca3721222109997540bd6d9ccd396902e0ad2f9",
    b"/repos/octocat/Spoon-Knife/git/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f",
    b"/repos/octocat/octo-name-repo/subscribers",
    b"/repos/octocat/Hello-World/contents/ISSUE_TEMPLATE",
    b"/repos/octocat/Hello-World/merges",
    b"/rest/dependency-graph/dependency-submission",
    b"/repos/Octocoders/Hello-World/comments",
    b"/repos/Codertocat/Hello-World/languages",
    b"/repos/octocat/hello-world/git/blobs/af5626b4a114abcb82d63db7c8082c3c4756e51b",
    b"/repos/octo-org/hello-world/issues/events",
    b"/repos/Octocoders/Hello-World/events",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/branches",
    b"/repos/Codertocat/Hello-World/teams",
    b"/repos/octocat-repo/hello-world/secret-scanning/alerts/42/locations",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/downloads",
    b"/repos/jquery/jquery/issues/events",
    b"/repos/octo-org/octo-repo/downloads",
    b"/articles/repository-permission-levels-for-an-organization",
    b"/repos/Octocoders/Hello-World/contents/",
    b"/repos/octocat/Spoon-Knife/git/tags",
    b"/github/managing-subscriptions-and-notifications-on-github/about-notifications",
    b"/rest/code-scanning/code-scanning",
    b"/user/octocat/packages/container/package/goodbye_docker",
    b"/repos/octocat/Hello-World/events",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/labels",
    b"/rest/deployments/protection-rules",
    b"/octokit/octokit.rb/blob/master/lib/octokit.rb",
    b"/repos/octocat/Hello-World/git/refs/heads/feature-b",
    b"/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches",
    b"/orgs/octocat/memberships/defunkt",
    b"/octocat-repo/hello-world/security/secret-scanning/42",
    b"/repos/monalisa/my-repo/rulesets/42",
    b"/user/secrets/SECRET_NAME/repositories",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/issues",
    b"/repos/octocat/Spoon-Knife/git/commits",
    b"/repos/github/hello-world/actions/artifacts/5/zip",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/merges",
    b"/repos/octocat/Hello-World/git/7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b",
    b"/octocat/Hello-World/compare/master...topic",
    b"/rest/dependency-graph/dependency-review",
    b"/repos/octocat/Hello-World-Template/teams",
    b"/repos/octo-org/oct-repo/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
    b"/repos/octocat/socm/import/authors/2268557",
    b"/repos/octocat/Hello-World-Template/downloads",
    b"/repos/github/developer.github.com/pages/builds/5472601",
    b"/organizations/16/invitations/1/teams",
    b"/repos/octocat/hello-world/branches/main/protection/restrictions/apps",
    b"/repos/octocat/Hello-World-Template/issues/events",
    b"/repos/octocat/Hello-World/pulls/1347/comments",
    b"/actions/setup-ruby/blob/master/.github/workflows/ruby.yaml",
    b"/repos/octo-org/hello-world/subscribers",
    b"/repos/octocat/Hello-World/labels/bug",
    b"/example/dependency_graph/sbom-123",
    b"/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews",
    b"/octocat/Hello-World/blob/master/PULL_REQUEST_TEMPLATE",
    b"/repos/octocat/hello-world/code-scanning/alerts/3",
    b"/repos/octocat/Hello-World/hooks/12345678/test",
    b"/apps/creating-github-apps/authenticating-with-a-github-app/authenticating-with-a-github-app-on-behalf-of-a-user",
    b"/repos/Codertocat/Hello-World/contributors",
    b"/repos/Codertocat/Hello-World/stargazers",
    b"/repos/octocat/Spoon-Knife/git/trees/a639e96f9038797fba6e0469f94a4b0cc459fa68",
    b"/repos/octocat/octo-name-repo/languages",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/comments",
    b"/repos/github/rest-api-description/git/blobs/abc",
    b"/repos/octocat/Spoon-Knife/contributors",
    b"/octo-org/octo-repo/workflows/CI/badge.svg",
    b"/repos/octocat/Hello-World-Template/languages",
    b"/repos/octocat/Hello-World/hooks/1/deliveries",
    b"/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt",
    b"/repos/octocat/octorepo/contents/src/images",
    b"/repos/jquery/jquery/issues/comments/",
    b"/repos/octo-org/octo-repo/subscribers",
    b"/octocat/octorepo/blob/main/src/app.js",
    b"/organizations/managing-organization-settings/managing-rulesets-for-repositories-in-your-organization",
    b"/communities/moderating-comments-and-conversations/locking-conversations",
    b"/repos/Codertocat/Hello-World/deployments/326191728/statuses",
    b"/repos/github/hello-world/check-runs/4/annotations",
    b"/repos/dtrupenn/Tetris/issues/comments",
    b"/repos/octocat/Hello-World-Template/git/commits",
    b"/repos/octocat-repo/hello-world/secret-scanning/alerts/42",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/deployments",
    b"/repos/octocat/octo-name-repo/subscription",
    b"/repos/octo-org/octo-repo/notifications",
    b"/user/codespaces/secrets/CODESPACE_GH_SECRET/repositories",
    b"/repos/octocat/octo-name-repo/notifications",
    b"/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows",
    b"/users/Codertocat/received_events",
    b"/repos/octo-org/hello-world/contributors",
    b"/repos/octocat/Hello-World/contents/",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/collaborators",
    b"/rest/security-advisories/global-advisories",
    b"/github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-actions",
    b"/octo-org/octo-repo/security/dependabot/2",
    b"/repos/jquery/jquery/contributors",
    b"/pull-requests/collaborating-with-pull-requests/working-with-forks/about-permissions-and-visibility-of-forks",
    b"/rest/overview/other-authentication-methods",
    b"/repos/octocat/hello-world/code-scanning/alerts/42/instances",
    b"/repos/octocat/Hello-World/commits/762941318ee16e59dabbacb1b4049eec22f0d303",
    b"/repos/octocat/Spoon-Knife/issues/events",
    b"/teams/2343027/discussions/1/reactions",
    b"/copilot/managing-copilot/managing-policies-for-copilot-business-in-your-organization",
    b"/repos/actions/setup-ruby/workflows/5",
    b"/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/machines",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/milestones",
    b"/repos/octocat/Hello-World/pulls/1347",
    b"/repos/octo-org/octo-repo/actions/runs/30433642",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/forks",
    b"/repositories/viewing-activity-and-data-for-your-repository",
    b"/repos/octocat/Hello-World/git/trees",
    b"/octocat/Hello-World/compare/octocat",
    b"/repos/Octocoders/Hello-World/git/tags",
    b"/repos/octocat/octo-name-repo/issues/events",
    b"/repos/octocat/Hello-World/branches/master/protection",
    b"/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets",
    b"/repos/octocat/hello-world/code-scanning/analyses/41",
    b"/actions/setup-ruby/workflows/CI/badge.svg",
    b"/repos/octocat/Hello-World-Template/contents/",
    b"/users/octocat/packages/container/hello_docker/versions/214",
    b"/api-playground/projects-test/projects/12",
    b"/repos/octocat-repo/hello-world/branches",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/commits",
    b"/repos/octocat/Hello-World/branches/main/protection",
    b"/repos/octocat/Hello-World/hooks/12345678",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/git/refs",
    b"/repos/Octocoders/Hello-World/issues",
    b"/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments",
    b"/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users",
    b"/repos/octocat/octo-name-repo/git/tags",
    b"/users/octokitten/received_events",
    b"/repos/jquery/jquery/collaborators",
    b"/code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability",
    b"/orgs/octo-org/dependabot/secrets/NPM_TOKEN/repositories",
    b"/repos/octo-org/hello-world/deployments",
    b"/repos/octocat-repo/hello-world/issues/comments",
    b"/repos/octocat/Hello-World/contents/CONTRIBUTING",
    b"/repos/octo-org/hello-world/milestones",
    b"/repos/octocat/hello-world/branches/main/protection",
    b"/users/testorg-ea8ec76d71c3af4b/orgs",
    b"/repos/octocat/octo-name-repo/stargazers",
    b"/repos/Octocoders/Hello-World/assignees",
    b"/orgs/github/public_members/pezra",
    b"/repos/octocat/Hello-World/labels",
    b"/repos/Octocoders/Hello-World/hooks/109948940/test",
    b"/rest/using-the-rest-api/getting-started-with-the-rest-api",
    b"/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request",
    b"/repos/github/hello-world/actions/runs/5/rerun",
    b"/code-security/dependabot/dependabot-alerts/about-dependabot-alerts",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/",
    b"/users/octocat/packages/container/hello_docker/versions/45763",
    b"/octo-org/hello-world-npm/packages/43752",
    b"/repos/octocat/Hello-World/git/commits",
    b"/repos/octocat/Hello-World/git/commits/7d1b31e74ee336d15cbd21741bc88a537ed063a0",
    b"/repos/octocat/hello-world/branches/main/protection/dismissal_restrictions/teams",
    b"/repos/octo-org/hello-world/collaborators",
    b"/repos/octocat/Spoon-Knife/notifications",
    b"/repos/octo-org/octo-docs/actions/artifacts/13",
    b"/octocat/Hello-World/blob/master/ISSUE_TEMPLATE",
    b"/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise",
    b"/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb",
    b"/repos/octocat/Hello-World/contents/README.md",
    b"/repos/octo-org/hello-world/commits",
    b"/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/contents/",
    b"/actions/using-workflows/about-workflows",
    b"/repos/github/roadmap/issues/comments/1130876857",
    b"/repos/octocat-repo/hello-world/git/blobs/af5626b4a114abcb82d63db7c8082c3c4756e51b",
    b"/repos/octo-org/hello-world/subscription",
    b"/repos/octocat/octorepo/contents/src",
    b"/webhooks/webhook-events-and-payloads",
    b"/repos/owner/private-repo/secret-scanning/alerts/42/locations",
    b"/repos/octo-org/hello-world/labels",
    b"/repos/octo-org/octo-repo-ghsa-1234-5678-9012/git/trees",
    b"/users/octocat/packages/container/hello_docker/versions/881",
    b"/orgs/invitocat/memberships/defunkt",
    b"/repos/octo-org/octo-repo-ghsa-abcd-1234-efgh/git/commits",
    b"/repos/octocat/Hello-World/issues/1347/labels",
    b"/repos/octocat-repo/hello-world/keys",
    b"/repos/octo-org/octo-docs/actions/artifacts/11",
    b"/repos/octocat/Hello-World/trees/cd8274d15fa3ae2ab983129fb037999f264ba9a7",
    b"/repos/github/developer.github.com/pages/deployments/4fd754f7e594640989b406850d0bc8f06a121251/status",
    b"/repos/octocat-repo/hello-world/git/commits/f14d7debf9775f957cf4f1e8176da0786431f72b",
];

#[allow(dead_code)]
const PLAIN_PATH_1024: &[u8] = PLAIN_URLS_1024[PLAIN_URLS_1024.len() - 1];