-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhook_v2.json
More file actions
1274 lines (1274 loc) · 61.6 KB
/
hook_v2.json
File metadata and controls
1274 lines (1274 loc) · 61.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"df": 1695011268,
"checksum": 1341628815,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.0/hook_0.1.0.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.10_classic_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1695008478,
"checksum": 2167978200,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.0/hook_0.1.0.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.10_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1695006380,
"checksum": 3986383368,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.0/hook_0.1.0.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.10_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1408469667,
"checksum": 2235292304,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.0/hook_0.1.0.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.10_classic_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 2153814425,
"checksum": 3749404198,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.0/hook_0.1.0.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.10_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1696135234,
"checksum": 3788791124,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.1/hook_0.1.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.11_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1696136250,
"checksum": 2438894445,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.1/hook_0.1.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.11_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1696138628,
"checksum": 206332128,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.1/hook_0.1.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.11_classic_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 26452769,
"checksum": 471048772,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.1/hook_0.1.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.11_classic_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 3379072297,
"checksum": 3587085189,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.1/hook_0.1.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.11_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1828862929,
"checksum": 342235316,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.1/hook_0.1.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.11_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1709713517,
"checksum": 2154464670,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.12_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1709717368,
"checksum": 2639829164,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.12_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1709719983,
"checksum": 3307932668,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.12_classic_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 768338988,
"checksum": 3824627430,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.12_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1394744997,
"checksum": 652311286,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.12_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 445643784,
"checksum": 1643163062,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.12_classic_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1713726302,
"checksum": 757258397,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.13_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1713730104,
"checksum": 2636431967,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.13_classic_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1571398539,
"checksum": 2177505249,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.13_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1154905022,
"checksum": 1703738665,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.13_classic_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1713728445,
"checksum": 581797592,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.13_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 323613002,
"checksum": 1392304140,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.13_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1725464066,
"checksum": 2167059903,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.14_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 2840442142,
"checksum": 3311305878,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.14_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1725458134,
"checksum": 188912792,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.14_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1477479480,
"checksum": 2850629973,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.14_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1725459945,
"checksum": 665854231,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.14_classic_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 4097662057,
"checksum": 1858146535,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.14_classic_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1733940061,
"checksum": 3541772994,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.15_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1733947560,
"checksum": 1019258372,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.15_classic_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 3065067904,
"checksum": 200598564,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.15_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 4034496715,
"checksum": 2064621230,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.15_classic_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1733942734,
"checksum": 3932069538,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.15_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 4291452751,
"checksum": 2153346149,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.1.3/hook_0.1.3.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/50.15_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1737553817,
"checksum": 2789289743,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.02_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 2956064619,
"checksum": 1096219689,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.02_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 560768974,
"checksum": 1481541895,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.02_classic_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1737558669,
"checksum": 2877370647,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.02_classic_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 395516615,
"checksum": 3094956067,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.02_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1733942734,
"checksum": 3007799500,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.02_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1740796815,
"checksum": 27805634,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.01_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1737455006,
"checksum": 3520719169,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.01_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 2733035973,
"checksum": 3523893695,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.03_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1737822220,
"checksum": 1421080120,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.03_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 3087478564,
"checksum": 2355099640,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.03_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1737827645,
"checksum": 2323813962,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.03_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1737990858,
"checksum": 840886870,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.04_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 931762984,
"checksum": 371516949,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.04_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1739120267,
"checksum": 3886609650,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.05_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 588606987,
"checksum": 611703390,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.05_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1739125170,
"checksum": 2932820584,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.05_classic_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 3425162041,
"checksum": 3294971928,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.05_classic_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 768668147,
"checksum": 1936708519,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.05_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1739123412,
"checksum": 1743465770,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.05_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 3977824944,
"checksum": 4048608475,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.06_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1740483785,
"checksum": 3706045423,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.06_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 2882289984,
"checksum": 32559450,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.06_classic_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1740487890,
"checksum": 60050692,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.06_classic_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 170125547,
"checksum": 3192571794,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.06_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1740485983,
"checksum": 913024359,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.06_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 4280812258,
"checksum": 3397510842,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.07_classic_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1741623156,
"checksum": 3062459071,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.07_classic_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 726612865,
"checksum": 2810640455,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.07_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1741620776,
"checksum": 799197228,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.07_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1000982670,
"checksum": 1104803937,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.07_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1741618673,
"checksum": 3415623764,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.07_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 4201311109,
"checksum": 3322509731,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.08_classic_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1741858890,
"checksum": 3959715573,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.08_classic_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 294449408,
"checksum": 3422958975,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.08_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1741857081,
"checksum": 3469967077,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.08_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 802066501,
"checksum": 2777599986,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.08_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1741854976,
"checksum": 92477895,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.08_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 66920544,
"checksum": 2730298865,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.10_itchio_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1743677608,
"checksum": 1124070631,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.10_itchio_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 20434514,
"checksum": 1466385600,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.10_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1743674585,
"checksum": 3568306233,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.10_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1359699606,
"checksum": 3619533509,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.10_classic_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1743680313,
"checksum": 2216859895,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.10_classic_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 3960651951,
"checksum": 1951246371,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.11_other_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1745168349,
"checksum": 3496800675,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.11_other_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1129244454,
"checksum": 3617805088,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.11_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1745170253,
"checksum": 603841048,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.11_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 995831553,
"checksum": 1622581706,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.12_other_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1750927255,
"checksum": 2007152055,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.12_other_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 2465140022,
"checksum": 2814881751,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.12_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1750925751,
"checksum": 3808696940,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.12_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 946496091,
"checksum": 4215694969,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.13_other_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1750975758,
"checksum": 855703366,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.13_other_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 421268077,
"checksum": 4059530838,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.13_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1750977960,
"checksum": 1800410041,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/51.13_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1690187460,
"checksum": 3219923631,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.01_other_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1753088942,
"checksum": 545483178,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.01_other_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 2562047900,
"checksum": 2106597675,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.01_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1753084949,
"checksum": 1195046914,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.01_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 4063509578,
"checksum": 2896230392,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.02_other_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1753348076,
"checksum": 1172639137,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.02_other_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 760302936,
"checksum": 2553296960,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.02_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1753344832,
"checksum": 3083008780,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.02_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 4186576355,
"checksum": 2405650415,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.03_other_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1754570374,
"checksum": 2312861944,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.03_other_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 854905105,
"checksum": 3894339843,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.03_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1754568189,
"checksum": 2633590945,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.03_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 590041326,
"checksum": 1964373116,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.04_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1756397717,
"checksum": 72616355,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.04_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 851631601,
"checksum": 335840800,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.04_other_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1756400607,
"checksum": 2308446922,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.04_other_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 2355443719,
"checksum": 1367409062,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.05_other_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1758876495,
"checksum": 3466002310,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.05_other_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 2747361853,
"checksum": 2403145723,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.05_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1758874855,
"checksum": 218681581,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/52.05_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1745475494,
"checksum": 4221990218,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.01_other_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1762075834,
"checksum": 2292442630,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.01_other_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 4115339042,
"checksum": 4209530616,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.01_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1762041563,
"checksum": 3652655587,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.01_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 2430684929,
"checksum": 1962942411,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.02_other_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1762269077,
"checksum": 864506842,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.02_other_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 1644411201,
"checksum": 3724159781,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.02_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1762266032,
"checksum": 1933538876,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.02_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 532396091,
"checksum": 4190796235,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.03_other_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1762776039,
"checksum": 30768810,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.03_other_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 2736071360,
"checksum": 4089386913,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.03_steam_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1762772974,
"checksum": 4032717292,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.03_steam_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"
},
{
"df": 2204521699,
"checksum": 1894338852,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.so",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.04_other_linux64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/libdfhooks.so"
},
{
"df": 1763408733,
"checksum": 1687381866,
"lib": "https://dfint.github.io/update-data/store/libs/hook/0.2.1/hook_0.2.1.dll",
"config": "https://dfint.github.io/update-data/store/config.toml",
"offsets": "https://dfint.github.io/update-data/store/offsets/53.04_other_win64.toml",
"dfhooks": "https://dfint.github.io/update-data/store/libs/dfhooks/v1/dfhooks.dll"