-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatapath
2597 lines (2190 loc) · 69.1 KB
/
datapath
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
%!PS-Adobe-2.0 EPSF-2.0
%%BoundingBox: 0 0 612 792
%%Creator: IlogViews Dump module
%%Date: Wed Jan 30 17:07:30 2013
%%Pages: (atend)
%%BeginProlog
80 dict begin
/ilvlw true def
/bd{bind def}bind def/ld{load def}bd/x/exch ld
/t/translate ld/G/gsave ld/g/grestore ld/M/moveto ld
/L/lineto ld/rM/rmoveto ld/rL/rlineto ld
/r/roll ld/n/newpath ld/sc/gsave ld/c/closepath ld
/slw/setlinewidth ld
/s{ilvlw{stroke}{matrix currentmatrix imtrx
setmatrix stroke setmatrix}ifelse}bd
/rc{currentrgbcolor currentlinewidth currentdash
currentfont grestore setfont setdash slw setrgbcolor}bd
/fillpat{flattenpath pathbbox G 5 -1 r
{eoclip}{clip}ifelse 3 -1 r dup 0 x t sub
3 1 r x dup 0 t sub 4 -1 r dup 3 1 r div ceiling
cvi 1 add 4 2 r 1 index div ceiling cvi 1 add
{3 copy pop G{4 index exec dup 0 t}repeat
g pop dup 0 x t}repeat g 4{pop}repeat}bd
/rect{M dup 0 x rL x 0 rL neg 0 x rL c}bd
/ilvshow{
{pop pop currentpoint round x round x M}x kshow}bd
/readpattern{
mul string currentfile /ASCII85Decode filter x readstring pop /p x def } bd
/imtrx matrix currentmatrix def
/Latin1Encoding [
[8#202/quotesinglbase][8#203/florin]
[8#204/quotedblbase][8#205/ellipsis]
[8#206/dagger][8#207/daggerdbl]
[8#210/circumflex][8#211/perthousand]
[8#212/Scaron][8#213/guilsinglleft]
[8#214/OE][8#221/quoteleft]
[8#222/quoteright][8#223/quotedblleft]
[8#224/quotedblright][8#225/bullet]
[8#226/endash][8#227/emdash]
[8#230/tilde][8#232/scaron]
[8#233/guilsinglright][8#234/oe]
[8#237/Ydieresis][8#240/space]
[8#241/exclamdown][8#242/cent]
[8#243/sterling][8#244/currency]
[8#245/yen][8#246/bar]
[8#247/section][8#250/dieresis]
[8#252/ordfeminine][8#253/guillemotleft]
[8#255/hyphen][8#257/macron]
[8#260/ring][8#264/acute]
[8#266/paragraph][8#267/periodcentered]
[8#270/cedilla][8#272/ordmasculine]
[8#273/guillemotright][8#277/questiondown]
[8#300/Agrave][8#301/Aacute]
[8#302/Acircumflex][8#303/Atilde]
[8#304/Adieresis][8#305/Aring]
[8#306/AE][8#307/Ccedilla]
[8#310/Egrave][8#311/Eacute]
[8#312/Ecircumflex][8#313/Edieresis]
[8#314/Igrave][8#315/Iacute]
[8#316/Icircumflex][8#317/Idieresis]
[8#321/Ntilde][8#322/Ograve]
[8#323/Oacute][8#324/Ocircumflex]
[8#325/Otilde][8#326/Odieresis]
[8#330/Oslash][8#331/Ugrave]
[8#332/Uacute][8#333/Ucircumflex]
[8#334/Udieresis][8#335/Yacute]
[8#337/germandbls][8#340/agrave]
[8#341/aacute][8#342/acircumflex]
[8#343/atilde][8#344/adieresis]
[8#345/aring][8#346/ae]
[8#347/ccedilla][8#350/egrave]
[8#351/eacute][8#352/ecircumflex]
[8#353/edieresis][8#354/igrave]
[8#355/iacute][8#356/icircumflex]
[8#357/idieresis][8#361/ntilde]
[8#362/ograve][8#363/oacute]
[8#364/ocircumflex][8#365/otilde]
[8#366/odieresis][8#367/divide]
[8#370/oslash][8#371/ugrave]
[8#372/uacute][8#373/ucircumflex]
[8#374/udieresis][8#375/yacute]
[8#377/ydieresis]
] def
/ilvreencode{exch dup systemdict/findfont get exec dup
length dict
begin{1 index/FID ne{def}{pop pop}ifelse} forall
exch /Encoding exch Encoding dup length array copy
exch{aload pop 2 index 3 1 roll put}forall def
currentdict end definefont}bd
/ilvsf{Latin1Encoding ilvreencode
exch scalefont setfont}bd
/ilvjsf {findfont exch scalefont setfont}bd
/strip{ newpath gsave translate
dup -1 scale dup 1 exch 8 exch[exch 0 0 -1 0 1]
currentfile /ASCII85Decode filter } bd
/rectclip where
{ pop }
{ /rectclip
{ 4 -2 roll M dup 0 x rL x 0 rL neg 0 x rL c } bd } ifelse
/rectfill where
{ pop }
{ /rectfill
{ 4 -2 roll M dup 0 x rL x 0 rL neg 0 x rL c fill } bd } ifelse
/rectstroke where
{ pop }
{ /rectstroke
{ 4 -2 roll M dup 0 x rL x 0 rL neg 0 x rL c stroke } bd } ifelse
%%EndProlog
%%Page: 1 1
%%BeginPageSetup
[{
%%BeginFeature: *PageRegion
2 dict
dup /PageSize [612 792] put
dup /ImagingBBox null put
setpagedevice
%%EndFeature
} stopped cleartomark
/realmatrix { [1 0 0 -1 0 792] imtrx matrix concatmatrix } bd
realmatrix setmatrix
/Courier findfont setfont
%%EndPageSetup
initclip 612 792 0 0 rect clip
sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
12/Helvetica ilvsf
[] 0 setdash
0.8 setgray
0 slw
n 79 249 271 261 rect eofill
0.0784314 setgray
2 slw
271 261 79 249 rectstroke
0.8 setgray
0 slw
n 489 347 M 489 373 L 411 399 L 411 321 L 489 347 L
eofill
0.0784314 setgray
2 slw
n 489 347 M 489 373 L 411 399 L 411 321 L 489 347 L s
0.8 setgray
0 slw
n 69 209 541 261 rect eofill
0.0784314 setgray
2 slw
541 261 69 209 rectstroke
0.8 setgray
0 slw
n 69 59 591 491 rect eofill
0.0784314 setgray
2 slw
591 491 69 59 rectstroke
0 slw
n 210 306 M 220 306 L 225 310 L 220 314 L 210 314 L 210 306 L
eofill
0 setgray
n 210 306 M 220 306 L 225 310 L 220 314 L 210 314 L 210 306 L s
0.0784314 setgray
n 210 306 M 220 306 L 225 310 L 220 314 L 210 314 L 210 306 L
eofill
0 setgray
n 210 306 M 220 306 L 225 310 L 220 314 L 210 314 L 210 306 L s
n 225 310 M 230 310 L s
0.0784314 setgray
n 450 116 M 460 116 L 465 120 L 460 124 L 450 124 L 450 116 L
eofill
0 setgray
n 450 116 M 460 116 L 465 120 L 460 124 L 450 124 L 450 116 L s
0.0784314 setgray
n 450 116 M 460 116 L 465 120 L 460 124 L 450 124 L 450 116 L
eofill
0 setgray
n 450 116 M 460 116 L 465 120 L 460 124 L 450 124 L 450 116 L s
n 465 120 M 470 120 L s
0.0784314 setgray
n 385 276 M 395 276 L 400 280 L 395 284 L 385 284 L 385 276 L
eofill
0 setgray
n 385 276 M 395 276 L 400 280 L 395 284 L 385 284 L 385 276 L s
0.0784314 setgray
n 385 276 M 395 276 L 400 280 L 395 284 L 385 284 L 385 276 L
eofill
0 setgray
n 385 276 M 395 276 L 400 280 L 395 284 L 385 284 L 385 276 L s
n 380 280 M 385 280 L s
0.0784314 setgray
n 300 126 M 310 126 L 315 130 L 310 134 L 300 134 L 300 126 L
eofill
0 setgray
n 300 126 M 310 126 L 315 130 L 310 134 L 300 134 L 300 126 L s
0.0784314 setgray
n 300 126 M 310 126 L 315 130 L 310 134 L 300 134 L 300 126 L
eofill
0 setgray
n 300 126 M 310 126 L 315 130 L 310 134 L 300 134 L 300 126 L s
n 315 130 M 320 130 L s
0.498039 setgray
n 89 89 481 111 rect eofill
0.25098 setgray
2 slw
481 111 89 89 rectstroke
rc sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
0 setgray
0 slw
n G 482 197 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
0.8 setgray
n 69 69 391 21 rect eofill
0.0784314 setgray
2 slw
391 21 69 69 rectstroke
rc sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
0 setgray
0 slw
n G 392 87 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
0.8 setgray
n 59 59 181 181 rect eofill
0.0784314 setgray
2 slw
181 181 59 59 rectstroke
rc sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
0 setgray
0 slw
n G 182 237 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
0.8 setgray
n 59 59 61 181 rect eofill
0.0784314 setgray
2 slw
61 181 59 59 rectstroke
rc sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
0 setgray
0 slw
n G 62 237 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
0.0784314 setgray
n 385 266 M 395 266 L 400 270 L 395 274 L 385 274 L 385 266 L
eofill
0 setgray
n 385 266 M 395 266 L 400 270 L 395 274 L 385 274 L 385 266 L s
0.0784314 setgray
n 385 266 M 395 266 L 400 270 L 395 274 L 385 274 L 385 266 L
eofill
0 setgray
n 385 266 M 395 266 L 400 270 L 395 274 L 385 274 L 385 266 L s
n 380 270 M 385 270 L s
0.498039 setgray
n 399 180 M 399 210 L 301 239 L 301 151 L 399 180 L
eofill
0.25098 setgray
2 slw
n 399 180 M 399 210 L 301 239 L 301 151 L 399 180 L s
rc sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
0 setgray
0 slw
n G 302 237 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
0.0784314 setgray
n 510 386 M 520 386 L 525 390 L 520 394 L 510 394 L 510 386 L
eofill
0 setgray
n 510 386 M 520 386 L 525 390 L 520 394 L 510 394 L 510 386 L s
0.0784314 setgray
n 510 386 M 520 386 L 525 390 L 520 394 L 510 394 L 510 386 L
eofill
0 setgray
n 510 386 M 520 386 L 525 390 L 520 394 L 510 394 L 510 386 L s
n 525 390 M 530 390 L s
0.0784314 setgray
n 420 426 M 430 426 L 435 430 L 430 434 L 420 434 L 420 426 L
eofill
0 setgray
n 420 426 M 430 426 L 435 430 L 430 434 L 420 434 L 420 426 L s
0.0784314 setgray
n 420 426 M 430 426 L 435 430 L 430 434 L 420 434 L 420 426 L
eofill
0 setgray
n 420 426 M 430 426 L 435 430 L 430 434 L 420 434 L 420 426 L s
n 435 430 M 440 430 L s
rc sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
0 setgray
n G 272 507 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
n G 412 397 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
n G 542 467 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
0.8 setgray
n 59 49 471 511 rect eofill
0.0784314 setgray
2 slw
471 511 59 49 rectstroke
0 setgray
0 slw
n 435 430 M 440 430 L s
n 440 430 M 450 430 L 450 387 L s
n 270 450 M 110 450 L 110 240 L s
n 610 340 M 672 340 L s
n 610 290 M 760 290 L 760 310 L 830 310 L s
2 slw
n 577 190 M 630 190 L 630 140 L 702 140 L s
0 slw
n 630 140 M 630 50 L 460 50 L s
n 630 50 M 630 10 L 170 10 L 170 190 L 180 190 L s
2 slw
n 940 350 M 1100 350 L 1100 710 L 370 710 L 370 640 L 442 640 L s
0 slw
n 660 290 M 660 250 L 280 250 L 280 230 L 292 230 L s
n 530 520 M 550 520 L 550 480 L 640 480 L 640 360 L 672 360 L s
n 225 310 M 230 310 L s
n 465 120 M 470 120 L s
n 380 280 M 385 280 L s
n 315 130 M 320 130 L s
n 525 390 M 530 390 L s
n 380 270 M 385 270 L s
n 230 310 M 270 310 L s
n 380 280 M 350 280 L s
n 530 390 M 540 390 L s
2 slw
n 430 200 M 430 150 L 470 150 L 472 150 L s
0 slw
n 390 50 M 250 50 L 250 170 L 292 170 L s
n 240 230 M 260 230 L 260 200 L 292 200 L s
n 470 120 M 472 120 L s
n 120 230 M 180 230 L s
n 350 300 M 540 300 L s
n 380 300 M 380 330 L 410 330 L s
n 350 380 M 410 380 L s
n 490 360 M 540 360 L s
n 472 190 M 460 190 L 460 220 L s
n 560 93 M 560 70 L s
n 490 270 M 540 270 L s
n 350 270 M 380 270 L s
n 407 200 M 430 200 L s
n 320 130 M 370 130 L 370 163 L s
n 260 230 M 260 250 L 220 250 L s
n 350 460 M 540 460 L s
n 350 490 M 590 490 L s
n 297 600 M 310 600 L 310 510 L s
n 570 640 M 570 470 L s
n 350 500 M 390 500 L 390 520 L 470 520 L s
0.498039 setgray
n 488 190 M 481 193 L 481 187 L 488 190 L
eofill
0.25098 setgray
2 slw
n 488 190 M 481 193 L 481 187 L 488 190 L s
0 setgray
0 slw
n 497 360 M 490 364 L 490 356 L 497 360 L
eofill
n 497 360 M 490 364 L 490 356 L 497 360 L s
n 617 340 M 610 344 L 610 336 L 617 340 L
eofill
n 617 340 M 610 344 L 610 336 L 617 340 L s
1 setgray
n matrix currentmatrix 490 270 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
0.341176 setgray
n matrix currentmatrix 490 270 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0.498039 setgray
n 480 120 M 472 124 L 472 116 L 480 120 L
eofill
0 setgray
n 480 120 M 472 124 L 472 116 L 480 120 L s
0.498039 setgray
n 480 150 M 472 154 L 472 146 L 480 150 L
eofill
0 setgray
n 480 150 M 472 154 L 472 146 L 480 150 L s
0.498039 setgray
n 480 190 M 472 194 L 472 186 L 480 190 L
eofill
0 setgray
n 480 190 M 472 194 L 472 186 L 480 190 L s
0.498039 setgray
n 407 200 M 400 204 L 400 196 L 407 200 L
eofill
0 setgray
n 407 200 M 400 204 L 400 196 L 407 200 L s
0.498039 setgray
n 300 170 M 292 174 L 292 166 L 300 170 L
eofill
0 setgray
n 300 170 M 292 174 L 292 166 L 300 170 L s
0.498039 setgray
n 300 200 M 292 204 L 292 196 L 300 200 L
eofill
0 setgray
n 300 200 M 292 204 L 292 196 L 300 200 L s
0.498039 setgray
n 300 230 M 292 234 L 292 226 L 300 230 L
eofill
0 setgray
n 300 230 M 292 234 L 292 226 L 300 230 L s
0.498039 setgray
n 370 171 M 366 163 L 374 163 L 370 171 L
eofill
0 setgray
n 370 171 M 366 163 L 374 163 L 370 171 L s
n 270 310 M 262 314 L 262 306 L 270 310 L
eofill
n 270 310 M 262 314 L 262 306 L 270 310 L s
n 357 280 M 350 284 L 350 276 L 357 280 L
eofill
n 357 280 M 350 284 L 350 276 L 357 280 L s
1 setgray
n matrix currentmatrix 430 200 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
0.341176 setgray
n matrix currentmatrix 430 200 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0 setgray
n matrix currentmatrix 430 200 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
n matrix currentmatrix 430 200 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
n 382 50 M 390 46 L 390 54 L 382 50 L
eofill
n 382 50 M 390 46 L 390 54 L 382 50 L s
n 247 230 M 240 234 L 240 226 L 247 230 L
eofill
n 247 230 M 240 234 L 240 226 L 247 230 L s
n matrix currentmatrix 260 230 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
n matrix currentmatrix 260 230 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
n 110 240 M 114 247 L 106 247 L 110 240 L
eofill
n 110 240 M 114 247 L 106 247 L 110 240 L s
n 127 230 M 120 234 L 120 226 L 127 230 L
eofill
n 127 230 M 120 234 L 120 226 L 127 230 L s
n 180 230 M 172 234 L 172 226 L 180 230 L
eofill
n 180 230 M 172 234 L 172 226 L 180 230 L s
n 357 300 M 350 304 L 350 296 L 357 300 L
eofill
n 357 300 M 350 304 L 350 296 L 357 300 L s
n matrix currentmatrix 380 300 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
n matrix currentmatrix 380 300 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
n 410 330 M 402 334 L 402 326 L 410 330 L
eofill
n 410 330 M 402 334 L 402 326 L 410 330 L s
1 setgray
n matrix currentmatrix 460 220 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
0.341176 setgray
n matrix currentmatrix 460 220 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0 setgray
n 460 50 M 467 46 L 467 54 L 460 50 L
eofill
n 460 50 M 467 46 L 467 54 L 460 50 L s
n 180 190 M 172 194 L 172 186 L 180 190 L
eofill
n 180 190 M 172 194 L 172 186 L 180 190 L s
n 357 270 M 350 274 L 350 266 L 357 270 L
eofill
n 357 270 M 350 274 L 350 266 L 357 270 L s
1 setgray
n matrix currentmatrix 220 250 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
0.341176 setgray
n matrix currentmatrix 220 250 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0.498039 setgray
n 560 101 M 556 93 L 564 93 L 560 101 L
eofill
0 setgray
n 560 101 M 556 93 L 564 93 L 560 101 L s
0.498039 setgray
n matrix currentmatrix 560 106 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
0.25098 setgray
2 slw
n matrix currentmatrix 560 106 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0.498039 setgray
0 slw
n 577 190 M 570 194 L 570 186 L 577 190 L
eofill
0 setgray
n 577 190 M 570 194 L 570 186 L 577 190 L s
n 540 300 M 532 304 L 532 296 L 540 300 L
eofill
n 540 300 M 532 304 L 532 296 L 540 300 L s
n 617 290 M 610 294 L 610 286 L 617 290 L
eofill
n 617 290 M 610 294 L 610 286 L 617 290 L s
1 setgray
n matrix currentmatrix 560 70 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
0.341176 setgray
n matrix currentmatrix 560 70 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0 setgray
n 540 270 M 532 274 L 532 266 L 540 270 L
eofill
n 540 270 M 532 274 L 532 266 L 540 270 L s
n 450 387 M 454 394 L 446 394 L 450 387 L
eofill
n 450 387 M 454 394 L 446 394 L 450 387 L s
n 262 450 M 270 446 L 270 454 L 262 450 L
eofill
n 262 450 M 270 446 L 270 454 L 262 450 L s
n 357 380 M 350 384 L 350 376 L 357 380 L
eofill
n 357 380 M 350 384 L 350 376 L 357 380 L s
n 410 380 M 402 384 L 402 376 L 410 380 L
eofill
n 410 380 M 402 384 L 402 376 L 410 380 L s
n 357 460 M 350 464 L 350 456 L 357 460 L
eofill
n 357 460 M 350 464 L 350 456 L 357 460 L s
n 357 490 M 350 494 L 350 486 L 357 490 L
eofill
n 357 490 M 350 494 L 350 486 L 357 490 L s
n 310 510 M 314 517 L 306 517 L 310 510 L
eofill
n 310 510 M 314 517 L 306 517 L 310 510 L s
n 357 500 M 350 504 L 350 496 L 357 500 L
eofill
n 357 500 M 350 504 L 350 496 L 357 500 L s
n 540 390 M 532 394 L 532 386 L 540 390 L
eofill
n 540 390 M 532 394 L 532 386 L 540 390 L s
n 540 360 M 532 364 L 532 356 L 540 360 L
eofill
n 540 360 M 532 364 L 532 356 L 540 360 L s
n 540 460 M 532 464 L 532 456 L 540 460 L
eofill
n 540 460 M 532 464 L 532 456 L 540 460 L s
n 590 490 M 582 494 L 582 486 L 590 490 L
eofill
n 590 490 M 582 494 L 582 486 L 590 490 L s
n 570 470 M 574 477 L 566 477 L 570 470 L
eofill
n 570 470 M 574 477 L 566 477 L 570 470 L s
8/Courier-Bold ilvsf
G 292 303 M 1 -1 scale(ece411)ilvshow g
G 562 303 M 1 -1 scale(ece411)ilvshow g
8/Courier ilvsf
G 370 298 M 1 -1 scale(dest)ilvshow g
rc sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
G
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
555 145 M[-1.19034e-12 -1 1 -1.19034e-12 0 0]concat
0 7 rM 1 -1 scale(RESET)ilvshow g
rc sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
8/Courier-Bold ilvsf
G 0 7 M 1 -1 scale(Package List)ilvshow g
8/Courier ilvsf
G 0 16 M 1 -1 scale(LIBRARY ieee;)ilvshow g
G 0 25 M 1 -1 scale(USE ieee.std_logic_1164.all;)ilvshow g
G 0 34 M 1 -1 scale(USE ieee.NUMERIC_STD.all;)ilvshow g
G 0 43 M 1 -1 scale()ilvshow g
G 0 52 M 1 -1 scale(LIBRARY ece411;)ilvshow g
G 0 61 M 1 -1 scale(USE ece411.LC3b_types.all;)ilvshow g
G 0 70 M 1 -1 scale(USE ieee.std_logic_arith.all;)ilvshow g
G 290 132 M 1 -1 scale(PCMuxSel)dup stringwidth pop -1 mul 0 rM ilvshow g
G 440 122 M 1 -1 scale(LoadPC)dup stringwidth pop -1 mul 0 rM ilvshow g
8/Courier-Bold ilvsf
G 517 118 M 1 -1 scale(ece411)ilvshow g
G 517 127 M 1 -1 scale(Reg16)ilvshow g
G 517 136 M 1 -1 scale(PC)ilvshow g
8/Courier ilvsf
G 490 122 M 1 -1 scale(load)ilvshow g
8/Courier-Bold ilvsf
G 412 53 M 1 -1 scale(ece411)ilvshow g
G 412 62 M 1 -1 scale(Plus2)ilvshow g
G 412 71 M 1 -1 scale(aPlus2)ilvshow g
rc sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
8/Courier ilvsf
G
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
551 78 M[-1.19034e-12 -1 1 -1.19034e-12 0 0]concat
0 7 rM 1 -1 scale(RESET_L)ilvshow g
rc sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
G 480 48 M 1 -1 scale(PCout)ilvshow g
8/Courier-Bold ilvsf
G 192 203 M 1 -1 scale(ece411)ilvshow g
G 192 212 M 1 -1 scale(BRadd)ilvshow g
G 192 221 M 1 -1 scale(aBRadd)ilvshow g
G 72 213 M 1 -1 scale(ece411)ilvshow g
G 72 222 M 1 -1 scale(ADJ9)ilvshow g
G 72 231 M 1 -1 scale(aADJ9)ilvshow g
8/Courier ilvsf
G 240 168 M 1 -1 scale(PCPlus2out)ilvshow g
G 250 198 M 1 -1 scale(BRaddout)ilvshow g
G 140 228 M 1 -1 scale(ADJ9out)ilvshow g
G 140 188 M 1 -1 scale(PCout)ilvshow g
G 270 228 M 1 -1 scale(RFAout)ilvshow g
G 240 248 M 1 -1 scale(BRaddout)ilvshow g
G 410 282 M 1 -1 scale(opcode)ilvshow g
G 490 152 M 1 -1 scale(Input)ilvshow g
G 500 192 M 1 -1 scale(clk)ilvshow g
G 570 182 M 1 -1 scale(Output)dup stringwidth pop -1 mul 0 rM ilvshow g
G 410 272 M 1 -1 scale(imm5Flag)ilvshow g
8/Courier-Bold ilvsf
G 327 198 M 1 -1 scale(ece411)ilvshow g
G 327 207 M 1 -1 scale(WordMux3)ilvshow g
G 327 216 M 1 -1 scale(PCMUX)ilvshow g
8/Courier ilvsf
G 386 204 M 1 -1 scale(F)dup stringwidth pop -1 mul 0 rM ilvshow g
G 310 172 M 1 -1 scale(A)ilvshow g
G 310 202 M 1 -1 scale(B)ilvshow g
G 320 232 M 1 -1 scale(C)ilvshow g
rc sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
G
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
365 196 M[-1.19034e-12 -1 1 -1.19034e-12 0 0]concat
0 7 rM 1 -1 scale(Sel)ilvshow g
rc sc
realmatrix setmatrix
[0 -1 1 0 50 665] concat
rc sc realmatrix setmatrix
[0 -1 1 0 50 665] concat
n 685 510 -75 0 rect clip
G 420 208 M 1 -1 scale(PCMuxout)ilvshow g
G 460 228 M 1 -1 scale(clk)ilvshow g
G 597 188 M 1 -1 scale(PCout)ilvshow g
G 510 268 M 1 -1 scale(RESET_L)ilvshow g
G 427 198 M 1 -1 scale(PCMuxout)ilvshow g
8/Courier-Bold ilvsf
G 292 321 M 1 -1 scale(aIR)ilvshow g
8/Courier ilvsf
G 200 312 M 1 -1 scale(LoadIR)dup stringwidth pop -1 mul 0 rM ilvshow g
8/Courier-Bold ilvsf
G 292 312 M 1 -1 scale(IR)ilvshow g
8/Courier ilvsf
G 180 448 M 1 -1 scale(offset9)ilvshow g
G 510 392 M 1 -1 scale(RegWrite)dup stringwidth pop -1 mul 0 rM ilvshow g
G 410 432 M 1 -1 scale(StoreSR)dup stringwidth pop -1 mul 0 rM ilvshow g
8/Courier-Bold ilvsf
G 432 343 M 1 -1 scale(ece411)ilvshow g
G 432 352 M 1 -1 scale(StoreMux)ilvshow g
G 432 361 M 1 -1 scale(aStoreMux)ilvshow g
G 562 312 M 1 -1 scale(RegFile)ilvshow g
G 562 321 M 1 -1 scale(aRegFile)ilvshow g
8/Courier ilvsf
G 380 328 M 1 -1 scale(dest)ilvshow g
G 370 378 M 1 -1 scale(SrcA)ilvshow g
G 490 358 M 1 -1 scale(StoreMuxout)ilvshow g
G 370 458 M 1 -1 scale(SrcB)ilvshow g
G 370 488 M 1 -1 scale(index6)ilvshow g
G 370 498 M 1 -1 scale(imm5in)ilvshow g
realmatrix setmatrix
[0 -1 1 0 0 792] concat
rc sc
realmatrix setmatrix
[0 -1 1 0 0 792] concat
10/Courier-Bold ilvsf
0 setgray
G 330 45 M 1 -1 scale(ece411/Datapath/struct)ilvshow g
G 676 575 M 1 -1 scale(Page 1 of 6)ilvshow g
G 50 575 M 1 -1 scale(Printed by page10 on 01/30/13 at 17:07:30)ilvshow g
showpage
%%Page: 2 2
%%BeginPageSetup
realmatrix setmatrix
%%EndPageSetup
realmatrix setmatrix
[0 -1 1 0 50 1355] concat
rc sc realmatrix setmatrix
[0 -1 1 0 50 1355] concat
n 690 510 610 0 rect clip
12/Helvetica ilvsf
[] 0 setdash
0.8 setgray
0 slw
n 831 301 M 831 341 L 858 350 L 831 359 L 831 399 L 909 367 L 909 333 L 831 301 L
eofill
0.0784314 setgray
2 slw
n 831 301 M 831 341 L 858 350 L 831 359 L 831 399 L 909 367 L 909 333 L 831 301 L s
0.8 setgray
0 slw
n 69 209 541 261 rect eofill
0.0784314 setgray
2 slw
541 261 69 209 rectstroke
0.8 setgray
0 slw
n 69 59 591 491 rect eofill
0.0784314 setgray
2 slw
591 491 69 59 rectstroke
0 slw
n 1015 116 M 1025 116 L 1030 120 L 1025 124 L 1015 124 L 1015 116 L
eofill
0 setgray
n 1015 116 M 1025 116 L 1030 120 L 1025 124 L 1015 124 L 1015 116 L s
0.0784314 setgray
n 1015 116 M 1025 116 L 1030 120 L 1025 124 L 1015 124 L 1015 116 L
eofill
0 setgray
n 1015 116 M 1025 116 L 1030 120 L 1025 124 L 1015 124 L 1015 116 L s
n 1010 120 M 1015 120 L s
0.0784314 setgray
n 680 306 M 690 306 L 695 310 L 690 314 L 680 314 L 680 306 L
eofill
0 setgray
n 680 306 M 690 306 L 695 310 L 690 314 L 680 314 L 680 306 L s
0.0784314 setgray
n 680 306 M 690 306 L 695 310 L 690 314 L 680 314 L 680 306 L
eofill
0 setgray
n 680 306 M 690 306 L 695 310 L 690 314 L 680 314 L 680 306 L s
n 695 310 M 700 310 L s
0.0784314 setgray
n 830 276 M 840 276 L 845 280 L 840 284 L 830 284 L 830 276 L
eofill
0 setgray
n 830 276 M 840 276 L 845 280 L 840 284 L 830 284 L 830 276 L s
0.0784314 setgray
n 830 276 M 840 276 L 845 280 L 840 284 L 830 284 L 830 276 L
eofill
0 setgray
n 830 276 M 840 276 L 845 280 L 840 284 L 830 284 L 830 276 L s
n 845 280 M 850 280 L s
0.0784314 setgray
n 850 86 M 860 86 L 865 90 L 860 94 L 850 94 L 850 86 L
eofill
0 setgray
n 850 86 M 860 86 L 865 90 L 860 94 L 850 94 L 850 86 L s
0.0784314 setgray
n 850 86 M 860 86 L 865 90 L 860 94 L 850 94 L 850 86 L
eofill
0 setgray
n 850 86 M 860 86 L 865 90 L 860 94 L 850 94 L 850 86 L s
n 865 90 M 870 90 L s
0.0784314 setgray
n 700 106 M 710 106 L 715 110 L 710 114 L 700 114 L 700 106 L
eofill
0 setgray
n 700 106 M 710 106 L 715 110 L 710 114 L 700 114 L 700 106 L s
0.0784314 setgray
n 700 106 M 710 106 L 715 110 L 710 114 L 700 114 L 700 106 L
eofill
0 setgray
n 700 106 M 710 106 L 715 110 L 710 114 L 700 114 L 700 106 L s
n 715 110 M 720 110 L s
0.498039 setgray
n 789 160 M 789 190 L 711 219 L 711 131 L 789 160 L
eofill
0.25098 setgray
2 slw
n 789 160 M 789 190 L 711 219 L 711 131 L 789 160 L s
rc sc
realmatrix setmatrix
[0 -1 1 0 50 1355] concat
0 setgray
0 slw
n G 712 217 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
rc sc realmatrix setmatrix
[0 -1 1 0 50 1355] concat
n 690 510 610 0 rect clip