-
Notifications
You must be signed in to change notification settings - Fork 0
/
mrowe-isp-filters-v1.log
993 lines (812 loc) · 39.4 KB
/
mrowe-isp-filters-v1.log
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
This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian) (format=pdflatex 2015.1.15) 2 JUL 2015 09:22
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**mrowe-isp-filters-v1.tex
(./mrowe-isp-filters-v1.tex
LaTeX2e <2011/06/27>
Babel <3.9h> and hyphenation patterns for 78 languages loaded.
(./bmcart.cls
Document Class: bmcart 2014/01/24BioMed Central class (VS)
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
File: size10.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
\c@part=\count79
\c@section=\count80
\c@subsection=\count81
\c@subsubsection=\count82
\c@paragraph=\count83
\c@subparagraph=\count84
\c@figure=\count85
\c@table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
\mathindent=\dimen103
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
(/usr/share/texmf/tex/latex/xcolor/xcolor.sty
Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
(/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=\count87
)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1341.
Package xcolor Info: Model `RGB' extended on input line 1353.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360.
)
(/usr/share/texlive/texmf-dist/tex/latex/lastpage/lastpage.sty
Package: lastpage 2013/01/28 v1.2l Refers to last page's name (HMM; JPG)
)
\c@thanks=\count88
\bmcfloat@box=\box26
\c@author=\count89
\c@address=\count90
\sv@mathsurround=\dimen104
\fm@box=\box27
\c@addressref=\count91
\thanks@box=\box28
\abstract@box=\box29
\authors@list=\toks15
\keywords@list=\toks16
)
(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2008/03/30 v1.1d Input encoding file
\inpenc@prehook=\toks17
\inpenc@posthook=\toks18
(/usr/share/texlive/texmf-dist/tex/latex/base/utf8.def
File: utf8.def 2008/04/05 v1.1m UTF-8 support for inputenc
Now handling font encoding OML ...
... no UTF-8 mapping file for font encoding OML
Now handling font encoding T1 ...
... processing UTF-8 mapping file for font encoding T1
(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu
File: t1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
defining Unicode char U+00A1 (decimal 161)
defining Unicode char U+00A3 (decimal 163)
defining Unicode char U+00AB (decimal 171)
defining Unicode char U+00BB (decimal 187)
defining Unicode char U+00BF (decimal 191)
defining Unicode char U+00C0 (decimal 192)
defining Unicode char U+00C1 (decimal 193)
defining Unicode char U+00C2 (decimal 194)
defining Unicode char U+00C3 (decimal 195)
defining Unicode char U+00C4 (decimal 196)
defining Unicode char U+00C5 (decimal 197)
defining Unicode char U+00C6 (decimal 198)
defining Unicode char U+00C7 (decimal 199)
defining Unicode char U+00C8 (decimal 200)
defining Unicode char U+00C9 (decimal 201)
defining Unicode char U+00CA (decimal 202)
defining Unicode char U+00CB (decimal 203)
defining Unicode char U+00CC (decimal 204)
defining Unicode char U+00CD (decimal 205)
defining Unicode char U+00CE (decimal 206)
defining Unicode char U+00CF (decimal 207)
defining Unicode char U+00D0 (decimal 208)
defining Unicode char U+00D1 (decimal 209)
defining Unicode char U+00D2 (decimal 210)
defining Unicode char U+00D3 (decimal 211)
defining Unicode char U+00D4 (decimal 212)
defining Unicode char U+00D5 (decimal 213)
defining Unicode char U+00D6 (decimal 214)
defining Unicode char U+00D8 (decimal 216)
defining Unicode char U+00D9 (decimal 217)
defining Unicode char U+00DA (decimal 218)
defining Unicode char U+00DB (decimal 219)
defining Unicode char U+00DC (decimal 220)
defining Unicode char U+00DD (decimal 221)
defining Unicode char U+00DE (decimal 222)
defining Unicode char U+00DF (decimal 223)
defining Unicode char U+00E0 (decimal 224)
defining Unicode char U+00E1 (decimal 225)
defining Unicode char U+00E2 (decimal 226)
defining Unicode char U+00E3 (decimal 227)
defining Unicode char U+00E4 (decimal 228)
defining Unicode char U+00E5 (decimal 229)
defining Unicode char U+00E6 (decimal 230)
defining Unicode char U+00E7 (decimal 231)
defining Unicode char U+00E8 (decimal 232)
defining Unicode char U+00E9 (decimal 233)
defining Unicode char U+00EA (decimal 234)
defining Unicode char U+00EB (decimal 235)
defining Unicode char U+00EC (decimal 236)
defining Unicode char U+00ED (decimal 237)
defining Unicode char U+00EE (decimal 238)
defining Unicode char U+00EF (decimal 239)
defining Unicode char U+00F0 (decimal 240)
defining Unicode char U+00F1 (decimal 241)
defining Unicode char U+00F2 (decimal 242)
defining Unicode char U+00F3 (decimal 243)
defining Unicode char U+00F4 (decimal 244)
defining Unicode char U+00F5 (decimal 245)
defining Unicode char U+00F6 (decimal 246)
defining Unicode char U+00F8 (decimal 248)
defining Unicode char U+00F9 (decimal 249)
defining Unicode char U+00FA (decimal 250)
defining Unicode char U+00FB (decimal 251)
defining Unicode char U+00FC (decimal 252)
defining Unicode char U+00FD (decimal 253)
defining Unicode char U+00FE (decimal 254)
defining Unicode char U+00FF (decimal 255)
defining Unicode char U+0102 (decimal 258)
defining Unicode char U+0103 (decimal 259)
defining Unicode char U+0104 (decimal 260)
defining Unicode char U+0105 (decimal 261)
defining Unicode char U+0106 (decimal 262)
defining Unicode char U+0107 (decimal 263)
defining Unicode char U+010C (decimal 268)
defining Unicode char U+010D (decimal 269)
defining Unicode char U+010E (decimal 270)
defining Unicode char U+010F (decimal 271)
defining Unicode char U+0110 (decimal 272)
defining Unicode char U+0111 (decimal 273)
defining Unicode char U+0118 (decimal 280)
defining Unicode char U+0119 (decimal 281)
defining Unicode char U+011A (decimal 282)
defining Unicode char U+011B (decimal 283)
defining Unicode char U+011E (decimal 286)
defining Unicode char U+011F (decimal 287)
defining Unicode char U+0130 (decimal 304)
defining Unicode char U+0131 (decimal 305)
defining Unicode char U+0132 (decimal 306)
defining Unicode char U+0133 (decimal 307)
defining Unicode char U+0139 (decimal 313)
defining Unicode char U+013A (decimal 314)
defining Unicode char U+013D (decimal 317)
defining Unicode char U+013E (decimal 318)
defining Unicode char U+0141 (decimal 321)
defining Unicode char U+0142 (decimal 322)
defining Unicode char U+0143 (decimal 323)
defining Unicode char U+0144 (decimal 324)
defining Unicode char U+0147 (decimal 327)
defining Unicode char U+0148 (decimal 328)
defining Unicode char U+014A (decimal 330)
defining Unicode char U+014B (decimal 331)
defining Unicode char U+0150 (decimal 336)
defining Unicode char U+0151 (decimal 337)
defining Unicode char U+0152 (decimal 338)
defining Unicode char U+0153 (decimal 339)
defining Unicode char U+0154 (decimal 340)
defining Unicode char U+0155 (decimal 341)
defining Unicode char U+0158 (decimal 344)
defining Unicode char U+0159 (decimal 345)
defining Unicode char U+015A (decimal 346)
defining Unicode char U+015B (decimal 347)
defining Unicode char U+015E (decimal 350)
defining Unicode char U+015F (decimal 351)
defining Unicode char U+0160 (decimal 352)
defining Unicode char U+0161 (decimal 353)
defining Unicode char U+0162 (decimal 354)
defining Unicode char U+0163 (decimal 355)
defining Unicode char U+0164 (decimal 356)
defining Unicode char U+0165 (decimal 357)
defining Unicode char U+016E (decimal 366)
defining Unicode char U+016F (decimal 367)
defining Unicode char U+0170 (decimal 368)
defining Unicode char U+0171 (decimal 369)
defining Unicode char U+0178 (decimal 376)
defining Unicode char U+0179 (decimal 377)
defining Unicode char U+017A (decimal 378)
defining Unicode char U+017B (decimal 379)
defining Unicode char U+017C (decimal 380)
defining Unicode char U+017D (decimal 381)
defining Unicode char U+017E (decimal 382)
defining Unicode char U+200C (decimal 8204)
defining Unicode char U+2013 (decimal 8211)
defining Unicode char U+2014 (decimal 8212)
defining Unicode char U+2018 (decimal 8216)
defining Unicode char U+2019 (decimal 8217)
defining Unicode char U+201A (decimal 8218)
defining Unicode char U+201C (decimal 8220)
defining Unicode char U+201D (decimal 8221)
defining Unicode char U+201E (decimal 8222)
defining Unicode char U+2030 (decimal 8240)
defining Unicode char U+2031 (decimal 8241)
defining Unicode char U+2039 (decimal 8249)
defining Unicode char U+203A (decimal 8250)
defining Unicode char U+2423 (decimal 9251)
)
Now handling font encoding OT1 ...
... processing UTF-8 mapping file for font encoding OT1
(/usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu
File: ot1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
defining Unicode char U+00A1 (decimal 161)
defining Unicode char U+00A3 (decimal 163)
defining Unicode char U+00B8 (decimal 184)
defining Unicode char U+00BF (decimal 191)
defining Unicode char U+00C5 (decimal 197)
defining Unicode char U+00C6 (decimal 198)
defining Unicode char U+00D8 (decimal 216)
defining Unicode char U+00DF (decimal 223)
defining Unicode char U+00E6 (decimal 230)
defining Unicode char U+00EC (decimal 236)
defining Unicode char U+00ED (decimal 237)
defining Unicode char U+00EE (decimal 238)
defining Unicode char U+00EF (decimal 239)
defining Unicode char U+00F8 (decimal 248)
defining Unicode char U+0131 (decimal 305)
defining Unicode char U+0141 (decimal 321)
defining Unicode char U+0142 (decimal 322)
defining Unicode char U+0152 (decimal 338)
defining Unicode char U+0153 (decimal 339)
defining Unicode char U+2013 (decimal 8211)
defining Unicode char U+2014 (decimal 8212)
defining Unicode char U+2018 (decimal 8216)
defining Unicode char U+2019 (decimal 8217)
defining Unicode char U+201C (decimal 8220)
defining Unicode char U+201D (decimal 8221)
)
Now handling font encoding OMS ...
... processing UTF-8 mapping file for font encoding OMS
(/usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu
File: omsenc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
defining Unicode char U+00A7 (decimal 167)
defining Unicode char U+00B6 (decimal 182)
defining Unicode char U+00B7 (decimal 183)
defining Unicode char U+2020 (decimal 8224)
defining Unicode char U+2021 (decimal 8225)
defining Unicode char U+2022 (decimal 8226)
)
Now handling font encoding OMX ...
... no UTF-8 mapping file for font encoding OMX
Now handling font encoding U ...
... no UTF-8 mapping file for font encoding U
defining Unicode char U+00A9 (decimal 169)
defining Unicode char U+00AA (decimal 170)
defining Unicode char U+00AE (decimal 174)
defining Unicode char U+00BA (decimal 186)
defining Unicode char U+02C6 (decimal 710)
defining Unicode char U+02DC (decimal 732)
defining Unicode char U+200C (decimal 8204)
defining Unicode char U+2026 (decimal 8230)
defining Unicode char U+2122 (decimal 8482)
defining Unicode char U+2423 (decimal 9251)
))
(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip10
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
(/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/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
\Gin@req@height=\dimen105
\Gin@req@width=\dimen106
)
(/usr/share/texlive/texmf-dist/tex/latex/multirow/multirow.sty
\bigstrutjot=\dimen107
)
(./mrowe-isp-filters-v1.aux)
\openout1 = `mrowe-isp-filters-v1.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 89.
LaTeX Font Info: ... okay on input line 89.
(/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count92
\scratchdimen=\dimen108
\scratchbox=\box30
\nofMPsegments=\count93
\nofMParguments=\count94
\everyMPshowfont=\toks19
\MPscratchCnt=\count95
\MPscratchDim=\dimen109
\MPnumerator=\count96
\makeMPintoPDFobject=\count97
\everyMPtoPDFconversion=\toks20
)
Package lastpage Info: Please have a look at the pageslts package at
(lastpage) http://www.ctan.org/tex-archive/
(lastpage) macros/latex/contrib/pageslts/
(lastpage) or
(lastpage) http://www.ctan.org/tex-archive/
(lastpage) install/macros/latex/contrib/pageslts.tds.zip
(lastpage) ! on input line 89.
(/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
))
LaTeX Font Warning: Font shape `OT1/cmss/bx/n' in size <13> not available
(Font) size <12> substituted on input line 94.
LaTeX Font Warning: Font shape `OT1/cmss/m/n' in size <24> not available
(Font) size <24.88> substituted on input line 96.
LaTeX Font Info: Calculating math sizes for size <11> on input line 103.
LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <5.5> not available
(Font) size <5> substituted on input line 103.
LaTeX Font Warning: Font shape `OML/cmm/m/it' in size <5.5> not available
(Font) size <5> substituted on input line 103.
LaTeX Font Warning: Font shape `OMS/cmsy/m/n' in size <5.5> not available
(Font) size <5> substituted on input line 103.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <11> on input line 103.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <7.69997> on input line 103.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <5.5> on input line 103.
\address@lancs=\toks21
\address@org=\toks22
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <7> on input line 125.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <5> on input line 125.
LaTeX Font Warning: Font shape `OT1/cmss/m/it' in size <10> not available
(Font) Font shape `OT1/cmss/m/sl' tried instead on input line 130.
LaTeX Font Warning: Font shape `OT1/cmss/m/it' in size <8> not available
(Font) Font shape `OT1/cmss/m/sl' tried instead on input line 204.
Overfull \hbox (1.0pt too wide) has occurred while \output is active
[]
[]
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}
] [2] [3] [4] [5]
Underfull \hbox (badness 10000) in paragraph at lines 322--322
$[]$[]$\OT1/cmtt/m/n/7 http : / / support . vodafone . co . uk / Internet / Con
tent-[]control-[]and-[]Vodafone-[]Guardian / 38914008 /
[]
Underfull \hbox (badness 10000) in paragraph at lines 322--322
\OT1/cmtt/m/n/7 How-[]can-[]I-[]switch-[]off-[]content-[]control-[]so-[]I-[]can
-[]access-[]age-[]restricted-[]content-[]on-[]the-[]internet .
[]
[6]
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <8> on input line 347.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <6> on input line 347.
<imgs/ts-global-requests.pdf, id=33, 722.7pt x 180.675pt>
File: imgs/ts-global-requests.pdf Graphic file (type pdf)
<use imgs/ts-global-requests.pdf>
Package pdftex.def Info: imgs/ts-global-requests.pdf used on input line 369.
(pdftex.def) Requested size: 324.8978pt x 81.22304pt.
<imgs/BT-ts-requests.pdf, id=34, 722.7pt x 180.675pt>
File: imgs/BT-ts-requests.pdf Graphic file (type pdf)
<use imgs/BT-ts-requests.pdf>
Package pdftex.def Info: imgs/BT-ts-requests.pdf used on input line 378.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/Plusnet-ts-requests.pdf, id=35, 722.7pt x 180.675pt>
File: imgs/Plusnet-ts-requests.pdf Graphic file (type pdf)
<use imgs/Plusnet-ts-requests.pdf>
Package pdftex.def Info: imgs/Plusnet-ts-requests.pdf used on input line 378.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/Sky-ts-requests.pdf, id=36, 722.7pt x 180.675pt>
File: imgs/Sky-ts-requests.pdf Graphic file (type pdf)
<use imgs/Sky-ts-requests.pdf>
Package pdftex.def Info: imgs/Sky-ts-requests.pdf used on input line 379.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/TalkTalk-ts-requests.pdf, id=37, 722.7pt x 180.675pt>
File: imgs/TalkTalk-ts-requests.pdf Graphic file (type pdf)
<use imgs/TalkTalk-ts-requests.pdf>
Package pdftex.def Info: imgs/TalkTalk-ts-requests.pdf used on input line 379.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/VirginMedia-ts-requests.pdf, id=38, 722.7pt x 180.675pt>
File: imgs/VirginMedia-ts-requests.pdf Graphic file (type pdf)
<use imgs/VirginMedia-ts-requests.pdf>
Package pdftex.def Info: imgs/VirginMedia-ts-requests.pdf used on input line 38
0.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
Overfull \hbox (5.28397pt too wide) in paragraph at lines 378--382
[][][]
[]
Overfull \hbox (5.28397pt too wide) in paragraph at lines 378--382
[][]
[]
LaTeX Warning: `!h' float specifier changed to `!ht'.
[7] <imgs/EE-ts-requests.pdf, id=43, 722.7pt x 180.675pt>
File: imgs/EE-ts-requests.pdf Graphic file (type pdf)
<use imgs/EE-ts-requests.pdf>
Package pdftex.def Info: imgs/EE-ts-requests.pdf used on input line 390.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/O2-ts-requests.pdf, id=44, 722.7pt x 180.675pt>
File: imgs/O2-ts-requests.pdf Graphic file (type pdf)
<use imgs/O2-ts-requests.pdf>
Package pdftex.def Info: imgs/O2-ts-requests.pdf used on input line 390.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/T-Mobile-ts-requests.pdf, id=45, 722.7pt x 180.675pt>
File: imgs/T-Mobile-ts-requests.pdf Graphic file (type pdf)
<use imgs/T-Mobile-ts-requests.pdf>
Package pdftex.def Info: imgs/T-Mobile-ts-requests.pdf used on input line 391.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/Three-ts-requests.pdf, id=46, 722.7pt x 180.675pt>
File: imgs/Three-ts-requests.pdf Graphic file (type pdf)
<use imgs/Three-ts-requests.pdf>
Package pdftex.def Info: imgs/Three-ts-requests.pdf used on input line 391.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/Vodafone-ts-requests.pdf, id=47, 722.7pt x 180.675pt>
File: imgs/Vodafone-ts-requests.pdf Graphic file (type pdf)
<use imgs/Vodafone-ts-requests.pdf>
Package pdftex.def Info: imgs/Vodafone-ts-requests.pdf used on input line 392.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
Overfull \hbox (5.28397pt too wide) in paragraph at lines 390--394
[][][]
[]
Overfull \hbox (5.28397pt too wide) in paragraph at lines 390--394
[][]
[]
Underfull \vbox (badness 10000) has occurred while \output is active []
[8 <./imgs/ts-global-requests.pdf> <./imgs/BT-ts-requests.pdf> <./imgs/Plusnet
-ts-requests.pdf> <./imgs/Sky-ts-requests.pdf> <./imgs/TalkTalk-ts-requests.pdf
> <./imgs/VirginMedia-ts-requests.pdf> <./imgs/EE-ts-requests.pdf> <./imgs/O2-t
s-requests.pdf> <./imgs/T-Mobile-ts-requests.pdf> <./imgs/Three-ts-requests.pdf
> <./imgs/Vodafone-ts-requests.pdf>]
<imgs/BT-blocked-pages-to-date.png, id=117, 481.8pt x 481.8pt>
File: imgs/BT-blocked-pages-to-date.png Graphic file (type png)
<use imgs/BT-blocked-pages-to-date.png>
Package pdftex.def Info: imgs/BT-blocked-pages-to-date.png used on input line 4
13.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs/Plusnet-blocked-pages-to-date.png, id=119, 481.8pt x 481.8pt>
File: imgs/Plusnet-blocked-pages-to-date.png Graphic file (type png)
<use imgs/Plusnet-blocked-pages-to-date.png>
Package pdftex.def Info: imgs/Plusnet-blocked-pages-to-date.png used on input l
ine 413.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs/Sky-blocked-pages-to-date.png, id=120, 481.8pt x 481.8pt>
File: imgs/Sky-blocked-pages-to-date.png Graphic file (type png)
<use imgs/Sky-blocked-pages-to-date.png>
Package pdftex.def Info: imgs/Sky-blocked-pages-to-date.png used on input line
414.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs/TalkTalk-blocked-pages-to-date.png, id=121, 481.8pt x 481.8pt>
File: imgs/TalkTalk-blocked-pages-to-date.png Graphic file (type png)
<use imgs/TalkTalk-blocked-pages-to-date.png>
Package pdftex.def Info: imgs/TalkTalk-blocked-pages-to-date.png used on input
line 414.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs/VirginMedia-blocked-pages-to-date.png, id=122, 481.8pt x 481.8pt>
File: imgs/VirginMedia-blocked-pages-to-date.png Graphic file (type png)
<use imgs/VirginMedia-blocked-pages-to-date.png>
Package pdftex.def Info: imgs/VirginMedia-blocked-pages-to-date.png used on inp
ut line 415.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
Overfull \hbox (5.28397pt too wide) in paragraph at lines 413--417
[][][]
[]
Overfull \hbox (5.28397pt too wide) in paragraph at lines 413--417
[][]
[]
LaTeX Warning: `!h' float specifier changed to `!ht'.
<imgs/EE-blocked-pages-to-date.png, id=123, 481.8pt x 481.8pt>
File: imgs/EE-blocked-pages-to-date.png Graphic file (type png)
<use imgs/EE-blocked-pages-to-date.png>
Package pdftex.def Info: imgs/EE-blocked-pages-to-date.png used on input line 4
23.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs/O2-blocked-pages-to-date.png, id=124, 481.8pt x 481.8pt>
File: imgs/O2-blocked-pages-to-date.png Graphic file (type png)
<use imgs/O2-blocked-pages-to-date.png>
Package pdftex.def Info: imgs/O2-blocked-pages-to-date.png used on input line 4
23.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs/Three-blocked-pages-to-date.png, id=125, 481.8pt x 481.8pt>
File: imgs/Three-blocked-pages-to-date.png Graphic file (type png)
<use imgs/Three-blocked-pages-to-date.png>
Package pdftex.def Info: imgs/Three-blocked-pages-to-date.png used on input lin
e 424.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs/Vodafone-blocked-pages-to-date.png, id=126, 481.8pt x 481.8pt>
File: imgs/Vodafone-blocked-pages-to-date.png Graphic file (type png)
<use imgs/Vodafone-blocked-pages-to-date.png>
Package pdftex.def Info: imgs/Vodafone-blocked-pages-to-date.png used on input
line 424.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
Overfull \hbox (5.28397pt too wide) in paragraph at lines 423--426
[][][]
[]
Overfull \hbox (5.28397pt too wide) in paragraph at lines 423--426
[][]
[]
LaTeX Warning: `!h' float specifier changed to `!ht'.
LaTeX Font Info: Try loading font information for OMS+cmr on input line 433.
(/usr/share/texlive/texmf-dist/tex/latex/base/omscmr.fd
File: omscmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 433.
Overfull \hbox (160.99573pt too wide) in paragraph at lines 436--437
[]$\OT1/cmtt/m/n/10 http : / / azurelunatic . tumblr . com / post / 18654147576
/ ive-[]been-[]forced-[]to-[]explain-[]homosexuality-[]to-[]my$
[]
[9] [10 <./imgs/BT-blocked-pages-to-date.png> <./imgs/Plusnet-blocked-pages-to-
date.png> <./imgs/Sky-blocked-pages-to-date.png> <./imgs/TalkTalk-blocked-pages
-to-date.png> <./imgs/VirginMedia-blocked-pages-to-date.png>] [11 <./imgs/EE-bl
ocked-pages-to-date.png> <./imgs/O2-blocked-pages-to-date.png> <./imgs/Three-bl
ocked-pages-to-date.png> <./imgs/Vodafone-blocked-pages-to-date.png>]
<imgs/BT-d-4-blocked-categories-to-date.png, id=147, 481.8pt x 481.8pt>
File: imgs/BT-d-4-blocked-categories-to-date.png Graphic file (type png)
<use imgs/BT-d-4-blocked-categories-to-date.png>
Package pdftex.def Info: imgs/BT-d-4-blocked-categories-to-date.png used on inp
ut line 459.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs/Sky-d-4-blocked-categories-to-date.png, id=148, 481.8pt x 481.8pt>
File: imgs/Sky-d-4-blocked-categories-to-date.png Graphic file (type png)
<use imgs/Sky-d-4-blocked-categories-to-date.png>
Package pdftex.def Info: imgs/Sky-d-4-blocked-categories-to-date.png used on in
put line 459.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs/TalkTalk-d-4-blocked-categories-to-date.png, id=149, 481.8pt x 481.8pt>
File: imgs/TalkTalk-d-4-blocked-categories-to-date.png Graphic file (type png)
<use imgs/TalkTalk-d-4-blocked-categories-to-date.png>
Package pdftex.def Info: imgs/TalkTalk-d-4-blocked-categories-to-date.png used
on input line 460.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs//VirginMedia-d-4-blocked-categories-to-date.png, id=150, 481.8pt x 481.8p
t>
File: imgs//VirginMedia-d-4-blocked-categories-to-date.png Graphic file (type p
ng)
<use imgs//VirginMedia-d-4-blocked-categories-to-date.png>
Package pdftex.def Info: imgs//VirginMedia-d-4-blocked-categories-to-date.png u
sed on input line 460.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
Overfull \hbox (5.28397pt too wide) in paragraph at lines 459--462
[][][]
[]
Overfull \hbox (5.28397pt too wide) in paragraph at lines 459--462
[][]
[]
<imgs/EE-d-4-blocked-categories-to-date.png, id=151, 481.8pt x 481.8pt>
File: imgs/EE-d-4-blocked-categories-to-date.png Graphic file (type png)
<use imgs/EE-d-4-blocked-categories-to-date.png>
Package pdftex.def Info: imgs/EE-d-4-blocked-categories-to-date.png used on inp
ut line 468.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs/O2-d-4-blocked-categories-to-date.png, id=152, 481.8pt x 481.8pt>
File: imgs/O2-d-4-blocked-categories-to-date.png Graphic file (type png)
<use imgs/O2-d-4-blocked-categories-to-date.png>
Package pdftex.def Info: imgs/O2-d-4-blocked-categories-to-date.png used on inp
ut line 468.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs/Three-d-4-blocked-categories-to-date.png, id=153, 481.8pt x 481.8pt>
File: imgs/Three-d-4-blocked-categories-to-date.png Graphic file (type png)
<use imgs/Three-d-4-blocked-categories-to-date.png>
Package pdftex.def Info: imgs/Three-d-4-blocked-categories-to-date.png used on
input line 469.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
<imgs/Vodafone-d-4-blocked-categories-to-date.png, id=154, 481.8pt x 481.8pt>
File: imgs/Vodafone-d-4-blocked-categories-to-date.png Graphic file (type png)
<use imgs/Vodafone-d-4-blocked-categories-to-date.png>
Package pdftex.def Info: imgs/Vodafone-d-4-blocked-categories-to-date.png used
on input line 469.
(pdftex.def) Requested size: 176.89198pt x 176.88844pt.
Overfull \hbox (5.28397pt too wide) in paragraph at lines 468--471
[][][]
[]
Overfull \hbox (5.28397pt too wide) in paragraph at lines 468--471
[][]
[]
[12 <./imgs/BT-d-4-blocked-categories-to-date.png> <./imgs/Sky-d-4-blocked-cate
gories-to-date.png> <./imgs/TalkTalk-d-4-blocked-categories-to-date.png> <./img
s//VirginMedia-d-4-blocked-categories-to-date.png>] [13 <./imgs/EE-d-4-blocked-
categories-to-date.png> <./imgs/O2-d-4-blocked-categories-to-date.png> <./imgs/
Three-d-4-blocked-categories-to-date.png> <./imgs/Vodafone-d-4-blocked-categori
es-to-date.png>]
LaTeX Warning: `!h' float specifier changed to `!ht'.
[14]
Overfull \hbox (37.75699pt too wide) detected at line 616
$ \OML/cmm/m/it/10 precision \OT1/cmr/m/n/10 = []\OML/cmm/m/it/10 ; recall \OT
1/cmr/m/n/10 = []\OML/cmm/m/it/10 ; F\OT1/cmr/m/n/10 1 = []$ []
[]
[15]
LaTeX Warning: `!h' float specifier changed to `!ht'.
[16] <imgs/BT-ts-accuracy.pdf, id=181, 722.7pt x 180.675pt>
File: imgs/BT-ts-accuracy.pdf Graphic file (type pdf)
<use imgs/BT-ts-accuracy.pdf>
Package pdftex.def Info: imgs/BT-ts-accuracy.pdf used on input line 813.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/Sky-ts-accuracy.pdf, id=182, 722.7pt x 180.675pt>
File: imgs/Sky-ts-accuracy.pdf Graphic file (type pdf)
<use imgs/Sky-ts-accuracy.pdf>
Package pdftex.def Info: imgs/Sky-ts-accuracy.pdf used on input line 813.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/TalkTalk-ts-accuracy.pdf, id=183, 722.7pt x 180.675pt>
File: imgs/TalkTalk-ts-accuracy.pdf Graphic file (type pdf)
<use imgs/TalkTalk-ts-accuracy.pdf>
Package pdftex.def Info: imgs/TalkTalk-ts-accuracy.pdf used on input line 814.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/VirginMedia-ts-accuracy.pdf, id=184, 722.7pt x 180.675pt>
File: imgs/VirginMedia-ts-accuracy.pdf Graphic file (type pdf)
<use imgs/VirginMedia-ts-accuracy.pdf>
Package pdftex.def Info: imgs/VirginMedia-ts-accuracy.pdf used on input line 81
4.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
Overfull \hbox (5.28397pt too wide) in paragraph at lines 813--816
[][][]
[]
Overfull \hbox (5.28397pt too wide) in paragraph at lines 813--816
[][]
[]
LaTeX Warning: `!h' float specifier changed to `!ht'.
<imgs/EE-ts-accuracy.pdf, id=185, 722.7pt x 180.675pt>
File: imgs/EE-ts-accuracy.pdf Graphic file (type pdf)
<use imgs/EE-ts-accuracy.pdf>
Package pdftex.def Info: imgs/EE-ts-accuracy.pdf used on input line 820.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/O2-ts-accuracy.pdf, id=186, 722.7pt x 180.675pt>
File: imgs/O2-ts-accuracy.pdf Graphic file (type pdf)
<use imgs/O2-ts-accuracy.pdf>
Package pdftex.def Info: imgs/O2-ts-accuracy.pdf used on input line 820.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/Three-ts-accuracy.pdf, id=187, 722.7pt x 180.675pt>
File: imgs/Three-ts-accuracy.pdf Graphic file (type pdf)
<use imgs/Three-ts-accuracy.pdf>
Package pdftex.def Info: imgs/Three-ts-accuracy.pdf used on input line 821.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
<imgs/Vodafone-ts-accuracy.pdf, id=188, 722.7pt x 180.675pt>
File: imgs/Vodafone-ts-accuracy.pdf Graphic file (type pdf)
<use imgs/Vodafone-ts-accuracy.pdf>
Package pdftex.def Info: imgs/Vodafone-ts-accuracy.pdf used on input line 821.
(pdftex.def) Requested size: 176.89198pt x 44.22302pt.
Overfull \hbox (5.28397pt too wide) in paragraph at lines 820--823
[][][]
[]
Overfull \hbox (5.28397pt too wide) in paragraph at lines 820--823
[][]
[]
LaTeX Warning: `!h' float specifier changed to `!ht'.
[17] [18 <./imgs/BT-ts-accuracy.pdf> <./imgs/Sky-ts-accuracy.pdf> <./imgs/TalkT
alk-ts-accuracy.pdf> <./imgs/VirginMedia-ts-accuracy.pdf> <./imgs/EE-ts-accurac
y.pdf> <./imgs/O2-ts-accuracy.pdf> <./imgs/Three-ts-accuracy.pdf> <./imgs/Vodaf
one-ts-accuracy.pdf>] <imgs/BT-unblock-dist.pdf, id=244, 361.35pt x 361.35pt>
File: imgs/BT-unblock-dist.pdf Graphic file (type pdf)
<use imgs/BT-unblock-dist.pdf>
Package pdftex.def Info: imgs/BT-unblock-dist.pdf used on input line 845.
(pdftex.def) Requested size: 81.18864pt x 81.18445pt.
<imgs/Sky-unblock-dist.pdf, id=245, 361.35pt x 361.35pt>
File: imgs/Sky-unblock-dist.pdf Graphic file (type pdf)
<use imgs/Sky-unblock-dist.pdf>
Package pdftex.def Info: imgs/Sky-unblock-dist.pdf used on input line 845.
(pdftex.def) Requested size: 81.18864pt x 81.18445pt.
<imgs/TalkTalk-unblock-dist.pdf, id=246, 361.35pt x 361.35pt>
File: imgs/TalkTalk-unblock-dist.pdf Graphic file (type pdf)
<use imgs/TalkTalk-unblock-dist.pdf>
Package pdftex.def Info: imgs/TalkTalk-unblock-dist.pdf used on input line 845.
(pdftex.def) Requested size: 81.18864pt x 81.18445pt.
<imgs/VirginMedia-unblock-dist.pdf, id=247, 361.35pt x 361.35pt>
File: imgs/VirginMedia-unblock-dist.pdf Graphic file (type pdf)
<use imgs/VirginMedia-unblock-dist.pdf>
Package pdftex.def Info: imgs/VirginMedia-unblock-dist.pdf used on input line 8
45.
(pdftex.def) Requested size: 81.18864pt x 81.18445pt.
<imgs/EE-unblock-dist.pdf, id=248, 361.35pt x 361.35pt>
File: imgs/EE-unblock-dist.pdf Graphic file (type pdf)
<use imgs/EE-unblock-dist.pdf>
Package pdftex.def Info: imgs/EE-unblock-dist.pdf used on input line 846.
(pdftex.def) Requested size: 81.18864pt x 81.18445pt.
<imgs/O2-unblock-dist.pdf, id=249, 361.35pt x 361.35pt>
File: imgs/O2-unblock-dist.pdf Graphic file (type pdf)
<use imgs/O2-unblock-dist.pdf>
Package pdftex.def Info: imgs/O2-unblock-dist.pdf used on input line 846.
(pdftex.def) Requested size: 81.18864pt x 81.18445pt.
<imgs/Three-unblock-dist.pdf, id=250, 361.35pt x 361.35pt>
File: imgs/Three-unblock-dist.pdf Graphic file (type pdf)
<use imgs/Three-unblock-dist.pdf>
Package pdftex.def Info: imgs/Three-unblock-dist.pdf used on input line 846.
(pdftex.def) Requested size: 81.18864pt x 81.18445pt.
<imgs/Vodafone-unblock-dist.pdf, id=251, 361.35pt x 361.35pt>
File: imgs/Vodafone-unblock-dist.pdf Graphic file (type pdf)
<use imgs/Vodafone-unblock-dist.pdf>
Package pdftex.def Info: imgs/Vodafone-unblock-dist.pdf used on input line 846.
(pdftex.def) Requested size: 81.18864pt x 81.18445pt.
[19
<./imgs/BT-unblock-dist.pdf> <./imgs/Sky-unblock-dist.pdf> <./imgs/TalkTalk-un
block-dist.pdf> <./imgs/VirginMedia-unblock-dist.pdf> <./imgs/EE-unblock-dist.p
df> <./imgs/O2-unblock-dist.pdf> <./imgs/Three-unblock-dist.pdf> <./imgs/Vodafo
ne-unblock-dist.pdf>] [20] [21]
(./mrowe-isp-filters-v1.bbl)
LaTeX Font Info: Try loading font information for OMS+cmss on input line 939
.
LaTeX Font Info: No file OMScmss.fd. on input line 939.
LaTeX Font Warning: Font shape `OMS/cmss/m/n' undefined
(Font) using `OMS/cmsy/m/n' instead
(Font) for symbol `textbullet' on input line 939.
AED: lastpage setting LastPage
[22] (./mrowe-isp-filters-v1.aux)
LaTeX Font Warning: Size substitutions with differences
(Font) up to 1.0pt have occurred.
LaTeX Font Warning: Some font shapes were not available, defaults substituted.
)
Here is how much of TeX's memory you used:
3191 strings out of 493304
46917 string characters out of 6139871
111148 words of memory out of 5000000
6553 multiletter control sequences out of 15000+600000
14489 words of font info for 50 fonts, out of 8000000 for 9000
957 hyphenation exceptions out of 8191
37i,10n,37p,628b,363s stack positions out of 5000i,500n,10000p,200000b,80000s
</usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb></us
r/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx8.pfb></usr/share
/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb></usr/share/texli
ve/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/texlive/texm
f-dist/fonts/type1/public/amsfonts/cm/cmr5.pfb></usr/share/texlive/texmf-dist/f
onts/type1/public/amsfonts/cm/cmr7.pfb></usr/share/texlive/texmf-dist/fonts/typ
e1/public/amsfonts/cm/cmss10.pfb></usr/share/texlive/texmf-dist/fonts/type1/pub
lic/amsfonts/cm/cmss17.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/am
sfonts/cm/cmss8.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/
cm/cmssbx10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/c
mssi10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10
.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb></
usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy8.pfb></usr/sha
re/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmti10.pfb></usr/share/tex
live/texmf-dist/fonts/type1/public/amsfonts/cm/cmti7.pfb></usr/share/texlive/te
xmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfb></usr/share/texlive/texmf-di
st/fonts/type1/public/amsfonts/cm/cmtt8.pfb>
Output written on mrowe-isp-filters-v1.pdf (22 pages, 1115075 bytes).
PDF statistics:
381 PDF objects out of 1000 (max. 8388607)
248 compressed objects within 3 object streams
0 named destinations out of 1000 (max. 500000)
221 words of extra memory for PDF output out of 10000 (max. 10000000)