-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStreamNet.log
More file actions
1187 lines (1115 loc) · 44.3 KB
/
StreamNet.log
File metadata and controls
1187 lines (1115 loc) · 44.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012/Debian) (format=pdflatex 2018.7.5) 28 DEC 2018 09:07
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**StreamNet
(./StreamNet.tex
LaTeX2e <2011/06/27>
Babel <v3.8m> and hyphenation patterns for english, dumylang, nohyphenation, et
hiopic, farsi, arabic, pinyin, croatian, bulgarian, ukrainian, russian, slovak,
czech, danish, dutch, usenglishmax, ukenglish, finnish, french, basque, ngerma
n, german, swissgerman, ngerman-x-2012-05-30, german-x-2012-05-30, monogreek, g
reek, ibycus, ancientgreek, hungarian, bengali, tamil, hindi, telugu, gujarati,
sanskrit, malayalam, kannada, assamese, marathi, oriya, panjabi, italian, lati
n, latvian, lithuanian, mongolian, mongolianlmc, nynorsk, bokmal, indonesian, e
speranto, coptic, welsh, irish, interlingua, serbian, serbianc, slovenian, friu
lan, romansh, estonian, romanian, armenian, uppersorbian, turkish, afrikaans, i
celandic, kurmanji, polish, portuguese, galician, catalan, spanish, swedish, th
ai, loaded.
(./IEEEtran.cls
Document Class: IEEEtran 2007/03/05 V1.7a by Michael Shell
-- See the "IEEEtran_HOWTO" manual for usage information.
-- http://www.michaelshell.org/tex/ieeetran/
\@IEEEtrantmpdimenA=\dimen102
\@IEEEtrantmpdimenB=\dimen103
\@IEEEtrantmpcountA=\count79
\@IEEEtrantmpcountB=\count80
\@IEEEtrantmptoksA=\toks14
LaTeX Font Info: Try loading font information for OT1+ptm on input line 373.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd
File: ot1ptm.fd 2001/06/04 font definitions for OT1/ptm.
)
-- Using 8.5in x 11in (letter) paper.
-- Using PDF output.
\@IEEEnormalsizeunitybaselineskip=\dimen104
-- This is a 10 point document.
\CLASSINFOnormalsizebaselineskip=\dimen105
\CLASSINFOnormalsizeunitybaselineskip=\dimen106
\IEEEnormaljot=\dimen107
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <5> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <5> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <7> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <7> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <8> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <8> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <9> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <9> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <10> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <10> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <11> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <11> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <12> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <12> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <17> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <17> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <20> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <20> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <24> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 731.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <24> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 731.
\IEEEilabelindentA=\dimen108
\IEEEilabelindentB=\dimen109
\IEEEilabelindent=\dimen110
\IEEEelabelindent=\dimen111
\IEEEdlabelindent=\dimen112
\IEEElabelindent=\dimen113
\IEEEiednormlabelsep=\dimen114
\IEEEiedmathlabelsep=\dimen115
\IEEEiedtopsep=\skip41
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@IEEEsubequation=\count85
\abovecaptionskip=\skip42
\belowcaptionskip=\skip43
\c@figure=\count86
\c@table=\count87
\@IEEEeqnnumcols=\count88
\@IEEEeqncolcnt=\count89
\@IEEEtmpitemindent=\dimen116
\c@IEEEbiography=\count90
\@IEEEtranrubishbin=\box26
) (/usr/share/texlive/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty
Package: algorithm2e 2008/00/00 v3.10 algorithms environments
\c@AlgoLine=\count91
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty
Package: xspace 2009/10/20 v1.13 Space after command names (DPC,MH)
)
(/usr/share/texlive/texmf-dist/tex/latex/relsize/relsize.sty
Package: relsize 2011/09/21 ver 4.0
Examine \normalsize starts \@setfontsize size may be 10.
Examine \small starts \@setfontsize size may be 9.
Examine \footnotesize starts \@setfontsize size may be 8.
Examine \large starts \@setfontsize size may be 12.
Examine \Large starts \@setfontsize size may be 14.
Examine \LARGE starts \@setfontsize size may be 17.
Examine \scriptsize starts \@setfontsize size may be 7.
Examine \tiny starts \@setfontsize size may be 5.
Examine \huge starts \@setfontsize size may be 20.
Examine \Huge starts \@setfontsize size may be 24. )
********************************************************
Package `algorithm2e' Release 4.01 -- december 14 2009 --
- algorithm2e-announce@lirmm.fr mailing list for announcement about releases
- algorithm2e-discussion@lirmm.fr mailing list for discussion about package
subscribe by emailing sympa@lirmm.fr with 'subscribe <list> <firstname name>'
- Author: Christophe Fiorio (fiorio@lirmm.fr)
********************************************************
\skiptotal=\skip44
\skiplinenumber=\skip45
\skiprule=\skip46
\skiphlne=\skip47
\skiptext=\skip48
\skiplength=\skip49
\algomargin=\skip50
\skipalgocfslide=\skip51
\algowidth=\dimen117
\inoutsize=\dimen118
\inoutline=\dimen119
\interspacetitleruled=\dimen120
\interspacealgoruled=\dimen121
\interspacetitleboxruled=\dimen122
\algocf@inoutbox=\box27
\algocf@inputbox=\box28
\AlCapSkip=\skip52
\AlCapHSkip=\skip53
\algocf@nlbox=\box29
\algocf@hangingbox=\box30
\algocf@capbox=\box31
\algoheightruledefault=\skip54
\algoheightrule=\skip55
\algotitleheightruledefault=\skip56
\algotitleheightrule=\skip57
\c@algocfline=\count92
\c@algocfproc=\count93
\c@algocf=\count94
\algocf@algoframe=\box32
\algocf@algobox=\box33
) (/usr/share/texlive/texmf-dist/tex/latex/algorithms/algorithmic.sty
Package: algorithmic 2009/08/24 v0.1 Document Style `algorithmic'
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks15
)
\c@ALC@unique=\count95
\c@ALC@line=\count96
\c@ALC@rem=\count97
\c@ALC@depth=\count98
\ALC@tlm=\skip58
\algorithmicindent=\skip59
)
(/usr/share/texlive/texmf-dist/tex/latex/subfigure/subfigure.sty
Package: subfigure 2002/03/15 v2.1.5 subfigure package
\subfigtopskip=\skip60
\subfigcapskip=\skip61
\subfigcaptopadj=\dimen123
\subfigbottomskip=\skip62
\subfigcapmargin=\dimen124
\subfiglabelskip=\skip63
\c@subfigure=\count99
\c@lofdepth=\count100
\c@subtable=\count101
\c@lotdepth=\count102
****************************************
* Local config file subfigure.cfg used *
****************************************
(/usr/share/texlive/texmf-dist/tex/latex/subfigure/subfigure.cfg)
\subfig@top=\skip64
\subfig@bottom=\skip65
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg
File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
)
Package graphics Info: Driver file: pdftex.def on input line 91.
(/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
)
\Gread@gobject=\count103
))
\Gin@req@height=\dimen125
\Gin@req@width=\dimen126
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty
Package: multicol 2011/06/27 v1.7a multicolumn formatting (FMi)
\c@tracingmulticols=\count104
\mult@box=\box34
\multicol@leftmargin=\dimen127
\c@unbalance=\count105
\c@collectmore=\count106
\doublecol@number=\count107
\multicoltolerance=\count108
\multicolpretolerance=\count109
\full@width=\dimen128
\page@free=\dimen129
\premulticols=\dimen130
\postmulticols=\dimen131
\multicolsep=\skip66
\multicolbaselineskip=\skip67
\partial@page=\box35
\last@line=\box36
\mult@rightbox=\box37
\mult@grightbox=\box38
\mult@gfirstbox=\box39
\mult@firstbox=\box40
\@tempa=\box41
\@tempa=\box42
\@tempa=\box43
\@tempa=\box44
\@tempa=\box45
\@tempa=\box46
\@tempa=\box47
\@tempa=\box48
\@tempa=\box49
\@tempa=\box50
\@tempa=\box51
\@tempa=\box52
\@tempa=\box53
\@tempa=\box54
\@tempa=\box55
\@tempa=\box56
\@tempa=\box57
\c@columnbadness=\count110
\c@finalcolumnbadness=\count111
\last@try=\dimen132
\multicolovershoot=\dimen133
\multicolundershoot=\dimen134
\mult@nat@firstbox=\box58
\colbreak@box=\box59
\multicol@sort@counter=\count112
)
(/usr/share/texlive/texmf-dist/tex/latex/lipsum/lipsum.sty
Package: lipsum 2011/04/14 v1.2 150 paragraphs of Lorem Ipsum dummy text
\c@lips@count=\count113
)
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2009/06/22 v3.00 Basic AMSFonts support
\@emptytoks=\toks16
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 96.
)
(/usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
Package: booktabs 2005/04/14 v1.61803 publication quality tables
\heavyrulewidth=\dimen135
\lightrulewidth=\dimen136
\cmidrulewidth=\dimen137
\belowrulesep=\dimen138
\belowbottomsep=\dimen139
\aboverulesep=\dimen140
\abovetopsep=\dimen141
\cmidrulesep=\dimen142
\cmidrulekern=\dimen143
\defaultaddspace=\dimen144
\@cmidla=\count114
\@cmidlb=\count115
\@aboverulesep=\dimen145
\@belowrulesep=\dimen146
\@thisruleclass=\count116
\@lastruleclass=\count117
\@thisrulewidth=\dimen147
)
(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3names.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3bootstrap.sty
Package: l3bootstrap 2011/12/29 v3110 L3 Experimental bootstrap code
)
Package: l3names 2012/03/04 v3494 L3 Experimental namespace for primitives
)
(/usr/share/texlive/texmf-dist/tex/latex/etex-pkg/etex.sty
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count118
)
Package: expl3 2012/04/23 v3570 L3 Experimental code bundle wrapper
(/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package color Info: Driver file: pdftex.def on input line 130.
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3basics.sty
Package: l3basics 2012/03/04 v3491 L3 Experimental basic definitions
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3expan.sty
Package: l3expan 2012/02/26 v3460 L3 Experimental argument expansion
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3tl.sty
Package: l3tl 2012/03/04 v3490 L3 Experimental token lists
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3seq.sty
Package: l3seq 2012/03/04 v3490 L3 Experimental sequences and stacks
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3int.sty
Package: l3int 2012/03/04 v3490 L3 Experimental integers
\c_max_int=\count119
\l_tmpa_int=\count120
\l_tmpb_int=\count121
\l_tmpc_int=\count122
\g_tmpa_int=\count123
\g_tmpb_int=\count124
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3quark.sty
Package: l3quark 2012/02/12 v3384 L3 Experimental quarks
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3prg.sty
Package: l3prg 2012/03/04 v3490 L3 Experimental control structures
\g_prg_map_int=\count125
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3clist.sty
Package: l3clist 2012/03/04 v3490 L3 Experimental comma separated lists
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3token.sty
Package: l3token 2012/03/04 v3491 L3 Experimental token manipulation
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3prop.sty
Package: l3prop 2012/03/04 v3490 L3 Experimental property lists
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3msg.sty
Package: l3msg 2012/04/23 v3568 L3 Experimental messages
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3file.sty
Package: l3file 2012/03/09 v3520 L3 Experimental file and I/O operations
\l_iow_stream_int=\count126
\l_iow_line_length_int=\count127
\l_iow_target_length_int=\count128
\l_iow_current_line_int=\count129
\l_iow_current_word_int=\count130
\l_iow_current_indentation_int=\count131
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3skip.sty
Package: l3skip 2012/03/05 v3499 L3 Experimental dimensions and skips
\l_tmpa_dim=\dimen148
\l_tmpb_dim=\dimen149
\l_tmpc_dim=\dimen150
\g_tmpa_dim=\dimen151
\g_tmpb_dim=\dimen152
\l_tmpa_skip=\skip68
\l_tmpb_skip=\skip69
\l_tmpc_skip=\skip70
\g_tmpa_skip=\skip71
\g_tmpb_skip=\skip72
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3keys.sty
Package: l3keys 2012/03/03 v3487 L3 Experimental key-value interfaces
\g_keyval_level_int=\count132
\l_keys_choice_int=\count133
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3fp.sty
Package: l3fp 2012/03/04 v3490 L3 Experimental floating-point operations
\c_one_million=\count134
\c_one_hundred_million=\count135
\c_five_hundred_million=\count136
\c_one_thousand_million=\count137
\c_fp_pi_by_four_decimal_int=\count138
\c_fp_pi_by_four_extended_int=\count139
\c_fp_pi_decimal_int=\count140
\c_fp_pi_extended_int=\count141
\c_fp_two_pi_decimal_int=\count142
\c_fp_two_pi_extended_int=\count143
\l_fp_count_int=\count144
\l_fp_div_offset_int=\count145
\l_fp_exp_integer_int=\count146
\l_fp_exp_decimal_int=\count147
\l_fp_exp_extended_int=\count148
\l_fp_exp_exponent_int=\count149
\l_fp_input_a_sign_int=\count150
\l_fp_input_a_integer_int=\count151
\l_fp_input_a_decimal_int=\count152
\l_fp_input_a_exponent_int=\count153
\l_fp_input_b_sign_int=\count154
\l_fp_input_b_integer_int=\count155
\l_fp_input_b_decimal_int=\count156
\l_fp_input_b_exponent_int=\count157
\l_fp_input_a_extended_int=\count158
\l_fp_input_b_extended_int=\count159
\l_fp_mul_a_i_int=\count160
\l_fp_mul_a_ii_int=\count161
\l_fp_mul_a_iii_int=\count162
\l_fp_mul_a_iv_int=\count163
\l_fp_mul_a_v_int=\count164
\l_fp_mul_a_vi_int=\count165
\l_fp_mul_b_i_int=\count166
\l_fp_mul_b_ii_int=\count167
\l_fp_mul_b_iii_int=\count168
\l_fp_mul_b_iv_int=\count169
\l_fp_mul_b_v_int=\count170
\l_fp_mul_b_vi_int=\count171
\l_fp_mul_output_int=\count172
\l_fp_output_sign_int=\count173
\l_fp_output_integer_int=\count174
\l_fp_output_decimal_int=\count175
\l_fp_output_exponent_int=\count176
\l_fp_output_extended_int=\count177
\l_fp_round_position_int=\count178
\l_fp_round_target_int=\count179
\l_fp_split_sign_int=\count180
\l_fp_internal_int=\count181
\l_fp_trig_octant_int=\count182
\l_fp_trig_sign_int=\count183
\l_fp_trig_decimal_int=\count184
\l_fp_trig_extended_int=\count185
\l_fp_internal_dim=\dimen153
\l_fp_internal_skip=\skip73
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3box.sty
Package: l3box 2012/03/04 v3490 L3 Experimental boxes
\l_tmpb_box=\box60
\l_box_top_dim=\dimen154
\l_box_bottom_dim=\dimen155
\l_box_left_dim=\dimen156
\l_box_right_dim=\dimen157
\l_box_top_new_dim=\dimen158
\l_box_bottom_new_dim=\dimen159
\l_box_left_new_dim=\dimen160
\l_box_right_new_dim=\dimen161
\l_box_internal_box=\box61
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3coffins.sty
Package: l3coffins 2012/03/03 v3482 L3 Experimental coffin code layer
\l_coffin_internal_box=\box62
\l_coffin_internal_dim=\dimen162
\l_coffin_offset_x_dim=\dimen163
\l_coffin_offset_y_dim=\dimen164
\l_coffin_x_dim=\dimen165
\l_coffin_y_dim=\dimen166
\l_coffin_x_prime_dim=\dimen167
\l_coffin_y_prime_dim=\dimen168
\l_coffin_Depth_dim=\dimen169
\l_coffin_Height_dim=\dimen170
\l_coffin_TotalHeight_dim=\dimen171
\l_coffin_Width_dim=\dimen172
\c_empty_coffin=\box63
\l_coffin_aligned_coffin=\box64
\l_coffin_aligned_internal_coffin=\box65
\l_coffin_bounding_shift_dim=\dimen173
\l_coffin_left_corner_dim=\dimen174
\l_coffin_right_corner_dim=\dimen175
\l_coffin_bottom_corner_dim=\dimen176
\l_coffin_top_corner_dim=\dimen177
\l_coffin_scaled_total_height_dim=\dimen178
\l_coffin_scaled_width_dim=\dimen179
\l_coffin_display_coffin=\box66
\l_coffin_display_coord_coffin=\box67
\l_coffin_display_pole_coffin=\box68
\l_coffin_display_offset_dim=\dimen180
\l_coffin_display_x_dim=\dimen181
\l_coffin_display_y_dim=\dimen182
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3color.sty
Package: l3color 2011/09/07 v2776 L3 Experimental colour support
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3luatex.sty
Package: l3luatex 2012/02/09 v3355 L3 Experimental LuaTeX-specific functions
\g_cctab_allocate_int=\count186
\g_cctab_stack_int=\count187
))
Package: siunitx 2012/05/03 v2.5c A comprehensive (SI) units package
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks17
\ex@=\dimen183
))
(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
Package: array 2008/09/09 v2.4c Tabular extension package (FMi)
\col@sep=\dimen184
\extrarowheight=\dimen185
\NC@list=\toks18
\extratabsurround=\skip74
\backup@length=\skip75
)
(/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
Package: xparse 2012/04/23 v3570 L3 Experimental document command parser
\l_xparse_current_arg_int=\count188
\l_xparse_m_args_int=\count189
\l_xparse_mandatory_args_int=\count190
\l_xparse_processor_int=\count191
\l_xparse_v_nesting_int=\count192
)
Package: l3keys2e 2012/04/23 v3570 LaTeX2e option processing using LaTeX3 keys
)
\l_siunitx_tmp_box=\box69
\l_siunitx_tmp_dim=\dimen186
\l_siunitx_tmp_int=\count193
Variant \prop_get:NVNT already defined; not changing it on line 360
Variant \prop_get:NVNF already defined; not changing it on line 361
Variant \prop_get:NVNTF already defined; not changing it on line 362
\l_siunitx_number_mantissa_length_int=\count194
\l_siunitx_number_uncert_length_int=\count195
\l_siunitx_round_int=\count196
\l_siunitx_process_decimal_int=\count197
\l_siunitx_process_uncertainty_int=\count198
\l_siunitx_process_fixed_int=\count199
\l_siunitx_process_integer_min_int=\count200
\l_siunitx_process_precision_int=\count201
Normal \count register pool exhausted, switching to extended pool.
\l_siunitx_group_min_int=\count277
\l_siunitx_angle_marker_box=\box70
\l_siunitx_angle_unit_box=\box71
\l_siunitx_angle_marker_dim=\dimen187
\l_siunitx_angle_unit_dim=\dimen188
\l_siunitx_unit_int=\count278
\l_siunitx_unit_denominator_int=\count279
\l_siunitx_unit_numerator_int=\count280
\l_siunitx_unit_prefix_int=\count281
\l_siunitx_unit_prefix_base_int=\count282
\l_siunitx_unit_prefix_gram_int=\count283
\l_siunitx_number_product_int=\count284
\c_siunitx_one_fill_skip=\skip76
\l_siunitx_table_unit_align_skip=\skip77
\l_siunitx_table_exponent_dim=\dimen189
\l_siunitx_table_integer_dim=\dimen190
\l_siunitx_table_mantissa_dim=\dimen191
\l_siunitx_table_marker_dim=\dimen192
\l_siunitx_table_result_dim=\dimen193
\l_siunitx_table_uncert_dim=\dimen194
\l_siunitx_table_fill_pre_dim=\dimen195
\l_siunitx_table_fill_post_dim=\dimen196
\l_siunitx_table_fill_mid_dim=\dimen197
\l_siunitx_table_pre_box=\box72
\l_siunitx_table_post_box=\box73
\l_siunitx_table_mantissa_box=\box74
\l_siunitx_table_result_box=\box75
\l_siunitx_table_number_align_skip=\skip78
\l_siunitx_table_text_align_skip=\skip79
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareBinaryPrefix with arg. spec. 'mmm' on line
. 7037.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareSIPostPower with arg. spec. 'mm' on line
. 7040.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareSIPrefix with arg. spec. 'mmm' on line
. 7043.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareSIPrePower with arg. spec. 'mm' on line
. 7046.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareSIQualifier with arg. spec. 'mm' on line
. 7049.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareSIUnit with arg. spec. 'O{}mm' on line
. 7052.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareSIUnitWithOptions with arg. spec. 'mmm' on
. line 7055.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \ang with arg. spec. 'o>{\SplitArgument {2}{;}}m'
. on line 7070.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \num with arg. spec. 'om' on line 7078.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \numlist with arg. spec. 'o>{\SplitList {;}}m' on
. line 7086.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \numrange with arg. spec. 'omm' on line 7094.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \SIlist with arg. spec. 'o>{\SplitList {;}}mm' on
. line 7105.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \SIrange with arg. spec. 'ommm' on line 7116.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \SI with arg. spec. 'omom' on line 7127.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \sisetup with arg. spec. 'm' on line 7130.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \tablenum with arg. spec. 'om' on line 7142.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \si with arg. spec. 'om' on line 7153.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \siunitx_bookmark_num:w with arg. spec. 'om' on
. line 7197.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \siunitx_bookmark_numrange:w with arg. spec. 'omm'
. on line 7199.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \siunitx_bookmark_SI:w with arg. spec. 'omom' on
. line 7201.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \siunitx_bookmark_SIlist:w with arg. spec. 'omm'
. on line 7203.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \siunitx_bookmark_SIrange:w with arg. spec. 'ommm'
. on line 7205.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \siunitx_bookmark_si:w with arg. spec. 'om' on
. line 7206.
.................................................
\g_ior_internal_ior=\read1
(/usr/share/texmf/tex/latex/beamer/base/translator/translator.sty
Package: translator 2010/06/12 ver 1.10
(/usr/share/texmf/tex/latex/beamer/base/translator/translator-language-mappings
.tex))) (/usr/share/texlive/texmf-dist/tex/latex/mh/mathtools.sty
Package: mathtools 2012/04/24 v1.12 mathematical typesetting tools
(/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2007/08/22 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count285
\calc@Bcount=\count286
\calc@Adimen=\dimen198
\calc@Bdimen=\dimen199
\calc@Askip=\skip80
\calc@Bskip=\skip81
LaTeX Info: Redefining \setlength on input line 76.
LaTeX Info: Redefining \addtolength on input line 77.
\calc@Ccount=\count287
\calc@Cskip=\skip82
)
(/usr/share/texlive/texmf-dist/tex/latex/mh/mhsetup.sty
Package: mhsetup 2010/01/21 v1.2a programming setup (MH)
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip83
For additional information on amsmath, use the `?' option.
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen200
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count288
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count289
\leftroot@=\count290
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count291
\DOTSCASE@=\count292
LaTeX Info: Redefining \ldots on input line 379.
LaTeX Info: Redefining \dots on input line 382.
LaTeX Info: Redefining \cdots on input line 467.
\Mathstrutbox@=\box76
\strutbox@=\box77
\big@size=\dimen201
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count293
\c@MaxMatrixCols=\count294
\dotsspace@=\muskip10
\c@parentequation=\count295
\dspbrk@lvl=\count296
\tag@help=\toks19
\row@=\count297
\column@=\count298
\maxfields@=\count299
\andhelp@=\toks20
Normal \dimen register pool exhausted, switching to extended pool.
\eqnshift@=\dimen256
\alignsep@=\dimen257
\tagshift@=\dimen258
\tagwidth@=\dimen259
\totwidth@=\dimen260
\lineht@=\dimen261
\@envbody=\toks21
\multlinegap=\skip84
\multlinetaggap=\skip85
\mathdisplay@stack=\toks22
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
\g_MT_multlinerow_int=\count300
\l_MT_multwidth_dim=\dimen262
\origjot=\skip86
\l_MT_shortvdotswithinadjustabove_dim=\dimen263
\l_MT_shortvdotswithinadjustbelow_dim=\dimen264
\l_MT_above_intertext_dim=\dimen265
\l_MT_below_intertext_dim=\dimen266
\l_MT_above_shortintertext_dim=\dimen267
\l_MT_below_shortintertext_dim=\dimen268
)
(/usr/share/texlive/texmf-dist/tex/latex/mh/breqn.sty
Package: breqn 2012/05/10 v0.98b Breaking equations
(/usr/share/texlive/texmf-dist/tex/latex/mh/flexisym.sty
Package: flexisym 2010/09/17 v0.97b Make math characters macros
LaTeX Info: Redefining \textprime on input line 296.
LaTeX Info: Redefining \not on input line 354.
(/usr/share/texlive/texmf-dist/tex/latex/mh/cmbase.sym
File: cmbase.sym 2007/12/19 v0.92
LaTeX Info: Redefining \hbar on input line 323.
LaTeX Info: Redefining \surd on input line 325.
LaTeX Info: Redefining \angle on input line 333.
LaTeX Info: Redefining \neq on input line 334.
LaTeX Info: Redefining \mapsto on input line 335.
LaTeX Info: Redefining \cong on input line 336.
LaTeX Info: Redefining \notin on input line 339.
LaTeX Info: Redefining \rightleftharpoons on input line 340.
LaTeX Info: Redefining \doteq on input line 341.
LaTeX Info: Redefining \hookrightarrow on input line 342.
LaTeX Info: Redefining \hookleftarrow on input line 343.
LaTeX Info: Redefining \bowtie on input line 344.
LaTeX Info: Redefining \models on input line 345.
LaTeX Info: Redefining \Longrightarrow on input line 346.
LaTeX Info: Redefining \longrightarrow on input line 347.
LaTeX Info: Redefining \Longleftarrow on input line 348.
LaTeX Info: Redefining \longleftarrow on input line 349.
LaTeX Info: Redefining \longmapsto on input line 350.
LaTeX Info: Redefining \longleftrightarrow on input line 351.
LaTeX Info: Redefining \Longleftrightarrow on input line 352.
LaTeX Info: Redefining \cdots on input line 356.
LaTeX Info: Redefining \vdots on input line 359.
LaTeX Info: Redefining \ddots on input line 364.
)
(/usr/share/texlive/texmf-dist/tex/latex/mh/mathstyle.sty
Package: mathstyle 2011/08/03 v0.90 Tracking mathstyle implicitly
LaTeX Info: Redefining \displaystyle on input line 81.
LaTeX Info: Redefining \textstyle on input line 83.
LaTeX Info: Redefining \scriptstyle on input line 85.
LaTeX Info: Redefining \scriptscriptstyle on input line 87.
LaTeX Info: Redefining \genfrac on input line 121.
))
\inf@bad=\count301
\maxint=\count302
\listwidth=\dimen269
\eqnumsep=\dimen270
\eqmargin=\dimen271
\eqlinespacing=\skip87
\eqlineskip=\skip88
\eqlineskiplimit=\dimen272
\eqbinoffset=\muskip11
\eqdelimoffset=\muskip12
\eqindentstep=\dimen273
\eqstyle=\toks23
\eqbreakdepth=\count303
\eqinterlinepenalty=\count304
\intereqpenalty=\count305
\intereqskip=\skip89
\prerelpenalty=\count306
\prebinoppenalty=\count307
\Dmedmuskip=\muskip13
\Dthickmuskip=\muskip14
\eqleftskip=\skip90
\eqrightskip=\skip91
\eq@vspan=\skip92
\eq@binoffset=\muskip15
\EQ@box=\box78
\EQ@copy=\box79
\EQ@numbox=\box80
\eq@wdNum=\dimen274
\GRP@numbox=\box81
\grp@wdNum=\dimen275
\eq@lines=\count308
\eq@curline=\count309
\eq@badness=\count310
\EQ@vims=\count311
\eq@dp=\dimen276
\eq@wdL=\dimen277
\eq@wdT=\dimen278
\eq@wdMin=\dimen279
\grp@wdL=\dimen280
\grp@wdR=\dimen281
\grp@wdT=\dimen282
\eq@wdRmax=\dimen283
\eq@firstht=\dimen284
\eq@wdCond=\dimen285
\eq@indentstep=\dimen286
\eq@linewidth=\dimen287
\grp@linewidth=\dimen288
\eq@hshift=\dimen289
\eq@given@sidespace=\dimen290
\mathindent=\dimen291
\eq@final@linecount=\count312
\eq@wdR=\dimen292
\EQ@continue=\toks24
\lr@level=\count313
\GRP@queue=\toks25
\GRP@box=\box82
\GRP@wholebox=\box83
\darraycolsep=\skip93
\cur@row=\count314
\cur@col=\count315
\conditionsep=\skip94
)
(/usr/share/texlive/texmf-dist/tex/latex/placeins/placeins.sty
Package: placeins 2005/04/18 v 2.2
)
(/usr/share/texlive/texmf-dist/tex/latex/preprint/balance.sty
Package: balance 1999/02/23 4.3 (PWD)
\oldvsize=\dimen293
) (./StreamNet.aux
LaTeX Warning: Label `simple_equation' multiply defined.
)
\openout1 = `StreamNet.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 28.
LaTeX Font Info: ... okay on input line 28.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 28.
LaTeX Font Info: ... okay on input line 28.
(/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count316
\scratchdimen=\dimen294
\scratchbox=\box84
\nofMPsegments=\count317
\nofMParguments=\count318
\everyMPshowfont=\toks26
\MPscratchCnt=\count319
\MPscratchDim=\dimen295
\MPnumerator=\count320
\makeMPintoPDFobject=\count321
\everyMPtoPDFconversion=\toks27
) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty
Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty
Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO)
))
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/etexcmds.sty
Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
)))
Package grfext Info: Graphics extension search list:
(grfext) [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext) \AppendGraphicsExtensions on input line 452.
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
(/usr/share/texmf/tex/latex/beamer/base/translator/dicts/translator-basic-dicti
onary/translator-basic-dictionary-English.dict
Dictionary: translator-basic-dictionary, Language: English
)
(/usr/share/texlive/texmf-dist/tex/latex/siunitx/config/siunitx-abbreviations.c
fg
File: siunitx-abbreviations.cfg 2012/05/03 v2.5c siunitx: Abbreviated units
) (/usr/share/texlive/texmf-dist/tex/latex/siunitx/config/siunitx-binary.cfg
File: siunitx-binary.cfg 2012/05/03 v2.5c siunitx: Binary units
)
\c_siunitx_mathsf_int=\count322
LaTeX Font Info: Try loading font information for U+msa on input line 28.
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2009/06/22 v3.00 AMS symbols A
)
LaTeX Font Info: Try loading font information for U+msb on input line 28.
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd