Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Database Server Software > Sybase

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-08-2008, 06:17 PM
Hans Kramer
 
Posts: n/a
Default Sybase Query Tree

Hi,

Is there a method to get more information about the query tree then I can
get from simply querying the sysprocedures table?

For instance:
select * from sysprocedures where id=OBJECT_ID("test2");
type id sequence status number version
------ ----------- ----------- ------ ------ -----------
2 655442478 0 1152 1 12500
2 655442478 1 1152 1 12500
2 655442478 2 1152 1 12500
2 655442478 3 1152 1 12500
2 655442478 4 1152 1 12500
2 655442478 5 1152 1 12500
2 655442478 6 1152 1 12500
2 655442478 7 1152 1 12500
2 655442478 8 1152 1 12500
2 655442478 9 1152 1 12500
2 655442478 10 1152 1 12500
2 655442478 11 1152 1 12500
This doesn't tell me a whole lot about the query tree!

Thanks,

Hans.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-08-2008, 06:17 PM
Rob Verschoor
 
Posts: n/a
Default Re: Sybase Query Tree

The information in sysprocedures is stored in a kind of 'hidden' column,
i.e. not accessible through SQL. Even if it were accessible, it would not be
useful at all, since there is no way to display what's in there. Note that
it doesn't contain a query plan BTW -- that only exists in the procedure
cache, and is generated by the optimizer after the query tree has been read
from disk.

HTH,

Rob
-------------------------------------------------------------
Rob Verschoor

Certified Sybase Professional DBA for ASE 12.5/12.0/11.5/11.0
and Replication Server 12.5 / TeamSybase

Author of Sybase books (order online at www.sypron.nl/shop):
"Tips, Tricks & Recipes for Sybase ASE"
"The Complete Sybase Replication Server Quick Reference Guide"
"The Complete Sybase ASE Quick Reference Guide"

mailto:rob@YOUR.SPAM.sypron.nl.NOT.FOR.ME
http://www.sypron.nl
Sypron B.V., P.O.Box 10695, 2501HR Den Haag, The Netherlands
-------------------------------------------------------------

"Hans Kramer" <noms@xs4all.nl> wrote in message
newsan.2006.02.17.10.58.13.453947@xs4all.nl...
> Hi,
>
> Is there a method to get more information about the query tree then I can
> get from simply querying the sysprocedures table?
>
> For instance:
> select * from sysprocedures where id=OBJECT_ID("test2");
> type id sequence status number version
> ------ ----------- ----------- ------ ------ -----------
> 2 655442478 0 1152 1 12500
> 2 655442478 1 1152 1 12500
> 2 655442478 2 1152 1 12500
> 2 655442478 3 1152 1 12500
> 2 655442478 4 1152 1 12500
> 2 655442478 5 1152 1 12500
> 2 655442478 6 1152 1 12500
> 2 655442478 7 1152 1 12500
> 2 655442478 8 1152 1 12500
> 2 655442478 9 1152 1 12500
> 2 655442478 10 1152 1 12500
> 2 655442478 11 1152 1 12500
> This doesn't tell me a whole lot about the query tree!
>
> Thanks,
>
> Hans.
>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-08-2008, 06:17 PM
Hans Kramer
 
Posts: n/a
Default Re: Sybase Query Tree

Thanks Rob,

If it is not accessible thru SQL I guess I am out of luck.

I wanted to use this information from the client side to make sure
that I am executing the correct version of the stored procedure in
question.

The syscomments table can be edited so is no good (but will do for most
purposes including perhaps mine) and just using the OBJECT_ID could help
as well. However, the query tree should uniquely describe the stored
procedure (actually I was hoping that, perhaps naively). Producing a
strong hash value of that data would be enough.

This sounds silly, however, it is useful in some cases in
which "we cannot" (better phrased: want to) trust the DBA (how is that
posssible ;-). Of course the question that immediately rises, can we trust
the application side :-) :-) Well it is more legal mumbo jumbo (or in my
case Good Clinical Practice 21 CFR Part 11)

Hans.

On Fri, 17 Feb 2006 12:18:58

On Fri, 17 Feb 2006 12:18:58 +0100, Rob Verschoor wrote:

> The information in sysprocedures is stored in a kind of 'hidden' column,
> i.e. not accessible through SQL. Even if it were accessible, it would not
> be useful at all, since there is no way to display what's in there. Note
> that it doesn't contain a query plan BTW -- that only exists in the
> procedure cache, and is generated by the optimizer after the query tree
> has been read from disk.
>
> HTH,
>
> Rob
> ------------------------------------------------------------- Rob
> Verschoor
>
> Certified Sybase Professional DBA for ASE 12.5/12.0/11.5/11.0 and
> Replication Server 12.5 / TeamSybase
>
> Author of Sybase books (order online at www.sypron.nl/shop): "Tips, Tricks
> & Recipes for Sybase ASE" "The Complete Sybase Replication Server Quick
> Reference Guide" "The Complete Sybase ASE Quick Reference Guide"
>
> mailto:rob@YOUR.SPAM.sypron.nl.NOT.FOR.ME http://www.sypron.nl
> Sypron B.V., P.O.Box 10695, 2501HR Den Haag, The Netherlands
> -------------------------------------------------------------
>
> "Hans Kramer" <noms@xs4all.nl> wrote in message
> newsan.2006.02.17.10.58.13.453947@xs4all.nl...
>> Hi,
>>
>> Is there a method to get more information about the query tree then I
>> can get from simply querying the sysprocedures table?
>>
>> For instance:
>> select * from sysprocedures where id=OBJECT_ID("test2");
>> type id sequence status number version ------ -----------
>> ----------- ------ ------ -----------
>> 2 655442478 0 1152 1 12500 2 655442478
>> 1 1152 1 12500 2 655442478 2
>> 1152 1 12500 2 655442478 3 1152 1
>> 12500 2 655442478 4 1152 1 12500 2
>> 655442478 5 1152 1 12500 2 655442478
>> 6 1152 1 12500 2 655442478 7 1152
>> 1 12500 2 655442478 8 1152 1
>> 12500 2 655442478 9 1152 1 12500 2
>> 655442478 10 1152 1 12500 2 655442478
>> 11 1152 1 12500
>> This doesn't tell me a whole lot about the query tree!
>>
>> Thanks,
>>
>> Hans.
>>
>>


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 04-08-2008, 06:17 PM
Rob Verschoor
 
Posts: n/a
Default Re: Sybase Query Tree

I don't think you can implement that sort of check with 100% certainty if
you assume the syscomments text could be modified. In any case, the query
tree would not be unique: different stored procs could well have the same
query tree.

Rob V.

"Hans Kramer" <noms@xs4all.nl> wrote in message
newsan.2006.02.17.11.56.48.193388@xs4all.nl...
> Thanks Rob,
>
> If it is not accessible thru SQL I guess I am out of luck.
>
> I wanted to use this information from the client side to make sure
> that I am executing the correct version of the stored procedure in
> question.
>
> The syscomments table can be edited so is no good (but will do for most
> purposes including perhaps mine) and just using the OBJECT_ID could help
> as well. However, the query tree should uniquely describe the stored
> procedure (actually I was hoping that, perhaps naively). Producing a
> strong hash value of that data would be enough.
>
> This sounds silly, however, it is useful in some cases in
> which "we cannot" (better phrased: want to) trust the DBA (how is that
> posssible ;-). Of course the question that immediately rises, can we trust
> the application side :-) :-) Well it is more legal mumbo jumbo (or in my
> case Good Clinical Practice 21 CFR Part 11)
>
> Hans.
>
> On Fri, 17 Feb 2006 12:18:58
>
> On Fri, 17 Feb 2006 12:18:58 +0100, Rob Verschoor wrote:
>
> > The information in sysprocedures is stored in a kind of 'hidden' column,
> > i.e. not accessible through SQL. Even if it were accessible, it would

not
> > be useful at all, since there is no way to display what's in there. Note
> > that it doesn't contain a query plan BTW -- that only exists in the
> > procedure cache, and is generated by the optimizer after the query tree
> > has been read from disk.
> >
> > HTH,
> >
> > Rob
> > ------------------------------------------------------------- Rob
> > Verschoor
> >
> > Certified Sybase Professional DBA for ASE 12.5/12.0/11.5/11.0 and
> > Replication Server 12.5 / TeamSybase
> >
> > Author of Sybase books (order online at www.sypron.nl/shop): "Tips,

Tricks
> > & Recipes for Sybase ASE" "The Complete Sybase Replication Server Quick
> > Reference Guide" "The Complete Sybase ASE Quick Reference Guide"
> >
> > mailto:rob@YOUR.SPAM.sypron.nl.NOT.FOR.ME http://www.sypron.nl
> > Sypron B.V., P.O.Box 10695, 2501HR Den Haag, The Netherlands
> > -------------------------------------------------------------
> >
> > "Hans Kramer" <noms@xs4all.nl> wrote in message
> > newsan.2006.02.17.10.58.13.453947@xs4all.nl...
> >> Hi,
> >>
> >> Is there a method to get more information about the query tree then I
> >> can get from simply querying the sysprocedures table?
> >>
> >> For instance:
> >> select * from sysprocedures where id=OBJECT_ID("test2");
> >> type id sequence status number

version ------ -----------
> >> ----------- ------ ------ -----------
> >> 2 655442478 0 1152 1 12500 2 655442478
> >> 1 1152 1 12500 2 655442478 2
> >> 1152 1 12500 2 655442478 3 1152 1
> >> 12500 2 655442478 4 1152 1 12500 2
> >> 655442478 5 1152 1 12500 2 655442478
> >> 6 1152 1 12500 2 655442478 7 1152
> >> 1 12500 2 655442478 8 1152 1
> >> 12500 2 655442478 9 1152 1 12500 2
> >> 655442478 10 1152 1 12500 2 655442478
> >> 11 1152 1 12500
> >> This doesn't tell me a whole lot about the query tree!
> >>
> >> Thanks,
> >>
> >> Hans.
> >>
> >>

>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 04-08-2008, 06:17 PM
Hans Kramer
 
Posts: n/a
Default Re: Sybase Query Tree

On Fri, 17 Feb 2006 13:04:37 +0100, Rob Verschoor wrote:

> I don't think you can implement that sort of check with 100% certainty if

yep, tough cookie!

> you assume the syscomments text could be modified. In any case, the
> query tree would not be unique: different stored procs could well have
> the same query tree.

Okay, if that's the case then it looks my effort is doomed!
Unless you mean that a different stored procedure could be defined the
same and thus produce the same query tree. I wouldn't care about that. I
only care that the stored procedure I will call hasn't been "patched" with
for instance an extra delete, insert or whatever statement!

I will try to retrieve the "hidden" column from the CT lib calls and
experiment a bit... it is Friday anyway!

Thanks again Rob!

Hans.


>
> Rob V.
>
> "Hans Kramer" <noms@xs4all.nl> wrote in message
> newsan.2006.02.17.11.56.48.193388@xs4all.nl...
>> Thanks Rob,
>>
>> If it is not accessible thru SQL I guess I am out of luck.
>>
>> I wanted to use this information from the client side to make sure that
>> I am executing the correct version of the stored procedure in question.
>>
>> The syscomments table can be edited so is no good (but will do for most
>> purposes including perhaps mine) and just using the OBJECT_ID could
>> help as well. However, the query tree should uniquely describe the
>> stored procedure (actually I was hoping that, perhaps naively).
>> Producing a strong hash value of that data would be enough.
>>
>> This sounds silly, however, it is useful in some cases in which "we
>> cannot" (better phrased: want to) trust the DBA (how is that posssible
>> ;-). Of course the question that immediately rises, can we trust the
>> application side :-) :-) Well it is more legal mumbo jumbo (or in my
>> case Good Clinical Practice 21 CFR Part 11)
>>
>> Hans.
>>
>> On Fri, 17 Feb 2006 12:18:58
>>
>> On Fri, 17 Feb 2006 12:18:58 +0100, Rob Verschoor wrote:
>>
>> > The information in sysprocedures is stored in a kind of 'hidden'
>> > column, i.e. not accessible through SQL. Even if it were accessible,
>> > it would

> not
>> > be useful at all, since there is no way to display what's in there.
>> > Note that it doesn't contain a query plan BTW -- that only exists in
>> > the procedure cache, and is generated by the optimizer after the
>> > query tree has been read from disk.
>> >
>> > HTH,
>> >
>> > Rob
>> > ------------------------------------------------------------- Rob
>> > Verschoor
>> >
>> > Certified Sybase Professional DBA for ASE 12.5/12.0/11.5/11.0 and
>> > Replication Server 12.5 / TeamSybase
>> >
>> > Author of Sybase books (order online at www.sypron.nl/shop): "Tips,

> Tricks
>> > & Recipes for Sybase ASE" "The Complete Sybase Replication Server
>> > Quick Reference Guide" "The Complete Sybase ASE Quick Reference
>> > Guide"
>> >
>> > mailto:rob@YOUR.SPAM.sypron.nl.NOT.FOR.ME http://www.sypron.nl Sypron
>> > B.V., P.O.Box 10695, 2501HR Den Haag, The Netherlands
>> > -------------------------------------------------------------
>> >
>> > "Hans Kramer" <noms@xs4all.nl> wrote in message
>> > newsan.2006.02.17.10.58.13.453947@xs4all.nl...
>> >> Hi,
>> >>
>> >> Is there a method to get more information about the query tree then
>> >> I can get from simply querying the sysprocedures table?
>> >>
>> >> For instance:
>> >> select * from sysprocedures where id=OBJECT_ID("test2");
>> >> type id sequence status number

> version ------ -----------
>> >> ----------- ------ ------ -----------
>> >> 2 655442478 0 1152 1 12500 2
>> >> 655442478
>> >> 1 1152 1 12500 2 655442478 2
>> >> 1152 1 12500 2 655442478 3 1152
>> >> 1
>> >> 12500 2 655442478 4 1152 1 12500 2
>> >> 655442478 5 1152 1 12500 2 655442478
>> >> 6 1152 1 12500 2 655442478 7
>> >> 1152
>> >> 1 12500 2 655442478 8 1152 1
>> >> 12500 2 655442478 9 1152 1 12500 2
>> >> 655442478 10 1152 1 12500 2 655442478
>> >> 11 1152 1 12500
>> >> This doesn't tell me a whole lot about the query tree!
>> >>
>> >> Thanks,
>> >>
>> >> Hans.
>> >>
>> >>
>> >>

>>


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 04-08-2008, 06:17 PM
Rob Verschoor
 
Posts: n/a
Default Re: Sybase Query Tree

"Hans Kramer" <noms@xs4all.nl> wrote in message
newsan.2006.02.17.12.29.15.49500@xs4all.nl...
> On Fri, 17 Feb 2006 13:04:37 +0100, Rob Verschoor wrote:
>
> > I don't think you can implement that sort of check with 100% certainty

if
> yep, tough cookie!
>
> > you assume the syscomments text could be modified. In any case, the
> > query tree would not be unique: different stored procs could well have
> > the same query tree.

> Okay, if that's the case then it looks my effort is doomed!
> Unless you mean that a different stored procedure could be defined the
> same and thus produce the same query tree. I wouldn't care about that. I
> only care that the stored procedure I will call hasn't been "patched" with
> for instance an extra delete, insert or whatever statement!
>
> I will try to retrieve the "hidden" column from the CT lib calls and
> experiment a bit... it is Friday anyway!
>


Don't bother... you can't. When I said 'hidden' that was more to illustrate
the concept -- not suggesting you could 'find' it in anyway...

Rob V.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 04-08-2008, 06:17 PM
Hans Kramer
 
Posts: n/a
Default Re: Sybase Query Tree

On Fri, 17 Feb 2006 15:04:45 +0100, Rob Verschoor wrote:

> "Hans Kramer" <noms@xs4all.nl> wrote in message
> newsan.2006.02.17.12.29.15.49500@xs4all.nl...
>> On Fri, 17 Feb 2006 13:04:37 +0100, Rob Verschoor wrote:
>>
>> > I don't think you can implement that sort of check with 100% certainty

> if
>> yep, tough cookie!
>>
>> > you assume the syscomments text could be modified. In any case, the
>> > query tree would not be unique: different stored procs could well have
>> > the same query tree.

>> Okay, if that's the case then it looks my effort is doomed! Unless you
>> mean that a different stored procedure could be defined the same and
>> thus produce the same query tree. I wouldn't care about that. I only
>> care that the stored procedure I will call hasn't been "patched" with
>> for instance an extra delete, insert or whatever statement!
>>
>> I will try to retrieve the "hidden" column from the CT lib calls and
>> experiment a bit... it is Friday anyway!
>>
>>

> Don't bother... you can't. When I said 'hidden' that was more to
> illustrate the concept -- not suggesting you could 'find' it in anyway...


Bummer :-)

Hans.
>
> Rob V.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 04-08-2008, 06:17 PM
Mark A. Parsons
 
Posts: n/a
Default Re: Sybase Query Tree

Hans Kramer wrote:
.... snip ...
> Okay, if that's the case then it looks my effort is doomed!
> Unless you mean that a different stored procedure could be defined the
> same and thus produce the same query tree. I wouldn't care about that. I
> only care that the stored procedure I will call hasn't been "patched" with
> for instance an extra delete, insert or whatever statement!


A few ideas ...

1 - utilize the sp_hidetext stored proc to hide/encrypt the source code in
syscomments; 'course, if someone were to load their own proc and run
sp_hidetext you wouldn't be able to 'see' what they had loaded

2 - incorporate an encryption/hash key into the source code of the proc;
would be a little tricky ... basically something like ... generate hash key
and/or encryption signature for source code file (eg, my_proc.sql), embed
hash key/encryption signature in source code (as a T-SQL comment), load
code into dataserver; (keep hash key in a secure location somewhere); to
check the hash code, extract source from syscomments, remove hash key,
rebuild my_proc.sql, generate new hash key, see if new key is same as 'old'
key kept in your 'security location'; (sounds nasty but very doable with
some scripting); 'course, how do you keep your master set of keys (in that
'secure location') intact, ie, how do you make sure they are not modified
by devious dude(tte), ie, same 'problem' of how do you normally maintain
security codes/passwords/passphrases

3 - don't use stored procs; perform all of your work via dynamic SQL
compiled within the application executable

4 - run sp_hidetext to remove text from syscomments; periodically run a
test execution of your proc with a set of dummy data; key is to instrument
the run so that you collect optimizer info (set showplan on, set fmtonly,
dbcc traceon(3604,302,310), etc); from here you compare the results against
a known set of valid results; 'course, comparing the 2 sets of output is
another issue, not to mention making sure your 'valid results' are
maintained in a secure location where they can't be modified

In the end though, there's nothing to keep a DBA (or someone else with the
right permissions, or access to passwords) from a) manually modifying data,
b) running their own version of stored procs to modify data, or c) creating
(modifying?) a trigger on a table to cause extra DML statements to fire.

No matter how much 'security' you put in place there's always the chance
that the person with the keys (or abilities) can circumvent the security
system.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 04-08-2008, 06:18 PM
Jochen Schug
 
Posts: n/a
Default Re: Sybase Query Tree

On Fri, 17 Feb 2006 18:07:36 +0100, Mark A. Parsons <user@example.net>
wrote:

> 2 - incorporate an encryption/hash key into the source code of the proc;
> would be a little tricky ... basically something like ... generate hash
> key and/or encryption signature for source code file (eg, my_proc.sql),
> embed hash key/encryption signature in source code (as a T-SQL comment),
> load code into dataserver; (keep hash key in a secure location
> somewhere); to check the hash code, extract source from syscomments,
> remove hash key, rebuild my_proc.sql, generate new hash key, see if new
> key is same as 'old' key kept in your 'security location'; (sounds nasty
> but very doable with some scripting); 'course, how do you keep your
> master set of keys (in that 'secure location') intact, ie, how do you
> make sure they are not modified by devious dude(tte), ie, same 'problem'
> of how do you normally maintain security codes/passwords/passphrases


I don't see the need to store the hash value somewhere in the database
itself. You could as well just hash the procedure before creating it on
the database and store that hash in a secure location. Then later extract
the source code from syscomments, hash again and compare to the previously
calculated hash.

Jochen
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 04-08-2008, 06:18 PM
Mark A. Parsons
 
Posts: n/a
Default Re: Sybase Query Tree

true

Jochen Schug wrote:
> On Fri, 17 Feb 2006 18:07:36 +0100, Mark A. Parsons <user@example.net>
> wrote:
>
>> 2 - incorporate an encryption/hash key into the source code of the
>> proc; would be a little tricky ... basically something like ...
>> generate hash key and/or encryption signature for source code file
>> (eg, my_proc.sql), embed hash key/encryption signature in source code
>> (as a T-SQL comment), load code into dataserver; (keep hash key in a
>> secure location somewhere); to check the hash code, extract source
>> from syscomments, remove hash key, rebuild my_proc.sql, generate new
>> hash key, see if new key is same as 'old' key kept in your 'security
>> location'; (sounds nasty but very doable with some scripting);
>> 'course, how do you keep your master set of keys (in that 'secure
>> location') intact, ie, how do you make sure they are not modified by
>> devious dude(tte), ie, same 'problem' of how do you normally maintain
>> security codes/passwords/passphrases

>
>
> I don't see the need to store the hash value somewhere in the database
> itself. You could as well just hash the procedure before creating it on
> the database and store that hash in a secure location. Then later
> extract the source code from syscomments, hash again and compare to the
> previously calculated hash.
>
> Jochen

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 07:59 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620