Solved: Gemstone session has lost its connection to the Stone Repository monitor, SocketRead failed

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

Solved: Gemstone session has lost its connection to the Stone Repository monitor, SocketRead failed

Nick
Hi,

I mentioned earlier in the week that I was having problems connecting to a clean installation of Gemstone2.4.4.1 on a Linux distribution (Ubuntu/Centos/Suse - I tested them all!) running within VMWare Fusion on a Mac. I tried again today *initially* with out luck. I'd installed, configured and started Gemstone on the VMWare linux installation and all was looking good. Then when I tried to login from Gemtools running on my host machine Gemtools reported: 'The Gemstone session has lost its connection to the Stone Repository Monitor, SocketRead failed" and the /opt/gemstone/log/seaside.log reported: 

Could not get the network address of the Gem, session 5.
 Reason: No network error. , 
     Net 

Eventually I discovered that if I changed the hostname I'd been using to create a OGApplianceSessionDescription from an ip address eg '172.16.181.143' to a name eg 'ubuntu' by adding 'ubuntu' into my /etc/hosts file I can login and all is well.

With minimal effort I've also managed to bring up my Seaside app in Gemstone. Thanks for all the effort within Gemstone to make the process of porting code from Pharo into Gemstone so painless.

My question for the day is about debugging. I've yet to configure a HTTP server with FastCGI so I'm using Swazoo. I can only manage to debug from the blocking Swazoo server. With the non-blocking Swazoo gem servers I find that with a halt in any method it seems that the Gems die without being able to debug. The Swazoo log shows:

GemStone Smalltalk Compiler Errors:
   GemToGemAnnouncement uninstallStaticHandler.
   System beginTransaction.
   (ObjectLogEntry
     fatal: '8383: topaz exit'
     object:
       'port: ', Swazoo printString, ' ',
 *               ^1                                                   *******
       'pid: ', (System gemVersionReport at: 'processId') printString) addToLog.
   System commitTransaction.

1: [1031] undefined symbol

Now executing the following command saved from "iferr 1":
   where
Stack is not active

----

Thanks again for the all the help so far,

Nick




Reply | Threaded
Open this post in threaded view
|

Re: Solved: Gemstone session has lost its connection to the Stone Repository monitor, SocketRead failed

Dale Henrichs
Nick Ager wrote:

> Hi,
>
> I mentioned earlier in the week that I was having problems connecting to
> a clean installation of Gemstone2.4.4.1 on a Linux distribution
> (Ubuntu/Centos/Suse - I tested them all!) running within VMWare Fusion
> on a Mac. I tried again today *initially* with out luck. I'd installed,
> configured and started Gemstone on the VMWare linux installation and all
> was looking good. Then when I tried to login from Gemtools running on my
> host machine Gemtools reported: 'The Gemstone session has lost its
> connection to the Stone Repository Monitor, SocketRead failed" and the
> /opt/gemstone/log/seaside.log reported:
>
> Could not get the network address of the Gem, session 5.
>  Reason: No network error. ,
>      Net
>
> Eventually I discovered that if I changed the hostname I'd been using to
> create a OGApplianceSessionDescription from an ip address eg
> '172.16.181.143' to a name eg 'ubuntu' by adding 'ubuntu' into my
> /etc/hosts file I can login and all is well.
>
> With minimal effort I've also managed to bring up my Seaside app in
> Gemstone. Thanks for all the effort within Gemstone to make the process
> of porting code from Pharo into Gemstone so painless.
>
> My question for the day is about debugging. I've yet to configure a HTTP
> server with FastCGI so I'm using Swazoo. I can only manage to debug from
> the blocking Swazoo server. With the non-blocking Swazoo gem servers I
> find that with a halt in any method it seems that the Gems die without
> being able to debug. The Swazoo log shows:
>
> GemStone Smalltalk Compiler Errors:
>    GemToGemAnnouncement uninstallStaticHandler.
>    System beginTransaction.
>    (ObjectLogEntry
>      fatal: '8383: topaz exit'
>      object:
>        'port: ', Swazoo printString, ' ',
>  *               ^1                                                  
> *******
>        'pid: ', (System gemVersionReport at: 'processId') printString)
> addToLog.
>    System commitTransaction.
>
> 1: [1031] undefined symbol
>
> Now executing the following command saved from "iferr 1":
>    where
> Stack is not active
>
> ----
>
> Thanks again for the all the help so far,
>
> Nick
>
>
>
>
Nick,

There is an error in the script ... the final doit should be:

run
GemToGemAnnouncement uninstallStaticHandler.
System beginTransaction.
(ObjectLogEntry
   fatal: '$1: topaz exit'
   object:
     'port: ', $2 printString, ' ',
     'pid: ', (System gemVersionReport at: 'processId') printString)
addToLog.
System commitTransaction.
%

However, that is not the root cause of your difficulties. This part of
the script is only executed when the gem is on the way down.

For doing debuggin when running multiple seaside gems, you should make
sure that you have the correct error handler installed:

   WAGemStoneProductionErrorHandler initialize

This error handler should be used in both production and development
situations. It's job is to catch errors and Halts, snap off a
continuation and display a (configurable) message to the end user.

As a developer when one of these errors occur, you can use the Debug
button to bring up a debugger on the continuation in your development vm.

At this point in time, I have not solved the problem of setting remote
breakpoints or continuing from a remote debugger, but the current
capability at least allows you to get debugging done.

This handler currently only works on halts that are thrown while
executing code in your component/session ... errors in other parts of
the system should result in "internal error" notifications ... these
types of errors would need to be debugged using the blocking techniques.

At this point, I'm curious what version of Seaside you have loaded? The
WAGemStoneProductionErrorHandler should have been installed by
default...or you have run into a bug in how error handlers are installed:)

Dale

Reply | Threaded
Open this post in threaded view
|

Re: Solved: Gemstone session has lost its connection to the Stone Repository monitor, SocketRead failed

Bart Gauquie
Hi Dale,

I'm also using Swazoo and have 4 Swazoo servers started. I'm also experiencing random crashes of the Swazoo server. However, if I try the same scenario again after restarting the server, everything works ...

I evaluated:

WAAdmin applicationExceptionHandlingDefaults at: #exceptionHandler

and WAGemStoneWalkbackErrorHandler appears, so not the WAGemStoneProductionErrorHandler you've mentioned.

The full stack trace I'm gettin' is (see below):

So I'm gettin a stack overflow error ... is the max stack height 1024 ?

I've noticed in the stack that:
6 WAPrettyPrintedDocument >> print: @1 line 2 [GsMethod 125792513]
til 
643 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]

which seems like a bug that prints each char one at a time or so?

The code which calls line 643:
643 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
644 WARenderer >> text: @2 line 4 [GsMethod 84634113]
645 WACanvas >> text: @2 line 3 [GsMethod 87423233]
646 AnimalHousingEdit >> renderContentOn: @2 line 2 [GsMethod 173235969]

is 
AnimalHousingEdit>>renderContentOn: html
    html text: 'AnimalHousing Edit'.
    
so only a short text

WAPrettyPrintedDocument>>print: anObject
    self document print: anObject

with 
WAPrettyPrintedDocument>>document
^ html document

which does:
WARenderer>>document
^ self context document

so no idea why it eventually stops recursing ...

Thanks for any help.

Kind Regards,

Bart

full error trace: 

===== Your comments ============================================

===== Your comments end =======================================
===== Backtrace ==================================================
-----------------------------------------------------
GemStone: Error Nonfatal
GemStone Smalltalk execution stack overflow.
Error Category: 231169 [GemStone] Number: 2059 Arg Count: 1 Context : 194352385
Arg 1: [194352385 sz:22 cls: 99841 GsProcess] a GsProcess
stackDepth [8186 sz:0 cls: 74241 SmallInteger] 1023
controlStack [202477313 sz:6139 cls: 100097 GsStackBuffer] a GsStackBuffer
arStack [202477825 sz:1878 cls: 100097 GsStackBuffer] a GsStackBuffer
inUserActionCount [2 sz:0 cls: 74241 SmallInteger] 0
interruptFlag [18 sz:0 cls: 74241 SmallInteger] 2
fltStatus [202478849 sz:16 cls: 74753 String] 000000000000000E
recursionsToStCount [2 sz:0 cls: 74241 SmallInteger] 0
protectedMode [2 sz:0 cls: 74241 SmallInteger] 0
asyncEventsDisabled [12 sz:0 cls: 68097 Boolean] false
remoteProcess [20 sz:0 cls: 76289 UndefinedObject] nil
priority [122 sz:0 cls: 74241 SmallInteger] 15
block [20 sz:0 cls: 76289 UndefinedObject] nil
args [20 sz:0 cls: 76289 UndefinedObject] nil
signalTime [20 sz:0 cls: 76289 UndefinedObject] nil
blockResult [20 sz:0 cls: 76289 UndefinedObject] nil
clientData [20 sz:0 cls: 76289 UndefinedObject] nil
location [20 sz:0 cls: 76289 UndefinedObject] nil
_lastGciProcess [20 sz:0 cls: 76289 UndefinedObject] nil
_debugMode [20 sz:0 cls: 76289 UndefinedObject] nil
isTerminated [20 sz:0 cls: 76289 UndefinedObject] nil
group [20 sz:0 cls: 76289 UndefinedObject] nil
environment [20 sz:0 cls: 76289 UndefinedObject] nil


Now executing the following command saved from "iferr 1":
where
==> 1 Array >> sendTo: @3 line 4 [GsMethod 161355009]
2 WADefaultNotificationsDecorator >> doesNotUnderstand: @2 line 2 [GsMethod 82649601]
3 Object >> _doesNotUnderstand: @1 line 6 [GsMethod 1926657]
4 WARenderer >> document @2 line 2 [GsMethod 84634625]
5 WAPrettyPrintedDocument >> document @1 line 2 [GsMethod 125792257]
6 WAPrettyPrintedDocument >> print: @1 line 2 [GsMethod 125792513]
7 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
8 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
9 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
10 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
11 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
12 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
13 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
14 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
15 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
16 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
17 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
18 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
19 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
20 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
21 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
22 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
23 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
24 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
25 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
26 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
27 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
28 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
29 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
30 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
31 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
32 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
33 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
34 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
35 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
36 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
37 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
38 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
39 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
40 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
41 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
42 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
43 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
44 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
45 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
46 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
47 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
48 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
49 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
50 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
51 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
52 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
53 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
54 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
55 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
56 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
57 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
58 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
59 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
60 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
61 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
62 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
63 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
64 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
65 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
66 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
67 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
68 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
69 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
70 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
71 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
72 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
73 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
74 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
75 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
76 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
77 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
78 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
79 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
80 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
81 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
82 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
83 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
84 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
85 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
86 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
87 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
88 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
89 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
90 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
91 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
92 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
93 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
94 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
95 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
96 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
97 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
98 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
99 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
100 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
101 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
102 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
103 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
104 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
105 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
106 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
107 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
108 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
109 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
110 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
111 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
112 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
113 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
114 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
115 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
116 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
117 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
118 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
119 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
120 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
121 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
122 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
123 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
124 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
125 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
126 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
127 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
128 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
129 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
130 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
131 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
132 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
133 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
134 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
135 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
136 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
137 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
138 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
139 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
140 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
141 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
142 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
143 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
144 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
145 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
146 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
147 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
148 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
149 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
150 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
151 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
152 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
153 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
154 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
155 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
156 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
157 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
158 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
159 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
160 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
161 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
162 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
163 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
164 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
165 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
166 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
167 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
168 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
169 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
170 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
171 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
172 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
173 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
174 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
175 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
176 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
177 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
178 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
179 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
180 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
181 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
182 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
183 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
184 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
185 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
186 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
187 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
188 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
189 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
190 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
191 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
192 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
193 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
194 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
195 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
196 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
197 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
198 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
199 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
200 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
201 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
202 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
203 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
204 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
205 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
206 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
207 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
208 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
209 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
210 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
211 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
212 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
213 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
214 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
215 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
216 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
217 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
218 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
219 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
220 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
221 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
222 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
223 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
224 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
225 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
226 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
227 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
228 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
229 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
230 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
231 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
232 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
233 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
234 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
235 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
236 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
237 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
238 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
239 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
240 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
241 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
242 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
243 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
244 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
245 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
246 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
247 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
248 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
249 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
250 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
251 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
252 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
253 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
254 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
255 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
256 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
257 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
258 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
259 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
260 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
261 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
262 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
263 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
264 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
265 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
266 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
267 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
268 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
269 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
270 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
271 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
272 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
273 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
274 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
275 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
276 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
277 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
278 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
279 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
280 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
281 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
282 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
283 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
284 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
285 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
286 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
287 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
288 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
289 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
290 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
291 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
292 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
293 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
294 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
295 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
296 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
297 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
298 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
299 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
300 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
301 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
302 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
303 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
304 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
305 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
306 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
307 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
308 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
309 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
310 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
311 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
312 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
313 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
314 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
315 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
316 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
317 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
318 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
319 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
320 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
321 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
322 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
323 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
324 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
325 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
326 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
327 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
328 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
329 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
330 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
331 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
332 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
333 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
334 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
335 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
336 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
337 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
338 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
339 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
340 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
341 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
342 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
343 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
344 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
345 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
346 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
347 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
348 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
349 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
350 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
351 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
352 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
353 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
354 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
355 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
356 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
357 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
358 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
359 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
360 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
361 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
362 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
363 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
364 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
365 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
366 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
367 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
368 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
369 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
370 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
371 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
372 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
373 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
374 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
375 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
376 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
377 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
378 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
379 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
380 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
381 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
382 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
383 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
384 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
385 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
386 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
387 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
388 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
389 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
390 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
391 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
392 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
393 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
394 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
395 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
396 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
397 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
398 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
399 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
400 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
401 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
402 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
403 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
404 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
405 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
406 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
407 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
408 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
409 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
410 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
411 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
412 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
413 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
414 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
415 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
416 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
417 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
418 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
419 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
420 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
421 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
422 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
423 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
424 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
425 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
426 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
427 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
428 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
429 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
430 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
431 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
432 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
433 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
434 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
435 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
436 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
437 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
438 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
439 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
440 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
441 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
442 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
443 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
444 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
445 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
446 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
447 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
448 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
449 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
450 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
451 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
452 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
453 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
454 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
455 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
456 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
457 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
458 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
459 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
460 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
461 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
462 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
463 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
464 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
465 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
466 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
467 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
468 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
469 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
470 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
471 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
472 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
473 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
474 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
475 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
476 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
477 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
478 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
479 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
480 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
481 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
482 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
483 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
484 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
485 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
486 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
487 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
488 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
489 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
490 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
491 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
492 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
493 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
494 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
495 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
496 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
497 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
498 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
499 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
500 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
501 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
502 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
503 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
504 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
505 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
506 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
507 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
508 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
509 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
510 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
511 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
512 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
513 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
514 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
515 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
516 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
517 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
518 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
519 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
520 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
521 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
522 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
523 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
524 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
525 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
526 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
527 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
528 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
529 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
530 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
531 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
532 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
533 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
534 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
535 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
536 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
537 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
538 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
539 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
540 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
541 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
542 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
543 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
544 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
545 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
546 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
547 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
548 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
549 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
550 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
551 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
552 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
553 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
554 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
555 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
556 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
557 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
558 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
559 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
560 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
561 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
562 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
563 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
564 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
565 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
566 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
567 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
568 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
569 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
570 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
571 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
572 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
573 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
574 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
575 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
576 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
577 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
578 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
579 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
580 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
581 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
582 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
583 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
584 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
585 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
586 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
587 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
588 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
589 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
590 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
591 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
592 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
593 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
594 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
595 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
596 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
597 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
598 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
599 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
600 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
601 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
602 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
603 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
604 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
605 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
606 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
607 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
608 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
609 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
610 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
611 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
612 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
613 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
614 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
615 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
616 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
617 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
618 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
619 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
620 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
621 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
622 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
623 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
624 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
625 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
626 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
627 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
628 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
629 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
630 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
631 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
632 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
633 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
634 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
635 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
636 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
637 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
638 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
639 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
640 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
641 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
642 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
643 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
644 WARenderer >> text: @2 line 4 [GsMethod 84634113]
645 WACanvas >> text: @2 line 3 [GsMethod 87423233]
646 AnimalHousingEdit >> renderContentOn: @2 line 2 [GsMethod 173235969]
647 WARenderVisitor >> visitPainter: @6 line 4 [GsMethod 89305089]
648 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
649 WAPainterVisitor >> visitComponent: @1 line 2 [GsMethod 83404033]
650 WAComponent >> accept: @1 line 2 [GsMethod 87341057]
651 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
652 WAVisitor >> start: @1 line 2 [GsMethod 83639809]
653 ComplexBlock in WAHalo >> source:visitor: @14 line 14 [GsMethod 124783617]
654 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
655 WARenderer >> render: @1 line 4 [GsMethod 84637185]
656 WACanvas >> render: @2 line 3 [GsMethod 87423745]
657 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
658 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
659 WARenderer >> render: @1 line 4 [GsMethod 84637185]
660 WACanvas >> render: @2 line 3 [GsMethod 87423745]
661 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
662 WABrush >> with: @2 line 2 [GsMethod 87408129]
663 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
664 WAHalo >> source:visitor: @17 line 9 [GsMethod 124783617]
665 ComplexBlock in WAHalo >> renderWithContext:visitor: @23 line 14 [GsMethod 124781057]
666 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
667 WARenderer >> render: @1 line 4 [GsMethod 84637185]
668 WACanvas >> render: @2 line 3 [GsMethod 87423745]
669 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
670 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
671 WARenderer >> render: @1 line 4 [GsMethod 84637185]
672 WACanvas >> render: @2 line 3 [GsMethod 87423745]
673 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
674 WABrush >> with: @2 line 2 [GsMethod 87408129]
675 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
676 ComplexVCBlock in WAHalo >> renderWithContext:visitor: @24 line 13 [GsMethod 124781057]
677 ComplexVCBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
678 WARenderer >> render: @1 line 4 [GsMethod 84637185]
679 WACanvas >> render: @2 line 3 [GsMethod 87423745]
680 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
681 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
682 WARenderer >> render: @1 line 4 [GsMethod 84637185]
683 WACanvas >> render: @2 line 3 [GsMethod 87423745]
684 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
685 WABrush >> with: @2 line 2 [GsMethod 87408129]
686 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
687 WAHalo >> renderWithContext:visitor: @25 line 8 [GsMethod 124781057]
688 WAHaloVisitor >> visitPainter: @10 line 6 [GsMethod 124723713]
689 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
690 WAPainterVisitor >> visitComponent: @1 line 2 [GsMethod 83404033]
691 WAComponent >> accept: @1 line 2 [GsMethod 87341057]
692 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
693 WAPresenterGuide >> visitPainter: @2 line 2 [GsMethod 87356929]
694 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
695 WAPainterVisitor >> visitComponent: @1 line 2 [GsMethod 83404033]
696 WAComponent >> accept: @1 line 2 [GsMethod 87341057]
697 WAPresenter >> renderUndecoratedWithContext: @2 line 4 [GsMethod 87304705]
698 WADecoration >> renderNextOn: @3 line 2 [GsMethod 82788609]
699 WADecoration >> renderContentOn: @1 line 2 [GsMethod 82786305]
700 WARenderVisitor >> visitPainter: @6 line 4 [GsMethod 89305089]
701 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
702 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
703 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
704 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
705 WAHalo >> render:visitor: @2 line 4 [GsMethod 124782849]
706 ComplexBlock in WAHalo >> renderWithContext:visitor: @23 line 14 [GsMethod 124781057]
707 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
708 WARenderer >> render: @1 line 4 [GsMethod 84637185]
709 WACanvas >> render: @2 line 3 [GsMethod 87423745]
710 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
711 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
712 WARenderer >> render: @1 line 4 [GsMethod 84637185]
713 WACanvas >> render: @2 line 3 [GsMethod 87423745]
714 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
715 WABrush >> with: @2 line 2 [GsMethod 87408129]
716 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
717 ComplexVCBlock in WAHalo >> renderWithContext:visitor: @24 line 13 [GsMethod 124781057]
718 ComplexVCBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
719 WARenderer >> render: @1 line 4 [GsMethod 84637185]
720 WACanvas >> render: @2 line 3 [GsMethod 87423745]
721 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
722 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
723 WARenderer >> render: @1 line 4 [GsMethod 84637185]
724 WACanvas >> render: @2 line 3 [GsMethod 87423745]
725 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
726 WABrush >> with: @2 line 2 [GsMethod 87408129]
727 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
728 WAHalo >> renderWithContext:visitor: @25 line 8 [GsMethod 124781057]
729 WAHaloVisitor >> visitPainter: @10 line 6 [GsMethod 124723713]
730 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
731 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
732 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
733 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
734 WAPresenterGuide >> visitPainter: @2 line 2 [GsMethod 87356929]
735 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
736 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
737 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
738 WAPainterVisitor >> visitDecorationsOfComponent: @2 line 2 [GsMethod 83404545]
739 WAComponent >> acceptDecorated: @1 line 2 [GsMethod 87335937]
740 WAPresenterGuide >> visit: @1 line 2 [GsMethod 87357697]
741 WAPainter >> renderWithContext: @2 line 8 [GsMethod 89255937]
742 WAPainter >> renderOn: @2 line 8 [GsMethod 89256961]
743 WARenderer >> render: @1 line 4 [GsMethod 84637185]
744 WACanvas >> render: @2 line 3 [GsMethod 87423745]
745 WADelegation >> renderContentOn: @2 line 2 [GsMethod 82805249]
746 WARenderVisitor >> visitPainter: @6 line 4 [GsMethod 89305089]
747 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
748 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
749 WAPainterVisitor >> visitDelegation: @1 line 2 [GsMethod 83404801]
750 WADelegation >> accept: @1 line 2 [GsMethod 82804993]
751 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
752 WAHalo >> render:visitor: @2 line 4 [GsMethod 124782849]
753 ComplexBlock in WAHalo >> renderWithContext:visitor: @23 line 14 [GsMethod 124781057]
754 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
755 WARenderer >> render: @1 line 4 [GsMethod 84637185]
756 WACanvas >> render: @2 line 3 [GsMethod 87423745]
757 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
758 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
759 WARenderer >> render: @1 line 4 [GsMethod 84637185]
760 WACanvas >> render: @2 line 3 [GsMethod 87423745]
761 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
762 WABrush >> with: @2 line 2 [GsMethod 87408129]
763 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
764 ComplexVCBlock in WAHalo >> renderWithContext:visitor: @24 line 13 [GsMethod 124781057]
765 ComplexVCBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
766 WARenderer >> render: @1 line 4 [GsMethod 84637185]
767 WACanvas >> render: @2 line 3 [GsMethod 87423745]
768 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
769 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
770 WARenderer >> render: @1 line 4 [GsMethod 84637185]
771 WACanvas >> render: @2 line 3 [GsMethod 87423745]
772 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
773 WABrush >> with: @2 line 2 [GsMethod 87408129]
774 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
775 WAHalo >> renderWithContext:visitor: @25 line 8 [GsMethod 124781057]
776 WAHaloVisitor >> visitPainter: @10 line 6 [GsMethod 124723713]
777 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
778 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
779 WAPainterVisitor >> visitDelegation: @1 line 2 [GsMethod 83404801]
780 WADelegation >> accept: @1 line 2 [GsMethod 82804993]
781 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
782 WAPresenterGuide >> visitPainter: @2 line 2 [GsMethod 87356929]
783 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
784 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
785 WAPainterVisitor >> visitDelegation: @1 line 2 [GsMethod 83404801]
786 WADelegation >> accept: @1 line 2 [GsMethod 82804993]
787 WAPainterVisitor >> visitDecorationsOfComponent: @2 line 2 [GsMethod 83404545]
788 WAComponent >> acceptDecorated: @1 line 2 [GsMethod 87335937]
789 WAPresenterGuide >> visit: @1 line 2 [GsMethod 87357697]
790 WAPainter >> renderWithContext: @2 line 8 [GsMethod 89255937]
791 WAPainter >> renderOn: @2 line 8 [GsMethod 89256961]
792 WARenderer >> render: @1 line 4 [GsMethod 84637185]
793 WACanvas >> render: @2 line 3 [GsMethod 87423745]
794 AnimalRoot >> renderContentOn: @2 line 2 [GsMethod 198874369]
795 WARenderVisitor >> visitPainter: @6 line 4 [GsMethod 89305089]
796 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
797 WAPainterVisitor >> visitComponent: @1 line 2 [GsMethod 83404033]
798 WAComponent >> accept: @1 line 2 [GsMethod 87341057]
799 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
800 WAHalo >> render:visitor: @2 line 4 [GsMethod 124782849]
801 ComplexBlock in WAHalo >> renderWithContext:visitor: @23 line 14 [GsMethod 124781057]
802 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
803 WARenderer >> render: @1 line 4 [GsMethod 84637185]
804 WACanvas >> render: @2 line 3 [GsMethod 87423745]
805 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
806 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
807 WARenderer >> render: @1 line 4 [GsMethod 84637185]
808 WACanvas >> render: @2 line 3 [GsMethod 87423745]
809 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
810 WABrush >> with: @2 line 2 [GsMethod 87408129]
811 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
812 ComplexVCBlock in WAHalo >> renderWithContext:visitor: @24 line 13 [GsMethod 124781057]
813 ComplexVCBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
814 WARenderer >> render: @1 line 4 [GsMethod 84637185]
815 WACanvas >> render: @2 line 3 [GsMethod 87423745]
816 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
817 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
818 WARenderer >> render: @1 line 4 [GsMethod 84637185]
819 WACanvas >> render: @2 line 3 [GsMethod 87423745]
820 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
821 WABrush >> with: @2 line 2 [GsMethod 87408129]
822 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
823 WAHalo >> renderWithContext:visitor: @25 line 8 [GsMethod 124781057]
824 WAHaloVisitor >> visitPainter: @10 line 6 [GsMethod 124723713]
825 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
826 WAPainterVisitor >> visitComponent: @1 line 2 [GsMethod 83404033]
827 WAComponent >> accept: @1 line 2 [GsMethod 87341057]
828 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
829 WAPresenterGuide >> visitPainter: @2 line 2 [GsMethod 87356929]
830 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
831 WAPainterVisitor >> visitComponent: @1 line 2 [GsMethod 83404033]
832 WAComponent >> accept: @1 line 2 [GsMethod 87341057]
833 WAPresenter >> renderUndecoratedWithContext: @2 line 4 [GsMethod 87304705]
834 ComplexBlock in NotificationsAreaDecoration >> renderContentOn: @8 line 4 [GsMethod 193490689]
835 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
836 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
837 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
838 NotificationsAreaDecoration >> renderContentOn: @11 line 6 [GsMethod 193490689]
839 WARenderVisitor >> visitPainter: @6 line 4 [GsMethod 89305089]
840 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
841 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
842 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
843 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
844 WAHalo >> render:visitor: @2 line 4 [GsMethod 124782849]
845 ComplexBlock in WAHalo >> renderWithContext:visitor: @23 line 14 [GsMethod 124781057]
846 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
847 WARenderer >> render: @1 line 4 [GsMethod 84637185]
848 WACanvas >> render: @2 line 3 [GsMethod 87423745]
849 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
850 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
851 WARenderer >> render: @1 line 4 [GsMethod 84637185]
852 WACanvas >> render: @2 line 3 [GsMethod 87423745]
853 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
854 WABrush >> with: @2 line 2 [GsMethod 87408129]
855 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
856 ComplexVCBlock in WAHalo >> renderWithContext:visitor: @24 line 13 [GsMethod 124781057]
857 ComplexVCBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
858 WARenderer >> render: @1 line 4 [GsMethod 84637185]
859 WACanvas >> render: @2 line 3 [GsMethod 87423745]
860 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
861 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod 81738241]
862 WARenderer >> render: @1 line 4 [GsMethod 84637185]
863 WACanvas >> render: @2 line 3 [GsMethod 87423745]
864 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
865 WABrush >> with: @2 line 2 [GsMethod 87408129]
866 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
867 WAHalo >> renderWithContext:visitor: @25 line 8 [GsMethod 124781057]
868 WAHaloVisitor >> visitPainter: @10 line 6 [GsMethod 124723713]
869 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
870 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
871 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
872 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
873 WAPresenterGuide >> visitPainter: @2 line 2 [GsMethod 87356929]
874 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
875 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
876 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
877 WAPresenter >> renderUndecoratedWithContext: @2 line 4 [GsMethod 87304705]
878 WADecoration >> renderNextOn: @3 line 2 [GsMethod 82788609]
879 WAToolDecoration >> renderChildOn: @9 line 5 [GsMethod 123828225]
880 WAToolDecoration >> renderContentOn: @1 line 2 [GsMethod 123827201]
881 WARenderVisitor >> visitPainter: @6 line 4 [GsMethod 89305089]
882 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
883 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
884 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
885 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
886 WAPresenterGuide >> visitPainter: @2 line 2 [GsMethod 87356929]
887 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
888 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
889 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
890 WAPainterVisitor >> visitDecorationsOfComponent: @2 line 2 [GsMethod 83404545]
891 WAComponent >> acceptDecorated: @1 line 2 [GsMethod 87335937]
892 WAPresenterGuide >> visit: @1 line 2 [GsMethod 87357697]
893 WAPainter >> renderWithContext: @2 line 8 [GsMethod 89255937]
894 WARenderPhaseContinuation >> processRendering: @27 line 29 [GsMethod 88682241]
895 ComplexBlock in WARenderPhaseContinuation >> handleRequest @4 line 3 [GsMethod 88682753]
896 WARequestContext >> respond: @2 line 4 [GsMethod 88306689]
897 WASessionContinuation >> respond: @2 line 2 [GsMethod 88634625]
898 WARenderPhaseContinuation >> handleRequest @5 line 3 [GsMethod 88682753]
899 ComplexBlock in WASessionContinuation >> basicValue @3 line 2 [GsMethod 88632577]
900 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
901 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
902 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
903 WASessionContinuation >> withUnregisteredHandlerDo: @7 line 3 [GsMethod 88634113]
904 WASessionContinuation >> basicValue @4 line 2 [GsMethod 88632577]
905 WASessionContinuation >> value @3 line 5 [GsMethod 88631553]
906 WASession >> handleFiltered: @14 line 10 [GsMethod 83626753]
907 WARequestFilter >> handleFiltered: @2 line 4 [GsMethod 88664833]
908 ComplexBlock in WADeprecatedToolFilter >> handleFiltered: @3 line 2 [GsMethod 125804033]
909 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
910 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
911 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
912 WADeprecatedToolFilter >> handleFiltered: @6 line 3 [GsMethod 125804033]
913 WARequestFilter >> handleFiltered: @2 line 4 [GsMethod 88664833]
914 ComplexBlock in WATimingToolFilter >> handleFiltered: @4 line 3 [GsMethod 125799681]
915 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
916 ComplexBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod 2304001]
917 WATimingToolFilter >> handleFiltered: @8 line 4 [GsMethod 125799681]
918 ComplexBlock in WARequestHandler >> handle: @4 line 4 [GsMethod 87710209]
919 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
920 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
921 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
922 WADynamicVariable class >> use:during: @4 line 4 [GsMethod 84240897]
923 ComplexBlock in WARequestContext >> push:while: @4 line 5 [GsMethod 88305409]
924 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
925 ComplexBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod 2304001]
926 WARequestContext >> push:while: @7 line 6 [GsMethod 88305409]
927 WARequestHandler >> handle: @5 line 4 [GsMethod 87710209]
928 WASession >> handle: @10 line 11 [GsMethod 83627009]
929 WARegistry >> dispatch:to: @1 line 5 [GsMethod 88579841]
930 WARegistry >> handleKeyed:with: @2 line 5 [GsMethod 88585217]
931 WARegistry >> handleFiltered: @31 line 19 [GsMethod 88582401]
932 WAApplication >> handleFiltered: @5 line 5 [GsMethod 83603713]
933 WARequestFilter >> handleFiltered: @2 line 4 [GsMethod 88664833]
934 ComplexBlock in WAExceptionFilter >> handleFiltered: @3 line 3 [GsMethod 87681793]
935 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
936 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
937 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
938 WAExceptionHandler >> handleExceptionsDuring: @8 line 3 [GsMethod 87689217]
939 WAExceptionHandler class >> handleExceptionsDuring:context: @2 line 2 [GsMethod 88919809]
940 WAExceptionFilter >> handleFiltered: @4 line 3 [GsMethod 87681793]
941 ComplexBlock in WARequestHandler >> handle: @4 line 4 [GsMethod 87710209]
942 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
943 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
944 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
945 WADynamicVariable class >> use:during: @4 line 4 [GsMethod 84240897]
946 ComplexBlock in WARequestContext >> push:while: @4 line 5 [GsMethod 88305409]
947 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
948 ComplexBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod 2304001]
949 WARequestContext >> push:while: @7 line 6 [GsMethod 88305409]
950 WARequestHandler >> handle: @5 line 4 [GsMethod 87710209]
951 WADispatcher >> handleFiltered:named: @7 line 5 [GsMethod 88705281]
952 WADispatcher >> handleFiltered: @7 line 6 [GsMethod 88705537]
953 ComplexBlock in WARequestHandler >> handle: @4 line 4 [GsMethod 87710209]
954 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
955 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
956 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
957 WADynamicVariable class >> use:during: @4 line 4 [GsMethod 84240897]
958 ComplexBlock in WARequestContext >> push:while: @4 line 5 [GsMethod 88305409]
959 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
960 ComplexBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod 2304001]
961 WARequestContext >> push:while: @7 line 6 [GsMethod 88305409]
962 WARequestHandler >> handle: @5 line 4 [GsMethod 87710209]
963 ComplexBlock in WAServerAdaptor >> handleRequest: @4 line 4 [GsMethod 88408065]
964 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
965 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
966 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
967 WAServerAdaptor >> handleRequest: @6 line 5 [GsMethod 88408065]
968 WAServerAdaptor >> handle: @1 line 4 [GsMethod 88407041]
969 ComplexBlock in WAServerAdaptor >> process: @5 line 6 [GsMethod 88406529]
970 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
971 ComplexBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod 2304001]
972 WAServerAdaptor >> process: @9 line 7 [GsMethod 88406529]
973 ComplexBlock in WAGsSwazooAdaptor >> process: @3 line 6 [GsMethod 114063105]
974 ComplexBlock in GRGemStonePlatform >> seasideProcessRequestWithRetry:resultBlock: @9 line 10 [GsMethod 83123713]
975 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
976 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
977 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
978 ComplexVCBlock in GRGemStonePlatform >> seasideProcessRequestWithRetry:resultBlock: @15 line 11 [GsMethod 83123713]
979 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
980 ComplexVCBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod 2304001]
981 TransientRecursionLock >> critical: @15 line 8 [GsMethod 21159937]
982 GRGemStonePlatform >> seasideProcessRequestWithRetry:resultBlock: @37 line 5 [GsMethod 83123713]
983 ComplexBlock in GRGemStonePlatform >> seasideProcessRequest:adaptor:resultBlock: @6 line 8 [GsMethod 83124225]
984 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
985 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
986 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
987 GRGemStonePlatform >> seasideProcessRequest:adaptor:resultBlock: @25 line 14 [GsMethod 83124225]
988 WAGsSwazooAdaptor >> process: @4 line 4 [GsMethod 114063105]
989 WAPluggableSite >> answerTo: @2 line 2 [GsMethod 113379585]
990 WAPluggableSite >> helpResolve: @7 line 3 [GsMethod 113379329]
991 URIResolution >> visitResource: @1 line 2 [GsMethod 112730881]
992 ComplexBlock in URIResolution >> visitChildrenOf:advancing: @10 line 7 [GsMethod 112731905]
993 Collection >> do: @5 line 10 [GsMethod 1547777]
994 URIResolution >> visitChildrenOf:advancing: @15 line 5 [GsMethod 112731905]
995 URIResolution >> resolveTransparentComposite: @2 line 2 [GsMethod 112732417]
996 URIResolution >> resolveServerRoot: @1 line 2 [GsMethod 112728321]
997 ServerRootComposite >> helpResolve: @1 line 2 [GsMethod 113196033]
998 URIResolution >> visitResource: @1 line 2 [GsMethod 112730881]
999 URIResolution class >> resolveRequest:startingAt: @3 line 2 [GsMethod 113550337]
1000 HTTPServer >> answerTo: @3 line 3 [GsMethod 113588737]
1001 ComplexBlock in HTTPConnection >> produceResponseFor: @9 line 5 [GsMethod 113323009]
1002 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
1003 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
1004 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
1005 HTTPConnection >> produceResponseFor: @23 line 6 [GsMethod 113323009]
1006 HTTPConnection >> getAndDispatchMessages @9 line 9 [GsMethod 113324033]
1007 ComplexBlock in HTTPConnection >> interact @7 line 6 [GsMethod 113320449]
1008 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
1009 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
1010 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
1011 ComplexVCBlock in HTTPConnection >> interact @12 line 9 [GsMethod 113320449]
1012 ComplexBlock in ExecutableBlock >> ifCurtailed: @4 line 6 [GsMethod 81736193]
1013 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
1014 ComplexBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod 2304001]
1015 ComplexVCBlock in ExecutableBlock >> ifCurtailed: @8 line 8 [GsMethod 81736193]
1016 ComplexVCBlock in HTTPConnection >> interact @19 line 13 [GsMethod 113320449]
1017 HTTPConnection >> interact @26 line 18 [GsMethod 113320449]
1018 HTTPServer >> acceptConnection @15 line 11 [GsMethod 113591553]
1019 ComplexBlock in HTTPServer >> start @13 line 6 [GsMethod 113589761]
1020 ComplexBlock in BlockClosure >> repeat @3 line 5 [GsMethod 19138561]
1021 ComplexVCBlock in HTTPServer >> start @14 line 6 [GsMethod 113589761]
1022 GsProcess >> _startPart2 @15 line 17 [GsMethod 4501249]
1023 GsProcess >> _start @1 line 9 [GsMethod 4501761]
[GsProcess 194352385]
topaz 1> GemStone Smalltalk Compiler Errors:
GemToGemAnnouncement uninstallStaticHandler.
System beginTransaction.
(ObjectLogEntry
fatal: '9001: topaz exit'
object:
'port: ', Swazoo printString, ' ',
* ^1 *******
'pid: ', (System gemVersionReport at: 'processId') printString) addToLog.
System commitTransaction.

1: [1031] undefined symbol

Now executing the following command saved from "iferr 1":
where
Stack is not active
topaz 1>
[Info]: Logging out at 08/13/2010 08:50:43 PM CEST===== Backtrace end =============================================
13 August 2010 8:52:37 pm

Client VM: unix - a SmalltalkImage
Client Image: Pharo-1.0 [Latest update: #10517]
GemTools Client: >=1.0-beta.8 [ConfigurationOfGemTools]
GLASS: 1.0-beta.9

===== GLASS Version Report ============================================
1. ConfigurationOfGLASS 1.0-beta.9 #'development'
2. ConfigurationOfGofer 1.0.2.1 #'release'
3. ConfigurationOfGoferProjectLoader 1.0-alpha2.1 #'development'
4. ConfigurationOfGrease 1.0-rc #'release'
5. ConfigurationOfGsCore 0.241 #'development'
6. ConfigurationOfGsMisc 0.237 #'development'
7. ConfigurationOfGsMonticello 0.238 #'development'
8. ConfigurationOfGsOB 0.239 #'development'
9. ConfigurationOfMagritte2 2.0.5 #'release'
10. ConfigurationOfMetacello 1.0-beta.27.2 #'beta'
11. ConfigurationOfSeaside30 3.0.0-rc #'release'
12. ConfigurationOfSwazoo2 2.2.0.2 #'beta'

===== Client Version Report ============================================
cpuArchitecture: ia32
cpuKind: x86_64
gsBuildArchitecture: ia32 (Linux)
gsBuildDate: Tue Jul 13 15:19:49 2010
gsBuildSerialNum: gss64_2_4_4_x_branch-23813
gsRelease: 2.4.4.1
gsVersion: 2.4.4.1
nodeName: craptop
osName: Linux
osRelease: 2.6.32-24-generic
osVersion: #39-Ubuntu SMP Wed Jul 28 05:14:15 UTC 2010
processId: 2447
processorCount: 2

===== Stone Version Report ===========================================
cpuArchitecture: x86-64
cpuKind: x86_64
gsBuildArchitecture: x86-64 (Linux)
gsBuildDate: Tue Jul 13 15:19:49 2010
gsBuildSerialNum: gss64_2_4_4_x_branch-23813
gsRelease: 2.4.4.1
gsVersion: 2.4.4.1
nodeName: craptop
osName: Linux
osRelease: 2.6.32-24-generic
osVersion: #39-Ubuntu SMP Wed Jul 28 05:14:15 UTC 2010
processId: 2378
processorCount: 2

===== Preferences ============================================
annotationPanes=false
mercuryPanel=true
optionalButtons=true
syntaxHighlightingAsYouType=true




On Fri, Aug 13, 2010 at 7:06 PM, Dale Henrichs <[hidden email]> wrote:
Nick Ager wrote:
Hi,

I mentioned earlier in the week that I was having problems connecting to a clean installation of Gemstone2.4.4.1 on a Linux distribution (Ubuntu/Centos/Suse - I tested them all!) running within VMWare Fusion on a Mac. I tried again today *initially* with out luck. I'd installed, configured and started Gemstone on the VMWare linux installation and all was looking good. Then when I tried to login from Gemtools running on my host machine Gemtools reported: 'The Gemstone session has lost its connection to the Stone Repository Monitor, SocketRead failed" and the /opt/gemstone/log/seaside.log reported:
Could not get the network address of the Gem, session 5.
 Reason: No network error. ,      Net
Eventually I discovered that if I changed the hostname I'd been using to create a OGApplianceSessionDescription from an ip address eg '172.16.181.143' to a name eg 'ubuntu' by adding 'ubuntu' into my /etc/hosts file I can login and all is well.

With minimal effort I've also managed to bring up my Seaside app in Gemstone. Thanks for all the effort within Gemstone to make the process of porting code from Pharo into Gemstone so painless.

My question for the day is about debugging. I've yet to configure a HTTP server with FastCGI so I'm using Swazoo. I can only manage to debug from the blocking Swazoo server. With the non-blocking Swazoo gem servers I find that with a halt in any method it seems that the Gems die without being able to debug. The Swazoo log shows:

GemStone Smalltalk Compiler Errors:
  GemToGemAnnouncement uninstallStaticHandler.
  System beginTransaction.
  (ObjectLogEntry
    fatal: '8383: topaz exit'
    object:
      'port: ', Swazoo printString, ' ',
 *               ^1                                                   *******
      'pid: ', (System gemVersionReport at: 'processId') printString) addToLog.
  System commitTransaction.

1: [1031] undefined symbol

Now executing the following command saved from "iferr 1":
  where
Stack is not active

----

Thanks again for the all the help so far,

Nick




Nick,

There is an error in the script ... the final doit should be:

run

GemToGemAnnouncement uninstallStaticHandler.
System beginTransaction.
(ObjectLogEntry
 fatal: '$1: topaz exit'
 object:
   'port: ', $2 printString, ' ',

   'pid: ', (System gemVersionReport at: 'processId') printString) addToLog.
System commitTransaction.
%

However, that is not the root cause of your difficulties. This part of the script is only executed when the gem is on the way down.

For doing debuggin when running multiple seaside gems, you should make sure that you have the correct error handler installed:

 WAGemStoneProductionErrorHandler initialize

This error handler should be used in both production and development situations. It's job is to catch errors and Halts, snap off a continuation and display a (configurable) message to the end user.

As a developer when one of these errors occur, you can use the Debug button to bring up a debugger on the continuation in your development vm.

At this point in time, I have not solved the problem of setting remote breakpoints or continuing from a remote debugger, but the current capability at least allows you to get debugging done.

This handler currently only works on halts that are thrown while executing code in your component/session ... errors in other parts of the system should result in "internal error" notifications ... these types of errors would need to be debugged using the blocking techniques.

At this point, I'm curious what version of Seaside you have loaded? The WAGemStoneProductionErrorHandler should have been installed by default...or you have run into a bug in how error handlers are installed:)

Dale




--
imagination is more important than knowledge - Albert Einstein
Logic will get you from A to B. Imagination will take you everywhere - Albert Einstein
Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning. - Albert Einstein
The true sign of intelligence is not knowledge but imagination. - Albert Einstein
However beautiful the strategy, you should occasionally look at the results. - Sir Winston Churchill
It's not enough that we do our best; sometimes we have to do what's required. - Sir Winston Churchill
Reply | Threaded
Open this post in threaded view
|

Re: Solved: Gemstone session has lost its connection to the Stone Repository monitor, SocketRead failed

Nick
In reply to this post by Dale Henrichs
Hi Dale,

There is an error in the script ... the final doit should be:

run

GemToGemAnnouncement uninstallStaticHandler.
System beginTransaction.
(ObjectLogEntry
 fatal: '$1: topaz exit'
 object:
   'port: ', $2 printString, ' ',

   'pid: ', (System gemVersionReport at: 'processId') printString) addToLog.
System commitTransaction.
%

OK I patched /opt/gemstone/product/bin/startSeaside30_Adaptor with your fix.

 
However, that is not the root cause of your difficulties. This part of the script is only executed when the gem is on the way down.

For doing debuggin when running multiple seaside gems, you should make sure that you have the correct error handler installed:

 WAGemStoneProductionErrorHandler initialize

This error handler should be used in both production and development situations. It's job is to catch errors and Halts, snap off a continuation and display a (configurable) message to the end user.


Ok I misread the documentation in the Seaside3.0 workspace and manually registered my application with the WAGemStoneWalkbackErrorHandler. I guess this is the error handler to use when I using a blocking server.

WAAdmin applicationExceptionHandlingDefaults at: #exceptionHandler  gives: WARemoteDebuggingWalkbackErrorHandler

If I understand the Seaside3.0 workspace correctly WARemoteDebuggingWalkbackErrorHandler should be OK for me?:
WARemoteDebuggingWalkbackErrorHandler initialize "Use this handler when running development Seaside servers out of topaz vms"

The difference appears to be in the resulting html. 


As a developer when one of these errors occur, you can use the Debug button to bring up a debugger on the continuation in your development vm.

At this point in time, I have not solved the problem of setting remote breakpoints or continuing from a remote debugger, but the current capability at least allows you to get debugging done.

This handler currently only works on halts that are thrown while executing code in your component/session ... errors in other parts of the system should result in "internal error" notifications ... these types of errors would need to be debugged using the blocking techniques.

At this point, I'm curious what version of Seaside you have loaded? The WAGemStoneProductionErrorHandler should have been installed by default...or you have run into a bug in how error handlers are installed:)

 
I'm using Seaside3.0
WARemoteDebuggingWalkbackErrorHandler not WAGemStoneProductionErrorHandler is my default. 


Thanks

Nick
Reply | Threaded
Open this post in threaded view
|

Re: Solved: Gemstone session has lost its connection to the Stone Repository monitor, SocketRead failed

Dale Henrichs
In reply to this post by Bart Gauquie
Bart,

Stack overflow (I think the limit is 2000 frames) is one of the
"unhandleable errors" in GemStone, so when it happens the vm crashes.
This is one of the reasons that I recommend using something like
daemontools to automatically restart a vm when it crashes ... see
Monty's recent messages for putting together a daemontools setup that
works pretty well ... Of course if the code itself is problematic and
the user insists on trying over and over again you won't make proress,
but at least the vm will be there for the next request.

There are some suspicious error handling blocks in the Swazoo code
(where errors are swallowed) that can lead to some interesting issues,
but I just haven't had the time to track them down and fix (there are
probably a handful of bugs submitted on glassdb issue list)...

The Squeak/Pharo vms don't have a limit on the size of the stack, so
deeply recursive algorithms do sneak into the code base and besides
consuming lots of memory and running slower, noone is the wiser
(Monticello has a number of deeply recursive algorithms, too).

I've been slowly going around and recoding them, so I haven't seen this
particular problem, yet. I've sumintted Issue 160
(http://code.google.com/p/glassdb/issues/detail?id=160) to track this issue.

I introduced WAGemStoneProductionErrorHandler with version
3.0.0-alpha5.15. Until I officially support remote debugging (I'll be
looking into this soom), the WAGemStoneProductionErrorHandler works as
well in development as in production...

Dale

Bart Gauquie wrote:

> Hi Dale,
>
> I'm also using Swazoo and have 4 Swazoo servers started. I'm also
> experiencing random crashes of the Swazoo server. However, if I try the
> same scenario again after restarting the server, everything works ...
>
> I evaluated:
>
> WAAdmin applicationExceptionHandlingDefaults at: #exceptionHandler
>
> and WAGemStoneWalkbackErrorHandler appears, so not
> the WAGemStoneProductionErrorHandler you've mentioned.
>
> The full stack trace I'm gettin' is (see below):
>
> So I'm gettin a stack overflow error ... is the max stack height 1024 ?
>
> I've noticed in the stack that:
> 6 WAPrettyPrintedDocument >> print: @1 line 2 [GsMethod 125792513]
> til
> 643 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
>
> which seems like a bug that prints each char one at a time or so?
>
> The code which calls line 643:
> 643 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 644 WARenderer >> text: @2 line 4 [GsMethod 84634113]
> 645 WACanvas >> text: @2 line 3 [GsMethod 87423233]
> 646 AnimalHousingEdit >> renderContentOn: @2 line 2 [GsMethod 173235969]
>
> is
> AnimalHousingEdit>>renderContentOn: html
>     html text: 'AnimalHousing Edit'.
>    
> so only a short text
>
> WAPrettyPrintedDocument>>print: anObject
>     self document print: anObject
>
> with
> WAPrettyPrintedDocument>>document
> ^ html document
>
> which does:
> WARenderer>>document
> ^ self context document
>
> so no idea why it eventually stops recursing ...
>
> Thanks for any help.
>
> Kind Regards,
>
> Bart
>
> full error trace:
>
> ===== Your comments ============================================
>
> ===== Your comments end =======================================
> ===== Backtrace ==================================================
> -----------------------------------------------------
> GemStone: Error Nonfatal
> GemStone Smalltalk execution stack overflow.
> Error Category: 231169 [GemStone] Number: 2059 Arg Count: 1 Context :
> 194352385
> Arg 1: [194352385 sz:22 cls: 99841 GsProcess] a GsProcess
> stackDepth [8186 sz:0 cls: 74241 SmallInteger] 1023
> controlStack [202477313 sz:6139 cls: 100097 GsStackBuffer] a GsStackBuffer
> arStack [202477825 sz:1878 cls: 100097 GsStackBuffer] a GsStackBuffer
> inUserActionCount [2 sz:0 cls: 74241 SmallInteger] 0
> interruptFlag [18 sz:0 cls: 74241 SmallInteger] 2
> fltStatus [202478849 sz:16 cls: 74753 String] 000000000000000E
> recursionsToStCount [2 sz:0 cls: 74241 SmallInteger] 0
> protectedMode [2 sz:0 cls: 74241 SmallInteger] 0
> asyncEventsDisabled [12 sz:0 cls: 68097 Boolean] false
> remoteProcess [20 sz:0 cls: 76289 UndefinedObject] nil
> priority [122 sz:0 cls: 74241 SmallInteger] 15
> block [20 sz:0 cls: 76289 UndefinedObject] nil
> args [20 sz:0 cls: 76289 UndefinedObject] nil
> signalTime [20 sz:0 cls: 76289 UndefinedObject] nil
> blockResult [20 sz:0 cls: 76289 UndefinedObject] nil
> clientData [20 sz:0 cls: 76289 UndefinedObject] nil
> location [20 sz:0 cls: 76289 UndefinedObject] nil
> _lastGciProcess [20 sz:0 cls: 76289 UndefinedObject] nil
> _debugMode [20 sz:0 cls: 76289 UndefinedObject] nil
> isTerminated [20 sz:0 cls: 76289 UndefinedObject] nil
> group [20 sz:0 cls: 76289 UndefinedObject] nil
> environment [20 sz:0 cls: 76289 UndefinedObject] nil
>
>
> Now executing the following command saved from "iferr 1":
> where
> ==> 1 Array >> sendTo: @3 line 4 [GsMethod 161355009]
> 2 WADefaultNotificationsDecorator >> doesNotUnderstand: @2 line 2
> [GsMethod 82649601]
> 3 Object >> _doesNotUnderstand: @1 line 6 [GsMethod 1926657]
> 4 WARenderer >> document @2 line 2 [GsMethod 84634625]
> 5 WAPrettyPrintedDocument >> document @1 line 2 [GsMethod 125792257]
> 6 WAPrettyPrintedDocument >> print: @1 line 2 [GsMethod 125792513]
> 7 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 8 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 9 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 10 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 11 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 12 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 13 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 14 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 15 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 16 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 17 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 18 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 19 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 20 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 21 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 22 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 23 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 24 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 25 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 26 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 27 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 28 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 29 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 30 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 31 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 32 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 33 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 34 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 35 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 36 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 37 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 38 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 39 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 40 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 41 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 42 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 43 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 44 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 45 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 46 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 47 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 48 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 49 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 50 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 51 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 52 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 53 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 54 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 55 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 56 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 57 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 58 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 59 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 60 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 61 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 62 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 63 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 64 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 65 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 66 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 67 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 68 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 69 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 70 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 71 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 72 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 73 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 74 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 75 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 76 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 77 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 78 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 79 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 80 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 81 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 82 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 83 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 84 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 85 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 86 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 87 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 88 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 89 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 90 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 91 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 92 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 93 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 94 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 95 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 96 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 97 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 98 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 99 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 100 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 101 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 102 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 103 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 104 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 105 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 106 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 107 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 108 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 109 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 110 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 111 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 112 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 113 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 114 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 115 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 116 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 117 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 118 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 119 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 120 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 121 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 122 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 123 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 124 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 125 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 126 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 127 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 128 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 129 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 130 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 131 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 132 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 133 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 134 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 135 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 136 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 137 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 138 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 139 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 140 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 141 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 142 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 143 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 144 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 145 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 146 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 147 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 148 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 149 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 150 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 151 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 152 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 153 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 154 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 155 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 156 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 157 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 158 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 159 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 160 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 161 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 162 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 163 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 164 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 165 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 166 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 167 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 168 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 169 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 170 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 171 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 172 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 173 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 174 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 175 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 176 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 177 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 178 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 179 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 180 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 181 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 182 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 183 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 184 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 185 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 186 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 187 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 188 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 189 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 190 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 191 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 192 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 193 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 194 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 195 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 196 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 197 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 198 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 199 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 200 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 201 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 202 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 203 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 204 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 205 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 206 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 207 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 208 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 209 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 210 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 211 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 212 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 213 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 214 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 215 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 216 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 217 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 218 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 219 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 220 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 221 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 222 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 223 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 224 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 225 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 226 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 227 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 228 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 229 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 230 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 231 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 232 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 233 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 234 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 235 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 236 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 237 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 238 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 239 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 240 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 241 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 242 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 243 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 244 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 245 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 246 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 247 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 248 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 249 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 250 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 251 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 252 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 253 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 254 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 255 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 256 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 257 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 258 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 259 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 260 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 261 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 262 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 263 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 264 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 265 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 266 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 267 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 268 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 269 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 270 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 271 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 272 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 273 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 274 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 275 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 276 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 277 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 278 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 279 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 280 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 281 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 282 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 283 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 284 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 285 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 286 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 287 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 288 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 289 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 290 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 291 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 292 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 293 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 294 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 295 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 296 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 297 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 298 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 299 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 300 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 301 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 302 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 303 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 304 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 305 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 306 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 307 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 308 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 309 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 310 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 311 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 312 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 313 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 314 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 315 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 316 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 317 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 318 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 319 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 320 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 321 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 322 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 323 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 324 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 325 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 326 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 327 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 328 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 329 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 330 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 331 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 332 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 333 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 334 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 335 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 336 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 337 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 338 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 339 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 340 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 341 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 342 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 343 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 344 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 345 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 346 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 347 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 348 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 349 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 350 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 351 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 352 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 353 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 354 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 355 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 356 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 357 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 358 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 359 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 360 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 361 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 362 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 363 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 364 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 365 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 366 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 367 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 368 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 369 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 370 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 371 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 372 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 373 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 374 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 375 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 376 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 377 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 378 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 379 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 380 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 381 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 382 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 383 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 384 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 385 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 386 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 387 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 388 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 389 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 390 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 391 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 392 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 393 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 394 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 395 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 396 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 397 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 398 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 399 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 400 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 401 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 402 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 403 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 404 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 405 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 406 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 407 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 408 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 409 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 410 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 411 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 412 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 413 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 414 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 415 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 416 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 417 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 418 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 419 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 420 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 421 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 422 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 423 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 424 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 425 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 426 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 427 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 428 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 429 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 430 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 431 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 432 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 433 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 434 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 435 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 436 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 437 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 438 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 439 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 440 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 441 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 442 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 443 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 444 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 445 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 446 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 447 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 448 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 449 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 450 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 451 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 452 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 453 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 454 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 455 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 456 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 457 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 458 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 459 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 460 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 461 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 462 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 463 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 464 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 465 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 466 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 467 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 468 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 469 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 470 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 471 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 472 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 473 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 474 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 475 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 476 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 477 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 478 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 479 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 480 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 481 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 482 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 483 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 484 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 485 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 486 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 487 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 488 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 489 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 490 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 491 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 492 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 493 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 494 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 495 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 496 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 497 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 498 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 499 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 500 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 501 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 502 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 503 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 504 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 505 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 506 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 507 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 508 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 509 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 510 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 511 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 512 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 513 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 514 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 515 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 516 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 517 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 518 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 519 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 520 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 521 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 522 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 523 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 524 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 525 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 526 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 527 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 528 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 529 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 530 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 531 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 532 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 533 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 534 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 535 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 536 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 537 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 538 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 539 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 540 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 541 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 542 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 543 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 544 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 545 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 546 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 547 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 548 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 549 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 550 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 551 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 552 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 553 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 554 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 555 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 556 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 557 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 558 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 559 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 560 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 561 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 562 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 563 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 564 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 565 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 566 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 567 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 568 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 569 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 570 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 571 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 572 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 573 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 574 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 575 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 576 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 577 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 578 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 579 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 580 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 581 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 582 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 583 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 584 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 585 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 586 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 587 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 588 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 589 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 590 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 591 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 592 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 593 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 594 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 595 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 596 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 597 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 598 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 599 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 600 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 601 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 602 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 603 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 604 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 605 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 606 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 607 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 608 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 609 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 610 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 611 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 612 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 613 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 614 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 615 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 616 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 617 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 618 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 619 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 620 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 621 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 622 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 623 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 624 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 625 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 626 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 627 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 628 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 629 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 630 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 631 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 632 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 633 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 634 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 635 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 636 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 637 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 638 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 639 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 640 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 641 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 642 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 643 WAPrettyPrintedDocument >> print: @2 line 2 [GsMethod 125792513]
> 644 WARenderer >> text: @2 line 4 [GsMethod 84634113]
> 645 WACanvas >> text: @2 line 3 [GsMethod 87423233]
> 646 AnimalHousingEdit >> renderContentOn: @2 line 2 [GsMethod 173235969]
> 647 WARenderVisitor >> visitPainter: @6 line 4 [GsMethod 89305089]
> 648 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 649 WAPainterVisitor >> visitComponent: @1 line 2 [GsMethod 83404033]
> 650 WAComponent >> accept: @1 line 2 [GsMethod 87341057]
> 651 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
> 652 WAVisitor >> start: @1 line 2 [GsMethod 83639809]
> 653 ComplexBlock in WAHalo >> source:visitor: @14 line 14 [GsMethod
> 124783617]
> 654 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 655 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 656 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 657 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
> 658 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 659 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 660 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 661 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
> 662 WABrush >> with: @2 line 2 [GsMethod 87408129]
> 663 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
> 664 WAHalo >> source:visitor: @17 line 9 [GsMethod 124783617]
> 665 ComplexBlock in WAHalo >> renderWithContext:visitor: @23 line 14
> [GsMethod 124781057]
> 666 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 667 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 668 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 669 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
> 670 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 671 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 672 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 673 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
> 674 WABrush >> with: @2 line 2 [GsMethod 87408129]
> 675 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
> 676 ComplexVCBlock in WAHalo >> renderWithContext:visitor: @24 line 13
> [GsMethod 124781057]
> 677 ComplexVCBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 678 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 679 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 680 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
> 681 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 682 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 683 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 684 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
> 685 WABrush >> with: @2 line 2 [GsMethod 87408129]
> 686 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
> 687 WAHalo >> renderWithContext:visitor: @25 line 8 [GsMethod 124781057]
> 688 WAHaloVisitor >> visitPainter: @10 line 6 [GsMethod 124723713]
> 689 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 690 WAPainterVisitor >> visitComponent: @1 line 2 [GsMethod 83404033]
> 691 WAComponent >> accept: @1 line 2 [GsMethod 87341057]
> 692 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
> 693 WAPresenterGuide >> visitPainter: @2 line 2 [GsMethod 87356929]
> 694 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 695 WAPainterVisitor >> visitComponent: @1 line 2 [GsMethod 83404033]
> 696 WAComponent >> accept: @1 line 2 [GsMethod 87341057]
> 697 WAPresenter >> renderUndecoratedWithContext: @2 line 4 [GsMethod
> 87304705]
> 698 WADecoration >> renderNextOn: @3 line 2 [GsMethod 82788609]
> 699 WADecoration >> renderContentOn: @1 line 2 [GsMethod 82786305]
> 700 WARenderVisitor >> visitPainter: @6 line 4 [GsMethod 89305089]
> 701 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 702 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
> 703 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
> 704 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
> 705 WAHalo >> render:visitor: @2 line 4 [GsMethod 124782849]
> 706 ComplexBlock in WAHalo >> renderWithContext:visitor: @23 line 14
> [GsMethod 124781057]
> 707 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 708 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 709 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 710 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
> 711 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 712 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 713 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 714 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
> 715 WABrush >> with: @2 line 2 [GsMethod 87408129]
> 716 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
> 717 ComplexVCBlock in WAHalo >> renderWithContext:visitor: @24 line 13
> [GsMethod 124781057]
> 718 ComplexVCBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 719 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 720 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 721 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
> 722 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 723 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 724 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 725 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
> 726 WABrush >> with: @2 line 2 [GsMethod 87408129]
> 727 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
> 728 WAHalo >> renderWithContext:visitor: @25 line 8 [GsMethod 124781057]
> 729 WAHaloVisitor >> visitPainter: @10 line 6 [GsMethod 124723713]
> 730 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 731 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
> 732 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
> 733 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
> 734 WAPresenterGuide >> visitPainter: @2 line 2 [GsMethod 87356929]
> 735 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 736 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
> 737 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
> 738 WAPainterVisitor >> visitDecorationsOfComponent: @2 line 2 [GsMethod
> 83404545]
> 739 WAComponent >> acceptDecorated: @1 line 2 [GsMethod 87335937]
> 740 WAPresenterGuide >> visit: @1 line 2 [GsMethod 87357697]
> 741 WAPainter >> renderWithContext: @2 line 8 [GsMethod 89255937]
> 742 WAPainter >> renderOn: @2 line 8 [GsMethod 89256961]
> 743 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 744 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 745 WADelegation >> renderContentOn: @2 line 2 [GsMethod 82805249]
> 746 WARenderVisitor >> visitPainter: @6 line 4 [GsMethod 89305089]
> 747 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 748 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
> 749 WAPainterVisitor >> visitDelegation: @1 line 2 [GsMethod 83404801]
> 750 WADelegation >> accept: @1 line 2 [GsMethod 82804993]
> 751 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
> 752 WAHalo >> render:visitor: @2 line 4 [GsMethod 124782849]
> 753 ComplexBlock in WAHalo >> renderWithContext:visitor: @23 line 14
> [GsMethod 124781057]
> 754 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 755 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 756 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 757 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
> 758 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 759 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 760 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 761 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
> 762 WABrush >> with: @2 line 2 [GsMethod 87408129]
> 763 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
> 764 ComplexVCBlock in WAHalo >> renderWithContext:visitor: @24 line 13
> [GsMethod 124781057]
> 765 ComplexVCBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 766 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 767 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 768 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
> 769 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 770 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 771 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 772 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
> 773 WABrush >> with: @2 line 2 [GsMethod 87408129]
> 774 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
> 775 WAHalo >> renderWithContext:visitor: @25 line 8 [GsMethod 124781057]
> 776 WAHaloVisitor >> visitPainter: @10 line 6 [GsMethod 124723713]
> 777 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 778 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
> 779 WAPainterVisitor >> visitDelegation: @1 line 2 [GsMethod 83404801]
> 780 WADelegation >> accept: @1 line 2 [GsMethod 82804993]
> 781 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
> 782 WAPresenterGuide >> visitPainter: @2 line 2 [GsMethod 87356929]
> 783 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 784 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
> 785 WAPainterVisitor >> visitDelegation: @1 line 2 [GsMethod 83404801]
> 786 WADelegation >> accept: @1 line 2 [GsMethod 82804993]
> 787 WAPainterVisitor >> visitDecorationsOfComponent: @2 line 2 [GsMethod
> 83404545]
> 788 WAComponent >> acceptDecorated: @1 line 2 [GsMethod 87335937]
> 789 WAPresenterGuide >> visit: @1 line 2 [GsMethod 87357697]
> 790 WAPainter >> renderWithContext: @2 line 8 [GsMethod 89255937]
> 791 WAPainter >> renderOn: @2 line 8 [GsMethod 89256961]
> 792 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 793 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 794 AnimalRoot >> renderContentOn: @2 line 2 [GsMethod 198874369]
> 795 WARenderVisitor >> visitPainter: @6 line 4 [GsMethod 89305089]
> 796 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 797 WAPainterVisitor >> visitComponent: @1 line 2 [GsMethod 83404033]
> 798 WAComponent >> accept: @1 line 2 [GsMethod 87341057]
> 799 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
> 800 WAHalo >> render:visitor: @2 line 4 [GsMethod 124782849]
> 801 ComplexBlock in WAHalo >> renderWithContext:visitor: @23 line 14
> [GsMethod 124781057]
> 802 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 803 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 804 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 805 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
> 806 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 807 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 808 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 809 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
> 810 WABrush >> with: @2 line 2 [GsMethod 87408129]
> 811 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
> 812 ComplexVCBlock in WAHalo >> renderWithContext:visitor: @24 line 13
> [GsMethod 124781057]
> 813 ComplexVCBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 814 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 815 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 816 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
> 817 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 818 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 819 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 820 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
> 821 WABrush >> with: @2 line 2 [GsMethod 87408129]
> 822 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
> 823 WAHalo >> renderWithContext:visitor: @25 line 8 [GsMethod 124781057]
> 824 WAHaloVisitor >> visitPainter: @10 line 6 [GsMethod 124723713]
> 825 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 826 WAPainterVisitor >> visitComponent: @1 line 2 [GsMethod 83404033]
> 827 WAComponent >> accept: @1 line 2 [GsMethod 87341057]
> 828 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
> 829 WAPresenterGuide >> visitPainter: @2 line 2 [GsMethod 87356929]
> 830 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 831 WAPainterVisitor >> visitComponent: @1 line 2 [GsMethod 83404033]
> 832 WAComponent >> accept: @1 line 2 [GsMethod 87341057]
> 833 WAPresenter >> renderUndecoratedWithContext: @2 line 4 [GsMethod
> 87304705]
> 834 ComplexBlock in NotificationsAreaDecoration >> renderContentOn: @8
> line 4 [GsMethod 193490689]
> 835 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
> 836 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
> 837 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
> 838 NotificationsAreaDecoration >> renderContentOn: @11 line 6 [GsMethod
> 193490689]
> 839 WARenderVisitor >> visitPainter: @6 line 4 [GsMethod 89305089]
> 840 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 841 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
> 842 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
> 843 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
> 844 WAHalo >> render:visitor: @2 line 4 [GsMethod 124782849]
> 845 ComplexBlock in WAHalo >> renderWithContext:visitor: @23 line 14
> [GsMethod 124781057]
> 846 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 847 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 848 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 849 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
> 850 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 851 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 852 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 853 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
> 854 WABrush >> with: @2 line 2 [GsMethod 87408129]
> 855 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
> 856 ComplexVCBlock in WAHalo >> renderWithContext:visitor: @24 line 13
> [GsMethod 124781057]
> 857 ComplexVCBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 858 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 859 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 860 ComplexBlock in WATagBrush >> with: @4 line 7 [GsMethod 86757377]
> 861 ComplexBlock in ExecutableBlock >> renderOn: @4 line 3 [GsMethod
> 81738241]
> 862 WARenderer >> render: @1 line 4 [GsMethod 84637185]
> 863 WACanvas >> render: @2 line 3 [GsMethod 87423745]
> 864 WACanvas >> nest: @4 line 4 [GsMethod 87422721]
> 865 WABrush >> with: @2 line 2 [GsMethod 87408129]
> 866 WATagBrush >> with: @6 line 5 [GsMethod 86757377]
> 867 WAHalo >> renderWithContext:visitor: @25 line 8 [GsMethod 124781057]
> 868 WAHaloVisitor >> visitPainter: @10 line 6 [GsMethod 124723713]
> 869 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 870 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
> 871 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
> 872 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
> 873 WAPresenterGuide >> visitPainter: @2 line 2 [GsMethod 87356929]
> 874 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 875 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
> 876 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
> 877 WAPresenter >> renderUndecoratedWithContext: @2 line 4 [GsMethod
> 87304705]
> 878 WADecoration >> renderNextOn: @3 line 2 [GsMethod 82788609]
> 879 WAToolDecoration >> renderChildOn: @9 line 5 [GsMethod 123828225]
> 880 WAToolDecoration >> renderContentOn: @1 line 2 [GsMethod 123827201]
> 881 WARenderVisitor >> visitPainter: @6 line 4 [GsMethod 89305089]
> 882 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 883 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
> 884 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
> 885 WAVisitor >> visit: @1 line 2 [GsMethod 83640065]
> 886 WAPresenterGuide >> visitPainter: @2 line 2 [GsMethod 87356929]
> 887 WAPainterVisitor >> visitPresenter: @1 line 2 [GsMethod 83405057]
> 888 WAPainterVisitor >> visitDecoration: @1 line 2 [GsMethod 83404289]
> 889 WADecoration >> accept: @1 line 2 [GsMethod 82789633]
> 890 WAPainterVisitor >> visitDecorationsOfComponent: @2 line 2 [GsMethod
> 83404545]
> 891 WAComponent >> acceptDecorated: @1 line 2 [GsMethod 87335937]
> 892 WAPresenterGuide >> visit: @1 line 2 [GsMethod 87357697]
> 893 WAPainter >> renderWithContext: @2 line 8 [GsMethod 89255937]
> 894 WARenderPhaseContinuation >> processRendering: @27 line 29 [GsMethod
> 88682241]
> 895 ComplexBlock in WARenderPhaseContinuation >> handleRequest @4 line 3
> [GsMethod 88682753]
> 896 WARequestContext >> respond: @2 line 4 [GsMethod 88306689]
> 897 WASessionContinuation >> respond: @2 line 2 [GsMethod 88634625]
> 898 WARenderPhaseContinuation >> handleRequest @5 line 3 [GsMethod 88682753]
> 899 ComplexBlock in WASessionContinuation >> basicValue @3 line 2
> [GsMethod 88632577]
> 900 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
> 901 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
> 902 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
> 903 WASessionContinuation >> withUnregisteredHandlerDo: @7 line 3
> [GsMethod 88634113]
> 904 WASessionContinuation >> basicValue @4 line 2 [GsMethod 88632577]
> 905 WASessionContinuation >> value @3 line 5 [GsMethod 88631553]
> 906 WASession >> handleFiltered: @14 line 10 [GsMethod 83626753]
> 907 WARequestFilter >> handleFiltered: @2 line 4 [GsMethod 88664833]
> 908 ComplexBlock in WADeprecatedToolFilter >> handleFiltered: @3 line 2
> [GsMethod 125804033]
> 909 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
> 910 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
> 911 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
> 912 WADeprecatedToolFilter >> handleFiltered: @6 line 3 [GsMethod 125804033]
> 913 WARequestFilter >> handleFiltered: @2 line 4 [GsMethod 88664833]
> 914 ComplexBlock in WATimingToolFilter >> handleFiltered: @4 line 3
> [GsMethod 125799681]
> 915 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
> 916 ComplexBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod 2304001]
> 917 WATimingToolFilter >> handleFiltered: @8 line 4 [GsMethod 125799681]
> 918 ComplexBlock in WARequestHandler >> handle: @4 line 4 [GsMethod
> 87710209]
> 919 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
> 920 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
> 921 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
> 922 WADynamicVariable class >> use:during: @4 line 4 [GsMethod 84240897]
> 923 ComplexBlock in WARequestContext >> push:while: @4 line 5 [GsMethod
> 88305409]
> 924 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
> 925 ComplexBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod 2304001]
> 926 WARequestContext >> push:while: @7 line 6 [GsMethod 88305409]
> 927 WARequestHandler >> handle: @5 line 4 [GsMethod 87710209]
> 928 WASession >> handle: @10 line 11 [GsMethod 83627009]
> 929 WARegistry >> dispatch:to: @1 line 5 [GsMethod 88579841]
> 930 WARegistry >> handleKeyed:with: @2 line 5 [GsMethod 88585217]
> 931 WARegistry >> handleFiltered: @31 line 19 [GsMethod 88582401]
> 932 WAApplication >> handleFiltered: @5 line 5 [GsMethod 83603713]
> 933 WARequestFilter >> handleFiltered: @2 line 4 [GsMethod 88664833]
> 934 ComplexBlock in WAExceptionFilter >> handleFiltered: @3 line 3
> [GsMethod 87681793]
> 935 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
> 936 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
> 937 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
> 938 WAExceptionHandler >> handleExceptionsDuring: @8 line 3 [GsMethod
> 87689217]
> 939 WAExceptionHandler class >> handleExceptionsDuring:context: @2 line
> 2 [GsMethod 88919809]
> 940 WAExceptionFilter >> handleFiltered: @4 line 3 [GsMethod 87681793]
> 941 ComplexBlock in WARequestHandler >> handle: @4 line 4 [GsMethod
> 87710209]
> 942 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
> 943 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
> 944 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
> 945 WADynamicVariable class >> use:during: @4 line 4 [GsMethod 84240897]
> 946 ComplexBlock in WARequestContext >> push:while: @4 line 5 [GsMethod
> 88305409]
> 947 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
> 948 ComplexBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod 2304001]
> 949 WARequestContext >> push:while: @7 line 6 [GsMethod 88305409]
> 950 WARequestHandler >> handle: @5 line 4 [GsMethod 87710209]
> 951 WADispatcher >> handleFiltered:named: @7 line 5 [GsMethod 88705281]
> 952 WADispatcher >> handleFiltered: @7 line 6 [GsMethod 88705537]
> 953 ComplexBlock in WARequestHandler >> handle: @4 line 4 [GsMethod
> 87710209]
> 954 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
> 955 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
> 956 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
> 957 WADynamicVariable class >> use:during: @4 line 4 [GsMethod 84240897]
> 958 ComplexBlock in WARequestContext >> push:while: @4 line 5 [GsMethod
> 88305409]
> 959 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
> 960 ComplexBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod 2304001]
> 961 WARequestContext >> push:while: @7 line 6 [GsMethod 88305409]
> 962 WARequestHandler >> handle: @5 line 4 [GsMethod 87710209]
> 963 ComplexBlock in WAServerAdaptor >> handleRequest: @4 line 4
> [GsMethod 88408065]
> 964 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
> 965 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
> 966 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
> 967 WAServerAdaptor >> handleRequest: @6 line 5 [GsMethod 88408065]
> 968 WAServerAdaptor >> handle: @1 line 4 [GsMethod 88407041]
> 969 ComplexBlock in WAServerAdaptor >> process: @5 line 6 [GsMethod
> 88406529]
> 970 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
> 971 ComplexBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod 2304001]
> 972 WAServerAdaptor >> process: @9 line 7 [GsMethod 88406529]
> 973 ComplexBlock in WAGsSwazooAdaptor >> process: @3 line 6 [GsMethod
> 114063105]
> 974 ComplexBlock in GRGemStonePlatform >>
> seasideProcessRequestWithRetry:resultBlock: @9 line 10 [GsMethod 83123713]
> 975 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
> 976 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
> 977 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
> 978 ComplexVCBlock in GRGemStonePlatform >>
> seasideProcessRequestWithRetry:resultBlock: @15 line 11 [GsMethod 83123713]
> 979 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod 2304001]
> 980 ComplexVCBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod
> 2304001]
> 981 TransientRecursionLock >> critical: @15 line 8 [GsMethod 21159937]
> 982 GRGemStonePlatform >> seasideProcessRequestWithRetry:resultBlock:
> @37 line 5 [GsMethod 83123713]
> 983 ComplexBlock in GRGemStonePlatform >>
> seasideProcessRequest:adaptor:resultBlock: @6 line 8 [GsMethod 83124225]
> 984 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
> 985 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
> 986 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
> 987 GRGemStonePlatform >> seasideProcessRequest:adaptor:resultBlock: @25
> line 14 [GsMethod 83124225]
> 988 WAGsSwazooAdaptor >> process: @4 line 4 [GsMethod 114063105]
> 989 WAPluggableSite >> answerTo: @2 line 2 [GsMethod 113379585]
> 990 WAPluggableSite >> helpResolve: @7 line 3 [GsMethod 113379329]
> 991 URIResolution >> visitResource: @1 line 2 [GsMethod 112730881]
> 992 ComplexBlock in URIResolution >> visitChildrenOf:advancing: @10 line
> 7 [GsMethod 112731905]
> 993 Collection >> do: @5 line 10 [GsMethod 1547777]
> 994 URIResolution >> visitChildrenOf:advancing: @15 line 5 [GsMethod
> 112731905]
> 995 URIResolution >> resolveTransparentComposite: @2 line 2 [GsMethod
> 112732417]
> 996 URIResolution >> resolveServerRoot: @1 line 2 [GsMethod 112728321]
> 997 ServerRootComposite >> helpResolve: @1 line 2 [GsMethod 113196033]
> 998 URIResolution >> visitResource: @1 line 2 [GsMethod 112730881]
> 999 URIResolution class >> resolveRequest:startingAt: @3 line 2
> [GsMethod 113550337]
> 1000 HTTPServer >> answerTo: @3 line 3 [GsMethod 113588737]
> 1001 ComplexBlock in HTTPConnection >> produceResponseFor: @9 line 5
> [GsMethod 113323009]
> 1002 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
> 1003 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
> 1004 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
> 1005 HTTPConnection >> produceResponseFor: @23 line 6 [GsMethod 113323009]
> 1006 HTTPConnection >> getAndDispatchMessages @9 line 9 [GsMethod 113324033]
> 1007 ComplexBlock in HTTPConnection >> interact @7 line 6 [GsMethod
> 113320449]
> 1008 ExceptionHandler >> doTryBlock: @9 line 7 [GsMethod 10065409]
> 1009 ExceptionHandler >> try:on:do: @15 line 18 [GsMethod 10062081]
> 1010 ComplexBlock in ExecutableBlock >> on:do: @2 line 8 [GsMethod 9005057]
> 1011 ComplexVCBlock in HTTPConnection >> interact @12 line 9 [GsMethod
> 113320449]
> 1012 ComplexBlock in ExecutableBlock >> ifCurtailed: @4 line 6 [GsMethod
> 81736193]
> 1013 ComplexBlock in ExecutableBlock >> ensure: @4 line 11 [GsMethod
> 2304001]
> 1014 ComplexBlock in ExecutableBlock >> ensure: @6 line 11 [GsMethod
> 2304001]
> 1015 ComplexVCBlock in ExecutableBlock >> ifCurtailed: @8 line 8
> [GsMethod 81736193]
> 1016 ComplexVCBlock in HTTPConnection >> interact @19 line 13 [GsMethod
> 113320449]
> 1017 HTTPConnection >> interact @26 line 18 [GsMethod 113320449]
> 1018 HTTPServer >> acceptConnection @15 line 11 [GsMethod 113591553]
> 1019 ComplexBlock in HTTPServer >> start @13 line 6 [GsMethod 113589761]
> 1020 ComplexBlock in BlockClosure >> repeat @3 line 5 [GsMethod 19138561]
> 1021 ComplexVCBlock in HTTPServer >> start @14 line 6 [GsMethod 113589761]
> 1022 GsProcess >> _startPart2 @15 line 17 [GsMethod 4501249]
> 1023 GsProcess >> _start @1 line 9 [GsMethod 4501761]
> [GsProcess 194352385]
> topaz 1> GemStone Smalltalk Compiler Errors:
> GemToGemAnnouncement uninstallStaticHandler.
> System beginTransaction.
> (ObjectLogEntry
> fatal: '9001: topaz exit'
> object:
> 'port: ', Swazoo printString, ' ',
> * ^1 *******
> 'pid: ', (System gemVersionReport at: 'processId') printString) addToLog.
> System commitTransaction.
>
> 1: [1031] undefined symbol
>
> Now executing the following command saved from "iferr 1":
> where
> Stack is not active
> topaz 1>
> [Info]: Logging out at 08/13/2010 08:50:43 PM CEST===== Backtrace end
> =============================================
> 13 August 2010 8:52:37 pm
>
> Client VM: unix - a SmalltalkImage
> Client Image: Pharo-1.0 [Latest update: #10517]
> GemTools Client: >=1.0-beta.8 [ConfigurationOfGemTools]
> GLASS: 1.0-beta.9
>
> ===== GLASS Version Report ============================================
> 1. ConfigurationOfGLASS 1.0-beta.9 #'development'
> 2. ConfigurationOfGofer 1.0.2.1 #'release'
> 3. ConfigurationOfGoferProjectLoader 1.0-alpha2.1 #'development'
> 4. ConfigurationOfGrease 1.0-rc #'release'
> 5. ConfigurationOfGsCore 0.241 #'development'
> 6. ConfigurationOfGsMisc 0.237 #'development'
> 7. ConfigurationOfGsMonticello 0.238 #'development'
> 8. ConfigurationOfGsOB 0.239 #'development'
> 9. ConfigurationOfMagritte2 2.0.5 #'release'
> 10. ConfigurationOfMetacello 1.0-beta.27.2 #'beta'
> 11. ConfigurationOfSeaside30 3.0.0-rc #'release'
> 12. ConfigurationOfSwazoo2 2.2.0.2 #'beta'
>
> ===== Client Version Report ============================================
> cpuArchitecture: ia32
> cpuKind: x86_64
> gsBuildArchitecture: ia32 (Linux)
> gsBuildDate: Tue Jul 13 15:19:49 2010
> gsBuildSerialNum: gss64_2_4_4_x_branch-23813
> gsRelease: 2.4.4.1
> gsVersion: 2.4.4.1
> nodeName: craptop
> osName: Linux
> osRelease: 2.6.32-24-generic
> osVersion: #39-Ubuntu SMP Wed Jul 28 05:14:15 UTC 2010
> processId: 2447
> processorCount: 2
>
> ===== Stone Version Report ===========================================
> cpuArchitecture: x86-64
> cpuKind: x86_64
> gsBuildArchitecture: x86-64 (Linux)
> gsBuildDate: Tue Jul 13 15:19:49 2010
> gsBuildSerialNum: gss64_2_4_4_x_branch-23813
> gsRelease: 2.4.4.1
> gsVersion: 2.4.4.1
> nodeName: craptop
> osName: Linux
> osRelease: 2.6.32-24-generic
> osVersion: #39-Ubuntu SMP Wed Jul 28 05:14:15 UTC 2010
> processId: 2378
> processorCount: 2
>
> ===== Preferences ============================================
> annotationPanes=false
> mercuryPanel=true
> optionalButtons=true
> syntaxHighlightingAsYouType=true
>
>
>
>
> On Fri, Aug 13, 2010 at 7:06 PM, Dale Henrichs <[hidden email]
> <mailto:[hidden email]>> wrote:
>
>     Nick Ager wrote:
>
>         Hi,
>
>         I mentioned earlier in the week that I was having problems
>         connecting to a clean installation of Gemstone2.4.4.1 on a Linux
>         distribution (Ubuntu/Centos/Suse - I tested them all!) running
>         within VMWare Fusion on a Mac. I tried again today *initially*
>         with out luck. I'd installed, configured and started Gemstone on
>         the VMWare linux installation and all was looking good. Then
>         when I tried to login from Gemtools running on my host machine
>         Gemtools reported: 'The Gemstone session has lost its connection
>         to the Stone Repository Monitor, SocketRead failed" and the
>         /opt/gemstone/log/seaside.log reported:
>         Could not get the network address of the Gem, session 5.
>          Reason: No network error. ,      Net
>         Eventually I discovered that if I changed the hostname I'd been
>         using to create a OGApplianceSessionDescription from an ip
>         address eg '172.16.181.143' to a name eg 'ubuntu' by adding
>         'ubuntu' into my /etc/hosts file I can login and all is well.
>
>         With minimal effort I've also managed to bring up my Seaside app
>         in Gemstone. Thanks for all the effort within Gemstone to make
>         the process of porting code from Pharo into Gemstone so painless.
>
>         My question for the day is about debugging. I've yet to
>         configure a HTTP server with FastCGI so I'm using Swazoo. I can
>         only manage to debug from the blocking Swazoo server. With the
>         non-blocking Swazoo gem servers I find that with a halt in any
>         method it seems that the Gems die without being able to debug.
>         The Swazoo log shows:
>
>         GemStone Smalltalk Compiler Errors:
>           GemToGemAnnouncement uninstallStaticHandler.
>           System beginTransaction.
>           (ObjectLogEntry
>             fatal: '8383: topaz exit'
>             object:
>               'port: ', Swazoo printString, ' ',
>          *               ^1                                            
>               *******
>               'pid: ', (System gemVersionReport at: 'processId')
>         printString) addToLog.
>           System commitTransaction.
>
>         1: [1031] undefined symbol
>
>         Now executing the following command saved from "iferr 1":
>           where
>         Stack is not active
>
>         ----
>
>         Thanks again for the all the help so far,
>
>         Nick
>
>
>
>
>     Nick,
>
>     There is an error in the script ... the final doit should be:
>
>     run
>
>     GemToGemAnnouncement uninstallStaticHandler.
>     System beginTransaction.
>     (ObjectLogEntry
>      fatal: '$1: topaz exit'
>      object:
>        'port: ', $2 printString, ' ',
>
>        'pid: ', (System gemVersionReport at: 'processId') printString)
>     addToLog.
>     System commitTransaction.
>     %
>
>     However, that is not the root cause of your difficulties. This part
>     of the script is only executed when the gem is on the way down.
>
>     For doing debuggin when running multiple seaside gems, you should
>     make sure that you have the correct error handler installed:
>
>      WAGemStoneProductionErrorHandler initialize
>
>     This error handler should be used in both production and development
>     situations. It's job is to catch errors and Halts, snap off a
>     continuation and display a (configurable) message to the end user.
>
>     As a developer when one of these errors occur, you can use the Debug
>     button to bring up a debugger on the continuation in your
>     development vm.
>
>     At this point in time, I have not solved the problem of setting
>     remote breakpoints or continuing from a remote debugger, but the
>     current capability at least allows you to get debugging done.
>
>     This handler currently only works on halts that are thrown while
>     executing code in your component/session ... errors in other parts
>     of the system should result in "internal error" notifications ...
>     these types of errors would need to be debugged using the blocking
>     techniques.
>
>     At this point, I'm curious what version of Seaside you have loaded?
>     The WAGemStoneProductionErrorHandler should have been installed by
>     default...or you have run into a bug in how error handlers are
>     installed:)
>
>     Dale
>
>
>
>
> --
> imagination is more important than knowledge - Albert Einstein
> Logic will get you from A to B. Imagination will take you everywhere -
> Albert Einstein
> Learn from yesterday, live for today, hope for tomorrow. The important
> thing is not to stop questioning. - Albert Einstein
> The true sign of intelligence is not knowledge but imagination. - Albert
> Einstein
> However beautiful the strategy, you should occasionally look at the
> results. - Sir Winston Churchill
> It's not enough that we do our best; sometimes we have to do what's
> required. - Sir Winston Churchill
Reply | Threaded
Open this post in threaded view
|

Re: Solved: Gemstone session has lost its connection to the Stone Repository monitor, SocketRead failed

Dale Henrichs
In reply to this post by Nick


Nick Ager wrote:

> Hi Dale,
>
>     There is an error in the script ... the final doit should be:
>
>     run
>
>     GemToGemAnnouncement uninstallStaticHandler.
>     System beginTransaction.
>     (ObjectLogEntry
>      fatal: '$1: topaz exit'
>      object:
>        'port: ', $2 printString, ' ',
>
>        'pid: ', (System gemVersionReport at: 'processId') printString)
>     addToLog.
>     System commitTransaction.
>     %
>
>
> OK I patched /opt/gemstone/product/bin/startSeaside30_Adaptor with your fix.
>
>  
>
>     However, that is not the root cause of your difficulties. This part
>     of the script is only executed when the gem is on the way down.
>
>     For doing debuggin when running multiple seaside gems, you should
>     make sure that you have the correct error handler installed:
>
>      WAGemStoneProductionErrorHandler initialize
>
>     This error handler should be used in both production and development
>     situations. It's job is to catch errors and Halts, snap off a
>     continuation and display a (configurable) message to the end user.
>
>
> Ok I misread the documentation in the Seaside3.0 workspace and manually
> registered my application with the WAGemStoneWalkbackErrorHandler. I
> guess this is the error handler to use when I using a blocking server.
>
> WAAdmin applicationExceptionHandlingDefaults at: #exceptionHandler
>  gives: WARemoteDebuggingWalkbackErrorHandler
>
> If I understand the Seaside3.0 workspace
> correctly WARemoteDebuggingWalkbackErrorHandler should be OK for me?:
> WARemoteDebuggingWalkbackErrorHandler initialize "Use this handler when
> running development Seaside servers out of topaz vms"
>
> The difference appears to be in the resulting html.

:) I have had several error handler versions that did different things.
As I mentioned in another mail, until I get remote debugging funcitoning
again, the best I can do is snap off a continuation and stick it into
the object log with a message to the user that the sysadmin has been
notified (whether or not you are in development).

For production, I would use the production handler (or one that you've
customerized for your own needs ... sending email, etc.

For development any one of the handlers can be used ... In my head I had
settled on WAGemStoneProductionErrorHandler, but obviously that decision
didn't propogate out into code/documentation:)

>
>
>     As a developer when one of these errors occur, you can use the Debug
>     button to bring up a debugger on the continuation in your
>     development vm.
>
>     At this point in time, I have not solved the problem of setting
>     remote breakpoints or continuing from a remote debugger, but the
>     current capability at least allows you to get debugging done.
>
>     This handler currently only works on halts that are thrown while
>     executing code in your component/session ... errors in other parts
>     of the system should result in "internal error" notifications ...
>     these types of errors would need to be debugged using the blocking
>     techniques.
>
>     At this point, I'm curious what version of Seaside you have loaded?
>     The WAGemStoneProductionErrorHandler should have been installed by
>     default...or you have run into a bug in how error handlers are
>     installed:)
>
>  
> I'm using Seaside3.0
> WARemoteDebuggingWalkbackErrorHandler
> not WAGemStoneProductionErrorHandler is my default.