-
Notifications
You must be signed in to change notification settings - Fork 0
/
ftl.hcl
2428 lines (2425 loc) · 385 KB
/
ftl.hcl
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
description = "FTL - Towards a 𝝺-calculus for large-scale systems"
binaries = ["ftl*"]
source = "https://github.com/TBD54566975/ftl/releases/download/v${version}/ftl-${version}.${os}-${arch}.tar.gz"
sha256-source = "https://github.com/TBD54566975/ftl/releases/download/v${version}/checksums.txt"
test = "ftl --version"
version "0.39.0" "0.41.1" "0.42.0" "0.43.5" "0.46.1" "0.47.0" "0.53.0" "0.53.3"
"0.55.2" "0.57.1" "0.58.0" "0.58.3" "0.60.0" "0.60.1" "0.61.5" "0.64.0" "0.65.1"
"0.66.0" "0.66.3" "0.69.0" "0.71.3" "0.71.6" "0.71.9" "0.71.11" "0.71.12" "0.72.1"
"0.78.0" "0.78.1" "0.78.2" "0.80.2" "0.81.0" "0.81.1" "0.81.2" "0.81.3" "0.81.4"
"0.82.0" "0.82.1" "0.83.0" "0.83.1" "0.84.0" "0.84.1" "0.85.0" "0.85.1" "0.85.2"
"0.85.3" "0.85.4" "0.85.5" "0.86.0" "0.87.0" "0.87.1" "0.87.2" "0.88.0" "0.89.0"
"0.89.1" "0.89.2" "0.90.0" "0.90.1" "0.91.0" "0.91.1" "0.92.0" "0.93.0" "0.94.0"
"0.94.1" "0.95.0" "0.96.2" "0.96.3" "0.96.4" "0.96.5" "0.96.6" "0.96.7" "0.96.8"
"0.96.9" "0.97.0" "0.97.1" "0.98.0" "0.98.1" "0.98.2" "0.98.3" "0.98.4" "0.98.5"
"0.98.6" "0.98.7" "0.98.8" "0.98.9" "0.98.10" "0.98.11" "0.99.0" "0.100.0" "0.101.0"
"0.101.1" "0.102.0" "0.102.1" "0.103.0" "0.104.0" "0.104.1" "0.105.0" "0.105.1"
"0.106.0" "0.107.0" "0.108.0" "0.108.1" "0.109.0" "0.109.1" "0.109.2" "0.109.3"
"0.110.0" "0.111.0" "0.111.1" "0.111.2" "0.111.3" "0.112.0" "0.112.1" "0.113.0"
"0.113.1" "0.114.0" "0.114.1" "0.115.0" "0.115.1" "0.116.0" "0.116.1" "0.117.0"
"0.118.0" "0.118.1" "0.118.2" "0.118.3" "0.118.4" "0.118.5" "0.118.6" "0.119.0"
"0.119.1" "0.120.0" "0.121.0" "0.122.0" "0.122.1" "0.122.2" "0.123.0" "0.123.1"
"0.123.2" "0.124.0" "0.124.1" "0.125.0" "0.126.0" "0.126.1" "0.126.2" "0.127.0"
"0.128.0" "0.128.1" "0.128.2" "0.128.3" "0.128.4" "0.128.5" "0.128.6" "0.129.0"
"0.129.1" "0.129.2" "0.130.0" "0.130.1" "0.131.0" "0.132.0" "0.133.0" "0.133.1"
"0.133.2" "0.134.0" "0.134.1" "0.134.2" "0.134.3" "0.134.4" "0.134.5" "0.134.6"
"0.134.7" "0.135.0" "0.136.0" "0.137.0" "0.138.0" "0.138.1" "0.138.2" "0.138.3"
"0.138.4" "0.138.5" "0.139.0" "0.139.1" "0.139.2" "0.140.0" "0.141.0" "0.142.0"
"0.142.1" "0.143.0" "0.144.0" "0.144.1" "0.144.2" "0.144.3" "0.144.4" "0.145.0"
"0.145.1" "0.145.2" "0.145.3" "0.145.4" "0.145.5" "0.146.0" "0.146.1" "0.146.2"
"0.146.3" "0.147.0" "0.148.0" "0.149.0" "0.149.1" "0.149.2" "0.150.0" "0.150.1"
"0.150.2" "0.150.3" "0.151.0" "0.151.1" "0.151.2" "0.152.0" "0.152.1" "0.153.0"
"0.153.1" "0.153.3" "0.154.1" "0.155.0" "0.156.0" "0.157.0" "0.157.1" "0.158.0"
"0.158.1" "0.159.0" "0.159.1" "0.160.0" "0.161.0" "0.161.1" "0.162.0" "0.162.1"
"0.163.0" "0.163.1" "0.163.2" "0.163.3" "0.163.4" "0.163.5" "0.163.6" "0.163.7"
"0.163.8" "0.163.9" "0.163.10" "0.163.11" "0.164.0" "0.164.1" "0.165.0" "0.165.1"
"0.166.1" "0.166.2" "0.167.0" "0.168.0" "0.169.0" "0.169.1" "0.170.1" "0.171.0"
"0.172.0" "0.173.0" "0.173.1" "0.174.0" "0.175.0" "0.176.0" "0.176.1" "0.177.0"
"0.177.1" "0.179.1" "0.179.2" "0.180.0" "0.180.1" "0.181.0" "0.181.1" "0.182.0"
"0.182.1" "0.182.2" "0.183.0" "0.184.0" "0.184.1" "0.184.2" "0.185.0" "0.185.1"
"0.185.2" "0.185.3" "0.185.4" "0.185.5" "0.185.6" "0.185.7" "0.185.8" "0.185.9"
"0.186.0" "0.186.1" "0.187.0" "0.188.0" "0.188.1" "0.189.0" "0.190.0" "0.191.0"
"0.191.1" "0.192.0" "0.193.0" "0.193.1" "0.194.0" "0.194.1" "0.195.0" "0.196.0"
"0.196.1" "0.197.0" "0.198.0" "0.199.0" "0.199.1" "0.199.2" "0.200.0" "0.201.0"
"0.202.0" "0.202.1" "0.202.2" "0.202.3" "0.202.4" "0.202.5" "0.202.6" "0.202.7"
"0.203.0" "0.204.0" "0.204.1" "0.205.0" "0.206.0" "0.206.1" "0.207.0" "0.207.1"
"0.208.0" "0.209.0" "0.209.1" "0.209.2" "0.209.3" "0.210.0" "0.210.1" "0.210.2"
"0.210.3" "0.211.0" "0.211.1" "0.211.2" "0.212.0" "0.213.0" "0.214.0" "0.215.0"
"0.215.1" "0.215.2" "0.216.0" "0.216.1" "0.217.0" "0.217.1" "0.217.2" "0.217.3"
"0.217.4" "0.217.5" "0.217.6" "0.217.7" "0.217.8" "0.217.9" "0.218.0" "0.219.0"
"0.220.0" "0.220.1" "0.220.2" "0.221.0" "0.222.0" "0.222.1" "0.222.2" "0.222.3"
"0.223.0" "0.224.0" "0.224.1" "0.225.0" "0.226.0" "0.227.0" "0.228.0" "0.229.0"
"0.230.0" "0.230.1" "0.230.2" "0.231.0" "0.231.1" "0.232.0" "0.232.1" "0.232.2"
"0.233.0" "0.233.1" "0.234.0" "0.235.0" "0.236.0" "0.237.0" "0.237.1" "0.238.0"
"0.239.0" "0.240.0" "0.240.1" "0.240.2" "0.241.0" "0.241.1" "0.241.2" "0.242.0"
"0.242.1" "0.242.2" "0.242.3" "0.243.0" "0.243.1" "0.243.2" "0.244.0" "0.244.1"
"0.245.0" "0.245.1" "0.245.2" "0.246.0" "0.247.0" "0.247.1" "0.247.2" "0.247.3"
"0.248.0" "0.248.1" "0.248.2" "0.249.0" "0.249.1" "0.250.0" "0.250.1" "0.251.0"
"0.252.0" "0.253.0" "0.253.1" "0.253.2" "0.254.0" "0.254.1" "0.255.0" "0.255.1"
"0.255.2" "0.255.3" "0.255.4" "0.255.5" "0.255.6" "0.255.7" "0.255.8" "0.255.9"
"0.255.10" "0.255.11" "0.255.12" "0.255.13" "0.256.0" "0.256.1" "0.256.2" "0.256.3"
"0.257.0" "0.258.0" "0.259.0" "0.259.1" "0.260.0" "0.260.1" "0.261.0" "0.261.1"
"0.262.0" "0.262.1" "0.263.0" "0.264.0" "0.264.1" "0.264.2" "0.264.3" "0.265.0"
"0.265.1" "0.265.2" "0.265.3" "0.266.0" "0.266.1" "0.267.0" "0.268.0" "0.268.1"
"0.268.2" "0.268.3" "0.269.0" "0.269.1" "0.269.2" "0.270.0" "0.271.0" "0.271.1"
"0.271.2" "0.271.3" "0.271.4" "0.271.5" "0.271.6" "0.271.7" "0.271.8" "0.272.0"
"0.273.0" "0.274.0" "0.274.1" "0.274.2" "0.274.3" "0.275.0" "0.275.1" "0.276.0"
"0.276.1" "0.276.2" "0.276.3" "0.276.4" "0.276.5" "0.276.6" "0.276.7" "0.277.0"
"0.277.1" "0.277.2" "0.277.3" "0.278.0" "0.279.0" "0.280.0" "0.280.1" "0.280.2"
"0.280.3" "0.280.4" "0.281.0" "0.281.1" "0.281.2" "0.281.3" "0.281.4" "0.281.5"
"0.281.6" "0.281.7" "0.281.8" "0.282.0" "0.282.1" "0.282.2" "0.283.0" "0.284.0"
"0.284.1" "0.284.2" "0.285.0" "0.285.1" "0.285.2" "0.285.3" "0.285.4" "0.285.5"
"0.286.0" "0.287.0" "0.288.0" "0.289.0" "0.290.0" "0.291.0" "0.292.0" "0.292.1"
"0.292.2" "0.292.3" "0.293.0" "0.294.0" "0.295.0" "0.295.1" "0.296.0" "0.296.1"
"0.296.2" "0.296.3" "0.296.4" "0.296.5" "0.296.6" "0.296.7" "0.296.8" "0.296.9"
"0.296.10" "0.296.11" "0.297.0" "0.297.1" "0.297.2" "0.297.3" "0.297.4" "0.297.5"
"0.297.6" "0.297.7" "0.298.0" "0.299.0" "0.300.0" "0.301.0" "0.301.1" "0.302.0"
"0.302.1" "0.302.2" "0.302.3" "0.303.0" "0.303.1" "0.304.0" "0.304.1" "0.305.0"
"0.306.0" "0.306.1" "0.306.2" "0.306.3" "0.306.4" "0.307.0" "0.307.1" "0.307.2"
"0.308.0" "0.308.1" "0.309.0" "0.309.1" "0.310.0" "0.310.1" "0.311.0" "0.311.1"
"0.311.2" "0.312.0" "0.312.1" "0.313.0" "0.313.1" "0.314.0" "0.315.0" "0.316.0"
"0.316.1" "0.316.2" "0.317.0" "0.317.1" "0.318.0" "0.318.1" "0.319.0" "0.319.1"
"0.320.0" "0.321.0" "0.322.0" "0.322.1" "0.322.2" "0.323.0" "0.323.1" "0.323.2"
"0.324.0" "0.325.0" "0.325.1" "0.325.2" "0.326.0" "0.327.0" "0.327.1" "0.327.2"
"0.328.0" "0.328.1" "0.328.2" "0.328.3" "0.328.4" "0.328.5" "0.329.0" "0.330.0"
"0.331.0" "0.332.0" "0.332.1" "0.333.0" "0.333.1" "0.333.2" "0.334.0" "0.334.1"
"0.335.0" "0.335.1" "0.335.2" "0.335.3" "0.335.4" "0.336.0" "0.337.0" "0.337.1"
"0.338.0" "0.339.0" "0.340.0" "0.341.0" "0.341.1" "0.342.0" "0.343.0" "0.344.0"
"0.345.0" "0.345.1" "0.345.2" "0.346.0" "0.347.0" "0.348.0" "0.348.1" "0.348.2"
"0.348.3" "0.349.0" "0.349.1" "0.349.2" "0.350.0" "0.351.0" "0.352.0" "0.353.0"
"0.354.0" "0.354.1" "0.354.2" "0.355.0" "0.355.1" "0.356.0" "0.357.0" "0.358.0"
"0.359.0" "0.359.1" "0.360.0" "0.361.0" "0.361.1" "0.361.2" "0.361.3" "0.361.4"
"0.361.5" "0.362.0" "0.362.1" "0.363.0" "0.364.0" "0.364.1" "0.365.0" "0.366.0"
"0.367.0" "0.368.1" "0.369.0" "0.370.0" "0.371.0" "0.372.0" "0.372.1" "0.372.2"
"0.372.3" "0.372.4" "0.373.0" "0.373.1" "0.374.0" "0.375.0" "0.376.0" "0.376.1"
"0.377.0" "0.377.1" "0.377.2" "0.377.3" "0.378.0" "0.378.1" "0.378.2" "0.379.0"
"0.379.1" "0.380.0" "0.381.0" "0.381.1" "0.382.0" "0.383.0" "0.383.1" "0.384.0"
"0.385.0" "0.386.0" "0.386.1" "0.386.2" "0.386.3" "0.387.0" "0.387.1" "0.387.2"
"0.388.0" "0.389.0" "0.390.0" "0.391.1" "0.391.2" "0.392.0" "0.392.1" "0.392.2"
"0.393.0" "0.393.1" "0.394.0" "0.394.1" "0.395.0" "0.396.0" "0.397.0" "0.397.1"
"0.397.2" "0.398.0" "0.398.1" "0.399.0" "0.400.0" "0.401.0" "0.402.0" "0.403.0"
"0.403.1" "0.403.2" {
auto-version {
github-release = "TBD54566975/ftl"
}
}
// This is not named "autoupdate" so that it doesn't clash with "latest" from the mainline package
channel "auto" {
update = "1h"
version = "0.*"
}
sha256sums = {
"https://github.com/TBD54566975/ftl/releases/download/v0.39.0/ftl-0.39.0.darwin-amd64.tar.gz": "1dc3597381f8b269b43781a671addbf3481a21c7e54cc4bf6dbb4d4fad1fc2ee",
"https://github.com/TBD54566975/ftl/releases/download/v0.39.0/ftl-0.39.0.darwin-arm64.tar.gz": "2374a53b169de65b56e6bbac05bcd0dc6c04e8d13c960a28c839086435cce095",
"https://github.com/TBD54566975/ftl/releases/download/v0.39.0/ftl-0.39.0.linux-amd64.tar.gz": "c42f5973de928af4150355b7175cd9f42f070047032552aa18edd4cee8e78825",
"https://github.com/TBD54566975/ftl/releases/download/v0.41.1/ftl-0.41.1.linux-amd64.tar.gz": "45b9ab8418293968e321b542f57e5b4d15f63151d9f234b715368a808424157f",
"https://github.com/TBD54566975/ftl/releases/download/v0.41.1/ftl-0.41.1.darwin-amd64.tar.gz": "94b9fa24ee04b9f97b93cd66f0d033051dedd308cc0da3e73abdbafcada47cc7",
"https://github.com/TBD54566975/ftl/releases/download/v0.41.1/ftl-0.41.1.darwin-arm64.tar.gz": "56735d7b07f91250beb0d3d636b41e319d02f4b6fb1575369514c01c2b8732a5",
"https://github.com/TBD54566975/ftl/releases/download/v0.42.0/ftl-0.42.0.linux-amd64.tar.gz": "82ebd4e31de6cd0804d50d6622c28dfbe0d41a2f3caff533d42a502b1cb69c5b",
"https://github.com/TBD54566975/ftl/releases/download/v0.42.0/ftl-0.42.0.darwin-amd64.tar.gz": "2333a3d5c9c3fb92da753ab811207f74107c371093378453da258ef506b54a0a",
"https://github.com/TBD54566975/ftl/releases/download/v0.42.0/ftl-0.42.0.darwin-arm64.tar.gz": "23e7ba0958323676853da5b362521c8c0c45bb5fefb212d8a41f0e97e2adb69a",
"https://github.com/TBD54566975/ftl/releases/download/v0.43.5/ftl-0.43.5.darwin-arm64.tar.gz": "76e10df1ee92a614fa1c2670e217e123697616c37ed84251bde404c62dc19055",
"https://github.com/TBD54566975/ftl/releases/download/v0.43.5/ftl-0.43.5.linux-amd64.tar.gz": "6e8660b3f20755ad71917f895085e991010924a594b665a3846e64e8e1a181cf",
"https://github.com/TBD54566975/ftl/releases/download/v0.43.5/ftl-0.43.5.darwin-amd64.tar.gz": "9b303d3434525fc202bddd5de1184af363ee3e583df8135ab1d7be645a6eb406",
"https://github.com/TBD54566975/ftl/releases/download/v0.46.1/ftl-0.46.1.darwin-arm64.tar.gz": "364c3fb14470a8ab597d69eb45d86808177c4a8db0397a28418d09f1fe201c2d",
"https://github.com/TBD54566975/ftl/releases/download/v0.46.1/ftl-0.46.1.linux-amd64.tar.gz": "07c7dc8ea7f495a85fdbb0c69c32de048ff1df0485abaeaad0dfcd7e7ef20298",
"https://github.com/TBD54566975/ftl/releases/download/v0.46.1/ftl-0.46.1.darwin-amd64.tar.gz": "28b589d137e53befccdad7b4643f020fba089ca38a22fbbbb2650f507cc5e27b",
"https://github.com/TBD54566975/ftl/releases/download/v0.47.0/ftl-0.47.0.darwin-arm64.tar.gz": "4b043d06916f4492dd4eb0278aebfc022d1d9545bdbcfd9dccecc303fb9cca31",
"https://github.com/TBD54566975/ftl/releases/download/v0.47.0/ftl-0.47.0.linux-amd64.tar.gz": "12146a224a4fee55b740a02a2113167bae45633105afdee0fd4a766c246f7ea3",
"https://github.com/TBD54566975/ftl/releases/download/v0.47.0/ftl-0.47.0.darwin-amd64.tar.gz": "dbf185f04da318519d5313b99691ab60a0853bd0e26e73df985d14e5edddf4ea",
"https://github.com/TBD54566975/ftl/releases/download/v0.53.0/ftl-0.53.0.linux-amd64.tar.gz": "2097024037939a9f360abd96a5ab14f00819c8086330b44f6261ffb80b93a991",
"https://github.com/TBD54566975/ftl/releases/download/v0.53.0/ftl-0.53.0.darwin-amd64.tar.gz": "80fae0b06b093ddf714743bf842e9423af77d4deaa96d8967cc94ed7df638c3f",
"https://github.com/TBD54566975/ftl/releases/download/v0.53.0/ftl-0.53.0.darwin-arm64.tar.gz": "3bb61f6341c6b2cbb6e5cba9d6a05d67a1a7d5174f67e3d04ba25572f293dc63",
"https://github.com/TBD54566975/ftl/releases/download/v0.53.3/ftl-0.53.3.darwin-amd64.tar.gz": "aeaadbaf22ef73b6dd1a213451c2dd3da2a2254d4ee0c733e1878ff6057c31ec",
"https://github.com/TBD54566975/ftl/releases/download/v0.53.3/ftl-0.53.3.linux-amd64.tar.gz": "1fc1fa38ddbc9ea744f8ecf603a422789149e8ed1285a0ae6787713cdb7de761",
"https://github.com/TBD54566975/ftl/releases/download/v0.53.3/ftl-0.53.3.darwin-arm64.tar.gz": "80c7bcfdcfb69bf2083da01da85fed048509159de05528216a3203ac8860267d",
"https://github.com/TBD54566975/ftl/releases/download/v0.55.2/ftl-0.55.2.linux-amd64.tar.gz": "a1fefa37670ae8476639463b3479a09b68ed960dfb43b87812cd7b81a44beb48",
"https://github.com/TBD54566975/ftl/releases/download/v0.55.2/ftl-0.55.2.darwin-amd64.tar.gz": "199a464bb6ff9127a70f30e3ce9afdad96c95a7abfc609b6a847cb3d0d4fe777",
"https://github.com/TBD54566975/ftl/releases/download/v0.55.2/ftl-0.55.2.darwin-arm64.tar.gz": "9e3f54744d58ccf2feff1f80d314d40562e52f2804b96881ae7e55af893761a9",
"https://github.com/TBD54566975/ftl/releases/download/v0.57.1/ftl-0.57.1.darwin-arm64.tar.gz": "a728cf66cfb723eccc08a5f10e8f480ca1d2d9a6b40c75b29485b971647302c2",
"https://github.com/TBD54566975/ftl/releases/download/v0.57.1/ftl-0.57.1.linux-amd64.tar.gz": "7b43c901e6ea7af9a9001d504b63aade5de6b7389db7d34510482bbf59389fe7",
"https://github.com/TBD54566975/ftl/releases/download/v0.57.1/ftl-0.57.1.darwin-amd64.tar.gz": "f6c26e88fcaba170505eb9c0c0a6dcef7510eb32ab718dda8dad6d329edd7158",
"https://github.com/TBD54566975/ftl/releases/download/v0.58.0/ftl-0.58.0.linux-amd64.tar.gz": "e3a2b1164717c0e92468df898d5615fa5e86746332a6997a255fa3d2077e3afa",
"https://github.com/TBD54566975/ftl/releases/download/v0.58.0/ftl-0.58.0.darwin-amd64.tar.gz": "0bbd0d6407db5d18733b48159f6302a3c3a9b8530541c01dd4fb3591ce7bd36a",
"https://github.com/TBD54566975/ftl/releases/download/v0.58.0/ftl-0.58.0.darwin-arm64.tar.gz": "afcdb1611694e5d5171ec25370add74ef31a88c3537b8d6c2d7acc071681ec4b",
"https://github.com/TBD54566975/ftl/releases/download/v0.58.3/ftl-0.58.3.darwin-amd64.tar.gz": "4a8264ebf84daec051a5567cd71e67adf5f8a993372c78fdde6ae5f41347dc8e",
"https://github.com/TBD54566975/ftl/releases/download/v0.58.3/ftl-0.58.3.darwin-arm64.tar.gz": "dcfd71eae90e275ed4d0a7a81b924e885b205ae76fa04330dbedd72650f1646a",
"https://github.com/TBD54566975/ftl/releases/download/v0.58.3/ftl-0.58.3.linux-amd64.tar.gz": "675a3c4e30f9838f1a6d2192ca4b3014513ec91e5fc9b04eb66d9b643ffd51d3",
"https://github.com/TBD54566975/ftl/releases/download/v0.60.0/ftl-0.60.0.linux-amd64.tar.gz": "88b1fd9088e5be39555462f306ed9b78c97c611acde22fcbbfbcafb95e05067d",
"https://github.com/TBD54566975/ftl/releases/download/v0.60.0/ftl-0.60.0.darwin-amd64.tar.gz": "b60be141d6b120077cc885a7607aa88697d00da7938bdf7883a96ef25f28ea8a",
"https://github.com/TBD54566975/ftl/releases/download/v0.60.0/ftl-0.60.0.darwin-arm64.tar.gz": "e7c70c78f5dd97bc57ebb34efef3562ec4eac5958b79dc7f3025e75a00e5cd24",
"https://github.com/TBD54566975/ftl/releases/download/v0.60.1/ftl-0.60.1.darwin-arm64.tar.gz": "49cc9c322ce79995dd9429e0c6e7c179c2f2e467d18fbf8f3cdf29e483638f6b",
"https://github.com/TBD54566975/ftl/releases/download/v0.60.1/ftl-0.60.1.linux-amd64.tar.gz": "2e5541eb60c76f4e1f21863ac28ec5abb55bf5e983624956e644a6a85a399882",
"https://github.com/TBD54566975/ftl/releases/download/v0.60.1/ftl-0.60.1.darwin-amd64.tar.gz": "68b802eeb426f988b8d89bdb8c39a63385799c0f48dcf8d3633d8e09514978e0",
"https://github.com/TBD54566975/ftl/releases/download/v0.61.5/ftl-0.61.5.darwin-amd64.tar.gz": "fb6f73ad9cfb4e08dae2a5a13891b488268986e87fa5475084a9b75b1d4c33c6",
"https://github.com/TBD54566975/ftl/releases/download/v0.61.5/ftl-0.61.5.linux-amd64.tar.gz": "d665517bf51fb3bfc17803e4a9ca7c1015ffa8c9537d10b1e14ef165df1d0d09",
"https://github.com/TBD54566975/ftl/releases/download/v0.61.5/ftl-0.61.5.darwin-arm64.tar.gz": "c878f0c2108a980fe6e96a3395d805c3447188e132c69cf0000a5e95c8dce2d3",
"https://github.com/TBD54566975/ftl/releases/download/v0.64.0/ftl-0.64.0.linux-amd64.tar.gz": "1e77c83d0766748023b48860317ddb9f28b61b2595d0d920b9c4ff1d8f2f6960",
"https://github.com/TBD54566975/ftl/releases/download/v0.64.0/ftl-0.64.0.darwin-amd64.tar.gz": "6b3191173ebc6de6326c17c0d5523d48b0455d7d4209f42ba34bdfdcebc0f379",
"https://github.com/TBD54566975/ftl/releases/download/v0.64.0/ftl-0.64.0.darwin-arm64.tar.gz": "4533f017c85213ddaee0879adb804415321c2527de9b811aa4025daaeab8bc8f",
"https://github.com/TBD54566975/ftl/releases/download/v0.65.1/ftl-0.65.1.linux-amd64.tar.gz": "1ba01025ba11ea59445a5d66c3a4db0503feb9d269a1d3d1f0932bbc6ce2cf6e",
"https://github.com/TBD54566975/ftl/releases/download/v0.65.1/ftl-0.65.1.darwin-arm64.tar.gz": "1e902c17efb49c7e9c72e73ba5dd51d5e715ab611e31abc67df9bd5424abdc79",
"https://github.com/TBD54566975/ftl/releases/download/v0.65.1/ftl-0.65.1.darwin-amd64.tar.gz": "c0e02a5752c24d3cc8e23fc07d34d90290984df8db196438beb9d41c77b6d255",
"https://github.com/TBD54566975/ftl/releases/download/v0.66.0/ftl-0.66.0.darwin-amd64.tar.gz": "876057c4e18cb08c8fead6acb8d788cc9aabda7778357a7a534e972b51eee4ef",
"https://github.com/TBD54566975/ftl/releases/download/v0.66.0/ftl-0.66.0.darwin-arm64.tar.gz": "79cd5d6a675f11775e50472df0636c9909555bd2ec1bf26df1c9ea53a29760b0",
"https://github.com/TBD54566975/ftl/releases/download/v0.66.0/ftl-0.66.0.linux-amd64.tar.gz": "49eec3f965d26cef215284371509e701634f76ba4b20c7a8b89970c8774829a1",
"https://github.com/TBD54566975/ftl/releases/download/v0.66.3/ftl-0.66.3.darwin-arm64.tar.gz": "811b3503d4f1c0d0c707a66d9fd48615ca4b3d1ddf00a61748a523f44faecee9",
"https://github.com/TBD54566975/ftl/releases/download/v0.66.3/ftl-0.66.3.darwin-amd64.tar.gz": "eef944fff714431ae8a1be3a3b2c6494ea991995edc935191d02cbb92d25477e",
"https://github.com/TBD54566975/ftl/releases/download/v0.66.3/ftl-0.66.3.linux-amd64.tar.gz": "74a776c87022231b301bf2e9f0a3381ecc3301cba5cca67e5665bfdba48414d1",
"https://github.com/TBD54566975/ftl/releases/download/v0.69.0/ftl-0.69.0.linux-amd64.tar.gz": "a76ee12526c0aa6a774900e1e3ad1f475d8a959c994dd62659ed158720288095",
"https://github.com/TBD54566975/ftl/releases/download/v0.69.0/ftl-0.69.0.darwin-amd64.tar.gz": "12d1335baaac474f6c006dd2ceabfbcdb3786f7935aef933e1f63c648edbc20f",
"https://github.com/TBD54566975/ftl/releases/download/v0.69.0/ftl-0.69.0.darwin-arm64.tar.gz": "229c40d13fdd7a870acedf3cda563f8a10dfe18c6de90fd99ff464f3f7b468b4",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.3/ftl-0.71.3.darwin-arm64.tar.gz": "c15dd8ab0f32e7344d1e90d8b98155a51592b0718c77bf1705be5cc0730295f0",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.3/ftl-0.71.3.linux-amd64.tar.gz": "fa3bb8dbb098b28db4bfc46f8fd0d6ccc69a14ae8e1d0ee99d3349c7dc0c09d0",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.3/ftl-0.71.3.darwin-amd64.tar.gz": "75b55a18ea784891f04ee934a042024e8a8e13ccd00d4ffd1f03b2ccd8053646",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.6/ftl-0.71.6.darwin-amd64.tar.gz": "30d8f192d0c5e54607da3905e7c5d1212d71329e5159b1b5d3e5c2ec80e5932a",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.6/ftl-0.71.6.linux-amd64.tar.gz": "d5d3a641cc301e5914aaf9d02574e44d6bc1e3feb61d2cf18e46eb6cd1a05141",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.6/ftl-0.71.6.darwin-arm64.tar.gz": "5cc5a7737fe3205f45f9be3337544ef92125be96f508cfcbf6d609fc68c304bd",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.9/ftl-0.71.9.darwin-amd64.tar.gz": "9bf9cbf99f994c6ea5989a1db260cb411a457434c283ca59c84d7889b094dd9e",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.9/ftl-0.71.9.darwin-arm64.tar.gz": "b056e1f7b9a8901d6b11b8541c463dc0dd6c4bbf03eff9c6ec7ca93424e00a97",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.9/ftl-0.71.9.linux-amd64.tar.gz": "9b798d73e84bfc230aa39e381449807c12a214df932c349e64073b6cd637fc7c",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.11/ftl-0.71.11.darwin-arm64.tar.gz": "ee7d35340b722d63915ede8fca9ac4db5c4430c0c93de370a82ce5ffcbd4b4c3",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.11/ftl-0.71.11.linux-amd64.tar.gz": "066c4c95e5491c20627f95ff425b854557b014d67870a9ea03632d3f34900f63",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.11/ftl-0.71.11.darwin-amd64.tar.gz": "02c0ab32dd768855297b194e6a21bb951d13b7f51c1a2f1b5accb29d08784962",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.12/ftl-0.71.12.darwin-amd64.tar.gz": "518d35f00c59d203c9a0ea0a5395fde722756917cbf2abee47b52b099e2214be",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.12/ftl-0.71.12.darwin-arm64.tar.gz": "2c2256c38988c2a83bed3ccb095b9aa373f951c6b7c825d1a4c7c9418846877e",
"https://github.com/TBD54566975/ftl/releases/download/v0.71.12/ftl-0.71.12.linux-amd64.tar.gz": "557154d685c3697a8a5c52a077024688a9005cd29b3ed66d9c6c8d9521b68ea9",
"https://github.com/TBD54566975/ftl/releases/download/v0.72.1/ftl-0.72.1.linux-amd64.tar.gz": "65a3d6e522dea34ee9a80d41738909f4fde48f836e3d4b2f14394d645739a0d0",
"https://github.com/TBD54566975/ftl/releases/download/v0.72.1/ftl-0.72.1.darwin-amd64.tar.gz": "3dac838b552db67b5298a730b41312ff1f8e40f08da0c93760c5bcf4cb0aa235",
"https://github.com/TBD54566975/ftl/releases/download/v0.72.1/ftl-0.72.1.darwin-arm64.tar.gz": "eee35dd1948a571615baa863ca5ff42e2889752d4813623fd9aeb69798738d7f",
"https://github.com/TBD54566975/ftl/releases/download/v0.78.0/ftl-0.78.0.linux-amd64.tar.gz": "434a5664d77bce4c28e790065c3bb75a8d302853796fb0d9b9500fccc68ad213",
"https://github.com/TBD54566975/ftl/releases/download/v0.78.0/ftl-0.78.0.darwin-amd64.tar.gz": "c8378ac07fc97914587c7b1d615e94d4f9394625a0a06abef2d903d8e8e2ba76",
"https://github.com/TBD54566975/ftl/releases/download/v0.78.0/ftl-0.78.0.darwin-arm64.tar.gz": "51ee7653404ee4e5d0f36a0a0a8b359f1238b911e407b01f1ca47cf96ddcc013",
"https://github.com/TBD54566975/ftl/releases/download/v0.78.1/ftl-0.78.1.darwin-amd64.tar.gz": "cc034dd7250fd71f9d3cbf39b8c483794a0e92b55375d59ce0ca57b056970592",
"https://github.com/TBD54566975/ftl/releases/download/v0.78.1/ftl-0.78.1.linux-amd64.tar.gz": "6a72e9073932cb0d0427b9c27de1e8dc8cb7b76b6bb1aa3b2c7e2c553e459d67",
"https://github.com/TBD54566975/ftl/releases/download/v0.78.1/ftl-0.78.1.darwin-arm64.tar.gz": "24b03665f51cb2740767e9d294e3a65fe0d56e0e0fb043cae15d3e43c6a69889",
"https://github.com/TBD54566975/ftl/releases/download/v0.78.2/ftl-0.78.2.darwin-arm64.tar.gz": "d06b99cea2ddfc994a5a0689d5615899503016999937d8968df5a07420a51206",
"https://github.com/TBD54566975/ftl/releases/download/v0.78.2/ftl-0.78.2.darwin-amd64.tar.gz": "5bd8702fc42f8c6b854ff54bc6ca72028bfeb7291e5dd5a968860271dc98693f",
"https://github.com/TBD54566975/ftl/releases/download/v0.78.2/ftl-0.78.2.linux-amd64.tar.gz": "18ec3323aac1e270cb11344ba94477e9842557645b3e7fb2b0e44c6c581724ee",
"https://github.com/TBD54566975/ftl/releases/download/v0.80.2/ftl-0.80.2.linux-amd64.tar.gz": "f46695c0d8ada7a53a70de3befd98e4d397554dc93c0ebcf9c2bb76cfb0dedff",
"https://github.com/TBD54566975/ftl/releases/download/v0.80.2/ftl-0.80.2.darwin-amd64.tar.gz": "c00d138c2c426e5381c64b4bbf09aa732bfa34345a85036fbdb06adb364eece0",
"https://github.com/TBD54566975/ftl/releases/download/v0.80.2/ftl-0.80.2.darwin-arm64.tar.gz": "a33273af61fbebf7b223e51acdb1daa743d4cb9868fbb00964cbc13f46cc2b59",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.0/ftl-0.81.0.linux-amd64.tar.gz": "f124c1100a4233ec14c3dbae0d73b09632ed1b1c2f74bd4a1c99549177e62757",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.0/ftl-0.81.0.darwin-amd64.tar.gz": "bca1bf1a9f884ca9c21fdb638f9512f309d44f5991853813ac657af9d99d9cc2",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.0/ftl-0.81.0.darwin-arm64.tar.gz": "b9c38f4e54ace30214ed8f6ac6c28a7e551627fca28f3fce6b2bca9ebc896940",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.1/ftl-0.81.1.darwin-arm64.tar.gz": "2c282116a6e51e771bb42e0e02b5815a235e8f952ce780e3627dc9a2bb1c47ce",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.1/ftl-0.81.1.darwin-amd64.tar.gz": "c5d7bf05db51627a5bf06acd97e4dbaba0fc28e88aa277b8893f600145816058",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.1/ftl-0.81.1.linux-amd64.tar.gz": "24662bce15adb9afb29ede0f525474bc374972aa435062b2938d7d9db9f57bc2",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.2/ftl-0.81.2.linux-amd64.tar.gz": "a428d8b76cf1cbea2b9fbe1cb102b47af1543b52ddae555bcb1ae69f9ace8c50",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.2/ftl-0.81.2.darwin-amd64.tar.gz": "4a0cbedd96ae3ea9c18973a31b326bba3276da38394ce6a9c0662f17be3e4bc5",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.2/ftl-0.81.2.darwin-arm64.tar.gz": "d7306834a5d809a7c8dcbaa3e199a30aeed22e27977d9911b019d0b5d2ea6cc3",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.3/ftl-0.81.3.darwin-amd64.tar.gz": "09921ff076ec18d6b4d1fc170ad066d071ac842edfdfd178a132834ae9594f80",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.3/ftl-0.81.3.linux-amd64.tar.gz": "ebf9033824f64c5bea7ef9acb1a4fbab9f653a021d9cb80c6c121c86b0ac2dae",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.3/ftl-0.81.3.darwin-arm64.tar.gz": "5d86ffd8c190116ccd82cf0e965c747c1db87e5f534d685446dbdfbde05fbc88",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.4/ftl-0.81.4.darwin-arm64.tar.gz": "98e724e39f72106f7f9bad6c3d1f12699853bb81d57c64dc403a0c328aba32eb",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.4/ftl-0.81.4.darwin-amd64.tar.gz": "a869e4c008d7bdd5eeb34bcab836803f3753d38e78af4524e55addbecc1a7cde",
"https://github.com/TBD54566975/ftl/releases/download/v0.81.4/ftl-0.81.4.linux-amd64.tar.gz": "6a49e20839bc20d7e95417f753d3b47489ef7b5483d23c49a77c139384af73ce",
"https://github.com/TBD54566975/ftl/releases/download/v0.82.0/ftl-0.82.0.linux-amd64.tar.gz": "9261820c0f79dedc94033145c69ae124e30c8a6eb8256066d29c1db9af5eda0f",
"https://github.com/TBD54566975/ftl/releases/download/v0.82.0/ftl-0.82.0.darwin-arm64.tar.gz": "2fa170c06b347f2d7985d02a80223153297e9368dcd05a39b3b717fcfdf5dc3a",
"https://github.com/TBD54566975/ftl/releases/download/v0.82.0/ftl-0.82.0.darwin-amd64.tar.gz": "4e5bae7212cd73a27204ab9547ef3ca898c1b3da733dee5ed5a001f1954f87d8",
"https://github.com/TBD54566975/ftl/releases/download/v0.82.1/ftl-0.82.1.darwin-amd64.tar.gz": "9ae7c4597c1c315ffba3387de482d99efef1118f61d3c0ed96ec48d3cdde0316",
"https://github.com/TBD54566975/ftl/releases/download/v0.82.1/ftl-0.82.1.darwin-arm64.tar.gz": "4902254c5ca19d9b861bc797bb717af18f6cb35c24d0518d7dfc5ac4e227479f",
"https://github.com/TBD54566975/ftl/releases/download/v0.82.1/ftl-0.82.1.linux-amd64.tar.gz": "2072b5335e42a985b3f7dd4570c8ae7708da75a327a04500a981653629f103f2",
"https://github.com/TBD54566975/ftl/releases/download/v0.83.0/ftl-0.83.0.linux-amd64.tar.gz": "cd13075489f25de2b57c9b2b8211bcfa5bc6f6872f579c914b29587075327937",
"https://github.com/TBD54566975/ftl/releases/download/v0.83.0/ftl-0.83.0.darwin-arm64.tar.gz": "f3dff7c77185c59e0414a37f6651708759ac2c29e287f1755ef3af4a8cc137bf",
"https://github.com/TBD54566975/ftl/releases/download/v0.83.0/ftl-0.83.0.darwin-amd64.tar.gz": "2e78162b194be28c62b62967fe4e9f7cc1da9d0669f9ee83c4bedaaf4f02113b",
"https://github.com/TBD54566975/ftl/releases/download/v0.83.1/ftl-0.83.1.darwin-amd64.tar.gz": "aa77218dbc41f875338e29dc890b3a29fc8f95d070d98538144d5c25f2c35406",
"https://github.com/TBD54566975/ftl/releases/download/v0.83.1/ftl-0.83.1.linux-amd64.tar.gz": "10faf96c72c5a537a5164a74220f17fe2cefb3d3a8467b1f927369605c8a878d",
"https://github.com/TBD54566975/ftl/releases/download/v0.83.1/ftl-0.83.1.darwin-arm64.tar.gz": "3ca314389b134c5aee8ed611f559e26d8845b62e609aadccbe476c409b67e67a",
"https://github.com/TBD54566975/ftl/releases/download/v0.84.0/ftl-0.84.0.darwin-amd64.tar.gz": "947e06828441d59f79c1e01c4fa92e71df53b865af4367801dfe2fba0e066bb1",
"https://github.com/TBD54566975/ftl/releases/download/v0.84.0/ftl-0.84.0.darwin-arm64.tar.gz": "b8f46aa7bc6195dff3460ea42351e61c2d5f207b12ae3613483003098016af0e",
"https://github.com/TBD54566975/ftl/releases/download/v0.84.0/ftl-0.84.0.linux-amd64.tar.gz": "baa89ddc677cdf4db6cfe0dbc128f27ade8be314ede322dacd23ea28d6e2ff3f",
"https://github.com/TBD54566975/ftl/releases/download/v0.84.1/ftl-0.84.1.darwin-arm64.tar.gz": "9efbbb49878ee0c7cefb46be154b32d61c8be9afc2eeb44de72285a87d185bc9",
"https://github.com/TBD54566975/ftl/releases/download/v0.84.1/ftl-0.84.1.linux-amd64.tar.gz": "13da4f1ef33b4f56214cb82e292f6e1a07c71947ed2168a4c3009fccf550bf13",
"https://github.com/TBD54566975/ftl/releases/download/v0.84.1/ftl-0.84.1.darwin-amd64.tar.gz": "9fc2ef28ac8dc4299b1d621c0cfe52da5c347812234fc630a223d9185dee180e",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.0/ftl-0.85.0.darwin-arm64.tar.gz": "fc9a6ac500dce715998d454fdb29908b6a53201a4f9cedfb031dffbcee8ed513",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.0/ftl-0.85.0.darwin-amd64.tar.gz": "b7ac1c1650e5314950aad8f1a6f39293ea89845572ca00b4f5fa27233b735d54",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.0/ftl-0.85.0.linux-amd64.tar.gz": "f42bd46d3203b7ad54baccf7650aa1dfc6599c09f98f2b7c32c0ffd2072228c5",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.1/ftl-0.85.1.darwin-amd64.tar.gz": "5a8babf6dd59db6c327a4b487fa8e2344595e6f59a34697f723e91d2cf25a34c",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.1/ftl-0.85.1.linux-amd64.tar.gz": "9426913db67b8a263018af272647bea091ecc06f8264e02a399f9672b4328733",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.1/ftl-0.85.1.darwin-arm64.tar.gz": "e035694c1b0b5475fc600305fdf6eeeaa69efc54088bec5a8c228429fe7f5324",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.2/ftl-0.85.2.darwin-amd64.tar.gz": "8ff505448f19be3b65117ebf396e27f7320ea132fe50d531c6b925253c4c85a5",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.2/ftl-0.85.2.darwin-arm64.tar.gz": "4d91a36d523d48554d9f82c9886cdebd9fdc80e5bc128ba67c169a07150792a2",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.2/ftl-0.85.2.linux-amd64.tar.gz": "8d5e52c635390a18c6966e577b74b85121831f0e471d13cb12d1bf9ee0e8c2dd",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.3/ftl-0.85.3.linux-amd64.tar.gz": "1f0f2f1876171fe6c91e041ced94342347765e3133b482cc5efb0452abebdc45",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.3/ftl-0.85.3.darwin-amd64.tar.gz": "0fb232696499dc9e494626b00b79cfb0b4c7166d3dfe24e76c337aa1633839bb",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.3/ftl-0.85.3.darwin-arm64.tar.gz": "ec1e45cf586587953dc68ec313709e44fdb776ce50f2a0c07c1eec03a9c4008b",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.4/ftl-0.85.4.linux-amd64.tar.gz": "0b706f80acc76ef5c8720bd8e03aef53fc763695263d25e6265cc5d85869abd4",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.4/ftl-0.85.4.darwin-amd64.tar.gz": "5dbbaf55c30a174f92448d9db134ee64324ebc5067cf8742d47c0955d9554ed8",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.4/ftl-0.85.4.darwin-arm64.tar.gz": "5e73cbf6149d65be1cbe1fd67f4085583b71ee32f446ac119f2e2ffcbe974714",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.5/ftl-0.85.5.darwin-amd64.tar.gz": "5cf308af3f5c21a3d0cf7ad45e82c7c55b04f5d284e3791b172cc7b24a9d607b",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.5/ftl-0.85.5.darwin-arm64.tar.gz": "263ae503af2a95e541685efa735f547776c3ae1cfabbaf670c2ec6b6c660beb2",
"https://github.com/TBD54566975/ftl/releases/download/v0.85.5/ftl-0.85.5.linux-amd64.tar.gz": "dab744d11dd91ad5d7e8185492351bb3ccc2214da9b6870eb45beeea6db2e5ce",
"https://github.com/TBD54566975/ftl/releases/download/v0.86.0/ftl-0.86.0.linux-amd64.tar.gz": "b88f9cc0dfb165803b6cb7bb2fefc894873f0c5bd6afbcdf8694b121fd9e4a42",
"https://github.com/TBD54566975/ftl/releases/download/v0.86.0/ftl-0.86.0.darwin-amd64.tar.gz": "05d8a10210ba4df6509dcefe11fa5e52ba62d64c637c895a356fa5dc57bdcb6b",
"https://github.com/TBD54566975/ftl/releases/download/v0.86.0/ftl-0.86.0.darwin-arm64.tar.gz": "5399da30879c3617a7cea6eadcb0a07447577b41e33417a491188128221a2139",
"https://github.com/TBD54566975/ftl/releases/download/v0.87.0/ftl-0.87.0.linux-amd64.tar.gz": "4c67416d3b46d52d9d357bf7044e540639c41b5e902fca6d43745309c65b822d",
"https://github.com/TBD54566975/ftl/releases/download/v0.87.0/ftl-0.87.0.darwin-amd64.tar.gz": "a4e246c76ad8d9055664cd9a07e14896f610db5883b41363fb2b145c7c649f76",
"https://github.com/TBD54566975/ftl/releases/download/v0.87.0/ftl-0.87.0.darwin-arm64.tar.gz": "767ee96d59fd8866888615296fd166c48b09be4215a19f59c699a636de8fe7ad",
"https://github.com/TBD54566975/ftl/releases/download/v0.87.1/ftl-0.87.1.darwin-arm64.tar.gz": "369e7674cbe6503782098b74f162a115b063846e4c7dcf9fcf658d41ba9edded",
"https://github.com/TBD54566975/ftl/releases/download/v0.87.1/ftl-0.87.1.darwin-amd64.tar.gz": "4f6f2debe0b2a2b6f76e9ce2b0515e7b6cec87dbbe989e1c710a8684f9fd9b33",
"https://github.com/TBD54566975/ftl/releases/download/v0.87.1/ftl-0.87.1.linux-amd64.tar.gz": "e57c7058bc27244052d52e939ee7713a4915c66b26884f0f92abfc6e3600ff91",
"https://github.com/TBD54566975/ftl/releases/download/v0.87.2/ftl-0.87.2.darwin-arm64.tar.gz": "4ba1d21a335335b772a60d12ca184afcd7f0e1cd63ba780dd99ef127d33c2015",
"https://github.com/TBD54566975/ftl/releases/download/v0.87.2/ftl-0.87.2.darwin-amd64.tar.gz": "474e10163b7c0e8377cd4e5cae50af8512c2d6062930abcd0950c9d93409cdbf",
"https://github.com/TBD54566975/ftl/releases/download/v0.87.2/ftl-0.87.2.linux-amd64.tar.gz": "62a38677666f2e266116f13b2b62ab7c349367fe3f19f2456c4898be14f2bdc4",
"https://github.com/TBD54566975/ftl/releases/download/v0.88.0/ftl-0.88.0.darwin-amd64.tar.gz": "2526827d273c50ef0c86117e4c373498928447ad76056d869e89cb281dbf9a6a",
"https://github.com/TBD54566975/ftl/releases/download/v0.88.0/ftl-0.88.0.linux-amd64.tar.gz": "6886eb9686965bc405aca13cae5b9db581476467ed5470c42269c5cf5692a5aa",
"https://github.com/TBD54566975/ftl/releases/download/v0.88.0/ftl-0.88.0.darwin-arm64.tar.gz": "70c8f21915d01d8f1db86b38c81ead97814d2a929c12a93d1c33988c2a112c41",
"https://github.com/TBD54566975/ftl/releases/download/v0.89.0/ftl-0.89.0.linux-amd64.tar.gz": "498f31d001a41747027486bc8695d00746cd9dc6072e077acd586767a76b50a6",
"https://github.com/TBD54566975/ftl/releases/download/v0.89.0/ftl-0.89.0.darwin-amd64.tar.gz": "cf066010dbd884c2e19128b5188ad658fc0b8ee80ef171d85e3a4a859a68f536",
"https://github.com/TBD54566975/ftl/releases/download/v0.89.0/ftl-0.89.0.darwin-arm64.tar.gz": "26ff84ddd980876ef1b8c1ab1848f5a4b6972e9ef9bf2fcdd64bd2d356d8125b",
"https://github.com/TBD54566975/ftl/releases/download/v0.89.1/ftl-0.89.1.linux-amd64.tar.gz": "db7e14b37ad49ac5b3b0cad3b3f266ddb3efecdfa8eff175e40d8186c145c70e",
"https://github.com/TBD54566975/ftl/releases/download/v0.89.1/ftl-0.89.1.darwin-amd64.tar.gz": "53ecdcedb60145f6634749daa39b1c991a438dbdecf5f010a51043df3adba7a2",
"https://github.com/TBD54566975/ftl/releases/download/v0.89.1/ftl-0.89.1.darwin-arm64.tar.gz": "c56aec14fe2017f9b19e09439ba988d47ef70d73e12fceaa559ec3bfefc5cc8b",
"https://github.com/TBD54566975/ftl/releases/download/v0.89.2/ftl-0.89.2.darwin-amd64.tar.gz": "154119ace4796898c9ca99142411b3ee4ad7762e6650072e9ab79e54270a0af0",
"https://github.com/TBD54566975/ftl/releases/download/v0.89.2/ftl-0.89.2.linux-amd64.tar.gz": "5923ece8e4d16a97a3ca98b2df8cdd248fbf6ec8e0f1d58bf3a5ed5f14d1b400",
"https://github.com/TBD54566975/ftl/releases/download/v0.89.2/ftl-0.89.2.darwin-arm64.tar.gz": "edd484049fdde700ea7296116f9f279a88063da3e6aa1d2fc91211c93c572789",
"https://github.com/TBD54566975/ftl/releases/download/v0.90.0/ftl-0.90.0.darwin-arm64.tar.gz": "df532c8a9eb3ea4eff88038995f5f05a0da7ae066d8d391a1e8e62d3464b4d46",
"https://github.com/TBD54566975/ftl/releases/download/v0.90.0/ftl-0.90.0.darwin-amd64.tar.gz": "0d7d6bf83ace3b0fb6e87f5142e8561e297bb21938d8a0ca78f22c1c7e87702f",
"https://github.com/TBD54566975/ftl/releases/download/v0.90.0/ftl-0.90.0.linux-amd64.tar.gz": "f37bd50c5b744a90a91f0a7082a64d78f910d85d3a9724e8de3acc31f6e76569",
"https://github.com/TBD54566975/ftl/releases/download/v0.90.1/ftl-0.90.1.darwin-amd64.tar.gz": "3bb2933f598c7962b9a2955fb7ea413c829071c0c402a5b5ef155b06601b53bf",
"https://github.com/TBD54566975/ftl/releases/download/v0.90.1/ftl-0.90.1.darwin-arm64.tar.gz": "49c1ab04a8517a92eb321b3adf2841f789c0db1a6397274854a75e35c18ca7eb",
"https://github.com/TBD54566975/ftl/releases/download/v0.90.1/ftl-0.90.1.linux-amd64.tar.gz": "c2d718c20c602044ed89af4245ec7aa2156b845398f4de228f456afa7d912104",
"https://github.com/TBD54566975/ftl/releases/download/v0.91.0/ftl-0.91.0.darwin-arm64.tar.gz": "59c9886b6584d6c2200c9a5ff49b8a24022f2bb8d313789c6d95523fa938450f",
"https://github.com/TBD54566975/ftl/releases/download/v0.91.0/ftl-0.91.0.darwin-amd64.tar.gz": "89ff2fbcda1208c6d4b0a2b2e8385a42ad75faf6d7d90427ba49dd7e7184577b",
"https://github.com/TBD54566975/ftl/releases/download/v0.91.0/ftl-0.91.0.linux-amd64.tar.gz": "7021e6b0bcd1bddb3f0bdfcbbe60e9775f7e0e2b909f2e5f8528556020a75da9",
"https://github.com/TBD54566975/ftl/releases/download/v0.91.1/ftl-0.91.1.linux-amd64.tar.gz": "3ba104a333833cd4e3fea250e6cfff1e12e9c3e07c015580fd8fa5b474fcf8b4",
"https://github.com/TBD54566975/ftl/releases/download/v0.91.1/ftl-0.91.1.darwin-arm64.tar.gz": "ce4b0a9c6efefa20aa7d52e09a9bb4b1577e10378a125b900952e29851e69e17",
"https://github.com/TBD54566975/ftl/releases/download/v0.91.1/ftl-0.91.1.darwin-amd64.tar.gz": "d49e67907515782e297e002acdc8bf3fb9111ca303f2e19336bb1e4f1fb02bb9",
"https://github.com/TBD54566975/ftl/releases/download/v0.92.0/ftl-0.92.0.linux-amd64.tar.gz": "3fbbef7e96b96d97128457fbff357186e572c0972e82e8e078d1dadd50aaf131",
"https://github.com/TBD54566975/ftl/releases/download/v0.92.0/ftl-0.92.0.darwin-amd64.tar.gz": "effbf1ef14fe710dc42852d1a947f090a06d8af020b0241f194073161cab6f62",
"https://github.com/TBD54566975/ftl/releases/download/v0.92.0/ftl-0.92.0.darwin-arm64.tar.gz": "7148578f2d2f226707eb018b30a9c484eac5445b1df65ffc2acd968b1a2a9695",
"https://github.com/TBD54566975/ftl/releases/download/v0.93.0/ftl-0.93.0.darwin-arm64.tar.gz": "5829a3377c2dac6f76bd3dc26256329a0d073ae2a603c60f9b2579ad446e3871",
"https://github.com/TBD54566975/ftl/releases/download/v0.93.0/ftl-0.93.0.darwin-amd64.tar.gz": "c937d74abbf4d0d619fc067cfb60d87e77bfb272e2aad9fe34e9e0b0f764bff4",
"https://github.com/TBD54566975/ftl/releases/download/v0.93.0/ftl-0.93.0.linux-amd64.tar.gz": "2d69a86355c874180093ea9b5bbb2349f30d6de366862c93b6b907a2a9da4a01",
"https://github.com/TBD54566975/ftl/releases/download/v0.94.0/ftl-0.94.0.linux-amd64.tar.gz": "62de6da36bf49e2a02a9a28d09d56b0f7cf3bbc1ef407afbf0383adec4b8077d",
"https://github.com/TBD54566975/ftl/releases/download/v0.94.0/ftl-0.94.0.darwin-arm64.tar.gz": "78a7f3637642eb7279bd104aabad620b902a513d8df42c79b2756400762286ec",
"https://github.com/TBD54566975/ftl/releases/download/v0.94.0/ftl-0.94.0.darwin-amd64.tar.gz": "0cd33ab9c5b147fc88069ba161a6a6b187a707877a0347a256f0cbc49e0223aa",
"https://github.com/TBD54566975/ftl/releases/download/v0.94.1/ftl-0.94.1.darwin-arm64.tar.gz": "52d6dbb6ce6dee53bee0e5b444fe46cb9f9c3e337b27de68d37c37689b56c2d8",
"https://github.com/TBD54566975/ftl/releases/download/v0.94.1/ftl-0.94.1.darwin-amd64.tar.gz": "5e668bde13037c5d6baf12e7dcc2805c23ca23c5278bc0fc0981386cae9f6d85",
"https://github.com/TBD54566975/ftl/releases/download/v0.94.1/ftl-0.94.1.linux-amd64.tar.gz": "f664e3ceb14a995d87ff0cb6ec104ae70b9295bf5dea43116509f09798076fa9",
"https://github.com/TBD54566975/ftl/releases/download/v0.95.0/ftl-0.95.0.linux-amd64.tar.gz": "90c0b55180a63d11e6228cf2ebccc7f73caab93b35c9cc97219e4090ea5b6109",
"https://github.com/TBD54566975/ftl/releases/download/v0.95.0/ftl-0.95.0.darwin-arm64.tar.gz": "dfe631d0b04050377285ab974a4f3369ced9007423189fab28d46cbfe0110f30",
"https://github.com/TBD54566975/ftl/releases/download/v0.95.0/ftl-0.95.0.darwin-amd64.tar.gz": "0d628c50a68faf21c628bb2334f15a9d425c2334cca7e9723c3e414094df0e75",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.2/ftl-0.96.2.darwin-arm64.tar.gz": "cee1d8d07ee3fbb2bf3f01e7f736b3ae5cebc8c421e11bccdf2fe6b3818f68aa",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.2/ftl-0.96.2.linux-amd64.tar.gz": "2d74039cb152272ae10e501122bcee8a9877c885d710fffabdd7fa725e38ef74",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.2/ftl-0.96.2.darwin-amd64.tar.gz": "c777e8c326bd13f97ac4f1ba4ff64a88b9ca5b2e76f5ada20984cd4e540f6ba8",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.3/ftl-0.96.3.darwin-arm64.tar.gz": "356c49b09e6456bbbefaa293f501b090ab89f45137b857abfe36234cf9ba3b16",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.3/ftl-0.96.3.linux-amd64.tar.gz": "33f41b09cb4468bb755eab48b2d11296c90a297e945c21a95ac1ef5b0094adc6",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.3/ftl-0.96.3.darwin-amd64.tar.gz": "65792ad7e2ff06f83f4537d02eca609113c50efa80cb4029da080ece4fc4d28a",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.4/ftl-0.96.4.linux-amd64.tar.gz": "76bac54be1773ede360865e2fa54041224eee5c5c19e714f08319dbbe0f41c4a",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.4/ftl-0.96.4.darwin-amd64.tar.gz": "8985fde3d38245dacdba7d6cb0b10170f43ae5ae7dddb972ffb0e02e62034f32",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.4/ftl-0.96.4.darwin-arm64.tar.gz": "963cf1b55aa42d5d23a6f24660f7b5df7c6468154162aa739fd82d22eb67f7cd",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.5/ftl-0.96.5.darwin-arm64.tar.gz": "5ff8f85f12a0241123d97f643fc493c14fdbde3dda01be087440060dfdf8208f",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.5/ftl-0.96.5.darwin-amd64.tar.gz": "86bb023d249e9263771c77d53c0b64c92dd637f778d6008ceb046a9bf0e8d097",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.5/ftl-0.96.5.linux-amd64.tar.gz": "8b9813111d9d68b8c8c5c59205e0ea58465e35b42be6d8e5a34b242d607bbbe0",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.6/ftl-0.96.6.linux-amd64.tar.gz": "196b3912f78e5301aea625d14aa6c952b210e7fc2f48936d64d6687bcc557b2b",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.6/ftl-0.96.6.darwin-arm64.tar.gz": "27a52f03e0082a40e788ecd4e7c255334f4cded4cb3269ea0e3c59d2a9ce3205",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.6/ftl-0.96.6.darwin-amd64.tar.gz": "f50d35c12abba0a7a631778ab22ae19a923a56ca7b0a499fd6f965223bc3b350",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.7/ftl-0.96.7.darwin-arm64.tar.gz": "0f2f85b9c7b82f35d3aa1f17f8214a9dcb58c84c0f3f46e01ae687f6df797cbd",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.7/ftl-0.96.7.darwin-amd64.tar.gz": "d564dc7f93d4e2f2b608e68769d55bd58beb1192c9573d548377a8b444e1b408",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.7/ftl-0.96.7.linux-amd64.tar.gz": "e47db133168563799b23cde27efa66446615d88a2512a5935cfa3f70b38b43d9",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.8/ftl-0.96.8.darwin-arm64.tar.gz": "e61a77df6079588c8cc663fd9bdf483d061dc3b6325d41e58ea7ef280de3495f",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.8/ftl-0.96.8.linux-amd64.tar.gz": "c0105c0d3479f69fbabc4f00d230793e30529d30dcc823c69a0d0dd52e9ac48f",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.8/ftl-0.96.8.darwin-amd64.tar.gz": "5ba9055b6dd61f1f6e2bae418950ac2ffc6db8ca18e5716c1c31a0843572cb23",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.9/ftl-0.96.9.darwin-amd64.tar.gz": "9b3c2b0cc3a475fc58fdcd6daa1f6cdd726fcd819c0ab1c9ecb57d6fc65187d0",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.9/ftl-0.96.9.darwin-arm64.tar.gz": "c93cbfc16b5109dc29e6f20c78d0b706bb709617b4e12100b45582f3eda791a8",
"https://github.com/TBD54566975/ftl/releases/download/v0.96.9/ftl-0.96.9.linux-amd64.tar.gz": "efb6464df79461a10a5e716df70ebc25b2fe00ad7b3d2a35159952df0277308f",
"https://github.com/TBD54566975/ftl/releases/download/v0.97.0/ftl-0.97.0.darwin-amd64.tar.gz": "a800de609c59c7da28e70f91ef1464a2a2757c9d0daa9912b997453f6f97d3d8",
"https://github.com/TBD54566975/ftl/releases/download/v0.97.0/ftl-0.97.0.linux-amd64.tar.gz": "4bc77479c16d991a915e9ce47c5a91229e9513ca2eb839e03b17ee58f66f62c1",
"https://github.com/TBD54566975/ftl/releases/download/v0.97.0/ftl-0.97.0.darwin-arm64.tar.gz": "c089ebe50062f64eb90c2065614d701a7d12c0f3ace2b1f87e7d3cc1bdd4d6d0",
"https://github.com/TBD54566975/ftl/releases/download/v0.97.1/ftl-0.97.1.darwin-arm64.tar.gz": "fd3fe0b7a296a924d2a51d225f952a64c11cc85a9e4667240705701187c58303",
"https://github.com/TBD54566975/ftl/releases/download/v0.97.1/ftl-0.97.1.darwin-amd64.tar.gz": "e4c88cd41cfa86eed10690617ffda6f1ddec16e4d4304aeca944635abb15f1b1",
"https://github.com/TBD54566975/ftl/releases/download/v0.97.1/ftl-0.97.1.linux-amd64.tar.gz": "375991d695dbeac5b47674f824f7d2ef4046e2a40bb5436419e5eb14e05913a8",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.0/ftl-0.98.0.darwin-arm64.tar.gz": "79c0735c31cf132fda6858156436cb162bced9cc35c4054388c087aad5642ce8",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.0/ftl-0.98.0.darwin-amd64.tar.gz": "fd973bd9d64c9316d80428336b8dafd5392062513b79b3428c281344607bacca",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.0/ftl-0.98.0.linux-amd64.tar.gz": "94c612b077e74645f926068cf5a34afb7b773656e233f586ee0ff9afcaead1bf",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.1/ftl-0.98.1.darwin-amd64.tar.gz": "fe380de3d36f8a387840c5d7ae359860c0b11761efa26755fc151d12726dd2ff",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.1/ftl-0.98.1.linux-amd64.tar.gz": "c5e900b0f630911d6ff97dc14de920a9435df165e61b196c3ec3058cf76ba8f0",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.1/ftl-0.98.1.darwin-arm64.tar.gz": "4d5edb3f4105a27f01a8e180d722e8f2f8e6a8f8776f9b9b597801dc015604b7",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.2/ftl-0.98.2.darwin-arm64.tar.gz": "34f55d1c01f5b6cd6c7ffa434dcf4c1e458b5c475036c2381dce247091527f09",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.2/ftl-0.98.2.darwin-amd64.tar.gz": "6ff073254a47e4faee2a22dba7cfc0448f56eceec7d63007ff91f825f7010a1e",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.2/ftl-0.98.2.linux-amd64.tar.gz": "3ba67d4555938925c98644f02e11bbb75edc5311b19cf9d7ba0d9c9b34bb7baa",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.3/ftl-0.98.3.darwin-amd64.tar.gz": "e25ed550fb7577dc65ade75c923c74589ec836ecde6009d16665579ecbd23e64",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.3/ftl-0.98.3.darwin-arm64.tar.gz": "77f8fb36469fdd59bfbd45e97cd595ed4d6a62a512b34c3acb7fd36f2f2a1db9",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.3/ftl-0.98.3.linux-amd64.tar.gz": "e7c2ede38f4b00c0debcb015967184b353370ecd157e09a48448aae90d3ba2ff",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.4/ftl-0.98.4.darwin-amd64.tar.gz": "933f9a03ed088916af042c068ad3c3e8d47d71ea7ef7cdd14ac4409a165ead34",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.4/ftl-0.98.4.darwin-arm64.tar.gz": "9a35074fbb715006489717a25bb917865cd9e737e2d2b7de78dd6745efebad5e",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.4/ftl-0.98.4.linux-amd64.tar.gz": "f42caf6bbce1c7ee622f26b07d9dc0af316f37a739f3f97c4126b30db2d1c36b",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.5/ftl-0.98.5.darwin-arm64.tar.gz": "3f4046516fe07103b05190f41149e315bebd52dc1470a4e3419d37c0df66406c",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.5/ftl-0.98.5.linux-amd64.tar.gz": "2795e6c95302660332cc2ceec6f6fe571dacebb04d8f48709e7b4f5319f4c1c9",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.5/ftl-0.98.5.darwin-amd64.tar.gz": "82a1e728dfcc7f48cfd540c1d7ba7cd91bcc53cbbfcddb775446e1a945ce9489",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.6/ftl-0.98.6.darwin-amd64.tar.gz": "216309e59541c7fdb3db836d762fed44b58249ec6ac779f3989b5861a357e2d6",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.6/ftl-0.98.6.darwin-arm64.tar.gz": "5e8992fcb9aaf93d9d8bf8b16ebb32a618ae254748f3f5ed0555bd4e446aa6ce",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.6/ftl-0.98.6.linux-amd64.tar.gz": "3a6d26c315839cfe7ab0874dbf69cf1a7c1721f197c50cde3bb3427515b28e54",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.7/ftl-0.98.7.darwin-arm64.tar.gz": "9b7c7f8071be9692a289f6bd79dce05539ec1a56f113e2cb55240019e13dc878",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.7/ftl-0.98.7.darwin-amd64.tar.gz": "dfa86fae419ede9f5f406cce7f73cb2d24ea3c20f552ab9526076450f23aee39",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.7/ftl-0.98.7.linux-amd64.tar.gz": "63d9711d4cf01735927c86905a6201f4b8350aa2fbd631303abc00f131a45274",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.8/ftl-0.98.8.darwin-amd64.tar.gz": "98191f523c19ef261b1e2d479b9fd16d2af8c39d6dcf381b4caf7b24dc62d794",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.8/ftl-0.98.8.linux-amd64.tar.gz": "54bcf0bb68a7cb55d7d67772bcbd88a95e00e8999c3fdeff02fe2d8d0e376760",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.8/ftl-0.98.8.darwin-arm64.tar.gz": "289fc22f1b869c9783456fd55be2b6bc775ac8dc4a802fe402e5b0524586f6f1",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.9/ftl-0.98.9.darwin-arm64.tar.gz": "90d28f0ac7fbc9593861604ec612680a576c840278ac9152f8036de8577b77b4",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.9/ftl-0.98.9.darwin-amd64.tar.gz": "bf50ab2da4aff8deb44611b6c29b0a72abc0c7484bf6d6e4c28288b1fd85b04d",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.9/ftl-0.98.9.linux-amd64.tar.gz": "07895b374563e4f2e6ffa5832d4d5785592589bdaf99c25adc4c8208e532d214",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.10/ftl-0.98.10.linux-amd64.tar.gz": "10799e7aaad8c7af5230fc3ad9d00a6baddf16629088d8cde79f15556f9c5ed4",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.10/ftl-0.98.10.darwin-amd64.tar.gz": "7c24007882ac9b6856f6fde89a5b0f38071bfef745baba383250231874322fcd",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.10/ftl-0.98.10.darwin-arm64.tar.gz": "0f563dfb104b1dbd4543d7466a0769bffefd3a84b43a6cc9b16eae4330467f96",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.11/ftl-0.98.11.linux-amd64.tar.gz": "016191a7f0ccc02d0c766af82a1f961adaec658cc7edb41c426736f66e9dae9b",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.11/ftl-0.98.11.darwin-arm64.tar.gz": "eb80bb1c58f796b281d58621cb4f7229910b2cfe6575a7c5d025945944cfd976",
"https://github.com/TBD54566975/ftl/releases/download/v0.98.11/ftl-0.98.11.darwin-amd64.tar.gz": "fd03832402d50ef1c138f3ae337d55f1f0944824dc24461d73b1049b112b526e",
"https://github.com/TBD54566975/ftl/releases/download/v0.99.0/ftl-0.99.0.linux-amd64.tar.gz": "ca2844b95eb5ab9bdbad023e2324346da1b36e6ff8764133cf7b38ed3c87115b",
"https://github.com/TBD54566975/ftl/releases/download/v0.99.0/ftl-0.99.0.darwin-arm64.tar.gz": "a3eee65f032fb503599a16aff2c8d4286677422ab0c06eb0e7e79da6f2dc6fdb",
"https://github.com/TBD54566975/ftl/releases/download/v0.99.0/ftl-0.99.0.darwin-amd64.tar.gz": "9b642a161322e14b95d860467c0ffd2f7829286f6439f6b64fb63a905933b1bf",
"https://github.com/TBD54566975/ftl/releases/download/v0.100.0/ftl-0.100.0.darwin-arm64.tar.gz": "4a841ab5d7a34325ae4bb7b9db8fede333e0c5c5de8fa7da4bdd51c58aa741d1",
"https://github.com/TBD54566975/ftl/releases/download/v0.100.0/ftl-0.100.0.darwin-amd64.tar.gz": "e03808f3a5662cbbf65c376f5f5709d19ccf3d36beb1d2f1dc167d6fac563ce8",
"https://github.com/TBD54566975/ftl/releases/download/v0.100.0/ftl-0.100.0.linux-amd64.tar.gz": "1507ce0aa4fea1d901b8997d79096774343ef7b26ee4effe3aa879e17cfee464",
"https://github.com/TBD54566975/ftl/releases/download/v0.101.0/ftl-0.101.0.linux-amd64.tar.gz": "bba807ee1c762cda556f240e679da54a45acc8627361604b7605aef88f565baa",
"https://github.com/TBD54566975/ftl/releases/download/v0.101.0/ftl-0.101.0.darwin-arm64.tar.gz": "06a00c3c6a558601bbe918b2f64e6bf47c30fbd34166143bb34fa29b8b9430ba",
"https://github.com/TBD54566975/ftl/releases/download/v0.101.0/ftl-0.101.0.darwin-amd64.tar.gz": "9767b21f73bd6ff98e8a0852e229668a82a5399b7e5b881e639d73946130a6f8",
"https://github.com/TBD54566975/ftl/releases/download/v0.101.1/ftl-0.101.1.linux-amd64.tar.gz": "7923b353796f9117fb83f6d89fc91f08b8f29fac16eb22c8b3bcd5fab5696f5c",
"https://github.com/TBD54566975/ftl/releases/download/v0.101.1/ftl-0.101.1.darwin-amd64.tar.gz": "51a66f47f1aaacb231d941df838667a05c6db2332c0f814d7f60b3cafc498e98",
"https://github.com/TBD54566975/ftl/releases/download/v0.101.1/ftl-0.101.1.darwin-arm64.tar.gz": "c247fe6b4fe416467642a8391770cbf64fa2457400df785afdd983f944d49015",
"https://github.com/TBD54566975/ftl/releases/download/v0.102.0/ftl-0.102.0.linux-amd64.tar.gz": "e170e3a53ebb62b001588a0ecf47dbef154f1d26932379a3ef602aee72927728",
"https://github.com/TBD54566975/ftl/releases/download/v0.102.0/ftl-0.102.0.darwin-amd64.tar.gz": "1e1d14ee377246a8caafe2fd94ec0a2d0f8b713452c0a9d184bdbcf2e5719024",
"https://github.com/TBD54566975/ftl/releases/download/v0.102.0/ftl-0.102.0.darwin-arm64.tar.gz": "66ebf8e0d6ef7a53185b6b7cf1d0e2837bf2d6087f58a80a55d2defa2b4d0a96",
"https://github.com/TBD54566975/ftl/releases/download/v0.102.1/ftl-0.102.1.darwin-arm64.tar.gz": "1dcbfcc9ba4ff67f4f2962af490656514ba798e22a62b81e57749ca480738ee2",
"https://github.com/TBD54566975/ftl/releases/download/v0.102.1/ftl-0.102.1.darwin-amd64.tar.gz": "4f7e1883dd60e91094f6cf8c10ce5e65f1226394d5e2489143155f16dec5bfae",
"https://github.com/TBD54566975/ftl/releases/download/v0.102.1/ftl-0.102.1.linux-amd64.tar.gz": "ab8187417e28d5b2cbab21f02c1badcc94bb5c2a5ca36a7455d2ee13430d1ee7",
"https://github.com/TBD54566975/ftl/releases/download/v0.103.0/ftl-0.103.0.darwin-arm64.tar.gz": "e725d7ce246e2d210f15b3932de8e7b53a522a458bd37b030e1cd9c46f1dfb23",
"https://github.com/TBD54566975/ftl/releases/download/v0.103.0/ftl-0.103.0.darwin-amd64.tar.gz": "7f2d922403940d52eeeade37fc83cc118381020acbb84ae7b4704705e26fe957",
"https://github.com/TBD54566975/ftl/releases/download/v0.103.0/ftl-0.103.0.linux-amd64.tar.gz": "7e049340ea8a952e9490c53717aeb625caa1938f781eaf1ddbb6966d9fca0760",
"https://github.com/TBD54566975/ftl/releases/download/v0.104.0/ftl-0.104.0.darwin-arm64.tar.gz": "854b1ea114ffc4105c9f79fb0a05aee5861ed7531c3be6833042c874f0f902a4",
"https://github.com/TBD54566975/ftl/releases/download/v0.104.0/ftl-0.104.0.linux-amd64.tar.gz": "26592fe252560e47cadd7231ae8b923322414d8d788b39b0df6fb590c9e73bbb",
"https://github.com/TBD54566975/ftl/releases/download/v0.104.0/ftl-0.104.0.darwin-amd64.tar.gz": "943b4c874f40b54fa9a88bb9d5f7e62b5e22ed147e3c9effcefdc794b7822bf3",
"https://github.com/TBD54566975/ftl/releases/download/v0.104.1/ftl-0.104.1.darwin-arm64.tar.gz": "28e0ef56457f9935153087dde361aa7cb6de2ef658df72ce7cb383e6fb067b0a",
"https://github.com/TBD54566975/ftl/releases/download/v0.104.1/ftl-0.104.1.linux-amd64.tar.gz": "cd2b0a7cebdff3bc8edb9bcc33e5e857fa8cff415e0ec3c9a47a7306eadbd5c4",
"https://github.com/TBD54566975/ftl/releases/download/v0.104.1/ftl-0.104.1.darwin-amd64.tar.gz": "c89f8166d2f821bd150869c4fc72ef42dbeaa04facaa2ffedb6177eab2b18ef0",
"https://github.com/TBD54566975/ftl/releases/download/v0.105.0/ftl-0.105.0.darwin-amd64.tar.gz": "24cf175b5109a59a86420854b1d01d82a652f242020f653dca7348a7741a90fa",
"https://github.com/TBD54566975/ftl/releases/download/v0.105.0/ftl-0.105.0.linux-amd64.tar.gz": "ce4e7aa7e470f7ca67a4b5e17326ab10ea8cdf2c6a9acc856c87aab8bb2ad304",
"https://github.com/TBD54566975/ftl/releases/download/v0.105.0/ftl-0.105.0.darwin-arm64.tar.gz": "0c602e5368878efdc952b1d565ea24c5ebfd37b6a8dc812b5bb002dd71faf8ab",
"https://github.com/TBD54566975/ftl/releases/download/v0.105.1/ftl-0.105.1.darwin-arm64.tar.gz": "aebe596e06574262256935168dc8f5ae593fd291d09a448ef3729ab6da5821fd",
"https://github.com/TBD54566975/ftl/releases/download/v0.105.1/ftl-0.105.1.linux-amd64.tar.gz": "c1d72ab5ec3091d8286a3ecbbcbabf78a2ecf35677a4ec50089fa29633b6322d",
"https://github.com/TBD54566975/ftl/releases/download/v0.105.1/ftl-0.105.1.darwin-amd64.tar.gz": "4561aa8f5939b9f21067655f4d5d2462e13347c561937ffe6336f7e30490cbc6",
"https://github.com/TBD54566975/ftl/releases/download/v0.106.0/ftl-0.106.0.linux-amd64.tar.gz": "0b3df4150b7178eb1061b308bf8082716f16ee6417ca811b3f85588cc5d00991",
"https://github.com/TBD54566975/ftl/releases/download/v0.106.0/ftl-0.106.0.darwin-arm64.tar.gz": "eb7b829b9e4889af12be24d73f5bbd400e59180ce720b2433561398f44c6f846",
"https://github.com/TBD54566975/ftl/releases/download/v0.106.0/ftl-0.106.0.darwin-amd64.tar.gz": "971d6c8dd39a4c74c4210d0d863f9b39fc1a25fd003433917b168b23fa5d001d",
"https://github.com/TBD54566975/ftl/releases/download/v0.107.0/ftl-0.107.0.linux-amd64.tar.gz": "7857ce173f6cf48b6c0ea4cf6438e2301dd1538716caf9d4be5cc740c4203a64",
"https://github.com/TBD54566975/ftl/releases/download/v0.107.0/ftl-0.107.0.darwin-arm64.tar.gz": "43299551192b0d0e2cdba175205c941768f16bb9ebec694cababff1a575a3dea",
"https://github.com/TBD54566975/ftl/releases/download/v0.107.0/ftl-0.107.0.darwin-amd64.tar.gz": "228c6ae2dc9e380bc9874303701cfd6053959b3278cd299c9eba300db655b767",
"https://github.com/TBD54566975/ftl/releases/download/v0.108.0/ftl-0.108.0.linux-amd64.tar.gz": "1514ff6a7a216e8a3889db8e82c4d4390e921f0668acb3045a36c50783e90ae3",
"https://github.com/TBD54566975/ftl/releases/download/v0.108.0/ftl-0.108.0.darwin-amd64.tar.gz": "d389525fa7d0ae5ff0b47205be4aa2f5c1e35f748bcb6e25750d654f75c391df",
"https://github.com/TBD54566975/ftl/releases/download/v0.108.0/ftl-0.108.0.darwin-arm64.tar.gz": "a84fe52439a65c0ffbfc266bc0d5e14c14e240c8107e8c60130ed7bdffb7a91c",
"https://github.com/TBD54566975/ftl/releases/download/v0.108.1/ftl-0.108.1.darwin-arm64.tar.gz": "2170c0171e8db18c3df9c8723d40b703d98bfaa9b08f8ae39a92fedf65e604b4",
"https://github.com/TBD54566975/ftl/releases/download/v0.108.1/ftl-0.108.1.linux-amd64.tar.gz": "d4e1e9c52c6bb494278f86caeaaf0e17fbc96b60743e0dc275c870aee7ecbd2f",
"https://github.com/TBD54566975/ftl/releases/download/v0.108.1/ftl-0.108.1.darwin-amd64.tar.gz": "b9f32468cd345a70c0bd22ed4d2f976b657287dcf3273fcfffd3b8e57bb09a21",
"https://github.com/TBD54566975/ftl/releases/download/v0.109.0/ftl-0.109.0.linux-amd64.tar.gz": "b38dc82ff32783bbbbe6c89bfa5d386719efb59b948affbdeb0ca797cbb133df",
"https://github.com/TBD54566975/ftl/releases/download/v0.109.0/ftl-0.109.0.darwin-amd64.tar.gz": "4e9e999e16584edc05ce742446a7974987f4233571b7df68640328e8ecee6d36",
"https://github.com/TBD54566975/ftl/releases/download/v0.109.0/ftl-0.109.0.darwin-arm64.tar.gz": "021c1c65400e96f865e4af9475ba929256d91a3960e1dde799b0d341c622a3c5",
"https://github.com/TBD54566975/ftl/releases/download/v0.109.1/ftl-0.109.1.darwin-amd64.tar.gz": "040083f29dc6b0bd63b1b1ce7d5a5ac67d35909959bbc35af325b960f7df5105",
"https://github.com/TBD54566975/ftl/releases/download/v0.109.1/ftl-0.109.1.darwin-arm64.tar.gz": "9ad8d3996ef48aa02cf1030443e0d19d9d9e7a7938aef18044fa03bb642c55f1",
"https://github.com/TBD54566975/ftl/releases/download/v0.109.1/ftl-0.109.1.linux-amd64.tar.gz": "f2be2460652039dc90fb650112b59510f947f255ef1df7a295002f86a20b5285",
"https://github.com/TBD54566975/ftl/releases/download/v0.109.2/ftl-0.109.2.linux-amd64.tar.gz": "f10e737e71f688a1147606adf94cfb4787396de263cfb481307ba6cf7c5bf79a",
"https://github.com/TBD54566975/ftl/releases/download/v0.109.2/ftl-0.109.2.darwin-arm64.tar.gz": "119915904a24fb35176124ec736118ef5b8b894013dceeb00cbcba3362a20a71",
"https://github.com/TBD54566975/ftl/releases/download/v0.109.2/ftl-0.109.2.darwin-amd64.tar.gz": "d84bc43cfcbc623f951d6671b8f20b8a84d46bc6cde189683b98ca164191f3ff",
"https://github.com/TBD54566975/ftl/releases/download/v0.109.3/ftl-0.109.3.darwin-amd64.tar.gz": "bc70437f2658424137aff19c63a7eba723d66c69063b40ec6261d53e46664d51",
"https://github.com/TBD54566975/ftl/releases/download/v0.109.3/ftl-0.109.3.linux-amd64.tar.gz": "587a14e1758fbd2c92ff5e7a21c3f687add0e1baac60bd2d92c99fc3967c1425",
"https://github.com/TBD54566975/ftl/releases/download/v0.109.3/ftl-0.109.3.darwin-arm64.tar.gz": "781be8a208befe90b9f871d79e9a6d40e82c36979cf9fdbae9bccf64f95d3153",
"https://github.com/TBD54566975/ftl/releases/download/v0.110.0/ftl-0.110.0.linux-amd64.tar.gz": "390d4c934e73dc7e0a31cd15b0d5f14baa7bde051d28e0681c3a1c245c009350",
"https://github.com/TBD54566975/ftl/releases/download/v0.110.0/ftl-0.110.0.darwin-amd64.tar.gz": "8ef872efe46219c11d6f92d43af2623a271ee655445409aed8a0ccbc8df4a68c",
"https://github.com/TBD54566975/ftl/releases/download/v0.110.0/ftl-0.110.0.darwin-arm64.tar.gz": "328c0e74c651a43a142ca858619372986950aa2f404bca2d678a4fdbd2a92465",
"https://github.com/TBD54566975/ftl/releases/download/v0.111.0/ftl-0.111.0.darwin-amd64.tar.gz": "8b7d1aef7526c0d29fa1075d208204156c806ff180d4b3b87c331386ab5a6ab1",
"https://github.com/TBD54566975/ftl/releases/download/v0.111.0/ftl-0.111.0.darwin-arm64.tar.gz": "e42f66fd88891ea4a7096ce58c0c182909f242e478935e5ea461a52c867dd5e6",
"https://github.com/TBD54566975/ftl/releases/download/v0.111.0/ftl-0.111.0.linux-amd64.tar.gz": "aa2b89779f89b0e1a07809889e784afe9a97d6d3d1fdfd3ba21e37fd560b63f3",
"https://github.com/TBD54566975/ftl/releases/download/v0.111.1/ftl-0.111.1.darwin-amd64.tar.gz": "bb61adab881f4c0175524ef2b21f5e1861144ca5250eab2c2528b14e2f342f18",
"https://github.com/TBD54566975/ftl/releases/download/v0.111.1/ftl-0.111.1.darwin-arm64.tar.gz": "e46fad8ce2931c3247f543cf59ece502132cf1fa64b8c324b9838f61e6939cb6",
"https://github.com/TBD54566975/ftl/releases/download/v0.111.1/ftl-0.111.1.linux-amd64.tar.gz": "092d8b74f0e01a262882e5dac21d079e6257ecdeb68b52b0faae5bead624304e",
"https://github.com/TBD54566975/ftl/releases/download/v0.111.2/ftl-0.111.2.linux-amd64.tar.gz": "5f50962609b16dda08fb68eb83c4ac9ccf750fd139f1be421821eacdd606f027",
"https://github.com/TBD54566975/ftl/releases/download/v0.111.2/ftl-0.111.2.darwin-arm64.tar.gz": "710a2cc328bc11a21c3e91b65ef0070f5f92a96543edc5804e721404d35d129c",
"https://github.com/TBD54566975/ftl/releases/download/v0.111.2/ftl-0.111.2.darwin-amd64.tar.gz": "101ece0eaabd753efa040425957c26e66e88f3d0329abf298e52b0380acc7f41",
"https://github.com/TBD54566975/ftl/releases/download/v0.111.3/ftl-0.111.3.darwin-amd64.tar.gz": "2aecc930906238b13ef1a26384af776a4b2380836532cd2c05380e88a8c12d63",
"https://github.com/TBD54566975/ftl/releases/download/v0.111.3/ftl-0.111.3.linux-amd64.tar.gz": "340032b768c3d55e9a96cd48707ccd15b076e9d6744a6cc7a632d3c5f4fa3cd1",
"https://github.com/TBD54566975/ftl/releases/download/v0.111.3/ftl-0.111.3.darwin-arm64.tar.gz": "c0901216a3c4c9f21878c38a687a8d4dbd57ef0cc10ccc3d3c8cf6eb0af32729",
"https://github.com/TBD54566975/ftl/releases/download/v0.112.0/ftl-0.112.0.darwin-amd64.tar.gz": "cf0056aaafd2284692fac5768049d68296a5e0bdc14d5651eb62e0b15fd4a99b",
"https://github.com/TBD54566975/ftl/releases/download/v0.112.0/ftl-0.112.0.darwin-arm64.tar.gz": "e680b31b9d31ed55a2a27b8bff3b67c07ca9f337ed987c57f90097f5ace3e0e8",
"https://github.com/TBD54566975/ftl/releases/download/v0.112.0/ftl-0.112.0.linux-amd64.tar.gz": "0b5202fae8c970492eb6c6bb1404344861dd2c060ec464271cfc030ad7dc29ee",
"https://github.com/TBD54566975/ftl/releases/download/v0.112.1/ftl-0.112.1.darwin-amd64.tar.gz": "6e8e10a849c3c99ce53fc62a425a76ca1b38c7150adfc220bf05467207d538b3",
"https://github.com/TBD54566975/ftl/releases/download/v0.112.1/ftl-0.112.1.linux-amd64.tar.gz": "85547327b3dcda7126b6d6ff4e6da4c6e4d5f7aadaf105f84eca563059f87982",
"https://github.com/TBD54566975/ftl/releases/download/v0.112.1/ftl-0.112.1.darwin-arm64.tar.gz": "d2c4f9b3b3f648bae6cceaa4927fd8ccfb9172d3afc51f4ce05fbd28928078b4",
"https://github.com/TBD54566975/ftl/releases/download/v0.113.0/ftl-0.113.0.darwin-arm64.tar.gz": "5280116fab672a97d022f82f730c364215a8346e78bcbdde9f9a18b7a25ba684",
"https://github.com/TBD54566975/ftl/releases/download/v0.113.0/ftl-0.113.0.linux-amd64.tar.gz": "8480d1769bcbba541ec2b5ed6c32b39181a7d0f5b40ac3b4fe03ac91d0069247",
"https://github.com/TBD54566975/ftl/releases/download/v0.113.0/ftl-0.113.0.darwin-amd64.tar.gz": "e52c8c3827c94e8578a1755ce22a5bdafc9ee5f0dc8d1606593b6ecc59b2ea36",
"https://github.com/TBD54566975/ftl/releases/download/v0.113.1/ftl-0.113.1.linux-amd64.tar.gz": "16e1cafd959d38bf6ab7930f3edc95ab36b7d2ca63011f289b867ed52b27d901",
"https://github.com/TBD54566975/ftl/releases/download/v0.113.1/ftl-0.113.1.darwin-arm64.tar.gz": "3a74ea13c91a7e093875265366db628f361de06e13970fc71d0124e54ca48814",
"https://github.com/TBD54566975/ftl/releases/download/v0.113.1/ftl-0.113.1.darwin-amd64.tar.gz": "1268da3f9b3e58a8f3268c2e3aac741eafaf4800dd0bcfdfd4e95a04aecc135b",
"https://github.com/TBD54566975/ftl/releases/download/v0.114.0/ftl-0.114.0.linux-amd64.tar.gz": "922aab08f8005d91a6ed3561ef068b5a8c9a9fe76543a901dbb8364bc576755c",
"https://github.com/TBD54566975/ftl/releases/download/v0.114.0/ftl-0.114.0.darwin-amd64.tar.gz": "3dfd7a8fc4bdbd8f197b645ff6717d70b7f83abfa6ee6a5f9f237d1b1de11609",
"https://github.com/TBD54566975/ftl/releases/download/v0.114.0/ftl-0.114.0.darwin-arm64.tar.gz": "1888dd9c531a47d7f803e773656ab6243b975e094ab8eaeb8f1571097b84768a",
"https://github.com/TBD54566975/ftl/releases/download/v0.114.1/ftl-0.114.1.linux-amd64.tar.gz": "95690cc8e50ee61b90df854a7ee7bc6c28aeaa2734529ebd369d34ca347490be",
"https://github.com/TBD54566975/ftl/releases/download/v0.114.1/ftl-0.114.1.darwin-amd64.tar.gz": "ad485e31377d9fd0a984ef93a57d0c5094faee211561f3b3991ffa6879f9ac4b",
"https://github.com/TBD54566975/ftl/releases/download/v0.114.1/ftl-0.114.1.darwin-arm64.tar.gz": "6326fda7c2314848b95929b092fc57040547b0978d9bfb0887aa6c725ba8a172",
"https://github.com/TBD54566975/ftl/releases/download/v0.115.0/ftl-0.115.0.linux-amd64.tar.gz": "b1e26babd35f0a2ae6530d21039981e2e382c36631ae0155ddb7951d1b018007",
"https://github.com/TBD54566975/ftl/releases/download/v0.115.0/ftl-0.115.0.darwin-arm64.tar.gz": "b3d86ff087e65d61909adb547359dbe3a7982c5e565c4d7c55f9d3727e4c8d14",
"https://github.com/TBD54566975/ftl/releases/download/v0.115.0/ftl-0.115.0.darwin-amd64.tar.gz": "8d8bedc9c8b2c8f77792e826eeba2bea20ae6700d50cbc170572a366f06d25a2",
"https://github.com/TBD54566975/ftl/releases/download/v0.115.1/ftl-0.115.1.linux-amd64.tar.gz": "5bd6c15ee344f9b82b56fd59555288fd0fa49ede6f04d2c33f1e5a8dc95a79b8",
"https://github.com/TBD54566975/ftl/releases/download/v0.115.1/ftl-0.115.1.darwin-amd64.tar.gz": "b0539307307f81cc26738dc3efe5aacc68138207446296b76f81055c5eee2bd0",
"https://github.com/TBD54566975/ftl/releases/download/v0.115.1/ftl-0.115.1.darwin-arm64.tar.gz": "a61ec6b5d4f8983fcca3b582d45bff6a4f3b76225baa21814041ae80d5bb02f8",
"https://github.com/TBD54566975/ftl/releases/download/v0.116.0/ftl-0.116.0.darwin-amd64.tar.gz": "9532ea23f7b4811ba814c6d97cbbdefbebdec9777d2eef9cf0344d999e8f7a12",
"https://github.com/TBD54566975/ftl/releases/download/v0.116.0/ftl-0.116.0.linux-amd64.tar.gz": "bfb7be9c8ffeddfce8902dec927ce9e2088ec114ee1bb1adb710c6615563fe18",
"https://github.com/TBD54566975/ftl/releases/download/v0.116.0/ftl-0.116.0.darwin-arm64.tar.gz": "c397dc308755bec4e09ba1a416b093b76553eca02f2f55e75acb3dd33ec8507c",
"https://github.com/TBD54566975/ftl/releases/download/v0.116.1/ftl-0.116.1.darwin-arm64.tar.gz": "5126ce0f7e5287bd030437dbe22021165447dd5338b177125dd9a0bbe2bdb15f",
"https://github.com/TBD54566975/ftl/releases/download/v0.116.1/ftl-0.116.1.darwin-amd64.tar.gz": "7f73cedfb4b7ce4455a38730bef78c204ce0a6aadfe493a2c562d95458b1385d",
"https://github.com/TBD54566975/ftl/releases/download/v0.116.1/ftl-0.116.1.linux-amd64.tar.gz": "8aa76423ac999f1de390898cfb0c641944ca4b8732707aa8a29c369303bcccf9",
"https://github.com/TBD54566975/ftl/releases/download/v0.117.0/ftl-0.117.0.linux-amd64.tar.gz": "4e458b208df437d9c494088e6a6be44d2596a7a679eca6afa9417333194b8d27",
"https://github.com/TBD54566975/ftl/releases/download/v0.117.0/ftl-0.117.0.darwin-amd64.tar.gz": "f3e53f3b93945ac3f7c29c995c43810c34c95e3c333df8f361b2596a69d62ca1",
"https://github.com/TBD54566975/ftl/releases/download/v0.117.0/ftl-0.117.0.darwin-arm64.tar.gz": "d57355bf3cd05ab057f1e835de7fe241d6cb7cb1b1d842fb1df36917274d4005",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.0/ftl-0.118.0.linux-amd64.tar.gz": "cd2d15256e71a728ddb87a77359a1ad30ccff4381bf82b4402cafd7e6819651d",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.0/ftl-0.118.0.darwin-arm64.tar.gz": "28ced2e83f3a4c290e7f1d11cd0e00bf0de8e6079715889b534350cb55459733",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.0/ftl-0.118.0.darwin-amd64.tar.gz": "90438e5a8f27cfa5ec748a004a077b23f7b30f5423c0f1ecaca55ef0efceac6d",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.1/ftl-0.118.1.darwin-arm64.tar.gz": "b6a8febabd1cc35d6d2956f1f765f1d39da85ca4970d937efeca45f1213641fe",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.1/ftl-0.118.1.linux-amd64.tar.gz": "1abe1ad0be6f9ae90c58390500ac696914b08b38114a7f05f6635816e6e73365",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.1/ftl-0.118.1.darwin-amd64.tar.gz": "d9c0b5a4afac915f40b8a363b9f4f8763b13c05b870eb8af4b3c4356be32d001",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.2/ftl-0.118.2.darwin-amd64.tar.gz": "0c59a325ce2120aaed6697dbdc33da43ec5d3d3d90d7280bb436304f45dc774d",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.2/ftl-0.118.2.darwin-arm64.tar.gz": "5ff365620d899217040eec62d9534b02b771c11284328f6887fc6e2e2ddc1c60",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.2/ftl-0.118.2.linux-amd64.tar.gz": "f33966a1970035a49430c8b6799c4a5ee6df504a52fef069d0c9acab107fb76c",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.3/ftl-0.118.3.darwin-arm64.tar.gz": "65efeec4f30a53af26d780828ccd6739efdb58aefa36cbc29b33dc93c5f6ea59",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.3/ftl-0.118.3.darwin-amd64.tar.gz": "f9681898a0c4f4d09b5293ed793cf873305c7caccabebe6230be8d839a26b151",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.3/ftl-0.118.3.linux-amd64.tar.gz": "644da2d6b787ded1d448cbfd17a1cd6e28497c407ddbdf2191e3fe6557e1ca10",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.4/ftl-0.118.4.darwin-arm64.tar.gz": "85a8ea681335d7f6ad03fe1d758e4cf4ad9a6b85d5e7047eb26059414af7989d",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.4/ftl-0.118.4.darwin-amd64.tar.gz": "c120f6879065c93bb3f158e169587867c3fbc392f769b97660105fd2071b988b",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.4/ftl-0.118.4.linux-amd64.tar.gz": "765bd8122c1fd5d99422bab6ce7e4286bda4d1b521d4c6749733dc15cafdb840",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.5/ftl-0.118.5.linux-amd64.tar.gz": "b89ef04834f7bb190fd9ec19cafd204eb2626553d8e9139ff73a55547cddda8c",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.5/ftl-0.118.5.darwin-amd64.tar.gz": "11dab45f511cd4cfa6d342014e2b670a80ab506097e4d60c5a156fb18cd6137e",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.5/ftl-0.118.5.darwin-arm64.tar.gz": "47b6538c7a90195217781139936a2d6568ee8c44f48e6000a1904989db90caea",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.6/ftl-0.118.6.linux-amd64.tar.gz": "529c293be4da7c2e01a4502d30bada4d01286e8faa9757c55d10f1588dd3c888",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.6/ftl-0.118.6.darwin-amd64.tar.gz": "1ac5d128f343a5fc0ad12d17cc67d610f2fa7ef1770aa0a5bbb07b7da6e61258",
"https://github.com/TBD54566975/ftl/releases/download/v0.118.6/ftl-0.118.6.darwin-arm64.tar.gz": "b30a8b590b49dc2681d8ba7dfa9457e44abd923ec5e979758c228b07ba8b9722",
"https://github.com/TBD54566975/ftl/releases/download/v0.119.0/ftl-0.119.0.linux-amd64.tar.gz": "68e364e8f7e178b33fc1358a87e8808a68449966697500ae6205a1671b63e032",
"https://github.com/TBD54566975/ftl/releases/download/v0.119.0/ftl-0.119.0.darwin-arm64.tar.gz": "a25d47cc648415403923292afa2cfe8eda120b31b4491955fa6508c15d69d4f0",
"https://github.com/TBD54566975/ftl/releases/download/v0.119.0/ftl-0.119.0.darwin-amd64.tar.gz": "8129f4d5cb4cbcbfc240a9cd817dc1f848cff3a7fd2a7c34e47b21509680de35",
"https://github.com/TBD54566975/ftl/releases/download/v0.119.1/ftl-0.119.1.darwin-amd64.tar.gz": "a99a3bdef4222acaed3e0273a3232af371ea2e19fff1750da1f748cbaac868a5",
"https://github.com/TBD54566975/ftl/releases/download/v0.119.1/ftl-0.119.1.linux-amd64.tar.gz": "4e5507735a7212b267d206c6296186a91a5810c7a0eb95dde7532844bcee6eee",
"https://github.com/TBD54566975/ftl/releases/download/v0.119.1/ftl-0.119.1.darwin-arm64.tar.gz": "bccc3d9836fc3348388a60037f8c9772240a7124210f2d9fc7558800f5695798",
"https://github.com/TBD54566975/ftl/releases/download/v0.120.0/ftl-0.120.0.darwin-arm64.tar.gz": "bb3fef3fb8dce8b1f5573056cbba30f75c94f5c65156884e280dc238588ea999",
"https://github.com/TBD54566975/ftl/releases/download/v0.120.0/ftl-0.120.0.darwin-amd64.tar.gz": "3be030e160db263f8ae1f147b6dc22cfcf517afc788ccb2a51d40adfa17bb745",
"https://github.com/TBD54566975/ftl/releases/download/v0.120.0/ftl-0.120.0.linux-amd64.tar.gz": "4e2d7cc4265f7397e89bf6894d284fd2be9d4be130fb665de2fbe5e20a96a9fa",
"https://github.com/TBD54566975/ftl/releases/download/v0.121.0/ftl-0.121.0.darwin-amd64.tar.gz": "7c63c48ae84ca6a063b90e4390990d78bdf70cddcbd98d101698a1a64b0e848a",
"https://github.com/TBD54566975/ftl/releases/download/v0.121.0/ftl-0.121.0.linux-amd64.tar.gz": "eae6d3d4448c53adce488d57880adc599620f5f2339d3a2283d3660fb4d85dfe",
"https://github.com/TBD54566975/ftl/releases/download/v0.121.0/ftl-0.121.0.darwin-arm64.tar.gz": "3008e56a8d7662c3b85516a37085d3518850281c4c61adbb086f28966d228850",
"https://github.com/TBD54566975/ftl/releases/download/v0.122.0/ftl-0.122.0.darwin-arm64.tar.gz": "dc91f0fd0af35153e94c7b4eedfc3a3bcf172e445c644a526261c53f7ecd9604",
"https://github.com/TBD54566975/ftl/releases/download/v0.122.0/ftl-0.122.0.linux-amd64.tar.gz": "c6270e6175b72db8676ea754373391ffc9e390474c8f1ad60c4188cdefc354aa",
"https://github.com/TBD54566975/ftl/releases/download/v0.122.0/ftl-0.122.0.darwin-amd64.tar.gz": "88dd455d7232d3164e9bf4fc3ed8ffca48c14a1482147ac3ed58033fd93dc85e",
"https://github.com/TBD54566975/ftl/releases/download/v0.122.1/ftl-0.122.1.linux-amd64.tar.gz": "9d77be90ba1c72eac2f466147c2671c8a3e954ac5ad1b3d5a4e20c2cb8250184",
"https://github.com/TBD54566975/ftl/releases/download/v0.122.1/ftl-0.122.1.darwin-amd64.tar.gz": "411dca1c3e24a259c70e66943f377c107791317faf0d5999d8a58cee8cd97ec9",
"https://github.com/TBD54566975/ftl/releases/download/v0.122.1/ftl-0.122.1.darwin-arm64.tar.gz": "d5d38f0f7a070fd3d7e9881dee9f725049aa411e3a3192bb1329f7417df5ca9d",
"https://github.com/TBD54566975/ftl/releases/download/v0.122.2/ftl-0.122.2.darwin-amd64.tar.gz": "8772e263c4fba03b13338186b3291d5085d4a6e76cc3db6805eba17b2f8af7ca",
"https://github.com/TBD54566975/ftl/releases/download/v0.122.2/ftl-0.122.2.darwin-arm64.tar.gz": "645af3068f5eb8988c75ab3656f47a7f17675985f54528fb1feaa2e3de9394ed",
"https://github.com/TBD54566975/ftl/releases/download/v0.122.2/ftl-0.122.2.linux-amd64.tar.gz": "8c3d9e56fac127d32ae6c3cfb7309f305b974b6f5c10db25cc570b0e1082ba8c",
"https://github.com/TBD54566975/ftl/releases/download/v0.123.0/ftl-0.123.0.darwin-amd64.tar.gz": "627a52e59cbe8dbe6858e0bc66b829a161074f55b6f787d7721c32e8d1384a7e",
"https://github.com/TBD54566975/ftl/releases/download/v0.123.0/ftl-0.123.0.linux-amd64.tar.gz": "30dd0f98db60e85997b7abc715b8fdf49febe46d1e6f031bc2518177576fe895",
"https://github.com/TBD54566975/ftl/releases/download/v0.123.0/ftl-0.123.0.darwin-arm64.tar.gz": "09b73dc5b06c184b4c9450140dc247ed19c42888b52bbfab6716103d548319dc",
"https://github.com/TBD54566975/ftl/releases/download/v0.123.1/ftl-0.123.1.linux-amd64.tar.gz": "d0c7e82bf5bba32d021bbca9f74f2c9aa1561da65992dfcc5317a690dd262d1d",
"https://github.com/TBD54566975/ftl/releases/download/v0.123.1/ftl-0.123.1.darwin-arm64.tar.gz": "714080214b67827f94d48e76c259da7cffa6e6c20d18f28214159c971b2b513e",
"https://github.com/TBD54566975/ftl/releases/download/v0.123.1/ftl-0.123.1.darwin-amd64.tar.gz": "d105eaa8b8d847e3c76cf02283dea9d5c9fef64f4630132b97ab7b4e151b48b6",
"https://github.com/TBD54566975/ftl/releases/download/v0.123.2/ftl-0.123.2.linux-amd64.tar.gz": "a57d74d302ce161c480c9e9741f0dee16bdca1b57c923bd051ab485c3778554f",
"https://github.com/TBD54566975/ftl/releases/download/v0.123.2/ftl-0.123.2.darwin-arm64.tar.gz": "1791242a342de9700acfea09c300e4a767e06a7c97ce3eaa373cabac09000dd7",
"https://github.com/TBD54566975/ftl/releases/download/v0.123.2/ftl-0.123.2.darwin-amd64.tar.gz": "8ed6fc4f8ca89aab1f9104d8f5b9d4f7277020ccd81432ccc6ddd09f6ef125e5",
"https://github.com/TBD54566975/ftl/releases/download/v0.124.0/ftl-0.124.0.darwin-arm64.tar.gz": "72e6f81ad2457c76c49019724841408fe888ce09144e534f00c2d864b02f6fa8",
"https://github.com/TBD54566975/ftl/releases/download/v0.124.0/ftl-0.124.0.linux-amd64.tar.gz": "d01f7ae3dc46edb3029b3b3e60b3d0829dfd3f2cc6c1ac36b031368eb0f7fade",
"https://github.com/TBD54566975/ftl/releases/download/v0.124.0/ftl-0.124.0.darwin-amd64.tar.gz": "9cd7f00ee7df49ba1ac62361ea4171260b760fb706c9d14b7152d7ff416e702f",
"https://github.com/TBD54566975/ftl/releases/download/v0.124.1/ftl-0.124.1.linux-amd64.tar.gz": "d9cab79ec6cbb39f21b7e5e91b5e3be4819c15593ca7e71f631eec75603d76d8",
"https://github.com/TBD54566975/ftl/releases/download/v0.124.1/ftl-0.124.1.darwin-arm64.tar.gz": "6ae88192b5e5800d2f29b787aaf8e453b5b630001922d5e3273110697ce96261",
"https://github.com/TBD54566975/ftl/releases/download/v0.124.1/ftl-0.124.1.darwin-amd64.tar.gz": "3404f30b73f621d7007471424632996ed7ea04f7aaaa0f9f62cee23fafbb6c09",
"https://github.com/TBD54566975/ftl/releases/download/v0.125.0/ftl-0.125.0.darwin-amd64.tar.gz": "ea4beea49696f845e33248376a5734cb7b9fa8059552c4122da992d95b838b02",
"https://github.com/TBD54566975/ftl/releases/download/v0.125.0/ftl-0.125.0.linux-amd64.tar.gz": "d5c50211eaf1e5ef3394f98d3bedcde85725a1c000d45ebee840a33aff33e23d",
"https://github.com/TBD54566975/ftl/releases/download/v0.125.0/ftl-0.125.0.darwin-arm64.tar.gz": "6c1b6c42f7a098ce917c4ec4aeb47347f73cbbe5601e3762c17b6e0dd480f40f",
"https://github.com/TBD54566975/ftl/releases/download/v0.126.0/ftl-0.126.0.linux-amd64.tar.gz": "48b6999db6e548f1c763d31a534d35e38633ba0e1dfc955f7178f1b3696eadff",
"https://github.com/TBD54566975/ftl/releases/download/v0.126.0/ftl-0.126.0.darwin-amd64.tar.gz": "6c26bcd0e8f37c70ce7b494a62f7a75cfdd8b8ed69030c584aada5cc98a66add",
"https://github.com/TBD54566975/ftl/releases/download/v0.126.0/ftl-0.126.0.darwin-arm64.tar.gz": "017c9d2e518ff10847c5479534e9f9d0ef685903e778e3a2f78e542bb140efe1",
"https://github.com/TBD54566975/ftl/releases/download/v0.126.1/ftl-0.126.1.linux-amd64.tar.gz": "f06b7f2e9257d0e7ea1839ffd626dfeb5cc6cf6464d6442d0afe83233d165b8f",
"https://github.com/TBD54566975/ftl/releases/download/v0.126.1/ftl-0.126.1.darwin-amd64.tar.gz": "6d2431ad86874ebc147a516b7a7db562ed5db16850a6cb76824aeb585826b0e6",
"https://github.com/TBD54566975/ftl/releases/download/v0.126.1/ftl-0.126.1.darwin-arm64.tar.gz": "6362c6e42140582b97c872c78dea236b6e7ad4bb19d9ab069bbb23bf7c6b5403",
"https://github.com/TBD54566975/ftl/releases/download/v0.126.2/ftl-0.126.2.darwin-amd64.tar.gz": "233eaa5b6620210eecac06046852abfc00fe670a00c34c1b4c9a9760678a5f89",
"https://github.com/TBD54566975/ftl/releases/download/v0.126.2/ftl-0.126.2.linux-amd64.tar.gz": "e5de1c2fe7ea37e03f3c6bb1261aeafdf7d093e45bcfa959c25a988114bba15a",
"https://github.com/TBD54566975/ftl/releases/download/v0.126.2/ftl-0.126.2.darwin-arm64.tar.gz": "62571260ea6f73b1856f8674fa2d42f0d6d56a6043fa3ee2d27503695c6dd7fc",
"https://github.com/TBD54566975/ftl/releases/download/v0.127.0/ftl-0.127.0.darwin-arm64.tar.gz": "ae6405542e01c54250a7e7bcbe48629536a41546b0bad810f35555989e5641ba",
"https://github.com/TBD54566975/ftl/releases/download/v0.127.0/ftl-0.127.0.linux-amd64.tar.gz": "70cb1184158a1d8d05e4ee5e6cd326621ef901e1e5a1570df136d2fa7e9ae9bc",
"https://github.com/TBD54566975/ftl/releases/download/v0.127.0/ftl-0.127.0.darwin-amd64.tar.gz": "c4c8a8c5eaae233792719d17f9f103d4205d5e95026f93e8c9114a531615d305",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.0/ftl-0.128.0.darwin-arm64.tar.gz": "99cc0a3f30c0a6d52726833a543c460aee50eb4cf9a2506b4458dfc82ea87860",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.0/ftl-0.128.0.darwin-amd64.tar.gz": "486f30fabb37eb7b4dca84253f96f8858f708c30b46b0ee7a9a77f80795f8530",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.0/ftl-0.128.0.linux-amd64.tar.gz": "4b7597386e6a8bb424dd067c1300ef3042b5fd26a9678bb6723270b6b8dfc370",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.1/ftl-0.128.1.linux-amd64.tar.gz": "2b7f7eed98f3f3c7823d14ea4e571510e02e9403a5fb33f6c4d412d0dfa43409",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.1/ftl-0.128.1.darwin-arm64.tar.gz": "b8d30b4c196fc9b5abc0bdf83fd379784b5d9181c3596f06552b42741646d6ef",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.1/ftl-0.128.1.darwin-amd64.tar.gz": "8602ee8586ac4362a1993225d2f5013d1e9605206c46faff37c61dd798efcd22",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.2/ftl-0.128.2.darwin-arm64.tar.gz": "e6935181a32cf89346dbcdf35518cf2106359253e37a45908367d04fe4598ce9",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.2/ftl-0.128.2.darwin-amd64.tar.gz": "de8ac6f244ca277090ae42f4ab750a453efbbcace9e70822fcbcff9f52d3cb6d",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.2/ftl-0.128.2.linux-amd64.tar.gz": "1b669ffb22ab23bc323b4f6c775d8a8c263074bcbf376765a8685c8f66bb58ca",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.3/ftl-0.128.3.darwin-arm64.tar.gz": "f313db7a525bc7273b95bba1cef7a104d85760b60b1c2752692497ee1df8cd50",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.3/ftl-0.128.3.linux-amd64.tar.gz": "f2a5634f8b8420c8edc1c0bd8d163b4b86daa1e33858a7f8fd9ae740c7be2262",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.3/ftl-0.128.3.darwin-amd64.tar.gz": "a26ccbc6c51f6eb16bc7337ddfe7ff2aed15e68681677410ecd6864ff8a39e6d",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.4/ftl-0.128.4.darwin-arm64.tar.gz": "99327861a91a97d87205343d66e38ff0d8ffd9f6c5228e093127a26f9ef5e439",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.4/ftl-0.128.4.linux-amd64.tar.gz": "9ffc5bb00dbf1e032d8a19469e0c36bdad396d44fed1f31faca09d19c79fbbae",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.4/ftl-0.128.4.darwin-amd64.tar.gz": "bb95ce0ce7cdc6231058fe7bdf84df8607a11b767e6e8e2b73d33e3c8a54382c",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.5/ftl-0.128.5.darwin-arm64.tar.gz": "bda021568ca187fd1406bc1df7d8868615d40156f5d2aec1c0471d6fb2e4f623",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.5/ftl-0.128.5.linux-amd64.tar.gz": "d052f439043cd86b69c88c1aa4fc019edd6e243e15b4c150c41d19a99e5abba1",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.5/ftl-0.128.5.darwin-amd64.tar.gz": "86e6a16765c3efd1c03b5968119f0eff6f67f63b9b9036cc4c35c5d121f7c77f",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.6/ftl-0.128.6.darwin-amd64.tar.gz": "dce43d7f9f2b1271c42ac607b098c4463347f73bcb55a30bffb2b4c80a82836c",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.6/ftl-0.128.6.darwin-arm64.tar.gz": "9a8b0eb7767c5b38d6886401391cc9847f6c862e9a4f0d09b3d798de0a57165c",
"https://github.com/TBD54566975/ftl/releases/download/v0.128.6/ftl-0.128.6.linux-amd64.tar.gz": "8615a6d18268e4e24720545e28d6f32de6708c9d305569db4867f8bfe821c880",
"https://github.com/TBD54566975/ftl/releases/download/v0.129.0/ftl-0.129.0.darwin-amd64.tar.gz": "467c9da8e205399be1a2699c3c195dba07bd65d189bbbaf82673922e91666e66",
"https://github.com/TBD54566975/ftl/releases/download/v0.129.0/ftl-0.129.0.darwin-arm64.tar.gz": "15b0ca29efd90058bce54a829c8203b038f192ab9880c328502c702b969e2da6",
"https://github.com/TBD54566975/ftl/releases/download/v0.129.0/ftl-0.129.0.linux-amd64.tar.gz": "db81e7e93f7a2c27a6b22eb7e21173400ae346ce56e27bc3dba9a6efb381c161",
"https://github.com/TBD54566975/ftl/releases/download/v0.129.1/ftl-0.129.1.darwin-arm64.tar.gz": "8f94dabc53764590990023809db6b2702aa848d2c5e1504de88edef7a8d780cf",
"https://github.com/TBD54566975/ftl/releases/download/v0.129.1/ftl-0.129.1.darwin-amd64.tar.gz": "a1652d8342435ca68cc979e47489a4ab1ad3d33baf597a3ea5029ee3198cca6a",
"https://github.com/TBD54566975/ftl/releases/download/v0.129.1/ftl-0.129.1.linux-amd64.tar.gz": "eaa45983dab54996c9f2c4a3d5aeaba40ce3803fd4d42919f9545a45f4a56d6a",
"https://github.com/TBD54566975/ftl/releases/download/v0.129.2/ftl-0.129.2.darwin-amd64.tar.gz": "23da3b9f2f35bc1ba124e44df98f485b8943fd79566f0d8b70dbdb27d006dd65",
"https://github.com/TBD54566975/ftl/releases/download/v0.129.2/ftl-0.129.2.linux-amd64.tar.gz": "24b142dba2fdbd50a71c6e369d4d92d1c833bfd552ae0bef193d2dfdd698386c",
"https://github.com/TBD54566975/ftl/releases/download/v0.129.2/ftl-0.129.2.darwin-arm64.tar.gz": "e2f2c3d597527f373364ceebb6efb35e2eded1b897459d0735995b26c1bb43b8",
"https://github.com/TBD54566975/ftl/releases/download/v0.130.0/ftl-0.130.0.linux-amd64.tar.gz": "fbde8676c06e3a47db3202d4e08129bf75f0e16cdcf8e9a940c0e609c9b9ae70",
"https://github.com/TBD54566975/ftl/releases/download/v0.130.0/ftl-0.130.0.darwin-amd64.tar.gz": "6f4d283c7978a445820a30b92e69ee498ad47b174d63052e98140fba4b1b0655",
"https://github.com/TBD54566975/ftl/releases/download/v0.130.0/ftl-0.130.0.darwin-arm64.tar.gz": "3a9d4b77aa0993e610212bd700725e87357fb94a78cb7f4b58fdfbc82ea384dc",
"https://github.com/TBD54566975/ftl/releases/download/v0.130.1/ftl-0.130.1.linux-amd64.tar.gz": "82ab4fa93eaaf07515756fd10f23059e9ade048c088f2c7a42e42bd9bf65791e",
"https://github.com/TBD54566975/ftl/releases/download/v0.130.1/ftl-0.130.1.darwin-arm64.tar.gz": "8e875118a84029009148b57a9ad21db7134a383046ea4f99c08e34d0c2b51ba1",
"https://github.com/TBD54566975/ftl/releases/download/v0.130.1/ftl-0.130.1.darwin-amd64.tar.gz": "bf7c11797f9504786429bdd8001a55c8f472b383d5c6781833324b0ea78209b1",
"https://github.com/TBD54566975/ftl/releases/download/v0.131.0/ftl-0.131.0.darwin-arm64.tar.gz": "c092bee4203236c6dad8a88103e0232f073fc010d3b3ec428febe5cfbd724e77",
"https://github.com/TBD54566975/ftl/releases/download/v0.131.0/ftl-0.131.0.linux-amd64.tar.gz": "73db0bda0805ef7d41a1a7fa26095c02a621272455e6b0bf5f9881276f5a1934",
"https://github.com/TBD54566975/ftl/releases/download/v0.131.0/ftl-0.131.0.darwin-amd64.tar.gz": "5938e44d828dba78b980335c3d80f7ce73e75ccf9334b16cc07a94a5d896298b",
"https://github.com/TBD54566975/ftl/releases/download/v0.132.0/ftl-0.132.0.linux-amd64.tar.gz": "d29f5a119e5eb9e390c5d9758eebe6b7f10840ba693f442a8ffde014257b01b0",
"https://github.com/TBD54566975/ftl/releases/download/v0.132.0/ftl-0.132.0.darwin-arm64.tar.gz": "908011c475bd25b9ad9698e7cbefdb8a20397f1f8cb6955e48e9f52677c2874f",
"https://github.com/TBD54566975/ftl/releases/download/v0.132.0/ftl-0.132.0.darwin-amd64.tar.gz": "a7e3789a6f173908a79667dd6e294837897616d9208649ff1fb3a8e2da538372",
"https://github.com/TBD54566975/ftl/releases/download/v0.133.0/ftl-0.133.0.darwin-arm64.tar.gz": "28d2f717474dc05d4502e63f3e430ab34d6b7705a3f23ff263c8b652e2d3dfee",
"https://github.com/TBD54566975/ftl/releases/download/v0.133.0/ftl-0.133.0.darwin-amd64.tar.gz": "378fa4eee540c2a46a6deb9d49894260eb0b9807f691659ae55ac5f10d4660ec",
"https://github.com/TBD54566975/ftl/releases/download/v0.133.0/ftl-0.133.0.linux-amd64.tar.gz": "5e5956d5c391aa6ecccf646c2cd3378ecfab97af90e6f7d29bc3abf5a2a3e432",
"https://github.com/TBD54566975/ftl/releases/download/v0.133.1/ftl-0.133.1.darwin-amd64.tar.gz": "5260cae3408042aec52173a864f84b56a235fd072dbe5849b9b1b29bc72c6ebf",
"https://github.com/TBD54566975/ftl/releases/download/v0.133.1/ftl-0.133.1.darwin-arm64.tar.gz": "5b79bf6b382b49e40c29fdde9eac76df11586111b3e02dba180f091531653c2e",
"https://github.com/TBD54566975/ftl/releases/download/v0.133.1/ftl-0.133.1.linux-amd64.tar.gz": "0dda6c456715c47223a07b37cc2c3fd22c94a35ae6bc290a02b6574dc99b5351",
"https://github.com/TBD54566975/ftl/releases/download/v0.133.2/ftl-0.133.2.darwin-arm64.tar.gz": "7615b4612a6699ce8a52c8ee898f0b53aa1a3d5c2bfcd415a3c66e9c858527c0",
"https://github.com/TBD54566975/ftl/releases/download/v0.133.2/ftl-0.133.2.darwin-amd64.tar.gz": "8f5e2f1dae2190db9c6b2833891487be98f3a4778f361797485befe82e0f2f34",
"https://github.com/TBD54566975/ftl/releases/download/v0.133.2/ftl-0.133.2.linux-amd64.tar.gz": "9033312b538015d5108abe749065dcb53c8b3a595c59d807a4f891c268b97b47",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.0/ftl-0.134.0.linux-amd64.tar.gz": "626a031b4c0c23c6e7fa9f36a47b897c524dc407c03da459c81ebd7ac7389b3f",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.0/ftl-0.134.0.darwin-arm64.tar.gz": "65160f80cae960707274d9565c5bfdd465517ecae559eb4cfacaa2617de2fbd2",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.0/ftl-0.134.0.darwin-amd64.tar.gz": "19491fd07132f87e74cc172e2df94e1fc6a3e50ac05754bf61fcc70edfcf89f3",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.1/ftl-0.134.1.darwin-arm64.tar.gz": "d6d0fa5308a3ef4c27db985c650bb353c23a9d648788c90ac66014ce38dc842b",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.1/ftl-0.134.1.darwin-amd64.tar.gz": "17ae7c0840592cbd0f2894255816ff00123badbdc3c96f0daf67d7525d8d642a",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.1/ftl-0.134.1.linux-amd64.tar.gz": "c6dd17652b058463babb6e39af441017200a012819e33577032746ed74fab65f",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.2/ftl-0.134.2.darwin-arm64.tar.gz": "d538ad46e97dde40ccf52b6431e046c073c9acb39dc9573c81345553c87c375d",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.2/ftl-0.134.2.darwin-amd64.tar.gz": "72cf494b372c54dc54dd68edc36b3d610fc1d555b684747b1ea90de9c8409b9a",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.2/ftl-0.134.2.linux-amd64.tar.gz": "7f8717e54a53c0e2fccca99324459849acd97135ed4ebd13af1a4501e9b7c199",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.3/ftl-0.134.3.darwin-amd64.tar.gz": "9bcc7dd208c4fedffd6f1155104b29806519e3e45e831b085479f8f6735cc64a",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.3/ftl-0.134.3.darwin-arm64.tar.gz": "0a2b21cc44994c3276c102280d66ece004a6c52dcd01f1d641b8794e8ee594ef",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.3/ftl-0.134.3.linux-amd64.tar.gz": "1f4cb5fe2f5dcfa4b6405a6aaac038e1e2cb16a278a4646f2ee104e9a4c58e18",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.4/ftl-0.134.4.linux-amd64.tar.gz": "9c17c5813dd9eec0966c74c54ce7656154611ee4d042c39c89b3c753ded8af5e",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.4/ftl-0.134.4.darwin-arm64.tar.gz": "b372041d59dd0592c8632e771f3b1cc28b7ff4a676ed18104d421a3abdb10ed3",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.4/ftl-0.134.4.darwin-amd64.tar.gz": "5129feae6521cb288ddbcb6169e86dbddb6e2b5cf998e8a0aacb250cf7234ff0",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.5/ftl-0.134.5.darwin-arm64.tar.gz": "d7997c899a7e0a8fd04b8852e437f5b5de850b0c23d78b900798ff2164c26010",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.5/ftl-0.134.5.linux-amd64.tar.gz": "e46c567512686c4cde84e10b1cf57c1efa11530f765d49516a440bbde958a17b",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.5/ftl-0.134.5.darwin-amd64.tar.gz": "dbe875b936d505c16454d2b4353821a7d0f96177850b7bab719c6476c4629765",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.6/ftl-0.134.6.darwin-amd64.tar.gz": "145f90d72c5ef5ceb98526d2c71f41a3e284603b34592c4375b94e2e5dcf4e3b",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.6/ftl-0.134.6.linux-amd64.tar.gz": "14d11d05937ef525e85508915ac9b89f8294540db40113133f4b1cb4e1c1942b",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.6/ftl-0.134.6.darwin-arm64.tar.gz": "518564e2ad001b0bf8e6ae9f6860ad439a3729630445e1880921081d58cb27b2",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.7/ftl-0.134.7.linux-amd64.tar.gz": "f8d8c64ecd1ecbf126ca4ed40188f9d145c712cfb2587e82214b5002705dec59",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.7/ftl-0.134.7.darwin-arm64.tar.gz": "8fc3558e95a57dd77f33579e0c9de66e873020deba0afa65f22514e5483d30fd",
"https://github.com/TBD54566975/ftl/releases/download/v0.134.7/ftl-0.134.7.darwin-amd64.tar.gz": "cc408816cfc65f975101f13b39ac391d1bbc4cf3bed1e9c984a5f3ce7f8223da",
"https://github.com/TBD54566975/ftl/releases/download/v0.135.0/ftl-0.135.0.darwin-arm64.tar.gz": "c04b8daf6f720ca6b10dda8f22f9b35d0aeb952b3f49aa4084464721ba0a3784",
"https://github.com/TBD54566975/ftl/releases/download/v0.135.0/ftl-0.135.0.linux-amd64.tar.gz": "5acfdfe27086f7aaf8403e1f87960d0715859c3330eb429897ce380c6fbf58a9",
"https://github.com/TBD54566975/ftl/releases/download/v0.135.0/ftl-0.135.0.darwin-amd64.tar.gz": "5ec0568cb429c39cbb12a200ce623224ec8653b840934dfa9f851d7545adc09f",
"https://github.com/TBD54566975/ftl/releases/download/v0.136.0/ftl-0.136.0.linux-amd64.tar.gz": "10d7720b6fb66c26704836221ccad78b1920106dd40a9e5fe1ba1f35ff9e41fe",
"https://github.com/TBD54566975/ftl/releases/download/v0.136.0/ftl-0.136.0.darwin-amd64.tar.gz": "66a4c895b30f7fe1134bf52bdba2ef33c7d9db2fba452878b3ad092179a3cec5",
"https://github.com/TBD54566975/ftl/releases/download/v0.136.0/ftl-0.136.0.darwin-arm64.tar.gz": "4443abb9ae086106c7132665bb8c902f4b1a17c1fbf7ddb46dc1a5e0a5e27b61",
"https://github.com/TBD54566975/ftl/releases/download/v0.137.0/ftl-0.137.0.linux-amd64.tar.gz": "03996ce46c863d1bcd759e208ba0e1ef99507f7e225bf241ef84fb937daf4498",
"https://github.com/TBD54566975/ftl/releases/download/v0.137.0/ftl-0.137.0.darwin-arm64.tar.gz": "70153d74608583ac1e5435f987e6a9b0fbf841a21785f8bf6b5508e8fa1bd824",
"https://github.com/TBD54566975/ftl/releases/download/v0.137.0/ftl-0.137.0.darwin-amd64.tar.gz": "dfb8d37e757fe17e5a02da3402ef048206fe54f70402104172c5cf2050df3c4e",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.0/ftl-0.138.0.linux-amd64.tar.gz": "a12dd94772b446118cdf9c99b4dbf414fd38496543d0b0ecaba5301bb34b08e3",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.0/ftl-0.138.0.darwin-amd64.tar.gz": "cb77f84315665c7ebba7984509ba4c937bc6cb910703b46760717bd3d028283a",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.0/ftl-0.138.0.darwin-arm64.tar.gz": "cfd935d1df398d4f2cb10210ddb44e9be64703e31a1c77b6ac9dd8af52dd3bf0",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.1/ftl-0.138.1.darwin-arm64.tar.gz": "71f5ea9f6b53d7a461edc6e579b3d3931c4d54ff2af9209d0ff6267643cc4d7c",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.1/ftl-0.138.1.darwin-amd64.tar.gz": "45079ac51f9bfc8811a3285dd7388387b95705f6b769e849acb5bf39c2b2c197",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.1/ftl-0.138.1.linux-amd64.tar.gz": "4e4ceddd8e287eea56e61a3d720fafdb646e5456e04791305c7b041d11859d3b",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.2/ftl-0.138.2.darwin-arm64.tar.gz": "956a268188ab5edfdbbd4c2540e81f8fec3e93e0b5bdbf0c0d124fa5c62854b3",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.2/ftl-0.138.2.linux-amd64.tar.gz": "acf2f4b889162bfbed76f5088a34c281b12aafe24a5ac4155e298e575b9986c2",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.2/ftl-0.138.2.darwin-amd64.tar.gz": "d36a70f4d81f80315db264ef4c782ec80dc714bde7b576afbfcbb86e441cfea1",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.3/ftl-0.138.3.darwin-amd64.tar.gz": "9f6695a3419d360538ed853ccd58a5f2a95569657b3ca6018ce644ae0cc9de69",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.3/ftl-0.138.3.darwin-arm64.tar.gz": "7fe4637c7837fda5fe992982d84669ca6a1cc1d3fb7019ee85f019353fb3f44e",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.3/ftl-0.138.3.linux-amd64.tar.gz": "ed35508e625886ef38db288ca9d86c801dcc4ed3a9c0a20512d7b928b54e1e38",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.4/ftl-0.138.4.darwin-arm64.tar.gz": "66d5de77ed33c2de53f85bc923ea3d94432f75b35a8a164358b146930a7f04a3",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.4/ftl-0.138.4.darwin-amd64.tar.gz": "ccf1e0ff95de1ed734e095c1f6b58b0199371699ff8a82f6fd1ca10f22f9d073",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.4/ftl-0.138.4.linux-amd64.tar.gz": "72679c881c0b11950c18a50023d0270238bff9332500d17ac7f147d0b1ca9fd3",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.5/ftl-0.138.5.linux-amd64.tar.gz": "53f0a7fe408bb51c58a2bfa37eccf607c09be9daddc77a326f79691417d9dc7c",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.5/ftl-0.138.5.darwin-amd64.tar.gz": "04106c53d05d83c9a2b9d852e22459dc0bf01e79a82b62115da2c16a252352e1",
"https://github.com/TBD54566975/ftl/releases/download/v0.138.5/ftl-0.138.5.darwin-arm64.tar.gz": "61f62b3b6aa2ed2c2f45cc243b7240916986220a5e023dc44374f303aec90936",
"https://github.com/TBD54566975/ftl/releases/download/v0.139.0/ftl-0.139.0.darwin-arm64.tar.gz": "80bb84792ca0b4fbe860f5137d06dba4f295571bb829fbf5c02877060ab30d9e",
"https://github.com/TBD54566975/ftl/releases/download/v0.139.0/ftl-0.139.0.darwin-amd64.tar.gz": "978dd042c3602d515f9e55a970ed34bebfebd62223c64fa6e58d91edaf1a873a",
"https://github.com/TBD54566975/ftl/releases/download/v0.139.0/ftl-0.139.0.linux-amd64.tar.gz": "882f89322255b16e55dbcee0c8327d11a94e1db48bdcebd7f4fe1e4af03a62bd",
"https://github.com/TBD54566975/ftl/releases/download/v0.139.1/ftl-0.139.1.linux-amd64.tar.gz": "6b23bf2b30d8eda33f98cd7f101c72285d622064f6b5e38f0d95135ff812b32c",
"https://github.com/TBD54566975/ftl/releases/download/v0.139.1/ftl-0.139.1.darwin-amd64.tar.gz": "70c24d786431bdd039fe69cc40890e8e346f9c719da141d1cb8c0be5a357175e",
"https://github.com/TBD54566975/ftl/releases/download/v0.139.1/ftl-0.139.1.darwin-arm64.tar.gz": "b19a1859c6d57bba720ae2fdd004d7030edc52b027561f6c7cbbd30bede96bf2",
"https://github.com/TBD54566975/ftl/releases/download/v0.139.2/ftl-0.139.2.linux-amd64.tar.gz": "998d01c417b2d09392b668d9ba07106992c2036e1625d13b6b93465f2ae85521",
"https://github.com/TBD54566975/ftl/releases/download/v0.139.2/ftl-0.139.2.darwin-arm64.tar.gz": "57ed01c5274d270718e93a488e810f3cc42a92c9bf25ffc6bfef1b4bdd11e966",
"https://github.com/TBD54566975/ftl/releases/download/v0.139.2/ftl-0.139.2.darwin-amd64.tar.gz": "c757292ccd9a90000333d4a23fe62fc165faedb133cf58aaa47526f91b59bf53",
"https://github.com/TBD54566975/ftl/releases/download/v0.140.0/ftl-0.140.0.linux-amd64.tar.gz": "201b0fff91fd7db54b9bcf924e09814fc378bd37334af1aad42f2809a84c367e",
"https://github.com/TBD54566975/ftl/releases/download/v0.140.0/ftl-0.140.0.darwin-arm64.tar.gz": "5a84115228acb35cc40255d26695b8cefc3e5d9522bddf6c10f89b7ba11ff1c1",
"https://github.com/TBD54566975/ftl/releases/download/v0.140.0/ftl-0.140.0.darwin-amd64.tar.gz": "366ed977bdedea8618504b7efe6b3d50b1eb8da572db2f60318acab138c0e670",
"https://github.com/TBD54566975/ftl/releases/download/v0.141.0/ftl-0.141.0.darwin-amd64.tar.gz": "ac1594e36970e0db4d551ed42a8d53b2cd84f4ce7a2638f2d59054238813e6d4",
"https://github.com/TBD54566975/ftl/releases/download/v0.141.0/ftl-0.141.0.darwin-arm64.tar.gz": "9a4b3db1f2aa8135695afbb6e83960a5b4a465169cc8ab7934cedfd9c8525108",
"https://github.com/TBD54566975/ftl/releases/download/v0.141.0/ftl-0.141.0.linux-amd64.tar.gz": "978b6471e157126e90ad79d8bd91e4b85dc12a409dc41931407cc49811843dd2",
"https://github.com/TBD54566975/ftl/releases/download/v0.142.0/ftl-0.142.0.darwin-amd64.tar.gz": "0586c1c5666ac123b32b88b4a0345ba3cb397639e83148f2baebd22052aa25f2",
"https://github.com/TBD54566975/ftl/releases/download/v0.142.0/ftl-0.142.0.darwin-arm64.tar.gz": "1c86347c76677011c585f1882f780df670c55af0ebfca238f2e96ee1ccd94d49",
"https://github.com/TBD54566975/ftl/releases/download/v0.142.0/ftl-0.142.0.linux-amd64.tar.gz": "54f21bfa15550f6d5e3b82066ea51c1e0bad678415b4d731e3296696fab0032f",
"https://github.com/TBD54566975/ftl/releases/download/v0.142.1/ftl-0.142.1.darwin-arm64.tar.gz": "2a388844147b623e6df093a7b27819fcd53e51f05d6b2968bee517dcb843a88a",
"https://github.com/TBD54566975/ftl/releases/download/v0.142.1/ftl-0.142.1.linux-amd64.tar.gz": "fed20a282ab32da051432115f48a832bc6b5fedc1e527368ccfbb2d3c67eddda",
"https://github.com/TBD54566975/ftl/releases/download/v0.142.1/ftl-0.142.1.darwin-amd64.tar.gz": "991df0fce1f35fea8259cb2861584abf7fe12afff36ad1efc844f05f768e2c84",
"https://github.com/TBD54566975/ftl/releases/download/v0.143.0/ftl-0.143.0.darwin-amd64.tar.gz": "01f19f8bcbaf64ad69ec19534f5fd59da8e88960ddf30c35cc346bdaa00b1a13",
"https://github.com/TBD54566975/ftl/releases/download/v0.143.0/ftl-0.143.0.linux-amd64.tar.gz": "9f876bfaecae446a699d72c7e43b4617c1329878491726f4c120006606654e62",
"https://github.com/TBD54566975/ftl/releases/download/v0.143.0/ftl-0.143.0.darwin-arm64.tar.gz": "5003ec96c362247594dbdddacdd475ae8e866c7b16e52c4d13a9c5e9d159a4c6",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.0/ftl-0.144.0.darwin-amd64.tar.gz": "d731b3bba1d1ee9a1a906d136020e6f5a57dbecc55bb24364f9736e7226ae153",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.0/ftl-0.144.0.darwin-arm64.tar.gz": "5b5ea6deb99ed3101bea3c71fac4ade161e2d3cc9bdde2fef254e1644be4c01c",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.0/ftl-0.144.0.linux-amd64.tar.gz": "4df2f62669291aa4939509dd4899b3767ac6f0b84bd84c6f9dbd5b147b520a44",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.1/ftl-0.144.1.linux-amd64.tar.gz": "7aa3b997f0c580624fa6cec9f23dbbb711ca1ca20cac2ceadac9dd781870c0d5",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.1/ftl-0.144.1.darwin-amd64.tar.gz": "16e565f7b141fb35b452edb8d8e4b723459656045e14985eae453c6b00fe2b6d",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.1/ftl-0.144.1.darwin-arm64.tar.gz": "78c78ed0b520e44450b896801767d660e01f4165324f27e4537a2b9afdb128f2",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.2/ftl-0.144.2.linux-amd64.tar.gz": "69419249f0b1fd5049a592e7399b76755c35bc71fb202bf1da656b7b0355b914",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.2/ftl-0.144.2.darwin-amd64.tar.gz": "9f39d71a63a56d0dc1b0a5c504687d8e6f403e70d8ca16c6addea10d3a95cb8e",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.2/ftl-0.144.2.darwin-arm64.tar.gz": "1b296d3cd2e9159d26e3120f8d6823cc8566b1361d0784bb0984c11d192877b2",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.3/ftl-0.144.3.darwin-arm64.tar.gz": "973d6c047feffd38e5bce6224db8f68ff0661bdd51af38a09bb2b0113878b89c",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.3/ftl-0.144.3.darwin-amd64.tar.gz": "0f7e0b9575eedeb5af34ba2d318488253af6e2724497e800962c84477d4cee5a",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.3/ftl-0.144.3.linux-amd64.tar.gz": "72917ef644c4eb5e7a885f9ef8de06378db0fb0727f8983b1652e571051d99bc",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.4/ftl-0.144.4.darwin-amd64.tar.gz": "5317f48014c76d5a582da86d4cea90c56805cca5c8329cd8617e8f40a9e0b5f4",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.4/ftl-0.144.4.darwin-arm64.tar.gz": "c6ed4d2dbf55a7a832414d5be27c83cb88d96df6fa3de1ca6c280462f985ba3e",
"https://github.com/TBD54566975/ftl/releases/download/v0.144.4/ftl-0.144.4.linux-amd64.tar.gz": "40eeaa23745e54a9e68d73cc07ff9eb3e6558c4b325e65dad99265bdf8f37952",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.0/ftl-0.145.0.linux-amd64.tar.gz": "5445c102306181f5cf145981252971c5a9c9a5d2335e470304a3ffd99f66fec5",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.0/ftl-0.145.0.darwin-arm64.tar.gz": "5c37d0067bc8e56c0061c29ca40611ab819fef763f983671caaa8a7371880ffd",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.0/ftl-0.145.0.darwin-amd64.tar.gz": "a93139a5a8e4ffe9c857c5bc70ea2236a0593a662fa43ed16cec9084d187fd2a",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.1/ftl-0.145.1.darwin-arm64.tar.gz": "7ea96f48398f0d67aeef4204947bbd28e57a69f4aebd01e61fd0a17633ee9011",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.1/ftl-0.145.1.linux-amd64.tar.gz": "af58edd619f828d089f5e270317d5d4c4afaacd8cd86d3bb1493175aba324951",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.1/ftl-0.145.1.darwin-amd64.tar.gz": "29f1ad8f96c58be5b8598ee047b93ebbd8750af78336b2f3191555faf92e21b4",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.2/ftl-0.145.2.linux-amd64.tar.gz": "8fd0eb88c1e29f7bec0ed513952230eeb28f7b02eebcff2d746799095be3c770",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.2/ftl-0.145.2.darwin-amd64.tar.gz": "b46485d4ce8c187811818dc5a2e3642e775db3fb740e77ced8811668e6349af4",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.2/ftl-0.145.2.darwin-arm64.tar.gz": "7c7b235a33de018720b86fa17ef434d04f6142b96f5bbfc50fa20f2002f32a19",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.3/ftl-0.145.3.darwin-arm64.tar.gz": "f221f8563d79a64ef3108beed8bb45c3d17dcc68ad1d4bc077719116fdf97b4d",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.3/ftl-0.145.3.darwin-amd64.tar.gz": "f714eb5cf7ee2d9fc00053a59ae5741b68196d641db9bb1f1c493fd23ce5c95b",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.3/ftl-0.145.3.linux-amd64.tar.gz": "e5d4411916ea84229f8e2e8b9328d180ee934d51980891fa820f221a3d9bd821",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.4/ftl-0.145.4.linux-amd64.tar.gz": "77df080a4d17609d6480a71b9038af70ccccf436059b2e5e273aaf41227a42d3",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.4/ftl-0.145.4.darwin-arm64.tar.gz": "3272f3fb9a8e19ff9f7a3eac233b9881d32946dfe0444ec7c749244ed2d4a44f",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.4/ftl-0.145.4.darwin-amd64.tar.gz": "98c854e7bf28dabf220132a4b402e3d674e39ffa60a4d550cb9907af553f0f91",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.5/ftl-0.145.5.linux-amd64.tar.gz": "060889f6c20ea2279859a709e49d177df0f00553b911d5ceba0edaf4f57ef0b8",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.5/ftl-0.145.5.darwin-arm64.tar.gz": "a9b264cfbce32d416a4bd648a766ccef2bfe05d0de77b2de89d8410e6ba3e18b",
"https://github.com/TBD54566975/ftl/releases/download/v0.145.5/ftl-0.145.5.darwin-amd64.tar.gz": "182e1ac6fae4c4935f7a7a3176c580ffee31c654884685dd075c1cbe81c1461a",
"https://github.com/TBD54566975/ftl/releases/download/v0.146.0/ftl-0.146.0.darwin-arm64.tar.gz": "56196cd2bf0b1b2ad01afa39fe9eb84ac9364f66990d0dfb56877e929efb99da",
"https://github.com/TBD54566975/ftl/releases/download/v0.146.0/ftl-0.146.0.linux-amd64.tar.gz": "d59c70262a0a2aa6d09b7099b1536dcac83289af94d65191fdb3a16aa6714dc4",
"https://github.com/TBD54566975/ftl/releases/download/v0.146.0/ftl-0.146.0.darwin-amd64.tar.gz": "60f58ec2d5e4053da9850975e3f158fe46649ab6175f82ee142391fa1707531e",
"https://github.com/TBD54566975/ftl/releases/download/v0.146.1/ftl-0.146.1.linux-amd64.tar.gz": "14d767ed4e15e7e284b0998665e23d36dfaa1d3a4f62a13ea2440fa094c3dbf9",
"https://github.com/TBD54566975/ftl/releases/download/v0.146.1/ftl-0.146.1.darwin-arm64.tar.gz": "b585919ffe6d3261793383d4a5d44d7787996426788948199bd2f1c0aa8a6641",
"https://github.com/TBD54566975/ftl/releases/download/v0.146.1/ftl-0.146.1.darwin-amd64.tar.gz": "0f1b26fbf7757a1b7fb0c9f7daa0f538b75090def2d9960659d7c35eb8773067",
"https://github.com/TBD54566975/ftl/releases/download/v0.146.2/ftl-0.146.2.darwin-amd64.tar.gz": "5096749bf036138cdf2d9aad4c0586eac80f2f32c5605155259bfb0ddfeaa924",
"https://github.com/TBD54566975/ftl/releases/download/v0.146.2/ftl-0.146.2.linux-amd64.tar.gz": "3048f097c52c1faa76b0492ff8d0fefd3bd1c7c060ddb0db7b8890d977c4bae8",
"https://github.com/TBD54566975/ftl/releases/download/v0.146.2/ftl-0.146.2.darwin-arm64.tar.gz": "a2c237b11abe929d5ba747cea6747c5955bc786910c1f8468e0450e1ee671289",
"https://github.com/TBD54566975/ftl/releases/download/v0.146.3/ftl-0.146.3.linux-amd64.tar.gz": "7ab3ca3202c460e0afb40318105e9622778c6ae4485ef9afed95a9c99848161d",
"https://github.com/TBD54566975/ftl/releases/download/v0.146.3/ftl-0.146.3.darwin-amd64.tar.gz": "ba889238f5a3de8bedcf5e68854177c2eb893242fa9bee9ef533dfdc85d1d6fa",
"https://github.com/TBD54566975/ftl/releases/download/v0.146.3/ftl-0.146.3.darwin-arm64.tar.gz": "a4e18eba2499e8669b1338e628ce2c657de68580c31afafc3422f0a267829d81",
"https://github.com/TBD54566975/ftl/releases/download/v0.147.0/ftl-0.147.0.linux-amd64.tar.gz": "32a35064c405d5f343c54717d5eefa6227d92c9903bed7bdb390016f538d7a3e",
"https://github.com/TBD54566975/ftl/releases/download/v0.147.0/ftl-0.147.0.darwin-arm64.tar.gz": "60f1c2511ea09d404fb445a08bbffde59f22863b8eba13ce9ae37d11c0b3d2c4",
"https://github.com/TBD54566975/ftl/releases/download/v0.147.0/ftl-0.147.0.darwin-amd64.tar.gz": "7285c91435956e07dd224c8c4c48d99e0de8bd12d2ec90475a0f8790d8bbce31",
"https://github.com/TBD54566975/ftl/releases/download/v0.148.0/ftl-0.148.0.linux-amd64.tar.gz": "5ff260c49939285cc1042600f80d4f8668b0e0f388317da5abd8a0b0bc499c82",
"https://github.com/TBD54566975/ftl/releases/download/v0.148.0/ftl-0.148.0.darwin-amd64.tar.gz": "acbb27adbb949a7732f7eb181b1cd5de5d25801db38bf627c7b4fc68077b3846",
"https://github.com/TBD54566975/ftl/releases/download/v0.148.0/ftl-0.148.0.darwin-arm64.tar.gz": "00c474ecb069602d1262b63ded2b37fc093955e4afe0f77729b8934638e57688",
"https://github.com/TBD54566975/ftl/releases/download/v0.149.0/ftl-0.149.0.darwin-arm64.tar.gz": "dc68ca2daf602a65bd5ff87d7b58911f25aa7e23faece8f9027bb6a14704bedd",
"https://github.com/TBD54566975/ftl/releases/download/v0.149.0/ftl-0.149.0.darwin-amd64.tar.gz": "3c2b4630c79ea65513872e575da25f716fa706b42550aa33005df343493b2bf7",
"https://github.com/TBD54566975/ftl/releases/download/v0.149.0/ftl-0.149.0.linux-amd64.tar.gz": "bd825e0dfd8a50fa5f8aeb139135642fb61341971a6273480526f6f528a132e9",
"https://github.com/TBD54566975/ftl/releases/download/v0.149.1/ftl-0.149.1.linux-amd64.tar.gz": "ef20f10d1c77b001f8dc29c2da296a781447e9359c98b02698ae84b5626a4149",
"https://github.com/TBD54566975/ftl/releases/download/v0.149.1/ftl-0.149.1.darwin-arm64.tar.gz": "8e2b955e26c244296527da1d98585d35b7a737b3c2de75c8a129e5174cecc48c",
"https://github.com/TBD54566975/ftl/releases/download/v0.149.1/ftl-0.149.1.darwin-amd64.tar.gz": "736242a0d5ab305fe845ef20f991f30089c66c12e9ad067b9e66963bef99c37c",
"https://github.com/TBD54566975/ftl/releases/download/v0.149.2/ftl-0.149.2.darwin-amd64.tar.gz": "3699d85c6295f170c84c03e9a441104bddbb3b662d551b43f298eb01e89bb210",
"https://github.com/TBD54566975/ftl/releases/download/v0.149.2/ftl-0.149.2.darwin-arm64.tar.gz": "a595f9c77c01ecebe2b8b1d90a3e1ab00fb1f2f2d8279d690a23288ab2e37a84",
"https://github.com/TBD54566975/ftl/releases/download/v0.149.2/ftl-0.149.2.linux-amd64.tar.gz": "b23ed43607a91abcccfba54e2a807baab6903bd6c1be0b7e6cd6112a2310aaee",
"https://github.com/TBD54566975/ftl/releases/download/v0.150.0/ftl-0.150.0.linux-amd64.tar.gz": "10c638cbe12c57a7fe96c54cb06818751a63895468ef403bc2a477092b91258a",
"https://github.com/TBD54566975/ftl/releases/download/v0.150.0/ftl-0.150.0.darwin-arm64.tar.gz": "a4f4d06e8f83f62e1adee8f26b7bd9d6e7550ae8d100caae4e4e225b87aa0f0e",
"https://github.com/TBD54566975/ftl/releases/download/v0.150.0/ftl-0.150.0.darwin-amd64.tar.gz": "017dd1350e6adae702eaa57191c0a5f5c6f0f893d823fe4e6c9fdf2f55777139",
"https://github.com/TBD54566975/ftl/releases/download/v0.150.1/ftl-0.150.1.darwin-amd64.tar.gz": "a7543a167b41b33aff15fa40a71773df941b0245797391cbf1b18b7bb5d2e172",
"https://github.com/TBD54566975/ftl/releases/download/v0.150.1/ftl-0.150.1.darwin-arm64.tar.gz": "2543c948731ab3d569cbb041d403c7c93af7afeba3d67f0804490145a74a23e6",
"https://github.com/TBD54566975/ftl/releases/download/v0.150.1/ftl-0.150.1.linux-amd64.tar.gz": "19cbdc4bd8f00c1ec3e3ff7aa7eaf0d86c41bc57d458bb1a6c3a7345cc297c1e",
"https://github.com/TBD54566975/ftl/releases/download/v0.150.2/ftl-0.150.2.darwin-amd64.tar.gz": "e548eebf022842b50b360253c9a66d3d1cf6bc3816f8ba18a1cd4a7eb5afb63f",
"https://github.com/TBD54566975/ftl/releases/download/v0.150.2/ftl-0.150.2.linux-amd64.tar.gz": "6bf9b70a6be03b4952b3b0b59f26cf82d61d9beb438d154d6ec25f306b376009",
"https://github.com/TBD54566975/ftl/releases/download/v0.150.2/ftl-0.150.2.darwin-arm64.tar.gz": "41e1ef0f6515d389005bbe24c5cc3a90bd6156b34edcdb09e5521e153f551764",
"https://github.com/TBD54566975/ftl/releases/download/v0.150.3/ftl-0.150.3.darwin-amd64.tar.gz": "2ec28db11b365e6dc76ab99048c6f5b307222afada097ae07e8a241c599ef8f3",
"https://github.com/TBD54566975/ftl/releases/download/v0.150.3/ftl-0.150.3.linux-amd64.tar.gz": "0c304f2df2287a021c8518e0b91753abb470fddb8d9d6d53d17ba8d716714b6a",
"https://github.com/TBD54566975/ftl/releases/download/v0.150.3/ftl-0.150.3.darwin-arm64.tar.gz": "cf472801e1b9ef724a7cf805e4bfd90a2040f180cc4f3e0c5f653b76bd5f0805",
"https://github.com/TBD54566975/ftl/releases/download/v0.151.0/ftl-0.151.0.linux-amd64.tar.gz": "c893edce6971e92c7c645e55edae9441a2645bc2de96a47f6bf96f3d4879da60",
"https://github.com/TBD54566975/ftl/releases/download/v0.151.0/ftl-0.151.0.darwin-amd64.tar.gz": "9f8796ed11c7bce26d1aba5ae60584859ae313b0256579df90ffc8ff1f3e82cb",
"https://github.com/TBD54566975/ftl/releases/download/v0.151.0/ftl-0.151.0.darwin-arm64.tar.gz": "32b11623bf2a5a56cfbb3e949e9e55b51a1aa44ba7599d40bd4175f610def921",
"https://github.com/TBD54566975/ftl/releases/download/v0.151.1/ftl-0.151.1.darwin-arm64.tar.gz": "cfa05aadbfd9fa5fe1fa8d8458b6d8f239519d835d7f2004db5008279e18092b",
"https://github.com/TBD54566975/ftl/releases/download/v0.151.1/ftl-0.151.1.linux-amd64.tar.gz": "4f54b4d1bcf2aef088a0716f85fbfbc0458fbb5661ba1278dd8b8e4499e011be",
"https://github.com/TBD54566975/ftl/releases/download/v0.151.1/ftl-0.151.1.darwin-amd64.tar.gz": "516c85a65d1bd2b49a1e1f0f5c47a7974505329562a4cf089e6f3878e8dd7758",
"https://github.com/TBD54566975/ftl/releases/download/v0.151.2/ftl-0.151.2.linux-amd64.tar.gz": "6050a921eb84728bbb5681beee9652a3ca7ecb1eaa526ef8935a585a6d2d3882",
"https://github.com/TBD54566975/ftl/releases/download/v0.151.2/ftl-0.151.2.darwin-arm64.tar.gz": "61436ddecc37d6d52aa444e97dbcd76a073ce2aa34abb75f38b9d808f00aab8e",
"https://github.com/TBD54566975/ftl/releases/download/v0.151.2/ftl-0.151.2.darwin-amd64.tar.gz": "5ab0d5b53c6c3f019edb0e0d6ac7f7a65c7afe529a4d6c14c7fd8da1dceec41d",
"https://github.com/TBD54566975/ftl/releases/download/v0.152.0/ftl-0.152.0.darwin-amd64.tar.gz": "74fd3edb8c624d35b492817440b2d0048d169b0028cfe8d5a0600caf8e084e3c",
"https://github.com/TBD54566975/ftl/releases/download/v0.152.0/ftl-0.152.0.darwin-arm64.tar.gz": "d8e2557b2cb454ceca5a178e669239fef9dfad7917fe420e4a3aaad8d3d76f42",
"https://github.com/TBD54566975/ftl/releases/download/v0.152.0/ftl-0.152.0.linux-amd64.tar.gz": "b0dbd9e2e7169468dca723df52b2f04f6e26301915da15768d7851a37e279eec",
"https://github.com/TBD54566975/ftl/releases/download/v0.152.1/ftl-0.152.1.linux-amd64.tar.gz": "56c5c6dec73a5d871dd7c9a4aa2e1008a1f318be4840890af4794555738735b6",
"https://github.com/TBD54566975/ftl/releases/download/v0.152.1/ftl-0.152.1.darwin-arm64.tar.gz": "2b2ff8e15929d3e595bba377661c810bcf245d938dd931f1d3cc7c93215a1e68",
"https://github.com/TBD54566975/ftl/releases/download/v0.152.1/ftl-0.152.1.darwin-amd64.tar.gz": "e20b152004d56760d96d652178d00b13e302f5643e492566600909c93685fc17",
"https://github.com/TBD54566975/ftl/releases/download/v0.153.0/ftl-0.153.0.darwin-arm64.tar.gz": "819ac2a2b13a4dd87c0a8cbbdf83401dcaaa3fb30d88964122e7f118bbc90453",
"https://github.com/TBD54566975/ftl/releases/download/v0.153.0/ftl-0.153.0.linux-amd64.tar.gz": "5fd28c22b238be2c664e98da5c0d1c872470792671f5826ff937a7a3042a16dd",
"https://github.com/TBD54566975/ftl/releases/download/v0.153.0/ftl-0.153.0.darwin-amd64.tar.gz": "217393ee1b43daea8cca1a71a76452d2e37d28f98eed48e9d2db5ce79fc5bcad",
"https://github.com/TBD54566975/ftl/releases/download/v0.153.1/ftl-0.153.1.darwin-arm64.tar.gz": "9b66caae70e364341f8c283e13cd48b5f76eca8200eb7d7f12dae4a29704d0f4",
"https://github.com/TBD54566975/ftl/releases/download/v0.153.1/ftl-0.153.1.linux-amd64.tar.gz": "bca6fc3085c5c426b5de3fbd08d268fbd552b2b679770832c8761709df68a9e6",
"https://github.com/TBD54566975/ftl/releases/download/v0.153.1/ftl-0.153.1.darwin-amd64.tar.gz": "d27c1716b9b5e67022d660e06494ce9863b605d9ddac75a9d1f52964fda656ab",
"https://github.com/TBD54566975/ftl/releases/download/v0.153.3/ftl-0.153.3.darwin-amd64.tar.gz": "35905e7c9a8b0f8822c0a5c4276603b1e559323e5cd9f8c4d5561cb20c6f8e0a",
"https://github.com/TBD54566975/ftl/releases/download/v0.153.3/ftl-0.153.3.linux-amd64.tar.gz": "b32002241c47d7b8a06919dc4ba737b330da2db95b730845e037c4aa8e470d32",
"https://github.com/TBD54566975/ftl/releases/download/v0.153.3/ftl-0.153.3.darwin-arm64.tar.gz": "931477314b44a45c08970f9abe0063907ad20c4ea57f379688cde433151e4beb",
"https://github.com/TBD54566975/ftl/releases/download/v0.154.1/ftl-0.154.1.darwin-amd64.tar.gz": "cf94a9fcc9c9f30894217d88f4474e611cec9734c9c5e75d72c681d230849e42",
"https://github.com/TBD54566975/ftl/releases/download/v0.154.1/ftl-0.154.1.linux-amd64.tar.gz": "bb1fd8671081f50499361d05df64f5926c362ca023ff9e6122415c42de78bf30",
"https://github.com/TBD54566975/ftl/releases/download/v0.154.1/ftl-0.154.1.darwin-arm64.tar.gz": "c7ba08b9afad0b245f3cfdaf59e65beaf5a33c3be7a7d2b106d156768e98b7b8",
"https://github.com/TBD54566975/ftl/releases/download/v0.155.0/ftl-0.155.0.linux-amd64.tar.gz": "cfab4eb37f90c60a2e51093784afe26f96ad4511a35ae8544daef95a0d4ce4f9",
"https://github.com/TBD54566975/ftl/releases/download/v0.155.0/ftl-0.155.0.darwin-arm64.tar.gz": "c8e61f2d50a1f4711681d89e17e68fb944d022e9e841f5dc329decaf4a6f007b",
"https://github.com/TBD54566975/ftl/releases/download/v0.155.0/ftl-0.155.0.darwin-amd64.tar.gz": "6953e45e9c9c8c5bf6e92a31f989c720a1eb5d9f16f3bfa50a0ef4e79ed6e15b",
"https://github.com/TBD54566975/ftl/releases/download/v0.156.0/ftl-0.156.0.darwin-amd64.tar.gz": "477f17cd1f5f7fd0a5c5272b8d530e1c5877daa0e144cac8d687ff0e42a3e727",
"https://github.com/TBD54566975/ftl/releases/download/v0.156.0/ftl-0.156.0.darwin-arm64.tar.gz": "f36089f094f161b362b292b8420ecdc356e3a9412524e1041eb0735a54b5aef3",
"https://github.com/TBD54566975/ftl/releases/download/v0.156.0/ftl-0.156.0.linux-amd64.tar.gz": "6958f953c24aea6d6a707fdfea12c288f984309d5e2c53eef435465d27c59aca",
"https://github.com/TBD54566975/ftl/releases/download/v0.157.0/ftl-0.157.0.darwin-amd64.tar.gz": "bc39de654a5d74bf527141362efaf828cf3a739352c64540a222833aeb60ea3a",
"https://github.com/TBD54566975/ftl/releases/download/v0.157.0/ftl-0.157.0.darwin-arm64.tar.gz": "0b8b056a7b1d4446e7d892b1290ec57c075d9144e42511e1da7954fe815f9498",
"https://github.com/TBD54566975/ftl/releases/download/v0.157.0/ftl-0.157.0.linux-amd64.tar.gz": "c5d771f6580337bd7017c2feaf5230ca5b1dcfe379653d05b0ca6746ade46f02",
"https://github.com/TBD54566975/ftl/releases/download/v0.157.1/ftl-0.157.1.darwin-arm64.tar.gz": "c8a2c4b9a8da395a5d84f456b19968814bc2375cf99d9e7c71cd4c90b962c432",
"https://github.com/TBD54566975/ftl/releases/download/v0.157.1/ftl-0.157.1.darwin-amd64.tar.gz": "ac908d71638bdc6b1201baa63b6754fd4a923cf73c4cb3db5e3a4e46206022c3",
"https://github.com/TBD54566975/ftl/releases/download/v0.157.1/ftl-0.157.1.linux-amd64.tar.gz": "06929beb0d97b3ac8029fbc96a46c45e07a2d0150c0627aec58d2e4c74716b2e",
"https://github.com/TBD54566975/ftl/releases/download/v0.158.0/ftl-0.158.0.darwin-amd64.tar.gz": "a1e46244e4e68ba9e8ac3fcb9618b50d93c6e0b14dbcec3868a1c7bbb1992dab",
"https://github.com/TBD54566975/ftl/releases/download/v0.158.0/ftl-0.158.0.darwin-arm64.tar.gz": "0c92ef5a19f150fd1c6d3571cb761f29827a507e3d07b4895a0194448a226a65",
"https://github.com/TBD54566975/ftl/releases/download/v0.158.0/ftl-0.158.0.linux-amd64.tar.gz": "6e9c8a9a052bb6bbfda72f78a39a1770940d6a0e93bed2da4a831553c8ea0e2d",
"https://github.com/TBD54566975/ftl/releases/download/v0.158.1/ftl-0.158.1.linux-amd64.tar.gz": "a756a27b5db95b955a6c6aa3d195ce60585e2160de2fa684038c02ea727f6bcd",
"https://github.com/TBD54566975/ftl/releases/download/v0.158.1/ftl-0.158.1.darwin-amd64.tar.gz": "29866c79c5295732ab434dddbd15de70fa00f09fcee1e13e8372b7715bf3e98a",
"https://github.com/TBD54566975/ftl/releases/download/v0.158.1/ftl-0.158.1.darwin-arm64.tar.gz": "1d5ab1e00cc58ff7ecc17bbd1233432a000de4f8fbf5d145386bdd117b477ba5",
"https://github.com/TBD54566975/ftl/releases/download/v0.159.0/ftl-0.159.0.linux-amd64.tar.gz": "d0bd5f73deabc0f517ff33a9b2ee601ac504ad4f3311e02e317b381e184b0f3f",
"https://github.com/TBD54566975/ftl/releases/download/v0.159.0/ftl-0.159.0.darwin-amd64.tar.gz": "01b391f1141eff4751b05679523ee4601164344ff60b01370bf915a980379200",
"https://github.com/TBD54566975/ftl/releases/download/v0.159.0/ftl-0.159.0.darwin-arm64.tar.gz": "3273d9385fb74409f0290b3ea10a41ee4f8db60ca153ca3fee74143884d5c685",
"https://github.com/TBD54566975/ftl/releases/download/v0.159.1/ftl-0.159.1.linux-amd64.tar.gz": "29f600ec851748938b2e6e5cd9b7933595f69f17b6dda1e7febece9aa9830c25",
"https://github.com/TBD54566975/ftl/releases/download/v0.159.1/ftl-0.159.1.darwin-amd64.tar.gz": "05ce692df5c9a1ddb2cf6be85adccb70997a495c692212a634338ca8b0aad503",
"https://github.com/TBD54566975/ftl/releases/download/v0.159.1/ftl-0.159.1.darwin-arm64.tar.gz": "e0e3d5b7560183dc2a851e7560f61cf7fa1b0678db35249e57707e7fc48e3b8b",
"https://github.com/TBD54566975/ftl/releases/download/v0.160.0/ftl-0.160.0.darwin-arm64.tar.gz": "094f0924d3ca5f76889ee5a62c614fb82097b9db8a9fa01bec1c851a26994239",
"https://github.com/TBD54566975/ftl/releases/download/v0.160.0/ftl-0.160.0.darwin-amd64.tar.gz": "ea9ca3e42f32cabb4fc2b40b2cfee5b940a604319083b19ce721a2baa5abf5ac",
"https://github.com/TBD54566975/ftl/releases/download/v0.160.0/ftl-0.160.0.linux-amd64.tar.gz": "19b9728ff9a8f9ac6bc2dab6c8d8b58bc852d1256bbf5a02db8d23d741553a28",
"https://github.com/TBD54566975/ftl/releases/download/v0.161.0/ftl-0.161.0.linux-amd64.tar.gz": "c31379c6a18b879c9fa73e109b62ce4780eac7b4acf04f6cb94b4034f89f57f5",
"https://github.com/TBD54566975/ftl/releases/download/v0.161.0/ftl-0.161.0.darwin-amd64.tar.gz": "77b68651e31500757c528d05f305873ca9bc1ea95bce14c365a80bcffdf3d01b",
"https://github.com/TBD54566975/ftl/releases/download/v0.161.0/ftl-0.161.0.darwin-arm64.tar.gz": "a4c20b76ac26e315910b0534a279bf131bef3b41cbabb60efe21587d2d3d74d8",
"https://github.com/TBD54566975/ftl/releases/download/v0.161.1/ftl-0.161.1.darwin-amd64.tar.gz": "d4d8031f15665ea5f218103297f1f703897980caa6f75bbd9c84dba66d16803d",
"https://github.com/TBD54566975/ftl/releases/download/v0.161.1/ftl-0.161.1.linux-amd64.tar.gz": "52c06002393a8bdd4b941b02b609273184a29d4c051242e096ca88f0d92fe17e",
"https://github.com/TBD54566975/ftl/releases/download/v0.161.1/ftl-0.161.1.darwin-arm64.tar.gz": "5494d22f2b6ce599a415160eb129a606121189c7d882624518cd5f8147d04742",
"https://github.com/TBD54566975/ftl/releases/download/v0.162.0/ftl-0.162.0.linux-amd64.tar.gz": "af97281854e5ce4f69c62b89c9f49c9e2176054683a777046c620e541c5a89d0",
"https://github.com/TBD54566975/ftl/releases/download/v0.162.0/ftl-0.162.0.darwin-amd64.tar.gz": "7821d11e9d0e44db35f251c7f604cf0bb38e0b4894795216e4c0ace921474136",
"https://github.com/TBD54566975/ftl/releases/download/v0.162.0/ftl-0.162.0.darwin-arm64.tar.gz": "d43c1d3653df75f3558f182efa74718d6e0fc1b71beacedda4c4d5d8b4555dce",
"https://github.com/TBD54566975/ftl/releases/download/v0.162.1/ftl-0.162.1.darwin-amd64.tar.gz": "d4f86c81fe3f8de68f0cb1479f87b1bf91bd61f6fab2e467ed4046035b64dc75",
"https://github.com/TBD54566975/ftl/releases/download/v0.162.1/ftl-0.162.1.darwin-arm64.tar.gz": "5015c5d4a4b6370f402ffc3f05c7c1e76932392f77ff8a5b596db9cf40784e1b",
"https://github.com/TBD54566975/ftl/releases/download/v0.162.1/ftl-0.162.1.linux-amd64.tar.gz": "5bd66a23464f54ac9a9bf676cd55700b3f6fd2047c51d97ffed004a223ce3625",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.0/ftl-0.163.0.linux-amd64.tar.gz": "288dc84a45ecda614850ed0f25a3dc17431c69270acc61d65a355026d7c44794",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.0/ftl-0.163.0.darwin-arm64.tar.gz": "d839da307a8732cc5c04e454463241c26a9653b77283c843c32ed93844686c12",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.0/ftl-0.163.0.darwin-amd64.tar.gz": "7b051f8ba4c8e68c6d9f105eb76cf00c6e07147da098e770d9c21f5a0c09958d",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.1/ftl-0.163.1.linux-amd64.tar.gz": "40ea48eba831fa0ffb3560800475ddb80637f2b678d68fbd32dfdb4c02cb194f",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.1/ftl-0.163.1.darwin-amd64.tar.gz": "951a722d4b076c8c06370f0d63fe1fb71645e0cdd939d21f7cc33390d552476a",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.1/ftl-0.163.1.darwin-arm64.tar.gz": "8f8b06db2ee7d2f4fb6eae6b2742c5d78d4fbd92cb6bbacf98e33fdfa454982d",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.2/ftl-0.163.2.darwin-arm64.tar.gz": "2b7e1e3d93b88f2a8e3be81d59c29ff1cd6cd0fb56eda739ee3ac3ff40778ac8",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.2/ftl-0.163.2.darwin-amd64.tar.gz": "e9360f14da866e949ac90d4711fc3d69a22a9cbdcb7ae9d7d3ea1feaa2279a2d",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.2/ftl-0.163.2.linux-amd64.tar.gz": "6ed01baa99334ca3ce25dd2cae33ed80b9050042e3383574849f9eee4b8f04d2",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.3/ftl-0.163.3.linux-amd64.tar.gz": "d586c22cb1f064578ad5a7dd2dcb34b8aa4a6d7a83d33668963d7894e92e238e",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.3/ftl-0.163.3.darwin-amd64.tar.gz": "fa5d842d1fe85bb78252a9e4ed82740d5ad7c4c0a9fa90755008519b2e9a313a",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.3/ftl-0.163.3.darwin-arm64.tar.gz": "2a2253b1439eb196933977a38345c7776da5727649b1fb0ab0f31cc346774d72",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.4/ftl-0.163.4.linux-amd64.tar.gz": "c0d5390bb243edbf7826aa3d0867484625a98a0911e3c1ef10bfd798363e2d91",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.4/ftl-0.163.4.darwin-arm64.tar.gz": "c1874434b0c929e6c46156fd85e392710e28328890234bdabc6e37ba6c0d3ce3",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.4/ftl-0.163.4.darwin-amd64.tar.gz": "1c11a1b40e5d20109c9bceaaf71c6343ca09a10c137946c6cdfc1af345fdd19f",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.5/ftl-0.163.5.darwin-arm64.tar.gz": "b549c9a1ade60652fc2b22a2d653004f739e4c30062f30b9b8eb929ed5f60ccf",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.5/ftl-0.163.5.darwin-amd64.tar.gz": "030afe80493c57d77ddb94dce75c6d94f4c037af0d0df6d9372f6283dad34eb6",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.5/ftl-0.163.5.linux-amd64.tar.gz": "b1fd9466a11df2572a31c217434b29c5e113ca72e145119ff6cb23fbac263ab5",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.6/ftl-0.163.6.darwin-amd64.tar.gz": "978ada6f8e3f43959e3dfe9e5826952ce65067d9923249e47a4306dcfcbeae70",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.6/ftl-0.163.6.linux-amd64.tar.gz": "6a675b52496572ad25f7071e651ec6de4a4e380247beb0e5abf40e2120270832",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.6/ftl-0.163.6.darwin-arm64.tar.gz": "698510450e5851e1ce7f9ba1240a5a69bc2e45fd5dbb35a8fcd849ae9402a3b6",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.7/ftl-0.163.7.darwin-arm64.tar.gz": "cee802d80064aef0844b9a10cbeacc2495f289a73ec91bf700b7885be792989d",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.7/ftl-0.163.7.linux-amd64.tar.gz": "0379eb32c9f1c1abc640a6e11aff2c16fe616d4c93a37906998d1a68baaffcea",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.7/ftl-0.163.7.darwin-amd64.tar.gz": "4c0242513a6197710d057768582188f2bee7a6475a504650a24223b37b3ce5c1",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.8/ftl-0.163.8.linux-amd64.tar.gz": "a5e1007aa7dc881ccf8cd06df1fe4cfd586afb50efe11520bc45b263ff5b7992",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.8/ftl-0.163.8.darwin-amd64.tar.gz": "66bd5dd1f8d44b1807892f63f5ce7788b492fb6eb66389a637e15530969f8760",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.8/ftl-0.163.8.darwin-arm64.tar.gz": "c795d93c3c5b9760a416e4ec83f8d5ffc831a43870a007b7b13972cc0f1cece2",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.9/ftl-0.163.9.linux-amd64.tar.gz": "b37285d0d2512b64e299a63340268adad9628ad17705bc77046ebf17ce8420f1",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.9/ftl-0.163.9.darwin-arm64.tar.gz": "ad4b48f15680dff4802786710d907d4ef1e099cbd0eb25cf40c0be9bbcf6e813",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.9/ftl-0.163.9.darwin-amd64.tar.gz": "f3428292d4ba1e02665cc4a692bc4f0c9a93bcaadbd29bf6512d11dd44a7e0cc",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.10/ftl-0.163.10.darwin-amd64.tar.gz": "0b52464dcde6444927406189768d40ddb677126ac1b66a28dd72b19c5b23541b",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.10/ftl-0.163.10.darwin-arm64.tar.gz": "7afc0f3b2cb166667bb1cf18cf896e96b54b3fc1fadd458e36e23c3870396d79",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.10/ftl-0.163.10.linux-amd64.tar.gz": "bc3da46293a6721c270450a1349814087807dd7e20b1feaa9ee561a9703a7f07",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.11/ftl-0.163.11.linux-amd64.tar.gz": "05919577090ffd0f5688b4ddc081ea81b1c205a0d9b9d7983d6922069f76db6a",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.11/ftl-0.163.11.darwin-arm64.tar.gz": "6878b1e80ba20e5c872ba2ed5c9767d4ab30d528c5a4170c6994af4372c00522",
"https://github.com/TBD54566975/ftl/releases/download/v0.163.11/ftl-0.163.11.darwin-amd64.tar.gz": "89770dc67902ea101fcacdfe79e5d680fdaac880ad9e4e66a5f1bc7db5f19787",
"https://github.com/TBD54566975/ftl/releases/download/v0.164.0/ftl-0.164.0.darwin-arm64.tar.gz": "3a5a8488a16105b6881bf51b52f0114efedcc03c6329f407091cd7a823ddb94a",
"https://github.com/TBD54566975/ftl/releases/download/v0.164.0/ftl-0.164.0.darwin-amd64.tar.gz": "6aa6d7ec2475901df282751266509d9c1446be59984be057540e8ee6e54593ec",
"https://github.com/TBD54566975/ftl/releases/download/v0.164.0/ftl-0.164.0.linux-amd64.tar.gz": "7feae7fdbe768da6f98ff8ac5aa27a4a164fddf7b1c0959d593ceb6e0b129fad",
"https://github.com/TBD54566975/ftl/releases/download/v0.164.1/ftl-0.164.1.darwin-amd64.tar.gz": "ee50a7bb237824c1ee210df76d9bb922d27fe50a92c3e6d5e39699dd9666aefe",
"https://github.com/TBD54566975/ftl/releases/download/v0.164.1/ftl-0.164.1.darwin-arm64.tar.gz": "5e43dcb886b4d75cd23d0120f4714957f225abde6ae5777b749b5d5cda60bd0d",
"https://github.com/TBD54566975/ftl/releases/download/v0.164.1/ftl-0.164.1.linux-amd64.tar.gz": "78c311b17fbdc3e36637761c7ea71901dc87013117162a69fca74c34a0e6eb44",
"https://github.com/TBD54566975/ftl/releases/download/v0.165.0/ftl-0.165.0.darwin-amd64.tar.gz": "cc8ea58e0f1c4abfc180bad6fa5e60a6b195600e7705244b9e619b9cd73293b3",
"https://github.com/TBD54566975/ftl/releases/download/v0.165.0/ftl-0.165.0.darwin-arm64.tar.gz": "92b9a4779f658a8e89d2e12f65e88c0a58a0bac1b53718f6f82c8cdea8366822",
"https://github.com/TBD54566975/ftl/releases/download/v0.165.0/ftl-0.165.0.linux-amd64.tar.gz": "f9b01aa3f7e8238910ad7b38515dcc336c70e6117f2aaae1dd0ae419d53b675c",
"https://github.com/TBD54566975/ftl/releases/download/v0.165.1/ftl-0.165.1.linux-amd64.tar.gz": "5f111eb05ff1cf9480a47ba389e6c767c52285a216e587a70c40b9f3eedf1d76",
"https://github.com/TBD54566975/ftl/releases/download/v0.165.1/ftl-0.165.1.darwin-arm64.tar.gz": "7df81b1e33ff9864724480c7f6969171f3777490d90873d21c5724b9b7513386",
"https://github.com/TBD54566975/ftl/releases/download/v0.165.1/ftl-0.165.1.darwin-amd64.tar.gz": "e8dc039717c9954f4717d66653f5f115729b2c48ff43c00bfd14a648dae5d13e",
"https://github.com/TBD54566975/ftl/releases/download/v0.166.1/ftl-0.166.1.darwin-arm64.tar.gz": "653be66f90a7e7bb348f045e6d7dc8b452dac1e6f832e34ab950198023573af5",
"https://github.com/TBD54566975/ftl/releases/download/v0.166.1/ftl-0.166.1.darwin-amd64.tar.gz": "607fa709700a7db0b4ee7448c6b5b083fe1a89f83a2b5ffe73e917c38d768918",
"https://github.com/TBD54566975/ftl/releases/download/v0.166.1/ftl-0.166.1.linux-amd64.tar.gz": "48658fd31469194eee663e03304d44d6e66fcc4ce60fb7f413511d77a71dae66",
"https://github.com/TBD54566975/ftl/releases/download/v0.166.2/ftl-0.166.2.linux-amd64.tar.gz": "8f0313071be245a82a7d06ef737bcbc315124da8dda43171f643f414c4421005",
"https://github.com/TBD54566975/ftl/releases/download/v0.166.2/ftl-0.166.2.darwin-amd64.tar.gz": "bc18298d2ead2c37ca2a6c89031e26a1a6bb13fda5ee62a006e37825e81e50c1",
"https://github.com/TBD54566975/ftl/releases/download/v0.166.2/ftl-0.166.2.darwin-arm64.tar.gz": "908c0ce14b5b9e9eb9c095f9505aa66d0cb6324dfe82a076252c6a90c2657fa2",
"https://github.com/TBD54566975/ftl/releases/download/v0.167.0/ftl-0.167.0.darwin-arm64.tar.gz": "3b24352bc5a9ca661cae7ecaef2deac8fe25fc0a13c09bb1ba983f01ad10684a",
"https://github.com/TBD54566975/ftl/releases/download/v0.167.0/ftl-0.167.0.darwin-amd64.tar.gz": "40529395703a5f8c05c5a91297c299347a8c8b777a475f4d5b0d01d61124bf15",
"https://github.com/TBD54566975/ftl/releases/download/v0.167.0/ftl-0.167.0.linux-amd64.tar.gz": "7483358b87c3e61c5c39a22ad5ef4edbb67850a6c9ad5cc5c9d5f558c412afa2",
"https://github.com/TBD54566975/ftl/releases/download/v0.168.0/ftl-0.168.0.linux-amd64.tar.gz": "5c903573ad3de4a21a419760cd37c1fddef6cf28d03df7f709984e15407f034d",
"https://github.com/TBD54566975/ftl/releases/download/v0.168.0/ftl-0.168.0.darwin-amd64.tar.gz": "6d5033fd9a429e287b3754dc814018764c92a0a72dbd917bad53cdb759aa3ee4",
"https://github.com/TBD54566975/ftl/releases/download/v0.168.0/ftl-0.168.0.darwin-arm64.tar.gz": "5058955a494c00c66bff47fa4ca986ea8b5a2026d2546af8a15b14ebb6b5332a",
"https://github.com/TBD54566975/ftl/releases/download/v0.169.0/ftl-0.169.0.darwin-amd64.tar.gz": "4be7a68174abe88fdbfb73b8c799486e1d6e3649448220566d6c744014591bb2",
"https://github.com/TBD54566975/ftl/releases/download/v0.169.0/ftl-0.169.0.linux-amd64.tar.gz": "0166f0f9bbac06daf3260db6a1faaf2aad69891ba88590d270506fc510eea805",
"https://github.com/TBD54566975/ftl/releases/download/v0.169.0/ftl-0.169.0.darwin-arm64.tar.gz": "d4e4befbeec8c95485600f1517e3da2c798ac6f7fa84b3b884c7615c6d0e49dd",
"https://github.com/TBD54566975/ftl/releases/download/v0.169.1/ftl-0.169.1.darwin-amd64.tar.gz": "19e68abb8af534e744d63844c085fcd85e22df4974dab2b4555bd3eada73ab62",
"https://github.com/TBD54566975/ftl/releases/download/v0.169.1/ftl-0.169.1.linux-amd64.tar.gz": "6d8fd5fa37974b2687ec57575104d2519067d3160f4436975cfea297a6773634",
"https://github.com/TBD54566975/ftl/releases/download/v0.169.1/ftl-0.169.1.darwin-arm64.tar.gz": "e49ece594b6a205dbf884e8e8c1facb2ee31d055e61f48082227e42a8fbb7a33",
"https://github.com/TBD54566975/ftl/releases/download/v0.170.1/ftl-0.170.1.darwin-arm64.tar.gz": "91cad4a871e4c5e71d688c8ccc261609ceba4e43375a0961d948516cead6a3c8",
"https://github.com/TBD54566975/ftl/releases/download/v0.170.1/ftl-0.170.1.linux-amd64.tar.gz": "941149e9c437dd7604098f6684b013d8eed35da024661c90bce885fb678be3cb",
"https://github.com/TBD54566975/ftl/releases/download/v0.170.1/ftl-0.170.1.darwin-amd64.tar.gz": "adbd873d05e552bdc7fbd8544a42959db65271732d4b79db35821f8a4e6d6ca8",
"https://github.com/TBD54566975/ftl/releases/download/v0.171.0/ftl-0.171.0.darwin-amd64.tar.gz": "410350f0b2b71f7b915a9f493d945af1a8fde2d17aef491572952071fb895dcb",
"https://github.com/TBD54566975/ftl/releases/download/v0.171.0/ftl-0.171.0.linux-amd64.tar.gz": "f260ce4700394728f9e7b6bd91b4cd05ba63bd412fdee216994ddea531cc1552",
"https://github.com/TBD54566975/ftl/releases/download/v0.171.0/ftl-0.171.0.darwin-arm64.tar.gz": "b25944d02f77391dab108401cc60e5a3ee7f0bfff257a62d3ad485a1c8532ac2",
"https://github.com/TBD54566975/ftl/releases/download/v0.172.0/ftl-0.172.0.darwin-amd64.tar.gz": "cd1c6e9eedcb45bc7ce92f7fd8044bd66981009f391a3b2a66fd36d65219badc",
"https://github.com/TBD54566975/ftl/releases/download/v0.172.0/ftl-0.172.0.darwin-arm64.tar.gz": "5bbf4ef56b9dcbddf4a5b1aedce8ad09c471d313181799caa5d52feede85601e",
"https://github.com/TBD54566975/ftl/releases/download/v0.172.0/ftl-0.172.0.linux-amd64.tar.gz": "955181c3e115118b3cb0ad62e0aceecc2e1292d882464cbd039a2fc0d4c39a76",
"https://github.com/TBD54566975/ftl/releases/download/v0.173.0/ftl-0.173.0.linux-amd64.tar.gz": "d7540fab4cbbc3c014d8a38ef5fe457711251e8c764b297ba972198ef0dc06ed",
"https://github.com/TBD54566975/ftl/releases/download/v0.173.0/ftl-0.173.0.darwin-amd64.tar.gz": "e2dd9013b59b8a35cdd01fb4c3f3eb263d1d82407d0bfa20cdc1e28eafc86206",
"https://github.com/TBD54566975/ftl/releases/download/v0.173.0/ftl-0.173.0.darwin-arm64.tar.gz": "1a839ac8e6b1ad692de32b440f0e8462b5866cc058e223c64fe77f53ce37d6a8",
"https://github.com/TBD54566975/ftl/releases/download/v0.173.1/ftl-0.173.1.darwin-arm64.tar.gz": "868707ae075df077eb8fbb8044911579303dfca91c6f1752df02fdd6d9e66963",
"https://github.com/TBD54566975/ftl/releases/download/v0.173.1/ftl-0.173.1.linux-amd64.tar.gz": "871b3db5316437af36f582bfa7f338ed27135a068dc5b2a0a3e2f327d765ece5",
"https://github.com/TBD54566975/ftl/releases/download/v0.173.1/ftl-0.173.1.darwin-amd64.tar.gz": "8812367de7685c7d125be9e32f43bf725af8135757af1d420bc56dccf8aaf914",
"https://github.com/TBD54566975/ftl/releases/download/v0.174.0/ftl-0.174.0.linux-amd64.tar.gz": "713af732d7f53a00a3676150c7028aa88931431ffb1425748f04715512ff8658",
"https://github.com/TBD54566975/ftl/releases/download/v0.174.0/ftl-0.174.0.darwin-arm64.tar.gz": "5e013d2c9f74a2855c927dd09ae0657cdab7447e5c0544e381e17c56657d976b",
"https://github.com/TBD54566975/ftl/releases/download/v0.174.0/ftl-0.174.0.darwin-amd64.tar.gz": "afe3fef0d8a5a626c28d138cd3c2aabf464e9330facdd7b9507358162b18ff51",
"https://github.com/TBD54566975/ftl/releases/download/v0.175.0/ftl-0.175.0.linux-amd64.tar.gz": "c52ded2f5f41462967bb53e4709663c675290d8287c9b88a6dfa9759e59f2527",
"https://github.com/TBD54566975/ftl/releases/download/v0.175.0/ftl-0.175.0.darwin-arm64.tar.gz": "d1d01edb8dfe78143a78b366fe768b388d60aa74e60d24b00e519a97a0daf30c",
"https://github.com/TBD54566975/ftl/releases/download/v0.175.0/ftl-0.175.0.darwin-amd64.tar.gz": "6f0cfbf190bff24401358d19d599469946f8c1f2f00d0da3a7d0062cf332a352",
"https://github.com/TBD54566975/ftl/releases/download/v0.176.0/ftl-0.176.0.darwin-arm64.tar.gz": "6946a44ef6365a04ab7a97feaedd7ce251fe9f17b457ba221fedb0e67433b8b9",
"https://github.com/TBD54566975/ftl/releases/download/v0.176.0/ftl-0.176.0.darwin-amd64.tar.gz": "4557f8e3d9f67a6ec0b36e6749fe4f1e2301d77a10ebfad9ec077ac9cfa14f05",
"https://github.com/TBD54566975/ftl/releases/download/v0.176.0/ftl-0.176.0.linux-amd64.tar.gz": "ffe7cc565bc84818f049c0ea16d9508b8af5d82bfb66512d032f5d8dd17158ec",
"https://github.com/TBD54566975/ftl/releases/download/v0.176.1/ftl-0.176.1.darwin-amd64.tar.gz": "a12c089aa3afe208046fe2ff267476ff12e057bbfd7889e98a3cf280f3ae957f",
"https://github.com/TBD54566975/ftl/releases/download/v0.176.1/ftl-0.176.1.darwin-arm64.tar.gz": "ae2a9549cd2fe9a1fd3bd1a6138e85517052e1d716a063f97936b23099cb4ca8",
"https://github.com/TBD54566975/ftl/releases/download/v0.176.1/ftl-0.176.1.linux-amd64.tar.gz": "96a892a8c5505375c9ea92ccd289ee2a1ecf34769023625f31af9dad3b11d5c7",
"https://github.com/TBD54566975/ftl/releases/download/v0.177.0/ftl-0.177.0.darwin-arm64.tar.gz": "9214151eb593e53bafe81eecf8e11026e60ae39086a09284b83591c50a559379",
"https://github.com/TBD54566975/ftl/releases/download/v0.177.0/ftl-0.177.0.linux-amd64.tar.gz": "8b0c961af8283830111d5996e4c6838c8e6d3958bf633c0ebfde5716bbbb67d3",
"https://github.com/TBD54566975/ftl/releases/download/v0.177.0/ftl-0.177.0.darwin-amd64.tar.gz": "cf7ca4ec618e1dc3a023c589645a9404f34058a37d9a58cc6c5c6c8a40223629",
"https://github.com/TBD54566975/ftl/releases/download/v0.177.1/ftl-0.177.1.darwin-arm64.tar.gz": "a6bc498fed1bc920b538c5ba0e68ae220ccba8f3b4c1c8e928adf57195bef05a",
"https://github.com/TBD54566975/ftl/releases/download/v0.177.1/ftl-0.177.1.darwin-amd64.tar.gz": "62f63159f2e166b250c11168fdba969f8562cb8e879008a510700e0eec67d22e",
"https://github.com/TBD54566975/ftl/releases/download/v0.177.1/ftl-0.177.1.linux-amd64.tar.gz": "d7ee32d4f1a010f9a1399070441b64c5e8e8cb79ded31e4467b85c8ef80c31eb",
"https://github.com/TBD54566975/ftl/releases/download/v0.179.1/ftl-0.179.1.darwin-arm64.tar.gz": "b4af1e95e077fc25910c51ce1d96a739c0256b58f28352e457777fb65d942b37",
"https://github.com/TBD54566975/ftl/releases/download/v0.179.1/ftl-0.179.1.darwin-amd64.tar.gz": "b305a1deed82076a8c7986080d35a310d029276e3b07e3aca401b2a1ac4baaa8",
"https://github.com/TBD54566975/ftl/releases/download/v0.179.1/ftl-0.179.1.linux-amd64.tar.gz": "1ff8dd60ab9c1ad6589765b5945e9f22688d1468a686c4b167378e4a20930433",
"https://github.com/TBD54566975/ftl/releases/download/v0.179.2/ftl-0.179.2.darwin-amd64.tar.gz": "93ff6492d9cc679a0cbb857ab30974e8fe106dc6b348b3cceb998b89039c698f",
"https://github.com/TBD54566975/ftl/releases/download/v0.179.2/ftl-0.179.2.linux-amd64.tar.gz": "edb32110354b453e483617ba587448490bcffa7b9bbca65bdc981765c7680297",
"https://github.com/TBD54566975/ftl/releases/download/v0.179.2/ftl-0.179.2.darwin-arm64.tar.gz": "6fe3351e278733e14c135b8954759d43f8856e38b43ef1bd7495df95f839a20d",
"https://github.com/TBD54566975/ftl/releases/download/v0.180.0/ftl-0.180.0.darwin-amd64.tar.gz": "e89f7766144c3ece196e8eb85a1aa76411841fc8f3b46ca9790a8b52cddcb37c",
"https://github.com/TBD54566975/ftl/releases/download/v0.180.0/ftl-0.180.0.linux-amd64.tar.gz": "d4dde994a735e5e5f5dd1a579fc7bb77d78dfcd4b6cfe2b3bfa7a2084a040430",
"https://github.com/TBD54566975/ftl/releases/download/v0.180.0/ftl-0.180.0.darwin-arm64.tar.gz": "1cc9cb53afcc9c1ff01a63e83e2138eabde08f8d3998e820a0c00162eed8f393",
"https://github.com/TBD54566975/ftl/releases/download/v0.180.1/ftl-0.180.1.linux-amd64.tar.gz": "713977b9e22948fb146a90b34262cf991ee0a3111d9902a0caa3b0395d207583",
"https://github.com/TBD54566975/ftl/releases/download/v0.180.1/ftl-0.180.1.darwin-amd64.tar.gz": "f41bf376e19bc8154d1282b11f6bdf27389dbaa607a93771504380938f53b5f7",
"https://github.com/TBD54566975/ftl/releases/download/v0.180.1/ftl-0.180.1.darwin-arm64.tar.gz": "010fa25d640a5aa6027ca6340ca819509a36a05f864587f9e39b13a9c5f2e267",
"https://github.com/TBD54566975/ftl/releases/download/v0.181.0/ftl-0.181.0.darwin-amd64.tar.gz": "de8b68a06e4b52a7411e6d89f614e0f0ee6e60ad8c3d7a5b29f64ac0e56a5b3f",
"https://github.com/TBD54566975/ftl/releases/download/v0.181.0/ftl-0.181.0.linux-amd64.tar.gz": "1da8f3027b6f64637e45fdc4ff54c1ee6ad3725387a5c85d721a6e84b86dfdd1",
"https://github.com/TBD54566975/ftl/releases/download/v0.181.0/ftl-0.181.0.darwin-arm64.tar.gz": "93a60aeaf676d9b7095b486fabc3bcfcc57f0877e6d4d6f3f562014a34efa799",
"https://github.com/TBD54566975/ftl/releases/download/v0.181.1/ftl-0.181.1.linux-amd64.tar.gz": "f05a36385eef25f318f5cd1f4b9725a2d27630dd6b9dd1349ab653e397d7663d",
"https://github.com/TBD54566975/ftl/releases/download/v0.181.1/ftl-0.181.1.darwin-amd64.tar.gz": "d8ca8ed5f91af98694fc4e7940560378ea57a2b6cba70803b0e0dd12b4f62fb6",
"https://github.com/TBD54566975/ftl/releases/download/v0.181.1/ftl-0.181.1.darwin-arm64.tar.gz": "4dbe8eff65adcfb5de27d7e75f609ee130cfb1dd68f3e866cfb2a4b0a25f2c5e",
"https://github.com/TBD54566975/ftl/releases/download/v0.182.0/ftl-0.182.0.linux-amd64.tar.gz": "a058a650b40ee25ec60276051d38a39e90b9402765ee2bf26ff9df74ba1797ef",
"https://github.com/TBD54566975/ftl/releases/download/v0.182.0/ftl-0.182.0.darwin-arm64.tar.gz": "50eeb938f3e7453a4bc3e508646e6d44d4e128f2a0fb8aceab9e43083672736d",
"https://github.com/TBD54566975/ftl/releases/download/v0.182.0/ftl-0.182.0.darwin-amd64.tar.gz": "3bdc9374b30182c0423f5c78d1d34ff1183ea9563c0b219a0729250f398c22df",
"https://github.com/TBD54566975/ftl/releases/download/v0.182.1/ftl-0.182.1.linux-amd64.tar.gz": "a767403ee0a38829740a4c248c784f352da218e2ccdf97d8c9635cecbd2380cb",
"https://github.com/TBD54566975/ftl/releases/download/v0.182.1/ftl-0.182.1.darwin-amd64.tar.gz": "b3ea9bed2301d876e54b411e952f1f53cde96c87a4743837423e0ae11cc4e561",
"https://github.com/TBD54566975/ftl/releases/download/v0.182.1/ftl-0.182.1.darwin-arm64.tar.gz": "bea6b1675d53cf9bb96baa8138283b85b2279676574c835d44d81c882394762f",
"https://github.com/TBD54566975/ftl/releases/download/v0.182.2/ftl-0.182.2.darwin-arm64.tar.gz": "8ef2d240eaaa8938bef71a26c128bcb0c60c9cb0bd6aa1370e86e96e3baf9c5d",
"https://github.com/TBD54566975/ftl/releases/download/v0.182.2/ftl-0.182.2.linux-amd64.tar.gz": "528a8ded346ef12c055baafdf550cd15b312a4614f62d03418e2c2c42af0659f",
"https://github.com/TBD54566975/ftl/releases/download/v0.182.2/ftl-0.182.2.darwin-amd64.tar.gz": "f4e6b6dc81b3a950b1be60d3aadbcc8d0f847c30392f9fa10e1ae666baccef5f",
"https://github.com/TBD54566975/ftl/releases/download/v0.183.0/ftl-0.183.0.darwin-arm64.tar.gz": "5697f052d48ab5122819da1ea3f7856c6623639593d342f58a6f259a88570249",
"https://github.com/TBD54566975/ftl/releases/download/v0.183.0/ftl-0.183.0.linux-amd64.tar.gz": "9290afc2c96aba84577bec65841c55f47e8485680c779c6ce65a9335c93136bf",
"https://github.com/TBD54566975/ftl/releases/download/v0.183.0/ftl-0.183.0.darwin-amd64.tar.gz": "7c750ace76c82073c04e6404a427b2c0c98972598aa6cf287a32a8f56aae1fcc",
"https://github.com/TBD54566975/ftl/releases/download/v0.184.0/ftl-0.184.0.linux-amd64.tar.gz": "7db75dba614ac372d612d222d030adc2ad7cc242e7fccf5fca5e3f6550731a7a",
"https://github.com/TBD54566975/ftl/releases/download/v0.184.0/ftl-0.184.0.darwin-amd64.tar.gz": "a2b9e5abf4627b638a46ce97e9c1b345d2a8617b32b274053acfbf7c97452721",
"https://github.com/TBD54566975/ftl/releases/download/v0.184.0/ftl-0.184.0.darwin-arm64.tar.gz": "38e364eab7ae9702bd49191583b296c4d7861db980bad51c680f682e693b07da",
"https://github.com/TBD54566975/ftl/releases/download/v0.184.1/ftl-0.184.1.linux-amd64.tar.gz": "41b9cedfc9bba41f0ed3eb0f159b11e0dedb847f52e7c654d6c82dce2542ac48",
"https://github.com/TBD54566975/ftl/releases/download/v0.184.1/ftl-0.184.1.darwin-amd64.tar.gz": "fa77cfdccc1e428b740a1543f0342842ad5c548591fba1bee1034cfada4e92e5",
"https://github.com/TBD54566975/ftl/releases/download/v0.184.1/ftl-0.184.1.darwin-arm64.tar.gz": "1d5f5ffbce18a789c76ec37eb58148bc9d000ef2b726fd79ce076c3b93e035f7",
"https://github.com/TBD54566975/ftl/releases/download/v0.184.2/ftl-0.184.2.darwin-arm64.tar.gz": "ec171a320976a7ae86f27f7fe25cf5734308482ea4feee737674f54e6490ae8a",
"https://github.com/TBD54566975/ftl/releases/download/v0.184.2/ftl-0.184.2.darwin-amd64.tar.gz": "7ab1649ed90501930dca9ed19d80aa39fe4b131f04b333be958265c2cbb70dc4",
"https://github.com/TBD54566975/ftl/releases/download/v0.184.2/ftl-0.184.2.linux-amd64.tar.gz": "d6f04f734151924f44cef613614f4e6c6941be51edd145cff74514aecc036c1b",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.0/ftl-0.185.0.darwin-amd64.tar.gz": "9167af93ae400101a894947cf4716a3f848fd69d73e8bf2892d9f6bf68285e10",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.0/ftl-0.185.0.linux-amd64.tar.gz": "63ec9a10b6756058e72adb1952ca6a2508231515ccf64db580fd88f9b16a2189",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.0/ftl-0.185.0.darwin-arm64.tar.gz": "124f005c02cef688528eabf5bd1d8fdd97515dc78e2156942385507093e84e19",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.1/ftl-0.185.1.linux-amd64.tar.gz": "387207b8de2de3f080a8c9afb19a081bec957faedb3aceed727b7cdff5f742a2",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.1/ftl-0.185.1.darwin-arm64.tar.gz": "a705c64578b4daf69489471f9e6026a29bd9543f124eacbafe08cb3517c137d9",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.1/ftl-0.185.1.darwin-amd64.tar.gz": "42524f31d3afd8b739ce01dcab63e733ea7b5c45645a4c492e4773482152b223",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.2/ftl-0.185.2.darwin-arm64.tar.gz": "1203b354ee246d706bdbc6b488e8b65d7ce228251714862f74b8da02517b2034",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.2/ftl-0.185.2.darwin-amd64.tar.gz": "1f97765656fb6a4e35ff2d8057467b2d8a6b435e0e2e1bb27f4e8cd736585ccd",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.2/ftl-0.185.2.linux-amd64.tar.gz": "3994f9f9f5d7d6cff83db2d0657ea33893f1e2efdba2847ddd6351cf9608fcb5",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.3/ftl-0.185.3.linux-amd64.tar.gz": "9e89150f57970801be8f2b736f2d8fd6b3f96af52d0c1eb3990a4579d8a0252f",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.3/ftl-0.185.3.darwin-arm64.tar.gz": "9aa8445e2d252e064967381d1659af4b6c35008ec1ab16a526055712a1637965",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.3/ftl-0.185.3.darwin-amd64.tar.gz": "e4d3056e806f007f684e24b56596b5d42071135edc3b24189a66472a7d70d60d",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.4/ftl-0.185.4.darwin-amd64.tar.gz": "02c24ff5bf34b1eb410fda8139569c65a91018509781f569d1338b0586414e6a",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.4/ftl-0.185.4.linux-amd64.tar.gz": "c53d751d62485b2d7a77aa988fd70942980795ca9d3e649e3d87f267d39d979b",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.4/ftl-0.185.4.darwin-arm64.tar.gz": "e7994b4a00e14ac9c71b2e937c1a771ecca44fdda9d8209c67df51479c08985f",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.5/ftl-0.185.5.linux-amd64.tar.gz": "1738c70b60d51b7836593d070f31fb23e0756ec5c48bceab8a0f773ae7be1436",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.5/ftl-0.185.5.darwin-amd64.tar.gz": "bcd1bd5a0036b0b5edf207c1cc19df8a35eb57d2f89de3e1864a79515d7bb113",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.5/ftl-0.185.5.darwin-arm64.tar.gz": "aee8423ec12230154146f72f46679d304de2098545ef9a1395d27dd4e5f093f3",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.6/ftl-0.185.6.darwin-arm64.tar.gz": "641e6ca191c2f2af5cc845c918d3fca3345ecec1a502f31e29297d8bcf6b8a28",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.6/ftl-0.185.6.linux-amd64.tar.gz": "3d0e53709c505a5c76a1d5f86a65c0af93095f77731335e4170d5104b2658f8c",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.6/ftl-0.185.6.darwin-amd64.tar.gz": "13c62f326b51c1f9e2ccf6c82d9561152267081fcf2388468dd17074a9e2843e",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.7/ftl-0.185.7.darwin-arm64.tar.gz": "634fa27cc627d0593277b97fb4d1ba269e143287edf7d2df69e7ce98ff1b22ba",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.7/ftl-0.185.7.darwin-amd64.tar.gz": "a64c28c27a4a4e88c3b8cf137e0134096a30983701d462b048f013b42c9d8d40",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.7/ftl-0.185.7.linux-amd64.tar.gz": "aad48534f732b696f2036eb807795adb6f226b3003ed44cdcee506630eef0c92",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.8/ftl-0.185.8.darwin-arm64.tar.gz": "9de5882af2cca72f49d975afd1d95370fae557efe9bd254655f59cab309b2be3",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.8/ftl-0.185.8.darwin-amd64.tar.gz": "f8ab318b44e695e630289fdaef699173aed4512e0c1dc8108fd3c82ad891afae",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.8/ftl-0.185.8.linux-amd64.tar.gz": "1cef33d68104528c041b8d543981be901758e59b40e21058bacd7e929023c51b",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.9/ftl-0.185.9.darwin-amd64.tar.gz": "95e032de1ca4188643523116eed83f733f63b16fbd3921f7cbea5fa068b57e26",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.9/ftl-0.185.9.linux-amd64.tar.gz": "e929f18c1f9feb54a3b5e6494eb396f0725bffd350a6092965935e0c0eef63a8",
"https://github.com/TBD54566975/ftl/releases/download/v0.185.9/ftl-0.185.9.darwin-arm64.tar.gz": "12b44a4df49b442dbe5a9b0bbd87fdc1f9475660714f467fbd6fc1d05f1af888",
"https://github.com/TBD54566975/ftl/releases/download/v0.186.0/ftl-0.186.0.darwin-arm64.tar.gz": "df106b7856e134e57a1d814a06458db99d7294e2e0feacfbe6264c66ff9f50fc",
"https://github.com/TBD54566975/ftl/releases/download/v0.186.0/ftl-0.186.0.darwin-amd64.tar.gz": "e4b819dff369b9d2e3bc1e2481a94060202d883c54f8448711d4beb03dd37f07",
"https://github.com/TBD54566975/ftl/releases/download/v0.186.0/ftl-0.186.0.linux-amd64.tar.gz": "c0bc38df126a78470f8156c3d6ea8bc54e35b16a922e08d2d5e2f4630de51bdc",
"https://github.com/TBD54566975/ftl/releases/download/v0.186.1/ftl-0.186.1.linux-amd64.tar.gz": "9552c29085d65d9180f8c33780e7164f3cd3eaed7dc94f9f830d3e1fc35875f9",
"https://github.com/TBD54566975/ftl/releases/download/v0.186.1/ftl-0.186.1.darwin-arm64.tar.gz": "b82f154c10f8eb9b9d5a5c61764ebaa963165649aa1d0e352913c3edb81a368b",
"https://github.com/TBD54566975/ftl/releases/download/v0.186.1/ftl-0.186.1.darwin-amd64.tar.gz": "2770cda3dca85bb5ecdc67181db704f62af13b94ab46f9ba2cf6898a9c640f82",
"https://github.com/TBD54566975/ftl/releases/download/v0.187.0/ftl-0.187.0.darwin-arm64.tar.gz": "446411b9aee37834cb9622451843447d0f2114d1564841275dd9df574651aedf",
"https://github.com/TBD54566975/ftl/releases/download/v0.187.0/ftl-0.187.0.darwin-amd64.tar.gz": "d3161a0ac35988650727b239f08ec3088e5e5246e3c87a2bba494ecc18072595",
"https://github.com/TBD54566975/ftl/releases/download/v0.187.0/ftl-0.187.0.linux-amd64.tar.gz": "1f42ccd86d6e9ced8eeb31f6149991223fe68c2ca771b38f3de53c50b0821c8b",
"https://github.com/TBD54566975/ftl/releases/download/v0.188.0/ftl-0.188.0.darwin-arm64.tar.gz": "222e87753610919952c61a2215de5c4189f1d8b05c2ea96edb887ebb2bb129ec",
"https://github.com/TBD54566975/ftl/releases/download/v0.188.0/ftl-0.188.0.darwin-amd64.tar.gz": "b71c14b335aa4ce81e7ca485971eb676f8ed4ebe91f4b0c3a61147b534462bd0",
"https://github.com/TBD54566975/ftl/releases/download/v0.188.0/ftl-0.188.0.linux-amd64.tar.gz": "359a741d489a89ec9ec3398c6ad0ce184e6cfda39b5b1a89aef433a894a9d3b8",
"https://github.com/TBD54566975/ftl/releases/download/v0.188.1/ftl-0.188.1.linux-amd64.tar.gz": "a79504ed87ee92667aba0039aff661dc073bde3e2ed99a8c908422c16a4e1d80",
"https://github.com/TBD54566975/ftl/releases/download/v0.188.1/ftl-0.188.1.darwin-amd64.tar.gz": "9aea05f18422c44670e84abc7f1a6b24670a96dcd250be418ac4bcaca3b6d3c6",
"https://github.com/TBD54566975/ftl/releases/download/v0.188.1/ftl-0.188.1.darwin-arm64.tar.gz": "e29e333aea5b65392d6933c76ba3e546f1448445ad2ad6639b218a5965466da4",
"https://github.com/TBD54566975/ftl/releases/download/v0.189.0/ftl-0.189.0.darwin-amd64.tar.gz": "2cd534298d089cd7cfa5182c1d5b698cf676345226045f41432ca1002d6f34f7",
"https://github.com/TBD54566975/ftl/releases/download/v0.189.0/ftl-0.189.0.darwin-arm64.tar.gz": "0054b93f0a19ff8bf613f421ea0eeec7886e6420df83f18db2d01d2066ee5c79",
"https://github.com/TBD54566975/ftl/releases/download/v0.189.0/ftl-0.189.0.linux-amd64.tar.gz": "d407a972bd8d5532ddf21a81c914e6de665f76771a976a41ba09dc39ded58a52",
"https://github.com/TBD54566975/ftl/releases/download/v0.190.0/ftl-0.190.0.linux-amd64.tar.gz": "46abb4824d878fe855314cc10def14a8dd4591ef4403917f3cc5901722ce8fb0",