-
Notifications
You must be signed in to change notification settings - Fork 0
/
Error_probability.vee
1143 lines (1143 loc) · 20.6 KB
/
Error_probability.vee
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
(saveFormat "2.3")
(date "Wed 20/Mar/2002 06:51:29 ")
(veerev "5.0")
(platform "PC")
(execMode fast)
(filterNAN 0)
(workspaceStackingOrder M)
(SaveCF no)
(device 0 ROOTCONTEXT
(properties
(trigMode rad)
(nextID 158)
(popupTitleText " Error Probability")
(popupMoveable 1)
(popupTitleTextColor "Black")
(popupTitleBackgroundColor "Gray")
(deleteGlobals 0))
(deviceList
(device 79 FROMFILE
(properties
(name "Histogram")
(transactions 2 "READ CONTAINER X" "READ CONTAINER Y"))
(interface
(output 1
(name "X")
(optional yes))
(output 2
(name "Y")
(optional yes)))
(implementation
(attr iopath file read "A:\\Histo.dat"
(readTerm "\n")
(fs " ")
(eol "\n")
(multiField fullSyntax)
(arrayFormat block))))
(device 80 XYPLOT
(properties
(name "3D Eye Diagram (Histogram)"))
(interface
(input 1
(name "XData")
(lock constraints))
(input 2
(name "YData1")
(lock constraints))
(input 3
(type control)
(name "Next Curve")
(lock name constraints)
(optional yes)))
(implementation
(tracePin 2)
(graphMode rectangular)))
(device 84 START25)
(device 85 XYPLOT
(properties
(name "Error Probability (Lin & Log scale)"))
(interface
(input 1
(name "s")
(lock constraints))
(input 2
(name "P(E)")
(lock constraints))
(input 3
(name "log P(E)")
(lock constraints)
(optional yes))
(input 4
(type control)
(name "Next Curve")
(lock name constraints)
(optional yes)))
(implementation
(tracePin 2)
(tracePin 3)
(graphMode rectangular)))
(device 88 FROMFILE
(properties
(name "Probability")
(transactions 3 "READ CONTAINER X" "READ CONTAINER Y" "READ CONTAINER Z"))
(interface
(output 1
(name "X")
(optional yes))
(output 2
(name "Y")
(optional yes))
(output 3
(name "Z")
(optional yes)))
(implementation
(attr iopath file read "A:\\Probabil.dat"
(readTerm "\n")
(fs " ")
(eol "\n")
(multiField fullSyntax)
(arrayFormat block))))
(device 89 XYPLOT
(properties
(name "Eye closure (Upper & Lower)"))
(interface
(input 1
(name "time")
(lock constraints))
(input 2
(name "Low_ec")
(lock constraints))
(input 3
(name "Upp_ec")
(lock constraints)
(optional yes)))
(implementation
(tracePin 2)
(tracePin 3)
(graphMode rectangular)))
(device 90 FROMFILE
(properties
(name "Closure")
(transactions 3 "READ CONTAINER X" "READ CONTAINER Y" "READ CONTAINER Z"))
(interface
(output 1
(name "X")
(optional yes))
(output 2
(name "Y")
(optional yes))
(output 3
(name "Z")
(optional yes)))
(implementation
(attr iopath file read "A:\\Closure.dat"
(readTerm "\n")
(fs " ")
(eol "\n")
(multiField fullSyntax)
(arrayFormat block))))
(device 93 FORMULA
(properties
(name "V_shift")
(expr 1 "A+1.75"))
(interface
(input 1
(name "A")
(optional yes))
(output 1
(name "Result")
(tag "Result")
(lock name constraints)
(optional yes))))
(device 94 LABEL
(properties
(name " Histogram")
(labelValue " Histogram"))
(implementation))
(device 95 LABEL
(properties
(name "P(E)")
(labelValue "P(E)"))
(implementation))
(device 96 LABEL
(properties
(name "log P(E)")
(labelValue "log P(E)"))
(implementation))
(device 97 LABEL
(properties
(name "Eye closure")
(labelValue "Eye closure"))
(implementation))
(device 99 LABEL
(properties
(name "P(E)=P(0)Q(1/C0)+P(1)Q(1/C1)")
(labelValue "P(E)=P(0)Q(1/C0)+P(1)Q(1/C1)"))
(implementation))
(device 100 LABEL
(properties
(name "Lower eye closure: C0 = s0/(u - m0) ")
(labelValue "Lower eye closure: C0 = s0/(u - m0) "))
(implementation))
(device 103 FORCOUNT
(properties
(count 70))
(interface
(output 1
(name "Count")
(lock name constraints))))
(device 104 FORCOUNT
(properties
(count 70))
(interface
(output 1
(name "Count")
(lock name constraints))))
(device 105 FORCOUNT
(properties
(count 70))
(interface
(output 1
(name "Count")
(lock name constraints))))
(device 106 NOTE
(properties
(name "Sampling")
(text2 1 "22 ns<t<29 ns step 0.1 ns")))
(device 107 NOTE
(properties
(name "Data Files")
(text2 3 "My Documents\\VEE_3_Programs\\Error\\Histo.dat"
"My Documents\\VEE_3_Programs\\Error\\Probabil.dat"
"My Documents\\VEE_3_Programs\\Error\\Closure.dat")))
(device 114 TEXTDISPLAY
(properties
(name "C1"))
(interface
(input 1
(name "Data"))))
(device 115 TEXTDISPLAY
(properties
(name "C0"))
(interface
(input 1
(name "Data"))))
(device 126 SLIDINGWINDOW
(properties
(name "C1[ I ]")
(vecSize 70)
(triggerSize 70))
(interface
(input 1
(name "Data")
(tag "Data")
(requires
(shape "Scalar"))
(lock constraints))
(output 1
(name "Array")
(tag "Array"))))
(device 127 SLIDINGWINDOW
(properties
(name "C0[ I ]")
(vecSize 70)
(triggerSize 70))
(interface
(input 1
(name "Data")
(tag "Data")
(requires
(shape "Scalar"))
(lock constraints))
(output 1
(name "Array")
(tag "Array"))))
(device 128 FORMULA
(properties
(name "min(x)")
(expr 1 "min(x)"))
(interface
(input 1
(name "X")
(optional yes))
(output 1
(name "Result")
(tag "Result")
(lock name constraints)
(optional yes))))
(device 129 FORMULA
(properties
(name "min(x)")
(expr 1 "min(x)"))
(interface
(input 1
(name "X")
(optional yes))
(output 1
(name "Result")
(tag "Result")
(lock name constraints)
(optional yes))))
(device 150 CONTEXT
(properties
(name "P(E)")
(trigMode rad)
(nextID 7)
(popupTitleText "UserObject")
(popupMoveable 1))
(interface
(input 1
(name "C0")
(optional yes))
(input 2
(name "C1")
(optional yes))
(output 1
(type data)
(name "X")
(lock constraints)
(optional yes)))
(deviceList
(device 1 FORMULA
(properties
(name "erfc(x)")
(expr 1 "0.5*(erfc(1/C0)+erfc(1/C1))"))
(interface
(input 1
(name "C0")
(optional yes))
(input 2
(name "C1")
(optional yes))
(output 1
(name "Result")
(tag "Result")
(lock name constraints)
(optional yes))))
(device 2 IFTHENELSE
(properties
(cases 1 "P<10^(-12)"))
(interface
(input 1
(name "P")
(optional yes))
(output 1
(name "Then")
(lock name constraints))
(output 2
(name "Else")
(lock name constraints))))
(device 3 LITERALCONSTANT
(properties
(name "Text"))
(interface
(output 1
(name "Text")
(lock name constraints)))
(implementation
(value Text
(data "min P(E)<1*E-12"))
(initValue Text
(data ""))))
(device 4 GATE
(interface
(input 1
(name "A")
(tag "InData"))
(output 1
(name "X"))))
(device 5 GATE
(interface
(input 1
(name "A")
(tag "InData"))
(output 1
(name "X"))))
(device 6 JUNCTION
(properties
(name "JCT"))
(interface
(input 1
(name "A"))
(input 2
(name "B"))
(output 1
(name "Data"))))
(configuration
(connect I1:1 D0:1)
(connect I2:1 D0:2)
(connect D0:1 D1:1)
(connect D1:1 D3:0)
(connect D2:1 D3:1)
(connect D1:2 D4:0)
(connect D0:1 D4:1)
(connect D3:1 D5:1)
(connect D4:1 D5:2)
(connect D5:1 O1:1)))
(contextCarrier
(active detail)
(detail
(extent 441 224)
(anchorPt -1 -1)
(configuration
(devCarrierFor 1
(active icon)
(icon
(extent 44 25))
(open
(extent 205 42))
(terminals on)
(pinCenter 60 110))
(devCarrierFor 2
(active icon)
(icon
(extent 82 25))
(open
(extent 136 53))
(terminals on)
(pinCenter 170 110))
(devCarrierFor 3
(active icon)
(icon
(extent 31 16))
(open
(extent 194 30))
(pinCenter 170 150))
(devCarrierFor 4
(active icon)
(icon
(extent 35 16))
(open)
(terminals on)
(pinCenter 320 150))
(devCarrierFor 5
(active icon)
(icon
(extent 35 16))
(open)
(terminals on)
(pinCenter 320 190))
(devCarrierFor 6
(active icon)
(icon
(extent 29 25))
(open)
(terminals on)
(pinCenter 380 170))
(connect I1:1 D0:1
(points 4 1 52 10 52 10 100 35 100))
(connect I2:1 D0:2
(points 4 1 172 10 172 10 120 35 120))
(connect D0:1 D1:1
(points 2 84 110 126 110))
(connect D1:1 D3:0
(points 3 213 100 320 100 320 139))
(connect D2:1 D3:1
(points 2 188 150 300 150))
(connect D1:2 D4:0
(points 5 213 120 230 120 230 170 320 170 320 179))
(connect D0:1 D4:1
(points 4 84 110 110 110 110 190 300 190))
(connect D3:1 D5:1
(points 4 340 150 350 150 350 160 363 160))
(connect D4:1 D5:2
(points 4 340 190 350 190 350 180 363 180))
(connect D5:1 O1:1
(points 4 397 170 420 170 420 112 441 112)))
(stackingOrder 0 4 3 5 1 2))))
(device 151 TEXTDISPLAY
(properties
(name "min P(E)"))
(interface
(input 1
(name "Data"))))
(device 152 LABEL
(properties
(name "Error Probability Estimation")
(labelValue "Error Probability Estimation"))
(implementation))
(device 153 LABEL
(properties
(name "Upper eye closure: C1 = s1/(m1 - u)")
(labelValue "Upper eye closure: C1 = s1/(m1 - u)"))
(implementation))
(device 155 LABEL
(properties
(name "lower")
(labelValue "lower"))
(implementation))
(device 156 LABEL
(properties
(name "upper")
(labelValue "upper"))
(implementation))
(device 157 DELAY
(properties
(delay 0))
(interface
(output 1
(name "Done"))))
(configuration
(connect D16:1 D0:0)
(connect D0:1 D1:1)
(connect D0:2 D1:2)
(connect D16:1 D1:3)
(connect D4:1 D3:1)
(connect D7:1 D3:2)
(connect D4:3 D3:3)
(connect D15:1 D3:4)
(connect D15:1 D4:0)
(connect D6:1 D5:1)
(connect D6:2 D5:2)
(connect D6:3 D5:3)
(connect D14:1 D6:0)
(connect D4:2 D7:1)
(connect D15:0 D14:0)
(connect D16:0 D15:0)
(connect D2:0 D16:0)
(connect D23:1 D19:1)
(connect D24:1 D20:1)
(connect D6:2 D21:1)
(connect D6:3 D22:1)
(connect D22:1 D23:1)
(connect D21:1 D24:1)
(connect D23:1 D25:1)
(connect D24:1 D25:2)
(connect D25:1 D26:1)
(connect D16:1 D31:0))
(ShowOnExecPanel))
(contextCarrier
(wndOrigin 2 2)
(wndState res)
(active detail)
(panel
(extent 800 534)
(widget 10 detail
(relativeOrigin 30 620)
(bg "Black")
(fg "Cyan")
(font "Arial" 16 bold italic)
(title off)
(borderStyle none)
(extent 90 30)
(just l))
(widget 26 detail
(relativeOrigin 480 180)
(fg "Red")
(title on)
(titleFg "Blue")
(titleFont "Arial" 16 bold italic)
(borderStyle flat)
(extent 316 26)
(scFont "Arial" 18)
(arFont "Arial" 16))
(widget 1 detail
(relativeOrigin 0 0)
(title on)
(titleBg "Blue")
(borderStyle none)
(extent 480 212)
(displayMode 0)
(graphType cartesian)
(gridType off)
(scale 0
(name "Y name")
(domainName "X name")
(Yspacing 10000)
(Xspacing 10000)
(pen 9)
(show 1)
(range -8 135 4 linear))
(domain -40 440 4 linear)
(trace 0 onScale 0
(name "YData1")
(pen 3)
(lineType 1)
(pointType 0)))
(widget 8 detail
(relativeOrigin 10 40)
(bg "Black")
(fg "Green")
(font "Arial" 16 bold italic)
(title off)
(borderStyle none)
(extent 96 28)
(just c))
(widget 13 detail
(relativeOrigin 480 60)
(bg "Light Blue Gray")
(fg "Green")
(font "Arial" 16 bold italic)
(title off)
(borderStyle none)
(extent 320 30)
(just c))
(widget 27 detail
(relativeOrigin 480 0)
(bg "Light Blue Gray")
(fg "Red")
(font "Arial" 18 bold italic)
(title off)
(borderStyle convex)
(extent 316 26)
(just c))
(widget 5 detail
(relativeOrigin 480 230)
(bg "Blue")
(title on)
(titleBg "Blue")
(borderStyle flat)
(extent 316 278)
(displayMode 0)
(graphType cartesian)
(gridType off)
(scale 0
(name "Eye_closure")
(domainName "time")
(Yspacing 10000)
(Xspacing 10000)
(pen 9)
(show 1)
(range -0.2 1.6 4 linear))
(domain 2.1E-008 3E-008 4 linear)
(trace 0 onScale 0
(name "Low_ec")
(pen 3)
(lineType 1)
(pointType 0))
(trace 1 onScale 0
(name "Upp_ec")
(pen 4)
(lineType 1)
(pointType 0))
(markerInterpolate 1))
(widget 11 detail
(relativeOrigin 490 260)
(bg "Black")
(fg "White")
(font "Arial" 16 bold italic)
(title off)
(borderStyle none)
(extent 120 30)
(just c))
(widget 12 detail
(relativeOrigin 480 140)
(bg "Pale Blue")
(fg "Red")
(font "Arial" 20 bold italic)
(title off)
(borderStyle flat)
(extent 316 36)
(just c))
(widget 28 detail
(relativeOrigin 480 30)
(bg "Light Blue Gray")
(fg "Yellow")
(font "Arial" 16 bold italic)
(title off)
(borderStyle none)
(extent 320 30)
(just c))
(widget 3 detail
(relativeOrigin 0 230)
(bg "Blue")
(title on)
(titleBg "Blue")
(borderStyle none)
(extent 480 282)
(displayMode 0)
(graphType cartesian)
(gridType off)
(scale 0
(name "Y name")
(domainName "X name")
(Yspacing 10000)
(Xspacing 10000)
(pen 9)
(show 1)
(range -3 6 4 linear))
(domain -0.3 0.44 4 linear)
(trace 0 onScale 0
(name "P(E)")
(pen 4)
(lineType 1)
(pointType 0))
(trace 1 onScale 0
(name "log P(E)")
(pen 7)
(lineType 1)
(pointType 0))
(markerInterpolate 1))
(widget 10 detail
(relativeOrigin 10 380)
(bg "Black")
(fg "Cyan")
(font "Arial" 16 bold italic)
(title off)
(borderStyle none)
(extent 70 28)
(just c))
(widget 9 detail
(relativeOrigin 10 270)
(bg "Black")
(fg "Yellow")
(font "Arial" 16 bold italic)
(title off)
(borderStyle none)
(extent 80 30)
(just c))
(widget 29 detail
(relativeOrigin 550 330)
(bg "Black")
(fg "Green")
(font "Arial" 14 italic)
(title off)
(borderStyle none)
(extent 43 26)
(just c))
(widget 30 detail
(relativeOrigin 700 440)
(bg "Black")
(fg "Yellow")
(font "Arial" 14 italic)
(title off)
(borderStyle none)
(extent 47 26)
(just c))
(widget 19 detail
(relativeOrigin 480 90)
(fg "Yellow")
(title on)
(titleFg "Yellow")
(titleFont "Arial" 14 bold italic)
(borderStyle flat)
(extent 166 28))
(widget 20 detail
(relativeOrigin 650 90)
(fg "Green")
(title on)
(titleFg "Green")
(titleFont "Arial" 14 bold italic)
(borderStyle flat)
(extent 146 28)))
(detail
(extent 800 534)
(anchorPt 247 91)
(configuration
(devCarrierFor 79
(active icon)
(icon
(extent 110 25))
(open
(extent 322 148))
(terminals on)
(pinCenter 0 -50))
(devCarrierFor 80
(active icon)
(icon
(extent 281 76)
(iconImage "D:\\Program Files\\Hewlett-Packard\\VEE 5.0\\bitmaps\\display.icn"))
(open
(extent 489 348)
(displayMode scrollGraph)
(graphType cartesian)
(gridType grid)
(scale 0
(name "Y name")
(domainName "X name")
(pen 9)
(show 1)
(range 0 140 4 linear))
(domain 0 500 4 linear)
(trace 0 onScale 0
(name "YData1")
(pen 4)
(lineType 1)
(pointType 0)))
(terminals on)
(pinCenter 370 -40))
(devCarrierFor 84
(active open)
(icon
(extent 42 15))
(open
(extent 67 37))
(title off)
(pinCenter -190 -60))
(devCarrierFor 85
(active icon)
(icon
(extent 281 132))
(open
(extent 488 486)
(displayMode annotGraph)
(graphType cartesian)
(gridType grid)
(scale 0
(name "Y name")
(domainName "X name")
(pen 9)
(show 1)
(range -3 5 4 linear))
(domain -0.3 0.4 4 linear)
(trace 0 onScale 0
(name "P(E)")
(pen 4)
(lineType 1)
(pointType 0))
(trace 1 onScale 0
(name "log P(E)")
(pen 7)
(lineType 1)
(pointType 0))
(marker 0 onTrace 1)
(marker 1 onTrace 0)
(markerInterpolate 1))
(terminals on)
(pinCenter 370 70))
(devCarrierFor 88
(active icon)
(icon
(extent 118 95))
(open
(extent 495 155))
(terminals on)
(pinCenter 0 50))
(devCarrierFor 89
(active icon)
(icon
(extent 278 103))
(open
(extent 317 281)
(displayMode scrollGraph)
(graphType cartesian)
(gridType grid)
(scale 0
(name "Eye_closure")
(domainName "time")
(pen 9)
(show 1)
(range 0 1.6 4 linear))
(domain 2.1E-008 3E-008 4 linear)
(trace 0 onScale 0
(name "Low_ec")
(pen 4)
(lineType 1)
(pointType 0))
(trace 1 onScale 0
(name "Upp_ec")
(pen 7)
(lineType 1)
(pointType 0)))
(terminals on)
(pinCenter 370 200))
(devCarrierFor 90
(active icon)
(icon
(extent 113 111))
(open
(extent 445 157))
(terminals on)
(pinCenter 0 200))
(devCarrierFor 93
(active icon)
(icon
(extent 47 16))
(open
(extent 88 62))
(terminals on)
(pinCenter 160 50))
(devCarrierFor 94
(active open)
(icon
(extent 78 52)
(pictureMode scaled)
(iconImage "blank.gif"))
(open
(extent 112 35)
(just c))
(title off)
(font "Arial" 16 bold italic)
(titleFont "Arial" 14 bold italic)
(pinCenter 370 -50))
(devCarrierFor 95
(active open)
(icon
(extent 32 0))
(open
(extent 103 30)
(just c))
(title off)
(bg "Black")
(fg "Yellow")
(font "Arial" 16 bold italic)
(titleBg "Black")
(titleFg "Yellow")
(titleFont "Arial" 16 bold italic)
(pinCenter 370 30))
(devCarrierFor 96
(active open)
(icon
(extent 56 0))
(open
(extent 102 33)
(just c))
(title off)
(bg "Black")
(fg "Blue")
(font "Arial" 16 bold italic)
(pinCenter 370 110))
(devCarrierFor 97
(active open)
(icon
(extent 81 0))
(open
(extent 110 32)
(just c))
(title off)
(bg "Black")
(fg "Magenta")
(font "Arial" 16 bold italic)
(pinCenter 370 230))
(devCarrierFor 99
(active icon)
(icon
(extent 282 26))
(open
(extent 273 32)
(just c))
(title off)
(bg "Light Blue Gray")
(titleFont "Arial" 16 bold italic)
(pinCenter 0 410))
(devCarrierFor 100
(active open)
(icon
(extent 295 18))
(open
(extent 281 30)
(just c))
(title off)
(bg "Light Blue Gray")
(font "Arial" 16 bold italic)
(titleFont "Arial" 16 bold italic)
(pinCenter 0 360))
(devCarrierFor 103
(active icon)
(icon
(extent 68 51)
(iconImage "loop.icn"))
(open
(extent 106 32))
(pinCenter -190 230))
(devCarrierFor 104
(active icon)
(icon
(extent 68 51)
(iconImage "loop.icn"))
(open
(extent 106 32))
(pinCenter -190 120))
(devCarrierFor 105
(active icon)
(icon
(extent 68 51)
(iconImage "loop.icn"))
(open
(extent 106 32))
(pinCenter -190 20))
(devCarrierFor 106
(active icon)
(icon
(extent 68 51)
(iconImage "notepad.icn"))
(open
(extent 246 45)
(editing enabled))
(pinCenter -190 320))
(devCarrierFor 107
(active icon)
(icon
(extent 61 51)
(iconImage "info.gif"))
(open
(extent 411 86)
(editing enabled))
(pinCenter -200 390))
(devCarrierFor 114
(active icon)
(icon
(extent 24 16))
(open
(extent 131 28))
(pinCenter 381 270))
(devCarrierFor 115
(active icon)
(icon
(extent 24 16))
(open
(extent 131 28))
(pinCenter 381 350))
(devCarrierFor 126
(active icon)
(icon
(extent 41 16))
(open
(extent 160 57))
(terminals on)
(pinCenter 250 350))
(devCarrierFor 127
(active icon)
(icon
(extent 41 16))
(open
(extent 160 57))
(terminals on)
(pinCenter 250 270))
(devCarrierFor 128
(active icon)
(icon
(extent 42 16))