forked from ProdriveTechnologies/bazel-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepositories.bzl
5699 lines (5692 loc) · 664 KB
/
repositories.bzl
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
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
_TEXLIVE_VERSION = "20190410"
_TEXLIVE_MODULAR_PACKAGES_BIN = [
("bin/aarch64-linux", "f309c6e75bc130c92f06cf3eb42a9a4fe3302cf9a83ad532bc76b4322bc82157"),
("bin/amd64-freebsd", "5ee8c1d5100082251e72eee7de444eab817e9478dd94c8c1325aed5257cdc746"),
("bin/amd64-netbsd", "98568233c2c059a1b24bafe0decf648fe27fc10e75f85852e26515a3daff5aba"),
("bin/armhf-linux", "a987114ba0e977ecda63383f7397b43cce091a1b3815625637fd652a3ab0fd12"),
("bin/i386-cygwin", "d08f53baedaab7a7e845b4d15f16be9be59c375bd61e18e280432127935a6ee1"),
("bin/i386-freebsd", "5f8c7a4d93327284c8c2526117a82d7279d21f59823aac3afd4b099bc5c94dae"),
("bin/i386-linux", "898d951104a9452ba20c23f63329936fdab6acbab70e2e05c8813e24771dffd0"),
("bin/i386-netbsd", "916be51b6ce8bf13585e5a22b9698ae69c7c09b4f65d3244bf764ee8044b7c7a"),
("bin/i386-solaris", "be325b458102aa22dbc2791d6834ea7f9a3bbae9c82fbf1d9e6e70190b0e20f6"),
("bin/win32", "76b0e7a24c7a20bc5b28c9aa3c52268cd0adcf8679fe6ce0b5c7dcbed449f92f"),
("bin/x86_64-cygwin", "20aafd64f2c01d1f81fefc4400018c26c0b9d23b1b1b3b89c6210d05da40da9a"),
("bin/x86_64-darwin", "5abf53ef399433f76ede3540c95bdf17cae909797cde64738a734fdfecf9ae0d"),
("bin/x86_64-darwinlegacy", "775e4fe66b0e99280b1937eea88c81d9fa2ccb57a40e691440e5b2c0d57ccf2c"),
("bin/x86_64-linux", "4d3b521a247a06a558f6b4642c740cc821250831b588dab6a51266c56f4f6f53"),
("bin/x86_64-linuxmusl", "003926397990d0e0bcf580654bae43aeddeac1c134f0baa6c1a9f4750686a7a8"),
("bin/x86_64-solaris", "4a18200eebc56f30c298bf5b2fbc23a1fd2e56ab3ce85c245e07a42fa4bad2ea"),
]
_TEXLIVE_MODULAR_PACKAGES_OTHER = [
("extra/tlpkg/TeXLive", "9d97cda1dafae272f129f837ed7d81b35b022c35afa8ba18c3c750576031770d", []),
("texmf/texmf-dist/asymptote", "374aac56d24b63af60857f8ee6c70cb4cebe729bebb1789e5427558f2b8771c5", []),
("texmf/texmf-dist/bibtex/bib/IEEEtran", "9f4c31f2225682f1e9d6b0c4b5a446f6df2e8c56f6d3bf065b001c9dac823f58", []),
("texmf/texmf-dist/bibtex/bib/abntex2", "5f7b5a40a9c2b74a5ec4119ac724113c328ab5bd0a7c93f647636800d7d7e238", []),
("texmf/texmf-dist/bibtex/bib/abstyles", "089e1293aa87e1bff1cbcb50fc0c706ba182ca2743ebccc808df9e82646dea54", []),
("texmf/texmf-dist/bibtex/bib/amsrefs", "b3090b39ce0f5a2c63b754e16ee3f0549b55454504227fe9ef2bfbe6fb856ff4", []),
("texmf/texmf-dist/bibtex/bib/archaeologie", "cf21451c1c98ee501814506cb7984c3818600ed72a3a10be4a4071eb951cd433", []),
("texmf/texmf-dist/bibtex/bib/attachfile", "95532846b59a8735d64d79fa832978aae2c3fe2ced198c13f2e09783db719746", []),
("texmf/texmf-dist/bibtex/bib/base", "1f35427921b71ed492c243de0cb4720b8a1952900a7d89aedd7b9da6c01ec91c", []),
("texmf/texmf-dist/bibtex/bib/beebe", "48de1f33ea308fd9966635d4469b41b2947eabd0a9281af84f3014309785db3d", []),
("texmf/texmf-dist/bibtex/bib/biblatex/biblatex", "6e17e59b617f19004ac5b6553de0773dfd1a971dd09cf15c4d2bc7061d4e4075", []),
("texmf/texmf-dist/bibtex/bib/cnltx", "36e0735afefa562f47872ed129c0e47454fd50c11a07a5ce9b4189c510b0bc5b", []),
("texmf/texmf-dist/bibtex/bib/directory", "db53cb9053d30148c22747032a93efc479b2af76f469e8ee82681a2a988d5863", []),
("texmf/texmf-dist/bibtex/bib/dk-bib", "3a2a6dc984cb95ead00b492846b430476344858b416efd48d895890e4c0f38ac", []),
("texmf/texmf-dist/bibtex/bib/frankenstein", "2f84b27ae89feb8a55d78fd03fd5a3a1fc2ee269000c601a51781f17ca448ba8", []),
("texmf/texmf-dist/bibtex/bib/gloss", "25cebf1517d28ecb234e3db7751b1c567a9e807f365181714c3fc8acce0bd32f", []),
("texmf/texmf-dist/bibtex/bib/glossaries-extra", "27fbc8c7353d6182f4947b57889cdfba714c53b04c48f846a12f115620c79292", []),
("texmf/texmf-dist/bibtex/bib/gustlib", "70ca1b2ff65b352f1db96078a91c955fb46908d7430bb82cf910042b83983aec", []),
("texmf/texmf-dist/bibtex/bib/harvard", "9b6a60feaec7d821811a97a0a2a36a0b33fb0bf13d455696e819981d86a653bd", []),
("texmf/texmf-dist/bibtex/bib/jurabib", "439ad93b24cb3a49d6236bb4c35a67170694924eccd82bc5e7b4cd4e22fc8a86", []),
("texmf/texmf-dist/bibtex/bib/lsc", "e2d5f5e24e38e817332c7fff80fd086041cbbdeb1df524f1548da15e7500c5da", []),
("texmf/texmf-dist/bibtex/bib/msc", "b1f97b5b03f451a2287bfad481fdcb40897af2ed194e72c5906e3f7ed4be4b13", []),
("texmf/texmf-dist/bibtex/bib/nostarch", "93018b7352d4a1bf0eb01c55a5c4db2764cc8e9979a0b339f5d85879ffb43462", []),
("texmf/texmf-dist/bibtex/bib/oberdiek", "7f74377dfe95e46ff82b5294715507a6e2e50c0264dab21c04b2bd05ad8b4ca2", []),
("texmf/texmf-dist/bibtex/bib/revtex4", "5133d1e69ede3a436ef526e8c25fba6eb9066daa391160034abfcecd3daed7b0", []),
("texmf/texmf-dist/bibtex/bib/spie", "e10313e04b8c58955f4bbdd72818f8994c987eee0e7cdac1e22e33a803fd33ad", []),
("texmf/texmf-dist/bibtex/bst/IEEEtran", "1ea03428ba8b85bb185ebe14f84c9830d06e16bddbeb02a92f62025004878df0", []),
("texmf/texmf-dist/bibtex/bst/aastex", "a88abbb2900b7d818b40103615b3992e9c7beb698eb587dfffc46bce113d68d1", []),
("texmf/texmf-dist/bibtex/bst/abntex2", "61b4bf91be48b93c90e43c552755e2c58ff873f9dcc97857b6547953113de6e6", []),
("texmf/texmf-dist/bibtex/bst/abstyles", "8969f5e24f46751efb6cb5e9d695a0f33c8ed87cbaaaf6c3d1ed306c49dee1f1", []),
("texmf/texmf-dist/bibtex/bst/achemso", "8caf098659ab6f40ea24818e6b877d075c599f324f17e6d73942fc3cec733869", []),
("texmf/texmf-dist/bibtex/bst/acmart", "2208dd2521053f0225f3fb8661dbf2b11291f339bc92c5eac1bc3527dd723e60", []),
("texmf/texmf-dist/bibtex/bst/adfathesis", "05734b42a9dbab9a8ed0b902fe02a4f6c8a43b5c98b85a2bedb65cca7107f3f3", []),
("texmf/texmf-dist/bibtex/bst/adrconv", "7c8e22614ba1747fd073df3d6fef82b47a7d340ced846bdd40e029a4cf88cb59", []),
("texmf/texmf-dist/bibtex/bst/afthesis", "b7f552cc5e44f05c7fdf7069b2c174332688f9279dcd7a91912d283f19cc1695", []),
("texmf/texmf-dist/bibtex/bst/aguplus", "ae9a3d3860082f16aac44e2c1a58184212fff673cbdc225af32c234a83a2803c", []),
("texmf/texmf-dist/bibtex/bst/aiaa", "fc32c8608667a28f54d27ab2aded849204e7fcc7f0f12303759cf684c4c446f8", []),
("texmf/texmf-dist/bibtex/bst/aichej", "6b2886a5ea5b82d4c4143b7aaed7038b574eac91591f2a0c6de3628d3cc38db4", []),
("texmf/texmf-dist/bibtex/bst/ajl", "854afcf68492e294fa3978d9533891d3f523bdb7146392733ee75fe3c1975668", []),
("texmf/texmf-dist/bibtex/bst/alpha-persian", "cf337790800b1290580d437f68773a3530b85ae253016364f8f7f27125622f25", []),
("texmf/texmf-dist/bibtex/bst/ametsoc", "bbe44b224b4d995b7de6ccfd710721476e24e52fb56c3a01e65f835fdab2e2eb", []),
("texmf/texmf-dist/bibtex/bst/amscls", "756efca6b6cd2a282d34dc3f893a8c1495e1701563510b9382739f56895e4c5b", []),
("texmf/texmf-dist/bibtex/bst/amsrefs", "489f228ef2e122a87077fac8df0c15da32eebcdea1f09472c6c194ddad28446e", []),
("texmf/texmf-dist/bibtex/bst/aomart", "8e5b0edc0c143e5859a975eab1ece54bb64db8eb89bf00d5539b49a851f311dc", []),
("texmf/texmf-dist/bibtex/bst/apacite", "61f7dfe7ffb8596b17e526b60930d045077fe8043791be539a0ecd43b90a9edc", []),
("texmf/texmf-dist/bibtex/bst/apalike-german", "d5709e45029779517d56e03247d1e3a0214126e715fd78de9bce1c295758708b", []),
("texmf/texmf-dist/bibtex/bst/apalike2", "691da8686f10f8e81de55f2f7d353ed86e1049ef75194fb74b6f3a03b531a400", []),
("texmf/texmf-dist/bibtex/bst/asaetr", "d80cad0afb0b659442294548ab466e5f69f70f15bb8fcf4a4255e0079fd3d1cb", []),
("texmf/texmf-dist/bibtex/bst/ascelike", "5ad0a50288d6b2632982fd0e4abb21f5def4bc0f6ff6ba87b5e4f586cc30ae3a", []),
("texmf/texmf-dist/bibtex/bst/asmeconf", "66ab5cc5fbf94e953fecfd0b8c7028e003d3dbe2188829ad1a3c89d75d9e1ecc", []),
("texmf/texmf-dist/bibtex/bst/babelbib", "8ddd1259a5aac96fe9a549a4807d3bf548f2d3abc8a7bec5368c2fa0b507e33d", []),
("texmf/texmf-dist/bibtex/bst/base", "3099868a10fdc00b8e66045098325ce330bf85c21b64ae6fe99184f7d0b38268", []),
("texmf/texmf-dist/bibtex/bst/bath-bst", "57c8c6f0d01dcdfa1aa8b631e10a125acfb0415e9a655eee7538ac3c8eb3e8ce", []),
("texmf/texmf-dist/bibtex/bst/beebe", "a8767c0a9274c0900832ed8c856267d224e89cb2f03346adbc6d35be620a633c", []),
("texmf/texmf-dist/bibtex/bst/beilstein", "73ff1fd4a2e50a7b445c9f45a1b541087a7c6f3bf9a22b210b1f7679ee36c920", []),
("texmf/texmf-dist/bibtex/bst/besjournals", "f3c3cbe4bfab8f9b1ef1e67c79db884f23c9455dbc7f0c652eeaddb7f000cfad", []),
("texmf/texmf-dist/bibtex/bst/bestpapers", "1992686d76bac63cce73f0722b5dd2ae3ae0944d7dc58235319f0bda60c2fedf", []),
("texmf/texmf-dist/bibtex/bst/bgteubner", "f104d1ba3362a6d0d298e13fc40c94d0f3523aef5e82742f1186fcf7bb564397", []),
("texmf/texmf-dist/bibtex/bst/bib-fr", "f26f266b4436d304beea0872482a54e0da0e2bcfd5168e8e4b09d500e2c3c4b0", []),
("texmf/texmf-dist/bibtex/bst/bibexport", "7a242201ba85c74477fc868a39ac57ca8c9a011d1f395a9ff3054469da437993", []),
("texmf/texmf-dist/bibtex/bst/bibhtml", "81c360e6b1f73aa8aebc988dd8d31ffbf84ab9b4d21bcddf238c60c9e7852da2", []),
("texmf/texmf-dist/bibtex/bst/biblatex", "1981b46b8885a8a5d672b07fae6c0d77931fb20770366f779cedb1f5adf3ab2c", []),
("texmf/texmf-dist/bibtex/bst/biolett-bst", "8be9689706c301731a8e8a5f28e3fe6a07df235d8361d9d82efef278cd76c606", []),
("texmf/texmf-dist/bibtex/bst/bookdb", "bf1cb04d215d535bd5f2b81cfcf9c409f6044b67d08cfeacd622e614dd9d7e13", []),
("texmf/texmf-dist/bibtex/bst/cascadilla", "9fceb885561facaa07c72db9fc0ac983e040ab5e4a720df069019ac09ce40c10", []),
("texmf/texmf-dist/bibtex/bst/cell", "c3948556211f571944ec3e9d3dc39337df49d7a9d60c3573a932c95eac0e612d", []),
("texmf/texmf-dist/bibtex/bst/chem-journal", "e5c1056a94301a893fd13facfdcf25f01ac5b168cf125719dd234789e6a4bf51", []),
("texmf/texmf-dist/bibtex/bst/chembst", "9743e0106a3a4e546c5400457078f1c3549b16ac9ddd269585bc3d8109a462e1", []),
("texmf/texmf-dist/bibtex/bst/chet", "93095cd647502d0adb79aac24b517306bdf32ca1ea5b70dc8659ba1e122d2439", []),
("texmf/texmf-dist/bibtex/bst/chicago-annote", "315c1e22ee9cd76e39eebc05e6854e7983453568839708732d3b7225515a58eb", []),
("texmf/texmf-dist/bibtex/bst/chicago", "327546a6979aff9420f69768365b3739484cb448fb14d97814e16ccb4cf849b5", []),
("texmf/texmf-dist/bibtex/bst/chscite", "1295321008255d80b3682bad7f566b78b21d6f6887449c36e6509b2b739994c0", []),
("texmf/texmf-dist/bibtex/bst/cje", "e9e3fb500b8ce5d76a9c1c311432286965323fc0d9da64df74cdff73fe5dd0f5", []),
("texmf/texmf-dist/bibtex/bst/cmpj", "ba0928d359f098472b9512ada2d739244d7fd98ab53a13cd4cfbceed8107229b", []),
("texmf/texmf-dist/bibtex/bst/cnbwp", "2b6947e68168a0bf2dae7edab879ac1c863cdf172807a1ed8e9153e1c4fc9dce", []),
("texmf/texmf-dist/bibtex/bst/computational-complexity", "18e71892f6f2084fdd3c0a1bb51848553f61f8defe6c9891ada2a47fa93a052b", []),
("texmf/texmf-dist/bibtex/bst/confproc", "7936e287cc9af9393306bae6a67af423dcb284484119fb12236108f71fd24067", []),
("texmf/texmf-dist/bibtex/bst/context/mkii", "c308e6c70c8e849d60951e76ff7eb27c4722f514cd919f4207f39fc25395dd20", []),
("texmf/texmf-dist/bibtex/bst/cquthesis", "b5a21b84c88c978c45b05be961a41e7145fdab1e2f896e42313b15509cbd2e8e", []),
("texmf/texmf-dist/bibtex/bst/datatool", "9a040f72730a660dfa6bf1592d84de492d37fbb225f115617d64907ac086f2d2", []),
("texmf/texmf-dist/bibtex/bst/din1505", "012c97d15e14605414330928bc7a9d1e16f071d42401e6872527527ec9c4c52a", []),
("texmf/texmf-dist/bibtex/bst/dinat", "8406f057a276db3153c7fcf96c7e9dd9427f46697b53b0bdccd53173f44e3f9b", []),
("texmf/texmf-dist/bibtex/bst/directory", "c3aabbc2269f1218a05521d32f97cf5e59139c206595354b64a569dd069fe208", []),
("texmf/texmf-dist/bibtex/bst/dk-bib", "e0977afc6ba4c34df67b77742c4f7fa4cb9617751bf659b8b944eb77aa57a648", []),
("texmf/texmf-dist/bibtex/bst/dlfltxb", "4cbb245eeea3ca7b34980b162f6eb5851b20f684b8766433634fcb6d00a46563", []),
("texmf/texmf-dist/bibtex/bst/dvdcoll", "10935359210058e584e355fc484c01271efad6e5bff0d1ff6ee3110709fe4700", []),
("texmf/texmf-dist/bibtex/bst/econ-bst", "ef348c73e25f2b157e2ce75b4d14d117161b967008fac8e7eac31be18578cccc", []),
("texmf/texmf-dist/bibtex/bst/economic", "43085ca93e7fcaeb2e4e84ca2f936a3c993826400732b3e5f0e4e9b0d0112fbe", []),
("texmf/texmf-dist/bibtex/bst/els-cas-templates", "51f7feb091bf8eca1e254387d0bbe16b0705fa186f25420a588daf9833b6ef7d", []),
("texmf/texmf-dist/bibtex/bst/elsarticle", "7a1b0dbcb9bde9040aad845be11f691419f01ab086a1f9a7814218f32e18198d", []),
("texmf/texmf-dist/bibtex/bst/fbs", "858202b325b9bff59c454681a2d82fa1331d892dcfea58d9d4e9bdbced528614", []),
("texmf/texmf-dist/bibtex/bst/fcavtex", "e30df28b22e4445afd96cd167ea368c8d38af25c789650576da97816e9d7fa55", []),
("texmf/texmf-dist/bibtex/bst/figbib", "1929a65ecac5398334a5afbae520e184a9bf133c3d8c8f45dbd11bfcc36630ef", []),
("texmf/texmf-dist/bibtex/bst/finbib", "c2a8491635de5cc9f73f102dbb29205914e504c72138190a27b639026bf170e5", []),
("texmf/texmf-dist/bibtex/bst/francais-bst", "c88c608d17b4b556c57ead0a12b5f17d7a0ba79b48e2683589dddb464ac18cdc", []),
("texmf/texmf-dist/bibtex/bst/frankenstein", "f3f7bd008aa8c3b0458c56ff90724065c194827f35ff882e5fcb88131e6e713e", []),
("texmf/texmf-dist/bibtex/bst/gammas", "0c99044a5618987f75bcc883c891b0620f98b380884556e077e1c15c7748dd08", []),
("texmf/texmf-dist/bibtex/bst/gatech-thesis", "26bee6f4c367d1f3734147904d10879e30f128a882db83c6d7b1992029ad2166", []),
("texmf/texmf-dist/bibtex/bst/gbt7714", "bc6a2f2dd17ddadd5bac0170821d3c1b5510944edae99d810751236f273b18ac", []),
("texmf/texmf-dist/bibtex/bst/germbib", "3c6c2bf14b09ca0f732ccee2986b967fc3e12b5be9179e93ed7fcc1d3a9bd150", []),
("texmf/texmf-dist/bibtex/bst/gloss", "eedc353084a76127b81c16595656785b83253a564b70758dec694bf774ce0e2e", []),
("texmf/texmf-dist/bibtex/bst/gost", "fd7296d30b18d0ea7d3a88cc12a9b2c5c21ddd90c25021f2e06e7d9a0aab8a85", []),
("texmf/texmf-dist/bibtex/bst/gustlib", "793df5ab25f38d171a8282fa35d18cdd3faba427f2ba9264a409508967e7b53a", []),
("texmf/texmf-dist/bibtex/bst/harvard", "01ffa26586f7c8d37f65adb42b528276db716141fb693dd0ea27228bfc58d8b6", []),
("texmf/texmf-dist/bibtex/bst/hc", "1b558c821d74a1ef551bfceb88b5155df28d2bd50005bd98b8caf39f906e63fa", []),
("texmf/texmf-dist/bibtex/bst/hithesis", "9e0ea408d5c1aa83e30a9bbf32ae7b37a1359e8c7d1d84440d63171ebee6dba0", []),
("texmf/texmf-dist/bibtex/bst/hustthesis", "e1bacedb2a3f7cd2b140476ee0b532ab1ac21298c0e7434b5816c6eb3eceff7b", []),
("texmf/texmf-dist/bibtex/bst/ieeepes", "aecdb33bedae6a9f112fe12f44464a256565229438d60a697a19d812afb0e5e1", []),
("texmf/texmf-dist/bibtex/bst/ijmart", "420cee6fa09cfd05476ea64aaee51b2d7e6b3431f65c4c93ac6eabcac5f1b365", []),
("texmf/texmf-dist/bibtex/bst/ijqc", "cf82be0386503a08118a9a91b3f1ba40b35303a6ff5cc613f63d16fdfaa2fe28", []),
("texmf/texmf-dist/bibtex/bst/imac", "506492d389baf37687a4fe0b544ac931650465df3d1f474b5466a2ee1034bcb0", []),
("texmf/texmf-dist/bibtex/bst/index", "43b0a4c9c14434a28efaa71f27474e52a924b28fb0ff1791250432889dda500e", []),
("texmf/texmf-dist/bibtex/bst/inlinebib", "4bedabc9007a203cf570f8f3845f2a5c1b494b6e03bf01a16d00063554a26682", []),
("texmf/texmf-dist/bibtex/bst/iopart-num", "8a2b4158539b40a849993577ed631c20ac7936ef04b1be05b1fcb91d488131c9", []),
("texmf/texmf-dist/bibtex/bst/jneurosci", "d9a20d417862414a3e94c86f4284422f84edce19f5410ae3c25e8fcf7a41b441", []),
("texmf/texmf-dist/bibtex/bst/jurabib", "66abedbb0d9a28e6925c9699f94fdacd793f1f762f79a6fbab4a3f814ce67b0a", []),
("texmf/texmf-dist/bibtex/bst/jurarsp", "7c32d25f853c3fafdb55472f047530825e018a8f7d6709f04d6e76a400f1402b", []),
("texmf/texmf-dist/bibtex/bst/kluwer", "fb071bb4591dfff34deda323cdb0f01f4b08a8a0ec87d43947d6ac43b3d8896e", []),
("texmf/texmf-dist/bibtex/bst/ksfh_nat", "b4d1e9e114f166cdcdc4459cbf7be39f8010761b4ea0f38895ffb6b126e38449", []),
("texmf/texmf-dist/bibtex/bst/lion-msc", "8b8b5799f5bcfe8a50c64caa86c9db8f1a487b26194eba4cda0d49add7a4e440", []),
("texmf/texmf-dist/bibtex/bst/listbib", "7559328218886182b433da1b38ad17dae2d187c42e75a519d32a6d778ba27a71", []),
("texmf/texmf-dist/bibtex/bst/lni", "408a1dd19833cc3943aad678579e105c2e07edbdefb6b4445d90eab2f3e334fc", []),
("texmf/texmf-dist/bibtex/bst/mciteplus", "3491276386f12dbfde18f590a3c42b21749d36d86b13f7d7ac315dfae5d8f404", []),
("texmf/texmf-dist/bibtex/bst/mnras", "8f72485e7ae5aef9e87e6b6c8ef0afecbf630af7fd358d674905f30807d31648", []),
("texmf/texmf-dist/bibtex/bst/mslapa", "0c83cdc39f1636def4de8fbc32865996a0595382742a5942ba6d84e86198e75c", []),
("texmf/texmf-dist/bibtex/bst/multibib", "04a8a2b8252830f42564732c698d913ac1f86f8d396c7f23271fb3d1b59d0e30", []),
("texmf/texmf-dist/bibtex/bst/multibibliography", "a46c7b0eb86c170d48061031ddd277e97d9cad03ebb299e99a2258dd5172a6c9", []),
("texmf/texmf-dist/bibtex/bst/munich", "191cfae786cfed32fa2f4a2e810855208e67f566c812328fa42b073a5b42a001", []),
("texmf/texmf-dist/bibtex/bst/nar", "f7c441ce99ab3c65feae3e501b0fb24980d9f2837178c099161fe5a1950129b2", []),
("texmf/texmf-dist/bibtex/bst/natbib", "f3ca5ad791d72af27f113975114c588a5b9f73a0a157fb1e05f61d3b91bf8f29", []),
("texmf/texmf-dist/bibtex/bst/nature", "b7550978f03c68b555adbbb81725e527e60151805921d06edbe6713193460c13", []),
("texmf/texmf-dist/bibtex/bst/nddiss", "38a53eccdcf0a6e12f09f66c4a2fec981683811cd7913fea8d369dc128d94037", []),
("texmf/texmf-dist/bibtex/bst/nmbib", "19cd8e85effd5c87b621fa1c55d08c0e3cbcb508478e5e9deafef265f3788bc2", []),
("texmf/texmf-dist/bibtex/bst/notex-bst", "15693e9889fb0e7cf77bf7510828c011f796739c08267886fff642b8d89b392d", []),
("texmf/texmf-dist/bibtex/bst/opcit", "633f15a1039d266ac3e51ea3c738a460eef21c162a1fc471e97380c45f6314d7", []),
("texmf/texmf-dist/bibtex/bst/perception", "8c5e92d9dec79897bb1bbdcf31209eb5aae4dfe8933635efcee0f1cc803abe51", []),
("texmf/texmf-dist/bibtex/bst/persian-bib", "5a811ef97b3a19ab5f74ea805199743b33cd7fa71721b3c9cb7e7b366d2a357c", []),
("texmf/texmf-dist/bibtex/bst/phfnote", "555185c44d59602ab63c6d6fab8b84709234b1674ff39c34f9f9c63cbbfe7106", []),
("texmf/texmf-dist/bibtex/bst/pnas2009", "1ee5c5e4515e74a049b5dde5cd2be4132ac50b78652a730ad4908599b1b585e6", []),
("texmf/texmf-dist/bibtex/bst/przechlewski-book", "e9467df2dd6a1fe6553dab526194435d3da60baddc9c0624d476540764c32364", []),
("texmf/texmf-dist/bibtex/bst/resphilosophica", "eaae872561693fa4e29a8c9eec0677bb7bcc9fed9b8f6b042c6250767dfa70e4", []),
("texmf/texmf-dist/bibtex/bst/revtex", "f2645332ca16449093fff36d34172489dc7eb6d1c1ed9512064a8d869f7f8e85", []),
("texmf/texmf-dist/bibtex/bst/revtex4", "e29ccbab6d7d7c78642e773477d9e5cbd3944894ae33364b4386fb1a22946d88", []),
("texmf/texmf-dist/bibtex/bst/rsc", "1e5bc77f639695e6a852d017d0695c43eddd9bd70542492119cb7940334fb8d9", []),
("texmf/texmf-dist/bibtex/bst/sageep", "7d43a690a7883499fec7d3133ce7b81779d877360783c8b904bd3d0e3a63d662", []),
("texmf/texmf-dist/bibtex/bst/sapthesis", "e7179e0200ef72561beff9fdb727176230eecbf52c342c39df39d5933479f8df", []),
("texmf/texmf-dist/bibtex/bst/savetrees", "3bd89e9c440c7e8fb922cfab8ff6ec42a875880ba6717d290677586344029541", []),
("texmf/texmf-dist/bibtex/bst/seuthesis", "c8efd3778e392a37cdc305b4ee78647e354e700244bf4dc95a272bbfdfa9cca8", []),
("texmf/texmf-dist/bibtex/bst/seuthesix", "8674f5d2691fa1a53ba4ff77e33ac8901a7004e26a8b88a1d5980c19b98a0d68", []),
("texmf/texmf-dist/bibtex/bst/shipunov", "36826bf391087b51592e386bd1799f7248613cf070349b6b567b5ade8d3979db", []),
("texmf/texmf-dist/bibtex/bst/sort-by-letters", "9fb7a3860b32ac24c7df2f9177e0043678f2ff266dbda1fd1551a7ffe9bcd093", []),
("texmf/texmf-dist/bibtex/bst/spie", "94a2a478b9edddf8824946c8eec37cf26727b034185d712d49678a20f1c47256", []),
("texmf/texmf-dist/bibtex/bst/stellenbosch", "64422d7b8d7d30bdbe9eec00dd01fa4d05fc4d3dc59ce2abd9383dd1d793f7bc", []),
("texmf/texmf-dist/bibtex/bst/swebib", "0ca68e7f7921e9eeb7576fb1dbb96d2a0d089b9c6951054992bceb2e3f495da2", []),
("texmf/texmf-dist/bibtex/bst/texsis", "61671b5cd52cb2c2dbf37023a01bc7873bb66d2a11481d97ade731b6f27a79f1", []),
("texmf/texmf-dist/bibtex/bst/thuthesis", "e1be9cc734dd90fec5138d0f8f73ad16ecff87ba590bb92a823d84d7d2e909f4", []),
("texmf/texmf-dist/bibtex/bst/tufte-latex", "37f8ed8c443d7ce5ccceee7783d8f8e0d0bb3b17590e0dc0f83aabad47223bf5", []),
("texmf/texmf-dist/bibtex/bst/tugboat", "f0cd289d912f4995762b1454a01ccd94f475557816466434c403d51b606bf0ba", []),
("texmf/texmf-dist/bibtex/bst/udesoftec", "b7f121beb95cc6289896c41c576f7f4e5753cb58665b2723b58323eac71325a5", []),
("texmf/texmf-dist/bibtex/bst/uestcthesis", "3449beb88f906cc3805b80de2a8136a372ecd38cf997ab4966f9251eb885fc39", []),
("texmf/texmf-dist/bibtex/bst/unamthesis", "8ebd0f081b9e1ddb2a53df5a6a92ac7efd192fc2664d2c03302c2c478bde3fc3", []),
("texmf/texmf-dist/bibtex/bst/upmethodology", "b7303d4b9d81ec6b6284e0ce3952961c005be662b27b33cd560e085d86164e16", []),
("texmf/texmf-dist/bibtex/bst/urlbst", "86b31c36446338eed4b25548c61994ef3e92b5adfd56f11c965f267038f72ee4", []),
("texmf/texmf-dist/bibtex/bst/vak", "2b5c465b50987d4d918ab068957b9b600436d9003e0986ef9cee5f8d0cfdb4f7", []),
("texmf/texmf-dist/bibtex/bst/vancouver", "39e7d613ee73e85284b306537677ff59c4111c0b7a3abccf864cbcad5e16ec20", []),
("texmf/texmf-dist/bibtex/bst/zootaxa-bst", "ee94a67e36c2e70fd193dfada8444f572e3d2674df2937c8ed8a1bb6115a99b8", []),
("texmf/texmf-dist/bibtex/csf/base", "2b16afa1a931628aa9ec936b49661a137ed63ca21af92c1f6d9a510c46193e69", []),
("texmf/texmf-dist/bibtex/csf/dk-bib", "7b3a0a54b83f5e7f5dcd32a401b90b291d39bd264c6f5befc733379702c65777", []),
("texmf/texmf-dist/bibtex/csf/gost", "b4cec484f6b63ede670bfd17df73ba9527bc56aae93130a254c0d0106c694b6c", []),
("texmf/texmf-dist/bibtex/csf/persian-bib", "3e94910881096482b095dc51c71a41cf4e8081c0009ad44b2b2d2e2f8f48806e", []),
("texmf/texmf-dist/bibtex/csf/polish-csf", "ddcf88d4e5f7240dc4bec0efd85ee61fec14ee6f2b439cce6efb4b485ae491d3", []),
("texmf/texmf-dist/chktex", "4b1758a467022112dee72aeb78ace8f53c4fe8c191779928add26dcb24d88af4", []),
("texmf/texmf-dist/context/data/npp/context", "1e41125bf18c94182e77cbd070ab5234ef9f96c5aefbb9e8b5f862244c30acdf", []),
("texmf/texmf-dist/context/data/scite/context", "d80e3ab6897b5e60acd90c85de6b2307bf7492da8ac7c32ad7f3b86851bd793a", []),
("texmf/texmf-dist/context/data/texfont", "8124a6756c4eee981184a29e93a2389431c67f238c22fc1ab6dd0d137a71fc5c", []),
("texmf/texmf-dist/context/data/textadept/context", "11456aee876c850e54d095dfb128065e610a6a42f213f5b1730f687aeba76aeb", []),
("texmf/texmf-dist/context/data/texworks", "62e764d1d2f46fb70b46eabd25d995946826a091d67824494394ce13154b8aaf", []),
("texmf/texmf-dist/dvipdfmx", "11191c10fac8e54ece1994b98c80d72060e6bd3470226a0f766d9d01ff22526c", []),
("texmf/texmf-dist/dvips/arphic", "a58ec4a3a2d551715a2d4b9dcc7c18a7bc7c69a4a2fae7c35987273e1b9b56c5", []),
("texmf/texmf-dist/dvips/avantgar", "8169de498c040dbf4ef44ece31910f85115f00181a3fa7cda72c9a49f90afcd8", []),
("texmf/texmf-dist/dvips/base", "fb25efca0e27c686458bcbd8d23b9d40b9f42ab54b5129d032d9ec5d05273846", []),
("texmf/texmf-dist/dvips/bookman", "24b2c31beee5c4f6210ad2c76a5b9c09764c77ef1aee5559afd5e58b8768eefd", []),
("texmf/texmf-dist/dvips/brushscr", "2f774f015d91551d8cd1211b2e4f7a8984ec8bac0cf948e347275b52e5ef5175", []),
("texmf/texmf-dist/dvips/cm-super", "50d6df55b778fd8b4143b983554709c94952b5a67211677839d49de5fd8927ab", []),
("texmf/texmf-dist/dvips/colorsep", "dc98c289327900715aa56c311af6cead64a740557c7ec0c3500c6c45b7257e25", []),
("texmf/texmf-dist/dvips/config", "840ce87be3629e04955eeb296f64e2aed4a58d176bff64cd65c0ea7d71f2249e", []),
("texmf/texmf-dist/dvips/courier", "918365505451ba51d2d3cf20e22672f30a69664130a2bf4349771ff7effae241", []),
("texmf/texmf-dist/dvips/dvipsconfig", "e619e92e4559b2ab2b0707a94a342e575cf26bc1c71c571d118c3382cf4da4b3", []),
("texmf/texmf-dist/dvips/esint-type1", "e0b5041fc4144d56450ad6d1289dc2fed215a383bb165bc4d9e9e1c2e61e52d4", []),
("texmf/texmf-dist/dvips/garuda-c90", "7c208595c2c05b6b6b6cb50927276e83bda351333b676a168db1bead7cc05689", []),
("texmf/texmf-dist/dvips/gastex", "55ab13632ea07af4975bee57d0d9878bd529e1850af672d534cb87a6776b5dd9", []),
("texmf/texmf-dist/dvips/getafm", "5bf609d016c9c04cca23e930ae40ea6acc2030c896a6d5432373913c281467b2", []),
("texmf/texmf-dist/dvips/gsftopk", "9a4f3a74c07bf33358f65f5bd5685c7b0b50b83a049c7b87ccea3598936bab48", []),
("texmf/texmf-dist/dvips/helvetic", "31b04c9fdc9773b65557c36d19f812af95322ae23c615562df1f994dd2f748e5", []),
("texmf/texmf-dist/dvips/initials", "d94cd8206faaf80950a7447e6a9967f89c5f5004996acca6a7814b7e6965f26d", []),
("texmf/texmf-dist/dvips/mathdesign", "1a554c3067abd0e46c5a4cd8e6558bfb5de8047e225aa2625f7ab1518e216285", []),
("texmf/texmf-dist/dvips/musixtex", "5fbf25cbdf7b4349cdcde7f654cf35d4b78102aaed5a319dab8e69b00db26b9e", []),
("texmf/texmf-dist/dvips/ncntrsbk", "7ecf06e44132061baf2fc5891163f9784f09b772d21db6a00691ed5aae4aa944", []),
("texmf/texmf-dist/dvips/norasi-c90", "881a51cf7ac354ec4104455cfff085eb9705f47dd057707ab597070b5bce8938", []),
("texmf/texmf-dist/dvips/omega", "c7e70b2cace7fd7da4f58cee1e8efafdb314e804768cc390bdf9b6aaf9ff27e1", []),
("texmf/texmf-dist/dvips/palatino", "2d640e5c71d36f46162974639e12764862a46c2d9e78b3dc40acdf47eb01cd29", []),
("texmf/texmf-dist/dvips/pl", "432226e7a9cd9460e3f7a5ebd2cf943b0f25612d80ff7e78f1e77e943b5ead6d", []),
("texmf/texmf-dist/dvips/psfrag", "d686a563acbcb517908645a80b015ea8743b35f32be5409914572e8897d419ee", []),
("texmf/texmf-dist/dvips/pspicture", "4f2067aa836be0b59676287bd00b69af0d6d4fe76beb7635c1cbc9901d80479d", []),
("texmf/texmf-dist/dvips/pst-3d", "0d858b5cfe84d2d5cdea1a1ca7700026fc57bb57a2cb25e7eb8afda12960ff6c", []),
("texmf/texmf-dist/dvips/pst-3dplot", "03b4337691f9dcad0a1c88b49a674e0327193f647738dadb6ae2b31dc3ca2cf0", []),
("texmf/texmf-dist/dvips/pst-antiprism", "59cd641c859c554e98496bda7f86a00badf44f3911affa638055bd9b0c4f088b", []),
("texmf/texmf-dist/dvips/pst-bar", "53db079a42b3c5d372cbb1b36a6ab5207fbacc6d573016e19f94df98403d0371", []),
("texmf/texmf-dist/dvips/pst-barcode", "4835896060c4832ae421bf015705be66984bcfe33f14cb8f9d4531fc0484b766", []),
("texmf/texmf-dist/dvips/pst-bezier", "865e6304ff457ff97bdda8ec7e5cd07f3cebba1a9ed14d08b8cc26195f14cd20", []),
("texmf/texmf-dist/dvips/pst-blur", "25f3050166c736dabdafe16343bda462c8522752dcefc157ce8cf2e02c3760d6", []),
("texmf/texmf-dist/dvips/pst-bspline", "3be3d85d700022a5b928de4f2061e62d18cd5a280252d165002fb0b6abf3a684", []),
("texmf/texmf-dist/dvips/pst-cie", "c625e6de08cd9ec7f4c56a9c6531172d141307bb24fb449632d5090a8f2ca848", []),
("texmf/texmf-dist/dvips/pst-circ", "ae49c937a4a5da39b466c756b147d7c54e1001f26934cdf72d27354d51ce0fd2", []),
("texmf/texmf-dist/dvips/pst-coil", "af7ec6b0f809e73fffaac2a7366bb08d161134d25a333b53921e88444c9e23cc", []),
("texmf/texmf-dist/dvips/pst-cox", "c1e807b14383dfcf80eb4a47d4dfc2af68fb68a4e18c5497a61272bc9059cdfe", []),
("texmf/texmf-dist/dvips/pst-electricfield", "34a344c69ec5e846f1dd3a618bb719a96d0dde6e772e80801e84f32a29acd218", []),
("texmf/texmf-dist/dvips/pst-eucl", "15ef66a8409b2a669e3e5221146845f79f04717247557fea3cc9ad0c0f4265c4", []),
("texmf/texmf-dist/dvips/pst-feyn", "4575b6b941534a327025f974a39cde1a154f300ec754bf6d5370dad11e80ea23", []),
("texmf/texmf-dist/dvips/pst-fractal", "ae4ffb1a402316b5a6938c944b988b7b185d276d130c23059e87db8ae92b8f4c", []),
("texmf/texmf-dist/dvips/pst-fun", "ad3c2a347c5bf4c7c642247536371f473ac78c48785adabc01bedbf7027c1c8f", []),
("texmf/texmf-dist/dvips/pst-func", "043b7d34422a85c071f386912cd0594283cf66ac6cb33f213f6481fdd8dc9f86", []),
("texmf/texmf-dist/dvips/pst-geo", "9b0f8877d1b2cad05a45f74da9d6758c2f5337b23ac608f686f5af5e8957b97f", []),
("texmf/texmf-dist/dvips/pst-ghsb", "61c3d7155512bc9b313d12458a66bdc871b21f637ea8efd3a519da6eef2a4db6", []),
("texmf/texmf-dist/dvips/pst-grad", "36df33b387638d7e42bfa1639e6d5a31d1bd50177f6ea780c31ee1900e8ea29f", []),
("texmf/texmf-dist/dvips/pst-intersect", "496fec523782eb8ce44c75553e0ad4f5dcea82d3c00addfe657182ccd47f7fd3", []),
("texmf/texmf-dist/dvips/pst-knot", "cd09b352d39c9558eccd4ef71f436d20a31e5e6bec0e181dbe54f5eab9b3fd7b", []),
("texmf/texmf-dist/dvips/pst-light3d", "8c592fc4eadfba87b7cd052e01deaf30359734d8193b51416cbbf9e6a50d9d2c", []),
("texmf/texmf-dist/dvips/pst-lsystem", "373aa5576faea29e9d443d9a57dd8d83d09302f2383e8c737a7489c2a828afa3", []),
("texmf/texmf-dist/dvips/pst-magneticfield", "4a8e0cffcb9364e5139ff861906ce08483235415853df35864f6e38359a2755f", []),
("texmf/texmf-dist/dvips/pst-marble", "82430cc2c69015fb4d95999baa6b9d832a80cf859d1dab15086340f5e0d48760", []),
("texmf/texmf-dist/dvips/pst-math", "8529a0fdb3e2dc54571be5916a4d1914b113d4503ed01b41b49c670c15911f47", []),
("texmf/texmf-dist/dvips/pst-mirror", "e32f2a42adc3f539091de806a839844e33f772e6a1efe9a044eb3e3b80793673", []),
("texmf/texmf-dist/dvips/pst-moire", "b7c71d18e8796bb95bf77337f0aca894826f3407a42ccfbc8ec584e532114b4b", []),
("texmf/texmf-dist/dvips/pst-node", "b25b71433094a6e0da446ea9bd3ca48a911e3850ad727d329f216772b4f8ddcb", []),
("texmf/texmf-dist/dvips/pst-ode", "65b2175d9e00eda7fe3e19c5f5e816b86c3599a45e403605ec412b42f0ac6fe2", []),
("texmf/texmf-dist/dvips/pst-optexp", "d232ab201b7680f8b461f1b1c0b8a6c7da0e4a85505d3376a38e0ee15e66c963", []),
("texmf/texmf-dist/dvips/pst-ovl", "d9bd387dcccfc1510111c1c59b1dfb3771958b6b78d0cce4c78d2b3034cdaee3", []),
("texmf/texmf-dist/dvips/pst-shell", "ac45594cfba28e33036f20766f1af9b5a23f456301224c24841bb5d272892327", []),
("texmf/texmf-dist/dvips/pst-slpe", "af2845b5cdf34573c21b20b227b32438c4cd29eb7d442243e22fe71f59066410", []),
("texmf/texmf-dist/dvips/pst-solarsystem", "a5cd9c0563419e00ceb4e767510d81a67b93d3cd8a5dcd20bc4028809c4c0483", []),
("texmf/texmf-dist/dvips/pst-solides3d", "04648b454ac1d7ea6645b7c6f7961d1fe90202b9bb9ec8195f5bca160b5a22c5", []),
("texmf/texmf-dist/dvips/pst-spectra", "a621d4ed56a91ba4fa86c5d49b9339ebc412c619527f46013f1712d360fabb22", []),
("texmf/texmf-dist/dvips/pst-spinner", "e0efe19cdb2435a0fbd246e834a0669d260c04eb4259ce92ee28ba42db55ee14", []),
("texmf/texmf-dist/dvips/pst-spirograph", "115966667384d054597dd551a1e2877832a436fe280e774800b6cfb45eaeee41", []),
("texmf/texmf-dist/dvips/pst-text", "39c53b6a930e29af481538d456e2c11cbdff10f0199246214ba7d857dd73a714", []),
("texmf/texmf-dist/dvips/pst-tools", "3e87d72b2bb3a7331bf27e4a391ad77d810e1409e370032973fdc76961602235", []),
("texmf/texmf-dist/dvips/pst-vectorian", "9f5435a92a1ba70d06ecaa6c16cd15612c2a1dfb39ca58d43d76ff43a964c778", []),
("texmf/texmf-dist/dvips/pst-vue3d", "c399813a7bdce74f2d9d4cb42c2a5641d513505a9c54c0ac44ce81f913729a01", []),
("texmf/texmf-dist/dvips/pstricks-add", "49f0f929b22b312f4fcd179066cedaafd5d113e75ef54093f8ba57499aa2251f", []),
("texmf/texmf-dist/dvips/pstricks", "76ca87d513c1e9dfad0f5843cedfbee0d0dfe95f1597b1b79432bf85d96d6957", []),
("texmf/texmf-dist/dvips/symbol", "16387bcdd48b2ffc5823d9ad8dee98c03b0ccdd5a2aab17f0ab569c578279882", []),
("texmf/texmf-dist/dvips/tetex", "583903ca60833bd44c4be43505246db9394ece68eb1e0c56a7e05ecabc9d8703", []),
("texmf/texmf-dist/dvips/tex-ps", "1eafbc42a18c88b4bcd66a3b159844da848701f692641a434bf855199016b3d3", []),
("texmf/texmf-dist/dvips/times", "b48e352a39b2060a40d81c853f119ecdedb8b2eee80e655873a490443d61aa07", []),
("texmf/texmf-dist/dvips/tree-dvips", "a9bd2d6c3d95313dd81892e0d2f9561f128486e1951872c165662382558f4732", []),
("texmf/texmf-dist/dvips/uhc", "d17f5395515a84dcdf7627f78ce72e0840e0bc49895af381db90c9f5caa2cd23", []),
("texmf/texmf-dist/dvips/xcolor", "c18db76001e2f0fa0cf7848a2f70ccbddf31805cdce632b5ad0d5e0988ea52a2", []),
("texmf/texmf-dist/dvips/xdvi", "717586e2f0dc9b65fbb7e52768b7eb3c95ca51460791fd80178ea395dbd168a8", []),
("texmf/texmf-dist/dvips/xypic", "18613409163bc90be5342008c866b0456b9ddac432aa8c8e71f335b1046377f4", []),
("texmf/texmf-dist/dvips/yfonts-t1", "a99b8349ac3e6ededc4fe61f72e4187df731a94258838f233ed346ec8f4ffa52", []),
("texmf/texmf-dist/dvips/zapfchan", "b9a3de42a297554cb19a4c1b6817e9ee3dbfacbfd6d64c81ca06ebd7f334ff15", []),
("texmf/texmf-dist/dvips/zapfding", "39a1a0414e6adff4c970a011ffedf577abdcaf60adbe9ef9b26f878d7fa71a87", []),
("texmf/texmf-dist/fonts/afm/adobe/avantgar", "917a842c1883a295dbacda3f047406036eecb9e5f86167761ebb5942e3678deb", []),
("texmf/texmf-dist/fonts/afm/adobe/bookman", "30fafcef798e40d140df7a5e4c8a806fbcd68d45377e11aec2654e686423623c", []),
("texmf/texmf-dist/fonts/afm/adobe/courier", "e32e6e44063f0be39e4620b949e1c2720fc08e4af4c5cd971c81bd167d10fb67", []),
("texmf/texmf-dist/fonts/afm/adobe/helvetic", "9e901da102c8970f7e0ff08c4f1ed1547e2d139f18b3a4b6b6dd6991167ac3aa", []),
("texmf/texmf-dist/fonts/afm/adobe/ncntrsbk", "f625e2e60f52a024d33dd64b48d2f8153dad7be2cd9b6d2e589044360c9cbf93", []),
("texmf/texmf-dist/fonts/afm/adobe/palatino", "678d5e57812145e3422126668eff9e322db2ccda5cb3fd9857fbb5521fe2f7cc", []),
("texmf/texmf-dist/fonts/afm/adobe/symbol", "e6500cde3541290aec2b75846d01465b162c48ce232a4befaff8ab84e9966967", []),
("texmf/texmf-dist/fonts/afm/adobe/times", "7aaa0890b4ab08c97c319341c438e82c94a4cfef41c63392c52feeaa7c306496", []),
("texmf/texmf-dist/fonts/afm/adobe/utopia", "787ba33226939960530c4704eb5dd9a3162e28bf539e67ce20ed352e331535d8", []),
("texmf/texmf-dist/fonts/afm/adobe/zapfchan", "be1adafeb018dc6b0b5b5f6dc7b652713d6f491ae3312ad3d2e04b97ac0630fc", []),
("texmf/texmf-dist/fonts/afm/adobe/zapfding", "ded51a85b477f3cd3fc57f0b0e54203d057050fabc5422619914e63cc645bb3f", []),
("texmf/texmf-dist/fonts/afm/arabi/arabeyes", "9c9fb1cd7e4ae824779e6b42818d41d5daf7c5d0b2cf76fb4688399f72ab1b86", []),
("texmf/texmf-dist/fonts/afm/arkandis/adforn", "eeec08fceb3fef1739404b131f051188364c8d54734e6f9bafa3a377f71d4beb", []),
("texmf/texmf-dist/fonts/afm/arkandis/adfsymbols", "59e5e2224edc4075fb5c270b4a1caf12d6dd49ee5b34bed0a7f7f9d2eb884104", []),
("texmf/texmf-dist/fonts/afm/arkandis/baskervald", "9f522b57e3875e5de2132cdb0f3c4dc154e9f2a7951e287d94cf8b2ed888413b", []),
("texmf/texmf-dist/fonts/afm/arkandis/berenisadf", "bbba1b112205c691c20b018ef5f6114250b43bf6e1eb6a0a75d6364ac11a6891", []),
("texmf/texmf-dist/fonts/afm/arkandis/electrum", "cd01162c95d22931908e07fe48b2e40b0a7597b18fd3fedebfdb425102023c4e", []),
("texmf/texmf-dist/fonts/afm/arkandis/libris", "37bb4d4729eaaa7776e990b45eea73a7f67b48f151a9fccea4596fa3e3c9ebfb", []),
("texmf/texmf-dist/fonts/afm/arkandis/romande", "f8bf460ec24f129a5d751944a2f6a72370e04fe9ab0d25de5249e9a0a676193e", []),
("texmf/texmf-dist/fonts/afm/arkandis/venturis", "1efb9e2833e860e3fa838d60dd3b420a24346d24e4119b71c651fa14b93365bf", []),
("texmf/texmf-dist/fonts/afm/arkandis/venturis2", "acdd4279e4b92e6cdb8c17404c18a10eb19c43de630b73d7b55d670952594737", []),
("texmf/texmf-dist/fonts/afm/arkandis/venturisold", "bf7eb7014bee2184a948efb0024d6d5eb7071d6e5c688cf570de7c6a803815d0", []),
("texmf/texmf-dist/fonts/afm/arkandis/venturissans", "48f51327650dff42e36c4cd3b651e83c1f4d526522876fd6c2178f143c545d3d", []),
("texmf/texmf-dist/fonts/afm/arkandis/venturissans2", "ef1b0c79dbeba1b720f2c8deb409f9b9beab48115069c5d9b3b3107f2d7922d5", []),
("texmf/texmf-dist/fonts/afm/arphic/bkaiu", "1afa4fd24550564e742a8cfd62185f99cb92f3a4d7d55c2030a2b6cc2d3fa0e1", []),
("texmf/texmf-dist/fonts/afm/arphic/bsmiu", "49cc067367e703f97fb71584269060f895194ea19e79e81e2a47fa13cb67e079", []),
("texmf/texmf-dist/fonts/afm/arphic/gbsnu", "dcf50be40946e03b62c4cc1bb1cd10b6e64dc00608944a62ddae212583dd731f", []),
("texmf/texmf-dist/fonts/afm/arphic/gkaiu", "54effc13e7833d81e1c271501ca02c7a3c421615ef904730cbfa992eec0a1d0e", []),
("texmf/texmf-dist/fonts/afm/bitstrea/charter", "500a9d2579aedb026f0558ad75c3d027618b7d136c9c83209d718bf31201b0cc", []),
("texmf/texmf-dist/fonts/afm/esstix", "779259688c4e1388b51d854b7361e5b2e63d93ffa91b224e85c20969e8cce0e9", []),
("texmf/texmf-dist/fonts/afm/gust/poltawski", "d61a83a028cbc7c3f53fa2e6b6adcabe576cb5615d4219deb10fb208c9bdb499", []),
("texmf/texmf-dist/fonts/afm/hoekwater/context", "5db11781e65051598a7cb3f9aa28753b407116aaff16241d1762933bd1e9ad26", []),
("texmf/texmf-dist/fonts/afm/hoekwater/manfnt-font", "b4d7eb5ca11aa154ca683d227b1136dd8c6f4cfd30b7127e572cf6ee59fe9db2", []),
("texmf/texmf-dist/fonts/afm/hoekwater/mflogo-font", "6a8d782a1d994da31439c3c4024a5a39b2cb9f8caaae9b92765d4a7f997433f1", []),
("texmf/texmf-dist/fonts/afm/jmn/hans", "2d084ab71d0b94322b3349568d5ed066765982970fb66b103b98ab62a3aeb456", []),
("texmf/texmf-dist/fonts/afm/metapost", "5251636911cf9e1d0e1604be31eaded37a75e4d967111e3b634d9c6143c23c4a", []),
("texmf/texmf-dist/fonts/afm/nowacki/iwona", "930da4fe6b7bcf471626d967f2eacf39af626696fa15dd8260b34bd0f9982090", []),
("texmf/texmf-dist/fonts/afm/nowacki/kurier", "2604a0389a1e19027fe762a4c4d3602afa60bb242a3d2dd85c95f46fc046e11f", []),
("texmf/texmf-dist/fonts/afm/paratype/ptmono", "130c22a9b67dc87baabb15a006962c104811b5099c02efb319ca9660866e0e61", []),
("texmf/texmf-dist/fonts/afm/paratype/ptsans", "1146f209a57efaf946c67589169ace6081b03e5db44f51a54d78523131f7e92f", []),
("texmf/texmf-dist/fonts/afm/paratype/ptserif", "3b2e9d43d2cbaf2f6a56a049ee37500510a8ea9d0c85124323228b7c25468b0b", []),
("texmf/texmf-dist/fonts/afm/public/amsfonts/cm", "5577b29c4269952ec44ceab4a62655ee5a1583d36b4ba44abf013dd3aad5d4bb", []),
("texmf/texmf-dist/fonts/afm/public/amsfonts/cmextra", "d32ef047a89da0cf819523cc62018c8dfd6661ca6b6a846451641d11b632c0bc", []),
("texmf/texmf-dist/fonts/afm/public/amsfonts/cyrillic", "44d260597fee153044cc164c63346b006332e65b9ed7e528fad4fe41933d800d", []),
("texmf/texmf-dist/fonts/afm/public/amsfonts/euler", "9d9e4c07bfc10de0b7c348e07636428c8d5be71a584048b8fced05e82c99f211", []),
("texmf/texmf-dist/fonts/afm/public/amsfonts/latxfont", "9c4e879cb66cf26d104a5a0cab47fe51d2b4590d652c3233d205dd804a05b50c", []),
("texmf/texmf-dist/fonts/afm/public/amsfonts/symbols", "133e8d0ea28a9acd7a86176447dec9e024cdfc6fac79d0711de7266e3f3700db", []),
("texmf/texmf-dist/fonts/afm/public/anonymouspro", "c50f05f235e9ca083f9b40734075e07a3ba64bf5814dbd8ae54959ae77a6d88a", []),
("texmf/texmf-dist/fonts/afm/public/antt", "611f4c94f22d6b669c428621acb4d7c429d8653d37e09ec0b4fd55a45dfdf80b", []),
("texmf/texmf-dist/fonts/afm/public/aramaic-serto", "34455d0161fa9f6e56f799bc8c6a16f4bcc23073a3909b15e2540e763624bc03", []),
("texmf/texmf-dist/fonts/afm/public/archaic", "17950316c4e96daa7e24b0d03e19ec8d43a803608dbca5f9ff67a558311e2534", []),
("texmf/texmf-dist/fonts/afm/public/arev", "3d8a1b61d1057e3e554bed607d49aa707e6684e049611a605f80429413bf9d2d", []),
("texmf/texmf-dist/fonts/afm/public/armenian", "8b6817fc2092027536073c907574916b8e9b83738f112e01504959ae291b1db9", []),
("texmf/texmf-dist/fonts/afm/public/augie", "02957918a668142de8e9681042b42cd3a0f3b3a5462b55539bb79e31b327995b", []),
("texmf/texmf-dist/fonts/afm/public/auncial-new", "ab922e367fe66a2bfdc144dccecfe7c23e3374ffbe2484cd05908e6f51d38dc0", []),
("texmf/texmf-dist/fonts/afm/public/aurical", "56ed5f610a7ce3f55e3054fff73fb7fe51a58ab8c8a9d48fde7d1be73b3e948b", []),
("texmf/texmf-dist/fonts/afm/public/baskervaldx", "047b43ab2dd4b486aebd57eb9a5f60b6d3c2550cce3c23b8cb9f4af15fb4c975", []),
("texmf/texmf-dist/fonts/afm/public/bbold-type1", "13d655176b8e3d80851272db14d85027e570be5db7ecd42184b63eb11e57e906", []),
("texmf/texmf-dist/fonts/afm/public/bera", "4a76ecc270d145a04dc06ff6efe2577890861310893178b2a220e35ffbb8e56e", []),
("texmf/texmf-dist/fonts/afm/public/bookhands", "d73cf7e3ce5bc275f33fef35e5154971f463600f81c8a91ef29696602bec7850", []),
("texmf/texmf-dist/fonts/afm/public/brushscr", "4e92721f52ff8419070f69207637443d8101406a3186f8a29570d60b20553644", []),
("texmf/texmf-dist/fonts/afm/public/calligra-type1", "edf185c763919d35721e11fc1e4969fdbda720eadafe667a984d4e6b7d1d0aca", []),
("texmf/texmf-dist/fonts/afm/public/cantarell", "4bb4c0a46640f302dbe0e6c9328820b6e6a2efbc2ed5b1a40c90c35329318bcf", []),
("texmf/texmf-dist/fonts/afm/public/carolmin-ps", "ab674e622ef13cd4b221d760c887823dcf93aef5637aafea72913ec3e9f8e33e", []),
("texmf/texmf-dist/fonts/afm/public/chemarrow", "c0377488384d82dca2aa32a845821b81198b312bb19372ca5705796f8294f5dd", []),
("texmf/texmf-dist/fonts/afm/public/cjhebrew", "43aa94d7d1acd6ab94f2889443feb6bc05b9e3e2f3b65f0fcd1028b257aab6ba", []),
("texmf/texmf-dist/fonts/afm/public/cm-lgc", "d7d6ac950e74e59be8f4e0899272ccad3ce25909b2499605d9846bce43670706", []),
("texmf/texmf-dist/fonts/afm/public/cm-super", "2d703dbae3be1d0e9193b294f1490464d7dc3a0c55c4d51e5193fe66764fa9cd", []),
("texmf/texmf-dist/fonts/afm/public/cm-unicode", "6e66a4d639276967f0ad89928375e117b1b6e484344d31cf7f220ff92a4c2e26", []),
("texmf/texmf-dist/fonts/afm/public/cmsrb", "b3b3aab57862677f2efcdb285067c3b59fe8dc3bae033d5403db9dad318eae67", []),
("texmf/texmf-dist/fonts/afm/public/cochineal", "26b55a23a9c7ff0c66539e370a154aba99b1d5d08600bd93f2e478c04a36e8a5", []),
("texmf/texmf-dist/fonts/afm/public/comfortaa", "25e4b067cd8e1e5aafee6a39272154489be4243968a371c2606bcf7b46e227d1", []),
("texmf/texmf-dist/fonts/afm/public/countriesofeurope", "2107875e3527e6d91c2ecf2407e7f0892f62bc7de82582f3607382a3ba7add65", []),
("texmf/texmf-dist/fonts/afm/public/cryst", "8a72d6c08650b0767ee90203c52961c9dd0e68d7f6df89fa225c4f2461e0d1e5", []),
("texmf/texmf-dist/fonts/afm/public/cyklop", "937e27c4a72f18658a5f5d3f01ae2c14aa9dcddd1863ec07845a8ce5affc7855", []),
("texmf/texmf-dist/fonts/afm/public/dad", "866e2505f50f63665bd1cc6ff2451e9d0fa53b3fa38e1fca46c62b6973d44ff6", []),
("texmf/texmf-dist/fonts/afm/public/dejavu", "8125218df6d195c4ab42da609b4d656453d4d845b9a6cf64a1ea1c4beec15a5c", []),
("texmf/texmf-dist/fonts/afm/public/dictsym", "cd12d740b6bef1fba3661f935965fdcb021a2d22599f722b07eb24fbddc6da1f", []),
("texmf/texmf-dist/fonts/afm/public/dozenal", "ccfbf43b545ba769211396bd599d58cbfdf5b68c7777490cd43cb5ebb07f61b6", []),
("texmf/texmf-dist/fonts/afm/public/drm", "1fc59a090ed03095ce61c7a88bd74fb63534b8bca94a449cb18a3137d501ea64", []),
("texmf/texmf-dist/fonts/afm/public/droid", "1bc1c962de1cc0abcfb00f749108a35bb359126d89e0b83262ff1a49bfb67aa9", []),
("texmf/texmf-dist/fonts/afm/public/dsserif", "a1dc93773bf8eac3d4edc9735a3e445ad29ac6b1a8e52022b21d343b1e12e78b", []),
("texmf/texmf-dist/fonts/afm/public/dutchcal", "27b509012e593f0ef915103d0942cd2ca3283928b1cd1d2749077d88335f969c", []),
("texmf/texmf-dist/fonts/afm/public/epigrafica", "54140e3c8f3be674f4d12838104dfbeb0e2974f33e7db792a002f9e3ff62e17d", []),
("texmf/texmf-dist/fonts/afm/public/erewhon", "0c817d5067d467d735b19bd3d25109105eab496aafed6bab05c33e3c1172b383", []),
("texmf/texmf-dist/fonts/afm/public/fetamont", "eae0a1de2ac0722f975e34fa5fb17963bbfb5c90fe82bb4765968b06ba5a4c76", []),
("texmf/texmf-dist/fonts/afm/public/figbas", "38813f35993b9bb894698d8945e963de926ed21347f577e68d012675878f570e", []),
("texmf/texmf-dist/fonts/afm/public/fonetika", "0b6966da2fa398d78eb2eaee22f355c663840ebf7b8fcb6154726de92e26747f", []),
("texmf/texmf-dist/fonts/afm/public/fonts-tlwg", "73df6646061cacc0be7255962f5612f807091c1a0cc29ca2f8ede2138ae47960", []),
("texmf/texmf-dist/fonts/afm/public/fourier", "c033826e08c8fcf4e0f1fb79df2796c043b8ad3f8474d74a4699bd6a6540795f", []),
("texmf/texmf-dist/fonts/afm/public/fouriernc", "9e1d1da0a814df203c097fc44f010d3543b7f3dad317ca4ea5c8eb558e218684", []),
("texmf/texmf-dist/fonts/afm/public/fpl", "6d3e067663070853d25c098b3f33a93f264b8b645ce3473868d789d6ffa0817e", []),
("texmf/texmf-dist/fonts/afm/public/gentium-tug", "bc4e33860153520a004dd8887b338b71d3054bb2fe9abcaba1f0e95ad40b6952", []),
("texmf/texmf-dist/fonts/afm/public/gfsartemisia", "f1517f7d9f649df4f8bcc5ec3d5632c2c7df36a2076516a13432671f6e65f532", []),
("texmf/texmf-dist/fonts/afm/public/gfsbaskerville", "9fb5e672c38bf89399b1bacb015a7e7b96d89544c1efc3de1a234de7fa961454", []),
("texmf/texmf-dist/fonts/afm/public/gfsbodoni", "12dca0582a3db8e2ba6fa6b6dc3b6217414ff738bf2ffbd50793969aad4f4d03", []),
("texmf/texmf-dist/fonts/afm/public/gfscomplutum", "e88a1f4c7b790065a3eda6496ca7649a91783f10bc2cb74a55f79b0e2d1877f5", []),
("texmf/texmf-dist/fonts/afm/public/gfsdidot", "634e6dfbf70678d1f4ff504ae146d5cf7fb831c10aa401852643fd77f7eccc4c", []),
("texmf/texmf-dist/fonts/afm/public/gfsneohellenic", "7fcc272a2c361cffd89341df07b844559e9e35f8426aac914659ea773f29abe5", []),
("texmf/texmf-dist/fonts/afm/public/gfsporson", "c0b358d6997811bb7ae968cbc99ae1b0040100051c1f7cdd2d59187e3717e7df", []),
("texmf/texmf-dist/fonts/afm/public/gfssolomos", "4298c71068dd84ac33fab5da43a65a85f48512336e99b10ad87dc224ed72b464", []),
("texmf/texmf-dist/fonts/afm/public/hfbright", "2e537a1dba3985fda2fc4f54e0f54d8fdee490a450a3176e97adca2e0ce84aa9", []),
("texmf/texmf-dist/fonts/afm/public/ibygrk", "c5c122381b7f333d1b73ccc71f859848c034874a76d97dc67636fe8b424840fa", []),
("texmf/texmf-dist/fonts/afm/public/initials", "190405c08201d2d1db61b14b781463abd3977f5424aa4fa869370da8494ed21a", []),
("texmf/texmf-dist/fonts/afm/public/kerkis", "bbaa9876f85aabbb6f619fce22e1ceadd97e7d7978217ef6e77e077bc34aa25b", []),
("texmf/texmf-dist/fonts/afm/public/knitting", "af79c9e933d37196ad07ac94a706ee76f583fcd4597226ce4b2cae6a3bc61afe", []),
("texmf/texmf-dist/fonts/afm/public/libertinust1math", "4f6c7d9980a10d3442c2f0c1a9f045e57c118b2f1b3ea9aec2c11435ebeba48b", []),
("texmf/texmf-dist/fonts/afm/public/linearA", "531d49b4af27fffa64921376a45b9dc77460dbd85a5aaa3dcf96bf84e1302035", []),
("texmf/texmf-dist/fonts/afm/public/lm", "2c0c84ffd7d6c0327286a428709647318aa4fbc31eea01a9fd864f27aa87e4f4", []),
("texmf/texmf-dist/fonts/afm/public/marvosym", "f770e9bcc3bea7c2b8f38e301e8c4842d2a4a464e606b50e1f349d054e5c1ebb", []),
("texmf/texmf-dist/fonts/afm/public/mathpazo", "c447b711f66b5ff15177cd32bbdd0abcb8b482a00b8759fe59740291f516be75", []),
("texmf/texmf-dist/fonts/afm/public/miama", "5c10a3a71a5f9267b91f2cfe2d90eb0d540aadb4951a098df821d3b2fbef1799", []),
("texmf/texmf-dist/fonts/afm/public/mxedruli", "c623300b8a9b9cc9e436e1c6a0615499e18eae8c3cfde659e39f3dbb84a9e746", []),
("texmf/texmf-dist/fonts/afm/public/nanumtype1", "1d3bd317828184fb2864aa9781d20663a52c7901832bbb9058a5c1e20e807471", []),
("texmf/texmf-dist/fonts/afm/public/newpx", "a2428a8304c104cc0c9301d8ee7387d552060312fb4d3fca7d57ef2e4108d882", []),
("texmf/texmf-dist/fonts/afm/public/newtx", "019d51164cde6242d001cec3c78df11d1f613f1ba5d70690ae082b569f03cc95", []),
("texmf/texmf-dist/fonts/afm/public/niceframe-type1", "1fdc2c11818c722da03c3529cc95d089a9d34738bb3306317962dfbde7233b5a", []),
("texmf/texmf-dist/fonts/afm/public/nimbus15", "7c2c90ffc39d6effec93c6ecfe1fa3e70ce032d029f00034b557d93ca2a9825e", []),
("texmf/texmf-dist/fonts/afm/public/ocherokee", "ffded5f872f8de1d1da43f7f7845789cf15249dba3c05b1d61e5701ebf5a3894", []),
("texmf/texmf-dist/fonts/afm/public/old-arrows", "557f697e0ee99e05624f553f607a118c5f34db30c996cb6d93354b53377a9e80", []),
("texmf/texmf-dist/fonts/afm/public/omega", "23f7ade4fe6cc9957820ff3d66d190f6deb6f3e4e597912e0c36ab65bed8e2b4", []),
("texmf/texmf-dist/fonts/afm/public/opensans", "8c5cc526890ea1e3219d6028e7f9f248bfe8e7c5a53c6baa977f9195c3762927", []),
("texmf/texmf-dist/fonts/afm/public/phaistos", "5b8446caabfc598f219460e1ddd34f53884601aba18ce1e3af2445d3302529d8", []),
("texmf/texmf-dist/fonts/afm/public/pl", "91817e7ed230a72a7df9e28af8798c16c3ee874dd8f220f34355d64077c60986", []),
("texmf/texmf-dist/fonts/afm/public/prodint", "b86c3c93d2044b4a5d6ef850e8c4ecbf1745c97a6f395320a99f2a27a7ecfb28", []),
("texmf/texmf-dist/fonts/afm/public/pxfonts", "fb9296c332ea843111aa08f96698d6fc05cb7c960a6a62aa8466b1c41fa5efea", []),
("texmf/texmf-dist/fonts/afm/public/rsfs", "83ac2bde017ad7e3baf39a34392eb2318d206dd24d60dddfce75eeca74b8b9b9", []),
("texmf/texmf-dist/fonts/afm/public/semaphor", "9a6724de3d47964c74dc2165f5996253e6e7360efdb8a1139ed4de5013e0dfb0", []),
("texmf/texmf-dist/fonts/afm/public/skaknew", "60a113dd0240eb88b9412915d548c7bc2e17fc6cfe7555305c94d382460f429a", []),
("texmf/texmf-dist/fonts/afm/public/starfont", "a41866f6797182bcd7b461ff8513aa0c0472aacbf91470aa9a9b6573b6e80449", []),
("texmf/texmf-dist/fonts/afm/public/stickstoo", "44fe57da76e6e303244812251dc5286279e18d3b34bcb650cbd6c3ea87ba3469", []),
("texmf/texmf-dist/fonts/afm/public/stmaryrd", "9a28f4d85762e30ef08d346dccf121bb5d56dda5f902e43d5de6a9a7ad34dd7a", []),
("texmf/texmf-dist/fonts/afm/public/svrsymbols", "f54c4e25b25777f14ff11063d2156b6db2a808310e5fb65e4998081d0e417a20", []),
("texmf/texmf-dist/fonts/afm/public/tabvar", "a9b3d3949a28bcf922a68af6fc27db001655d0eac94e49f8e0185a22343a7af1", []),
("texmf/texmf-dist/fonts/afm/public/tempora", "f8ff3cbfe1f5884f7d250697d2725784537e57dae6e7dd1be00d9c3fe23da047", []),
("texmf/texmf-dist/fonts/afm/public/tex-gyre", "03738bb6f585795437afaa0a9ab2a863b9811ea708a7326030f69c447e1483e9", []),
("texmf/texmf-dist/fonts/afm/public/tfrupee", "9f6f952462fbe1493ee50a1e732f7fa5f4416cf968610e94dd7d119579bbbe08", []),
("texmf/texmf-dist/fonts/afm/public/trajan", "6f76c0124214a67f93ffe8ad3893a9223d4352026dd9e59316972c66f54d971e", []),
("texmf/texmf-dist/fonts/afm/public/txfonts", "9251a9b4671f2993ffc0ae3df1ad0acd0f2e1ca38337a09cbe6eabf7fab70844", []),
("texmf/texmf-dist/fonts/afm/public/txfontsb", "a870e60a58529969751691c23bcf456b947b18483a8dcce8d906b2ddf2916b92", []),
("texmf/texmf-dist/fonts/afm/public/velthuis", "16fe2db3cb2af599373dd1392bda840359f1def3d6d83d2485f3c1bb1f40d660", []),
("texmf/texmf-dist/fonts/afm/public/wasy2-ps", "5c02de92343a0f420400c06f5a85ab63730a5ead0160021948370b8b30f6d5bd", []),
("texmf/texmf-dist/fonts/afm/public/xcharter", "a935f0ebb150902582b7071a0bebbed3dc964a02016be0b524bbe0fa01d0726b", []),
("texmf/texmf-dist/fonts/afm/public/xypic", "7710a9eea2932b729adb85cbec54f299dc211c299455e86c6be57a2938d88a8f", []),
("texmf/texmf-dist/fonts/afm/public/yfonts-t1", "c9280a449c25c58a3a30c4654c488ce7bdf549885f97a191858f8c684a7a48c0", []),
("texmf/texmf-dist/fonts/afm/uhc/umj", "4ef913c8debd387a2910fc623f058860fa04a3c9e53e6fdb5c4a8aab42ef761f", []),
("texmf/texmf-dist/fonts/afm/urw/antiqua", "bc99d14981e91e6dc0471b3b0cddd20f99927e34d85a874d86591eec049a0c71", []),
("texmf/texmf-dist/fonts/afm/urw/avantgar", "58ab0477de6404da372267bb46abaeaaccf1dc32d81da178c9741ef1912535f8", []),
("texmf/texmf-dist/fonts/afm/urw/bookman", "dba0ce0cf9d681f7a17b6693dbdd0a59c83c12e0e5363b8985007f2bc57a0680", []),
("texmf/texmf-dist/fonts/afm/urw/courier", "996603cbbe88e0eb0fd1858cd68e3b0dafaa963106a337930efcc09319e8d38e", []),
("texmf/texmf-dist/fonts/afm/urw/grotesq", "d13dd8c46253cefa97aaeaca2ebe59b75ef4265498b003b6d9f4837f2870d3e1", []),
("texmf/texmf-dist/fonts/afm/urw/helvetic", "18f55cc3ab6f8163e8a4081c8463c173b69478c67bfa142ebff820e641c79dd1", []),
("texmf/texmf-dist/fonts/afm/urw/ncntrsbk", "bcd5497edb1ee93192ac99d0197c1bd7c0c8ad87b775b6312e230b54e00f234c", []),
("texmf/texmf-dist/fonts/afm/urw/palatino", "e6ba0f0d91300feb9a82e37020a54e9ac24c872a1efb1b42deb80438bd9540fd", []),
("texmf/texmf-dist/fonts/afm/urw/symbol", "48cb21cac5b8ee69663708b71c6b380d72479a9505364ff00a9a7b46a4a5a3ad", []),
("texmf/texmf-dist/fonts/afm/urw/times", "d9a95b928b0c7825644009c963329b060a4e46e4f1bc2627f1b8e703210a46a1", []),
("texmf/texmf-dist/fonts/afm/urw/zapfchan", "4733cf34de74b027e089dd3d56e22e024beadb4879e3cd72662b9e75b2fd7b3f", []),
("texmf/texmf-dist/fonts/afm/urw/zapfding", "e9e3d679580af1d15876dcf66d5aa7221be34974605219f5d5221b3f47ead8d5", []),
("texmf/texmf-dist/fonts/afm/vntex/chartervn", "da908e94d7c09115cdfbc83841c794ec5d7284c8c054ed9118eed7459a66c8a8", []),
("texmf/texmf-dist/fonts/afm/vntex/grotesqvn", "ec46d6c65c4d6a30304e663e753ef6a5747d2d6ecd8d979d301e58e180c41359", []),
("texmf/texmf-dist/fonts/afm/vntex/urwvn", "7ef0e984be25e3c4bdd60e89fc78784ff3da53a2b49802d527636b1f0e77a4e9", []),
("texmf/texmf-dist/fonts/afm/vntex/vntopia", "4f2d96ec7b9923c52b2f024c5d5850a614ee5b5a0e5f5912f2211f368880ffef", []),
("texmf/texmf-dist/fonts/afm/wadalab/dgj", "70156cda2ef39d648c70c5ccac7855d52d0b73b76ad20ae21f8073b41e39a872", []),
("texmf/texmf-dist/fonts/afm/wadalab/dmj", "cb352448a94182efc6f04bf6ae5711844ce08eba0f4050551c1f07595c862aa6", []),
("texmf/texmf-dist/fonts/afm/wadalab/mc2j", "0f543f9a7b5bee8236d4df1ba8ceefc34b2b885ac3f93bcae9b63f29c8bb49e8", []),
("texmf/texmf-dist/fonts/afm/wadalab/mcj", "aeee5b0d63df6d52639afcc3756cd9ffa6fecb42725a3ebc6f711590aab6bd59", []),
("texmf/texmf-dist/fonts/afm/wadalab/mr2j", "e1bb9be31a551fb3145cc3dfd4ab1b7d0080fee677e14567cfa2baccb40e5667", []),
("texmf/texmf-dist/fonts/afm/wadalab/mrj", "046489e91af038b9bddf0adcceded4aa312a8f496d6f4774aa7657ad70dbeac8", []),
("texmf/texmf-dist/fonts/cid/fontforge", "a8f8ba06cd7504bcaba4dacb099fbf5a6f286d6337c38c94a39aa7bfb87dac5a", []),
("texmf/texmf-dist/fonts/cmap/adobemapping/cmap-resources", "8c3c35ae722d2cf7753e242c1afbaac548be00b836145e16ebb8910bf7535f84", []),
("texmf/texmf-dist/fonts/cmap/adobemapping/mapping-resources-pdf", "e9567543ded6196a1f8c9142f818a9ae5a5844eb11c17e1467da23ec521cf353", []),
("texmf/texmf-dist/fonts/cmap/dvipdfmx", "3a88956ccadcf3b818702ecb9b6a395c3a177146c46d52aa63dca93a6b3d6de5", []),
("texmf/texmf-dist/fonts/cmap/ptex-fontmaps", "9fd0d07c2e6c05d2530b2ba0ca0944a18aa1031d8588c3a003d97a7f9143ae7c", []),
("texmf/texmf-dist/fonts/cmap/uptex-fonts", "bac3c394bcfabdabc26a4a15ef216420768272007a445aeb6db5e0e7084dcac2", []),
("texmf/texmf-dist/fonts/enc/dvips/accanthis", "cf8e900ae571cdd6cba4813a0c8912670ed0b03b0fd0f53686f422c150414f68", []),
("texmf/texmf-dist/fonts/enc/dvips/adforn", "9932948bab3f99cbd6b937fcb3a2eabb309c40bceba7998360e51a9c219887db", []),
("texmf/texmf-dist/fonts/enc/dvips/adfsymbols", "2db9917bf772f919357b2699c7e53c420636b792315a9366c75cc4901e8cd34f", []),
("texmf/texmf-dist/fonts/enc/dvips/afm2pl", "e0a7ea0d232505ad253a88fa6a4f0c564dc217a939db03e36f31b8b525c85517", []),
("texmf/texmf-dist/fonts/enc/dvips/alegreya", "5582e258779805c2635817f48f3c854ac3028394b9b7c1502fcf3bfe73a98512", []),
("texmf/texmf-dist/fonts/enc/dvips/algolrevived", "c4bf42b25e6513ec0b3a67f72ae73f7d2f53075071763143c646e323b7796e92", []),
("texmf/texmf-dist/fonts/enc/dvips/anonymouspro", "4fa7809282f43bdaffc9006b786a9f9ae72fe22d65dc764b54dbc3b49d29e237", []),
("texmf/texmf-dist/fonts/enc/dvips/antt", "0567d9dd5e26d659f2fce3acc62a20a366c208c8f4ac081db17138310afa0e20", []),
("texmf/texmf-dist/fonts/enc/dvips/arabi", "0e1f39d0721b11926236537db46fae2e11b0c7d3c46f55b3a43269d7e3fcef97", []),
("texmf/texmf-dist/fonts/enc/dvips/arev", "d0aba2dfaa343136c38fee386c2bfdc1d60a8ed006a795a529b3298444dc8f40", []),
("texmf/texmf-dist/fonts/enc/dvips/arimo", "31160e56046f93c9a13e5e013e14a6e74a829bd5d90f492218752513bf973a0e", []),
("texmf/texmf-dist/fonts/enc/dvips/b1encoding", "17cbc24d0bc3a43d4e725d9d4df5c45c624e49f6d7fbe3843f44da9afb69757e", []),
("texmf/texmf-dist/fonts/enc/dvips/base", "48188514ab1ccda150a93cab09fd7248a2349ec5a795baecf927e10a2d9518b0", []),
("texmf/texmf-dist/fonts/enc/dvips/baskervald", "b70e26ece24f8cb59906c944283eed0e04edafd8db8ab3bf8b470363e105f073", []),
("texmf/texmf-dist/fonts/enc/dvips/baskervaldx", "3eed9bd25d2c9f0356b6ebb4f99a12abf7fa78d483938931ebe3d9799837cbf2", []),
("texmf/texmf-dist/fonts/enc/dvips/baskervillef", "9724f8dba17c9d313b897af7fc7f7d223fc3fcab66df2ea9f7b5d5522872bcea", []),
("texmf/texmf-dist/fonts/enc/dvips/berenisadf", "1355a32dc58c22b02bd4ff5ff2992c2e411a542e29a19617a8e713a63d54a221", []),
("texmf/texmf-dist/fonts/enc/dvips/c90", "4ef3abca8210935f160dde03385a4e3f9750e1ebfd87b2672541c490b2d9f24b", []),
("texmf/texmf-dist/fonts/enc/dvips/cabin", "219aa81777705e9223dccc95f3ca4154eb9a37f2bf0be1f323a5965ed30b9ee3", []),
("texmf/texmf-dist/fonts/enc/dvips/caladea", "422d70d61792d8906aa907c1ca535feaa59d245bf8ee0ef2720953e095cb882a", []),
("texmf/texmf-dist/fonts/enc/dvips/cantarell", "82d53d2fcd8e8ff3fcf88b0bcfe02b52bfd40c032faea530027a7575a35559df", []),
("texmf/texmf-dist/fonts/enc/dvips/carlito", "a720eb43b3e423ac4f2769a813d4eccc13af1a5fe69878bbcdbb3478637f5f95", []),
("texmf/texmf-dist/fonts/enc/dvips/cbfonts", "c8f1be001f13b836b4defea1f41b8ff22e602e433a7b2842b41d094900786075", []),
("texmf/texmf-dist/fonts/enc/dvips/ccicons", "d0496ad4d183de522396489d1daeedaa0d5386c4d310daa8b416dfc6f95f7660", []),
("texmf/texmf-dist/fonts/enc/dvips/cfr-lm", "39315231a0c6579f32ff8c1cbc2c97a3250372dbb562ac660f2c181a614fb805", []),
("texmf/texmf-dist/fonts/enc/dvips/chessfss", "660c46c9a9ddfeb399480f0d4bd69f290f7c0b3e02a48db51d25082db8ce5dc9", []),
("texmf/texmf-dist/fonts/enc/dvips/chivo", "7f307900e1cd62c6e6ba5b04cae2f5647002a86467f097b14b60af265001e123", []),
("texmf/texmf-dist/fonts/enc/dvips/cinzel", "3832b188479ffa4dad92c44964f48419211dd8d8b986631980602f374fd7b571", []),
("texmf/texmf-dist/fonts/enc/dvips/cjhebrew", "92860f991389e59b625d50001ed8f19dcb741031e519927f6b5c303c03237c69", []),
("texmf/texmf-dist/fonts/enc/dvips/clearsans", "130bb16ee37b7d00f8d8b2ce9616b440839560db6f2356af60e97e266a36b8e9", []),
("texmf/texmf-dist/fonts/enc/dvips/cm-lgc", "2efdc00ebe36f1aecb2ecb87865523cf1dadf92b860c8314d1207d4749628366", []),
("texmf/texmf-dist/fonts/enc/dvips/cm-super", "e3573411d85faacd679d3f225615a39aa233d90b17393ef5b805d5896702bfb8", []),
("texmf/texmf-dist/fonts/enc/dvips/cm-unicode", "4b18830a31d225f2f0e14351551d6b264827d70b0cf84fc7eede3d779febc4c4", []),
("texmf/texmf-dist/fonts/enc/dvips/cmsrb", "532ce6af8bad2dfc168bef841b3155d780a401d6bb68bbc2c5b0afb227b4d58e", []),
("texmf/texmf-dist/fonts/enc/dvips/cochineal", "bd49939bae9e9f85b093b27bb98e5865dd7756fe600bce9eff7297e170c6d48d", []),
("texmf/texmf-dist/fonts/enc/dvips/coelacanth", "0da85728411f190d3fe02f6e1b25ad7e320de546fbf3bf76e0a66be71fa88ae8", []),
("texmf/texmf-dist/fonts/enc/dvips/comfortaa", "74bf34954ffaed398e0ea2fe4984add0e9b4a3dcb406bac8063f77392cb62d27", []),
("texmf/texmf-dist/fonts/enc/dvips/comicneue", "bd7e966c1bd9669982be90275cf0dad82e67c6ff0e4e21e63560e893cf6bea26", []),
("texmf/texmf-dist/fonts/enc/dvips/context", "82014db91183129b996102ea7318a4c864f286eb42db3616a2a441a93c162041", []),
("texmf/texmf-dist/fonts/enc/dvips/cormorantgaramond", "ec8994eb88196d6589244a6f5e5d4ecf96e1e6e9fd8b3c7f586d46f0206bf78d", []),
("texmf/texmf-dist/fonts/enc/dvips/countriesofeurope", "3a88daf55692a14c47563f1bc1f6c0d85190428b63269d62bad85d64fbe15f0a", []),
("texmf/texmf-dist/fonts/enc/dvips/crimson", "a295c9e2212ea3d9576527f6bdca7c7b4a52f63220ce296a3c94faaec3d917a7", []),
("texmf/texmf-dist/fonts/enc/dvips/crimsonpro", "c03abcd7db5b2859190ed688ae83f400b10dcbac72e1c3e07f4d01ba450748fd", []),
("texmf/texmf-dist/fonts/enc/dvips/cs", "ea7a21e5da4a7be98e0ffc1c752eb575f22834d463fed16a3c52c2b161ab0983", []),
("texmf/texmf-dist/fonts/enc/dvips/cyklop", "385a07e67a7b835731cb7025e269ef9fee7ada3e2800f620c8194a2f19ca4d95", []),
("texmf/texmf-dist/fonts/enc/dvips/dantelogo", "bbb280ec139810495fbc80c86cfa00c765a214ec8b78826b423b49516c44e21b", []),
("texmf/texmf-dist/fonts/enc/dvips/dejavu", "13dd8a21fa8fc56d807cd78d41100bbd6a825b364aaa753fcbfda422c5c5c128", []),
("texmf/texmf-dist/fonts/enc/dvips/droid", "9a55154cd110d22767c779ede62f2e2b9768853ecc42ef449b6ded6f1e8276b0", []),
("texmf/texmf-dist/fonts/enc/dvips/ebgaramond-maths", "b7a90e4967336f956914f8da2a23396b15a5a8508178512e4d3f522cbe57cc02", []),
("texmf/texmf-dist/fonts/enc/dvips/ebgaramond", "1251c8b83eb296a6a8bf8b33ca6723329f99b49c29849ef425d24a86c94f63de", []),
("texmf/texmf-dist/fonts/enc/dvips/electrum", "cafae4b5f1948571aa9526038d7c1389fd395664f414e9094a66fa8f9a166139", []),
("texmf/texmf-dist/fonts/enc/dvips/epigrafica", "0f1c8ad1c75085b4d84126f78caffb36edf989dd118f6e8f824bdd7fb9bf99f2", []),
("texmf/texmf-dist/fonts/enc/dvips/erewhon", "289fb8bb866cd64b0bab4ae013f361ac29ce3d423bab4248a28eb2f8f7209914", []),
("texmf/texmf-dist/fonts/enc/dvips/fbb", "7ce21bd6890f65611169f5d9b515786742b177844e091f2509500081b56f3542", []),
("texmf/texmf-dist/fonts/enc/dvips/fdsymbol", "fbec867093c56056cd7b1132a4757bd154d835ceed3e05d01c8b6401bdb5215c", []),
("texmf/texmf-dist/fonts/enc/dvips/fira", "6c22b62e89ae2c7c2197b3e3a044fd74cd999d0cbc8b35b05245f33c7d555734", []),
("texmf/texmf-dist/fonts/enc/dvips/fontawesome", "13c2410cb0d106bd37ed059d9df49755e45bb4267ef6df0c9d881a67fa32330c", []),
("texmf/texmf-dist/fonts/enc/dvips/fontawesome5", "18397bbc5a232cc7a0f46269555f57c06f1ee57b3ee39d49178e2be9d59f8a69", []),
("texmf/texmf-dist/fonts/enc/dvips/fontools", "87cf84d587acd2608cd51c4feab1804b0a33cce467e498d9ccbd9843e5423849", []),
("texmf/texmf-dist/fonts/enc/dvips/fonts-tlwg", "1ce445151947d31d4949f74b8bd0efad3b2881459db731cbf4c95defadd533fd", []),
("texmf/texmf-dist/fonts/enc/dvips/gentium-tug", "3e4c3f3759e9c0f13581bf56b9b03ec1fd68d24c1448ef41b3bf5b2463e5cc19", []),
("texmf/texmf-dist/fonts/enc/dvips/gfsartemisia", "41c9d61bd113068f1403f24d2f02b7ce16ffa4556e0b8df931433db549133596", []),
("texmf/texmf-dist/fonts/enc/dvips/gfsbaskerville", "1d8b9d97bd8d519f5294eb7a38c99981943e11abd533e351a01717e355b035eb", []),
("texmf/texmf-dist/fonts/enc/dvips/gfsbodoni", "c02e45f15cfbb3a680e2ec691fa4d7dc380f7dc0faf21aa5923c08a5cd35c41a", []),
("texmf/texmf-dist/fonts/enc/dvips/gfscomplutum", "80195879961aeb99864eadf9f7d4fd1100df7af81cf40ea9bda617e2b5271de5", []),
("texmf/texmf-dist/fonts/enc/dvips/gfsdidot", "480a389be46b984ff2ba31cea42c509f95384af4728a3d0daec66e760210e913", []),
("texmf/texmf-dist/fonts/enc/dvips/gfsneohellenic", "c4b8b4ee6dadf9928b9cdb0eb9a6cd0be6ca601b790976a7386f3f6f2dddbb32", []),
("texmf/texmf-dist/fonts/enc/dvips/gfsporson", "539f04665e62f8923be5ea81442db8db1030a6e65e76e0fefd05ee64cfcf4d0f", []),
("texmf/texmf-dist/fonts/enc/dvips/gfssolomos", "3b78862b2d75dd5b6c8a7d2dd8d4564fd68fed2e2f8e2aa1fec42e6a446ffc0e", []),
("texmf/texmf-dist/fonts/enc/dvips/gillius", "2c5e6d004d372f68150e9450444ad96f1005067adebae1a68c66b99ab0b24079", []),
("texmf/texmf-dist/fonts/enc/dvips/gofonts", "62b2a78e8b141eefd4af417c24a0f922532f3da3c844a2dfb18b734acf5bf14d", []),
("texmf/texmf-dist/fonts/enc/dvips/heuristica", "e65f6dbb7f365aa0a1b13d1c262a0c4f9dad71c197feceefdc3272239372e943", []),
("texmf/texmf-dist/fonts/enc/dvips/hfbright", "21eaeaa53d315b8891fc585eddfb1144c37bfd5c1035218d56d2316c547858ed", []),
("texmf/texmf-dist/fonts/enc/dvips/ibygrk", "2669ec110886b0c409cb2a8e992fa74c2d5f141dc1c15ab2e8255de2d7e6a1b5", []),
("texmf/texmf-dist/fonts/enc/dvips/imfellenglish", "e00b38b21976f4da70269668149e391ec45e81f4f078f8452c6b6b21b5d1a0fd", []),
("texmf/texmf-dist/fonts/enc/dvips/inconsolata", "fd9b87e6965dca1540d229015ebaca4ab24afe35d84f5b140675a46cdc9fcad7", []),
("texmf/texmf-dist/fonts/enc/dvips/inriafonts", "7a72be45d24e0977130d1e258f4988695487dcded367cf0eae5f11168fad37a1", []),
("texmf/texmf-dist/fonts/enc/dvips/ipaex-type1", "3dd8e0065546ac665355454086bc057bbbac5f3ba1bee3a48ae9f4a19d963ac5", []),
("texmf/texmf-dist/fonts/enc/dvips/iwona", "f7ed972b49460ebd82e846c40028f5d229cf176bcddd170f3c19ac9113f4c432", []),
("texmf/texmf-dist/fonts/enc/dvips/jmn", "48ee21069679ef6c80af977f195b0f886eeb9fb6d84cd3e23048dd3455292ebe", []),
("texmf/texmf-dist/fonts/enc/dvips/kerkis", "a2cd5bfc964fcf1855a6e91798e1c2bb68eac1565f365995e4df4fabd0385fcd", []),
("texmf/texmf-dist/fonts/enc/dvips/kpfonts", "c6fd10f1cd000dc8354621c4c212438dfbe9da0bd781ce09d2022466725be3b2", []),
("texmf/texmf-dist/fonts/enc/dvips/kurier", "2e1ec4998cd5218f1d6a1fcfefb1f4d8f4b56c7b3f84cf3aef8d9573a73cc0f8", []),
("texmf/texmf-dist/fonts/enc/dvips/lato", "b827e8dc66b4a4cc4ddccbc2bddfb62a05964e94d9c11dddb97855eefeb32475", []),
("texmf/texmf-dist/fonts/enc/dvips/libertine", "a02f6ba12ceb49e4f0b76efa32d8b6212fff28c6d2d1ee96f3ab2759c37bb924", []),
("texmf/texmf-dist/fonts/enc/dvips/libertinegc", "0b51223da56c2a20bdd40425f89218f9bebfb17374910ad382494016a1b4e44c", []),
("texmf/texmf-dist/fonts/enc/dvips/libertinus-type1", "8670854ef5b68353a25760eb1a123222d1fef4bbb56266bc4030b3702299eed5", []),
("texmf/texmf-dist/fonts/enc/dvips/libertinust1math", "30836a129b72fc7f78757420e10eeeba0b69514441c7f2a93c571f719b743901", []),
("texmf/texmf-dist/fonts/enc/dvips/librebaskerville", "6772c966d8bf45cde6ae3d9aa36687afdea0f7e2f198b63add57d8d42266c32f", []),
("texmf/texmf-dist/fonts/enc/dvips/librebodoni", "083ebb1427a5af58acd6c2332939c239a7f1d6bbd21aa09a092b07035a16bee4", []),
("texmf/texmf-dist/fonts/enc/dvips/librecaslon", "ad427e90e5f2711f547f3b1fad5aa4b49ffabb7ae4b4bfd48c5a62e095905d38", []),
("texmf/texmf-dist/fonts/enc/dvips/libris", "1123df125bca098f759e8a579881fd7630d6a2176c2c1f8ab38b800748ea8097", []),
("texmf/texmf-dist/fonts/enc/dvips/lithuanian", "53293ee73fc05a1bba0798604f357ec098799000419677edb82778ce1eb8ec8f", []),
("texmf/texmf-dist/fonts/enc/dvips/lm", "e6cbbacebdec6c316fe61918cb3a4d960ce5b2c5e8b47113a5bb18eb04d3c765", []),
("texmf/texmf-dist/fonts/enc/dvips/lobster2", "0fd1612f4ccd467da5eb757c6fdc562c7b7f8f2cbe1b6c0d370cd7cf4b449e3e", []),
("texmf/texmf-dist/fonts/enc/dvips/ly1", "b0fbba0a70f9a1b831f7d8a55ce38f1b647a825434b24248b0130a339568ddf4", []),
("texmf/texmf-dist/fonts/enc/dvips/mathdesign", "a0470060be27dfa94f718fe425803a53a53db0d562230c8e9aea267265859ce7", []),
("texmf/texmf-dist/fonts/enc/dvips/mdsymbol", "ee2af7a498c68a7f4f74750bbb5dc669ff1994d2c5f93e432751ded4c2871e61", []),
("texmf/texmf-dist/fonts/enc/dvips/merriweather", "7809e71d8d2a3cbf6be0682460bdb78e8b394f6b9406ce4dca8d4f548e6f78bf", []),
("texmf/texmf-dist/fonts/enc/dvips/metapost", "e1251e5695e757e905309155a2bd35a480a332503fcef189190de60bdf66c408", []),
("texmf/texmf-dist/fonts/enc/dvips/miama", "f2b1d748cb9c3fc46a181e0e7ed851b95f491bf0301e38b0fd1b5a30cf2906d4", []),
("texmf/texmf-dist/fonts/enc/dvips/mintspirit", "022f2b0dfbaaacff76846e1d631c21ff815f91b4a7cc2f060ddfd9efbae1b141", []),
("texmf/texmf-dist/fonts/enc/dvips/mnsymbol", "245f63ccfa6ae9949c220941215fb06b53b6ceaec55404827293bbc2bb0cee6e", []),
("texmf/texmf-dist/fonts/enc/dvips/montserrat", "9950ea9ddb012d97216fde3dbc64acd817175c2e0bd17985dd9218a676100cd6", []),
("texmf/texmf-dist/fonts/enc/dvips/newpx", "5138946f7d59408785275c4cba0d718dbaf2c7d1d9f710c19b26575ad8f6edd5", []),
("texmf/texmf-dist/fonts/enc/dvips/newtx", "45c75276f90c98d3b4f792d572b3cefd6fce915e606a963771fc416440ae5319", []),
("texmf/texmf-dist/fonts/enc/dvips/newtxtt", "c5c522ee0607d4dfdd79e25373bda841199c2d71e50c292b93e656ceee0e8488", []),
("texmf/texmf-dist/fonts/enc/dvips/nimbus15", "0da660cba4849ee254c58dba6d937acf4869f1896e3e4f7bf6d430e434af602e", []),
("texmf/texmf-dist/fonts/enc/dvips/noto", "300939c1fff9a0ea8748e01cdcfde2b5f4f617a4f80e81e3c4bdd9ff4d59eaa0", []),
("texmf/texmf-dist/fonts/enc/dvips/old-arrows", "728f9c0b1910a3cf104ab1c5ed96fb68de5fe808af33526d8bb6997be274e551", []),
("texmf/texmf-dist/fonts/enc/dvips/oldstandard", "8d331adc0320079e2e12804262ea2056eddebd0cc367589686c14ed35b8d5c62", []),
("texmf/texmf-dist/fonts/enc/dvips/opensans", "f23624404978f73e827bd211e96def8b2f787cf66e52187cb7ea61851b592fa8", []),
("texmf/texmf-dist/fonts/enc/dvips/overlock", "80c08a1d6cdc96e4f1bac99de45e47a9953cff8ab6590cdcd592938954376fd9", []),
("texmf/texmf-dist/fonts/enc/dvips/paratype", "5f435cdc487d3847b165df179565b68c4833a56b3047cc0146d83b628886a40e", []),
("texmf/texmf-dist/fonts/enc/dvips/pl", "d712ccdc7a9b23ddb7127f217169fc8189343e9b7d596697a138067c3f8624bd", []),
("texmf/texmf-dist/fonts/enc/dvips/playfair", "ff679159b952c61ac8a1a02870f5734aed270e89f1590e6bb41cd365e5190cf2", []),
("texmf/texmf-dist/fonts/enc/dvips/plex", "5c0765a77cd4de417e30cac801d78e47563d78f5ec2efc4b66a4428861a621e3", []),
("texmf/texmf-dist/fonts/enc/dvips/poltawski", "cb07375a66554db178f10fd0b636abcfbcf100406136e012e46a45695c7d0fc8", []),
("texmf/texmf-dist/fonts/enc/dvips/quattrocento", "5575b3030dd502de5e9002050eea90f062a401df83e3ee28752ebec196ca90aa", []),
("texmf/texmf-dist/fonts/enc/dvips/raleway", "9a8008e4d1df76aea47b666ac9cb2dc62665bfff9cd8d0d798be22975b4bec61", []),
("texmf/texmf-dist/fonts/enc/dvips/roboto", "378f9d7ae8ffefd82afee768a952e890d99742b51798ed063a165be610ba87ed", []),
("texmf/texmf-dist/fonts/enc/dvips/romande", "ba57624300252074d8f5438a1024cd4d7c4fe4c88425f7def452539a64de082b", []),
("texmf/texmf-dist/fonts/enc/dvips/rosario", "e5817090f66acff96fd19b138006417b5a3851ecfab114ec744c6bd9945fe3f1", []),
("texmf/texmf-dist/fonts/enc/dvips/semaphor", "a1e075c7676647775e85c73fbaed636c9b93c9a1412bd55aa515ff2a8b2cc454", []),
("texmf/texmf-dist/fonts/enc/dvips/sourcecodepro", "b13e8a730cd1999cdc6ae544ce56ad2c2ccb4fb917824c061ae4b54d0f70275b", []),
("texmf/texmf-dist/fonts/enc/dvips/sourcesanspro", "f478419f518cb73e76eb5d30422bfebe1ee495a2d1992ef4f36b51cadb5906e5", []),
("texmf/texmf-dist/fonts/enc/dvips/sourceserifpro", "a11facfc619eb29c151d18e2944d3b50cdbbb2d66f07acb783e17a46237d945e", []),
("texmf/texmf-dist/fonts/enc/dvips/stickstoo", "5f6b729bccefb941aa6dae28f6da903122f09a6b33f079327964c468dd7b16a2", []),
("texmf/texmf-dist/fonts/enc/dvips/stix", "2db8c4c38bcbacf24997305c8d7e9e78cad57955fc57d8ac79df33fa2fd035b7", []),
("texmf/texmf-dist/fonts/enc/dvips/stix2", "f9004c4c99e170d4488d697621f47cdc842d4409b663b24ddd37de3ee43c28ec", []),
("texmf/texmf-dist/fonts/enc/dvips/superiors", "22ebc8ee8f14e58fb8edbcb1429c33f947739bf017b688b155cbb2d70208faf5", []),
("texmf/texmf-dist/fonts/enc/dvips/tempora", "4095288238e7da32bc9ea6f183049159e56aacb2ab675f34a7e5928f391a8ce5", []),
("texmf/texmf-dist/fonts/enc/dvips/tengwarscript", "598c409c4bbd4532cf2dc7606080e5dc403f21e1c876eff3daa44f33de1aaf17", []),
("texmf/texmf-dist/fonts/enc/dvips/tetex", "3f5a869cab6015c55f4b82e7f5489207a8a55728798d2bae5ff004f90abb7a64", []),
("texmf/texmf-dist/fonts/enc/dvips/tex-gyre", "7ff9384f2c52f9b380a8a9abd0ad7cbac5716b64e0107ff7d85801f40a2e3168", []),
("texmf/texmf-dist/fonts/enc/dvips/tinos", "e0bbfd3d7619011660da8951f2d2eb6a559761595a650922f2fe46373f9c33fe", []),
("texmf/texmf-dist/fonts/enc/dvips/txfonts", "b60e198bf3cdbaed9ecbfdde6878dba40751eaaee3d7e41c23484880ee8d4ea4", []),
("texmf/texmf-dist/fonts/enc/dvips/txfontsb", "fea238b6b814c9d33e076df8522c469733f82f6367ceb6f94f1810f6cf8fc4b9", []),
("texmf/texmf-dist/fonts/enc/dvips/universalis", "beedc158b4c0e4c1ec473392b80a5055385af15c7325aedd6c22a2e73ec1b3f9", []),
("texmf/texmf-dist/fonts/enc/dvips/venturisadf", "4c62a94924f163d28d078fcc2fe59d8f80747ed63f8c7efc20ca2ad8cdbf795e", []),
("texmf/texmf-dist/fonts/enc/dvips/vntex", "6e79b36a4e40b2541e7a3e88e9e3a6d5d4568477bf2ee92f709df7712cba9fbf", []),
("texmf/texmf-dist/fonts/enc/dvips/xcharter", "83ab1639f9513274456d86448a312bc6da184d1a10139f9e2d3091303b971138", []),
("texmf/texmf-dist/fonts/enc/dvips/xypic", "bba86883b9dec9b05f30d5a3e372166d9088186f4e5f542f4f87a168b006ab4c", []),
("texmf/texmf-dist/fonts/enc/pdftex/vntex", "a9e2cd5a7acfe02f4ae65ea02dc7b99c4bfcc1b36062ed1ac03c9208122100fd", []),
("texmf/texmf-dist/fonts/enc/t2", "35e70aac3a3f5f06d489fc5993a5a4669693b0f587da4fbc1a8ab29afa315e87", []),
("texmf/texmf-dist/fonts/enc/ttf2pk/base", "2b7f51381d1f085c73ac89583d166d1dbd9f653f27653c557066a17ebf0b6eee", []),
("texmf/texmf-dist/fonts/lig/afm2pl", "99cc9aa9f5e7c723c5d398b1605c148dc4c1874e2100f8aae9ee866b75fa4e9e", []),
("texmf/texmf-dist/fonts/map/dvipdfm/lm", "91e65efa48dd6f9d78614c26236afe7fd36523a6af284371cfe5a5095927d03b", []),
("texmf/texmf-dist/fonts/map/dvipdfmx", "d485f18cbee86d1974088a92c2fbadaa5087d4d0e539fb6bd0a930c92a7a6ddc", []),
("texmf/texmf-dist/fonts/map/dvips/accanthis", "e01a2a33f9e5061200841bfe67e5dcf03b37e26aaaf68554dae1b603e68407da", []),
("texmf/texmf-dist/fonts/map/dvips/adforn", "9514a7c21e1166db3119a1ce57d98b2723f49f8194b1f4952b99daf351a0a05a", []),
("texmf/texmf-dist/fonts/map/dvips/adfsymbols", "d2400a80f81291d274d4359ffa3952d0940190e80b1068ac80061c55829fd084", []),
("texmf/texmf-dist/fonts/map/dvips/alegreya", "a85b987f3aab774ad44d5a0bcc246a9c0d3f698508badf2307b448110c8e5229", []),
("texmf/texmf-dist/fonts/map/dvips/algolrevived", "3f87cd94126740283bc614eea0d4f4164b9aaa4e8a39dd4495398614855297dc", []),
("texmf/texmf-dist/fonts/map/dvips/allrunes", "1dc9ea772a80e14cdab9c294dc5d996a16d5c1e5fa36f38f8707d77546bcab0b", []),
("texmf/texmf-dist/fonts/map/dvips/amsfonts", "f4e92a720f1015c90d849eaf955c3a025f048596ea7f6268c16a0dcbce343127", []),
("texmf/texmf-dist/fonts/map/dvips/anonymouspro", "17c0a9859f52e9580ef8530dc2f4abf8cbac88af733172ba2a236f1d587feffa", []),
("texmf/texmf-dist/fonts/map/dvips/antiqua", "cda9ad640012fb79b48db2972864b7ed508a29c4ac4e289b2ee82c45fe2fad09", []),
("texmf/texmf-dist/fonts/map/dvips/antt", "52e69111f8eb074ea7014a945a2c7d7ae47dbae71489bc963e15e2d335e2f3cb", []),
("texmf/texmf-dist/fonts/map/dvips/arabi", "7dc845b73978ad3727b23e44d43c833b8d87300bbda06d50d2e333d44494ee9b", []),
("texmf/texmf-dist/fonts/map/dvips/arabtex", "db7407901e89f5b6312ed1e457b1e0443cea9e14ed04bb3937590f51f04c0a59", []),
("texmf/texmf-dist/fonts/map/dvips/aramaic-serto", "5869fc99ad54593a3b401bc55d9843483b23dc86e5801a7d4975b6d68372d642", []),
("texmf/texmf-dist/fonts/map/dvips/archaic", "c2b2c6161703e670b0d75eebd7987072dafe03d0c065cc9b1df77d0528b66d0a", []),
("texmf/texmf-dist/fonts/map/dvips/arev", "fc3c86a76e51511be28ac55b685d7f6b4fd0eded5875457123d66a2ffc740347", []),
("texmf/texmf-dist/fonts/map/dvips/arimo", "b70d596799e4b35f9ee979ebfc6d842190944c7f567103b015e1d762aed6bb6f", []),
("texmf/texmf-dist/fonts/map/dvips/armenian", "8a1f1c7892a2fe15b2a95bbd1340eb3d1e65daf491a8938f901fc8b6408d37a3", []),
("texmf/texmf-dist/fonts/map/dvips/arphic", "7b0805c9402dc8e36531eaf18cb98a26314b0488235a645f6b8921eaa6f03552", []),
("texmf/texmf-dist/fonts/map/dvips/ascii-font", "2c76331f455cadd8579c3faf885467d5705e02cbb1dda955bf4e22fb898143ff", []),
("texmf/texmf-dist/fonts/map/dvips/aspectratio", "73e09282666946671825a0b2cddb07bdd8c61df7d63365daa96261a5c6c766f4", []),
("texmf/texmf-dist/fonts/map/dvips/augie", "5ded08d81e513fdff607dda21c7a163ce647736fc87fe30cc0116bf3517f4942", []),
("texmf/texmf-dist/fonts/map/dvips/auncial-new", "db53d4c93cc67fcfa130d788f9cdcf43728c4979ab5fdaba37814d1a75b40605", []),
("texmf/texmf-dist/fonts/map/dvips/aurical", "24c0b7fb63c0b3ffcbbdc6073988f838bfb690abd1d0d07282dabc130322dc5b", []),
("texmf/texmf-dist/fonts/map/dvips/avantgar", "21a9905801fa7bda2e965f8cb05eadaa8b00da9948f5b1c1e37ffdf8243c8060", []),
("texmf/texmf-dist/fonts/map/dvips/baskervald", "333a133011e42582a2fd82ba42b2554c23a9c6ece8134542add9e90c0888a586", []),
("texmf/texmf-dist/fonts/map/dvips/baskervaldx", "400e09e2e37a91f66b5cf562ec22e5c2cd96e10fa13035f4369e9e2c2d69d844", []),
("texmf/texmf-dist/fonts/map/dvips/baskervillef", "93a9ea13bfe19e321895ebf318320e34e6ca8a2ba4b1c32580cfb143f676fc17", []),
("texmf/texmf-dist/fonts/map/dvips/bbold-type1", "632d50290adae0695114b5f273c16d836709d0c519ec75cf746992e91c2c4033", []),
("texmf/texmf-dist/fonts/map/dvips/belleek", "a49217c36903a189e93cf126c14aa89100c4a88ed5bbdfd693aa1ad210687c53", []),
("texmf/texmf-dist/fonts/map/dvips/bera", "6b2450c12fa1ec2c51627c4d1cbdde5c0b7dd1581d850ae55cde8f3b6d2c21e3", []),
("texmf/texmf-dist/fonts/map/dvips/berenisadf", "722ff134496c8b48641e20927e12772563210f90e16dc4d8ea1dedf96a448d7b", []),
("texmf/texmf-dist/fonts/map/dvips/beuron", "794c2ae3dc1ed8e855e7c2bd9efc1eff2ebc90bfa5d65bf156a35e382d3417b8", []),
("texmf/texmf-dist/fonts/map/dvips/bguq", "f3efc507182e5bb32929e0f18a6146876802faed5b03bae74c4a74f39c1eb4fe", []),
("texmf/texmf-dist/fonts/map/dvips/bookhands", "4d19d5a9464084e2719f177e1616382a63b7eda114e361154c71cb0f8354262c", []),
("texmf/texmf-dist/fonts/map/dvips/bookman", "961985f3e39cd0074d04f17184258e29204ae1af7ae75e8d7eb9b5928ed99b09", []),
("texmf/texmf-dist/fonts/map/dvips/boondox", "0bf23c3e701879d7d1dc9b53a454c11616569fb61c0d0e1f7a76018bfb3ea098", []),
("texmf/texmf-dist/fonts/map/dvips/brushscr", "0327c68a904f19cd274de67bafc9e004d2724a9eb5a7f02d73aa82e94b628d90", []),
("texmf/texmf-dist/fonts/map/dvips/burmese", "74b3cf5eeecf3d193962be44c3ab725ff47435305f49a9d81b846e2674eb2c9c", []),
("texmf/texmf-dist/fonts/map/dvips/cabin", "9533da5319de97d1af423ecf53f3edc3d369d84844618cf9a0e917478511cea4", []),
("texmf/texmf-dist/fonts/map/dvips/caladea", "436bbdb13585bd69343ef9149cbaf3888b873d1ecbdd67566f8608bde002737e", []),
("texmf/texmf-dist/fonts/map/dvips/calligra-type1", "31d9d728478d4accb6b255ff9983852679f30b146c6a6733b782cce37dfe9d2d", []),
("texmf/texmf-dist/fonts/map/dvips/cantarell", "c4c419981c066c5efd55704a156cca22b04965b01bc2f3e9bf0497c2bf416479", []),
("texmf/texmf-dist/fonts/map/dvips/carlito", "349662f0d3531811d407f6388f7f991d695507ae7e5f86e5715dabc6e4603e71", []),
("texmf/texmf-dist/fonts/map/dvips/carolmin-ps", "43c103d38a8991d8409cd3b3212942b7bbe23ad93c6499ac88350221bfa01107", []),
("texmf/texmf-dist/fonts/map/dvips/cbfonts", "d72edf6fb6944a6343d2f3d119b1afd601decd36a7cf79940b5941b18e4acb0e", []),
("texmf/texmf-dist/fonts/map/dvips/cc-pl", "98c78fa982f1426e8850e16bfa0bcecf2b8208bf8e339c48d17f2f7aeb88764d", []),
("texmf/texmf-dist/fonts/map/dvips/ccicons", "2a6ead880332fb8ed70aa1eec391c4f758fb93070e43b39aa3e51e642681a20b", []),
("texmf/texmf-dist/fonts/map/dvips/cfr-lm", "70e3853fa345c898eed7a5d7b8916a29fd76eae10c447fbb0666476b2b64ef08", []),
("texmf/texmf-dist/fonts/map/dvips/chemarrow", "b17db52315da20de7065c4591b55b54114375716aede7881e1016f9a497a1293", []),
("texmf/texmf-dist/fonts/map/dvips/chivo", "865c2752fa86eb6a18e252450aac01af341153f87354b5d8cae6a0dd3833f703", []),
("texmf/texmf-dist/fonts/map/dvips/cinzel", "8f8cab8a5f0653a0a75c80ba1ab39e58fbebb2d96d683f350ac5990342688ed2", []),
("texmf/texmf-dist/fonts/map/dvips/cjhebrew", "d70ca19cb075b6e2bed5b397db4e2e8b0047920061de7382504b94cacf4d68e8", []),
("texmf/texmf-dist/fonts/map/dvips/clearsans", "7ac550a49d1b1f9de12f8e4ef32e8d4b6196973e2eb4736dca3491234a78b387", []),
("texmf/texmf-dist/fonts/map/dvips/cm-lgc", "d1bb52fe2c93c162d1297a834c1034a3f82f3503bef4a8b939c58180383c0efb", []),
("texmf/texmf-dist/fonts/map/dvips/cm-super", "afb6d809940a7d98b24b72e5fd536325b313987b35bda2b1f4f1991c3c081a94", []),
("texmf/texmf-dist/fonts/map/dvips/cm-unicode", "b91d5f82e00b8155f05a21e7ed79e4cfba6ff209d1c135beb2aed085aae17149", []),
("texmf/texmf-dist/fonts/map/dvips/cm", "0f7ffab98698a6d9085d2c971621412b92be0f5d4cff831a1f5d5dec15453d74", []),
("texmf/texmf-dist/fonts/map/dvips/cmcyr", "507c69a71497f3b74b1cea2102b06cb040ecf4cd5f4cbe4fea50a74578b76070", []),
("texmf/texmf-dist/fonts/map/dvips/cmexb", "b27961280ae3498afc21074fca177a16e4dc73f9497082c9bb2122401e4befba", []),
("texmf/texmf-dist/fonts/map/dvips/cmll", "3ad0828a58b6743697159f736274011f177b3aacec98ba3e30e2616fb0522c89", []),
("texmf/texmf-dist/fonts/map/dvips/cmsrb", "918b312148248f208c7cc9c38c81d1bc96630ce7e85e77e7bffa2120fe01eae8", []),
("texmf/texmf-dist/fonts/map/dvips/cochineal", "181c70d582c5d79659ca934647a65103231438f6d7207f0eca04023e57056c10", []),
("texmf/texmf-dist/fonts/map/dvips/coelacanth", "62ff344c138a1aad25fd47846bef5a88bb1f98d24ddaccdea280de3c53174805", []),
("texmf/texmf-dist/fonts/map/dvips/comfortaa", "93d8420b305c4092914dfa361c9ecb9404c563705c524a9e2d64ec5cfdfd3cc8", []),
("texmf/texmf-dist/fonts/map/dvips/comicneue", "0fae40a07d756b62b4f7417700c759bb6fb95e6704481d310b3009c4003c1aee", []),
("texmf/texmf-dist/fonts/map/dvips/context", "6253063f07a041fb3e6d23673d772208abc8dad774ff4eaaf988179944a53d91", []),
("texmf/texmf-dist/fonts/map/dvips/cormorantgaramond", "4281d6047d3271f0656d4f0fa6e65b09e1dd0b2408f9bf5fd04994e75142dbb6", []),
("texmf/texmf-dist/fonts/map/dvips/countriesofeurope", "b015354f5ed6fad7b6eabd06d835bd1db76221f4f544be40d7f6f83f0970b3cc", []),
("texmf/texmf-dist/fonts/map/dvips/courier", "25e7ae7954a29376040137b8f17f73d99c4e2a6a2069ec152b582224d0d0b2a6", []),
("texmf/texmf-dist/fonts/map/dvips/crimson", "ff6fab8081df61c431f1eaa35ceb4022a60548bb6af2e3b3f75c9decf6650248", []),
("texmf/texmf-dist/fonts/map/dvips/crimsonpro", "08fcd82db22e6a91fd052ae5a7b35bfde520cc994a0fcc3e5fba159126a69f3e", []),
("texmf/texmf-dist/fonts/map/dvips/cs", "8aa24d44ce8ec7e00d1b8e60306f3073cdfd45c084b26e74c83a9e07d91228d8", []),
("texmf/texmf-dist/fonts/map/dvips/cuprum", "7c2cbf97d32001542771a7a9cea2a110f1ee3d6a4fa5a37e513f718d79d6164d", []),
("texmf/texmf-dist/fonts/map/dvips/cyklop", "3adac280e5d8fa72e5069aa38a9ab2492aefaf4364195b9cb63b6b10dc8485eb", []),
("texmf/texmf-dist/fonts/map/dvips/dad", "3bf284d411e4e293b970c713af1fa258c966fc1f533af0c62b3a7dc8224d4a09", []),
("texmf/texmf-dist/fonts/map/dvips/dantelogo", "47ee0dd9b2f71b9b1be2a51b01a8083fab5291de6a3aee3481da753a3fe91c00", []),
("texmf/texmf-dist/fonts/map/dvips/dejavu", "e8a417509c8dfdae28418bc6af0a9eb1317be06cb66c016920d2ae2bcc3c1801", []),
("texmf/texmf-dist/fonts/map/dvips/dictsym", "1669053cb772b2ba32c6e0629788e98b3bcac3ccfd5c2c1ddc95c34a43803612", []),
("texmf/texmf-dist/fonts/map/dvips/doublestroke", "a556597c74897024f281ac705b70188923ad40eef6fe7ffd76986aa560f9297d", []),
("texmf/texmf-dist/fonts/map/dvips/dozenal", "fe374f079adacece064921c68a69c5bafb15dfd8e35e6a308eee79498004489d", []),
("texmf/texmf-dist/fonts/map/dvips/drm", "1e2ede1e1c64d990757f8ffb75c60e1496b418f6bd76ef90f6e8d5b2625c533a", []),
("texmf/texmf-dist/fonts/map/dvips/droid", "e3deffb5ddfad2c8c9f23a03935c730918271bc4b9eaf7cd8fe4bc8373bbef2e", []),
("texmf/texmf-dist/fonts/map/dvips/dsserif", "b91039de86528e25d3dcce67ad3f5fe89db9d62337d11d9b1228a3160a6ce3ec", []),
("texmf/texmf-dist/fonts/map/dvips/dummy-space", "35ffa66958917ae4c5a7b1dc88f5143ccf3693583ad9956c186053cdb686425e", []),
("texmf/texmf-dist/fonts/map/dvips/dutchcal", "4833f84a4f20f885b2485fd6a17ae10451995be335a975ac3306ae8062220add", []),
("texmf/texmf-dist/fonts/map/dvips/ebgaramond-maths", "57293d38241cdde0f95249d0dd184441bc0b9c51e006fcc9fd02aff9a1d69940", []),
("texmf/texmf-dist/fonts/map/dvips/ebgaramond", "21de000835700489a1cc25df01eeeba7b2bf7949c81e441616c75b4ecb58fce2", []),
("texmf/texmf-dist/fonts/map/dvips/electrum", "1e3968ea830bf3dcf032a586b8a858d21406ebbc1806a79fdd0b3b6eb584a613", []),
("texmf/texmf-dist/fonts/map/dvips/epigrafica", "a6abcffa55afc6e4bbdf45936922042317765ed1c848bf8e968ccf301cc2c670", []),
("texmf/texmf-dist/fonts/map/dvips/epiolmec", "f44df12cdd60d179515c6060f34ee0667cc9b654a0c033263e86e1f5844ca192", []),
("texmf/texmf-dist/fonts/map/dvips/erewhon", "9c80ee71d78428c5a8cd58eea82e8941de26bc217135deacacd4f862ae6b94b9", []),
("texmf/texmf-dist/fonts/map/dvips/esint-type1", "4a4a25982d6b5fc452a63d5a9fad882d3afbd4980958d6f9b1b62d35880e626b", []),
("texmf/texmf-dist/fonts/map/dvips/esrelation", "6bf22016ac39bda8a522a12f3cb96a6d27e9c96a1f46c843951583fa1292127f", []),
("texmf/texmf-dist/fonts/map/dvips/esstix", "f4607fcc072763107a70c9e89370539f608629a83fb56703efb74e254049092e", []),
("texmf/texmf-dist/fonts/map/dvips/esvect", "d2382c4656b2b0eb3b7d992792c673b28c339306226293df730b74f672b74457", []),
("texmf/texmf-dist/fonts/map/dvips/ethiop-t1", "4f92d6eaba1b062221fc70c1e4e96b044b85cc65d2eca5d97941f3422e95ef4c", []),
("texmf/texmf-dist/fonts/map/dvips/eurosym", "58de8c9e073f2263e169c3c1ff822d031e6b24db220353d2b0ee32f89c2186a9", []),
("texmf/texmf-dist/fonts/map/dvips/fbb", "9a5ac7c4845c0b4357822ac0c696f01d2c04e6e71e59faf9eb1493ce254b1e13", []),
("texmf/texmf-dist/fonts/map/dvips/fdsymbol", "04c1110c19728a93f7e515b3710215a324786725c14240cca56ad59d5efd476e", []),
("texmf/texmf-dist/fonts/map/dvips/fetamont", "dcd809efcac8ac432597e2795d68d390049920d8a0e0134b55a11c03579ab7c7", []),
("texmf/texmf-dist/fonts/map/dvips/fge", "b864904c7dbaea4d12ee44b1f1ad2a0ef3086c23177ca72a7656385f3260bb2d", []),
("texmf/texmf-dist/fonts/map/dvips/figbas", "e0a91cb6dc4b8277ecf3f31ededcf841a0745af0dd4451f6d76c1213ba44241c", []),
("texmf/texmf-dist/fonts/map/dvips/fira", "58ee9d71ccb75c28fb3f9ad17a62c52880a60be84bd88fb9297b8f17e3942055", []),
("texmf/texmf-dist/fonts/map/dvips/foekfont", "d5011643fe5d726c1b0fd7c0650956b1cd55c7e552d19a64f67e691725299e03", []),
("texmf/texmf-dist/fonts/map/dvips/fonetika", "082569b42bcfdf0b9487f57735fe67fbd369416fe6620a0bf2fe89f08831cf5e", []),
("texmf/texmf-dist/fonts/map/dvips/fontawesome", "d658ad67395ba2d879760513a1d16ec581a4c0835da827f620ecfee2dff6cc74", []),
("texmf/texmf-dist/fonts/map/dvips/fontawesome5", "d2b1b1db4de0ee673e66f2c0eaa19139865b785713a7e70ee8239c601e14c734", []),
("texmf/texmf-dist/fonts/map/dvips/fonts-tlwg", "b1c1408fa4100ad9fb65197a1081fb24f911ca2bf8c66abde01909365570d9e4", []),
("texmf/texmf-dist/fonts/map/dvips/fourier", "54a5a80f4ebe87d991d77cd8064ed177e4212baf19573c336e245f4c299bd0bf", []),
("texmf/texmf-dist/fonts/map/dvips/frcursive", "29919e125615a65b517c9b16ec61889b32233882e3c7953dc0cf45987c82928f", []),
("texmf/texmf-dist/fonts/map/dvips/garuda-c90", "76796919b8de01ac83b19408d6d33e706af9267aeb064934df0ad55340b19a1b", []),
("texmf/texmf-dist/fonts/map/dvips/gentium-tug", "2ecdc5383f76f25bf0cf09a457816f711611828f457843e48e4aef809721217d", []),
("texmf/texmf-dist/fonts/map/dvips/gfsartemisia", "405bece08f70385448081dffdabab5c7edcc0062d77c6e02ae4d26bd0aa84620", []),
("texmf/texmf-dist/fonts/map/dvips/gfsbaskerville", "3aabe0c29788c599bcf0ddda769a1eb469df78c019bb64b97f943a1e008ff631", []),
("texmf/texmf-dist/fonts/map/dvips/gfsbodoni", "f768a0107009eaf273dc957f0c6b94e836f146ec562db4b4f1fdcddb3318dd4a", []),
("texmf/texmf-dist/fonts/map/dvips/gfscomplutum", "6706b3420de2cf24a77a179ce3262a0e6832cb5fff196fbfc4d3162bbfd1b18e", []),
("texmf/texmf-dist/fonts/map/dvips/gfsdidot", "ac9731c43f45af210889c61b453989e29c2a6784b0cc1a313323c48dff1870c4", []),
("texmf/texmf-dist/fonts/map/dvips/gfsneohellenic", "9c14afcde115998edbce909c1058791c5fe3b7f3ed46571dee97e84c4f25cf5f", []),
("texmf/texmf-dist/fonts/map/dvips/gfsporson", "8d4fe66917c349d212add7c3fde8fb8f7b5e6de57a48fb8f7cfa9aad0c83f434", []),
("texmf/texmf-dist/fonts/map/dvips/gfssolomos", "27b55c9d8c21c9898174c29dfcd232a474436c482fc1c86672ccf12cbc2fc1c7", []),
("texmf/texmf-dist/fonts/map/dvips/gillcm", "1569b4f2492d2068a80fc89821519ef77471cca3d7be2499d8dcaf358f68f52d", []),
("texmf/texmf-dist/fonts/map/dvips/gillius", "05a740ec8abcf40e0464f0eff7ee7d2193034406aa8396191dc95f5aaeacb6fc", []),
("texmf/texmf-dist/fonts/map/dvips/gofonts", "3835149c4f065cd0c829c1a9d2c0b56536f342155d4f3d04817a7582d9a03de6", []),
("texmf/texmf-dist/fonts/map/dvips/greektonoi", "ca59828b232f59fd196e1ababaae4f72322a489439e0b4c44323a8b6083385a3", []),
("texmf/texmf-dist/fonts/map/dvips/grotesq", "26a3125b08e178eb5b280248be6a8be3302002515f0d463029b32c92b8c88a7c", []),
("texmf/texmf-dist/fonts/map/dvips/hacm", "2f82372ddf0b738b60b95249c44b2c9f94b01eed11ec67d07b5615ec8bfb1662", []),
("texmf/texmf-dist/fonts/map/dvips/helvetic", "17b33e84b2a2508e001bcbf500a7643ed8d8b4c97209acfc9e480e7420e0ee18", []),
("texmf/texmf-dist/fonts/map/dvips/heuristica", "5d0a9e5ff6bdff283efea67714344ca85205cf48b68b69c7c9b425700f37610d", []),
("texmf/texmf-dist/fonts/map/dvips/hfbright", "9ac92c2a5edceea68f33da59218f8d29298182e6266a95cf0b440c453e2068d3", []),
("texmf/texmf-dist/fonts/map/dvips/ibygrk", "d6ffc3be1906598e8fb05ad67c9adb9f5cdbe16c6f4301a4142859044e588628", []),
("texmf/texmf-dist/fonts/map/dvips/imfellenglish", "acbd9ca3a6c0b2672dcbed184b9d4e480103c721cfcc34f1fe15ccb72468b9fb", []),
("texmf/texmf-dist/fonts/map/dvips/inconsolata", "aac61bc485719f95fbba6687a8e3d50456e3eb8c1ca75ea1b6ea3ba392f26dbc", []),
("texmf/texmf-dist/fonts/map/dvips/initials", "5709fd6bcbfcff4ad33ff941b3016b5117fd65d866c839d196c2405ed4b1748c", []),
("texmf/texmf-dist/fonts/map/dvips/inriafonts", "312ca10efd8552e752203de5e7a947db91634338e9f203c77c42e0954b192687", []),
("texmf/texmf-dist/fonts/map/dvips/ipaex-type1", "1ef45239f3fd1f9f8a1b8840268dd2297a82e1668b118c01cf1ca2ba5e03e153", []),
("texmf/texmf-dist/fonts/map/dvips/iwona", "14c20d29ae0a2d275dbf57f9f8f2cc9e37a5f54f21a38be6e3a80eba10cca23b", []),
("texmf/texmf-dist/fonts/map/dvips/jamtimes", "840c3cea272a433e1a436a8d1e15737fa158b4364159970e2008a665a4f52f48", []),
("texmf/texmf-dist/fonts/map/dvips/jmn", "b67d4e42262b392ff677ed4e03fa57ec3e73df8ce1a154d9704ca59e06636cac", []),
("texmf/texmf-dist/fonts/map/dvips/kerkis", "ba373564d87f9d39f42f1f72bc42409683328bf1ae03c884bc71757196d9b384", []),
("texmf/texmf-dist/fonts/map/dvips/knitting", "564026335764126f38c3e651083a2b8972ae33d8b9e58311f6b495665e707a09", []),
("texmf/texmf-dist/fonts/map/dvips/kpfonts", "4b739e6438f76c8ac3f4f2c7ac5851dfacd6104ab1de129467f7e2085cb3decb", []),
("texmf/texmf-dist/fonts/map/dvips/kurier", "40e7ac013f5e326aca95fb36cb36c904212032fd7ccd23eade193c3349f9020f", []),
("texmf/texmf-dist/fonts/map/dvips/lato", "16d6913b2a914b86c43332531b33388534ae81c7f6329914e67527222d7563cc", []),
("texmf/texmf-dist/fonts/map/dvips/libertine", "df6995fa87ea32978e4da13bba9fde403451949b7768468feb2857d30398f36a", []),
("texmf/texmf-dist/fonts/map/dvips/libertinegc", "b9e26808e3b6748be76473bd86f3e97eb48a74d1ee5d6923e6f57d6aec04d30c", []),
("texmf/texmf-dist/fonts/map/dvips/libertinus-type1", "795f192469500ddf31b0f0525d47a7579536cf5994d93dfa13d0f4e7efbf4473", []),
("texmf/texmf-dist/fonts/map/dvips/libertinust1math", "e5dd1930c1b043b16bde42da77d900268972c7105901365110031ad748f9ea27", []),
("texmf/texmf-dist/fonts/map/dvips/librebaskerville", "e37fbf5bbb7646ac4baac71656fbab80a9366ac6db8261181db55f68c81b8a29", []),
("texmf/texmf-dist/fonts/map/dvips/librebodoni", "6bb89f90658fafb21814e3deadd67a5a11267d6561d42db435fd965e6fa2400e", []),
("texmf/texmf-dist/fonts/map/dvips/librecaslon", "ef511e38a551c7263dac61525890f1bf1c4edcd8e07014ffba1f7426b2468d29", []),
("texmf/texmf-dist/fonts/map/dvips/libris", "dfe4fbec6faeb456378beef801bb3271f08be3eaa49e508865d41322905f117f", []),
("texmf/texmf-dist/fonts/map/dvips/linearA", "8ae73e5dd5468df210e59b13f31934a70e89940731507df7caca3784787aa069", []),
("texmf/texmf-dist/fonts/map/dvips/lithuanian", "43c45aa2fcf94e3b99abdc46e84ecf62d227f3be8c2ff291905098536e309f77", []),
("texmf/texmf-dist/fonts/map/dvips/lm", "f1f1bde679b701d5ea47620124125e9d3aabeafddc7f92c7e8a7a1404539d52f", []),
("texmf/texmf-dist/fonts/map/dvips/lobster2", "07714e236b162e8346bb2e59958dc042f1d92cc2b08f3b049f8bf1101f5f42a4", []),
("texmf/texmf-dist/fonts/map/dvips/lxfonts", "1dc5f09d115b83e7e0e34fc27f56ad018e67fcfc3dffd80934472d95aaf78d69", []),
("texmf/texmf-dist/fonts/map/dvips/ly1", "5322b8a2cfee033a03545f0d432e5ab60ca4ac7ecff5dd46d99c10244fb1a604", []),
("texmf/texmf-dist/fonts/map/dvips/manfnt-font", "1c9dcc24bc3dfe182995673010f99ba97755a268dec4bc78e512cb1f55067333", []),
("texmf/texmf-dist/fonts/map/dvips/marvosym", "30e6a131179443c9233f92d0f7e9a63112d2da8909a96eb510d57410487ffb43", []),
("texmf/texmf-dist/fonts/map/dvips/mathabx-type1", "b605998ac82d1633a2a4378f2a1148a134dba83d325c5f25318ff7ff7d5f89d2", []),
("texmf/texmf-dist/fonts/map/dvips/mathdesign", "6bb4d965a0368101e5f8ac8e7baf44b44d540bbe0f65756248965db04e6e1a71", []),
("texmf/texmf-dist/fonts/map/dvips/mdsymbol", "ac4891a09f29f45e197822e84e96f08cae9fcc8a999558a76ca1c83af16f5112", []),
("texmf/texmf-dist/fonts/map/dvips/merriweather", "cce6e2ec1cd1b17cf4626e3d185e6a0ffe4f6f5c361ef98dda47706e8c073902", []),
("texmf/texmf-dist/fonts/map/dvips/metapost", "76aa38edc72c9bb05b13bf112c42e78fa90f6e1d101ecbdd2fd04446ba4aaa54", []),
("texmf/texmf-dist/fonts/map/dvips/mflogo-font", "b7a91384673251a4bd700ee3e5114a60aff745aea5737252054ecd1e384dd393", []),
("texmf/texmf-dist/fonts/map/dvips/miama", "97beeedf10d8095297e2d200a8f42f28d7a2d1f20b3a64ce5584822f14e3221c", []),
("texmf/texmf-dist/fonts/map/dvips/mintspirit", "d50c4ed55b2dbdd0676d2124704af81aaebede5abd63224a3bf740196e4f4088", []),
("texmf/texmf-dist/fonts/map/dvips/mnsymbol", "b68917db68562a391453741c947453dd8b0730570a7c4b520c00e0bcc988ecda", []),
("texmf/texmf-dist/fonts/map/dvips/montex", "31e635e6827e7356bb0dcba8484c53cdfb03a2469b598adc150e68b492c9edb4", []),
("texmf/texmf-dist/fonts/map/dvips/montserrat", "c918dd35d90eb01be2c5c17f8628f599a531e1a979b59daacd8cb4487ba1c2e5", []),
("texmf/texmf-dist/fonts/map/dvips/musixtex-fonts", "c102643df7d05a87f6d77e3eb515c47812ba050fd49206d63f551aac34e9cffd", []),
("texmf/texmf-dist/fonts/map/dvips/mxedruli", "3e19da5d5eac808496d8cc045df022c84d62cbd37569b4b5fcdb44d987c584f1", []),
("texmf/texmf-dist/fonts/map/dvips/nanumtype1", "3672bc145b7ed046b00ac367d0df13ef9558eb945690f59f431f4827ae06a67b", []),
("texmf/texmf-dist/fonts/map/dvips/ncntrsbk", "05dad49777233ec9313b1a97431ce40180d2c1daac33c097a2d877bd6de20a5f", []),
("texmf/texmf-dist/fonts/map/dvips/newpx", "8f65b4637520233a9ad8b3305edd5c2111978a64d197365dca569ce9025d68ef", []),
("texmf/texmf-dist/fonts/map/dvips/newtx", "f1c34f48fa1d056c91e5a52edff1fabd7e57d9327a5dfdfab824282e842f846f", []),
("texmf/texmf-dist/fonts/map/dvips/newtxsf", "a89b50e0050ead86afa1412958b595917f286d65479d8ab35f35611025e29d68", []),
("texmf/texmf-dist/fonts/map/dvips/newtxtt", "316a9b668d246119f036affb4e0d214bf583e1e0f3c650e653671a21fe1657c3", []),
("texmf/texmf-dist/fonts/map/dvips/niceframe-type1", "f5f50be0589d6b348604d154dfa707f0850110a4b5fe0c50e5760bd430524b18", []),
("texmf/texmf-dist/fonts/map/dvips/nimbus15", "22d68699855192a38fdd27e8b7e24abf8f21443c8d76d3bcc28d56292c78256f", []),
("texmf/texmf-dist/fonts/map/dvips/norasi-c90", "a2d5421ff827c05432f6faf3c530ee3371e4457ea80fd495f7bcb16df3a0477c", []),
("texmf/texmf-dist/fonts/map/dvips/noto", "4a083b710ed1917bdfd7978be80e11bb028f3340dddb36fd33f226242c1b340d", []),
("texmf/texmf-dist/fonts/map/dvips/ocherokee", "98f20de2a5e4aa17cfb76dcf5906499d8c85f89b9b222e34a9bf08a89e61ae4f", []),
("texmf/texmf-dist/fonts/map/dvips/ocr-b-outline", "77fa9a8f9a1df6dd0d7b8ca58b8ae8e0e55bf3fbf6259198fbc57c06fc5f4df5", []),
("texmf/texmf-dist/fonts/map/dvips/oinuit", "4d2817f5ed618376f30f78881f13fea8468af9c4a6e36263bb23b437adbd2efb", []),
("texmf/texmf-dist/fonts/map/dvips/old-arrows", "3845f61ac16268ed982b97663e5900d32f0337b8c8f96d478a29fbf0533b1a24", []),
("texmf/texmf-dist/fonts/map/dvips/oldstandard", "2abc88e1566bcd58ebc7da432f574fc49066cec45da220ea29aa2d42e4d9ddad", []),
("texmf/texmf-dist/fonts/map/dvips/omega", "141035e3d455a927ba10e3260527d1ff24fc093c87f8fa0289892379c29980ea", []),
("texmf/texmf-dist/fonts/map/dvips/opensans", "255d17d3e9bfba50e23d63d7dc328963586d35c28f8833a34409a61206c18ef0", []),
("texmf/texmf-dist/fonts/map/dvips/overlock", "79de537a0082a23677200adc97200dec55ded387cfff35f0a51c269bbceb9703", []),
("texmf/texmf-dist/fonts/map/dvips/palatino", "16c4d1ba5f749fc7440bc2fae0ccfcd731df5ef0bea5178dc8b990925adbd31c", []),
("texmf/texmf-dist/fonts/map/dvips/paratype", "5a222d8110eda10ef28b052912fabb0e3fa9fa7ee47abde777ed278007a3388e", []),
("texmf/texmf-dist/fonts/map/dvips/phaistos", "6523d4d5a0e1bcb3a5f054f966367193b3d4d148aea21e8e3fc97a79e152ba70", []),
("texmf/texmf-dist/fonts/map/dvips/pigpen", "5259a68d3676781db8325c9f975b31883ba024df1ba62df8e1ee768542de005a", []),
("texmf/texmf-dist/fonts/map/dvips/pl", "a047eb9c6e01d85964ea348f69a89501a2fac575a7e809f8ed8589dd4dd568e4", []),
("texmf/texmf-dist/fonts/map/dvips/playfair", "7cf7222321aff32aafc0f05f54328e51811bee75dbc6ab20a964411620517b3e", []),
("texmf/texmf-dist/fonts/map/dvips/plex", "3fdeb16ac9378e3f4de81a1d83eb019de1d4fb973e6bc700056daf55ec663521", []),
("texmf/texmf-dist/fonts/map/dvips/poltawski", "570f17155bd9bf0f035ae749b5c12ffed5c87216b1d145f6d6883ff33fc40cbb", []),
("texmf/texmf-dist/fonts/map/dvips/prodint", "1542c965307ab3be454b72822b79dfb15f3c85e7ecc40498c902986ac09942a4", []),
("texmf/texmf-dist/fonts/map/dvips/pslatex", "fa6d0c601e8bec3d1c581c3bf3c9f2304883b92717c6ae616343c74ad305e336", []),
("texmf/texmf-dist/fonts/map/dvips/psnfss", "a6b16790f9b4247519485866fa97a19176b7a70cf56c21a07b408762edbfdda5", []),
("texmf/texmf-dist/fonts/map/dvips/pxfonts", "c0809e99dd5b2a681c33fa586fa54c2d1b63c93379d37530f3cc2305fb264924", []),
("texmf/texmf-dist/fonts/map/dvips/pxtxalfa", "ce93533d8d9927e771019d752400b4dbac3998057b4ff9e51a2baa96574c04b7", []),
("texmf/texmf-dist/fonts/map/dvips/quattrocento", "269b6c855432f7da49ba85539be4d83d084b0ad093e9096fdfb4a021573360de", []),
("texmf/texmf-dist/fonts/map/dvips/raleway", "92f76ddb1b85505e3d9ab0f8dd85f53cd3de47308d780b6c5e92271de208d180", []),
("texmf/texmf-dist/fonts/map/dvips/recycle", "0e4c88782b4d88acfab4f9351274a98a024c0a1db6f491359e855423c41dcc7c", []),
("texmf/texmf-dist/fonts/map/dvips/roboto", "c222f5f63239232927fe47ed1751d05fed84035834873689d51b0680eb1c16cf", []),
("texmf/texmf-dist/fonts/map/dvips/romande", "479cb7b7dd54069c608b4f2feea5178ade71be44debafb9f5883cee1834d8d69", []),
("texmf/texmf-dist/fonts/map/dvips/rosario", "8a299192eb9f02b38ae5f9c932756448be917d6a40d29818ca353055e3ea6588", []),
("texmf/texmf-dist/fonts/map/dvips/rsfs", "ecd6b6d98315d1614aacdabcbf8e7abaeae4c81e09b6b707480d1c87749e8df9", []),
("texmf/texmf-dist/fonts/map/dvips/rsfso", "51ec420cfa1c31540c923312fbd11d990bf5d7118e2b4de3785e689ff3fe03d1", []),
("texmf/texmf-dist/fonts/map/dvips/sanskrit-t1", "f53d679d72e08f3bee75cc976fd8225497b404384dc00013734fb22e85a844aa", []),
("texmf/texmf-dist/fonts/map/dvips/sansmathaccent", "d33f5209d1303a4a52146bb7a0168555bb98df2df542f54ca6951609743b2cf4", []),
("texmf/texmf-dist/fonts/map/dvips/sansmathfonts", "b2c663b287bfdd8ce0918054c4e80665b5c7d1350f2d00b38273c3d2508dcb3e", []),
("texmf/texmf-dist/fonts/map/dvips/scanpages", "0986055dcc2f9c07fef37a21890b358f9174d03317cb062d294f5e9d4ecda7b2", []),
("texmf/texmf-dist/fonts/map/dvips/semaphor", "1646e13a079033d779ed2b3f252b088aa4ef9611596d4134f2c71d827b248a9c", []),
("texmf/texmf-dist/fonts/map/dvips/skaknew", "3225e08aaef25b1f40ea0882f3f61b473edcf53e5c0597934d1290dd2784a89e", []),
("texmf/texmf-dist/fonts/map/dvips/sourcecodepro", "47e9a6c20174187d6e9935e8680feca6ec839e500d5a72b9104ef8cd8efc2755", []),
("texmf/texmf-dist/fonts/map/dvips/sourcesanspro", "fa4ba780ce13021cebae57ecb49858f02c597e72f7ebb0e6d395f72cdec48c52", []),
("texmf/texmf-dist/fonts/map/dvips/sourceserifpro", "fd0517d823c0ccce45ab67f15c1530fe196b0a379c80778fefa7f6745d5a2391", []),
("texmf/texmf-dist/fonts/map/dvips/starfont", "c8636cd3f1c826303e8fa18bd1ea4a133776ad11361fe3dca5f55adf05b8bb39", []),
("texmf/texmf-dist/fonts/map/dvips/staves", "962f4e8b75eb4489867c2374814d3ccffdff3a1c358b14a11afd1e0368e4c4ad", []),
("texmf/texmf-dist/fonts/map/dvips/stickstoo", "3d45e93c4f110760e95e61c7b463db5319e61fbdc5b5fb0c591c928c16dfe2d0", []),
("texmf/texmf-dist/fonts/map/dvips/stix", "998c406a5c4e513672237def797d39cd59d87f07a1dbbcbf22729fb8fad2cb16", []),
("texmf/texmf-dist/fonts/map/dvips/stix2", "7258a8783c9169d0b971f8b972ac0e4c12d058550e4880e68401a59645690457", []),
("texmf/texmf-dist/fonts/map/dvips/stmaryrd", "30a3d188078a699443249de15fd04fdc65d3a2d4b8d96db8fa1ed98305ea6d64", []),
("texmf/texmf-dist/fonts/map/dvips/superiors", "4ba903dfe5724f1b5d1c1ac6435fab77096ff8aa1ca66f0e32e17aa99fc1fbb5", []),
("texmf/texmf-dist/fonts/map/dvips/svrsymbols", "9ecb9a12763e5db3c4088e4f34b55d2c6588ccc4c82d257351a935740b6adf10", []),
("texmf/texmf-dist/fonts/map/dvips/symbol", "8ede112ab5cbbb456c35b3a91dcc5f523d6dd3215ed6ad14d3f8d07389988dd4", []),
("texmf/texmf-dist/fonts/map/dvips/tabvar", "dc06e08ab5ab0de8e9df94d85a277545c1dad7860cb2fa92ef30cf7ec08866c1", []),
("texmf/texmf-dist/fonts/map/dvips/tempora", "b5515d1534fe5e92356067c1a6830d8009ee131eeed4be01f58ece8f6c80b5cf", []),
("texmf/texmf-dist/fonts/map/dvips/tengwarscript", "1f3044888451c4369fe695bc06728f63557e4df7727b8692215f0410cfb8b434", []),
("texmf/texmf-dist/fonts/map/dvips/tetex", "a72d1bb189de4194bfc15cba9e42ec14f641b737d7827edfadb7b82b1bf487df", []),
("texmf/texmf-dist/fonts/map/dvips/tex-gyre", "dffd2bbe5796a2be00449cf4dd7b98296bc41f4854ba9f7af435142e9af6928f", []),
("texmf/texmf-dist/fonts/map/dvips/tfrupee", "8ff6b2b9e3a10cd92a926110be46697ec712cd22d79fefb238dbd8eecd37310f", []),
("texmf/texmf-dist/fonts/map/dvips/times", "d40fcc4e3a0cf13b973bf6b774a5dddba917be0e684c3b1744422f6496c42044", []),
("texmf/texmf-dist/fonts/map/dvips/tinos", "5d5931e190c6830b28ea616af4c9d1646e4d62c998f1500c9e30957c1b2bea71", []),
("texmf/texmf-dist/fonts/map/dvips/tipa", "503c7e83d4de0c721efc9227ceaa2adc646801c5c0b822c4ee3d353e5ee977c1", []),
("texmf/texmf-dist/fonts/map/dvips/trajan", "b824a10e3c9cba608c8f85dd97a170cd18eee4491d53337cdf01b48e66d5067b", []),
("texmf/texmf-dist/fonts/map/dvips/txfonts", "ed1910aa9a0ff7f851320f478055f0abbb21f591c9f7ed56a86da585917427a9", []),
("texmf/texmf-dist/fonts/map/dvips/txfontsb", "e910a3b2b4444cdb229dd16f5378d515ec40054059bdbada8a45749dac66d1ef", []),
("texmf/texmf-dist/fonts/map/dvips/txuprcal", "ae91eb84e4ea922633eab100da33093f3a8a59849cada92670175ba4f6ce23dc", []),
("texmf/texmf-dist/fonts/map/dvips/uhc", "3f232867261a9405c50b018770719f1591e378834336025bd16f2a3371bfc1db", []),
("texmf/texmf-dist/fonts/map/dvips/universalis", "ec4e2436fce4eec8201e5a34a8e7c3e6fa9ef7eb0216471565c27d44c9bc7328", []),
("texmf/texmf-dist/fonts/map/dvips/updmap", "25c83e134ea43a7e278b74876b472f0ba053f326d6891be79e424a569bb06ed9", []),
("texmf/texmf-dist/fonts/map/dvips/velthuis", "8548b399c2d4d33c82928c330fdb63696736d98904a7980328552dbcd40f45f6", []),
("texmf/texmf-dist/fonts/map/dvips/venturis", "bbe1072667ce0f0211ebcb4e4295f048cc938f48bd18c01ada31754460130dc8", []),
("texmf/texmf-dist/fonts/map/dvips/venturis2", "58dd0eb16ab08f3a39dddab5001f6ed3d4d6cdd13a094c81d7451575641c972f", []),
("texmf/texmf-dist/fonts/map/dvips/venturisold", "f9bb55c1cd624d80246f0789542f50a9cd8a288c159dddd637d1ae44f0dced82", []),
("texmf/texmf-dist/fonts/map/dvips/venturissans", "172aeb2676e646322bc527d057e5a285ab02bd949927bb9425118ab88b4cad48", []),
("texmf/texmf-dist/fonts/map/dvips/venturissans2", "9f9fd5c17d624464a37ad156e133fd0e7ad3303542c50b4aaec833dcae9bec06", []),
("texmf/texmf-dist/fonts/map/dvips/vntex", "34eff180532a44c7e8e99530929318b89cfa892ca16914caf6027ae5eb6f1dd6", []),
("texmf/texmf-dist/fonts/map/dvips/wadalab", "5d0a431fa8011d2048508812f238e80c50a74d4fe11d5fd64af25a06e9232e43", []),
("texmf/texmf-dist/fonts/map/dvips/wasy2-ps", "b3bd9d991a925b78ba3acbb4ee2f0bc6d9cdcb818b738b6a4a1f6fb8655ec417", []),
("texmf/texmf-dist/fonts/map/dvips/xcharter", "e49673aafae94c8a8bbb6e9ce85a0b479974eda38a684f5ef07ee878c400ae47", []),
("texmf/texmf-dist/fonts/map/dvips/xypic", "288dd68fd08c78ff4048071df08c3e0b25b51612fd950fa758d0248c88697dfb", []),
("texmf/texmf-dist/fonts/map/dvips/yfonts-t1", "5a9debf4ffabfb56f9de99e217700c6640ce11fdf59fb83437fd85c70b7f6677", []),
("texmf/texmf-dist/fonts/map/dvips/yhmath", "e2b8ed3af2af0e232726ccc189ed05f323196f47da27c1da18e2fde1aed6e464", []),
("texmf/texmf-dist/fonts/map/dvips/zapfchan", "67b056df8b70982e9291bf83e73660f3d8318b47991d81a90a7cfba4dc6f6237", []),
("texmf/texmf-dist/fonts/map/dvips/zapfding", "4c16c632b5fc59e303bc1c00f4d045556e5d1ee70c3486047b49045b0a33fb0c", []),
("texmf/texmf-dist/fonts/map/fontname", "f7ab0d957743bd2e53e80db0a87360de358573e6e5167e21789b22a79c79b376", []),
("texmf/texmf-dist/fonts/map/glyphlist", "b90ba1fa6de83b14cbfbe7414b2205b53c72d608c8ea2dfd6554c1eaad58eff9", []),
("texmf/texmf-dist/fonts/map/luatex/context", "75f5db6b08caded12b011e4a60f4cfc63c4eceb810f85b086215ca9f086369d2", []),
("texmf/texmf-dist/fonts/map/pdftex/context", "4eaaceb8ad5cc95e972e25ddab3bf059f6cc92251372efa9bdefadb00dcba0b6", []),
("texmf/texmf-dist/fonts/map/pdftex/gentium-tug", "711e820b29b4f6b20c3eb107d7c700ad12fdced703777b6eb55a9b7846a5fb67", []),
("texmf/texmf-dist/fonts/map/pdftex/updmap", "cd9d1f098c973cadb027608d682b94512fe367d7d9a6511d232e5e69b8833598", []),
("texmf/texmf-dist/fonts/map/vtex/antiqua", "12926cd348f8addf02e005eace36883e3024686f6dc4d06306cc2ee52278fce4", []),
("texmf/texmf-dist/fonts/map/vtex/cm-super", "12fb46c52419dc672bc7700a54bf765639d0d2a4cad495c65ab004f78ef71371", []),
("texmf/texmf-dist/fonts/map/vtex/mnsymbol", "ccca6e2adaa6127f7c22ca81fdbffe393670abde76bc5143db78cd15858d05f1", []),
("texmf/texmf-dist/fonts/misc/cjk-gs-integrate", "7bb9304874982518edb941d68a7520055186b1c72435092dfa8303c9c00c6439", []),
("texmf/texmf-dist/fonts/misc/cns", "9979e96eb6ca391767664704eb5a890202e7c3be7860b6886880c0aa4c7c191e", []),
("texmf/texmf-dist/fonts/misc/ptex-fontmaps", "0ffb43bd9eec79220578ae8cd5ad7632db4e2ef3446d604cae53e99c4b0fe3c1", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/arabxetex", "8721afc4b916e6e51b557b5c4b40b05528ff2cdbe404b02ec3ea4ebcb83612b8", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/base", "34da39b93d367c3e845bbf4d83c70077c230e3da6a920cd13bd3fa4905614d20", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/context", "b1eead263ab8760ca76db8ec1f78e69084eb3322b31a7f87cbcb0308560f861f", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/polyglossia", "abc1d3705f0d2d35dd55d204ba8beb1d3ec7c0b7dfd719cdcbe5fbe8213b25e2", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/xecjk", "56f5cd2077217cc16c6a304c211397a8c775eadf8400553978dc4d5eca9b9d7b", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/xepersian", "90c5810a8d165bf8214adfeffb79fba1917db1853b162d2379c3df45355d566e", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/xetex-devanagari", "c4f6556dd4fd5a4bc734a645d8ce051e36d09b3a9f695d1ed6d44c872d0c4e76", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/xetex-itrans", "319dc188d04753baecdad5663584c027e709021ffe0b6dae4078a2e310b6fc60", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/xetex-tibetan", "e00343125bc4fc27ed871e4e2521a3a26ff474a79867004a0c7687c6d00c66a8", []),
("texmf/texmf-dist/fonts/ofm/public/cm-lgc", "008416c94d35297edfbf7cfe7e47e92bac32ee14324b1ef5d803bdd8efb44d3d", []),
("texmf/texmf-dist/fonts/ofm/public/dad", "9e5abcedc7e7bbcb6f23703d0988fed35639aa3462f26088980e9625f0877e02", []),
("texmf/texmf-dist/fonts/ofm/public/ethiop", "8410610766333dadeed918c8cb3731aa36c8041e8100ae144716e597c1acb436", []),
("texmf/texmf-dist/fonts/ofm/public/japanese-otf", "fbb6ccb1acd00edfc5a0b1325a7100e6c993e221cea4739c5ab582493f4f6e0e", []),
("texmf/texmf-dist/fonts/ofm/public/ocherokee", "77e7c87a0f8765460c348e7d393908e1b0f457f83aa1dca73bdb378186bfdabf", []),
("texmf/texmf-dist/fonts/ofm/public/oinuit", "ad7c638fc6abff5e61e4da4cd944a656267446b413a5e4b0a0798f02343f3d94", []),
("texmf/texmf-dist/fonts/ofm/public/omega", "539152895e2eebac08b6ee2aeec07b5f300d2dd5c316273cd1968f77fc138de4", []),
("texmf/texmf-dist/fonts/ofm/public/otibet", "386c44e7c4db976f2ec3228dbd70cfe9adb87b2cfa5a754d0626aa211108f947", []),
("texmf/texmf-dist/fonts/opentype/adobe/sourcecodepro", "4fa1aaac105d49a200955584bc618246cfffe51916172535fd9c00c530a08d3b", []),
("texmf/texmf-dist/fonts/opentype/adobe/sourcesanspro", "3917809c0fa006d908253d8a273448adbc5fc84d67ca6e44f99e3219bdd2101c", []),
("texmf/texmf-dist/fonts/opentype/adobe/sourceserifpro", "ddd4d363c86fa5de974ff79a4c03ae2b1be5eddd2d1639a6246df7e19b90a770", []),
("texmf/texmf-dist/fonts/opentype/arkandis/accanthis", "f4aac0001b0d37ac109186d1cbc8581b7db759ec5e710f9bb6fd0f59ca021492", []),
("texmf/texmf-dist/fonts/opentype/arkandis/berenisadf", "44533d21d89e14551ac075f6005031f495a0f46466220cfd6f76c1e2239aa331", []),
("texmf/texmf-dist/fonts/opentype/arkandis/gillius", "e99b1442690bdf5121e3c0997383a1d35f9560977e3a822835fec9a8641b598e", []),
("texmf/texmf-dist/fonts/opentype/arkandis/mintspirit", "b35bfa5d55039aad5313c2cd77ecb0dc491317edab0f039223da52df9370fa3c", []),
("texmf/texmf-dist/fonts/opentype/arkandis/universalis", "74822f89f5a7bd9a5202722c83daf723f86bb79f5d726e4034d0a00e7447dc3e", []),
("texmf/texmf-dist/fonts/opentype/catharsis/cormorantgaramond", "08be905a7eb66ed0377c2308f7cd4dd557e2823177139080529e5b713b606e96", []),
("texmf/texmf-dist/fonts/opentype/google/noto", "cc27916181f1c2d48bbe64e897e3c0e60dbd51940f6565b970e9835b35845861", []),
("texmf/texmf-dist/fonts/opentype/google/roboto", "04831ca1b4f6b4879015fc3451adfcb4a3df9336e1161307f21218c36e83355e", []),
("texmf/texmf-dist/fonts/opentype/gust/poltawski", "9a9dc9ed1146b9c0fc29ed1f93f211474cd4316a78d6ea6edf1a2ca5bfbc63e3", []),
("texmf/texmf-dist/fonts/opentype/huerta/alegreya", "ff32cfc3cfac22d09736a1843f73d6f6b366afb39bd945d6b5127cd652d69678", []),
("texmf/texmf-dist/fonts/opentype/ibm/plex", "76228a4a79741bf1949b93d614ac52668518d90ac5109c1feb854d0ef4a95968", []),
("texmf/texmf-dist/fonts/opentype/iginomarini/imfellenglish", "994d6ddcb1f201e7f8909963617823ec05c4a8794cff4bc271716da3d66bce83", []),
("texmf/texmf-dist/fonts/opentype/impallari/cabin", "57f019e668dcec93584962cd85cd45df4752857c9468dcfc81c72c79c0ba2750", []),
("texmf/texmf-dist/fonts/opentype/impallari/librebaskerville", "3b015f80a1a87c20c87279effdf8943c885fa7eab60115130f91a3f81eb5d199", []),
("texmf/texmf-dist/fonts/opentype/impallari/librebodoni", "84d2470a42bac002f0b6ae15b084ce848fd18ea649324971946a5df0161cf0ce", []),
("texmf/texmf-dist/fonts/opentype/impallari/librecaslon", "1c9e0f2a0c777c27e58dd1591fce21521237e4cd718c18edc4fd372e3654843a", []),
("texmf/texmf-dist/fonts/opentype/impallari/lobster2", "f328a5b88f59d29158cbf7316c6a5b693b20e20c0ee0cd0b87e743d0a1c4650d", []),
("texmf/texmf-dist/fonts/opentype/impallari/quattrocento", "f56ea6b5c8b65487b11db84f2362861c565413e45bd0e671571d42b7d34c14b6", []),
("texmf/texmf-dist/fonts/opentype/impallari/raleway", "ceda2dee5d898f71e7915a8cd7796a6ab3c8a3e914cabcaf9d6d062bd0cfea3a", []),
("texmf/texmf-dist/fonts/opentype/kosch/crimson", "79be14694b6c1edd55c7fe546787cef12cc54f636443bc37f854085eaf3da997", []),
("texmf/texmf-dist/fonts/opentype/novel", "1dc8b60d9816bc2c01a495bac97cf68c044b14c9f6d7e7c901fe1c5ceca934f4", []),
("texmf/texmf-dist/fonts/opentype/nowacki/iwona", "18e1da850dbf72d7c9803a7a0cd597b28b6a29520599639484ba0b8cb1bf5c5f", []),
("texmf/texmf-dist/fonts/opentype/nowacki/kurier", "00f733014734536addacf013916b5a962aa792bb7a0ab5e20f9d31b3517ba7af", []),
("texmf/texmf-dist/fonts/opentype/omnibus-type/asapsym", "8ae41e83894643495b32a57d45d7269fd3b2f18572d398bf96cfd11265c11488", []),
("texmf/texmf-dist/fonts/opentype/public/Asana-Math", "63c06891ed8434711db1000c465dc7ac9800cd2f966bf779f96bb667b6bfd932", []),
("texmf/texmf-dist/fonts/opentype/public/algolrevived", "1047e0a1110c8940c5e25614fec703bf472fcd62896c72232d8844915b920af4", []),
("texmf/texmf-dist/fonts/opentype/public/almfixed", "d1b16ddcd9355d82f4e95d5b607633a5ef91048bcacf3c2c43f76f32c815743d", []),
("texmf/texmf-dist/fonts/opentype/public/antt", "1ec8a7ac0ef4b92e2ddf6c700c049a890ba1a0cfaa0543796b1681b3a4a07755", []),
("texmf/texmf-dist/fonts/opentype/public/baskervaldx", "85d7c22eb5012d8ed2ec49971b1ad6e30c9c5f6066446009e9cc27b499ba0773", []),
("texmf/texmf-dist/fonts/opentype/public/baskervillef", "121e256439d5d51919998037c46b16be8d3b4f82c64392eb71d327b6cfb33304", []),
("texmf/texmf-dist/fonts/opentype/public/beuron", "55889d2fcb6ecbe13767501285a39b1c9913677e2b3246ff9870a02d7cef8878", []),
("texmf/texmf-dist/fonts/opentype/public/ccicons", "63ec5319483317a65479a4d0fbc035b95d13663b9bfe3b16c1410a3c6a57c01d", []),
("texmf/texmf-dist/fonts/opentype/public/chivo", "0deef0bd5ea1addc4d965f612c340fcf74aaf16021cc90a562c6e03cb2fe7ee2", []),
("texmf/texmf-dist/fonts/opentype/public/cm-unicode", "d815ea8195a62eb9f5f86e2af440acb5a9868bfd60f750f2f5337737aa1f61d8", []),
("texmf/texmf-dist/fonts/opentype/public/cochineal", "5685382d30d01248294bb1b291b9e41a56455b03cce953df52172d4a05f6669c", []),
("texmf/texmf-dist/fonts/opentype/public/coelacanth", "49d9c808663127d7eb85390bff3647e981f733f8597f5219d544a291306169b9", []),
("texmf/texmf-dist/fonts/opentype/public/countriesofeurope", "dba3345ef2d072a750a94ac94ed15c55b82c8d6e00b27fc3ff46b98652447308", []),
("texmf/texmf-dist/fonts/opentype/public/cyklop", "b4a8cf3050473e456b92b82cd0e0bb9f9af77ae5f5d17e1844e361e88c7b3d40", []),
("texmf/texmf-dist/fonts/opentype/public/dantelogo", "bad94628327a40cdf878e95574bd43f9d417dc5e3c9a5a7dd003dd4a71e473be", []),
("texmf/texmf-dist/fonts/opentype/public/drm", "eaaa2dc2f8369e1b272e151897e7995d3a950eb0db97f16f9cd1afccf305abfa", []),
("texmf/texmf-dist/fonts/opentype/public/ebgaramond", "a6efe91ffbe2d9e8048106daf240841d2a6b80aa0f0dfcddb54e177df215c5b6", []),
("texmf/texmf-dist/fonts/opentype/public/erewhon", "6eed0721cdcca6bf1ad562ece16e94e1df6048a5e605dec9dae65b195fa09860", []),
("texmf/texmf-dist/fonts/opentype/public/fandol", "c93b094872e74756630fb47eaae82c50bc0343c4be9090bb2fc732f2b9f35abe", []),
("texmf/texmf-dist/fonts/opentype/public/fbb", "71ab0b7573b1082422ef18301798f8f7203241338037520d6bfce89d7a010708", []),
("texmf/texmf-dist/fonts/opentype/public/fdsymbol", "0e341a85fa48716b6dc4138a2046b02d55c47a08973f944921be83a8a1d08a1a", []),
("texmf/texmf-dist/fonts/opentype/public/fetamont", "45a35681bc138ea6844c271e1796aaa1cb6c8ea46e6bf66239758147be77c09a", []),
("texmf/texmf-dist/fonts/opentype/public/fira", "7d511638b978a45c6eb87d2077297ea6404e2062d77fdbc1f73e6d0ddbdc2d33", []),
("texmf/texmf-dist/fonts/opentype/public/firamath", "991a66a7eb32f2c2af7d8bf4924f99db02b7845c0df6e65773c29d29ddf225ae", []),
("texmf/texmf-dist/fonts/opentype/public/fontawesome", "f6132d940f219f14e6400a6bcfe7fa02d2d51516be5db93130bf8d1f5a5ddf72", []),
("texmf/texmf-dist/fonts/opentype/public/fontawesome5", "cf9c7066b3cfae3787fee3af2494d73b87b1d48c9720b9716770d784b70f5fc2", []),
("texmf/texmf-dist/fonts/opentype/public/fonts-churchslavonic", "a7bebb2dfb0ebbeace6a6ff732641b14603877b969d7a73d7c9fe6d3068fc828", []),
("texmf/texmf-dist/fonts/opentype/public/fonts-tlwg", "9e23f6022233ef0f6c1544769d7d328c0d346a62dc46cd8df5c4d57992f2adf2", []),
("texmf/texmf-dist/fonts/opentype/public/frederika2016", "ade37523975ae2947d1c226da912f1af6a75cc76f963d057b604311829511f60", []),
("texmf/texmf-dist/fonts/opentype/public/garamond-math", "b8c72df5f84e2a99537cd32a8bcdf8055b7db562693315ef383a6fc6e829f862", []),
("texmf/texmf-dist/fonts/opentype/public/gfsartemisia", "c6bb296eeb4ef7d680b1b5bae40880b7ed400ebfd7eedb25726ede882a2a0137", []),
("texmf/texmf-dist/fonts/opentype/public/gfsbaskerville", "262fa8dad175246c7b09e8552925be3f2e48f3752e450f855dbf94074b34ce30", []),
("texmf/texmf-dist/fonts/opentype/public/gfsbodoni", "46f99d9d9e6adc53469d3a2648beffa45827fed88b3b2060966ddca3f961e775", []),
("texmf/texmf-dist/fonts/opentype/public/gfscomplutum", "3be3ef82223e5f6e0035d1e5dfb57d09db884b71b3671dbb390ca07952146e00", []),
("texmf/texmf-dist/fonts/opentype/public/gfsdidot", "ec7de2863ec47c187f970f08348c045af99d5814e17344924f195dcf6ad0d8c8", []),
("texmf/texmf-dist/fonts/opentype/public/gfsneohellenic", "88d806ca45e2ab8759f545579d14070dbac0fed5bab6f2afdccbd59a906150e4", []),
("texmf/texmf-dist/fonts/opentype/public/gfsneohellenicmath", "e901a55463ee3e07cbdea4b1e5174dfd61bfc1ce2aad90ca4501f07110f9f5c0", []),
("texmf/texmf-dist/fonts/opentype/public/gfsporson", "e4529f2fd1776c3a9402e149a9b613fb523c00e814ac7ba007fbc73687048c37", []),
("texmf/texmf-dist/fonts/opentype/public/gfssolomos", "6a89516c3619fcfafd370ff600db9198362d9ece0021bb1890f3da32446b5853", []),
("texmf/texmf-dist/fonts/opentype/public/gnu-freefont", "0f2e79553b1e06a10bc089f00ed53dd86b215444aecdf4fe1969813ca1017b22", []),
("texmf/texmf-dist/fonts/opentype/public/heuristica", "a19484265defa2e0643272217ebbce723b0b3b81a36c10a821c4b70fcc506fee", []),
("texmf/texmf-dist/fonts/opentype/public/inconsolata", "d6fc7e4090d0e929564dcf26bb22931ff28eb8ed1c0d2c628fdd3461efc166e7", []),
("texmf/texmf-dist/fonts/opentype/public/inriafonts", "8c53a349fa8f0c8d60717e1cd95486e46186a26ad8db83276b4959fd730a35ef", []),
("texmf/texmf-dist/fonts/opentype/public/libertine", "35f6613d8ab95867657c562923e0ea075e8d9986adca436ffd69484aa5115845", []),
("texmf/texmf-dist/fonts/opentype/public/libertinus-fonts", "a4433b7522759e24c7ae21c522d21e591531d5e1826aae15b65348a8f92e1555", []),
("texmf/texmf-dist/fonts/opentype/public/libertinus-otf", "2184a65833df645cb49c8d7b719a6aaefc1de52aa99ed72e75500b2865ce35af", []),
("texmf/texmf-dist/fonts/opentype/public/lilyglyphs", "5d7d6079ba52e3f4000efb0c07e5fed376b70bf383be738aac0d0201eb3a5de5", []),
("texmf/texmf-dist/fonts/opentype/public/lm-math", "a224e5a364e19d8df31492b532f959d47ecbb9752b194d4f768d097b0f847b1d", []),
("texmf/texmf-dist/fonts/opentype/public/lm", "57a71beb12f738e3bc40f2a2843fbaa1757b07c3e8dc31e7357742fcc8bc0c0b", []),
("texmf/texmf-dist/fonts/opentype/public/mdsymbol", "58a31a2b097502018cde7cb64294ab484e695f0f661f451f61eb8e69e573d482", []),
("texmf/texmf-dist/fonts/opentype/public/miama", "ce5ef71455bac73d2ee900f29ab56a00b718c683b26e9ab27676187adfd0e768", []),
("texmf/texmf-dist/fonts/opentype/public/missaali", "a8d46cda4fe784acef3d569a8a248882c87ff9ac124669a411f5807a289180ae", []),
("texmf/texmf-dist/fonts/opentype/public/mnsymbol", "26e94d22d2d11993cddb57915a8be3e537aa27494fd505ffaaed23353d617521", []),
("texmf/texmf-dist/fonts/opentype/public/montserrat", "8922e3add1978dd851a05814a78920a31094df0464a7119f56101e73f131741a", []),
("texmf/texmf-dist/fonts/opentype/public/newpx", "79f41ca5a2e606a50a770d45431e6805684a0e8ad13f998f11d3911c86f9d657", []),
("texmf/texmf-dist/fonts/opentype/public/newtx", "3c5a6a674c1cc1177d3165b31e6ce9a54c78445122b6a39206729f9d38c7f0b9", []),
("texmf/texmf-dist/fonts/opentype/public/nimbus15", "61eba28db2299aa5e516bd6ed191fc05db09c81f231eb04c2be8d47a50869091", []),
("texmf/texmf-dist/fonts/opentype/public/ocr-b-outline", "7591e291c294eef080cf91437aa7a350fd1edf8b74c7801feb21e52244524b56", []),
("texmf/texmf-dist/fonts/opentype/public/oldstandard", "fb71b9b63ee1d55081836df89ada8b28bd0966a536eee0650d7303a5eea987fd", []),
("texmf/texmf-dist/fonts/opentype/public/phaistos", "f5a9c576e9119462f7838f975abd3d7111cc65d19f178167c78fe7a55e732a97", []),
("texmf/texmf-dist/fonts/opentype/public/philokalia", "373b414889c0202d3feb49c704821405b7a9291ef14277d947d9c539ef3d069f", []),
("texmf/texmf-dist/fonts/opentype/public/playfair", "4ee30d38ccfd0c19080636d033a6a74daa68fe030cde9276613ea47609e2b597", []),
("texmf/texmf-dist/fonts/opentype/public/punknova", "34376f4ffa3306487fc3e5d23a4c89b83ed0a04af53fe15aa2bf4e6d7fdb673e", []),
("texmf/texmf-dist/fonts/opentype/public/rosario", "c91048390bdaa5bf4d625e60337a9528b31dbd8ab482dadc67fa89b565c62545", []),
("texmf/texmf-dist/fonts/opentype/public/semaphor", "ec87751d431c14eb3bd1dbd652e47d33fd6a0cf65b8e1a2ae11e0404f50f7e86", []),
("texmf/texmf-dist/fonts/opentype/public/shobhika", "a5065328f220418acf8202f18d26f0a4cba7b34b00bfbb46c5799ed9d9535ecf", []),
("texmf/texmf-dist/fonts/opentype/public/skaknew", "e9965fa1b75f2db139652679365aee20140a59ddad9af1f2caabe9545406642e", []),
("texmf/texmf-dist/fonts/opentype/public/stix", "6db9cce7493a95733c2de21d4694991688e39b0f11b3e58f37cb705c2f0b6c5e", []),
("texmf/texmf-dist/fonts/opentype/public/stix2-otf", "5a0ca43acf6ba5c45a91a25a2d862d2c86d88284a92b2b5d5fc93d81c3508aad", []),
("texmf/texmf-dist/fonts/opentype/public/svrsymbols", "adb5d7f43f8b180a2566eda956152a696404b633efbbaa6b4a247eb64cc446f3", []),
("texmf/texmf-dist/fonts/opentype/public/tempora", "841ae5b108b5c835d24056746fcb8bf3e91b80c1ee53dabbfdcc30739dad3e55", []),
("texmf/texmf-dist/fonts/opentype/public/tex-gyre-math", "0ab55200421bb88668187ce50f5fe53418c0bd7d2333467004556c7fc5008199", []),
("texmf/texmf-dist/fonts/opentype/public/tex-gyre", "b5aa4f40aefdbcf9d08ef0978d295659e2fba0092dd6a55a7aa5bff5a6711a9c", []),
("texmf/texmf-dist/fonts/opentype/public/umtypewriter", "6f911dbd977d416faa49aae023d474e7a0fa51942884e83918c20f1ab965199b", []),