[818e31]: / figs / cross_validation.eps

Download this file

1276 lines (1267 with data), 25.7 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
%!PS-Adobe-3.0 EPSF-3.0
%%Title: ../figs/cross_validation.eps
%%Creator: matplotlib version 3.0.2, http://matplotlib.org/
%%CreationDate: Sat Apr 27 14:39:35 2019
%%Orientation: portrait
%%BoundingBox: 189 332 422 459
%%EndComments
%%BeginProlog
/mpldict 8 dict def
mpldict begin
/m { moveto } bind def
/l { lineto } bind def
/r { rlineto } bind def
/c { curveto } bind def
/cl { closepath } bind def
/box {
m
1 index 0 r
0 exch r
neg 0 r
cl
} bind def
/clipbox {
box
clip
newpath
} bind def
%!PS-Adobe-3.0 Resource-Font
%%Title: Liberation Sans
%%Copyright: Digitized data copyright (c) 2010 Google Corporation. Copyright (c) 2012 Red Hat, Inc.
%%Creator: Converted from TrueType to type 3 by PPR
25 dict begin
/_d{bind def}bind def
/_m{moveto}_d
/_l{lineto}_d
/_cl{closepath eofill}_d
/_c{curveto}_d
/_sc{7 -1 roll{setcachedevice}{pop pop pop pop pop pop}ifelse}_d
/_e{exec}_d
/FontName /LiberationSans def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-544 -303 1302 980]def
/FontType 3 def
/Encoding [ /space /parenleft /parenright /hyphen /zero /two /four /six /H /L /N /O /S /T /V /Y /a /b /c /d /e /f /i /j /k /l /m /n /o /p /r /s /t /u /v ] def
/FontInfo 10 dict dup begin
/FamilyName (Liberation Sans) def
/FullName (Liberation Sans) def
/Notice (Digitized data copyright (c) 2010 Google Corporation. Copyright (c) 2012 Red Hat, Inc. Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.) def
/Weight (Regular) def
/Version (Version 2.00.2) def
/ItalicAngle 0.0 def
/isFixedPitch false def
/UnderlinePosition -217 def
/UnderlineThickness 150 def
end readonly def
/CharStrings 36 dict dup begin
/.notdef 0 def
/space{278 0 0 0 0 0 _sc
}_d
/parenleft{333 0 62 -206 327 725 _sc
62 260 _m
62 354 76 438 106 513 _c
135 587 180 658 242 725 _c
327 725 _l
266 657 221 585 193 509 _c
164 433 150 349 150 259 _c
150 169 164 86 192 10 _c
220 -65 265 -137 327 -206 _c
242 -206 _l
180 -139 135 -68 106 6 _c
76 80 62 164 62 258 _c
62 260 _l
_cl}_d
/parenright{333 0 6 -206 271 725 _sc
271 258 _m
271 164 256 79 227 5 _c
197 -69 152 -140 91 -206 _c
6 -206 _l
67 -137 112 -65 140 10 _c
168 85 183 168 183 259 _c
183 349 168 433 140 509 _c
111 585 66 657 6 725 _c
91 725 _l
152 658 197 587 227 512 _c
256 437 271 353 271 260 _c
271 258 _l
_cl}_d
/hyphen{333 0 44 227 289 305 _sc
44 227 _m
44 305 _l
289 305 _l
289 227 _l
44 227 _l
_cl}_d
/zero{556 0 39 -9 517 698 _sc
517 344 _m
517 229 496 141 456 81 _c
416 21 356 -9 277 -9 _c
197 -9 138 21 98 81 _c
58 141 39 228 39 344 _c
39 462 58 550 97 609 _c
135 668 196 698 280 698 _c
360 698 420 668 459 609 _c
497 549 517 461 517 344 _c
428 344 _m
428 443 416 515 393 560 _c
370 604 332 627 280 627 _c
226 627 187 605 163 561 _c
139 517 128 444 128 344 _c
128 246 140 175 164 130 _c
188 84 226 62 278 62 _c
329 62 367 85 391 131 _c
415 177 428 248 428 344 _c
_cl}_d
/two{{556 0 50 0 506 698 _sc
50 0 _m
50 62 _l
66 100 87 133 111 163 _c
135 192 160 218 186 242 _c
212 265 239 287 265 307 _c
291 327 314 348 335 368 _c
355 388 372 409 385 431 _c
398 453 405 479 405 507 _c
405 544 393 573 371 594 _c
349 615 318 626 279 626 _c
241 626 210 615 186 595 _c
162 575 148 546 144 510 _c
54 518 _l
60 573 84 617 124 649 _c
}_e{164 681 216 698 279 698 _c
348 698 401 681 439 649 _c
476 616 495 570 495 510 _c
495 483 488 456 476 430 _c
464 404 446 377 422 351 _c
398 325 352 284 284 229 _c
246 198 217 170 195 146 _c
173 121 157 97 147 75 _c
506 75 _l
506 0 _l
50 0 _l
_cl}_e}_d
/four{556 0 23 0 527 688 _sc
430 156 _m
430 0 _l
347 0 _l
347 156 _l
23 156 _l
23 224 _l
338 688 _l
430 688 _l
430 225 _l
527 225 _l
527 156 _l
430 156 _l
347 589 _m
346 587 341 578 333 563 _c
325 547 318 537 314 531 _c
138 271 _l
112 235 _l
104 225 _l
347 225 _l
347 589 _l
_cl}_d
/six{{556 0 51 -9 512 698 _sc
512 225 _m
512 152 492 95 453 53 _c
413 11 359 -9 290 -9 _c
212 -9 153 19 112 77 _c
71 134 51 218 51 328 _c
51 447 72 538 115 602 _c
157 666 218 698 297 698 _c
401 698 466 651 493 558 _c
409 543 _l
391 599 354 627 296 627 _c
246 627 207 603 179 557 _c
151 510 138 442 138 354 _c
154 383 176 405 205 421 _c
234 437 267 445 305 445 _c
}_e{368 445 418 425 456 385 _c
493 345 512 292 512 225 _c
423 221 _m
423 271 410 309 386 336 _c
362 363 328 377 284 377 _c
243 377 210 365 185 341 _c
159 317 147 284 147 242 _c
147 189 160 146 186 112 _c
212 78 246 61 287 61 _c
329 61 363 75 387 103 _c
411 131 423 171 423 221 _c
_cl}_e}_d
/H{722 0 82 0 641 688 _sc
547 0 _m
547 319 _l
175 319 _l
175 0 _l
82 0 _l
82 688 _l
175 688 _l
175 397 _l
547 397 _l
547 688 _l
641 688 _l
641 0 _l
547 0 _l
_cl}_d
/L{556 0 82 0 523 688 _sc
82 0 _m
82 688 _l
175 688 _l
175 76 _l
523 76 _l
523 0 _l
82 0 _l
_cl}_d
/N{722 0 82 0 641 688 _sc
528 0 _m
160 586 _l
163 539 _l
165 457 _l
165 0 _l
82 0 _l
82 688 _l
190 688 _l
563 98 _l
559 162 557 208 557 237 _c
557 688 _l
641 688 _l
641 0 _l
528 0 _l
_cl}_d
/O{{778 0 47 -9 730 698 _sc
730 347 _m
730 275 716 212 688 158 _c
660 104 621 62 570 34 _c
518 5 458 -9 388 -9 _c
317 -9 256 5 205 33 _c
153 61 114 103 87 157 _c
60 211 47 275 47 347 _c
47 457 77 543 137 605 _c
197 667 281 698 389 698 _c
459 698 519 684 571 656 _c
622 628 661 588 689 535 _c
716 482 730 419 730 347 _c
635 347 _m
635 433 613 500 570 549 _c
}_e{527 597 467 622 389 622 _c
310 622 249 598 206 550 _c
163 502 142 434 142 347 _c
142 261 163 192 207 142 _c
250 91 310 66 388 66 _c
467 66 528 90 571 139 _c
613 188 635 257 635 347 _c
_cl}_e}_d
/S{{667 0 45 -9 621 698 _sc
621 190 _m
621 126 596 77 546 43 _c
496 8 427 -9 337 -9 _c
169 -9 71 49 45 165 _c
136 183 _l
146 141 168 111 202 92 _c
236 72 282 63 340 63 _c
400 63 447 73 480 94 _c
512 114 529 145 529 185 _c
529 207 523 226 513 240 _c
503 254 488 265 470 274 _c
451 283 429 291 403 297 _c
377 303 349 310 318 317 _c
264 329 222 341 194 353 _c
}_e{166 365 144 379 128 394 _c
112 408 99 426 91 446 _c
82 466 78 488 78 514 _c
78 573 100 618 145 650 _c
190 682 255 698 339 698 _c
417 698 476 686 518 662 _c
559 638 588 597 605 540 _c
513 524 _l
503 560 483 587 455 603 _c
427 619 388 628 338 628 _c
282 628 240 618 211 600 _c
182 582 168 555 168 519 _c
168 497 173 480 185 466 _c
196 452 212 441 234 431 _c
}_e{255 421 297 410 360 396 _c
381 391 402 386 423 381 _c
444 376 464 370 484 363 _c
503 356 521 348 538 338 _c
554 328 569 317 581 303 _c
593 289 603 273 610 255 _c
617 237 621 215 621 190 _c
_cl}_e}_d
/T{611 0 22 0 588 688 _sc
352 612 _m
352 0 _l
259 0 _l
259 612 _l
22 612 _l
22 688 _l
588 688 _l
588 612 _l
352 612 _l
_cl}_d
/V{667 0 4 0 663 688 _sc
382 0 _m
285 0 _l
4 688 _l
103 688 _l
293 204 _l
334 82 _l
375 204 _l
564 688 _l
663 688 _l
382 0 _l
_cl}_d
/Y{667 0 22 0 645 688 _sc
379 285 _m
379 0 _l
287 0 _l
287 285 _l
22 688 _l
125 688 _l
334 360 _l
542 688 _l
645 688 _l
379 285 _l
_cl}_d
/a{{556 0 42 -9 556 538 _sc
202 -9 _m
149 -9 109 4 82 32 _c
55 60 42 98 42 147 _c
42 201 60 243 96 273 _c
132 302 190 318 271 320 _c
389 322 _l
389 351 _l
389 394 379 425 361 443 _c
343 461 314 471 276 471 _c
236 471 208 464 190 451 _c
172 437 161 416 158 387 _c
66 396 _l
80 490 151 538 278 538 _c
344 538 393 522 427 492 _c
461 462 478 418 478 360 _c
478 133 _l
}_e{478 107 481 87 488 74 _c
495 60 508 54 527 54 _c
535 54 545 55 556 58 _c
556 3 _l
534 -1 511 -4 488 -4 _c
455 -4 431 4 417 21 _c
402 37 394 64 392 101 _c
389 101 _l
366 61 340 32 310 16 _c
280 0 244 -9 202 -9 _c
222 56 _m
254 56 283 63 308 78 _c
333 92 353 112 367 138 _c
381 164 389 190 389 217 _c
389 261 _l
293 259 _l
}_e{251 258 220 254 199 246 _c
177 238 161 226 150 210 _c
138 194 133 172 133 146 _c
133 117 140 95 156 79 _c
171 63 193 56 222 56 _c
_cl}_e}_d
/b{{556 0 64 -9 514 725 _sc
514 267 _m
514 83 449 -9 320 -9 _c
280 -9 246 -2 220 12 _c
193 26 171 50 155 82 _c
154 82 _l
154 72 153 56 152 36 _c
150 15 149 3 149 0 _c
64 0 _l
66 17 67 53 67 109 _c
67 725 _l
155 725 _l
155 518 _l
155 496 154 471 153 443 _c
155 443 _l
171 477 193 501 220 516 _c
246 530 280 538 320 538 _c
386 538 435 515 467 470 _c
}_e{498 425 514 357 514 267 _c
422 264 _m
422 338 412 390 392 422 _c
372 454 341 470 297 470 _c
247 470 211 453 189 419 _c
166 385 155 332 155 258 _c
155 188 166 137 188 104 _c
210 71 246 55 296 55 _c
340 55 372 71 392 104 _c
412 136 422 190 422 264 _c
_cl}_e}_d
/c{{500 0 42 -9 474 538 _sc
134 267 _m
134 196 145 144 167 110 _c
189 76 223 60 268 60 _c
298 60 324 68 345 85 _c
366 101 379 127 385 163 _c
474 157 _l
466 106 444 66 408 36 _c
372 6 326 -9 270 -9 _c
196 -9 139 14 100 60 _c
61 106 42 175 42 265 _c
42 353 61 421 101 468 _c
140 514 196 538 269 538 _c
323 538 367 524 403 496 _c
439 468 461 429 471 380 _c
}_e{380 374 _l
376 402 364 425 346 443 _c
327 460 301 469 267 469 _c
220 469 186 453 165 422 _c
144 391 134 339 134 267 _c
_cl}_e}_d
/d{{556 0 42 -9 492 725 _sc
401 85 _m
384 51 362 26 336 12 _c
309 -2 276 -9 236 -9 _c
169 -9 120 13 89 58 _c
57 102 42 170 42 262 _c
42 446 106 538 236 538 _c
276 538 309 530 336 516 _c
362 501 384 478 401 446 _c
402 446 _l
401 505 _l
401 725 _l
489 725 _l
489 109 _l
489 53 490 17 492 0 _c
408 0 _l
406 5 405 17 404 36 _c
403 54 403 71 403 85 _c
}_e{401 85 _l
134 265 _m
134 191 143 138 163 106 _c
183 74 215 58 259 58 _c
308 58 344 75 367 110 _c
389 144 401 198 401 271 _c
401 340 389 391 367 424 _c
344 456 308 473 260 473 _c
215 473 183 456 163 424 _c
143 391 134 338 134 265 _c
_cl}_e}_d
/e{{556 0 42 -9 512 538 _sc
135 246 _m
135 185 147 138 172 105 _c
197 72 234 56 282 56 _c
320 56 350 63 373 79 _c
396 94 412 113 420 137 _c
498 115 _l
466 32 394 -9 282 -9 _c
204 -9 144 14 103 60 _c
62 106 42 176 42 268 _c
42 354 62 421 103 468 _c
144 514 203 538 279 538 _c
434 538 512 444 512 257 _c
512 246 _l
135 246 _l
421 313 _m
416 368 402 408 378 434 _c
}_e{354 460 321 473 277 473 _c
234 473 200 458 176 430 _c
151 402 138 363 136 313 _c
421 313 _l
_cl}_e}_d
/f{278 0 14 0 279 724 _sc
176 464 _m
176 0 _l
88 0 _l
88 464 _l
14 464 _l
14 528 _l
88 528 _l
88 588 _l
88 636 98 670 120 692 _c
141 713 173 724 217 724 _c
241 724 262 722 279 718 _c
279 651 _l
264 653 251 655 240 655 _c
218 655 201 649 191 638 _c
181 626 176 606 176 576 _c
176 528 _l
279 528 _l
279 464 _l
176 464 _l
_cl}_d
/i{222 0 67 0 155 725 _sc
67 641 _m
67 725 _l
155 725 _l
155 641 _l
67 641 _l
67 0 _m
67 528 _l
155 528 _l
155 0 _l
67 0 _l
_cl}_d
/j{222 0 -23 -207 155 725 _sc
67 641 _m
67 725 _l
155 725 _l
155 641 _l
67 641 _l
155 -64 _m
155 -114 145 -150 125 -173 _c
105 -195 76 -207 38 -207 _c
12 -207 -7 -205 -23 -202 _c
-23 -134 _l
6 -137 _l
28 -137 44 -131 53 -119 _c
62 -107 67 -85 67 -51 _c
67 528 _l
155 528 _l
155 -64 _l
_cl}_d
/k{500 0 67 0 501 725 _sc
398 0 _m
220 241 _l
155 188 _l
155 0 _l
67 0 _l
67 725 _l
155 725 _l
155 272 _l
387 528 _l
490 528 _l
276 301 _l
501 0 _l
398 0 _l
_cl}_d
/l{222 0 67 0 155 725 _sc
67 0 _m
67 725 _l
155 725 _l
155 0 _l
67 0 _l
_cl}_d
/m{{833 0 66 0 767 538 _sc
375 0 _m
375 335 _l
375 386 368 421 354 441 _c
340 460 314 470 278 470 _c
240 470 211 455 189 427 _c
167 398 157 358 157 306 _c
157 0 _l
69 0 _l
69 416 _l
69 477 68 514 66 528 _c
149 528 _l
149 526 150 522 150 515 _c
150 507 151 499 151 490 _c
151 481 152 464 153 438 _c
155 438 _l
173 475 195 501 219 516 _c
243 530 273 538 309 538 _c
}_e{349 538 380 530 404 514 _c
427 498 443 472 453 438 _c
454 438 _l
472 473 494 498 520 514 _c
546 530 577 538 614 538 _c
667 538 706 523 730 494 _c
754 465 767 418 767 352 _c
767 0 _l
680 0 _l
680 335 _l
680 386 673 421 659 441 _c
645 460 619 470 583 470 _c
545 470 515 455 494 427 _c
472 399 462 358 462 306 _c
462 0 _l
375 0 _l
_cl}_e}_d
/n{{556 0 66 0 491 538 _sc
403 0 _m
403 335 _l
403 369 399 396 392 416 _c
385 435 374 449 359 457 _c
344 465 322 470 294 470 _c
251 470 217 455 193 426 _c
169 397 157 357 157 306 _c
157 0 _l
69 0 _l
69 416 _l
69 477 68 514 66 528 _c
149 528 _l
149 526 150 522 150 515 _c
150 507 151 499 151 490 _c
151 481 152 464 153 438 _c
155 438 _l
175 474 198 500 225 515 _c
}_e{251 530 284 538 324 538 _c
382 538 424 523 451 495 _c
477 466 491 418 491 352 _c
491 0 _l
403 0 _l
_cl}_e}_d
/o{556 0 42 -9 514 538 _sc
514 265 _m
514 172 493 103 453 58 _c
412 13 353 -9 276 -9 _c
198 -9 140 14 101 61 _c
61 107 42 175 42 265 _c
42 447 121 538 279 538 _c
359 538 419 515 457 471 _c
495 427 514 358 514 265 _c
422 265 _m
422 337 411 390 389 423 _c
367 456 331 473 280 473 _c
228 473 191 456 168 422 _c
145 388 134 336 134 265 _c
134 195 145 142 168 107 _c
190 72 226 55 275 55 _c
327 55 365 72 388 106 _c
410 140 422 193 422 265 _c
_cl}_d
/p{{556 0 64 -207 514 538 _sc
514 267 _m
514 83 449 -9 320 -9 _c
238 -9 184 21 156 82 _c
153 82 _l
154 79 155 52 155 0 _c
155 -207 _l
67 -207 _l
67 420 _l
67 474 66 510 64 528 _c
149 528 _l
149 526 150 522 151 514 _c
151 506 152 493 153 477 _c
153 461 154 449 154 443 _c
156 443 _l
172 475 192 499 218 515 _c
244 530 278 538 320 538 _c
384 538 433 516 465 472 _c
}_e{497 428 514 360 514 267 _c
422 265 _m
422 338 412 390 392 422 _c
372 454 340 470 297 470 _c
262 470 235 462 215 448 _c
195 433 180 410 170 379 _c
160 348 155 308 155 258 _c
155 188 166 137 188 104 _c
210 71 246 55 296 55 _c
340 55 372 71 392 103 _c
412 135 422 189 422 265 _c
_cl}_e}_d
/r{333 0 66 0 316 538 _sc
69 0 _m
69 405 _l
69 442 68 483 66 528 _c
149 528 _l
151 468 153 432 153 420 _c
155 420 _l
169 465 185 496 203 513 _c
221 529 247 538 281 538 _c
292 538 304 536 316 533 _c
316 453 _l
304 456 289 458 270 458 _c
233 458 205 442 186 410 _c
166 378 157 333 157 275 _c
157 0 _l
69 0 _l
_cl}_d
/s{{500 0 28 -9 464 537 _sc
464 146 _m
464 96 445 57 407 31 _c
369 4 317 -9 250 -9 _c
184 -9 133 1 97 23 _c
61 44 38 78 28 124 _c
105 139 _l
113 111 128 90 152 77 _c
175 63 208 57 250 57 _c
294 57 326 63 347 77 _c
367 91 378 111 378 139 _c
378 159 370 176 356 189 _c
342 202 319 213 288 222 _c
225 239 _l
174 251 138 264 117 277 _c
}_e{95 289 79 305 67 323 _c
55 341 49 363 49 389 _c
49 437 66 473 100 499 _c
134 524 184 537 250 537 _c
308 537 355 526 389 506 _c
423 485 445 452 455 407 _c
375 397 _l
370 421 357 439 336 451 _c
314 463 286 470 250 470 _c
210 470 181 464 162 452 _c
143 440 134 421 134 397 _c
134 382 138 370 146 360 _c
154 350 165 342 181 335 _c
196 328 228 319 277 307 _c
}_e{323 295 357 285 378 275 _c
398 265 414 254 426 242 _c
438 230 447 216 454 200 _c
460 184 464 166 464 146 _c
_cl}_e}_d
/t{278 0 15 -7 271 646 _sc
271 4 _m
241 -3 212 -7 182 -7 _c
111 -7 76 32 76 112 _c
76 464 _l
15 464 _l
15 528 _l
80 528 _l
105 646 _l
164 646 _l
164 528 _l
262 528 _l
262 464 _l
164 464 _l
164 131 _l
164 105 168 87 176 77 _c
184 67 199 62 220 62 _c
231 62 248 64 271 69 _c
271 4 _l
_cl}_d
/u{{556 0 65 -9 490 528 _sc
153 528 _m
153 193 _l
153 158 156 131 163 112 _c
170 92 181 78 196 70 _c
211 62 233 58 262 58 _c
304 58 338 72 362 101 _c
386 130 399 170 399 222 _c
399 528 _l
487 528 _l
487 113 _l
487 51 488 14 490 0 _c
407 0 _l
406 1 405 5 405 13 _c
405 20 404 28 404 38 _c
404 47 403 64 403 90 _c
401 90 _l
381 54 357 28 331 13 _c
}_e{305 -1 272 -9 232 -9 _c
174 -9 132 5 105 34 _c
78 62 65 110 65 176 _c
65 528 _l
153 528 _l
_cl}_e}_d
/v{500 0 3 0 497 528 _sc
299 0 _m
195 0 _l
3 528 _l
97 528 _l
213 185 _l
217 171 229 133 247 69 _c
264 126 _l
283 184 _l
403 528 _l
497 528 _l
299 0 _l
_cl}_d
end readonly def
/BuildGlyph
{exch begin
CharStrings exch
2 copy known not{pop /.notdef}if
true 3 1 roll get exec
end}_d
/BuildChar {
1 index /Encoding get exch get
1 index /BuildGlyph get exec
}_d
FontName currentdict end definefont pop
end
%%EndProlog
mpldict begin
189.826 332.176 translate
232.348 127.648 0 0 clipbox
gsave
0 0 m
232.348375 0 l
232.348375 127.648375 l
0 127.648375 l
cl
1.000 setgray
fill
grestore
gsave
90.984375 33.484375 m
220.348375 33.484375 l
220.348375 115.648375 l
90.984375 115.648375 l
cl
grestore
1.000 setlinewidth
1 setlinejoin
0 setlinecap
[] 0 setdash
0.150 setgray
gsave
/o {
gsave
newpath
translate
1.0 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -4.8 l
gsave
0.150 setgray
fill
grestore
stroke
grestore
} bind def
90.9844 33.4844 o
grestore
/LiberationSans findfont
7.000 scalefont
setfont
gsave
89.039062 20.106250 translate
0.000000 rotate
0.000000 0.000000 m /zero glyphshow
grestore
gsave
/o {
gsave
newpath
translate
1.0 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -4.8 l
gsave
0.150 setgray
fill
grestore
stroke
grestore
} bind def
129.486 33.4844 o
grestore
gsave
125.594940 20.106250 translate
0.000000 rotate
0.000000 0.000000 m /two glyphshow
3.893066 0.000000 m /zero glyphshow
grestore
gsave
/o {
gsave
newpath
translate
1.0 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -4.8 l
gsave
0.150 setgray
fill
grestore
stroke
grestore
} bind def
167.987 33.4844 o
grestore
gsave
164.096131 20.106250 translate
0.000000 rotate
0.000000 0.000000 m /four glyphshow
3.893066 0.000000 m /zero glyphshow
grestore
gsave
/o {
gsave
newpath
translate
1.0 setlinewidth
1 setlinejoin
0 setlinecap
0 0 m
0 -4.8 l
gsave
0.150 setgray
fill
grestore
stroke
grestore
} bind def
206.488 33.4844 o
grestore
gsave
202.597321 20.106250 translate
0.000000 rotate
0.000000 0.000000 m /six glyphshow
3.893066 0.000000 m /zero glyphshow
grestore
/LiberationSans findfont
8.000 scalefont
setfont
gsave
123.627313 8.856250 translate
0.000000 rotate
0.000000 0.000000 m /N glyphshow
5.777344 0.000000 m /u glyphshow
10.226562 0.000000 m /m glyphshow
16.890625 0.000000 m /b glyphshow
21.339844 0.000000 m /e glyphshow
25.789062 0.000000 m /r glyphshow
28.453125 0.000000 m /space glyphshow
30.675781 0.000000 m /o glyphshow
35.125000 0.000000 m /f glyphshow
37.347656 0.000000 m /space glyphshow
39.570312 0.000000 m /p glyphshow
44.019531 0.000000 m /a glyphshow
48.468750 0.000000 m /p glyphshow
52.917969 0.000000 m /e glyphshow
57.367188 0.000000 m /r glyphshow
60.031250 0.000000 m /s glyphshow
grestore
/LiberationSans findfont
7.000 scalefont
setfont
gsave
73.731250 109.001112 translate
0.000000 rotate
0.000000 0.000000 m /N glyphshow
5.055176 0.000000 m /o glyphshow
grestore
gsave
65.559375 100.784712 translate
0.000000 rotate
0.000000 0.000000 m /k glyphshow
3.500000 0.000000 m /hyphen glyphshow
5.831055 0.000000 m /f glyphshow
7.775879 0.000000 m /o glyphshow
11.668945 0.000000 m /l glyphshow
13.224121 0.000000 m /d glyphshow
grestore
gsave
8.746875 92.568312 translate
0.000000 rotate
0.000000 0.000000 m /L glyphshow
3.893066 0.000000 m /e glyphshow
7.786133 0.000000 m /a glyphshow
11.679199 0.000000 m /v glyphshow
15.179199 0.000000 m /e glyphshow
19.072266 0.000000 m /hyphen glyphshow
21.403320 0.000000 m /O glyphshow
26.848145 0.000000 m /n glyphshow
30.741211 0.000000 m /e glyphshow
34.634277 0.000000 m /hyphen glyphshow
36.965332 0.000000 m /S glyphshow
41.634277 0.000000 m /u glyphshow
45.527344 0.000000 m /b glyphshow
49.420410 0.000000 m /j glyphshow
50.975586 0.000000 m /e glyphshow
54.868652 0.000000 m /c glyphshow
58.368652 0.000000 m /t glyphshow
60.313477 0.000000 m /hyphen glyphshow
62.644531 0.000000 m /O glyphshow
68.089355 0.000000 m /u glyphshow
71.982422 0.000000 m /t glyphshow
grestore
gsave
32.871875 84.351912 translate
0.000000 rotate
0.000000 0.000000 m /T glyphshow
4.275879 0.000000 m /r glyphshow
6.606934 0.000000 m /a glyphshow
10.500000 0.000000 m /i glyphshow
12.055176 0.000000 m /n glyphshow
15.948242 0.000000 m /hyphen glyphshow
18.279297 0.000000 m /V glyphshow
22.948242 0.000000 m /a glyphshow
26.841309 0.000000 m /l glyphshow
28.396484 0.000000 m /i glyphshow
29.951660 0.000000 m /d glyphshow
33.844727 0.000000 m /hyphen glyphshow
36.175781 0.000000 m /T glyphshow
40.451660 0.000000 m /e glyphshow
44.344727 0.000000 m /s glyphshow
47.844727 0.000000 m /t glyphshow
grestore
gsave
7.200000 76.135512 translate
0.000000 rotate
0.000000 0.000000 m /L glyphshow
3.893066 0.000000 m /e glyphshow
7.786133 0.000000 m /a glyphshow
11.679199 0.000000 m /v glyphshow
15.179199 0.000000 m /e glyphshow
19.072266 0.000000 m /hyphen glyphshow
21.403320 0.000000 m /O glyphshow
26.848145 0.000000 m /n glyphshow
30.741211 0.000000 m /e glyphshow
34.634277 0.000000 m /hyphen glyphshow
36.965332 0.000000 m /S glyphshow
41.634277 0.000000 m /e glyphshow
45.527344 0.000000 m /s glyphshow
49.027344 0.000000 m /s glyphshow
52.527344 0.000000 m /i glyphshow
54.082520 0.000000 m /o glyphshow
57.975586 0.000000 m /n glyphshow
61.868652 0.000000 m /hyphen glyphshow
64.199707 0.000000 m /O glyphshow
69.644531 0.000000 m /u glyphshow
73.537598 0.000000 m /t glyphshow
grestore
gsave
13.418750 67.919112 translate
0.000000 rotate
0.000000 0.000000 m /L glyphshow
3.893066 0.000000 m /e glyphshow
7.786133 0.000000 m /a glyphshow
11.679199 0.000000 m /v glyphshow
15.179199 0.000000 m /e glyphshow
19.072266 0.000000 m /hyphen glyphshow
21.403320 0.000000 m /N glyphshow
26.458496 0.000000 m /hyphen glyphshow
28.789551 0.000000 m /S glyphshow
33.458496 0.000000 m /u glyphshow
37.351562 0.000000 m /b glyphshow
41.244629 0.000000 m /j glyphshow
42.799805 0.000000 m /e glyphshow
46.692871 0.000000 m /c glyphshow
50.192871 0.000000 m /t glyphshow
52.137695 0.000000 m /s glyphshow
55.637695 0.000000 m /hyphen glyphshow
57.968750 0.000000 m /O glyphshow
63.413574 0.000000 m /u glyphshow
67.306641 0.000000 m /t glyphshow
grestore
gsave
8.371875 59.702712 translate
0.000000 rotate
0.000000 0.000000 m /L glyphshow
3.893066 0.000000 m /e glyphshow
7.786133 0.000000 m /a glyphshow
11.679199 0.000000 m /v glyphshow
15.179199 0.000000 m /e glyphshow
19.072266 0.000000 m /hyphen glyphshow
21.403320 0.000000 m /O glyphshow
26.848145 0.000000 m /n glyphshow
30.741211 0.000000 m /e glyphshow
34.634277 0.000000 m /hyphen glyphshow
36.965332 0.000000 m /S glyphshow
41.634277 0.000000 m /a glyphshow
45.527344 0.000000 m /m glyphshow
51.358398 0.000000 m /p glyphshow
55.251465 0.000000 m /l glyphshow
56.806641 0.000000 m /e glyphshow
60.699707 0.000000 m /hyphen glyphshow
63.030762 0.000000 m /O glyphshow
68.475586 0.000000 m /u glyphshow
72.368652 0.000000 m /t glyphshow
grestore
gsave
58.543750 51.486312 translate
0.000000 rotate
0.000000 0.000000 m /H glyphshow
5.055176 0.000000 m /o glyphshow
8.948242 0.000000 m /l glyphshow
10.503418 0.000000 m /d glyphshow
14.396484 0.000000 m /o glyphshow
18.289551 0.000000 m /u glyphshow
22.182617 0.000000 m /t glyphshow
grestore
gsave
13.043750 43.269912 translate
0.000000 rotate
0.000000 0.000000 m /L glyphshow
3.893066 0.000000 m /e glyphshow
7.786133 0.000000 m /a glyphshow
11.679199 0.000000 m /v glyphshow
15.179199 0.000000 m /e glyphshow
19.072266 0.000000 m /hyphen glyphshow
21.403320 0.000000 m /N glyphshow
26.458496 0.000000 m /hyphen glyphshow
28.789551 0.000000 m /S glyphshow
33.458496 0.000000 m /a glyphshow
37.351562 0.000000 m /m glyphshow
43.182617 0.000000 m /p glyphshow
47.075684 0.000000 m /l glyphshow
48.630859 0.000000 m /e glyphshow
52.523926 0.000000 m /s glyphshow
56.023926 0.000000 m /hyphen glyphshow
58.354980 0.000000 m /O glyphshow
63.799805 0.000000 m /u glyphshow
67.692871 0.000000 m /t glyphshow
grestore
gsave
37.528125 35.053512 translate
0.000000 rotate
0.000000 0.000000 m /Y glyphshow
4.668945 0.000000 m /e glyphshow
8.562012 0.000000 m /s glyphshow
12.062012 0.000000 m /space glyphshow
14.006836 0.000000 m /parenleft glyphshow
16.337891 0.000000 m /n glyphshow
20.230957 0.000000 m /o glyphshow
24.124023 0.000000 m /space glyphshow
26.068848 0.000000 m /d glyphshow
29.961914 0.000000 m /e glyphshow
33.854980 0.000000 m /t glyphshow
35.799805 0.000000 m /a glyphshow
39.692871 0.000000 m /i glyphshow
41.248047 0.000000 m /l glyphshow
42.803223 0.000000 m /parenright glyphshow
grestore
0.800 setlinewidth
0 setlinejoin
[] 0 setdash
1.000 setgray
gsave
129.4 82.16 90.98 33.48 clipbox
90.984375 114.826735 m
214.188185 114.826735 l
214.188185 108.253615 l
90.984375 108.253615 l
cl
gsave
0.681 0.799 0.860 setrgbcolor
fill
grestore
stroke
grestore
gsave
129.4 82.16 90.98 33.48 clipbox
90.984375 106.610335 m
173.761935 106.610335 l
173.761935 100.037215 l
90.984375 100.037215 l
cl
gsave
0.195 0.456 0.633 setrgbcolor
fill
grestore
stroke
grestore
gsave
129.4 82.16 90.98 33.48 clipbox
90.984375 98.393935 m
129.485565 98.393935 l
129.485565 91.820815 l
90.984375 91.820815 l
cl
gsave
0.700 0.833 0.583 setrgbcolor
fill
grestore
stroke
grestore
gsave
129.4 82.16 90.98 33.48 clipbox
90.984375 90.177535 m
119.860268 90.177535 l
119.860268 83.604415 l
90.984375 83.604415 l
cl
gsave
0.250 0.571 0.229 setrgbcolor
fill
grestore
stroke
grestore
gsave
129.4 82.16 90.98 33.48 clipbox
90.984375 81.961135 m
100.609673 81.961135 l
100.609673 75.388015 l
90.984375 75.388015 l
cl
gsave
0.936 0.651 0.648 setrgbcolor
fill
grestore
stroke
grestore
gsave
129.4 82.16 90.98 33.48 clipbox
90.984375 73.744735 m
96.759554 73.744735 l
96.759554 67.171615 l
90.984375 67.171615 l
cl
gsave
0.792 0.200 0.206 setrgbcolor
fill
grestore
stroke
grestore
gsave
129.4 82.16 90.98 33.48 clipbox
90.984375 65.528335 m
96.759554 65.528335 l
96.759554 58.955215 l
90.984375 58.955215 l
cl
gsave
0.923 0.740 0.505 setrgbcolor
fill
grestore
stroke
grestore
gsave
129.4 82.16 90.98 33.48 clipbox
90.984375 57.311935 m
96.759554 57.311935 l
96.759554 50.738815 l
90.984375 50.738815 l
cl
gsave
0.875 0.499 0.125 setrgbcolor
fill
grestore
stroke
grestore
gsave
129.4 82.16 90.98 33.48 clipbox
90.984375 49.095535 m
96.759554 49.095535 l
96.759554 42.522415 l
90.984375 42.522415 l
cl
gsave
0.786 0.716 0.822 setrgbcolor
fill
grestore
stroke
grestore
gsave
129.4 82.16 90.98 33.48 clipbox
90.984375 40.879135 m
94.834494 40.879135 l
94.834494 34.306015 l
90.984375 34.306015 l
cl
gsave
0.417 0.285 0.558 setrgbcolor
fill
grestore
stroke
grestore
1.000 setlinewidth
2 setlinecap
0.150 setgray
gsave
90.984375 33.484375 m
90.984375 115.648375 l
stroke
grestore
gsave
220.348375 33.484375 m
220.348375 115.648375 l
stroke
grestore
gsave
90.984375 33.484375 m
220.348375 33.484375 l
stroke
grestore
gsave
90.984375 115.648375 m
220.348375 115.648375 l
stroke
grestore
end
showpage