-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdfmarksANN.ps
24921 lines (24921 loc) · 469 KB
/
pdfmarksANN.ps
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
/correction where { pop } { /correction { } def } ifelse
[
/Dest (pop)
/SrcPg 522 correction
/Rect [ 171.5 589.167 187.566 597.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (exch)
/SrcPg 522 correction
/Rect [ 171.5 575.667 190.032 583.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (dup)
/SrcPg 522 correction
/Rect [ 171.5 562.167 187.558 570.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (copy)
/SrcPg 522 correction
/Rect [ 171.5 548.667 191.321 556.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (index)
/SrcPg 522 correction
/Rect [ 171.5 535.167 194.262 543.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (roll)
/SrcPg 522 correction
/Rect [ 171.5 521.667 187.732 529.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (clear)
/SrcPg 522 correction
/Rect [ 171.5 496.667 192.617 504.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (count)
/SrcPg 522 correction
/Rect [ 171.5 483.167 196.212 491.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (mark)
/SrcPg 522 correction
/Rect [ 171.5 469.667 192.473 477.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (cleartomark)
/SrcPg 522 correction
/Rect [ 171.5 456.167 218.899 464.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (counttomark)
/SrcPg 522 correction
/Rect [ 171.5 442.667 222.235 450.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (add)
/SrcPg 522 correction
/Rect [ 221.5 386.667 237.023 394.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (div)
/SrcPg 522 correction
/Rect [ 221.5 373.167 234.82 381.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (idiv)
/SrcPg 522 correction
/Rect [ 221.5 359.667 237.059 367.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (mod)
/SrcPg 522 correction
/Rect [ 221.5 346.167 239.867 354.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (mul)
/SrcPg 522 correction
/Rect [ 221.5 332.667 239.895 340.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (sub)
/SrcPg 522 correction
/Rect [ 221.5 319.167 236.121 327.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (abs)
/SrcPg 522 correction
/Rect [ 221.5 305.667 237.059 313.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (neg)
/SrcPg 522 correction
/Rect [ 221.5 292.167 237.012 300.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (ceiling)
/SrcPg 522 correction
/Rect [ 221.5 278.667 247.574 286.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (floor)
/SrcPg 522 correction
/Rect [ 221.5 265.167 242.277 273.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (round)
/SrcPg 522 correction
/Rect [ 221.5 251.667 245.471 259.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (truncate)
/SrcPg 522 correction
/Rect [ 221.5 238.167 255.001 246.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (sqrt)
/SrcPg 522 correction
/Rect [ 221.5 224.667 239.532 232.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (atan)
/SrcPg 522 correction
/Rect [ 221.501 211.167 239.401 219.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (cos)
/SrcPg 522 correction
/Rect [ 221.5 197.667 236.282 205.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (sin)
/SrcPg 522 correction
/Rect [ 221.5 184.168 233.382 192.168 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (exp)
/SrcPg 522 correction
/Rect [ 221.5 170.668 236.269 178.668 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (ln)
/SrcPg 522 correction
/Rect [ 221.5 157.168 229.738 165.168 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (log)
/SrcPg 522 correction
/Rect [ 221.5 143.668 234.687 151.668 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (rand)
/SrcPg 523 correction
/Rect [ 221.5 649.667 239.985 657.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (srand)
/SrcPg 523 correction
/Rect [ 221.5 636.167 243.629 644.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (rrand)
/SrcPg 523 correction
/Rect [ 221.5 622.667 243.098 630.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (array)
/SrcPg 523 correction
/Rect [ 221.5 566.667 242.422 574.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest ([)
/SrcPg 523 correction
/Rect [ 221.5 553.167 227.5 561.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (])
/SrcPg 523 correction
/Rect [ 221.5 539.667 227.5 547.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (length)
/SrcPg 523 correction
/Rect [ 221.5 526.167 247.332 534.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (get)
/SrcPg 523 correction
/Rect [ 221.501 512.667 237.024 520.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (put)
/SrcPg 523 correction
/Rect [ 221.5 499.167 237.594 507.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (getinterval)
/SrcPg 523 correction
/Rect [ 221.5 485.667 266.893 493.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (putinterval)
/SrcPg 523 correction
/Rect [ 221.5 460.667 267.464 468.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (astore)
/SrcPg 523 correction
/Rect [ 221.5 435.667 246.62 443.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (aload)
/SrcPg 523 correction
/Rect [ 221.5 422.167 243.555 430.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (copy)
/SrcPg 523 correction
/Rect [ 221.5 408.667 241.321 416.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (forall)
/SrcPg 523 correction
/Rect [ 221.5 383.667 244.858 391.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (packedarray)
/SrcPg 523 correction
/Rect [ 221.5 327.667 269.936 335.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (setpacking)
/SrcPg 523 correction
/Rect [ 221.5 302.667 264.003 310.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (currentpacking)
/SrcPg 523 correction
/Rect [ 221.5 277.667 280.435 285.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (length)
/SrcPg 523 correction
/Rect [ 221.5 264.167 247.332 272.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (get)
/SrcPg 523 correction
/Rect [ 221.5 250.667 237.023 258.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (getinterval)
/SrcPg 523 correction
/Rect [ 221.5 237.167 266.893 245.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (aload)
/SrcPg 523 correction
/Rect [ 221.5 212.168 243.554 220.168 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (copy)
/SrcPg 523 correction
/Rect [ 221.5 187.168 241.321 195.168 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (forall)
/SrcPg 523 correction
/Rect [ 221.5 162.168 244.858 170.168 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (dict)
/SrcPg 524 correction
/Rect [ 221.5 623.167 238.877 631.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (<<)
/SrcPg 524 correction
/Rect [ 221.5 598.167 232.711 606.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (>>)
/SrcPg 524 correction
/Rect [ 221.5 584.667 232.711 592.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (length)
/SrcPg 524 correction
/Rect [ 221.5 571.167 247.332 579.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (maxlength)
/SrcPg 524 correction
/Rect [ 221.5 557.667 263.512 565.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (begin)
/SrcPg 524 correction
/Rect [ 221.5 544.167 244.379 552.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (end)
/SrcPg 524 correction
/Rect [ 221.5 530.667 237.012 538.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (def)
/SrcPg 524 correction
/Rect [ 221.5 517.167 237.094 525.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (load)
/SrcPg 524 correction
/Rect [ 221.5 503.667 239.113 511.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (store)
/SrcPg 524 correction
/Rect [ 221.5 478.667 242.187 486.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (get)
/SrcPg 524 correction
/Rect [ 221.501 465.167 237.024 473.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (put)
/SrcPg 524 correction
/Rect [ 221.499 451.667 237.593 459.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (undef)
/SrcPg 524 correction
/Rect [ 221.501 438.167 247.071 446.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (known)
/SrcPg 524 correction
/Rect [ 221.5 424.667 248.476 432.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (where)
/SrcPg 524 correction
/Rect [ 221.499 411.167 246.623 419.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (copy)
/SrcPg 524 correction
/Rect [ 221.5 386.167 241.321 394.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (forall)
/SrcPg 524 correction
/Rect [ 221.5 372.667 244.858 380.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (currentdict)
/SrcPg 524 correction
/Rect [ 221.5 359.167 266.483 367.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (errordict)
/SrcPg 524 correction
/Rect [ 221.5 345.667 257.557 353.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest ($error)
/SrcPg 524 correction
/Rect [ 221.5 332.167 247.807 340.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (systemdict)
/SrcPg 524 correction
/Rect [ 221.5 318.667 265.415 326.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (userdict)
/SrcPg 524 correction
/Rect [ 221.5 305.167 255.071 313.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (globaldict)
/SrcPg 524 correction
/Rect [ 221.5 291.667 262.849 299.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (statusdict)
/SrcPg 524 correction
/Rect [ 221.5 278.167 261.672 286.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (countdictstack)
/SrcPg 524 correction
/Rect [ 221.5 264.668 278.773 272.668 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (dictstack)
/SrcPg 524 correction
/Rect [ 221.5 251.168 257.03 259.168 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (cleardictstack)
/SrcPg 524 correction
/Rect [ 221.5 237.668 275.198 245.668 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (string)
/SrcPg 525 correction
/Rect [ 211.5 623.167 234.566 631.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (length)
/SrcPg 525 correction
/Rect [ 211.5 609.667 237.332 617.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (get)
/SrcPg 525 correction
/Rect [ 211.5 596.167 227.023 604.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (put)
/SrcPg 525 correction
/Rect [ 211.501 582.667 227.594 590.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (getinterval)
/SrcPg 525 correction
/Rect [ 211.5 569.167 256.893 577.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (putinterval)
/SrcPg 525 correction
/Rect [ 211.5 544.167 257.464 552.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (copy)
/SrcPg 525 correction
/Rect [ 211.5 519.167 231.321 527.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (forall)
/SrcPg 525 correction
/Rect [ 211.5 494.167 234.858 502.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (anchorsearch)
/SrcPg 525 correction
/Rect [ 211.5 480.667 263.499 488.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (search)
/SrcPg 525 correction
/Rect [ 211.5 455.667 237.084 463.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (token)
/SrcPg 525 correction
/Rect [ 211.5 430.667 234.402 438.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (eq)
/SrcPg 525 correction
/Rect [ 211.5 363.167 222.012 371.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (ne)
/SrcPg 525 correction
/Rect [ 211.5 349.667 222.5 357.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (ge)
/SrcPg 525 correction
/Rect [ 211.5 336.167 222.512 344.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (gt)
/SrcPg 525 correction
/Rect [ 211.5 322.667 222.512 330.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (le)
/SrcPg 525 correction
/Rect [ 211.5 309.167 219.738 317.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (lt)
/SrcPg 525 correction
/Rect [ 211.5 295.667 219.738 303.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (and)
/SrcPg 525 correction
/Rect [ 211.5 282.167 226.941 290.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (not)
/SrcPg 525 correction
/Rect [ 211.5 268.667 227.434 276.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (or)
/SrcPg 525 correction
/Rect [ 211.5 255.167 222.434 263.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (xor)
/SrcPg 525 correction
/Rect [ 211.5 241.667 226.592 249.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (true)
/SrcPg 525 correction
/Rect [ 211.5 228.168 228.637 236.168 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (false)
/SrcPg 525 correction
/Rect [ 211.5 214.668 230.613 222.668 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (bitshift)
/SrcPg 525 correction
/Rect [ 211.5 201.168 241.711 209.168 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (exec)
/SrcPg 526 correction
/Rect [ 221.5 623.167 240.618 631.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (if)
/SrcPg 526 correction
/Rect [ 221.5 609.667 229.738 617.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (ifelse)
/SrcPg 526 correction
/Rect [ 221.5 596.167 242.834 604.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (for)
/SrcPg 526 correction
/Rect [ 221.5 582.667 235.139 590.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (repeat)
/SrcPg 526 correction
/Rect [ 221.5 557.667 249.117 565.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (loop)
/SrcPg 526 correction
/Rect [ 221.5 544.167 239.629 552.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (exit)
/SrcPg 526 correction
/Rect [ 221.5 530.667 238.5 538.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (stop)
/SrcPg 526 correction
/Rect [ 221.5 517.167 239.125 525.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (stopped)
/SrcPg 526 correction
/Rect [ 388.318 517.167 420.713 525.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (stopped)
/SrcPg 526 correction
/Rect [ 221.5 503.667 253.894 511.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (stop)
/SrcPg 526 correction
/Rect [ 461.239 503.667 478.864 511.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (countexecstack)
/SrcPg 526 correction
/Rect [ 221.5 490.167 281.368 498.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (execstack)
/SrcPg 526 correction
/Rect [ 221.5 476.667 259.616 484.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (quit)
/SrcPg 526 correction
/Rect [ 221.5 463.167 239.797 471.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (start)
/SrcPg 526 correction
/Rect [ 221.5 449.667 241.962 457.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (type)
/SrcPg 526 correction
/Rect [ 221.5 393.667 240.143 401.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (cvlit)
/SrcPg 526 correction
/Rect [ 221.499 380.167 240.343 388.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (cvx)
/SrcPg 526 correction
/Rect [ 221.5 366.667 235.867 374.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (xcheck)
/SrcPg 526 correction
/Rect [ 221.5 353.167 249.017 361.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (executeonly)
/SrcPg 526 correction
/Rect [ 221.5 339.667 269.203 347.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (noaccess)
/SrcPg 526 correction
/Rect [ 221.5 314.667 257.813 322.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (readonly)
/SrcPg 526 correction
/Rect [ 221.5 289.667 256.768 297.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (rcheck)
/SrcPg 526 correction
/Rect [ 221.5 264.667 247.924 272.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (wcheck)
/SrcPg 526 correction
/Rect [ 221.5 251.167 251.327 259.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (cvi)
/SrcPg 526 correction
/Rect [ 221.5 237.667 235.867 245.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (cvn)
/SrcPg 526 correction
/Rect [ 221.5 224.168 235.867 232.168 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (cvr)
/SrcPg 526 correction
/Rect [ 221.5 210.668 235.867 218.668 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (cvrs)
/SrcPg 526 correction
/Rect [ 221.5 197.168 238.981 205.168 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (cvs)
/SrcPg 526 correction
/Rect [ 221.5 183.668 235.771 191.668 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (file)
/SrcPg 527 correction
/Rect [ 211.5 623.167 224.625 631.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (filter)
/SrcPg 527 correction
/Rect [ 211.5 598.167 232.155 606.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (closefile)
/SrcPg 527 correction
/Rect [ 211.5 584.667 243.879 592.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (read)
/SrcPg 527 correction
/Rect [ 211.5 571.167 229.514 579.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (write)
/SrcPg 527 correction
/Rect [ 211.5 546.167 232.42 554.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (readhexstring)
/SrcPg 527 correction
/Rect [ 211.5 532.667 265.363 540.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (writehexstring)
/SrcPg 527 correction
/Rect [ 211.5 507.667 267.699 515.667 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (readstring)
/SrcPg 527 correction
/Rect [ 211.5 494.167 251.662 502.167 ]
/Border [0 0 0]
/Subtype /Link
/ANN pdfmark
[
/Dest (writestring)
/SrcPg 527 correction
/Rect [ 211.5 480.667 253.998 488.667 ]
/Border [0 0 0]